@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'CitrusGothic-Regular';
    src: url('../fonts/CitrusGothic-Regular.woff2') format('woff2'),
        url('../fonts/CitrusGothic-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: Inter-Regular;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: Inter-SemiBold;
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.ttf");
}

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

body {
  font-family: 'CitrusGothic-Regular';
}

.fontInterBold {
   font-family: 'Inter-SemiBold', sans-serif;
  font-weight: 500;
}
.fontInter {
 font-family: 'Inter-Regular', sans-serif;
  font-weight: 400;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .logo img {
   height: 410px;
    position: absolute;
    top: -60px;
    left: -30px;
    width: 280px;
    object-fit: contain;
}
/* Nav Menu */
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}
.header ul, .header li{
  margin: 0;
}
.header .nav a {
  text-decoration: none;
  color: #02422B;
  font-family: 'CitrusGothic-Regular';
  position: relative;
  font-size: 21px;
  line-height: 64px;
  padding: 0 13px;
}
.header .nav a.active::after {
  content: "";
  position: absolute;
  height: 19px;
  background: #f9b000;
  left: 0;
  bottom: -44px;
  width: 100%;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
/* Hamburger Icon */
.header .hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


/* Banner */
.banner {
  background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) ), url('../assets/images/Sig-Banner_desk.png') no-repeat;
  background-size: cover;
  background-position: center;
  height: 119vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.banner_new{
  background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url('../assets/images/banner_desktop.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}
.banner .overlay {
  max-width: 1078px;
}
.banner_new .overlay{
  max-width: 1235px;
}
.banner h1 {
  font-size: 105px;
  line-height: 107px;
  margin-bottom: 0;
  color: #fff;
}
.banner .highlight {
  color: #FFB400;
}
.banner p {
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  margin: 60px auto 0;
  max-width: 876px;
  width: 100%;
}
.banner_new p{
  max-width: 1120px;
}
/*Take the pledge*/
.banner-promise {
  background: url('../assets/images/img-desk.png') no-repeat;
  background-size: cover;
  background-position: center;
  height: 77vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  justify-content: center;
  text-align: center;
  position: relative;
}
.banner-promise h2 {
  font-size: 75px;
  line-height: 64px;
  color: #F4AD02;
  margin-bottom: 0;
}
.btn-outline {
  max-width: 324px;
  height: 66px;
  border-radius: 15px;
  border: 4px solid #fff;
  margin: 45px auto 0;
  display: block;
}
.btn-outline a{
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 58px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
.btn-outline:hover {
  background-color: #f9b000;
  border-color: #f9b000;
  color: #000;
}

/* Video Section */
.video-section {
  position: relative;
}
.video-section video{
  width: 100%;
}
.video-section .video-wrapper .play-button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.video-section .video-thumbnail {
  position: relative;
  cursor: pointer;
}
.video-section .video-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.video-section .play-button{
  cursor: pointer;
}

/* Inline Popup */
.video-section .inline-popup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFB400E5;
  color: #fff;
  padding: 20px;
  z-index: 10;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.video-section .hide{
  display: none;
}
.video-section .inline-popup.show {
  display: flex;
}
.video-section .inline-popup h2 {
  font-size: 105px;
  line-height: 107px;
  margin-bottom: 80px;
  color: #fff;
  text-align: center;
}
.video-section .inline-popup h2 strong {
  color: #02422B;
}
.video-section .inline-popup p {
  font-size: 45px;
  line-height: 64px;
  margin-bottom: 0;
}
/* Video inside popup */
.video-section .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.video-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Close Button */
.video-section .close-inline {
  position: absolute;
  top: 35px;
  right: 35px;
  cursor: pointer;
  background: no-repeat;
  border: 0;
}
.video-section .text-on-video{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 50px;
    margin: auto;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 45px;
    line-height: 64px;
}

.fullvideo {
  display: none;
}

.teluguVideo, .englishVideo, .fullteluguVideo, .fullenglishVideo {
  display: none;
  width: 100%;
}

/* When popup is shown, this class is added to <body> */
body.popup-active {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
body.popup-active header{
  position: relative;
  z-index: 1;
}

/* Optional: dark overlay effect */
body.popup-active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background: rgba(0, 0, 0, 0.98); */
  z-index: 3; /* Make sure it covers background */
}

/* Ensure popup appears above the overlay */
#languagePopup {
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  /* display: none; */
  min-width: 35%;
  height: 35%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: flex;
}

/* Style for buttons inside popup */
#languagePopup div {
  display: flex;
  gap: 25px;
  margin: 0;
}
#languagePopup div .btn-outline{
  width: 140px;
  border: 0;
  background: #f9b000;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 45px;
  padding: 10px 30px;
}
#languagePopup div .btn-outline a{
  color: #fff;
  line-height: 45px;
  font-size: 20px;
}
#languagePopup p{
  color: #F4AD02;
  font-size: 36px;
  margin-bottom: 0;
}

/* Importance Section */
.importance-section {
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../assets/images/know-more-bg.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 77vh;
}
.importance-section .importance-content {
  max-width: 1000px;
  width: 100%;
}
.importance-section h2 {
  font-size: 75px;
  line-height: 64px;
  color: #F4AD02 ;
  margin-bottom: 30px;
}
.importance-section p {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 0;
  color: #fff;
}

.rooted_collection{
  background-color: #FFB400;
  position: relative;
  overflow-x: hidden;
}
.rooted_collection img{
  width: 100%;
}
.rooted_collection .right_text img{
  width: 203px;
}
.rooted_collection .carousel-item{
  height: 1040px;
  margin-bottom: -25px;
}
.rooted_collection .carousel-item img{
  height: 1040px;
  object-fit: cover;
}
.rooted_collection .carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.rooted_collection .carousel-indicators .active{
  background-color: #dfaa34;
}
.rooted_collection .common-heading{
  color: #fff;
  font-size: 75px;
  line-height: 79px;
  max-width: 331px;
  margin: 0;
}
.rooted_collection .right_text{
  display: flex;
  gap: 45px;
  flex-direction: column;
  padding-left: 100px;
}
.rooted_collection .desc{
  margin: 0;
  color: #2A420E;
  max-width: 502px;
  font-size: 24px;
  line-height: 28px;
}
.rooted_collection .btn-outline{
  max-width: 287px;
  text-align: center;
  margin: 0;
}
.rooted_collection .carousel-indicators{
  bottom: 50px;
  margin-bottom: 0;
}
.carousel-indicators [data-bs-target]{
  margin-right: 10px;
  margin-left: 10px;
}



/*form css*/
.visuallyhidden{
  display: none;
}
.submit_the_form{
  background: #F4AD02;
}
.submit_the_form .content{
  text-align: center;
  padding: 200px 0 80px;
}
.submit_the_form .title{
  font-size: 105px;
  line-height: 102px;
  margin: 0;
  color: #02422B;
}
.submit_the_form .small_title{
  font-size: 60px;
  line-height: 102px;
  color: #fff;
  margin: 0 0 15px;
}
.submit_the_form .desc{
  font-size: 24px;
  line-height: 33px;
  color: #fff;
}
.submit_the_form .form-inputs{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.submit_the_form .form-inputs .form-group{
  width: 49%;
}
.submit_the_form .form-inputs .form-group .form-control{
  background-color: #fff;
  border: 0;
  height: 81px;
  padding: 10px 30px;
  border-radius: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 33px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #000;
}
.submit_the_form .form-control::placeholder{
  color: #000;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield;
  -webkit-appearance: textfield; /* Safari and Chrome */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; /* Removes the inner and outer spin button */
}
.submit_the_form .brandQuestion{
  font-size: 24px;
  line-height: 33px;
  margin: 65px 0 25px;
}
.submit_the_form .brandOptions{
  display: flex;
  gap: 30px;
  max-width: 700px;
  justify-content: space-between;
  margin-bottom:90px;
}
.submit_the_form .brandOptions label{
  display: flex;
  align-items: center;
  gap: 15px;
}
.submit_the_form .brandOptions span{
  font-size: 20px;
  line-height: 33px;
}
.submit_the_form .brandOptions input{
  margin-top: 0 !important; 
}
.submit_the_form .brandOptions input:checked:after {
    content: "";
    position: absolute;
    left: 7.5px;
    top: 7px;
    width: 26px;
    height: 23px;
    background: #02422B;
    border-radius: 5px;
}

/*Custom CSS for select City*/

#state-select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  appearance: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#state-select option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.submit_the_form .city-wrapper {
  position: relative;
  /* width: 768px; */
  margin: auto;
}
.submit_the_form .city-wrapper input {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
}
.submit_the_form #cities {
  position: absolute;
  display: none;
  top: 100%;
  background: white;
  border-radius: 8px;
  width: 100%;
  left: 0;
  padding: 8px 14px;
  list-style: none;
  min-width: 210px;
  max-height: 310px;
  -ms-overflow-style: none;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 9;
  scrollbar-width: thin;
  margin: 5px 0 0;
  font-family: "Montserrat", sans-serif;
}  
.submit_the_form #cities::-webkit-scrollbar {
  width: 8px;
  background-color: #d1d1d1;
}
.submit_the_form #state {
  background-image: none;
}
.submit_the_form select {
  appearance: none;
  background-image: url("https://in-thebar.diageoplatform.com/static/img/dropdown.svg");
  background-position: calc(100% - 20px) center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin-bottom: 0;
  cursor: pointer;
}
.submit_the_form #cities::-webkit-scrollbar-thumb {
  background-color: #857d7d;
  border-radius: 4px;
}

.submit_the_form #cities li {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
  padding-bottom: 4px;
  cursor: pointer;
}
.submit_the_form #cities li:hover {
  color: #F0BF2E;
} 
.submit_the_form #cities li:last-child {
  padding-bottom: 0;
} 
.submit_the_form .city-wrapper input {
  margin-top: 0;
}

.submit_the_form .terms_and_conditions{
  margin: 50px 0;
}
.submit_the_form .terms_and_conditions .form-group{
  display: flex;
  align-items: flex-start;
}
.submit_the_form .form-group label{
  display: flex;
  flex-direction: column;
}
.submit_the_form .terms_and_conditions span{
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 22.63px;
  font-weight: 600;
  line-height: 33px;
  margin-left: 10px;
}
.submit_the_form .terms_and_conditions span a{
  color: #2A420E;
}

/*checkbox css*/ 
.submit_the_form .fill-detail .terms_and_conditions input,
.submit_the_form .brandOptions input{
  -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 40px;
    height: 35.64px;
    background-color: #fff;
    border: 0;
    border-radius: 5px;
    margin-top: 5px;
    position: relative;
    flex-shrink: 0;
}
.submit_the_form .fill-detail .terms_and_conditions input:checked:after {
  content: "";
  position: absolute;
  left: 12px;
  top: 0px;
  width: 14px;
  height: 28px;
  border: solid #295135;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.submit_the_form .submit-btn{
  width: 255px;
    height: 65.35px;
    background: transparent;
    border-radius: 15px;
    font-size: 24px;
    line-height: 58px;
    font-weight: 600;
    color: #02422B;
    margin: 65px auto;
    display: block;
    font-family: "Montserrat", sans-serif;
    border: 4px solid #02422B;
}


.video-wrapper{
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  height: 100%;
}
.video-wrapper p{
  color: #fff;
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 45px;
  line-height: 64px;
}
.mobile, .yellow_bg.mobile{
  display: none !important;
}
.yellow_bg{
  width: 100%;
  margin-top: -53px;
}
.right_text .btn-outline{
  max-width: 287px;
  height: 66px;
  border: 4px solid #2A420E;
}
.right_text .btn-outline a{
  color: #02422B;
}


.imp-banner{
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/know-more-bg.jpg) no-repeat;
  height: 95vh;
  background-size: cover;
  background-position: center;
}
.imp-banner h2{
  font-size: 60px;
  max-width: 840px;
  width: 100%;
  margin: 0 auto 40px;
}
.imp-banner h2 span{
  color: #FFB400;
}
.imp-banner .importance-content{
  max-width: 1240px;
}


/* Importance of Mangroves page */
.yellow-bg {
  background-color: #F4AD02;
  padding: 85px 0;
}
.yellow-bg .banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yellow-bg h2 {
  margin: 0;
  font-size: 60px;
  color: #02422B;
  line-height: 64px;
}
.yellow-bg .btn-outline {
  padding: 0 41px;
  margin: 0;
  width: 100%;
}

/* Turning the Tide Section */
.tide-section {
  background-color: #fff;
}
.tide-content {
  display: flex;
  gap: 8.7rem;
  justify-content: right;
}
.tide-text{
  width: 55.5%;
}
.tide-image {
  width: 44.5%;
}
.tide-text{
  padding: 70px 0;
  max-width: 610px;
}
.tide-text h3 {
  color: #F4AD02;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 64px;
  margin: 0;
  max-width: 450px;
}
.tide-text p {
  font-size: 24px;
  line-height: 28px;
  margin: 30px 0 0;
  color: #02422B;
}
.tide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  background-color: #f2aa00;
  padding: 45px 25px 90px;
}
.stats-section .desc{
  color: #02422B;
  font-size: 24px;
  line-height: 28px;
  max-width: 75%;
  width: 100%;
  margin: 30px auto 100px;
  text-align: center;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
  justify-content: space-between;
}
.stat-box {
  flex: 1;
  min-width: 220px;
}
.stat-box .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.stat-box h3 {
  text-transform: uppercase;
    font-size: 51px;
    color: #fff;
    line-height: 62px;
}
.stat-box p {
  font-size: 24px;
  line-height: 28px;
  color: #02422B;
}
.stat-box:not(:last-child) p{
  max-width: 376px;
  width: 100%;
  margin: auto;
}
.playIcon, .playbutton{
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
}
.video-section video {
  margin-bottom: -7px;
  margin-top: -2px;
}
.close_icon{
  position: absolute;
  right: 45px;
  bottom: 100px;
  cursor: pointer;
}
.close_icon svg{
  width: 18px;
  fill: #fff;
  margin-top: -8px;
  margin-right: 2px;
}

.full_bgImage.thankyou_bg {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/images/bg_desktop.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.full_bgImage.thankyou_bg .btn_yellow {
  width: 200px;
}
.thankyou_bg .thankyou .socialIcons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
}
.thankyou_bg .thankyou ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.thankyou_bg .thankyou ul li {
  list-style: none;
}
.thankyou_bg .thankyou ul label {
  font-size: 15px;
  line-height: 19.31px;
}
.thankyou_text {
  margin-top: 30px;
  font-size: 79px;
  line-height: 101.68px;
  color: #ffcc00;
  font-family: 'CitrusGothic-Regular';
}
.thankyou_desc {
  max-width: 214px;
  width: 100%;
  margin: auto;
  font-size: 15px;
  line-height: 19.31px;
}
.btn_yellow {
  margin-top: 0;
}
.full_bgImage.thankyou_bg .btn_yellow {
  margin-top: 15px;
}
.full_bgImage.thankyou_bg .btn_yellow {
  width: 225px;
}
.btn_yellow {
  width: 366px;
  height: 76.07px;
  border-radius: 8px;
  background-color: #f0bf2e;
  border: 0;
  outline: 0;
  padding: 5px 10px;
  margin: 15px auto 0;
  display: block;
}
.btn_yellow a {
  color: #295135;
  font-size: 42px;
  line-height: 69px;
  text-decoration: none;
}
.yellowColor {
    color: #ffcc00;
}
/*Certificate css starts*/
.certificate_bg {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/images/certificate_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 185vh;
}
.certificate_bg .container {
  padding: 0 50px;
}
.certificate_bg .signature_logo {
  /* width: 155px; */
  height: 290px;
  margin-left: -25px;
}
.certificate_bg .font79 {
  font-size: 47px;
  line-height: 55px;
}
.certificate_bg .font30 {
  font-size: 30px;
  line-height: 32px;
}
.certificate_bg .font14 {
  font-size: 14px;
  line-height: 20px;
}
.certificate_bg .title {
  color: #295135;
}
.certificate_bg .yellow_divider {
  width: 15%;
  height: 3px;
  background-color: #f9bd0f;
  margin: 25px 0 30px;
}
.certificate_bg .desc {
  max-width: 457px;
  width: 100%;
  font-family: 'Inter-Regular', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
}
.certificate_bg .signature_image {
  width: 12%;
}
.certificate_bg .signature_image {
  width: 250px;
  height: 120px;
}

/*certificate css ends*/

.backbutton{
  padding-top: 40px;
}
.backbutton a{
  color: #fff;
}
.blur-background {
	filter: blur(13px);
	pointer-events: none; /* disable interaction */
	user-select: none;
}
/* Responsive */
@media only screen and (min-width: 1024px) {
  header .container{
    max-width: 100%;
    padding: 0 25px;
  }
  .thankyou_bg .signature_logo.desktop {
    margin: auto;
    display: block;
    height: 380px;
  }
  .thankyou_desc {
    font-size: 27px;
    line-height: 34.75px;
    max-width: 400px;
  }
  .full_bgImage.thankyou_bg .btn_yellow {
    width: 250px;
    height: 47px;
  }
  .thankyou .btn_yellow a {
    font-size: 24px;
    line-height: 38px;
  }
  .full_bgImage.thankyou_bg {
    height: 130vh;
  }
}
.close{
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 1;
    width: 18px;
    cursor: pointer;
}
@media only screen and (max-width: 1280px){
  .yellow-bg h2, .stat-box h3{
    font-size: 44px;
  }
  .tide-content {
    gap: 1.7rem;
  }
}
@media (max-width: 768px) {
  .desktop, .yellow_bg.desktop{
    display: none !important;
  }
  .mobile, .yellow_bg.mobile{
    display: block !important;
  }
  header .container{
    padding: 0;
  }
  .header{
    padding: 15px;
    box-shadow: 0px 5px 0px 0px #00000040;
  }
  .header .logo img {
    height: 190px;
    top: -20px;
    left: 15px;
    width: 147px;
  }
  .header .hamburger {
    display: block;
    margin-top: -14px;
  }

  .nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 61px;
    left: 0;
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .header .nav ul{
    gap: 5px;
    padding: 0;
  }
  .header .nav ul li{
    padding: 0;
  }
  .header .nav a,  .header .nav a.active{
    font-size: 14px;
  }
  .header .nav a.active{
    background: #FFB400;
    padding: 13px 70px;
    color: #fff;
  }
  .header .nav a.active::after{
    content: none;
  }
  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav a {
    color: #000;
  }
  .banner{
    background: linear-gradient(360deg, rgba(180, 160, 133, 0) 42.1%, #103A6C 76.53%), url('../assets/images/Sig-Banner_mob.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 82vh;
  }
  .banner_new{
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url('../assets/images/banner-mob.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 85vh;
  }
  .banner h1 {
    font-size: 32px;
    line-height: 35px;
    max-width: 300px;
    width: 100%;
    text-align: center;
    margin: auto;
  }
  .banner .overlay{
    max-width: 285px;
  }
  .banner p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 35px;
    max-width: 230px;
  }
  .banner-promise{
    background: url('../assets/images/img-mob.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 53vh;
    padding-bottom: 40px;
 }
  .banner-promise h2 {
    font-size: 32px;
    line-height: 36px;
    max-width: 295px;
    margin: auto;
  }
  .btn-outline {
    max-width: 155px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid #fff;
    margin-top: 30px;
  }
  .btn-outline a{
    font-size: 12px;
    line-height: 43px;
  }
  .right_text .btn-outline{
    border: 2px solid #02422B;
  }
  .popup-content {
    max-width: 90%;
  }
  .video-section .inline-popup h2{
    font-size: 32px;
    line-height: 35px;
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
  }
  .video-image{
    height: 250px;
    object-fit: cover;
  }
  .video-wrapper p{
    font-size: 12px;
    line-height: 18px;
    bottom: 5px;
  }
  .video-section .inline-popup p{
    display: none;
  }
  .close-inline img{
    width: 10px;
  }
  .play-button img{
    width: 16px;
  }
  .importance-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/know-more-bg-mobile.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 85vh;
  }
  .importance-section h2{
    font-size: 32px;
    line-height: 35px;
    max-width: 250px;
    width: 100%;
    margin: 0 auto 30px;
  }
  .importance-section p {
    font-size: 12px;
    line-height: 16px;
    max-width: 217px;
    width: 100%;
    text-align: center;
    margin: auto;
  }
  .rooted_collection .carousel-item{
    margin-bottom: 0;
    height: 370px;
  }
  .rooted_collection .carousel-indicators{
    bottom: 5px;
  }
  .rooted_collection .carousel-indicators [data-bs-target]{
    width: 8px;
    height: 8px;
  }
  .carousel-indicators [data-bs-target]{
    margin-left: 5px;
    margin-right: 5px;
  }
  .rooted_collection .right_text{
    padding: 64px 0;
    gap: 20px;
  }
  .rooted_collection .common-heading{
    font-size: 32px;
    line-height: 35px;
    max-width: 290px;
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .rooted_collection .desc{
    font-size: 12px;
    line-height: 16px;
    max-width: 240px;
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .rooted_collection .btn-outline {
    max-width: 146px;
    text-align: center;
    margin: 0 auto;
    border-color: #02422B;
    width: 100%;
    height: 44px;
 }
 .rooted_collection .btn-outline a{
  color: #02422B;
 }
  .submit_the_form .title {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 12px !important;
  }
  .submit_the_form .small_title, .submit_the_form .desc {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin: 20px 0 15px;
  }
  .submit_the_form .desc{
    max-width: 300px;
  }
  .submit_the_form .form-inputs .form-group{
    width: 100%;
  }
  .submit_the_form .content{
    padding: 130px 15px 10px;
  }
  .submit_the_form .form-inputs .form-group .form-control{
    height: 33px;
    padding: 10px 20px;
  }
  .submit_the_form select {
    background-position: calc(100% - 10px) center;
    background-size: 10px;
  }
  .submit_the_form .form-inputs .form-group .form-control{
    font-size: 12px;
    line-height: 33px;
  }
  #state-select{
    line-height: 17px;
  }
  .submit_the_form .form-inputs{
    gap: 10px;
  }
  .submit_the_form .terms_and_conditions span{
    font-size: 8px;
    line-height: 13px;
  }
  .certificate_bg .signature_logo{
    height: 150px;
  }
  .submit_the_form .fill-detail .terms_and_conditions input, 
  .submit_the_form .brandOptions input{
    width: 22px;
    height: 20px;
  }
   .submit_the_form .brandOptions input{
    margin-top: 0;
   }
  .submit_the_form .submit-btn{
    margin: 20px auto 50px;
    width: 135px;
    height: 44px;
    font-size: 12px;
    line-height: 28px;
    border: 2px solid #02422B;
    border-radius: 10px;
  }
  .submit_the_form .terms_and_conditions{
    margin: 25px 0;
  }
  .submit_the_form .fill-detail .terms_and_conditions input:checked:after{
    left: 8px;
    top: 0px;
    width: 7px;
    height: 16px;
  }
  .rooted_collection .carousel-item img{
    height: 370px;
  }
  .imp-banner h2{
    max-width: 300px;
  }
  .imp-banner p{
    max-width: 283px;
  }
  .imp-banner{
    height: 110vh;
  }
  .yellow-bg{
    padding: 42px 0;
  }
  .yellow-bg .banner-content{
    flex-direction: column;
  }
  .yellow-bg h2, .stat-box h3{
    font-size: 32px;
    line-height: 35px;
    text-align: center;
  }
  .yellow-bg h2{
    max-width: 282px;
    margin-bottom: 20px;
  }
  .yellow-bg .btn-outline{
    padding: 0;
    text-align: center;
  }
  .tide-content {
    gap: 0;
    flex-direction: column;
    justify-content: center;
  }
  .tide-text h3 {
    font-size: 32px;
    line-height: 35px;
    max-width: 212px;
    text-align: center;
    margin: 0 auto 30px;
  }
  .tide-text, .tide-image{
    width: 100%;
  }
  .tide-text p {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    max-width: 315px;
    width: 100%;
    margin: 0 auto;
  }
  .tide-image img{
    margin-bottom: -8px;
  }
  .stats-section .desc {
    font-size: 12px;
    line-height: 16px;
    max-width: 91%;
    margin: 20px auto 40px;
  }
  .stat-box .icon img{
    width: 65px;
    height: 65px;
  }
  .stat-box p {
    font-size: 12px;
    line-height: 16px;
  }
  .stat-box .icon{
    margin-bottom: 15px;
  }
  .stats-grid{
    gap: 36px;
  }
  .stats-section{
    padding: 45px 20px 60px;
  }

  .full_bgImage.thankyou_bg {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3)
      ),
      url("../assets/images/thankyou_bg.png") no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 77vh;
  }
  /*certificate css*/
  .certificate_bg {
    height: 102vh;
  }
  .certificate_bg .container {
    padding: 0 20px;
  }
  .thankyou img{
    margin: auto;
    height: 150px;
  }
  .thankyou .socialIcons img{
    height: 15px;
  }
  .certificate_bg .font79 {
    font-size: 40px;
    line-height: 45px;
  }
  .certificate_bg .yellow_divider {
    width: 145px;
    margin: 20px 0;
  }
  .certificate_bg .signature_image {
    width: 200px;
    height: 100px;
  }
  .close_icon svg{
    width: 10px;
  }
  .close_icon span{
    font-size: 12px;
  }
  .playIcon img{
    width: 20px;
  }
  .close{
    right: 10px;
    top: 2px;
    width: 14px;
  }
  .video-image .playbutton img{
    width: 20px;
  }
  .thankyou_text{
    font-size: 38px;
    line-height: 48.91px;
  }
  .btn_yellow a {
    font-size: 20px;
    line-height: 32px;
  }
  .btn_yellow {
    width: 179px;
    height: 48px;
  }
  .submit_the_form .brandQuestion {
    font-size: 12px;
    line-height: 16px;
    margin: 30px 0 15px;
  }
  .submit_the_form .brandOptions span{
    font-size: 10px;
    line-height: 12px;
  }
  .submit_the_form .brandOptions{
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
  }
  .submit_the_form .brandOptions label{
    gap: 10px;
  }
  .submit_the_form .brandOptions input:checked:after {
    left: 3.5px;
    top: 3px;
    width: 15px;
    height: 15px;
  }
  .video-section .text-on-video {
    bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .rooted_collection .right_text img{
    width: 139px;
    margin: auto;
  }
  .submit_the_form .content{
    text-align: left;
  }
  .video-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #languagePopup p{
    font-size: 20px;
  }
  .blur-background{
    filter: blur(3px);
  }
  #languagePopup div{
    /* flex-direction: column; */
    gap: 10px;
  }
  /* .video-section video{
    margin: 0;
  } */
  #languagePopup{
    width: 85%;
    height: 55%;
    gap: 10px;
  }
  #languagePopup div .btn-outline a{
    font-size: 12px;
  }
  #languagePopup div .btn-outline{
    padding: 10px 22px;
    height: 25px;
    width: 80px;
  }
  .close_icon {
    right: 20px;
    bottom: 70px;
  }
}

