:root {
    --bs-indigo: #4b0082; /* Darker indigo */
     --color--gray-2: #eeeff0;
  --font-family--body: Poppins, sans-serif;
  --color--gray-1: #3e454d;
  --font-family--heading: Oaksans, sans-serif;
  --color--heading: var(--color--primary-2);
  --color--primary-2: #02336d;
  --color--primary-1: #fd973f;
  --border-radius--border-radius-sm: 20px;
  --color--primary-4: #8fb4fb;
  --color--white: white;
  --border-radius--button-radius-lg: 50px;
  --border-radius--border-radius: 30px;
  --color--secondary-2: #ebf2ff;
  --color--primary-3: #023c82;
  --border-radius--button: 50px;
  --color--secondary-1: #f6e2d0;
  --color--transparent: transparent;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: "Inter", sans-serif;
}
/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
/*    color: var(--bs-white);*/
    color: var(--bs-secondary) !important;

    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
/*    color: var(--bs-secondary) !important;*/
color: var(--bs-indigo) !important;

}
.text-purple{
    color: var(--bs-indigo);
}
.navbar-toggler{
        background-color: var(--bs-indigo);
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.carousel-background {
    height: 90vh; /* or fixed height like 600px */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after,.overlay::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-indigo);
    transition: .8s;
}

.carousel-control-next {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-secondary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-indigo);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-indigo);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-indigo);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 20px;
    height: 0px;
    background: var(--bs-secondary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-indigo);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
     .topbar .top-link {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
    .logo {
        height: 45px;
    }
    .treatment-slide {
        flex-direction: column;
      }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-indigo) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-indigo);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-indigo);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-indigo);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-indigo);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-indigo);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item,.header {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

.logo {
    height: 60px;           /* Adjust height as needed */
    width: auto;            /* Maintain aspect ratio */
    object-fit: contain;    /* Keeps image looking clean inside its box */
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.bg-shade{
    background: linear-gradient(to right, rgb(62 19 153), rgb(107 238 184));
}
.bg-primary{
    background: var(--bs-indigo) !important;
}
.text-primary{
    color: var(--bs-indigo) !important;

}
.text-white-80{
    color: rgba(255, 255, 255, .8) !important;
}
.about .carousel-inner{height: 500px;}
.about .carousel-inner{height: 500px;}
.concern-card {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    color: white;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .concern-title {
    font-weight: bold;
    font-size: 2rem;
    z-index: 2;
    transition: opacity 0.3s ease;
  }

  .concern-card:hover .concern-title {
    opacity: 0;
  }

  .concern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 20px;
    text-align: center;
  }

  .concern-card:hover .concern-overlay {
    opacity: 1;
  }

  .concern-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .concern-list li {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .btn-custom {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
  }

  .btn-custom:hover {
    background-color: #f8f9fa;
    color: #000;
  }
  .before-after-wrapper {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    height: 300px; /* Adjust height as needed */
  }

  .before-after-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .after-image {
    clip-path: inset(0 50% 0 0); /* Start with half reveal */
    transition: clip-path 0.25s ease;
  }

  .before-after-wrapper:hover .after-image {
    clip-path: inset(0 0 0 0); /* Reveal fully on hover */
  }
.treatment-slide {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
    }

    .treatment-img {
      flex: 1 1 40%;
      max-width: 500px;
      padding: 20px;
    }

    .treatment-content {
      flex: 1 1 60%;
      padding: 20px;
    }

    .treatment-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }

    .myThumbs .swiper-slide {
      width: 100px;
      height: 60px;
      opacity: 0.4;
      cursor: pointer;
    }

    .myThumbs .swiper-slide-thumb-active {
      opacity: 1;
      border: 2px solid #007bff;
    }

    .myThumbs img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px;
    }

    .treatment-slide {
  background: linear-gradient(145deg, #f0f8ff, #ffffff);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.treatment-slide:hover {
  transform: scale(1.01);
}
.mt-7{margin-top: 7rem !important}
.custom-tab-nav .nav-link {
  border-radius: 50px;
  padding: 10px 25px;
  margin: 0 10px;
  font-weight: 500;
  color: #555;
  background-color: #f1f1f1;
  transition: all 0.3s ease;
}

.custom-tab-nav .nav-link:hover {
  background-color: #e0eaff;
  color: #007bff;
}

.custom-tab-nav .nav-link.active {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.tab-pane {
  animation: fadeInUp 0.4s ease both;
}

/* Optional animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-indigo{
        background-color: var(--bs-indigo);
        color: white;
}
.image-effect-wrapper {
  overflow: hidden;
  border-radius: 0.375rem; /* matches Bootstrap's .rounded-start */
}
.image-hover-effect {
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.image-effect-wrapper:hover .image-hover-effect {
  filter: grayscale(0%);
  transform: scale(1.05); /* Optional zoom */
}
.elegant-tab-nav .nav-link {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  color: #444;
  padding: 12px 30px;
  margin: 0 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.elegant-tab-nav .nav-link:hover {
  background: rgba(240, 248, 255, 0.4);
  color: #0d6efd;
  transform: translateY(-1px);
}

.elegant-tab-nav .nav-link.active {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
@media (max-width: 991.98px) {
    .dropdown-menu {
        padding: 1rem !important;
    }
    .dropdown-header {
        font-size: 1.1rem;
        font-weight: 600;
    }
    .mobile-scroll {
        max-height: 60vh; /* Adjust height as needed */
        overflow-y: auto;
    }   
}
.treatment-img {
  width: 100%;
  height: 300px; /* Adjust height as needed */
  background-size: cover;       /* Ensures full coverage */
  background-position: center;  /* Centers the focal point */
  background-repeat: no-repeat; /* Prevents tiling */
  border-radius: 10px;          /* Optional: add rounded corners */
}

.treatment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This crops the image to fill container without distortion */
  display: block;
}
@media (max-width: 768px) {
  .treatment-img {
    height: 180px;
  }

  .myThumbs .swiper-slide img {
    width: 80px;
    height: 60px;
  }
}

.treatment-img {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
 .custom-list li {
      color: var(--black);
      margin-bottom: 10px;
      list-style-type: disc;
    }

    .custom-list li::marker {
      color: var(--bs-secondary);
      font-size: 20px;
    }

    .center-img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    @media (max-width: 767.98px) {
      .middle-col {
        margin: 30px 0;
      }
    }
    .section-title {
      margin-bottom: 30px;
    }
    .section-title h2,h3.section-title {
        color: var(--bs-indigo);
    }
.feature-box {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s;
      text-align: center;
    }
    .feature-box:hover {
      transform: translateY(-5px);
    }
    .feature-box i {
      font-size: 2rem;
      color: var(--bs-secondary);
      margin-bottom: 10px;
    }

    .video-container {
      position: relative;
      z-index: 2;
      max-width: 100%;
      margin-bottom: -80px; /* Pulls video upward to overlap the section below */
    }

    .video-container video {
      width: 100%;
      border-radius: 20px;
      display: block;
    }

    .benefit-split-wrap {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border-radius: var(--border-radius--button-radius-lg);
  background-color: var(--bs-secondary);
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: end;
  padding: 370px 40px 100px;
  display: grid;
}

.benefit-split-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.benefit-split-title-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.benefit-split-title {
  color: var(--color--white);
  margin-bottom: 0;
  font-size: 50px;
}

.benefit-split-list-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.benefit-split-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.benefit-split-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.benefit-split-text {
  font-family: var(--font-family--heading);
  color: var(--color--white);
  font-weight: 600;
}

.benefit-split-image {
  width: 100%;
}

.benefit-bg-image-wrap {
  margin-bottom: -280px;
  margin-left: 40px;
  margin-right: 40px;
}

.benefit-bg-video {
  z-index: 9;
  border-radius: var(--border-radius--border-radius);
  height: 600px;
}

.benefit-right-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.benefit-item-wrap {
  flex-flow: column;
}

.benefit-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.benefit-decorative {
  border-radius: var(--border-radius--border-radius-sm);
  background-color: var(--bs-indigo);
  flex: none;
  width: 8px;
  height: 8px;
}

.benefit-title {
  margin-bottom: 0;
  font-size: 28px;
}

.benefit-description {
  margin-bottom: 0;
  font-size: 16px;
}

.benefit-divider {
  background-color: var(--color--primary-2);
  opacity: .3;
  width: 100%;
  height: 1px;
}

.benefit-image-decorative {
  z-index: -1;
  background-color: var(--color--primary-4);
  opacity: .3;
  filter: blur(60px);
  border-radius: 100%;
  width: 250px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 50px 0 0%;
}

/* Media queries adjusting sizes and layout for smaller screens */
@media screen and (max-width: 767px) {
  .benefit-split-wrap {
    border-radius: var(--border-radius--border-radius-sm);
  }

  .benefit-split-title {
    font-size: 30px;
  }

  .benefit-bg-video {
    height: 300px;
  }
}

@media screen and (max-width: 479px) {
  .benefit-split-wrap {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .benefit-split-title {
    font-size: 40px;
  }

  .benefit-bg-image-wrap {
    margin-bottom: 80px;
    margin-left: 0;
    margin-right: 0;
  }

  .benefit-bg-video {
    border-radius: var(--border-radius--border-radius-sm);
    border : 1px solid var(--bs-indigo);
  }
}
.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}
.signs{
    background-color: #e2fff3;
    border-radius: 50px;
    padding-left: 50px;
    padding-right: 50px;
}
.mh-2{
    min-height: 200px;
}
.accordion-button:not(.collapsed){
    color: var(--bs-secondary);
        background-color: #fff;
    box-shadow: inset 0 -1px 0 rgb(133 232 192);

}
.accordion-button:focus {
    border-color: var(--bs-secondary);
    box-shadow: 0 0 0 .25rem #81e4bf;
}