:root{
    --black-clr: #000000;
    --body-bg: #212121;
    --white-clr: #FFFFFF;
    --orange-clr: #FF5C00;
    --dark-gray-clr: #202020;
}


/*  =========== Fonts ============== */

@font-face {
  font-family: 'CabinetGrotesk-Thin';
  src: url('../fonts/CabinetGrotesk-Thin.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Thin.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Thin.ttf') format('truetype');
       font-weight: 100;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Extralight';
  src: url('../fonts/CabinetGrotesk-Extralight.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Extralight.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Extralight.ttf') format('truetype');
       font-weight: 200;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Light';
  src: url('../fonts/CabinetGrotesk-Light.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Light.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Light.ttf') format('truetype');
       font-weight: 300;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Regular';
  src: url('../fonts/CabinetGrotesk-Regular.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Regular.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Regular.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Medium';
  src: url('../fonts/CabinetGrotesk-Medium.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Medium.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Medium.ttf') format('truetype');
       font-weight: 500;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Bold';
  src: url('../fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Bold.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Bold.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Extrabold';
  src: url('../fonts/CabinetGrotesk-Extrabold.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Extrabold.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Extrabold.ttf') format('truetype');
       font-weight: 800;
       font-display: swap;
       font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Black';
  src: url('../fonts/CabinetGrotesk-Black.woff2') format('woff2'),
       url('../fonts/CabinetGrotesk-Black.woff') format('woff'),
       url('../fonts/CabinetGrotesk-Black.ttf') format('truetype');
       font-weight: 900;
       font-display: swap;
       font-style: normal;
}


body{
    position: relative;
    background-color: var(--body-bg);
    font-family: 'CabinetGrotesk-Regular';
    color: var(--white-clr);
    font-weight: 300;
}
.bg-black{
    background-color: var(--black-clr);
}
.o-hidden{
    overflow: hidden;
}
.hero-bg video{
    min-width: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-bg{
    background-image: url('../images/hero-bg-video.mp4');
    width: 100%;
    overflow: hidden;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background-position: right;
    background-repeat: no-repeat;
}
.hero-bg:after{
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background-image: url('../images/hero-bg-pattern.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 30%;
}
.hero-bg:before{
    position: absolute;
    display: block;
    background: linear-gradient(-180deg, rgba(33, 33, 33, 0%) 0%, rgba(33, 33, 33, 75%) 55%, #212121 100%);
    content: '';
    width: 100%;
    height: 120px;
    z-index: 0;
    left: 0;
    bottom: 0;
}
.section-padding{
    padding: 90px 0px;
}
a{
    color: var(--white-clr);
    text-decoration: none;
    font-family: CabinetGrotesk-Medium;
}
.topbar{
    background-color: var(--black-clr);
    padding: 12px 0px;
    border-bottom: 1px solid #939393;
}
.topbar-leftwrap , .topbar-rightwrap{
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.topbar .topbar-leftwrap a, .topbar  .topbar-rightwrap a{
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    transition: .2s all;
    font-weight: 400;
    text-transform: capitalize;
}

.topbar .topbar-leftwrap a svg, .topbar  .topbar-rightwrap a svg{
    width: 21px;
    height: 21px;
}

.topbar .topbar-leftwrap a:hover, .topbar  .topbar-rightwrap a:hover , .topbar .topbar-leftwrap a:hover svg path, .topbar  .topbar-rightwrap a:hover  svg path{
    color: var(--orange-clr);
    stroke: var(--orange-clr);
}

.lenguage-select{
    background-color: var(--dark-gray-clr);
    color: var(--white-clr);
    border-radius: 6px;
}
.lenguage-select button {
    box-shadow: none !important;
    padding: 6px 12px;
    color: var(--white-clr)  !important;
}

.dropdown-menu {
    background-color: var(--dark-gray-clr);
    border: 1px solid #393939;
    border-radius: 8px;
    z-index: 999999;
}
.dropdown-menu .dropdown-item {
    color: var(--white-clr);
}
.dropdown-menu .dropdown-item:hover{
    background-color: var(--white-clr);
    color: var(--black-clr) !important;
}
.dropdown-menu .dropdown-item:focus{
    background-color: var(--white-clr);
    color: var(--black-clr);
}

.lenguage-select button .flag , .lenguage-select .dropdown-menu li a .flag{
    width: 18px;
    margin-right: 5px;
}

.lenguage-select button span.selected-lg{
    padding-right: 10px;
}


/*  ============= Navbar ==================== */
header {
    background-color: #00000041;
    backdrop-filter: blur(16.5px);
    padding: 10px 0px;
    position: relative;
    z-index: 9999999;
}
header .navbar{
    padding: 0;
}
.navbar-brand{
    display: block;
    padding: 0;
    width: 65px;
}
.navbar-brand img{
    width: 100%;
}

.navbar .navbar-nav{
    column-gap: 20px;
}
.navbar .navbar-nav li a{
    transition: .2s all;
    color: var(--white-clr);
}
.navbar .navbar-nav li a:hover{
    color: var(--orange-clr);
}
.navbar-right-wrap{
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.navbar-right-wrap .icon-link {
    display: inline-block;
    min-width: 26px;
    max-width: 26px;
}
.navbar-right-wrap .icon-link img{
    width: 100%;
}

.navbar-collapse{
    justify-content: space-between;
    column-gap: 20px;
}
button.navbar-toggler {
    padding: 0;
    color: var(--white-clr);
    font-size: 30px;
    box-shadow: none !important;
}
button.navbar-toggler:hover , button.navbar-toggler:focus{
    color: var(--orange-clr);
}
.theme-btn , .hero-button{
    display: inline-flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border: 0;
    outline: none;
    box-shadow: none;
    font-family: 'CabinetGrotesk-Medium';
    padding: 10px 20px;
    text-transform: capitalize;
    background-color: var(--orange-clr);
    color: var(--white-clr);
    transition: .2s all;
    border-radius: 5px;
}
.theme-btn:hover , .hero-button:hover{
    background-color: var(--white-clr);
    color: var(--black-clr);
}

/* ============ Hero Slider ============== */
.hero-swiper-container {
    position: relative;
    top: 0px;
    width: 100%;
    height: 550px;
    overflow: hidden;
}
.swiper-slide {
	position: relative;
}

.slide-captions {
	position: absolute;
	top: 50%;
	left: 0%;
	color: var(--white-clr);
	z-index: 999;
	transform: translateY(-50%);
	max-width: 900px;
    padding-left: 120px;
}

.slide-captions .current-subtitle {
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 300;
    color: var(--white-clr);
}
.slide-captions .current-img {
    width: 100px;
    display:flex;
      margin-top: 12px;
}
.slide-captions .current-title , h1.h1-title {
    margin: 0;
    font-size: 70px;
    margin-bottom: 15px;
    margin-top: 15px;
    color: var(--white-clr);
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'CabinetGrotesk-Bold';
}

.slide-captions .hero-para{
    font-size: 18px;
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 40px;
}

/* Swiper arrows */
.swiper-pagination-bullet-active {
    background-color: var(--white-clr);
}

/* Swiper pagination */
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
}
.swiper-button-prev, .swiper-button-next {
    transition: .2s all;
    color: var(--white-clr);
    background-color: var(--orange-clr);
    width: 44px !important;
    height: 44px !important;
    z-index: 999;
    border-radius: 100px;
}

.swiper-button-prev::after,
.swiper-button-next:after{
    font-size: 16px;
    font-weight: 500;
}

.swiper-button-prev:hover, .swiper-button-next:hover{
    background-color: var(--white-clr);
}
.swiper-button-prev:hover:after, .swiper-button-next:hover:after{
    color: var(--black-clr);
}

.services-item {
    background-color: var(--black-clr);
    padding: 25px 30px;
    border-radius: 20px;
    border: 1px solid #ffffff40;
    display: flex;
    justify-content: space-between;
    row-gap: 25px;
    flex-direction: column;
    height: 280px;
    transition: .4s all;
}
.services-item:hover{
    background-color: var(--white-clr);
}
.services-item:hover h2 , .services-item:hover h4 , .services-item:hover a{
    color: var(--black-clr);
}
.services-item h2{
    font-size: 40px;
    margin-bottom: 8px;
    transition: .4s all;
    font-family: 'CabinetGrotesk-Medium';
}
.services-item h4{
    font-size: 25px;
    margin-bottom: 0;
    transition: .4s all;
    font-family: 'CabinetGrotesk-Medium';
}

.services-item a{
    color: var(--orange-clr);
    font-weight: 400;
    transition: .4s all;
    font-size: 18px;
}

h2.h2-title{
    font-size: 40px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'CabinetGrotesk-Medium';
}

.fs-18{
    font-weight: 200;
    font-size: 18px;
    line-height: 26px;
}
.about-img-wrap{
    position: relative;
}
.about-img-wrap .about-img{
    border-radius: 20px;
    border: 1px solid var(--white-clr);
    overflow: hidden;
}
.about-img-wrap .about-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-tags-wrap {
    position: relative;
    padding: 25px 25px;
    background-color: var(--black-clr);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    column-gap: 20px;
    margin-top: -60px;
    justify-content: space-between;
    align-items: start;
    border: 1px solid var(--white-clr);
}
.about-tags-wrap h4{
    font-weight: 400;
    max-width: 240px;
    font-family: 'CabinetGrotesk-Medium';
    margin-bottom: 0;
}


.health-diagnoses-content , .contact-wrap{
    overflow: hidden;
    padding: 60px 60px;
    border-radius: 20px;
    background-color: var(--black-clr);
    border: 1px solid var(--white-clr);
}

.health-diagnoses-content h5{
    font-weight: 300;
}

.health-diagnoses-item-wrap{
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #BDBDBD;
}
.health-diagnoses-item img{
    min-width: 62px;
    max-width: 62px;
    filter: grayscale(100%) brightness(150%);
}
.health-diagnoses-item{
    text-align: center;
}
h5{
    font-size: 18px;
    font-weight: 300;
    margin-top: 10px;
}

.title-wrap{
    text-align: center;
    margin-bottom: 35px;
}
.title-wrap h2.h2-title{
    margin-bottom: 15px;
}

.wellness-center-slider {
    position: relative;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    padding: 0px 1px;
    padding-bottom: 100px;
}
.wellness-Our-Doctors{
    position: relative;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    padding: 0px 1px;
    padding-bottom: 100px;
}
.wellness-center-item{
    padding: 20px;
    border-radius: 20px;
    background-color: var(--black-clr);
    border: 1px solid var(--white-clr);
}

.wellness-img{
    border-radius: 16px;
    overflow: hidden;
}
.wellness-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wellness-info{
    margin-top: 16px;
    margin-bottom: 35px;
}
.wellness-info p{
    opacity: 50%;
    margin-top: 15px;
     display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;  
      overflow: hidden;
}
.wellness-info h3{
    margin-bottom: 12px;
 display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  font-family: 'CabinetGrotesk-Medium';
}
.wellness-location , .health-talk-date{
    display: flex;
    align-items: center;
    opacity: 50%;
}

.wellness-center-item a{
    transition: .2s all;
    color: var(--orange-clr);
    font-size: 18px;
}
.wellness-center-item a:hover{
    color: var(--white-clr);
}

.wellness-center-slider .swiper-button-prev{
    top: 92%;
    left: 50%;
    transform: translateX(-50px);
}


.wellness-center-slider .swiper-button-next {
    top: 92%;
    right: 50%;
    transform: translateX(50px);
}


.wellness-Our-Doctors .swiper-button-prev{
    top: 92%;
    left: 50%;
    transform: translateX(-50px);
}


.wellness-Our-Doctors .swiper-button-next {
    top: 92%;
    right: 50%;
    transform: translateX(50px);
}


.wellness-ourdr{
    padding: 20px;
    border-radius: 20px; 
    border: 1px solid var(--white-clr);
    min-height: 450px;
    
}
.wellness-ourdr h3{
    margin-bottom: 12px;
 display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  font-family: 'CabinetGrotesk-Medium';
  font-size: 1.5rem;
}
.wellness-ourdr h6 {
    font-size: 1.3rem;
    font-weight: 500; 
}
.wellness-ourdr p{
    opacity: 50%;
}
.wellness-ourdr ul{ 
    opacity: 50%;
}

.video-wrap{
    display: flex;
    column-gap: 20px;
    padding: 20px 20px;
    border-radius: 20px;
    border: 1px solid var(--white-clr);
    background-color: var(--black-clr);
    height: 100%;
}

.video-img-wrap {
    min-width: 370px;
    max-width: 370px;
    min-height: 100%;
    max-height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.video-img-wrap img{
    transition: transform .4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-img-wrap:hover img{
    transform: scale(1.1);
}

.success-story-content h4{
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 400;
    display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;  
      overflow: hidden;
}
.success-story-content p {
    opacity: 50%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.success-story-content ul{
    padding: 0;
    margin-bottom: 25px;
}
.success-story-content ul li {
    position: relative;
    padding-left: 27px;
    list-style: none;
    margin-bottom: 10px;
}
.success-story-content ul li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url('../images/icons/check-icon.svg');
    background-size: cover;
    width: 19px;
    height: 19px;
    background-position: center;
    background-repeat: no-repeat;
}

/*================ Success Stories ==================*/
/* Disable body scroll */
.no-scroll {
    overflow: hidden;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 29%);
    backdrop-filter: blur(7px);
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}

.popup-content {
    padding: 0;
    border-radius: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 1200px;
    max-width: 1200px;
    padding: 30px;
}
.popup-content iframe {
    height: 641px;
    border-radius: 15px;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-clr);
    color: var(--black-clr);
    /* line-height: 210px; */
    font-size: 50px;
    border-radius: 100px;
    padding-top: 5px;
    padding-left: 1px;
}
.popup-close:hover{
    color: red;
    width: 38px;
    height: 38px;
}

/*===================== Images Slider ================*/
.images-slider{
    position: relative;
    overflow: hidden;
}
.big-img-wrap {
    border-radius: 25px;
    border: 2px solid var(--white-clr);
    overflow: hidden;
    margin: 0px 80px;
}
.big-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*========*/
.success-story-content a{
    transition: .2s all;
    color: var(--orange-clr);
}
.success-story-content a:hover{
    color: var(--white-clr);
}

/*===========*/
.academy-wrap{
    display: flex;
    align-items: center;
    column-gap: 25px;
}
.academy-img{
    min-width: 150px;
    max-width: 150px;
    overflow: hidden;
    height: 144px;
    border-radius: 15px;
    outline: 3px solid var(--orange-clr);
}
.academy-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.academy-content{
    margin-top: 50px;
}
.contact-form{
    position: relative;
    z-index: 1;
}

.contact-form input , .contact-form textarea{
    padding: 12px 25px;
    width: 100%;
    margin-bottom: 15px;
    background-color: var(--body-bg);
    border-radius: 11px;
    border: 1px solid #EAEAEA;
    transition: .2s all;
    outline: none;
    color: var(--white-clr);
}
.contact-form textarea{
    min-height: 150px;
}
.contact-form input:focus , .contact-form textarea:focus{
    border-color: var(--orange-clr);
}
.contact-form input::placeholder , .contact-form textarea::placeholder{
    color: var(--white-clr);
    opacity: 70%;
    font-weight: 200;
}
.watermark-div{
    width: 100%;
    height: 100%;
    position: relative;
}
.watermark-img{
    opacity: 7%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}


footer{
    background-color: var(--black-clr);
    margin-top: 90px;
    padding-top: 60px;
}

footer .logo-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}


.links-wraps{
    margin-top: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
}
.links-wraps h5{
    font-weight: 600;
    margin-bottom: 15px;
}
.links-wraps ul li{
    list-style: none;
    margin-bottom: 9px;
}
.links-wraps ul li:last-child{
    margin-bottom: 0;
}
.links-wraps ul{
    padding: 0;
    margin: 0;
}

.links-wraps ul li a , .links-wraps p{
    color: var(--white-clr);
    opacity: 70%;
    font-weight: 300;
}
.links-wraps ul li a:hover{
    opacity: 1;
}

.links-wraps .social-media-links{
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.links-wraps .social-media-links li{
    margin-bottom: 0;
}
.links-wraps .social-media-links li a{
    opacity: 1;
    min-width: 30px;
    max-width: 30px;
    display: block;
}
.links-wraps .social-media-links li a:hover{
    opacity: 70%;
}
.social-media-links li a img{
    width: 100%;
}

.copyright{
    padding: 22px 0px;
    text-align: center;
}
.copyright p{
    font-weight: 300;
    opacity: 70%;
}

/*=================== About Us CSS ====================*/

.breadcrumb a:hover{
    color: var(--orange-clr);
}
.about-img-wrap{
    height: 600px;
    overflow: hidden;
}
.about-img-wrap img{
    height: 100%;
    object-fit: cover;
}
.text-justify{
    text-align: justify;
}
.aboutus-content{
    padding: 60px 0px;
}

.default-video-wrap{
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.wellness-center-map{
    width: 100%;
    height: auto;
}
.wellness-content-wrap{
    max-width: 1010px;
    margin: auto;
    margin-top: 30px;
    text-align: center;
}

.default-img-wrap{
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.default-img-wrap img{
    object-fit: cover;
}
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.floating-tour {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999999;
  background-color: #258dd3;
  color: white;
  /* width: 60px; */
  /* height: 60px; */
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}