* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-family: "Poppins", sans-serif;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3% 5%;
  z-index: 10;
}

.navbar_brand {
  width: 100px;
  height: 100%;
}

.brand_logo {
  width: 100%;
  height: 100%;
}

.language_drop_down {
  background: transparent;
  border: none;
  color: white;
}

.language_drop_down:focus {
  outline: none;
}

.language_drop_down option {
  background-color: black;
}

.dropdown_container {
  border: 1px solid white;
  padding: 0.4rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.4);
}

.signin_button {
    background-color: #dc030f;
    border: 1px solid #dc030f;
    color: white;
    padding: 0.70rem 0.8rem;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
}

.signin_button a.button-link {
  color: white;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  /* height: 100%; */
  text-align: center;
}

.signin_button a.button-link:hover {
  color: white;
}

.btn:hover {
  background-color: #f6121d;
}

.navbar_nav_items {
  display: flex;
  gap: 10px;
}

.hero_bg_image_container {
  width: 100%;
  height: 80vh;
}

.hero_bg_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_bg_overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 80vh;
  background: rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero_card {
  position: absolute;
  top: 20%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero_title {
  font-weight: 600;
  font-size: 2rem;
}

.hero_subtitle,
.hero_description {
  font-weight: 400;
  font-size: 1rem;
}

.hero_description {
  margin: 0 50px;
}

.email_input {
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  padding-left: 7px;
}
.email_label {
  color: black;
  position: absolute;
  top: 28%;
  left: 2%;
  color: rgb(153, 149, 149);
  transition: 0.5s;
}

.email_form_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.form_container {
  background-color: white;
  width: 90%;
  height: 50px;
  position: relative;
}

.email_input:focus + .email_label {
  top: 0.2rem;
  font-size: 10px;
}

.email_input:not(:placeholder-shown).email_input:not(:focus) + .email_label {
  top: 0.2rem;
  font-size: 10px;
}

.email_input:focus-visible {
  outline: none;
}

.primary_button {
  background-color: #dc030f;
  border: 1px solid #dc030f;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  font-size: 15px;
  letter-spacing: 1px;
}

.feature {
  border-top: 8px solid #222;
  padding: 2rem 1rem;
}

.feature_details {
  text-align: center;
}

.feature_title {
  font-size: 25px;
  font-weight: 600;
  margin: 10px 0;
}

.feature_sub_title {
  font-size: 15px;
  font-weight: 400;
}

.feature_image_container {
  width: 100%;
  position: relative;
}
.feature_image {
  width: 100%;
}

.feature_background_video_container {
  position: absolute;
  width: 100%;
  top: 20%;
  left: 13%;
  height: 100%;
  max-width: 73%;
  max-height: 54%;
  z-index: -2;
}

.feature_background_video {
  width: 100%;
}
.feature_2_poster_container{
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 16rem;
  display: flex;
  align-items: center;
  background-color: black;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  height: 60px;
  padding: 0.25rem 0.6rem;
  gap: 15px;
}

.poster_container{
  width: 20%;
}

.poster{
  width: 100%;
  height: 100%;
}
.poster_details{
  width: 60%;
}
.poster_details > h4{
  font-size: 13px;
  font-weight: 500;
}
.poster_details > h6 {
  font-size: 12px;
  font-weight: 400;
  color: rgb(63, 63, 246);
}
.download_gif_container{
  width: 20%;
  height: 100%;
}
.gif{
  width: 100%;
  height: 100%;
}
.feature_3_background_video_container{
  max-width: 63%;
  max-height: 47%;
  z-index: -2;
  top: 9%;
  left: 19%;
}
.FAQ_accordian {
  width: 100%;
}
.FAQ_title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 18px;
  background-color: #303030;
  border: 1px solid #303030;
  color: white;
}

.FAQ_visible {
  background-color: #303030;
  border-top: 1px solid black;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.FAQ_visible > p {
  margin: 1rem;
}
.FAQ_list_container {
  border-top: 8px solid #222;
  padding: 2rem 0;
}
.FAQ_heading {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin: 1rem 3rem;
}

.FAQ_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.FAQ_get_started_email {
  text-align: center;
}

.FAQ_get_started_email > h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 2rem 0;
}

footer {
  border-top: 8px solid #333;
  padding: 2rem 1rem;
  color: #757575;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_row_2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.footer_row_1 > h4 {
  font-size: 15px;
  font-weight: 500;
}

.footer_row_3 > .dropdown_container {
  width: fit-content;
  border: 1px solid #757575;
  color: #757575;
}

.footer_row_3 > .dropdown_container > .language_drop_down {
  color: #757575;
}

@media (min-width: 768px) {
  .hero_bg_image_container {
    height: 100vh;
  }

  .hero_bg_overlay {
    height: 100vh;
  }
  .hero_card {
    top: 40%;
    left: 30%;
    transform: translate(-20%, -20%);
  }
  .hero_title {
    font-size: 3rem;
  }
  .hero_subtitle,
  .hero_description {
    font-size: 1.3rem;
  }

  .feature {
    padding: 4rem;
  }

  .feature_title {
    font-size: 35px;
  }

  .feature_sub_title {
    font-size: 20px;
  }
  .feature_2_poster_container {
    max-width: 26em;
    height: 85px;
  }
  .poster_container {
    width: 15%;
  }
  .download_gif_container {
    width: 3rem;
    height: 3rem;
  }

  .poster_details > h4 {
    font-size: 18px;
  }
  .poster_details > h6 {
    font-size: 14px;
  }
  .FAQ_title {
    font-size: 20px;
  }
  .FAQ_heading {
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .FAQ_list {
    padding: 1rem 5rem;
  }
  .FAQ_get_started_email {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(15%);
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 2% 5%;
  }

  .navbar_brand {
    width: 150px;
  }

  .signin_button {
    padding: 10px 20px;
    font-size: 18px;
  }
  .dropdown_container {
    padding: 10px 5px;
  }

  .navbar_nav_items {
    gap: 30px;
  }

  .hero_card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .form_container {
    width: 50%;
  }
  .email_form_container {
    flex-direction: row;
    align-items: center;
    gap: 1px;
  }
  .primary_button {
    height: 50px;
  }

  .feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .feature_details {
    text-align: left;
    padding: 0 6rem;
  }

  .feature_title {
    font-size: 50px;
  }

  .feature_sub_title {
    font-size: 25px;
  }

  .feature_image_container {
    max-width: 500px;
  }

  .feature:nth-child(even) {
    flex-direction: row-reverse;
  }

  .feature_2_poster_container {
    max-width: 20em;
    height: 100px;
    padding: 1rem;
  }
  .poster_container {
    width: 20%;
  }
  .FAQ_list {
    padding: 1rem 25rem;
  }
  .FAQ_get_started_email {
    transform: translateX(16%);
  }
  footer {
    padding: 2rem 20rem;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
  }

  .footer_row_2 {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .footer_row_1,
  .footer_row_3,
  .footer_row_4 {
    align-self: flex-start;
  }
}

@media (min-width: 1254px) {
}