@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


/*html, body {
	width: 100%;
	overflow-x: hidden;
} */



:root {
  --bg-black: #350403;
  --main-color: #C98C4D; 
}


* {
    text-decoration: none !important;
    outline: none !important;
}

body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    letter-spacing: 0.4px;
    overflow-x: hidden;
    color: #333333;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

ol {
    list-style: decimal inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #0d141e;
    line-height: 30px;
    font-family: "Playfair Display", serif;
}

p {
    margin: 0;
    padding: 0;
    color: #212121;
    font-size: 16px;
    font-family: "Ubuntu", sans-serif; 
}

b,
strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

/* a,
a:hover,
a:visited {
    color: #21a108;
} */

/* ::selection 
{
    background: #21a108;
    color: #fff;
}
::-moz-selection 
{
    background: #21a108;
    color: #fff;
} */
a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}


/***************
page scrool
**************/
.scrollup {
    right: 15px;
    position: fixed;
    border-radius: 200px;
    bottom: -80px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    background: #25D366;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-align: center;
    color: #FFF;
    padding: 10px;
}

.scrollup.active {
    bottom: 92px;
    right: 15px;
}

/* .scrollup:hover {
    background-color: rgba(37, 37, 37, 0.7);
} */

/***************
page scrool
***************/

/********HAMBURGER ICON***********/
.hamburger {
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/** Spring **/
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/** Spring **/

/********HAMBURGER ICON***********/

.topmines {
    top: -100px;
}

.nav-active {
    position: fixed;
    top: 0 !important;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 5px #d9d9d9;
}

.nav-active .logo {
    margin-top: 0;
    position: relative;
    z-index: 99;
    width: 150px;
    flex: 0 0 150px;
}

.nav-active .menu-part {
    align-items: center;
}



/*******************************
********NAV BAR*****************
*****************************/
#pull {
    display: none;
}

.nav>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: auto;
    margin: 0px 44px 0px 0px;
}

/* .nav>ul>li:last-child,
.nav>ul>li:only-child {
    margin: 0;
} */

/* .nav>ul>li::before {
    position: absolute;
    bottom: 10px;
    left: 0px;
    z-index: 1;
    content: " ";
    width: 20px;
    height: 3px;
    background: #1db315;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin: 0 auto;
    left: 0;
    right: 0;
} */

/* .nav>ul>li:hover::before,
.nav>ul>li.current-menu-item::before,
.nav>ul>li.current-menu-parent::before,
.nav>ul>li.current-menu-ancestor::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
} */

.nav>ul>li>a {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    padding: 25px 0px;
    color: #292929;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>a,
.nav>ul>li.current-menu-item>a,
.nav>ul>li.current-menu-parent>a,
.nav>ul>li.current-menu-ancestor>a {
    color: var(--main-color); 
}

.nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 300px;
    height: auto;
    padding: 0px 0px 0px 0px;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul,
.nav>ul>li:nth-last-child(2)>ul {
    left: auto;
    right: 0;
}

.nav>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav>ul>li>ul>li,
.nav>ul>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}

.nav>ul>li>ul>li>a,
.nav>ul>li>ul>li>ul>li>a {
    display: block;
    width: auto;
    height: auto;
    padding: 2px 15px 1px 15px;
    background: rgba(11, 30, 48, 0.8);
    border-top: 1px #485665 solid;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>ul>li>a,
.nav>ul>li:hover>ul>li>ul>li>a {
    padding: 9px 15px 10px 15px;
}

.nav>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li.current-menu-parent>a,
.nav>ul>li>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li>ul>li.current-menu-parent>a {
    background: var(--main-color); 
}

.nav>ul>li>ul>li>ul {
    position: absolute;
    top: 10%;
    left: 100%;
    z-index: 9999;
    width: 240px;
    height: auto;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul>li>ul,
.nav>ul>li:nth-last-child(2)>ul>li>ul {
    left: auto;
    right: 100%;
}

.nav>ul>li>ul>li:hover>ul {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.middle-conter {
    width: 100%;
    display: inline-block;
    vertical-align: top;

}


.nav {
    width: 100%;
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.top-nav 
{
    position: relative;
}

 



/*******************************
********NAV BAR*****************
*****************************/


/***************** Top Bar *****************/

.top-bar {
    position: relative;
    background: var(--bg-black);
}


.top-bar .info-details ul li {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.top-bar .info-details ul li a {
    color: #2f0909;
    font-size: 14px;
}

.top-bar .info-details ul span {
    width: 33px;
    height: 33px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75bf33;
    margin-right: 10px;
}


.top-social li a {
    width: 33px;
    height: 45px;
    background: #cedec0;
    color: #577b37;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.top-social li:last-child a {
    margin-right: 0;
}

.banner .slick-list {
    padding: 0 !important;
}

.slick-slide img {
    width: 100%;
}


.arrow-icon {
    position: absolute;
    top: 25px;
    right: -18px;
}

.book-app-btn 
{
    background: var(--bg-black);
    color: #FFF !important;
    display: inline-block;
    overflow: hidden;
    border-radius: 50px;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 500;
}

.book-app-btn span 
{
    background: var(--main-color); 
    color: #FFF;
    display: inline-block;
    padding: 10px 15px;
}
.top-bar ul li 
{
    padding: 0 10px;
	border-right: 2px solid #fff; 
}
.top-bar ul li a 
{
    color: #FFF;
	
}

.top-bar a 
{
    color: #FFF;
}

.con-info strong 
{
    color: #FFF; 
    padding: 0 15px;
    font-weight: 500 !important;
}



/************ End Header ***************/

.banner-area 
{
    overflow: hidden;
}

.banner-content {
    position: absolute;
    top: 20%;
    z-index: 99;
    width: 550px;
    margin-left: 250px;
}

.banner-content h1 {
    font-size: 58px;
    line-height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFB364 0%, #F9FEFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: bold;
}

 
.banner-content ul li 
{
    color: #FFF;
    line-height: 30px;
    font-size: 18px;
}
.banner-content ul li i  
{
    margin-right: 10px;
    font-size: 22px;
}
 

.banner-content p {
    position: relative;
    color: #FFF;
    font-size: 18px;
}
 
.section-gap 
{
    padding: 80px 0;
}

.heading h2  
{
    font-weight: 400;
    font-size: 36px;
    line-height: 50px;
}
 
.heading h2 strong 
{
    text-decoration: underline !important;
    -webkit-text-decoration-color: var(--main-color) !important;
    text-decoration-color: var(--main-color) !important;
}

.round-image 
{
    width: 250px;
    height: 250px;
    border-radius: 50%; 
    overflow: hidden;
}

.round-image img 
{
    object-fit: cover;
    height: 100%;
}

 
.why-slide-area 
{
    box-shadow: 0px 4px 30px 0px #00000014;
    border-radius: 20px;
}

.why-slide-area h3 
{
    margin-bottom: 10px;
}

.right-arrow {
    background: var(--main-color);
    width: 35px;
    height: 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF !important;
    position: absolute;
    right: -10px;
    bottom: 0;
}

.slick-next {
    right: -70px;
}

.slick-next:before {
    content: '\F138';
    font-family: "bootstrap-icons";
}

.slick-prev {
    left: -70px;
}

.slick-prev:before {
    content: '\F12F';
    font-family: "bootstrap-icons";

}

.slick-prev:before, .slick-next:before  
{
    color: var(--bg-black);
    opacity: 1 !important;
}

.slick-prev, .slick-next 
{
     width: 50px;
    height: 50px; 
    background: #FAFAFA !important;
    border-radius: 50%;
}


.mid-sec 
{
    padding: 250px 0;
    background-size: cover !important;
    padding-left: 550px;
}

.mid-content h2  
{
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFB364 0%, #F9FEFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    font-weight: bold;
}


.before-after 
{
    background-size: cover !important;
}

.gradient-text h2  
{
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFB364 0%, #F9FEFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    font-weight: bold;
}

.slider-nav 
{
/*     overflow: hidden; */
}

.slider-nav img 
{
    width: auto;
}

.slider-nav p   
{
    display: flex; 
    align-items: center;
    color: #FFF;
    font-size: 18px;
}

.slider-nav p span  
{
    margin-right: 15px;
	display: flex; 
	height: 70px;
	flex: 0 0 70px; 
	border-radius: 50%; 
	border: 1px solid #FFF; 
	align-items: center; 
	justify-content: center; 
}


.slider-nav .slick-prev, .slider-nav .slick-next {
    width: 50px;
    height: 50px;
    background: transparent !important;
    border-radius: 50%;
}

.slider-nav .slick-prev:before, .slider-nav .slick-next:before {
    color: #FFF;
    opacity: 1 !important;
}

.slider-nav .slick-prev {
    left: -50px;
}

.slider-nav .slick-next {
    right: -50px;
}

.client-say-heading {
    background: #350403;
    width: 415px;
    padding: 30px;
    height: 460px;
    border-radius: 0 100px 0 0;
    flex: 0 0 415px;
}

.testimo-heading h3 {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    font-family: "Ubuntu", sans-serif;
}

.client-content img 
{
    width: auto;
}

.client-image 
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.tes-top-cov {
    box-shadow: 0px 4px 20px 0px #00000014;
    background: #FFF; 
    padding: 15px;
    border-radius: 20px;
}

.client-details 
{
    position: relative;
    left: 90px;
}

.testimo-slider .slick-prev {
    top: 325px;
    left: -295px;
}

.testimo-slider .slick-next 
{
    top: 325px;
    left: -230px;
}


.video-rounded 
{
    border-radius: 50px;
    overflow: hidden;
	background: #000; 
}

.video-rounded video
{
	object-fit: cover;
}

.video-slider {
    margin-bottom: 0px;
}

.big-margin {
    margin-top: 200px;
    margin-bottom: -100px;
    position: relative;
}

.subscribe-area 
{
    background: var(--main-color);
    padding: 50px; 
    border-radius: 70px 70px 0 0;
}

.subs-content h3 {
    color: #FFF;
    font-size: 48px;
    line-height: 65px;
    font-weight: bold;
    font-family: "Ubuntu", sans-serif;
}

.subs-content p   
{
    color: #FFF;
}

.submit-area input[type='text'] 
{
    height: 50px; 
    color: #000;
    border-radius: 8px 0px 0px 8px;
    border: none;
    box-shadow: none; 
    outline: none;
}

.btn-submit {
    background: var(--bg-black);
    height: 50px;
    color: #FFF;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 12px;
    width: 135px;
    text-transform: uppercase;
    font-weight: 500;
    flex: 0 0 135px;
    border-radius: 0 8px 8px 0;
}


footer 
{
    background: var(--bg-black);
    padding-top: 60px;
}

.social-icon img 
{
    width: 50px;
    height: 50px;
}

.footer-holder p   
{
    color: #FFF;
    font-size: 17px;
    line-height: 30px;
}

.footer-holder h4  
{
    color: var(--main-color);
    font-size: 22px;
    line-height: 30px;
    position: relative;
    margin-bottom: 35px;
    font-family: "Ubuntu", sans-serif;
}

.footer-holder h4::before 
{
    content: '';
    position: absolute; 
    border-bottom: 2px solid var(--main-color);
    width: 50px;
    bottom: -20px;
}

.link-design ul li a {
    color: #FFF;
    line-height: 40px;
    display: block;
    font-size: 17px;
}

.lower-area 
{
    background: var(--main-color);
    padding: 20px 50px;
    border-radius: 30px;
}

.lower-area p   
{
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    
}

.icon-foot  
{
     width: 100px;
     flex: 0 0 80px;
     position: relative;
     z-index: 9;
}

.icon-foot::before 
{
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background: #350403;
    flex: 0 0 64px;
    border-radius: 50%;
    z-index: -1;
    left: -15px;
}




/***********************************/ 

.container-slides .slides {
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}
.container-slides .slide {
    list-style-type: none;
    height: 400px;
    width: 70px;
    overflow: hidden;
    -webkit-transition:all 500ms linear;
	-moz-transition:all 500ms linear;
	-o-transition:all 500ms linear;
	-ms-transition:all 500ms linear;
	transition:all 500ms linear;
    margin: 10px;
    border-radius: 15px;
}

/* brands colors */
.brand1{
    background-color: #fff;
    box-shadow: 0px 4px 50px 0px #00000012;

}
.brand2{
    background-color: #fff;
    box-shadow: 0px 4px 50px 0px #00000012;

}
.brand3{
       background-color: #fff;
    box-shadow: 0px 4px 50px 0px #00000012;

}
.brand4{
    background-color: #fff;
    box-shadow: 0px 4px 50px 0px #00000012;

}
.brand5{
    background-color: #fff;
    box-shadow: 0px 4px 50px 0px #00000012;

}

.container-slides .slide a.action{
    display: block;
    height: 100%;
    position: relative;
}
.container-slides .slide a.action span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    transform: rotate(270deg);
    position: absolute;
    bottom: 0;
    width: 400px;
    left: 37px;
    top: -40px;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0;

}
.slide-content{
    display: block;
    width: 100%;
    padding-right: 20px;
    /* width: 720px; */
    /* padding: 40px; */
}
.slide-content{
    color:#000;
}
.container-slides .active {
    width:80%;
    background-color: #fff;
    box-shadow: 0px 4px 50px 0px #00000012;
}
.container-slides .active a.action{
    display: none;
}

.acor-image {
    flex: 0 0 300px;
    border: 1px solid #c88b53;
    border-radius: 15px;
    overflow: hidden;
}

.acor-image img
{
    width: 300px;
    height: 400px;
    object-fit: cover;
}

.acor-content h2 
{
    font-size: 30px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.acor-content p
{
    font-size: 16px;
    margin-bottom: 15px;
    color: #797979;
}

.acor-content {
    width: 600px;
    flex: 0 0 600px;
    transition: none;
    height: 100%;
}

.from-area {
    max-width: 500px;
    position: absolute;
    top: 50px;
    right: 150px;
    background: #350403;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
	border: 1px solid #ffca9a;
}

.from-area h2 {
    margin-bottom: 20px;
    color: #FFF;
    font-family: "Ubuntu", sans-serif;
    font-size: 24px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--main-color);
    color: #FFF;
    border: none;
    text-transform: uppercase;
    font-weight: 600; 
	border-radius: 10px; 
}

.treatmentvideo 
{
	background-size: cover !important; 
}

.scrollup a
{
	color: #FFF !important; 
	font-size: 25px; 
}

.social-footer ul li a {
    background: var(--main-color);
    padding: 15px;
    color: #000;
    display: block;
    margin-right: 10px;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.side-contact 
{
    position: fixed; 
    right: 0;
    top: 40%;
    z-index: 999;
}

.side-contact a {
    margin-bottom: 15px;
    position: relative;
    right: -95px;
    transition: all .4s ease-in-out;
}

.side-contact a:hover 
{
    right: 0px;
}


.side-contact a img 
{
    margin-right: 15px;
}

.side-call {
    background: var(--main-color);
    padding: 10px;
    width: 150px;
    border-radius: 30px 0 0 30px;
    color: #FFF !important;
    font-size: 18px;
}

.contact-whatsapp 
{
    background: #23AE01;
    padding: 10px;
    width: 150px;
    border-radius: 30px 0 0 30px;
    color: #FFF !important;
    font-size: 18px;
}


.why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto;
    margin-bottom: 10px;
    border: 1px solid #350404;
    padding: 12px;
    border-radius: 50%;
}

.why-box-area {
    background: #e7e7e7;
    padding: 15px 10px;
    border-radius: 15px;
	margin-bottom: 20px; 
}

.why-box-area p  
{
	font-size: 14px; 
}

.whytwo 
{
/* 	background: #f7f7f7; */
}

.modal-body .from-area {
    position: relative !important;
    width: 100% !important;
    top: 0;
    left: 0;
}

.btn-close 
{
	background-color: #ffffff;
    position: absolute;
    z-index: 9;
    right: 12px;
    top: 12px;
    opacity: 1;
}

.modal-content 
{
	border-radius: 20px; 
}

/****/

/* input[type="date"] {
  -webkit-appearance: auto;  
  appearance: auto;
}
 */


.calendar-icon {
     
	display: none; 
}


.para-flex  
{
	display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.video-text h3  
{
	margin-bottom: 15px; 
	font-size: 26px; 
}

.how-dose-video  
{
	position: relative; 
/* 	background: var(--main-color) */
}

/* .how-dose-video::before {
    content: '';
    position: absolute;
    background: var(--main-color);
    height: 260px;
    width: 85%;
    border-radius: 0 200px 200px 0;
    z-index: -9;
    top: 222px;
} */

.tecno-section 
{
	background: var(--main-color);
}

.heading-white h2  
{
	color:#FFF; 
	font-weight: bold; 
	font-size: 35px; 
	line-height: 45px; 
}

.comp-text h3 
{
	color: #FFF; 
	font-size: 35px; 
	font-weight: 500; 
	font-family: "Ubuntu", sans-serif; 
}

.comp-text p
{
	color: #FFF; 
	font-size: 18px; 
}

.versis {
    width: 55px;
    height: 55px;
    color: #FFF;
    font-size: 25px;
    color: #FFF;
    position: absolute;
    right: 95px;
    left: 0;
    margin: 0 auto;
    top: 42%;
    background: #910002;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.laser-text h3  
{
	font-size: 25px; 
	font-weight: bold; 
	text-transform: capitalize; 
}

.slide-area-laser {
    padding-bottom: 30px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-radius: 135px 135px 0 100px;
}


.laser-text {
    padding: 0 50px;
}

.laser-image {
    border-radius: 0 0 0 80px;
    overflow: hidden;
    height: 255px;
}

.laser-image img 
{
	object-fit: cover; 
	height: 100%; 
}

.treatment-page-part 
{
	background: var(--main-color);
}

.numb-list ul
{
	gap:5%; 
}

.numb-list ul li p {
    color: #FFF;
    align-items: center;
    justify-content: center;
    display: flex;
    line-height: 50px;
}

.numb-list ul li p span {
    background: rgba(245, 199, 153, 1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    font-weight: bold;
}


.numb-list {
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
}

.tret-text h3  
{
	color: #FFF; 
	font-size: 30px; 
	line-height: 40px;
	margin-bottom: 20px; 
}

.tret-text ul li {
    color: #FFF;
    line-height: 24px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 18px;
}


.tret-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #FFF;
    border-radius: 50px;
}


.bef-aft-slider .slick-prev, .bef-aft-slider .slick-next {
    width: 50px;
    height: 50px;
    background: var(--main-color) !important;
    border-radius: 50%;
}

.bef-aft-slider .slick-prev:before, .bef-aft-slider .slick-next:before {
    color: #FFF;
}

.client-say-bg 
{
	background: rgba(255, 248, 240, 1); 
}

.click-sec ul li 
{
	padding: 10px 20px; 
	position: relative; 
	border: 1px solid var(--main-color);
	border-radius: 10px; 
	text-transform: capitalize; 
}

 

.click-sec ul 
{
	gap:20px; 
}

.click-sec ul li a 
{
	font-size: 18px; 
	color: #000; 
}

.call-secpart {
    background: #c88b53;
    padding: 10px;
    margin-top: 30px;
    border-radius: 8px;
}

.call-us-btn {
    background: #350403;
    padding: 10px 20px;
    color: #FFF;
	border-radius: 10px; 
}

.call-secpart p   
{
	color: #FFF; 
	font-size: 18px; 
}






/* ******************************************** */
/******************* Gallery Start **************/
/* ******************************************** */

.gallery-area {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 80px 0px;
}

.gallery-area>.container-fluid .gallerys {
    margin-right: -15px;
    margin-left: -15px;
}

.gallery-holder {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    margin: 0%;
}

.gallery-holder img {
    width: 100%;
}

.gallery-holder>.holder {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.gallery-holder>.holder .capson {
    background: rgb(200 139 83 / 83%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-100%, 0px);
    transition: all 0.4s;
}

.gallery-holder:hover .holder .capson {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox {
    position: relative;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #fff;
    transform: translate(-500%, 0px);
    transition: all 0.9s;
}

.gallery-holder:hover>.holder .capson .lightbox {
    transform: translate(0px, 0px);
}

.gallery-holder>.holder .capson .lightbox i {
    position: relative;
    z-index: 1;
}

.gallery-holder>.holder .capson .lightbox::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(4 4 4 / 58%);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: rotateZ(0deg);
    z-index: 0;
    transition: all 0.3s;

}

.gallery-holder>.holder .capson .lightbox:hover::after {
    background: #350403;
    transform: rotateZ(45deg);
}

.tab-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.tab-center button {
    margin: 5px 1px;
    width: 165px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-weight: 500;
    font-size: 13px;
}

.tab-center button:first-child {
    background: #133d99;

}

.tab-center button:last-child {
    background: #d2202d;
}

/* ******************************************** */
/******************* Gallery End **************/
/* ******************************************** */

.how-dose-video 
{
	background: rgba(255, 248, 240, 1);
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
	font-family: "Ubuntu", sans-serif; 
}

.accordion-button:focus {
    z-index: 3;
    border-color: #2f5fa5;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #c88b53;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.faq-area {
    background: #fff7f0;
}

.contact-details ul li 
{
	display: flex; 
	margin-bottom: 20px; 
	align-items: center; 
}

.contact-details ul li:last-child 
{
	margin-bottom: 0 !important; 
}

.contact-details ul li span {
    flex: 0 0 50px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: #350404;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 25px;
}

.contact-details {
    background: #efefef;
    padding: 30px 20px;
    border-radius: 12px;
	height: 100%; 
}

.contact-details li p {
    font-size: 18px;
    font-weight: 500;
}


.accordion-button:not(.collapsed)::after {
    background-image: url(../images/arrow.svg);
    transform: rotate(-180deg);
    filter: saturate(3);
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125) !important;
    margin-bottom: 10px;
}
.about-content h3 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 40px;
}
.about-content p
{
	margin-bottom: 15px; 
}

.blog-card {
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 18px;
}

.blog-content h3  
{
	margin-bottom: 20px; 
	font-size: 25px; 
	font-weight: 600; 
}

.blog-content p  
{
	margin-bottom: 15px; 
}

.rounded-arrow {
    background: #c88b53;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    color: #FFF !important;
    font-size: 18px;
}

/******** Blog Details ********/ 

.service-article-wrapper h1 {
    font-size: 35px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
    color: #383838;
	text-transform: capitalize; 
}

.service-article-wrapper h2 {
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
    color: #383838;
	text-transform: capitalize; 
}

.service-article-wrapper h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #383838;
    text-transform: capitalize;
	
}

.service-article-wrapper img 
{
	margin-bottom: 15px; 
}

.service-article-wrapper ul li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 10px;
    color: #454545;
    position: relative;
    padding-left: 18px;
}

.service-article-wrapper ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 8px;
    background: #c88b53;
    border-radius: 100px;
}

.service-article-wrapper p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
    color: #454545;
}

.blog-date {
    display: block;
    margin-bottom: 15px;
    background: #FFF;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 6px;
	font-family: "Ubuntu", sans-serif;
}

.bg-gray 
{
	background: #f5f5f5 !important;
}

.bef-aft-slider .slick-slide {
     
    margin: 12px;
    border: 4px solid #c88b53;
    border-radius: 25px;
    overflow: hidden;
}
