@font-face {
  font-family: "Impact";
  src: url("IMPACT.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #ff5722;
  --secondary-color: #4caf50;
  --background-color: #ffffff;
  --text-color: #171717;
  --black: #000000;

  --header-font: "Impact", sans-serif;
  --body-font: "Roboto", sans-serif;

  --base-size: 16px;
}

body {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: var(--base-size);
  font-family: var(--body-font);
}
h1, h2, h3 {
  font-family: var(--header-font);
  text-align: center;
  margin: 0;
  padding: 0;
}
h2 {
  font-size: calc(var(--base-size) * 4);
}
h3 {
  font-size: calc(var(--base-size) * 2.5);
}
p {
    margin: 0;
}
section {
  background: var(--background-color);
  margin: 0;
  display: block;
  padding: 10px 0;
}
section.transparent {
  background: none;
}
#banner {
  width: 100%;
  height: 100vh;
  position: relative; 
}
.bannercontainer {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.bannercontainer > * {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannercontainer video {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#banner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Impact", sans-serif;
  position: absolute;
  bottom: 0;
}
#banner li {
  font-size: 4rem;
  background: var(--background-color);
  margin: 9px 0;
  width: fit-content;
  padding: 0px 12px;
  line-height: 0.9;
}

.cta div {
  display: flex;
  justify-content: center;
}
button {
  background: var(--black);
  color: var(--background-color);
  font-family: var(--header-font);
  font-size: 2rem;
  margin: 0;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 var(--black);
}

button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateY(-50%);
  transition: left 0.4s ease;
  z-index: -1;
}

button:hover {
  transform: scale(1.08);
  color: var(--black);
}

button:hover::before {
  left: 0;
}

.checkpoint {
  margin: 2rem 1rem;
  border-left: 10px solid var(--black);
  padding-left: 10px;
}
.checkpoint h3 {
  text-align: left;
}


.border {
    position: relative;
    padding: 50px 0;
}
.border a {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imgcontainer {
  width: 100%;
  height: 40vh;
  overflow: hidden;
}

.sheared {
  transform: skewY(-5deg);
  position: relative;
  height: 45vw;
}
.sheared img {
  transform: skewY(5deg);
  width: 100%;
  position: absolute;
  top: -10vw;
}


#faq {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem;
  padding: 1rem;
}
#faq h2 {
  flex: 1 1 100%;
}
.faq-item {
  flex: 1 1 40%;
}
.faq-item p {
  text-align: center;
}


footer {
  background: var(--black);
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
footer a {
  color: var(--background-color);
  font-family: var(--header-font);
  font-size: 1.5rem;
  text-decoration: none;
  display: block;
  text-align: center;
  line-height: 2rem;
}