@import url("./media.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --main-color: #da0101;
  --secondary-color: #ebff00;
  --white-color: #fff;
  --black-color: #000;
  --light-main-color: #fb0707;
  --light-secondary-color: rgba(232, 181, 3, 0.1);
  --time: 10s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  NAVBAR */

header {
  padding: 0 60px;
  font-family: "Inter";
}

header nav {
  max-width: 1200px;
  margin: auto;
  background-color: var(--white-color);
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav .logo {
  font-weight: 400;
}

header nav button {
  font-family: "Inter" !important;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 10px 38px;
  border: 0;
  outline: 0;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
}

header nav button:hover {
  background-color: transparent;
  color: var(--main-color);
  font-weight: 700;
}

/*  MAIN SECTION */

main {
  font-family: "Poppins";
  padding: 0 60px;
  background-image: url("./images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: visible;
  color: var(--white-color);
}

main h1 {
  margin-top: 40px;
}

main h2 {
  margin: 0 0 10px 0;
  font-weight: 400;
  font-size: 22px;
}

main button {
  background-color: var(--secondary-color);
  font-family: "Poppins";
  padding: 7px 15px;
  font-size: 1.3rem;
  border: 0;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

main .video {
  width: 900px;
  margin-top: 30px;
  background-image: url("./videos/thumbnail/thumbnail1.png");
  height: 510px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -180px;
}

.video .shadow {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-secondary-color);
}

.video .shadow .play-btn i {
  color: var(--black-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s;
}

.video .shadow .play-btn i:hover {
  color: var(--main-color);
  background-color: var(--white-color);
}

.paragraph {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 15rem;
}

.paragraph p {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Poppins";
  margin-bottom: 20px;
  line-height: 36px;
  width: 600px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.paragraph button,
.testimonial-button {
  font-family: "Poppins";
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 10px 28px;
  border: 0;
  text-decoration: none;
  outline: 0;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
  animation: bounce 2s linear infinite;
  max-width: 700px;
  width: 100%;
  margin: 0 1rem;
}

.paragraph button a,
.testimonial-button a {
  color: var(--white-color);
  text-decoration: none;
}

button span {
  font-size: 14px;
  color: var(--secondary-color);
}

/*  BRAND */

/*  TESTIMONIAL */

.testimonial {
  width: 100%;
  padding: 90px 1rem 90px 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("./images/background-test.png");
  background-position: center;
  background-size: cover;
  font-family: "Poppins";
}

.testimonial h3 {
  color: var(--main-color);
  font-size: 18px;
}

.testimonial .testimonial-heading {
  font-size: 46px;
}

.testimonial .testimonial-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 310px;
  margin: 0 5px;
}

.thumbnail {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid #fff;
  overflow: hidden;
}

#thumbnail3 {
  border: none !important;
}

.thumbnail video {
  width: 330px;
  margin-top: 60px;
  display: none;
}


#video2 {
  margin-top: -100px !important;
}

#video3 {
  display: none;
}

.thumbnail .card-btn i {
  background-color: var(--main-color);
  color: var(--white-color);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  /* position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%); */
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 90px var(--main-color);
  transition: 0.3s;
}

.thumbnail .card-btn i:hover {
  background-color: var(--white-color);
  color: var(--main-color);
}

.card h1 {
  font-size: 23px;
  margin-top: 14px;
  font-weight: 600;
}

.video {
  overflow: hidden;
}

.video {
  border-radius: 30px;
  border: 8px solid #fff;
}

.video video {
  width: 100%;
  height: 100%;
  border: 8px solid #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}


#thumbnail1 {
  background-image: url("./videos/thumbnail/thumbnail2\ copy.png");
  background-size: contain;
}

#thumbnail2 {
  background-image: url("./videos/thumbnail/thumbnail3\ copy.png");
}

#thumbnail3 {
  background-image: url("./videos/thumbnail/thumbnail3.png");
}

.border-left {
  width: 670px;
  height: 8px;
  background-color: var(--main-color);
  margin-top: 40px;
}

.border-right {
  width: 400px;
  height: 10px;
  float: right;
  background-color: var(--main-color);
}

.testimonial-button {
  margin-top: -40px;
  text-align: center;
  font-size: 18px;
}

.testimonial-button span {
  font-size: 16px;
}

.center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PROOF */

.proof {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  flex-direction: column;
  margin-top: 50px;
  font-family: "Poppins";
  padding: 0 30px;
}

.proof h3 {
  color: var(--main-color);
  font: 16px;
}

.proof .comments img {
  width: 900px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.03);
}

.comments {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.comments img {
  margin-bottom: 20px;
}

.right-message {
  float: right;
}

.message {
  width: 100%;
}

.message-center {
  margin-left: 100px;
}

.size {
  width: 700px !important;
}

.cta-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.about-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  font-family: "Poppins";
  z-index: -1 !important;
  position: relative;
  padding-bottom: 0 !important;
}

.about-container .content {
  width: 500px;
  margin-top: 60px;
}

.about-container img {
  width: 500px;
}

.content h3 {
  color: var(--main-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.content h1 {
  font-size: 2.5rem;
  margin: 0 0 5px 0;
}

.content h1 span {
  letter-spacing: 5px;
}

.content {
  font-size: 15px;
}

.content p {
  line-height: 34px;
}

.content p:last-child {
  margin-top: 30px;
}

.content strong {
  font-weight: 600;
}

.result-container {
  width: 100%;
  background-image: url("./images/background-test.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 0;
  font-family: "Poppins";
  text-align: center;
  margin-top: -66px;
  z-index: 1;
}

.result-container h3 {
  color: var(--main-color);
  font-size: 1.1rem;
}

.result-container h1 {
  font-size: 2.4rem;
}

.result-container p {
  width: 500px;
  text-align: center;
}

.result-container p strong {
  font-weight: 600;
  margin-top: 5px;
}

.results {
  max-width: 1200px;
  margin-top: 25px;
  padding: 0 1rem;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 786px) {
  .results {
    grid-template-columns: 1fr;
  }
}

.results img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  box-shadow: 0 3px 5px 0 #0005;
}

.brand-exp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: "Poppins";
  margin-top: 40px;
}

.brand-exp h1 {
  font-size: 6vmin;
  margin-bottom: 20px;
}

.brand-exp .brand {
  margin-top: 0px;
}

footer {
  width: 100%;
  height: 6rem;
  background-color: var(--black-color);
  font-family: "Poppins";
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p span {
  color: var(--secondary-color);
}

.border-center {
  width: 900px;
  height: 3px;
  background-color: var(--main-color);
  margin: 0 auto;
}

.accordian {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}

.container {
  max-width: 750px;
  padding: 0 1rem;
}

.space {
  margin-top: 40px;
  margin-bottom: 40px;
}

.faq-heading {
  font-family: "Poppins";
  text-align: center;
  margin-top: 34px;
  font-size: 6.4vmin;
}

.wrapper {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 9px;
}

.toggle,
.content-acc {
  font-family: "Poppins", sans-serif;
}

.toggle {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 25px rgba(0, 0, 50, 0.08);
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  border-radius: 7px;
  border: none;
  margin-bottom: 10px;
  outline: none;
  cursor: pointer;
  background-color: #ebff00;
  padding: 15px 30px;
}

.content-acc strong {
  font-weight: 600;
}

.content-acc {
  position: relative;
  font-size: 14px;
  text-align: justify;
  line-height: 30px;
  height: 0;
  padding: 0 30px;
  overflow: hidden;
  background-color: #000;
  color: #ebff00;
  transition: all 1s;
  border-radius: 7px;
}

.content-acc p {
  margin: 10px 0;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.arrow img {
  width: 70%;
}

.logo img {
  height: 50px;
}

.brand {
  overflow: hidden;
  max-width: 1300px;
  margin-inline: auto;
}

.brand-slider {
  white-space: nowrap;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to left,
      transparent,
      black,
      black,
      black,
      transparent);
  -webkit-mask-image: linear-gradient(to left,
      transparent,
      black,
      black,
      black,
      transparent);
  -moz-mask-image: linear-gradient(to left,
      transparent,
      black,
      black,
      black,
      transparent);
  -o-mask-image: linear-gradient(to left,
      transparent,
      black,
      black,
      black,
      transparent);
  -ms-mask-image: linear-gradient(to left,
      transparent,
      black,
      black,
      black,
      transparent);
}

.brand-slider:hover .slide {
  animation-play-state: paused;
}

.brand-slider .slide {
  animation: slider var(--time) linear infinite;
  display: inline-block;
}

.brand-slider.reverse:hover .slide {
  animation-play-state: paused;
}

.brand-slider.reverse .slide {
  animation: slider-reverse calc(var(--time) / 1.5) linear infinite;
  display: inline-block;
  translate: -100%;
}

.brand-slider img {
  width: 100px;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 40px;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes slider-reverse {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}