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

@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/GothamOffice-Regular.otf") format("woff2"),
    url("../assets/fonts/GothamOffice-Regular.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GothamBold";
  src: url("../assets/fonts/GothamOffice-Bold.otf") format("woff2"),
    url("../assets/fonts/GothamOffice-Bold.otf") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Obviously";
  src: url("../assets/fonts/ObviouslyWide-Regular.otf") format("woff2"),
    url("../assets/fonts/ObviouslyWide-Regular.otf") format("woff");
  font-weight: 600;
  font-style: normal;
}

body {
  height: 100%;
  font-family: "Gotham";
  overflow-x: hidden;
}

a,
p,
button,
input,
ul,
li {
  font-family: "Gotham";
}

h2,
h3 {
  font-family: "GothamBold";
}

/* Banner */
.hero_banner {
  position: relative;
}

.hero_banner_wrapper {
  width: 100%;
  min-height: 700px;
  height: 100vh;
  position: relative;
  overflow-y: auto;
  border-radius: 0 0 20px 20px;
}

.lottie_logo {
  position: absolute;
  top: -2%;
  left: 4%;
  z-index: 1;
  width: 200px;
  height: 200px;
}

.hero_banner_container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  opacity: 0.3;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.left_banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.3);
  opacity: 0;
}

.banner_details_wrapper {
  position: absolute;
  bottom: 4%;
  left: 80px;
  z-index: 2;
}

.banner_title {
  font-size: 58px;
  color: #ffffff;
  font-family: "Obviously";
  padding-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.vertical_title {
  display: flex;
  align-items: center;
  column-gap: 20px;
  color: #ffffff;
  font-size: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.vertical_title p {
  font-family: "Obviously";
}

.banner_icon {
  transform: rotate(90deg);
}

.top_title {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 700;
}

.top_title_ty_page {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
}

.bottom_title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
}

.bottom_title_ty_page {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Steps */
.steps_wrapper {
  display: flex;
  margin: 20px 0;
}

.step {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #b8bcca;
  position: relative;
}

.line {
  width: 56px;
  height: 1px;
  background: #b8bcca;
}

.step:last-child .dot::after {
  all: unset;
}

.step_label {
  font-size: 14px;
  color: #5b5b5b;
  font-weight: 600;
}

.active_dot {
  background: linear-gradient(91deg,
      #d3438b -12.07%,
      #df347f 19.61%,
      #f1625c 91.33%) !important;
}

/* Form */
.form_wrapper {
  position: absolute;
  top: 50%;
  height: 660px;
  /* transform: translateY(-50%); */
  right: 90px;
  width: 510px;
  z-index: 2;
  padding: 30px;
  opacity: 1;
  border-radius: 20px;
  border: 2px solid #fff;
  background: #fcf8f9;
  box-shadow: 0px 40px 80px 0px rgba(0, 0, 0, 0.05),
    -5px -5px 250px 0px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(21px);
  transition: height 1s ease;
  opacity: 0;
}

.form_top_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form .step_input_wrapper {
  animation: slideUp 1.2s forwards;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.form .step_input_wrapper {
  width: 100%;
  display: none;
}

.show_step {
  display: block !important;
}

.form input,
.form textarea {
  border-radius: 4px;
  background: #f8fafc;
  padding: 12px;
  outline: none;
  border: none;
  width: 100%;
  border: 1px solid #dbdbdb;
  margin-top: 4px;
}

.form textarea {
  resize: none;
  background: #f8fafc;
}

input:focus {
  border: 1px solid white;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #b8bcca;
  font-family: "Gotham";
}

.form label {
  font-size: 14px;
  font-weight: 600;
}

.input_wrapper {
  margin-bottom: 20px;
  position: relative;
}

.error_message {
  position: absolute;
  top: -4px;
  right: 10px;
  background-color: #df347f;
  border-radius: 8px;
  padding: 8px 12px;
  color: #fcf8f9;
  font-size: 13px;
  white-space: nowrap;
  z-index: 10;
  display: none;
}

.error_message::after {
  content: "";
  position: absolute;
  top: 80%;
  right: 30px;
  width: 12px;
  height: 12px;
  background-color: #df347f;
  transform: rotate(45deg);
  border-radius: 2px;
  z-index: -1;
}

.error_message_checkbox {
  position: absolute;
  top: -120%;
  left: -1%;
  background-color: #df347f;
  border-radius: 8px;
  padding: 8px 12px;
  color: #fcf8f9;
  font-size: 13px;
  white-space: nowrap;
  z-index: 10;
  display: none;
}

.error_message_checkbox::after {
  content: "";
  position: absolute;
  top: 80%;
  left: 10px;
  width: 12px;
  height: 12px;
  background-color: #df347f;
  transform: rotate(45deg);
  border-radius: 2px;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .error_message_checkbox {
    top: -90%;
  }
}

.next_btn {
  background: linear-gradient(91deg,
      #d3438b -12.07%,
      #df347f 19.61%,
      #f1625c 91.33%);
  color: #ffffff;
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.back_next_btns {
  display: flex;
  border-radius: 6px;
  border: 1px solid #d3438b;
}

.back_next_btns .back_btn,
.back_next_btns .next_btn {
  width: 50%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 14px;
}

.back_btn {
  border: none;
}

.back_next_btns .next_btn {
  border-radius: 0 6px 6px 0;
  font-weight: 600;
}

.adult_wrapper {
  margin-bottom: 10px;
}

.privacy_label {
  text-decoration: underline;
}

.g-recaptcha {
  margin: 20px 0;
}

#step3 .input_wrapper {
  margin-bottom: 14px;
}

/* Thankyou page */
.thankyou_description {
  opacity: 0.6;
  margin-top: 20px;
  margin-bottom: 140px;
  font-size: 16px;
}

/* Youtube Banner and Cards */
.youtube_cards_wrapper {
  width: 100%;
  background: linear-gradient(163deg, #170016 25.58%, #4c013a 88.17%);
  padding: 106px 0 114px 80px;
  overflow: hidden;
  margin-top: -20px;
}

/* Youtube Banner */
.youtube_video_banner {
  width: 100%;
  height: 96vh;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-right: 80px;
  opacity: 0;
  transform: translateY(100px);
}

.youtube_iframe_wrapper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.youtube_iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  object-fit: cover;
}

.roshni_titles {
  margin-top: -220px;
}

.center_title,
.center_top_title {
  font-size: 120px;
  color: #fff;
  opacity: 0.2;
  white-space: nowrap;
  transform: translateX(-80px);
}

.center_top_title {
  transform: translateX(100px);
}

/* Cards */
.cards_wrapper {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  margin-top: 40px;
  padding-right: 80px;
  position: relative;
  z-index: 2;
}

.main_card {
  width: 32%;
}

.card {
  background: white;
  padding: 36px;
  border-radius: 20px;
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first_card {
  width: 100%;
  height: 284px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 20px;
  height: 516px;
}

.first_card .card_img {
  object-fit: cover;
}


.second_card {
  display: block;
  border-radius: 20px 20px 200px 200px;
  height: 516px;
  position: relative;
}

.fourth_card {
  height: 208px;
  margin-top: 24px;
}

.card a {
  color: #000;
  opacity: 0.4;
  text-decoration: none;
}

.card_img {
  width: 100%;
  height: 100%;
}

.card_heading {
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
}

.card_description {
  opacity: 0.4;
  padding-top: 16px;
  line-height: 32px;
}

.first_card_img {
  margin-top: 32px;
  position: absolute;
  bottom: 18%;
  left: 25%;
}

.first_card_img .card_img {
  position: absolute;
  width: 200px;
  height: 120px;
}

.sub_image_1 {
  z-index: 4;
  bottom: -48px;
  left: 50px;
  transform: rotate(6deg);
}

.sub_image_2 {
  z-index: 3;
  opacity: 0.8;
  bottom: -48px;
  left: 50px;
  transform: rotate(6deg);
}

.sub_image_3 {
  z-index: 2;
  opacity: 0.6;
  bottom: -48px;
  left: 50px;
  transform: rotate(6deg);
}

.sub_image_4 {
  bottom: -48px;
  z-index: 1;
  left: 50px;
  opacity: 0.4;
  transform: rotate(6deg);
}

.second_img {
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
}

.second_img .card_img {
  scale: 1.2;
  opacity: 0;
}

.contact_wrapper {
  margin-top: 8px;
}

/* Videos */
.videos_wrapper {
  background: linear-gradient(78deg,
      #d3438b -78.59%,
      #df347f -23.42%,
      #f1625c 101.46%);
  padding: 212px 80px 80px 80px;
  border-radius: 6px 6px 0 0;
  position: relative;
}

.rings {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}

.videos_section_title {
  font-size: 80px;
  text-transform: uppercase;
  color: #fff;
}

.videos_subwrapper {
  display: flex;
  margin-top: 60px;
}

.all_videos_container {
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.video_main_title {
  color: #fff;
  font-size: 36px;
  width: 30%;
  padding-top: 80px;
}

.video_container {
  width: 30%;
  height: 492px;
  border-radius: 140px;
  box-shadow: 0px 40px 80px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.video_container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.pause_icon {
  display: none;
  width: 32px;
  height: 32px;
}

/* Footer */
.footer {
  background: linear-gradient(91deg,
      #d3438b -12.07%,
      #df347f 19.61%,
      #f1625c 91.33%);
  padding: 22px 80px;
  display: flex;
  justify-content: space-between;
}

.footer_hygiene_pages {
  display: flex;
  align-items: center;
  column-gap: 40px;
}

.hygiene_label {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.copyright_label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* checkboxes */
.checkbox_group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.checkbox_wrapper {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 48%;
  justify-content: flex-end;
}

.checkbox_wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background-color: white;
  transition: all 0.3s ease;
  padding: 8px;
}

.checkbox_wrapper input[type="checkbox"]:checked {
  background: linear-gradient(93deg,
      #d3438b -70%,
      #df347f -16.29%,
      #f1625c 105.28%),
    linear-gradient(93deg, #d3438b -20.7%, #df347f 13.68%, #f1625c 91.5%);
  border-color: #df347f !important;
}

.checkbox_wrapper input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox_wrapper label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 100;
  margin-top: 6px;
}

.checkbox_wrapper input[type="checkbox"]:not(:checked) {
  border: 2px solid #ccc !important;
}

.consent_checkbox_wrapper .checkbox_wrapper {
  width: 100%;
}

.consent_checkbox_wrapper .consent_label {
  font-size: 10px;
  opacity: 0.6;
}

.consent_label a {
  color: #000;
}

.gradient_text {
  background: linear-gradient(92deg,
      #d3438b -51.86%,
      #df347f 3.97%,
      #f1625c 30.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recaptcha_error {
  border: 1px solid red !important;
}

.mob_left_banner,
.copyright_br {
  display: none;
}

.step1_cta_m {
  margin-top: 50px;
}

.step2_cta_m {
  margin-top: 166px;
}

.grid_container_box {
  display: grid;
  align-content: space-between;
}

@media screen and (max-width: 1280px) {
  .card {
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .banner_details_wrapper {
    left: 40px;
  }

  .form_wrapper {
    height: unset;
    right: 60px;
    padding: 30px;
  }

  .banner_title {
    font-size: 44px;
  }

  .vertical_title {
    font-size: 18px;
  }

  .step1_cta_m,
  .step2_cta_m {
    margin-top: unset;
  }

  .grid_container_box {
    align-content: unset;
  }

  .youtube_cards_wrapper {
    padding: 106px 0 114px 40px;
  }

  .youtube_video_banner,
  .cards_wrapper {
    padding-right: 40px;
  }

  .youtube_video_banner {
    height: 70vh;
  }

  .roshni_titles {
    margin-top: -140px;
  }

  .center_title,
  .center_top_title {
    font-size: 80px;
  }

  .card_heading {
    font-size: 28px;
    line-height: 34px;
  }

  .card_description {
    line-height: 28px;
  }

  .first_card_img .card_img {
    width: 142px;
    height: 106px;
  }

  .first_card_img {
    bottom: 12%;
    left: 16%;
  }

  .card a {
    word-wrap: break-word;
  }
}

@media screen and (max-width: 820px) {
  .hero_banner_wrapper {
    height: 80vh;
    min-height: unset;
    position: sticky;
    top: 0;
    overflow-y: hidden;
  }

  .overlay {
    z-index: 0;
  }

  .hero_banner_container {
    display: block;
  }

  .form_wrapper {
    height: unset;
    position: static;
    display: block;
    opacity: 1;
    width: 100%;
    padding: 40px 32px;
    transform: unset;
    opacity: 1;
    margin-top: -40px;
    border-radius: 20px;
  }

  .banner_details_wrapper {
    left: 18px;
    bottom: 16%;
  }

  .banner_title,
  .vertical_title {
    opacity: 1;
  }

  .banner_title {
    font-size: 36px;
  }

  .banner_icon {
    width: 20px;
    height: 20px;
  }

  .vertical_title {
    font-size: 13px;
    column-gap: 10px;
  }

  .form .step_input_wrapper {
    width: 100%;
  }

  .form_top_wrapper,
  .left_banner,
  .product_img {
    display: none;
  }

  .form input,
  .form textarea {
    font-size: 16px;
  }

  .mob_left_banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    height: 40%;
  }

  .lottie_logo {
    width: 120px;
    height: 120px;
  }

  .banner_icon {
    transform: rotate(90deg);
  }

  .step {
    column-gap: 6px;
  }

  .step_label {
    white-space: nowrap;
  }

  .checkbox_wrapper label {
    white-space: unset;
  }

  .consent_checkbox_wrapper .checkbox_wrapper {
    width: 100%;
  }

  #step3 .input_wrapper {
    margin-bottom: 20px;
  }

  .youtube_video_banner {
    height: 40vh;
  }

  .card_heading {
    font-size: 24px;
    line-height: 32px;
  }

  .first_card_img .card_img {
    width: 120px;
    height: 100px;
  }

  .card {
    padding: 24px;
    height: 240px;
  }

  .second_card {
    height: 516px;
  }

  .first_card_img {
    left: 4%;
  }

  .card_br {
    display: none;
  }

  .footer {
    padding: 40px 32px;
    display: block;
    text-align: center;
  }

  .footer_hygiene_pages {
    column-gap: 10px;
    justify-content: center;
  }

  .hygiene_label {
    font-weight: normal;
    padding-bottom: 24px;
  }

  .copyright_br {
    display: block;
  }

  .copyright_label {
    font-weight: normal;
    line-height: 32px;
  }
}

@media screen and (max-width: 640px) {
  .youtube_cards_wrapper {
    padding: 60px 16px;
  }

  .youtube_video_banner,
  .cards_wrapper {
    padding-right: 0;
  }

  .roshni_titles {
    margin-top: -100px;
  }

  .center_title,
  .center_top_title {
    font-size: 56px;
  }

  .cards_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .main_card {
    width: 100%;
  }

  .card {
    height: 200px;
  }

  .first_card {
    height: 478px;
  }

  .second_card {
    height: 424px;
  }

  .fourth_card {
    height: 140px;
  }

  .first_card_img .card_img {
    width: 180px;
    height: 122px;
  }

  .first_card_img {
    left: 18%;
    bottom: 16%;
  }

  .card_description {
    line-height: 26px;
  }
}