/********** Template CSS **********/
:root {
    --primary: #51CFED;
    --secondary: #FF3E41;
    --light: #F8F2F0;
    --dark: #060315;
}
body{
    overflow-x: hidden;
    overflow-x: hidden;
}
.menu{
    padding-right: 0px;
    flex-wrap:wrap;
}
.text-center{
    text-align: center !important;
}
.border-none{
    border: none !important;
}
.text-left{
    text-align: left !important;
}
.radius{
    border-radius: 100px !important;
}
.price-item:hover .price-hov{
    background-color: var(--primary);
    color: #fff;
   
}
.price-item:hover h5, .price-item:hover h1{
    color: aliceblue !important;
    
}

.price-hov{
    border: none;
     transition: 0.8s;
}
.round{
    border-radius: 100px;
    transition: 0.8s;
    color: #fff;
    border: 3px dotted #fff;
}
.round:hover{
    border-radius: 0px;
    background-color: #fff !important;
    border-color: var(--primary);
   
}
.round:hover p, .round:hover i, .round:hover h2{
    color: var(--primary) !important;
}

.about-p{
    text-align: left;
    padding: 0px 50px;
}
.about-icons{
    padding: 50px 5px;
}
.about-icons:hover{
    box-shadow:  0 0 0pt 3pt #51CFED !important;
    
    transition: 0.5s;
}

.form-control:focus {
box-shadow:  0 0 0pt 3pt #51CFED !important;
    border: 0px;
   
}
.form-select:focus{
     box-shadow:  0 0 0pt 3pt #51CFED !important;
    border: 0px;
}
.dropdown-change:active{
    background-color: #51CFED !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    border-color: #51CFED !important;
}

.btn.btn-primary,
.btn.btn-secondary:hover {
}
.btn-primary{
    background-color: #51CFED !important;
}
.btn-primary:hover{
    
    background-color: #0396b7 !important;
}
.btn-primary:active{
    box-shadow:  0 0 0pt 3pt #51CFED !important;
}
.btn-primary:focus{
    box-shadow:  0 0 0pt 0pt #51CFED !important;
    transition: 0.1s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.banner-desktop{
    width:100%;
}
.banner-mobile{
    display: none !important;
    width:100%;
}

.videosection{
    position: relative;
}
.videosection video{
    width:100%;
    height:85vh;
    object-fit: cover;
}

@media(max-width:767px){
    .videosection video{
        height:auto;
    }
}



/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 7px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}
.navbar-light .navbar-nav .nav-link:last-child {
    margin-right:0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    text-underline-offset: 8px;
}
.call-us-tel{
    width: 100%;
    display: flex;
    justify-content: right;
    padding-bottom:10px;
    align-items:center;
}
.call-us-tel-address{
    margin-bottom:0;
    padding-right:10px;
}
.call-us-tel a{
    background: #51CFED;
    padding: 5px 10px;
    border-radius: 29px;
    color:#ffffff;
}
.call-us-tel a.online-booking{
    margin-right:20px;
}
.call-us-tel a:hover{
    background: #0396b7;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    margin-left: 0px;
}


.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: 0px;
    transition: .5s;
    width: 100%;
    background: #ffffff;
}

@media (max-width:767px) {
    .navbar-light.sticky-top{
        background: #FFFFFF!important;
    }
    .navbar-light .navbar-brand,
.navbar-light a.btn {
    margin-left: 0px;
}
}

@media (min-width: 992px) {

    
    
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    display: none!important;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 45px;
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.header-mobile-call-us{
    display: none;
}
@media(max-width:767px){
    .header-mobile-call-us{
        display: block;
        color: #FFFFFF;
        background: #51CFED;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 50px;
    }
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 300px #c9f0f9;
    text-align: center;
  
     border: 2px solid #fff;
}

.service-item img,
.team-item img {
    transition: .5s;
    
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.3);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;

}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 100px;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: #0396b7;
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    left: -100%;
    z-index: 1;
}


.service-item:hover
{
    background-color: #e6faff;
    transition: 0.5s;
   border-color: var(--primary);
    color: black;
}
.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
    width: 100%;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background-color: #0396b7;
    
}

.qoute-bg{
    background-color: #c9f0f9;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
    background-color: #c9f0f9;
    color: #000;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(7, 78, 96, .5), rgba(32, 165, 197, .5));
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    
}
.footer .btn.btn-link:hover{
    color: var(--primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}
.news{
    margin: 0 !important;
    height: 100%;
    
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.logosite{
    border-radius: 5px;
    width:135px
}

.social-icon-voit a{
    padding: 0;
    color: #ffffff;
}

/*custom css */
/*before after section*/
.before-after .before-after-boxes{
    margin: 0 auto;
    /* padding-left: 6%; */
  }
  
  .before-after .before-after-boxes .before-after-box img{
      width: 350px;
  }
  .before-after .before-after-boxes .before-after-box video{
    width: 350px;
}

  @media (max-width:767px){
    .before-after .before-after-boxes{
      padding-left: 10px;
    }
    .before-after .before-after-boxes .before-after-box {
      padding: 0 10px;
    }
    .before-after .before-after-boxes .before-after-box img{
      width: 100%;
    }
  }
  
  .before-after .slick-prev:before, .slick-next:before{
    font-size: 30px;
    opacity: .75;
    color: rgb(0, 0, 0);
  }

  .meet-doctors-imgs img{
     width: 300px;
     height: 300px;
     border-radius: 50%;
     object-fit: cover;
  }
 .office-staff .team-item{
    min-height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
 }
 .office-staff .team-item h5{
    width: 100%;
 }
 .office-staff  .row{
    justify-content: center;
 }
 .smile-gallery-sec video{
      border: 2px solid #51CFED;
      border-radius: 5px;
 }
 .smile-gallery-sec img{
    border-radius: 4px;
    border: 2px solid #000000;
    box-shadow: 0px 0px 4px 0px #000;
}
  @media(max-width:767px){
    .about-p{
        padding: 0;
    }
    .call-us-tel{
        display: none;
    }
  }

  
  .slick-prev {
    left: 47%;
    bottom: -30px;
    top: auto;
}
  .slick-next {
    right: 47%;
    bottom: -30px;
    top: auto;
}
@media(max-width:767px){
    .slick-next {
      right: 40%;
    }
    .slick-prev {
      left: 40%;
    }
  }

  .collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
  }
  
  .collapsible-link::before {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    display: block;
    font-family: "FontAwesome";
    font-size: 1.1rem;
  }
  
  .collapsible-link[aria-expanded="true"]::before {
    content: "\f106";
  }


  #dr-zmick{
    padding-top: 100px;
    margin-top:-100px;
  }

  /*faq*/
  


.container-faq {
    margin: 0 auto;
    padding: 2rem;
    width: 60rem;
}

.accordion .accordion-item {
    border: 0;
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: inherit;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

/*All on 4 implats*/
.dr-voit-video-allon4{
    position: relative;
    text-align: center;
}
.dr-voit-video-allon4 video{
    max-width: 100%;
    height: 100%;
}
.video-overlay{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer;
}
.video-overlay-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.pb-video-play{
    display: block;
    position: absolute;
    z-index: 100;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.pb-video-play i{font-size: 4rem;}
.dr-voit-why-pay-text{
    background: #51CFED;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    color: #000000;
}
.dr-voit-why-pay-text-head{
    font-size: 26px;
}
.dr-voit-why-pay-text-small{
    font-size: 20px;
}
.dr-voit-why-pay-text-price{
    font-size: 2.3rem;
    font-weight: bold;
}
.dr-voit-video-allon4-2{
    margin-top: 100px;
}
.allon4-contact{
    background: #0396b7;
}
.allon4-contact h6{
    color: #ffffff;
}


/* why better*/

.why-we-beeter{
    padding:0px 0 50px;
}
.Why-we-better-boxes{
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.Why-we-better-box{
    width:48%;
    text-align: center;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 2px #000000;
}
.Why-we-better-box-head{
    background: #51CFED;
    font-size: 25px;
    padding: 10px 10px;
    border-radius: 20px 20px 0 0;
    color: #ffffff;
}
.Why-we-better-box-head2{
    background: #0396b7;
}
.Why-we-better-box-text{
    padding: 30px 10px;
    font-size: 20px;
    border-bottom: 1px solid #000000;
    color: #000000;
}
.Why-we-better-box-price{
    padding: 30px 10px;
    font-size: 26px;
    font-weight: bold;
    color: #0396b7;
}

.payment-plans{
    background: #0396b7;
    padding: 30px 100px 50px;
}
.payment-plans-head{
    font-size: 2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: center;
}
.payment-plans-boxes{
    max-width: 767px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.payment-plans-boxes .accordion-item{
    padding: 0 10px;
    margin-bottom: 20px;
 }
 .payment-plans-boxes .accordion .accordion-content p{
   margin: 1rem 0;
 }

 .incorporate-boxes{
    max-width:767px;
    margin: 0 auto;
 }
 .incorporate-boxes iframe{
    border-radius: 10px;
 }
.incorporate-boxes-main{
    background: #0396b7;
    color: #ffffff;
}
.incorporate-boxes-main h6{
    color: #000000;
}
.belavita-section .belavita-right{
    padding: 50px;
    padding-top:0;
}
@media(max-width:767px){
    .belavita-section{
        flex-direction: column-reverse;
    }
    .belavita-section .belavita-right{
        padding: 20px;
        text-align: center;
    }
    .belavita-section .belavita-right h6{
        font-size: 23px;
    }
    .banner-mobile{
        display: block !important;
    }
    .banner-desktop{
        display: none !important;
    }
    .payment-plans{
        background: #0396b7;
        padding: 50px 20px;
    }
    .payment-plans-box{
        width:300px;
        margin-bottom: 20px;
    }
    .Why-we-better-boxes{
        padding: 0 15px;
    }
    .Why-we-better-box{
        margin-bottom: 20px;
    }
    .Why-we-better-box-head{
        font-size: 16px;
        padding: 5px 8px;
        min-height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .Why-we-better-box-text {
        padding: 8px 10px;
        font-size: 12px;
    }
    .Why-we-better-box-price {
        padding: 20px 10px;
        font-size: 18px;
    }
    .before-after .before-after-boxes{
        flex-wrap: wrap;
    }
    .before-after-box{
        margin-bottom: 20px;
    }
    .container-faq {
        width:100%
    }
}




.modal.fade .modal-dialog {
    transform: translateY(10vh);
  }
  
  .modal.show .modal-dialog {
    transform: translateY(0);
  }
  .modal-header{
    justify-content: right;
    padding: 0;
  }
  .modal button{
    background: none;
    border: 0;
    font-size: 25px;
  }


  /* new smile section ***/
  .ns-main-sec{
    padding: 50px 0;
  }
  .ns-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
  }

  .ns-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: white;
  }

  .ns-image-section {
    position: relative;
  }

  .ns-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ns-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ff9e00;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 158, 0, 0.3);
  }

  .ns-content-section {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ns-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #51CFED;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
  }

  .ns-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
  }

  .ns-highlight-box {
    background: rgba(0, 95, 163, 0.08);
    border-left: 4px solid #51CFED;
    padding: 18px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
  }

  .ns-highlight {
    font-weight: 600;
    color: #51CFED;
  }

  .ns-list {
    margin-bottom: 25px;
  }

  .ns-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    list-style: none;
  }

  .ns-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-color: #48cae4;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    background-size: contain;
  }

  .ns-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #51CFED;
    margin-bottom: 0;
  }

  .ns-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #51CFED;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-align: center;
  }

  .ns-cta:hover {
    background: #51CFED;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 95, 163, 0.3);
  }

  @media (max-width: 1024px) {
    .ns-content-section {
      padding: 40px;
    }
  }

  @media (max-width: 768px) {
    .ns-card {
      flex-direction: column;
    }
    
    .ns-image-section {
    }
    
    .ns-content-section {
      padding: 30px;
    }
    
    .ns-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .ns-container {
      margin: 20px auto;
    }
    
    .ns-content-section {
      padding: 25px;
    }
    
    .ns-title {
      font-size: 1.8rem;
    }
    
    .ns-badge {
      top: 15px;
      left: 15px;
      font-size: 12px;
    }
  }


  /**hero -sec new page sec**/

  .hs-hero {
    position: relative;
    background: url('../img/voit-hero-img.png') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    margin-bottom: 50px;
  }

  .hs-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.63);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    width: 800px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

  .hs-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }

  .hs-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
  }

  .hs-cta-button {
    background-color: #51CFED;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
  }

  .hs-cta-button:hover {
    background-color: #0396b7;
  }

  @media (max-width: 600px) {
    .hs-hero-content{
        padding: 1rem;
    }
    .hs-hero-title {
      font-size: 1.5rem;
    }

    .hs-hero-subtitle {
      font-size: 1rem;
    }

    .hs-cta-button {
      width: 100%;
      font-size: 16px;
    }
    .vivoit-page{
        font-size: 16px;
    }
  }


/* Style the first submenu */
.dropdown-mmenu {
    position: relative;
  }

  /* Style the 3rd-level submenu */
  .dropdown-submmenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 150px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  /* Show the 3rd-level menu on hover */
  .dropdown-mmenu:hover .dropdown-submmenu {
    display: block;
  }

  /* Make sure items are properly stacked on mobile */
  @media (max-width: 992px) {
    .dropdown-submmenu {
      position: static;
      box-shadow: none;
      padding-left: 20px;
    }
  }


  .span-block{
    display: block;
  }

  @media (max-width:767px) {
    .span-block{
        display: inline;
      }
  }



  /***testimonial*****/
  
  /* Tabs styling */
  .nt-tabs {
      display: flex;
      justify-content: center;
      padding: 20px 0;
  }

  .nt-tab {
    padding: 10px 3px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #f0f0f0;
    color: #666;
    transition: all 0.3s ease;
    width: 115px;
    font-size: 14px;
  }

  .nt-tab.nt-active {
      background-color: #fff;
      color: #333;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  /* Content grid */
  .nt-content {
      padding: 20px;
  }

  .nt-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  /* Card styling */
  .nt-card {
      border-radius: 11px;
      overflow: hidden;
      margin-bottom: 20px;
  }
  .nt-card-video{
    box-shadow: 0px 1px 2px 0px #0000000D;
    border: 1px solid  #E5E7EB;
  }

  .nt-card-header {
      padding: 15px;
      text-align: center;
      color: #00b8d4;
      font-weight: bold;
      font-size: 25px;
  }

  .nt-before-after-container {
      display: flex;
      position: relative;
  }
  .nt-before-after-container img {
    width: 100%;
}

  .nt-before-after-image {
      flex: 1;
      position: relative;
  }

  .nt-before-after-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
  }

  .nt-label {
      position: absolute;
      top: 10px;
      padding: 5px 10px;
      color: white;
      font-size: 14px;
      border-radius: 4px;
  }

  .nt-before-label {
      left: 10px;
      background-color: #333;
  }

  .nt-after-label {
      right: 10px;
      background-color: #00b8d4;
  }

  .nt-card-footer {
      padding: 15px;
      text-align: center;
      background-color: #f9f9f9;
      color: #374151;
  }

  /* Video styling */
  .nt-video-container {
      position: relative;
      overflow: hidden;
  }

  .nt-video-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .nt-play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      /* background-color: rgba(255, 255, 255, 0.8); */
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      backdrop-filter: blur(4px);
  }

  .nt-play-button::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-left: 20px solid #ffffff;
      border-bottom: 12px solid transparent;
      margin-left: 5px;
  }

  .nt-video-controls {
      display: flex;
      align-items: center;
      color: white;
  }

  .nt-progress-bar {
      flex: 1;
      height: 4px;
      background-color: rgba(255, 255, 255, 0.3);
      margin: 0 10px;
      position: relative;
  }

  .nt-progress {
      position: absolute;
      height: 100%;
      width: 30%;
      background-color: #ff5252;
  }

  .nt-control-button {
      width: 24px;
      height: 24px;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      margin-left: 10px;
  }

  /* Responsive styles */
  @media (max-width: 768px) {
      .nt-grid {
          grid-template-columns: 1fr;
      }

      .nt-before-after-image img {
          height: 200px;
      }
      .nt-content {
        padding: 0;
      }
  }

  /* Tab content visibility */
  .nt-tab-content {
      display: none;
  }

  .nt-tab-content.nt-active {
      display: block;
  }



  /**see transformation***/
  .swiper-container {
    width: 800px;
    height: 300px;
}

.swiper-slide{
 
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}

@media (max-width:800px){
    .swiper-container{
          height: auto;
    }
}
.swiper-button-next{
    background-image: url(../img/left.png) !important;
    background-size: 27px 27px !important;
    transform: rotate(180deg);
}
.swiper-button-prev{
    background-image: url(../img/left.png) !important;
    background-size: 27px 27px !important;
}


/***new veteran UI***/
.hero-hvt{
    background: linear-gradient(135deg, #4db6ac 0%, #51CFED 100%);
    padding: 70px 0;
}
.hvt-container {
    max-width: 95%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 40px 20px;
}

.hvt-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hvt-badge {
    background-color: rgb(255 255 255 / 14%);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    /* width: fit-content; */
    font-size: 14px;
}

.hvt-badge i {
    font-size: 18px;
}

.hvt-heading {
    color: white;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hvt-subtitle {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
}

.hvt-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hvt-btn {
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hvt-btn-primary {
    background-color: white;
    color: #51CFED;
    border: none;
}

.hvt-btn-primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.hvt-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hvt-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hvt-price-box {
    background-color: rgb(255 255 255 / 13%);
    padding: 8px 20px;
    border-radius: 10px;
    color: white;
}

.hvt-price-text {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hvt-price {
    font-size: 24px;
    font-weight: 700;
}

.hvt-slider-container {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.hvt-slider {
    width: 100%;
    height: 360px;
}

.hvt-slide {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.hvt-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hvt-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    padding: 30px 20px;
    color: white;
}

.hvt-slide-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.hvt-slide-subtitle {
    font-size: 16px;
}

.hvt-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hvt-play-button i {
    color: white;
    font-size: 30px;
}

.hvt-play-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hvt-slider .slick-dots {
    bottom: -25px;
}
.hvt-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: auto;
    margin: 0 12px;
    padding: 0;
    cursor: pointer;
}

.hvt-slider .slick-dots li button:before {
    color: white;
    opacity: 0.5;
    font-size: 10px;
    content: "";
    width: 40px;
    height: 7px;
    background: #ffffff;
    border-radius: 10px;
}

.hvt-slider .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

.hvt-slider .slick-prev, .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hvt-slider .slick-prev {
    left: 15px;
    top:50%;
}

.hvt-slider .slick-next {
    right: 15px;
    top:50%;
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    opacity: 1;
}

.hvt-slider .slick-prev:before {
    content: '\f104';
}

.hvt-slider .slick-next:before {
    content: '\f105';
}

.hvt-expand-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.hvt-expand-button i {
    color: white;
    font-size: 18px;
}

@media (max-width: 992px) {
    .hvt-container {
        flex-direction: column;
    }

    .hvt-heading {
        font-size: 36px;
    }

    .hvt-subtitle {
        font-size: 20px;
    }

    .hvt-slider {
        height: 350px;
    }

    .hvt-slide {
        height: 350px;
    }
    .hvt-slide-content{
     position: static;
     display: none;
    }
}

@media (max-width: 768px) {
    .hvt-buttons {
        flex-direction: column;
    }

    .hvt-btn {
        width: 100%;
        justify-content: center;
    }

    .hvt-heading {
        font-size: 32px;
    }

    .hvt-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hvt-container {
        padding: 20px 10px;
    }

    .hvt-heading {
        font-size: 28px;
    }

    .hvt-price-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}


/**new section**/
/* Container styles */
.vsb-main-sec{
    padding-top: 60px;
}
.vsb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header section */
.vsb-header {
    text-align: center;
    margin-bottom: 40px;
}

.vsb-main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.vsb-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #111827;
}

.vsb-description {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 5px;
    color: #4B5563;
}

/* Content layout */
.vsb-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
}

/* Video section */
.vsb-video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.vsb-video {
    width: 660px;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
}





/* Benefits section */
.vsb-benefits {
    flex: 1;
}

.vsb-benefits-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.vsb-benefits-subtitle {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 25px;
}

.vsb-benefit-item {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.vsb-check-icon {
    width: 24px;
    height: 24px;
    background-color: #00B8D4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.vsb-check-icon::before {
    content: "";
    width: 8px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-bottom: 3px;
}

.vsb-benefit-content {
    flex: 1;
}

.vsb-benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #00B8D4;
    margin-bottom: 5px;
}

.vsb-benefit-description {
    font-size: 16px;
    color: #374151;
}

.vsb-cta-button {
    display: block;
    width: 100%;
    background-color: #00B8D4;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}
.vsb-cta-button:hover{
    background: #0396b7;
    color: #ffffff;
}



/* Responsive styles */
@media (max-width: 992px) {
    .vsb-main-sec{
        padding-top: 30px;
    }
    .vsb-main-title, .vsb-subtitle {
        font-size: 28px;
    }
    
    .vsb-description {
        font-size: 16px;
    }
    
    .vsb-benefits-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .vsb-content {
        flex-direction: column;
    }
    
    .vsb-video-container {
        height: 400px;
    }
    .vsb-video{
        width: 100%;
    }
    
    .vsb-main-title, .vsb-subtitle {
        font-size: 24px;
    }
    
    .vsb-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .vsb-header {
        margin-bottom: 20px;
    }
    
    .vsb-main-title, .vsb-subtitle {
        font-size: 22px;
    }
    
    .vsb-description {
        font-size: 14px;
    }
    
    .vsb-benefits-title {
        font-size: 20px;
    }
    
    .vsb-benefit-title {
        font-size: 16px;
    }
    
    .vsb-benefit-description {
        font-size: 14px;
    }
    
    .vsb-video-container {
        height: 300px;
    }
}



 /* Why Choose Section Styles */
 .wc-section{
    background: #F9FAFB;
    padding-top: 60px;
 }
 .wc-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 40px 20px;

}

.wc-header {
    text-align: center;
    margin-bottom: 30px;
}

.wc-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.wc-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Features Slider */
.wc-features-slider {
    margin-top: 40px;
}

.wc-feature {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    margin: 0 10px;
    height: 236px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.wc-feature:hover {
    transform: translateY(-5px);
}

.wc-feature-icon {
    padding-bottom: 30px;
}

.wc-feature-icon svg {
    width: 40px;
    height: 40px;
    fill: #00b8d4;
}

.wc-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.wc-feature-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
}

/* Slick Slider Custom Styles */
.wc-features-slider .slick-dots {
    bottom: -40px;
}

.wc-features-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 35px;
    /* height: 20px; */
    margin: 0 0px;
    padding: 0;
    cursor: pointer;
}

.wc-features-slider .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
    opacity: 1;
    opacity: 0.5;
    font-size: 10px;
    content: "";
    width: 30px;
    height: 7px;
    background: #D1D5DB;
    border-radius: 10px;
}

.wc-features-slider .slick-dots li.slick-active button:before {
    color: #00b8d4;
    background: #00B8D4;
}
.wc-features-slider .slick-prev:before{
    content: url(../img/wc-left.png);
    width: 50px;
    height: 50px;
  }
.wc-features-slider .slick-next:before{
  content: "";
  background: url(../img/wc-left.png) no-repeat;
  width: 50px;
  height: 50px;
  transform: rotate(180deg);
}
.wc-features-slider .slick-prev, .slick-next {
    z-index: 1;
    width: 50px;
    height: 50px;
}
.wc-features-slider .slick-next {
    right: -20px;
    bottom: 0;
    top: 50%;
}

.wc-features-slider .slick-prev {
    left: -20px;
    bottom: 0;
    top: 50%;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .wc-feature {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .wc-title {
        font-size: 24px;
    }
    
    .wc-subtitle {
        font-size: 14px;
    }
    
    .wc-feature-title {
        font-size: 16px;
    }
    
    .wc-feature-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .wc-container {
        padding: 30px 15px;
    }
    
    .wc-title {
        font-size: 22px;
    }
    
    .wc-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .wc-feature-icon svg {
        width: 30px;
        height: 30px;
    }
}

.faq-vtr{
    background: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
}
.faq-vtr .accordion-item{
    border: 1px solid #DFE4E8;
    border-radius: 10px;
}
.faq-vtr .accordion button{
    color: #111827;
}
.faq-vtr .accordion button .icon1{
    position: absolute;
    right: 20px;
}
