
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html,
body {
  width: 100%;
  overflow-x: hidden;
 
}

/* colours  */

:root {
  --primary: #F36F21;
  --secondary: #1C3A7B;
  --prim-font: #26344E;
  --light-shade:#FCF4DF;
  --light-shade2:#F8F9F9;
  --head:#0B1730;
}

a{
 color: #0D0D0D;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: "Manrope", sans-serif;
}
h1, h2, h3, h4, h5, h6{
   font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  color: var(--head);
  font-weight: 700;
}
h2{
  font-size: calc(2.2rem + 0.2vw);
}
h3{
  font-size: calc(2rem + 0.2vw);
}
h4{
  font-size: calc(1.8rem + 0.2vw);
}
h5{
  font-size: calc(1.6rem + 0.2vw);
}
h6{
  font-size: calc(1.4rem + 0.2vw);
}
p{
  color: var(--prim-font);
  font-size: 1rem;
}
.cmt-5{
  margin-top: 3rem !important;
}
.navbar {
  padding: 15px 20px;
  transition: all 0.4s ease;
  background-color: #fff;
  box-shadow: none;
}
.navbar-brand img {
  height: 60px;
  transition: height 0.4s ease;
}

.nav-scroll {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 8px 50px;
  background-color: #fff;
}

.navbar-nav .nav-link {
  color: #0A1A2F!important;
  font-weight: 500;
  margin: 0 8px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.book-btn {
  background-color: var(--primary);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #f05e09;
  color: #fff;
}
.book-btn:visited{
  background-color: #f05e09;
}
.book-btn:focus {
  outline: none; /* remove default blue outline */
  box-shadow: 0 0 0 3px rgba(240, 94, 9, 0.4); /* custom glow in your accent color */
}
.book-btn img {
  height: 25px;
  margin-right: 5px;
  vertical-align: middle;
}

/* Dropdown Animation */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  pointer-events: none;
}

/* Desktop hover animation */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile: dropdown works on click */
@media (max-width: 991px) {
  /* Hide by default */
  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    position: static;
    box-shadow: none;
    pointer-events: none;
    background-color: transparent;
    transition: none;
  }

  /* When dropdown is opened via Bootstrap (adds .show) */
  .dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dropdown-item {
    padding-left: 1.5rem;
  }
}
.dropdown-item {
  color: var(--prim-font);
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--light-shade);
  color: var(--primary);
}

/* Mobile */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 25px;
  }
  .book-btn {
    margin-top: 10px;
  }
}

.banner-sec{
  width: 100%;
  height:100vh;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
  position:relative;
}
.banner-sec .banner-bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position:relative;
 z-index: 0;
}
.banner-cont{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  background: #000E2D;
  background: linear-gradient(0deg, rgba(0, 14, 45, 1) 0%, rgba(0, 14, 45, 0) 100%);
  z-index: 300;
  display: flex;
  align-items:flex-end;
  justify-content: center;
  padding: 2rem;
}
.banner-text{
  position: relative;
   z-index: 301;
}
.banner-text h1{
  font-size: calc(3rem + 0.5vw);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 3.3rem;
}
.fixed-side-panel{
  position: absolute;
  right: 0px;
  top: 40%;
  border-radius: 8px 0px 0px 8px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.fixed-side-panel a{
  width:50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}


/* Optional: scale icon slightly */
.fixed-side-panel a:hover img {
  transform: scale(1.03);
}
.fixed-side-panel a img{
  max-width: 100%;
}
.fixed-side-panel a:nth-child(odd){
  background-color: var(--secondary);
}
.fixed-side-panel a:nth-child(even){
  background-color: var(--primary);
}
.banner-text p{
  color:#fafafa;
}
.cta-btn-sec{
  text-align: center;
  margin-top: 25px;
  position: relative;
  z-index: 301;
}
.cta-btn-sec .book-btn{
  margin-right: 10px;
}
.cta-btn-sec .book-btn img{
  height: 25px;
  vertical-align: middle;
   margin-right: 3px;
}
.call-btn {
  background-color: var(--secondary);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background-color: #0f2961;
  color: #fff;
}
.call-btn img {
  height: 25px;
  margin-right: 5px;
  vertical-align: middle;
}
.quality-logos{
  width:100%;
  height:auto;
}
.spacer-sm{
  padding: 70px 50px;
}
.spacer-xs{
  padding: 30px 50px;
}

.quality-logos h2{
  text-align: center;
}
.title{
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.title::after{
  content: '';
  width: 40%;
  height: 4px;
  background-color: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.scale{
  transition: all 0.3s ease;
}
.scale:hover{
  transform: scale(1.1);
}
.small-det{
  background-color: var(--light-shade2);
}
.small-det-sun-light-bg{
  padding-left: 50px;
  background-color: var(--light-shade);
}
.small-blurb{
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: capitalize;
  line-height: 2.7rem;
  margin: 15px 0px;
}
.sunset-bld{
  color: var(--primary);
  font-weight: 700;
}
.blue-narrow{
  font-weight: 400;
  font-size: 1.6rem;
}
.qt-line{
  width: 600px;
  max-width: 100%;
}
.ln-after{
  width: 260px;
  max-width: 100%;
}
.small-det{
  padding-left: 50px;
}
.abt-img-box{
  max-width: 500px;
  border-radius: 15px;
    position: relative;
}
.abt-img-box img{
  width: 100%;
}
.abt-img-box-wr{
  display: flex;
  justify-content: flex-end;
  align-items: center;

}
.abt-cont-wr{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.our-service h2{
  text-align: center;
}
.service-bx{
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}
.service-bx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.service-bx:hover img{
  transform: scale(1.1);
}
.serv-det-bx{
  position: absolute;
  bottom: 15px;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  text-align: left;
}
.serv-det-bx h6{
  text-transform: capitalize;
  margin-bottom: 8px;
  color: var(--secondary);
}
.serv-det-bx-num{
  position: absolute;
  top:0px;
  right:10px;
  color: rgb(243, 111, 33, 0.3);
  font-weight: 700;
   font-size: 2.6rem;
}
.btn-read{
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}
.serv-det-bx p{
  margin-bottom: 0.5rem;
}
.btn-read:hover{
  color: var(--secondary);
}
.owl-carousel-wr{
  position: relative;
}
.ser-left{
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #ffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 50px;
  height: 50px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ser-left img{
  max-width: 100%;
  height: auto;
}
.ser-right{
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #ffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 50px;
  height: 50px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ser-right img{
  max-width: 100%;
  height: auto;
}
.sec-btn{
  background-color: var(--primary);
  border: none;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 15px 5px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}
.sec-btn:hover{
  background-color: var(--secondary);
  color: #fff;
}
.sec-btn:hover .round-go img{
  transform: translateX(2px);
}
.round-go{
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  position: relative;
  padding: 0.5rem;
}
.round-go img{
  width: 100%;
  transition: all 0.3s ease;
}
.why-choose{
  width:100%;
  height: auto;
  border-radius: 20px;
  padding: 2rem;
  background-color: var(--light-shade);
}
.check-list{
  list-style: none;
 
}
.check-list li{
  position: relative;
  margin-bottom: 30px;
  font-weight: 500;
   padding-left: 35px;
   font-size: 1.1rem;
   color: var(--prim-font);

}
.check-list li:last-child{
  margin-bottom: 0px;
}
.check-list li::before{
  content: url('../img/flow-tick-01.svg');
  width: 
  20px;
  position: absolute;
  left: 0px;
  top: 60%;
  transform: translateY(-50%);
}
.check-list2 li::before{
  content: url('../img/ico/flow-tick-white.svg');
}
.check-list2 li{
  color: #fff;
}
.why-choose h2{
  margin-bottom: 35px;
}
.sbtit{
  color: var(--primary);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.why-ch-cont-wr{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.review-sec .sbtit{
  text-align: center;
}
.review-head{
  width: 100%;
  height: auto;
   display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.review-head-left img{
  width: 100%;
  max-width: 230px;
  height: auto;
}
.review-bx{
  background-color:#ffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-height: 300px;
  margin-bottom: 30px;
}
.review-bx-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviewer{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.reviewer-img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.reviewer-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rev-name{
  font-size: 1.3rem;
  color: var(--head);
  font-weight: 700;
}
.revbx-det{
  margin-top: 10px;
}
.five-star{
  display: block;
  margin-top: 10px;
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.review-car{
  margin-top: 30px;

}
.google-ref img{
  max-width:50px;
  height: auto;
}
.sh-text a{
  color: var(--primary);
  font-weight: 600;
}
.review-car-wr{
  position: relative;
}
.review-car-wr .ser-left{
  left: -30px;
}
.review-car-wr .ser-right{
  right: -30px;
}
.book-app-cta{
  width: 100%;
  height: auto;
  background-color: var(--light-shade2);
  border-radius: 20px;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-img{
  width: 100%;
  max-width: 500px;
  height: auto;
}
.cta-cont-bx{
  text-align: center;
  margin-right: 150px;
}
.cta-cont-bx h2{
  font-size: calc(2.5rem + 0.3vw);
  margin-bottom: 15px;
  text-transform: capitalize;
}
.cta-cont-bx h2 span{
  color: var(--secondary);
}
.schedule-app{
  background-color: var(--light-shade);
  border-radius: 20px;
  padding: 2rem;
}
.hr-list{
  max-width: 80%;
  list-style: none;
  margin-top: 30px;
}
.hr-list li{
  position: relative;
  margin-bottom: 20px;
  padding-left: 5px;
  color: var(--secondary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule-app h3, .schedule-app h5{
  color: var(--prim-font);
  text-transform: capitalize;
}
.day{
  text-align: left;
  font-weight: 600;
}
.time{
  text-align: right;
  font-weight: 700;
}
.cond{
  font-size: 0.8rem;
  font-weight: 400;
  line-height:5px!important;
}
.close-red{
  color:var(--primary);
}


.contact-form {
      padding: 40px 0px;
      border-radius: 8px;
      max-width: 800px;
      margin: 0px auto;
    }
.form-control {
      background-color: #fffdf8;
      border: none;
      border-radius: 6px;
      box-shadow: none;
      padding: 12px 15px;
      font-size: 15px;
  }
.form-control:focus {
      box-shadow: 0 0 0 0.2rem rgba(243, 111, 33, 0.25);
  }


.schedule-app .title {
  position: relative;
  display: inline-block;
  left: 0%;
  transform: unset;
}
.ft-sec{
  width: 100%;
  height: auto;
  padding: 20px 50px 0px 50px;
}
.ft-sec p{
  color:#34486b;
}
.ft-sec a{
  text-decoration: none;
  transition: all 0.3s ease;
   color:#34486b;
}
.ft-sec a:hover{
  color: var(--primary);
}
.cont-sing-row{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 5px;
}
.set-bld{
  font-weight: 600;
}
.ft-logo img{
  width: 250px;
  height: auto;
  margin-bottom: 15px;
}
.sing-row-ico{
  margin-right: 5px;
}
.ft-sm a{
  margin-right: 5px;
}
.ft-sm {
  margin-top: 15px;
}
.ft-links ul{
  list-style: none;
}
.ft-links ul li{
  margin-bottom: 10px;
 
}
.ft-links ul li a{
   color:var(--prim-font);
   font-weight: 600;
}
.ft-sec h6{
  text-transform: capitalize;
}
.cpright{
  width:100%;
  height: auto;
  padding: 10px 0px;
  border-top: 1px solid #CFCFCF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-list ul{
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.cpright p{
  margin-bottom: 0px;
}
.cp-list ul li{
  padding: 0px 10px ;
  border-right: 1px solid #CFCFCF;
}
.cp-list ul li:last-child{
  border-right: none;
}
.inner-baner-xl{
  width: 100%;
  height: 98vh;
  position: relative;
}
.inner-baner-xl img{
   width:100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}
.inner-baner-xl-cont{
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: 50px;
}
.inner-baner-xl-subtit{
  max-width: 80%;
  font-size: 1.3rem;
  color: var(--prim-font);
}
.inner-baner-xl-cont h1{
  color: var(--secondary);
}
.serv-intro{
  width: 95%;
  height: auto;
  padding: 30px;
  margin: -80px auto 10px auto;
  background-color: var(--secondary);
  border-radius: 20px;
  position: relative;
}
.serv-left{
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.serv-left h2{
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}
.serv-left .title{
  left: 0%;
  transform: unset;
}
.left{
   left: 0%;
  transform: unset;
  margin-bottom: 25px;
}
.serv-left p{
  color: #fff;
}
.serv-right img{
  display: block;
  max-width: 500px;
  margin: 10px auto;
}
.benefit-sec{
  width: 100%;
  height: auto;
}
.b-list{
  list-style: none;
  color: var(--prim-font);
  font-weight: 600;
  font-size: 1.1rem;
}
.b-list li{
  margin-bottom: 15px;
}
.img-plhlder{
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
.img-plhlder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.benefit-right-bx{
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.step-bx-sec{
  background-color: #F4F8FB;
}
.step-bx-white{
  border-radius: 20px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: left;
  color: var(--prim-font);
  background-color: #ffff;
  position: relative;
  min-height: 220px;
  margin-bottom: 30px;
}
.step-bx-blue{
  border-radius: 20px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: left;
  color: #fff;
  background-color: var(--secondary);
  position: relative;
  min-height: 220px;
  margin-bottom: 30px;
}
.stepbx-num{
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.4;
}
.step-bx-blue .stepbx-num{
  color: #fff;
}
.step-tit{
  font-size: 1.3rem;
  font-weight: 600;
}
.step-tit span{
  font-size: 1.1rem;
  font-weight: 500;
}
.step-ico {
  margin-bottom: 15px;
}
.step-ico img{
  max-width: 80px;
}
.video-bx{
  max-width: 60%;
  height: auto;
  border-radius: 20px;
}
/* Section 1 - Video */

.video-wrapper{
  max-width: 65%;
  margin: 50px auto 0px auto;
}
.video-wrapper video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Section 2 - Tabs */
.tab-inner-wr{
  border-radius: 20px;
  padding:20px;
  background-color: var(--light-shade);
}
.tabs-section .nav-tabs {
  border-bottom: 2px solid #ddbeab;
}

.tabs-section .nav-link {
  color: #4E5461;
  font-weight: 600;
  font-size: 1.1rem;
  padding: .5rem 1rem;
  margin-top: 15px;
}

.tabs-section .nav-link.active {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  background-color: transparent;
}
.rounded{
  border-radius: 20px!important;
}
.tabs-section .tab-content .check-list li::before{
  top: 46%;
}

/* Section 3 - Before After */
.ba-slider {
  position: relative;
  overflow: hidden;
}

.ba-slider img {
  width: 100%;
  display: block;
}

.ba-slider .resize {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.ba-slider .handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--primary);
  cursor: ew-resize;
}

/* Section 4 - CTA */
.cta-section {
  background: var(--secondary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section h2{
  max-width: 70%;
  color: #fff;
}
.cta-lady{
  position: absolute;
  top: 0px;
  right:-50px;
  /* max-width:200px; */
  height: 100%;
}
.cta-lady img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-innerimg{
  height: 100%;
  padding: 15px;
}
.cta-innerimg img{
  width: 100%;
  max-width: 500px;
}

/* Section 5 - Slider */
.slider-section{
  padding: 50px 0px;
}
.slider-section .section-title {
  color: var(--head);
  margin-bottom: 30px;
}
.bef-af-carousel {
  position: relative;
  z-index: 1;
}

.bef-af-carousel .owl-stage-outer {
  overflow: visible; /* allow zoomed item to expand beyond container */
}

.bef-af-carousel .owl-item {
  margin: 50px 0px;
  transition: transform 0.4s ease, z-index 0.4s ease;
  position: relative;
  z-index: 1;
}

.bef-af-carousel .owl-item img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bef-af-carousel .owl-item.active-center {
  z-index: 5; /* bring the active one to the top */
  transform: scale(1.05); /* gentle zoom for entire item, not just image */
}

.bef-af-carousel .owl-item.active-center img {
  transform: scale(1.1);
}

.bef-af-carousel .owl-item:not(.active-center) img {
  transform: scale(0.9);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 767px) {
  .spacer-sm {
    padding: 50px 20px;
  }
}
.sec-check-list{
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.sec-check-list li{
  position: relative;
  margin-bottom: 30px;
  font-weight: 500;
   padding-left: 35px;
   font-size: 1.1rem;
   color: var(--prim-font);

}
.sec-check-list li:last-child{
  margin-bottom: 0px;
}
.sec-check-list li::before{
  content: url('../img/teeth-tick.svg');
  width: 
  20px;
  position: absolute;
  left: -15px;
  top: 60%;
  transform: translateY(-50%);
}
.visit-flow-bx .sec-check-list li::before{
  content: url('../img/teeth-tick-sm.svg');
  left: 0px;
}
.visit-flow-bx .sec-check-list li{
  padding-left: 35px;
}
#comparison {
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
  position: relative;
}
#comparison figure {
  position: absolute;
  background-image: url('../img/why-invisalign-before.jpg');
  background-size: cover;
  background-position: center;
  font-size: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
#divisor {
  background-image: url('../img/why-invisalign-after.jpg');
  background-size: cover;
  position: absolute;
  width: 100%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;
 
}
#divisor::before, #divisor::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: white;
  z-index: 3;
}
#divisor::before {
  top: 0;
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
#divisor::after {
  bottom: 0;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}
#handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
#handle::before, #handle::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
#handle::before {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}
#handle::after {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}
input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
}
input[type="range"]:focus, input[type="range"]:active {
  border: none;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid white;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}
input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}
.before-after-section .title::after{
  left: 0px;
  transform: unset;
}
.before-after-section .title{
  margin-bottom: 50px!important;
}
.ter-btn{
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}
.ter-btn img{
  margin-right: 5px;
}
.ter-btn:hover{
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.ter-btn:hover .round-go img{
  transform: translateX(2px);
}
.ter-btn .round-go{
  width: 30px;
  height: 30px;
}
.faq-section {
  background-color: var(--light-shade2);
}

.faq-section h2 {
  color: var(--head);
  font-weight: 700;
}

.faq-section .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-section .card-header {
  background: #fff;
  padding: 0;
}

.faq-section .btn-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  color: var(--prim-font);
  font-weight: 600;
  padding: 20px;
  border: none;
  background: none;
  text-decoration: none;
  font-size: 16px;
}

.faq-section .btn-link::after {
  content: '+';
  font-size: 22px;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-section .btn-link[aria-expanded="true"]::after {
  content: '–';
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-section .card-body {
  padding: 0 20px 20px;
  color: #555;
  font-size: 15px;
  background: #fff;
}

@media (max-width: 576px) {
  .faq-section .btn-link {
    font-size: 15px;
    padding: 15px;
  }
}
.vert-centered{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bring-bx{
  border-radius: 20px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: left;
  color: var(--prim-font);
  background-color: #ffff;
  position: relative;
  min-height: 220px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
   flex-direction: column;
}
.bring-tit{
  font-size: 1.2rem;
  font-weight: 600;
}
.bring-ico img{
  max-width: 80px;
}
.bring-tit span{
  font-size: 0.9rem;
}
.helpbx{
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  padding: 80px 50px;
}
.helpbx h2{
  margin-bottom: 40px;
  color: #fff;
}
.helpbx .check-list li{
  color: #fff;
}
.cv-bx{
  width: 100%;
  height: 100%;
  background:url(../img/cover-bg.jpg);
  background-position: center;
  background-size: cover;
  padding: 80px 50px;
}
.help-cover .row{
  align-content: stretch!important;
}
.cv-bx h2{
  color: #fff;
  margin-bottom: 40px;
}
.cv-bx  p{
  color: #fff;
}
.visit-flow-bx{
  background-color: var(--light-shade);
  border-radius: 15px;
  padding: 2rem;
}
.visit-flow-bx-img img{
  max-width: 100%;
  width: 400px;
}
.visit-flow-bx .sec-check-list{
  margin-top: 30px;
}
.visit-flow-bx-left{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.inner-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floating-label label{
  display: none;
}
.inner-banner-sm{
  width: 100%;
  height: 500px;
  position: relative;
}
.inner-banner-sm img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inner-banner-sm-cont{
  position: absolute;
  top: 60%;
  left: 50px;
  transform: translateY(-50%);
  text-transform: uppercase;
  margin-bottom: 0px;
}
.inner-banner-sm-cont h1{
  color: #fff;
}
.direct-bill h2{
  margin-bottom: 40px;
}
.direct-bill p{
  text-align: center;
  max-width: 80%;
  margin: 10px auto;
}
.common-insur{
  margin-top: 50px;
}
.common-insur h3{
  text-align: center;
}
.disclaimer{
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.insurance-section {
  background: #fff;
}



.insurance-section .logo-box {
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  height: 120px;
  background: #fff;
}

.insurance-section .logo-box.alt-bg {
  background: var(--light-shade2);
}

.insurance-section .logo-box img {
  max-height: 70px;
  width: auto;
}

@media (max-width: 767.98px) {
  .insurance-section .logo-box {
    height: 100px;
    padding: 15px;
  }
}
.bring-works{
  padding: 0px 50px 30px 50px;
}
.bring-sec{
  background-color: var(--primary);
  padding: 2rem;
  height: 100%;
}
.bring-sec h3{
  color: #fff;
  margin-bottom: 20px;
}
.wrk-bx{
  background-color: var(--secondary);
  padding: 2rem;
  height: 100%;
}
.wrk-bx h3{
  color: #fff;
  margin-bottom: 20px;
}
.inhouse-payment{
  background-color: var(--light-shade);
}
.inhouse-payment  h3{
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.type-stru{
  margin-top: 50px;
}
.inner-faq{
  margin-top: 50px;
}
.thirdparty-pay{
  background-color: var(--light-shade2);
}
.list{
  padding-left: 1%;
}
.list li{
  color: var(--prim-font);
}
.thirdparty-pay  h3{
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.cta-section h3{
  color: #fff;
}
.cta-section p{
  color: #fff;
}
.cta-section .round-go{
  width: 30px;
  height: 30px;
}
.cta-section .sec-btn:hover{
  background-color: #f05e09;
  color: #fff;
}
.abt-sec h2{
  text-align: center;
}
.abt-sec p{
  max-width: 80%;
  margin: 15px auto;
  text-align: center;
}
.doc-card{
  background-color: var(--light-shade);
  padding: 2rem;
  border-radius: 20px;
}
.doc-sec{
   width:100%;
   height: auto;
   padding: 0px 50px;
}
.doc-name{
  font-size: 1.9rem;
  font-weight: 700;
}
.doc-desig{
  color: #4E5461;
  font-weight: 600;
  font-size: 1.4rem;
}
.doc-card-right{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.doc-card-left{
  text-align: center;
}
.doc-card-left img{
  width: 400px;
  max-width: 100%;
  margin: 10px auto;
}
.doc-card-right p{
  margin-top: 20px;
}
.phil-high{
  width: 100%;
  height: auto;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phil-high-left{
  width: 50%;
  padding: 20px 60px;
}
.phil-high-right{
    width: 50%; 
     padding: 20px 60px;
}
.phil-high h3{
  display: block;
  position: relative;
  z-index: 1;
}
.phil-high h3::before{
  content: url('../img/quote.svg');
  position: absolute;
  top: -15px;
  left: -40px;
  z-index: -1;
  opacity: 0.3;
}
.cont-det-sec{
  width:100%;
  height:auto;
  padding: 70px 50px;
}
.sing-row{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.cont-det-tit{
  font-weight: 600;
  font-size: 1.5rem;
}
.contico-bx{
  margin-right: 8px;
}
.contico-bx img{
  max-width: 60px;
}
.cont-det-sec a{
  text-decoration: none;
  transition:0.3s all ease-in-out;
}
.cont-det-sec a:hover{
  color: var(--primary);
}
.cont-frm-wrking-hrs{
  width:100%;
  height: auto;
  padding: 0px 50px 70px 50px;
}
.cont-frm-wr{
  background-color: var(--light-shade);
  padding: 2rem;
  border-radius: 20px;
}
.cont-frm-wrking-hrs h2{
  font-size: 1.8rem;
  text-transform: capitalize;
}

.cont-sm a{
  margin-right: 5px;
}
.cont-frm-wrking-hrs h3{
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.cont-wrk-hrs{
  margin-bottom: 35px;
}
.breadcrumb{
  padding: 0px;
}
.breadcrumb .breadcrumb-item, .breadcrumb .breadcrumb-item a{
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item.active{
  color: #FFD8C2;
} 
.breadcrumb-item + .breadcrumb-item::before{
  color: #6f8dbd;
}
.serv-list-sec .service-bx{
  margin-bottom: 40px;
}
.serv-list-sec .title{
  text-align: center;
  margin-bottom: 50px;
}
.blog-bx{
  width: 100%;
  margin-bottom: 50px;
}
.blog-imgbx{
  width: 100%;
  max-width: 100%;
  height:280px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.blog-cat{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  color: var(--primary);
  font-weight: 600;
}
.blog-imgbx img{
   width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-listing-tit{
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--head);
}
.blog-basic-det-head{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight:600;
  color:#53555e;
  font-size: 1.1rem;
}
.blog-user{
  margin-right: 10px;
}
.blog-basic-det-head img{
  width: 15px;
  margin-right: 3px;
}
.blog-user, .blog-timestamp{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.blog-basic-det-head{
  margin-bottom: 5px;
}
.blog-det-tit{
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.blog-det-sec{
  padding:30px 0px;
}
.blog-det-img{
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.blog-det-img img{
  max-width: 100%;
  height: auto;
}
.det-tit{
  margin-top: 15px;
  text-transform: capitalize;
}
.blog-det-sec h2{
  text-transform: capitalize;
  margin-bottom: 20px;
}
.blog-det-sec h3{
  text-transform: capitalize;
  margin-bottom: 10px;
}
.det-sec-sp{
  margin:30px 0px;
}
.tag-list{
  width: 100%;
  height: auto;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tag-tit{
  font-size: 1.2rem;
  font-weight: 600;
}
.tag-list a{
  color: #fff;
  background-color: var(--secondary);
  border-radius: 30px;
  padding: 0.8rem;
  margin: 5px 8px;
  font-weight: 600;
  text-decoration: none;
}
.tag-share{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px;
}
.tag-list{
  max-width: 75%;
}
.blog-share{
   display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-share a{
  margin: 0px 5px;
}
.blog-cta h4{
  text-transform: capitalize;
}
.blog-cta{
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 20px;
}
.blog-cta h4{
  color: #fff;
   font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.other-post-sec{
  margin-top: 30px;
  background-color: var(--light-shade2);
  padding: 1rem;
  border-radius: 15px;
}
.other-blog-img{
  width: 30%;
  height: 90px;
  margin-right: 10px;
}
.other-blog-tit{
  width: 70%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4rem;
  color:#343c50;
}
.other-blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.other-blog-list{
  list-style: none;
}
.other-blog-list li a{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.other-blog-list li a:hover{
  color: var(--primary);
}
.other-blog-list li{
  padding: 20px 0px;
  border-bottom: 1px solid #e9e9e9;
}
.other-blog-list li:last-child{
  border-bottom: 0px;
  padding-bottom: 0px;
}
.other-blog-tit span{
  font-size: 0.9rem;
}
.blog-categ-bx{
   margin-top: 30px;
  background-color: var(--light-shade2);
  padding: 1rem;
  border-radius: 15px;
}
.other-post-sec h3, .blog-categ-bx h3{
  text-transform: capitalize;
  font-size: 1.5rem;
}
.cat-list{
  list-style: none;
  margin-top: 15px;
}
.cat-list li{
  margin: 10px 0px;
}
.cat-list li a{
  font-size: 1.1rem;
  font-weight: 600;
  color:#343c50;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.cat-list li a:hover{
  color: var(--primary);
}
.wp-block-navigation .wp-block-navigation-item{
    margin: 5px 15px;
     color: #0A1A2F !important;
}
.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{
  color: #0A1A2F !important;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size:1rem;
  text-decoration:none;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.35s ease, transform 0.35s ease;
    background-color: #fff;
    border:0px;
    min-width: 200px!important;
   
}
.wp-block-navigation__submenu-container .wp-block-navigation-item .wp-block-navigation-item__content{
    text-transform:capitalize;
    color: var(--prim-font)!important;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: .5rem 0.8rem;
}
.wp-block-navigation__submenu-container .wp-block-navigation-item .wp-block-navigation-item__content:hover{
    background-color: var(--light-shade);
    color: var(--primary)!important;
}
.wp-block-navigation__submenu-container .wp-block-navigation-item{
     margin: 3px;
}
.rating-star{
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
}
.rating-star img{
    max-width:26px;
}
.nav-tabs .nav-link:hover{
    border-color:transperant;
}
.benefit-right-bx .title::after{
    left: 20%;
}
.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{
    margin-right: 13px;
}
.spacer-sm-xl{
  min-height: 90vh;
  padding: 150px 50px;
}
.error{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.breadcrumb .breadcrumb-item{
  background-color:rgb(28, 58, 123, 0.8);  
  padding:0.3rem;
  margin-top: 10px;
}
.cta-buttons .ter-btn{
    margin-left:8px;
}
.blog-listing-tit a{
    transition:all 0.3s ease;
    text-decoration:none;
}
.blog-listing-tit a:hover{
 color: var(--primary);
}




/* popp style 24-12-25 */
/* =================== POPUP STYLES =================== */

.nb-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 48, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.nb-popup-image{
  display: block;
  max-width: 100px;
  margin: 0px auto!important;
}
.nb-popup {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.nb-popup-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.nb-popup-body p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.nb-popup-highlight {
  background: var(--light-shade);
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

.nb-popup-note {
  color: var(--primary);
  font-weight: 600;
}

.nb-popup-list {
  margin: 1rem 0;
  padding-left: 20px;
}

.nb-popup-list li {
  margin-bottom: 8px;
  color: var(--prim-font);
  font-weight: 500;
}

.nb-popup-sign {
  text-align: center;
  font-weight: 600;
  margin-top: 1.5rem;
}

.nb-popup-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.nb-popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
}

.nb-popup-btn-close {
  background-color: var(--secondary);
}

.nb-popup-btn-close:hover {
  background-color: #0f2961;
}

/* Mobile */
@media (max-width: 576px) {
  .nb-popup {
    padding: 1.5rem;
  }
}



/* 
Invisalign Landing Page 19-08-2026 */
/* =========================================
   Landing Page Common Container
========================================= */

.landing-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
}
/* =========================
   Top Contact Bar
========================= */

/* =========================================
   Top Contact Bar
========================================= */

.top-contact-bar {
    width: 100%;
    background-color: var(--secondary);
    color: #fff;
    font-size: 14px;
}

.top-contact-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact-address,
.top-contact-phone a {
    display: flex;
    align-items: center;
}

.top-contact-phone a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-contact-phone a:hover {
    color: #fff;
}

.top-contact-icon {
    color: var(--primary);
    font-size: 15px;
    margin-right: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {

    .landing-container {
        padding-left: 30px;
        padding-right: 30px;
    }

}


@media (max-width: 767px) {

    .landing-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-contact-inner {
        min-height: 34px;
        justify-content: center;
    }

    .top-contact-address {
        display: none;
    }

    .top-contact-phone {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .top-contact-phone a {
        font-size: 13px;
    }

}

/* =========================================
   Invisalign Hero
========================================= */

.invisalign-hero {
    width: 100%;
    background-color: var(--light-shade2);
    overflow: hidden;
}

.invisalign-hero-row {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


/* =========================================
   Hero Content
========================================= */

.invisalign-hero-content {
    width: 55%;
    padding: 35px 0;
}

.doctor-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #d9efff;
    color: var(--secondary);
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
}

.doctor-label i {
    color: var(--secondary);
    font-size: 15px;
}

.doctor-label span {
    font-weight: 400;
}


/* =========================================
   Hero Heading
========================================= */

.invisalign-hero h1 {
    color: var(--secondary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    text-transform: none;
    margin-bottom: 12px;
}


/* =========================================
   Price Box
========================================= */

.invisalign-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    width: fit-content;
    max-width: 100%;
    padding: 8px 14px;
    border: 1px solid var(--secondary);
    border-radius: 8px;
    background-color: #FFFBF1;
    margin-bottom: 10px;
}

.invisalign-price strong {
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    font-weight: 800;
}

.invisalign-price .price-small {
    color: var(--prim-font);
    font-size: 14px;
    font-weight: 500;
}


/* =========================================
   Offer Text
========================================= */

.invisalign-hero h2 {
    color: var(--secondary);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.25;
    text-transform: none;
    margin-bottom: 0;
}

.invisalign-hero h2 span {
    color: var(--primary);
}

.hero-subtitle {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    margin: 2px 0 15px;
}


/* =========================================
   Hero Notes
========================================= */

.hero-note {
    margin-bottom: 18px;
}

.hero-note p {
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 3px;
}

.hero-note p span {
    color: var(--primary);
    font-weight: 800;
    margin-right: 3px;
}


/* =========================================
   Benefits
========================================= */

.hero-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.hero-benefits ul {
    width: 50%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--prim-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 9px;
}

.hero-benefits li:last-child {
    margin-bottom: 0;
}

.hero-benefits li i {
    flex-shrink: 0;
    color: #1599e6;
    font-size: 12px;
    margin-top: 3px;
}


/* =========================================
   CTA
========================================= */

.hero-cta {
    margin-top: 5px;
}

.invisalign-hero .book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.invisalign-hero .book-btn i {
    font-size: 16px;
}


/* =========================================
   Hero Image
========================================= */

.invisalign-hero-image {
    width: 45%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.invisalign-hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 1.13 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    display: block;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .invisalign-hero-row {
        gap: 30px;
    }

    .invisalign-hero-content {
        width: 55%;
    }

    .invisalign-hero-image {
        width: 45%;
    }

    .invisalign-hero h1 {
        font-size: 2.5rem;
    }

    .invisalign-price strong {
        font-size: 2rem;
    }

    .invisalign-hero h2 {
        font-size: 1.4rem;
    }

    .hero-benefits {
        gap: 15px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .invisalign-hero-row {
        min-height: auto;
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    .invisalign-hero-content {
        width: 100%;
        padding: 30px 0 0;
    }

    .invisalign-hero-image {
        width: 100%;
        justify-content: center;
        order: 2;
        padding-bottom: 30px;
    }

    .invisalign-hero-image img {
        max-width: 100%;
    }

    .invisalign-hero h1 {
        font-size: clamp(2rem, 9vw, 2.7rem);
        line-height: 1.12;
    }

    .invisalign-price {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }

    .invisalign-price strong {
        font-size: 2rem;
    }

    .invisalign-hero h2 {
        font-size: 1.35rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 0;
    }

    .hero-benefits ul {
        width: 100%;
    }

    .hero-benefits li {
        margin-bottom: 8px;
    }

    .hero-cta {
        margin-top: 15px;
    }

    .hero-cta .book-btn {
        width: 100%;
        justify-content: center;
    }

}
.teeth-ico{
  max-height: 20px;
}

/* =========================================
   Landing Page Section Navigation
========================================= */

/* =========================================
   Landing Section Navigation
========================================= */

.landing-section-nav {
   width: 100%;
    background-color: var(--secondary);
    position: relative;
    z-index: 9999;

    background-color: var(--secondary);

    /* Helps sticky inside flex/grid layouts */
    align-self: flex-start;
}
.landing-section-nav.nav-is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Navigation inner */

.landing-section-nav-inner {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: stretch;
    justify-content: center;
}


/* Navigation links */

.landing-section-nav a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    padding: 0 28px;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}


/* =========================================
   Active Orange Underline
========================================= */

.landing-section-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background-color: var(--primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}


.landing-section-nav a.active::after {
    transform: scaleX(1);
}


/* =========================================
   Hover
========================================= */

.landing-section-nav a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.landing-section-nav a:hover::after {
    transform: scaleX(1);
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .landing-section-nav-inner {
        justify-content: flex-start;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -ms-overflow-style: none;

        -webkit-overflow-scrolling: touch;
    }

    .landing-section-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .landing-section-nav a {
        flex: 0 0 auto;

        padding: 0 20px;

        font-size: 13px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .landing-section-nav-inner {
        min-height: 48px;
    }

    .landing-section-nav a {
        padding: 0 17px;

        font-size: 12px;
    }

    .landing-section-nav a::after {
        height: 2px;
    }

}

/* =========================================
   Trust Badges
========================================= */

.landing-badges {
    width: 100%;
    background-color: #fff;
    padding: 28px 0;
}

.landing-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.landing-badge {
  margin: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-badge img {
    display: block;
    width: 100%;
    max-width: 120px;
    height: auto;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .landing-badges {
        padding: 25px 0;
    }

    .landing-badges-row {
        gap: 20px;
    }

    .landing-badge img {
        max-width: 105px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .landing-badges {
        padding: 20px 0;
    }

    .landing-badges-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 10px;
    }

    .landing-badge {
        width: 100%;
    }

    .landing-badge img {
        max-width: 90px;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .landing-badges-row {
        gap: 15px 5px;
    }

    .landing-badge img {
        max-width: 82px;
    }

}

/* =========================================
   All-Inclusive Section
========================================= */

.invisalign-inclusive {
    width: 100%;
    background-color: var(--secondary);
    color: #fff;
    padding: 55px 0;
}

.inclusive-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}


/* Heading */

.inclusive-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.inclusive-content h2 span {
    color: var(--primary);
}


/* Orange underline */

.inclusive-title-line {
    width: 235px;
    max-width: 60%;
    height: 4px;
    background-color: var(--primary);
    margin: 10px auto 17px;
    border-radius: 2px;
}


/* Intro */

.inclusive-intro {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 30px;
}


/* =========================================
   Checklist
========================================= */

.inclusive-list {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 30px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 55px;
    text-align: left;
}

.inclusive-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusive-list li {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
}

.inclusive-list li:last-child {
    margin-bottom: 0;
}

.inclusive-list li i {
    flex-shrink: 0;
    color: #1599e6;
    font-size: 18px;
}


/* Bottom note */

.inclusive-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    margin: 0;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .invisalign-inclusive {
        padding: 50px 0;
    }

    .inclusive-content {
        max-width: 680px;
    }

    .inclusive-list {
        column-gap: 35px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .invisalign-inclusive {
        padding: 40px 0;
    }

    .inclusive-content h2 {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .inclusive-title-line {
        width: 190px;
        height: 3px;
        margin-top: 8px;
        margin-bottom: 15px;
    }

    .inclusive-intro {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .inclusive-list {
        grid-template-columns: 1fr;
        max-width: 330px;
        row-gap: 0;
    }

    .inclusive-list li {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .inclusive-list li i {
        font-size: 16px;
    }

    .inclusive-note {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }

}

/* =========================================
   Ways To Pay
========================================= */

.ways-to-pay {
    width: 100%;
    background-color: var(--light-shade2);
    padding: 65px 0 60px;
}


/* =========================================
   Section Heading
========================================= */

.ways-to-pay-head {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.section-eyebrow {
    display: block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
}

.ways-to-pay-head h2 {
    color: var(--heading, #0B1730);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    margin: 0 0 18px;
}

.ways-to-pay-head h3 {
    color: var(--prim-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: none;
    margin: 0 0 4px;
}

.ways-to-pay-head p {
    color: var(--prim-font);
    margin: 0;
}


/* =========================================
   Payment Options
========================================= */

.payment-options {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.payment-option {
    width: 100%;
    min-height: 130px;

    display: flex;
    align-items: center;

    background-color: #fff;
    border: 1px solid #7894c4;
    border-radius: 13px;

    padding: 20px 18px;

    box-shadow: 0 8px 20px rgba(28, 58, 123, 0.06);
    transition: all 0.3s ease-in-out;
    margin-bottom: 27px;
}
.payment-option:hover{
  transform: translateY(-5px);
}


/* =========================================
   Payment Icon
========================================= */

.payment-option-icon {
    width: 78px;
    height: 78px;

    flex: 0 0 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--secondary);
    color: #fff;

    border-radius: 50%;

    font-size: 31px;

    margin-right: 17px;
}

.payment-option-icon i {
    line-height: 1;
}


/* =========================================
   Payment Content
========================================= */

.payment-option-content {
    flex: 1;
    min-width: 0;
}

.payment-option-title {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 7px;
}

.payment-option-title h3 {
    color: var(--prim-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;

    margin: 0;
}

.payment-option-title > span {
    color: var(--secondary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================
   Payment Details
========================================= */

.payment-option-details {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: var(--prim-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.payment-price {
    flex-shrink: 0;

    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================
   Payment Plan
========================================= */

.payment-plan {
    width: 100%;
    max-width: 650px;

    display: flex;
    align-items: center;

    background-color: #e8eef7;

    border-radius: 7px;

    padding: 7px 13px;
}

.payment-plan > div:not(.payment-divider) {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.payment-plan strong {
    color: var(--primary);
    font-size: 23px;
    font-weight: 700;
    white-space: nowrap;
}

.payment-plan span {
    color: var(--prim-font);
    font-size: 14px;
    line-height: 1.3;
}

.payment-plan b {
    color: var(--secondary);
    font-weight: 700;
}

.payment-divider {
    width: 1px;
    height: 25px;

    background-color: #c6d2e4;

    margin: 0 30px;
}


/* =========================================
   Bottom Statement
========================================= */

.payment-bottom-title {
    max-width: 775px;
    margin: 50px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.payment-bottom-title > span {
    flex: 1;
    height: 2px;
    background-color: var(--primary);
}

.payment-bottom-title h2 {
    flex: 0 0 auto;

    color: var(--secondary);

    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;

    text-transform: uppercase;
    text-align: center;

    margin: 0;
}

.payment-bottom-title h2 small {
    font-size: inherit;
    font-weight: 700;
    text-transform: none;
}

.payment-bottom-title h2 strong {
    color: var(--primary);
    font-weight: 700;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .ways-to-pay {
        padding: 55px 0;
    }

    .ways-to-pay-head {
        margin-bottom: 40px;
    }

    .payment-option {
        margin-bottom: 22px;
    }

    .payment-option-title h3 {
        font-size: 21px;
    }

    .payment-option-title > span {
        font-size: 15px;
    }

    .payment-option-details {
        font-size: 11px;
    }

    .payment-bottom-title {
        gap: 15px;
    }

    .payment-bottom-title h2 {
        font-size: 20px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .ways-to-pay {
        padding: 45px 0;
    }

    .ways-to-pay-head {
        margin-bottom: 30px;
    }

    .section-eyebrow {
        font-size: 14px;
    }

    .ways-to-pay-head h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .ways-to-pay-head p {
        font-size: 14px;
        line-height: 1.5;
    }
.video-iframe{
  width: 100%;
  height: 300!important;
}

    /* Payment card */

    .payment-option {
        min-height: auto;

        align-items: flex-start;

        padding: 18px 15px;

        border-radius: 12px;

        margin-bottom: 18px;
    }


    /* Icon */

    .payment-option-icon {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;

        font-size: 23px;

        margin-right: 12px;
    }


    /* Title */

    .payment-option-title {
        display: block;
        margin-bottom: 8px;
    }

    .payment-option-title h3 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 3px;
    }

    .payment-option-title > span {
        display: block;
        font-size: 14px;
        line-height: 1.35;
    }


    /* Details */

    .payment-option-details {
        display: block;
        font-size: 13px;
        line-height: 1.4;
    }

    .payment-price {
        display: inline-block;
        font-size: 21px;
        margin-right: 4px;
    }


    /* Payment plan */

    .payment-plan {
        display: block;
        padding: 9px 11px;
    }

    .payment-plan > div:not(.payment-divider) {
        display: flex;
        flex-wrap: wrap;
    }

    .payment-plan strong {
        font-size: 20px;
    }

    .payment-divider {
        width: 100%;
        height: 1px;

        margin: 7px 0;
    }


    /* Bottom heading */

    .payment-bottom-title {
        margin-top: 35px;
        gap: 10px;
    }

    .payment-bottom-title h2 {
        font-size: 16px;
        line-height: 1.3;
    }

    .payment-bottom-title > span {
        min-width: 25px;
    }

}
/* =========================================
   How It Works
========================================= */

.how-it-works {
    width: 100%;
    background-color: #fff;
    padding: 55px 0 60px;
}


/* =========================================
   Section Heading
========================================= */

.how-it-works-head {
    text-align: center;
    margin: 0 auto 40px;
}

.how-it-works-head .section-eyebrow {
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
}

.how-it-works-head h2 {
    color: var(--secondary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    margin: 0 0 3px;
}

.how-it-works-head p {
    color: var(--prim-font);
    margin: 0;
}


/* =========================================
   Steps Wrapper
========================================= */

.smile-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 13px;

    max-width: 90%;
    margin: 0 auto;
}


/* Connecting line */

.smile-steps::before {
    content: "";

    position: absolute;

    top: 56px;
    left: 5%;
    right: 5%;

    height: 1px;

    background-color: #26344E;

    z-index: 0;
}


/* =========================================
   Step Card
========================================= */

.smile-step {
    position: relative;

    min-height: 75px;

    background-color: #fff;

    border: 1px solid #26344E;
    border-radius: 6px;

    padding: 20px 12px 10px;

    text-align: center;

    z-index: 1;
}


/* First card */

.smile-step.active {
    border-color: #ff9a68;
    background-color: #FFFDF9;
}


/* =========================================
   Number
========================================= */

.smile-step-number {
    position: absolute;

    top: -22px;
    left: 50%;

    transform: translateX(-50%);

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--primary);
    color: #fff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;

    line-height: 1;

    border: 2px solid #fff;
}


/* =========================================
   Step Content
========================================= */

.smile-step-content h3 {
    color: var(--prim-font);

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;

    text-transform: none;

    margin: 0 0 3px;
}




/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .how-it-works {
        padding: 50px 0;
    }

    .smile-steps {
        grid-template-columns: repeat(5, minmax(150px, 1fr));

        overflow-x: auto;

        padding-top: 5px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .smile-steps::-webkit-scrollbar {
        display: none;
    }

    .smile-step {
        min-width: 150px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .how-it-works {
        padding: 42px 0 45px;
    }

    .how-it-works-head {
        margin-bottom: 32px;
    }

    .how-it-works-head h2 {
        font-size: 1.75rem;
    }




    /* Stack steps */

    .smile-steps {
        display: flex;
        flex-direction: column;

        gap: 16px;

        max-width: 420px;

        overflow: visible;

        padding-left: 15px;
        padding-right: 15px;
    }


    /* Vertical connecting line */

    .smile-steps::before {
        top: 20px;
        bottom: 20px;

        left: 27px;
        right: auto;

        width: 1px;
        height: auto;
    }


    .smile-step {
        width: 100%;
        min-height: 75px;

        display: flex;
        align-items: center;

        text-align: left;

        padding: 17px 15px 15px 45px;
    }


    .smile-step-number {
        left: 15px;
        top: 50%;

        transform: translateY(-50%);

        width: 20px;
        height: 20px;
    }


    .smile-step-content h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .smile-step-content p {
        font-size: 14px;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 480px) {

    .how-it-works-head h2 {
        font-size: 1.55rem;
    }

    .smile-steps {
        padding-left: 8px;
        padding-right: 8px;
    }

    .smile-step {
        padding-left: 43px;
    }

}
/* =========================================
   Invisalign Video Section
========================================= */

.invisalign-video-section {
    width: 100%;
    background-color: #fff;
    padding: 55px 0 60px;
}


/* Video wrapper */

.invisalign-video {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}


/* Video frame */

.invisalign-video-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #000;
    cursor: pointer;
}


/* Thumbnail */

.invisalign-video-frame img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================
   Play Button
========================================= */

.video-play-btn {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.88);

    color: var(--secondary);

    font-size: 28px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.video-play-btn i {
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.07);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .invisalign-video-section {
        padding: 45px 0 50px;
    }

    .invisalign-video {
        max-width: 900px;
    }

    .video-play-btn {
        width: 75px;
        height: 75px;
        font-size: 23px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .invisalign-video-section {
        padding: 35px 0 40px;
    }

    .invisalign-video {
        max-width: 100%;
    }

    .invisalign-video-frame {
        border-radius: 10px;
    }

    .video-play-btn {
        width: 58px;
        height: 58px;
        font-size: 18px;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 480px) {

    .video-play-btn {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }

}

.invis-fix .step-bx-blue p{
  color: #fff;
}
.item-name{
  text-align: center;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color:var(--head)
}
.bef-af-carousel .owl-item.active-center .item-name{
  margin-top: 30px;
}


.before-after-support {
    width: 100%;
    max-width: 1000px;
    margin: 35px auto 0;
    text-align: center;
}


/* Blue Message Box */

.before-after-support-box {
    width: 100%;
    background-color: var(--secondary);

    border-radius: 16px;

    padding: 30px 45px;

    position: relative;

    box-shadow: 0 4px 12px rgba(28, 58, 123, 0.08);
}







/* Main Text */

.before-after-support-box p {
    position: relative;

    color: #fff;

    font-size: 24px;
    font-weight: 600;

    line-height: 1.4;

    margin: 0;
}

.before-after-support-box p span {
    color: var(--primary);
}

.before-after-support-box p strong {
    color: #fff;
    font-weight: 800;
}

.before-after-support-box sup {
    font-size: 8px;
    vertical-align: super;
}


/* Disclaimer */

.before-after-disclaimer {
    color: var(--prim-font);

    font-size: 16px;
    line-height: 1.4;

    margin: 12px 0 0;
}



@media (max-width: 991px) {

    .before-after-support {
        max-width: 850px;
        margin-top: 30px;
    }

    .before-after-support-box {
        padding: 23px 30px;
    }

    .before-after-support-box p {
        font-size: 14px;
    }

}



@media (max-width: 767px) {

    .before-after-support {
        max-width: 90%;
        margin-top: 25px;
    }

    .before-after-support-box {
        padding: 22px 25px;
        border-radius: 5px;
    }

    .before-after-support-box p {
        font-size: 18px;
        line-height: 1.5;
    }

    .support-desktop-break {
        display: none;
    }

    .before-after-disclaimer {
        font-size: 10px;
        margin-top: 10px;
    }

}


@media (max-width: 480px) {

    .before-after-support-box {
        padding: 20px 20px;
    }

    .before-after-support-box p {
        font-size: 16px;
    }

    .before-after-support-box::before,
    .before-after-support-box::after,
    .before-after-support-box p::before,
    .before-after-support-box p::after {
        width: 7px;
        height: 7px;
    }

}

/* =========================================
   Treatment Comparison
========================================= */

.treatment-comparison {
    width: 100%;
    background-color: var(--light-shade2);
    padding: 65px 0 60px;
}


/* =========================================
   Heading
========================================= */

.treatment-comparison-head {
    text-align: center;
    margin-bottom: 40px;
}

.treatment-comparison-head h2 {
    color: var(--head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

.treatment-title-line {
    width: 150px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    margin: 8px auto 17px;
}

.treatment-comparison-head p {
    color: var(--prim-font);
    line-height: 1.5;
    margin: 0;
}


/* =========================================
   Table Wrapper
========================================= */

.comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
}


/* =========================================
   Table
========================================= */

.comparison-table {
    width: 100%;
    min-width: 900px;

    border-collapse: separate;
    border-spacing: 0;

    table-layout: fixed;

    background-color: #fff;

    color: var(--prim-font);

    font-size: 16px;
    font-weight: 600;

    line-height: 1.45;
}


/* =========================================
   Table Header
========================================= */

.comparison-table thead th {
    background-color: #293953;
    color: #fff;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;

    text-align: left;
    vertical-align: middle;

    padding: 15px 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-table thead th:first-child {
    background-color: var(--primary);
}


/* Rounded top corners */

.comparison-table thead th:first-child {
    border-top-left-radius: 10px;
}

.comparison-table thead th:last-child {
    border-top-right-radius: 10px;
}


/* =========================================
   Columns
========================================= */

.comparison-table th,
.comparison-table td {
    width: 25%;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 35%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3),
.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4) {
    width: 21.66%;
}


/* =========================================
   Table Body
========================================= */

.comparison-table tbody td {
    position: relative;

    padding: 17px 18px;

    vertical-align: middle;

    background-color: #fff;

    border-right: 1px solid #e7ebf0;
    border-bottom: 1px solid #e7ebf0;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}


/* Highlighted first column */

.comparison-table tbody td.comparison-highlight {
    background-color: #fff7ef;
}


/* =========================================
   Text
========================================= */

.comparison-table tbody td span:first-child {
    color: var(--prim-font);
}

.comparison-table tbody td br + * {
    color: var(--prim-font);
}


/* =========================================
   Check / Cross
========================================= */

.comparison-table .check {
    display: block;

    color: #18ad31;

    font-size: 20px;
    font-weight: 700;

    text-align: right;

    line-height: 1;

    margin-top: -3px;
}

.comparison-table .check-inline {
    color: #18ad31!important;
    font-size: 14px;
    font-weight: 700;
}

.comparison-table .cross {
    color: #f05a36!important;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   Bottom Paragraph
========================================= */

.comparison-description {
    max-width: 920px;
    margin: 42px auto 0;

    text-align: center;
}



/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .treatment-comparison {
        padding: 55px 0;
    }

    .treatment-comparison-head {
        margin-bottom: 30px;
    }

    .comparison-table {
        min-width: 850px;
    }

    .comparison-table thead th {
        padding: 14px;
    }

    .comparison-table tbody td {
        padding: 15px 14px;
    }

    .comparison-description {
        margin-top: 35px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .treatment-comparison {
        padding: 45px 0;
    }

    .treatment-comparison-head {
        margin-bottom: 25px;
    }

    .treatment-comparison-head h2 {
        font-size: 1.65rem;
        line-height: 1.15;
    }

    .treatment-title-line {
        width: 120px;
        height: 3px;
        margin: 8px auto 14px;
    }

    .treatment-comparison-head p {
        font-size: 11px;
    }


    /*
     * Keep the table wide.
     * User can swipe horizontally.
     */
    .comparison-table-wrap {
        margin-left: 0;
        margin-right: 0;

        overflow-x: auto;

        padding-bottom: 8px;
    }

    .comparison-table {
        min-width: 900px;
        font-size: 11px;
    }

    .comparison-table thead th {
        padding: 13px 12px;
        font-size: 16px;
    }

    .comparison-table tbody td {
        padding: 14px 12px;
        font-size: 14px;
    }

    .comparison-table .check {
        font-size: 18px;
    }

    .comparison-description {
        margin-top: 30px;
    }

    .comparison-description p {
        font-size: 14px;
        line-height: 1.65;
    }

}

/* =========================================
   Who Is Invisalign Best For?
========================================= */

.invisalign-best-for {
    width: 100%;
    background-color: #fff;
    padding: 65px 0 70px;
}


/* =========================================
   Heading
========================================= */

.best-for-head {
    text-align: center;
    margin-bottom: 48px;
}

.best-for-head h2 {
    color: var(--head);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.best-for-head h2 sup {
    font-size: 45%;
    vertical-align: super;
}

.best-for-title-line {
    width: 255px;
    max-width: 60%;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    margin: 10px auto 32px;
}

.best-for-head p {
    color: var(--prim-font);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}


/* =========================================
   Cards Grid
========================================= */

.best-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}


/* =========================================
   Card
========================================= */

.best-for-card {
    min-height: 268px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background-color: #fff;

    border-radius: 15px;

    padding: 17px 18px 25px;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.best-for-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.13);
}


/* =========================================
   Icon
========================================= */

.best-for-icon {
    width: 72px;
    height: 72px;

    flex: 0 0 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--light-shade);

    color: var(--primary);

    border-radius: 50%;

    font-size: 29px;

    margin-bottom: 12px;
}

.best-for-icon i {
    line-height: 1;
}


/* =========================================
   Card Content
========================================= */

.best-for-card h3 {
    color: var(--prim-font);

    font-size: 21px;
    font-weight: 600;

    line-height: 1.25;

    text-transform: none;

    margin: 0 0 9px;
}

.best-for-card p {
    color: var(--prim-font);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.4;

    margin: 0;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .invisalign-best-for {
        padding: 55px 0 60px;
    }

    .best-for-head {
        margin-bottom: 38px;
    }

    .best-for-head h2 {
        font-size: 2.1rem;
    }

    .best-for-head p {
        font-size: 15px;
    }

    .best-for-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .best-for-card {
        min-height: 250px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .invisalign-best-for {
        padding: 45px 0 50px;
    }

    .best-for-head {
        margin-bottom: 30px;
    }

    .best-for-head h2 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .best-for-title-line {
        width: 190px;
        height: 3px;
        margin: 8px auto 20px;
    }

    .best-for-head p {
        font-size: 18px;
    }


    /* Single column */

    .best-for-grid {
        grid-template-columns: 1fr;
        gap: 18px;

        max-width: 450px;
        margin: 0 auto;
    }


    .best-for-card {
        min-height: auto;

        padding: 20px 20px 25px;

        border-radius: 13px;
    }

    .best-for-icon {
        width: 65px;
        height: 65px;
        flex-basis: 65px;

        font-size: 26px;

        margin-bottom: 11px;
    }

    .best-for-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .best-for-card p {
        font-size: 16px;
        line-height: 1.45;
    }
   .invisalign-wr .faq-section{
    padding-top: 100px;
   }
}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 480px) {

    .best-for-head h2 {
        font-size: 1.5rem;
    }

    .best-for-head p {
        font-size: 13px;
    }

    .best-for-card {
        padding: 18px 17px 22px;
    }

    .best-for-card h3 {
        font-size: 18px;
    }

    .best-for-card p {
        font-size: 14px;
    }

}
.set-grey{
  background-color: #F6F8FB;
}

/* =========================================
   Invisalign Consultation
========================================= */

.invisalign-consultation {
    width: 100%;
    background-color: #fff;
    padding: 80px 0 55px;
}


/* =========================================
   Main Box
========================================= */

.consultation-box {
    width: 100%;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    background-color: var(--light-shade);

    border-radius: 14px;

    padding: 45px 28px 45px;
}


/* =========================================
   Left Content
========================================= */

.consultation-content {
    padding: 15px 0 15px;
}

.consultation-content h2 {
    color: var(--secondary);

    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;

    line-height: 1.15;

    text-transform: uppercase;

    margin: 0 0 10px;
}

.consultation-intro {
    color: var(--prim-font);

    font-size: 14px;
    line-height: 1.5;

    margin: 0 0 26px;
}


/* =========================================
   What To Expect
========================================= */

.consultation-content h3 {
    color: var(--secondary);

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;

    margin: 0 0 12px;
}

.consultation-expectations {
    list-style: none;

    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.consultation-expectations li {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

.consultation-expectations li i {
    flex: 0 0 auto;

    color: var(--primary);

    font-size: 15px;

    margin-top: 2px;
}


/* =========================================
   Phone
========================================= */

.consultation-phone {
    color: var(--secondary);

    font-size: 16px;
    font-weight: 500;

    margin: 25px 0 0;
}

.consultation-phone a {
    color: var(--primary);

    font-weight: 700;

    text-decoration: none;

    transition: color 0.25s ease;
}

.consultation-phone a:hover {
    color: var(--secondary);
}


/* =========================================
   Form Area
========================================= */

.consultation-form-wrap h3 {
    color: var(--head);

    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.3;

    margin: 0 0 25px;
}

.consultation-form {
    width: 100%;
}

.consultation-form-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 23px;
    row-gap: 20px;
}


/* =========================================
   Fields
========================================= */

.consultation-field {
    min-width: 0;
}

.consultation-field-full {
    grid-column: 1 / -1;
}

.consultation-field label {
    display: block;

    color: var(--prim-font);

    font-size: 13px;
    font-weight: 500;

    line-height: 1.3;

    margin-bottom: 7px;
}

.consultation-field input,
.consultation-field select,
.consultation-field textarea {
    width: 100%;

    display: block;

    background-color: #fff;

    border: 1px solid transparent;
    border-radius: 6px;

    color: var(--prim-font);

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.consultation-field input,
.consultation-field select {
    height: 43px;

    padding: 0 12px;
}

.consultation-field textarea {
    min-height: 102px;

    resize: vertical;

    padding: 10px 12px;

    line-height: 1.4;
}

.consultation-field input::placeholder,
.consultation-field textarea::placeholder {
    color: #7c8590;
    opacity: 1;
}

.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus {
    border-color: var(--primary);

    box-shadow: 0 0 0 2px rgba(243, 111, 33, 0.10);
}


/* =========================================
   Date Icon
========================================= */

.consultation-input-icon {
    position: relative;
}

.consultation-input-icon input {
    padding-right: 38px;
}

.consultation-input-icon i {
    position: absolute;

    top: 50%;
    right: 12px;

    transform: translateY(-50%);

    color: #7c8590;

    pointer-events: none;

    font-size: 14px;
}


/* =========================================
   Select
========================================= */

.consultation-field select {
    appearance: auto;

    cursor: pointer;
}


/* =========================================
   Consent
========================================= */

.consultation-consent {
    grid-column: 1 / -1;

    margin-top: 2px;
}

.consultation-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    cursor: pointer;

    color: var(--prim-font);

    font-size: 12px;
    line-height: 1.35;
}

.consultation-consent input {
    flex: 0 0 auto;

    width: 19px;
    height: 19px;

    margin: 0;

    accent-color: var(--primary);

    cursor: pointer;
}


/* =========================================
   Submit
========================================= */

.consultation-submit {
    grid-column: 1 / -1;

    margin-top: 2px;
}

.consultation-submit .book-btn {
    border: none;
    cursor: pointer;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .invisalign-consultation {
        padding: 30px 0 50px;
    }

    .consultation-box {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 38px 30px;
    }

    .consultation-content {
        padding: 0;
    }

    .consultation-content h2 {
        font-size: 2.1rem;
    }

    .consultation-form-wrap h3 {
        font-size: 22px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .invisalign-consultation {
        padding: 25px 0 40px;
    }

    .consultation-box {
        display: block;

        padding: 30px 20px;

        border-radius: 12px;
    }

    .consultation-content {
        margin-bottom: 35px;
    }

    .consultation-content h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .consultation-intro {
        margin-bottom: 22px;
         font-size: 16px;
    }

    .consultation-content h3 {
        font-size: 19px;
    }

    .consultation-expectations li {
        font-size: 14px!important;
        font-weight: 600;
    }

    .consultation-phone {
        font-size: 15px;
        margin-top: 22px;
    }


    /* Form */

    .consultation-form-wrap h3 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .consultation-form-grid {
        grid-template-columns: 1fr;

        row-gap: 16px;
    }

    .consultation-field-full,
    .consultation-consent,
    .consultation-submit {
        grid-column: auto;
    }

    .consultation-field label {
        font-size: 12px;
    }

    .consultation-field input,
    .consultation-field select {
        height: 44px;
    }

    .consultation-field textarea {
        min-height: 110px;
    }

    .consultation-submit .book-btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 480px) {

    .consultation-box {
        padding: 25px 16px;
    }

    .consultation-content h2 {
        font-size: 1.55rem;
    }

    .consultation-content h3 {
        font-size: 18px;
    }

    .consultation-expectations li {
        font-size: 12px;
    }

    .consultation-phone {
        font-size: 14px;
    }

    .consultation-form-wrap h3 {
        font-size: 19px;
    }

}
.video-iframe{
  width: 100%;
  height: 600px;
}
.landing-page {
    overflow: visible;
}