@font-face {
  font-family: 'Capsule Sans Text';
  font-weight: 300;
  src: url(../fonts/CapsuleSansText-Medium__d6e0f9a85b076741a771ec8574c1278fb65fe34160e73bd8beffa2f927831302.woff2);
}

@font-face {
  font-family: 'Capsule Sans Text';
  font-weight: 500;
  src: url(../fonts/CapsuleSansText-Book__6573ba5ca76b29d5ffe83d94b27a4a8a09c8d5c8d5f2ca0719aaeef6856042d8.woff2);
}

@font-face {
  font-family: 'Capsule Sans Text';
  font-weight: 700;
  src: url(../fonts/CapsuleSansText-Bold__0ef7c688bd1385a7df6941a13f3b4e980cd2f90f01b9268c9bb3e95394eec486.woff2);
}

@font-face {
  font-family: 'Martina Plantijn';
  font-weight: 400;
  src: url(../fonts/MartinaPlantijn-Regular__e02ea76d18e952604fbe5636471d4c7e48f8db1c01fa15ee0e0170347f966405.woff2)
    format('woff2');
}

@font-face {
  font-family: 'Phonic';
  font-weight: 300;
  src: url(../fonts/RHPhonic-Light__75529e64c5aae148387880374e90821d1b8f4e857e8e8b9697743ed012821bf8.woff2);
}

@font-face {
  font-family: 'Phonic';
  font-weight: 500;
  src: url(../fonts/RHPhonic-Regular__66da8fcfda05a8b53afe5c8697bdb1b2fd883e748a29f65a628d7a98aad40982.woff2);
}

@font-face {
  font-family: 'Phonic';
  font-weight: 700;
  src: url(../fonts/RHPhonic-Bold__7f2cc2d831ae8cb196f347fee306ddd1ce4eb72b3dd76a05e28720a23f5a4ee3.woff2);
}

body {
  font-family: 'Capsule Sans Text', sans-serif;
  margin: 0;
  padding: 0;
}

main {
  background-color: #151719;
  position: relative;
  top: 82px;
}

.white {
  color: white !important;
}

/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header styling */
header {
  background-color: #000;
  color: white;
  font-family: Phonic, sans-serif;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  border-bottom: solid white 1px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

/* Header - First Section (logo and menu) */
.header-1 {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.header-1 img {
  height: 26px;
}

.header-menu {
  display: flex;
  gap: 40px;
}

.header-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.header-menu a:hover,
.header-menu a svg:hover {
  color: rgb(204, 255, 0);
  fill: rgb(204, 255, 0);
}

.header-menu a svg {
  transform: translateY(30%);
  fill: white;
}

/* Header - Second Section (login, sign up, and country selector) */
.header-2 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 10px 20px;
}

.header-2 a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.header-2 a:hover {
  color: rgb(204, 255, 0);
}

.log-in-button,
.sign-up-button {
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.log-in-button {
  background-color: transparent;
  border: 2px solid white;
}

.log-in-button:hover {
  background-color: white;
  color: black !important;
}

.sign-up-button {
  background-color: white;
  color: black !important;
  border: 2px solid white;
}

.sign-up-button:hover {
  background-color: #ddd;
}

.header-2 a svg {
  margin-right: 5px;
}

.menu-button {
  display: none !important;
}

/* Responsive: For mobile screens */
@media (max-width: 1362px) {
  .header-menu,
  .log-in-button {
    display: none !important;
  }

  .menu-button {
    display: flex !important;
  }
}

@media (max-width: 572px) {
  .country-button {
    display: none !important;
  }

  .sign-up-button {
    padding: 4px 12px;
    font-size: 12px !important;
    text-align: center;
  }

  .header-1 {
    padding-right: 0;
  }

  .header-2 {
    padding-left: 0;
  }

  .header-1 img {
    height: 22px;
  }

  main {
    top: 68px;
  }
}

main h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  color: white;
}

.main-legend {
  background-color: black;
}

.main-legend video {
  width: 100%;
}

.main-legend h1 {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: max(7vw, 60px);
  line-height: max(7vw, 60px);
  font-weight: 300;
  font-family: 'martina plantijn', serif;
  padding-top: 30px;
  opacity: 0;
  animation: fadeInAnimation 2s forwards;
  animation-delay: 5s;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 870px) {
  .main-legend h1 {
    position: static;
    transform: none;
  }
}

.block-2,
.block-3,
.block-4,
.block-5,
.block-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  top: -300px;
}

@media screen and (min-width: 881px) and (max-width: 1200px) {
  .block-2,
  .block-3,
  .block-4,
  .block-5,
  .block-6 {
    top: -200px;
  }
}

@media screen and (max-width: 881px) {
  .block-2,
  .block-3,
  .block-4,
  .block-5,
  .block-6 {
    top: -100px;
  }
}

@media screen and (max-width: 500px) {
  .block-2 {
    padding-top: 40px;
  }
}

.block-2,
.block-3,
.block-4 {
  background-color: black;
}

.block-2 img {
  width: 246px;
}

.block-2 p,
.block-3 p {
  font-family: Phonic, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.33px;
  line-height: 28px;
  padding-top: 20px;
  color: gray;
}

.yellow-button {
  padding: 10px 24px;
  background-color: #ccff00;
  border-radius: 50px;
  color: black;
  font-family: Phonic, sans-serif;
  cursor: pointer;
}

hr {
  background-size: 1px 16px, 1px 100%;
  border: 0;
  content: '';
  height: 150px;
  margin: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, transparent 50%, #151719 50%),
    linear-gradient(
      to bottom,
      transparent 0%,
      #fff 25%,
      #fff 75%,
      transparent 100%
    );
  margin-top: 30px;
  margin-bottom: 30px;
}

.block-3 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.block-3 video,
.block-3 p,
.block-4 video {
  max-width: 1024px;
}

@media screen and (max-width: 1024px) {
  .block-3 video,
  .block-3 p,
  .block-4 video {
    width: 100%;
  }
}

.block-3 p {
  padding: 30px;
  box-sizing: border-box;
}

.block-3 h2 {
  text-align: center;
  font-family: Phonic, sans-serif;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 48px;
}

.block-4 h2 {
  font-family: Phonic, sans-serif;
  font-size: 32px;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 10px;
}

.block-4 p {
  font-family: Phonic, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.33px;
  line-height: 28px;
  color: gray;
}

.block-4 {
  background-image: linear-gradient(
    to top,
    #151719 0px,
    #000000 25%,
    transparent 25%
  );
}

.block-5,
.block-6 {
  background-color: #151719;
  padding-bottom: 30px;
}

.block-5 h2 {
  text-align: center;
  font-family: Phonic, sans-serif;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 48px;
}

.testimonials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  box-sizing: border-box;
  padding-top: 60px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 30%;
  padding: 20px;
  background-color: #151719;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border: solid 1px white;
}

.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  top: -70px;
}

@media screen and (max-width: 1200px) {
  .testimonials {
    flex-direction: column;
    gap: 80px;
  }

  .testimonial {
    margin: auto;
    width: 90%;
  }
}

.testimonial p {
  font-family: Phonic, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.33px;
  line-height: 28px;
  color: gray;
  position: relative;
  top: -40px;
}

.block-6 {
  padding-top: 50px;
  text-align: center;
}

.block-6 h1,
.block-7 h1 {
  font-size: 90px;
  font-weight: 400;
  letter-spacing: -0.33px;
  line-height: 90px;
  font-family: 'martina plantijn', serif;
}

@media (min-width: 426px) and (max-width: 1023px) {
  .block-6 h1,
  .block-7 h1 {
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -0.33px;
    line-height: 63px;
  }
}

@media (max-width: 426px) {
  .block-6 h1,
  .block-7 h1 {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.33px;
    line-height: 40px;
  }
}

.block-6 p,
.block-7 p {
  font-family: Phonic, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.33px;
  line-height: 28px;
  color: gray;
  padding-top: 20px;
}

@media (max-width: 426px) {
  .block-6 p,
  .block-7 p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.33px;
    line-height: 30px;
  }
}

.block-6-list {
  width: 90%;
  margin: auto;
  margin-top: 30px;
  width: 100%;
}

.block-6-item {
  display: none; /* Hide items initially */
  opacity: 0;
  width: 90%;
  margin: auto;
  background-color: #282424;
  padding: 10px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  transition: opacity 1s ease-in-out; /* Smooth opacity transition */
}

@media (min-width: 650px) {
  .block-6-item {
    width: 630px;
  }
}

.active {
  display: flex; /* Show the item */
  opacity: 1; /* Fade in the item */
}

.block-6-item p {
  color: gray;
  font-size: 15px;
  width: 80%;
  line-height: 1.5;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
  color: white;
}

.check-mark-svg {
  width: 30px;
  height: 30px;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.block-7 {
  display: flex;
  background-color: #151719;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.block-6 {
  top: -150px;
  padding: 0 20px;
}

@media screen and (min-width: 881px) and (max-width: 1200px) {
  .block-6 {
    top: -100px;
  }
}

@media screen and (max-width: 881px) {
  .block-6 {
    top: -50px;
  }
}

.disclosure {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.disclosure p {
  padding-top: 0;
  padding-left: 5px;
  font-size: 12px;
  color: #d5d5d5;
}

.block-7-form {
  width: 550px;
  border: solid 1px #6f6969;
  padding: 20px;
  border-radius: 20px;
}

@media screen and (max-width: 550px) {
  .block-7-form {
    width: 90%;
    margin: auto;
  }
}

.block-7-form input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
  font-family: Phonic, sans-serif;
  background: #414141;
}

.block-7-form button {
  padding: 10px 24px;
  background-color: #ccff00;
  border-radius: 50px;
  color: black;
  font-family: Phonic, sans-serif;
  cursor: pointer;
  margin-top: 20px;
}

.block-7 video {
  width: 100%;
}

footer {
  position: relative;
  background-color: #000;
  text-align: center;
  padding: 20px;
  border-top: solid 2px white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer p {
  font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont,
    Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 24px;
  margin: 0;
  font-style: normal;
}

@media screen and (min-width: 900px) {
  footer p {
    width: 850px;
  }
}

footer p {
  margin-bottom: 15px;
}

footer .footer-head {
  margin-bottom: 0;
}

footer svg {
  width: 100%;
}
