:root {
    --body-bg: #ffffff;
    --theme-color: #eeb4c7;
    --body-color: #555555;
    --title-color: #fff;
    --secondary-color: #fde5d8;
    --smoke-color: #EFF1F5;
    --light-color: #f8f9fa;
    --black-color: #000000;
    --white-color: #000;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #e7e5e5;
    --title-font:
    'Lora', serif;
    --body-font:
    'Jost', sans-serif;
    --icon-font:
    "Font Awesome 5 Pro";
    --main-container: 1270px;
    --container-gutters: 30px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    background-color: var(--body-bg);
    line-height: 28px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color:#fff;
    margin: auto;
}

.slick-slide:focus,button:focus,a:focus,a:active,input,input:hover,input:focus,input:active,textarea,textarea:hover,textarea:focus,textarea:active {
    outline: none
}
a {
    color:#fff;
    text-decoration: none;
    outline: 0;
    transition: all ease .4s;
    font-family: var(--body-font) !important;
    font-weight: 500;
}
a:hover{
    color: #332f89 !important;
}

a:active,a:focus,a:hover,a:visited {
    text-decoration: none;
    outline: 0
}
button {
    transition: all ease .4s
}
img {
    max-width: 100%;
    height: auto;
}
li{
    list-style: none;
    font-family: var(--body-font);
}
ins {
    text-decoration: none
}

span.ajax-loader:empty,p:empty {
    display: none
}

p {
    margin: 0 0 18px 0;
    line-height: 1.63;
    font-family: var(--body-font);
    font-weight: 500;
}

h1 a,h2 a,h3 a,h4 a,h5 a,h6 a,p a,span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit
}

.h1,h1,.h2,h2,.h3,h3,.h4,h4,.h5,h5,.h6,h6 {
    font-family: var(--title-font);
    text-transform: none;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 15px 0
}
.h1,h1 {
    font-size: 48px
}

.h2,h2 {
    font-size: 40px
}

.h3,h3 {
    font-size: 36px
}

.h4,h4 {
    font-size: 28px
}

.h5,h5 {
    font-size: 24px
}

.h6,h6 {
    font-size: 20px
}

.vs-menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    transition: all ease .8s;
    opacity: 0;
    visibility: hidden
}
.vs-menu-wrapper .mobile-logo {
    padding-bottom: 30px;
    padding-top: 40px;
    display: block;
    text-align: center;
    background-color:#fff;
}
.vs-menu-wrapper .mobile-logo img {
    max-width: 220px
}
.vs-menu-wrapper .vs-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 34px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%
}
.vs-menu-wrapper .vs-menu-toggle:hover {
    background-color: var(--secondary-color);
    color: var(--white-color)
}

.vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: var(--body-bg);
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1
}

.vs-menu-wrapper.vs-body-visible {
    opacity: 1;
    visibility: visible
}

.vs-menu-wrapper.vs-body-visible .vs-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible
}

.vs-mobile-menu {
    max-height: calc(100vh - 175px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left
}

.vs-mobile-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(154,86,58,.2);
    background-color: #000
}

.vs-mobile-menu::-webkit-scrollbar {
    width: 6px;
    background-color: #000
}

.vs-mobile-menu::-webkit-scrollbar-thumb {
    background-color: var(--theme-color)
}

.vs-mobile-menu ul {
    margin: 0;
    padding: 0 0
}

.vs-mobile-menu ul li {
    border-bottom: 1px solid var(--border-color);
    list-style-type: none
}

.vs-mobile-menu ul li li:first-child {
    border-top: 1px solid var(--border-color)
}

.vs-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #08076c;
}

.vs-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: relative;
    left: 0;
    top: 0;
    margin-right: 10px;
    display: inline-block
}

.vs-mobile-menu ul li.vs-active>a {
    color: var(--theme-color)
}

.vs-mobile-menu ul li.vs-active>a:before {
    transform: rotate(90deg)
}

.vs-mobile-menu ul li ul li {
    padding-left: 20px
}

.vs-mobile-menu ul li ul li:last-child {
    border-bottom: none
}

.vs-mobile-menu ul .vs-item-has-children>a .vs-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(154,86,58,.5);
    border-radius: 50%
}

.vs-mobile-menu ul .vs-item-has-children>a .vs-mean-expand:before {
    content: "\f067";
    font-family: var(--icon-font)
}

.vs-mobile-menu ul .vs-item-has-children.vs-active>a .vs-mean-expand:before {
    content: "\f068"
}

.vs-mobile-menu>ul {
    padding: 0 40px
}

.vs-mobile-menu>ul>li:last-child {
    border-bottom: none
}

.vs-menu-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    font-size: 18px;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 0
}

.vs-menu-toggle.style-text,.vs-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: rgba(0,0,0,0);
    color: var(--title-color);
    font-size: 20px
}

.vs-menu-toggle.style-text i,.vs-menu-toggle.style-text-white i {
    margin-right: 10px
}

.vs-menu-toggle.style-text-white {
    color: var(--white-color)
}

.vs-btn {
    font-family: var(--title-font);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 25px;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #da3b85;
    border: none;
    border-radius: 22px;
}

.vs-btn:after,.vs-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--title-color);
    z-index: -1;
    width: 50%;
    height: 0;
    transition: all ease .4s;
    opacity: 0;
    visibility: hidden
}

.vs-btn:after {
    right: 0;
    top: 0;
    left: auto;
    bottom: auto
}

.vs-btn:hover {
    color: #000;
}

.vs-btn:hover:before,.vs-btn:hover:after {
    height: 100%;
    opacity: 1;
    visibility: visible
}
.scroll-btn {
    position: fixed;
    bottom: 300px;
    right: 30px;
    z-index: 94;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    border-radius: 50%
}

.scroll-btn i {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    width: var(--btn-size, 50px);
    height: var(--btn-size, 50px);
    line-height: var(--btn-size, 50px);
    z-index: 2;
    border-radius: inherit;
    position: relative;
    transition: all ease .8s
}

.scroll-btn:before {
    content: "";
    position: absolute;
    left: var(--extra-shape, -6px);
    top: var(--extra-shape, -6px);
    right: var(--extra-shape, -6px);
    bottom: var(--extra-shape, -6px);
    background-color: var(--body-bg);
    border-radius: inherit;
    z-index: 1;
    transition: all ease .4s
}

.scroll-btn:focus i,.scroll-btn:hover i {
    background-color: var(--title-color);
    color: var(--white-color)
}

.scroll-btn.show {
    bottom: 120px;
    opacity: 1;
    visibility: visible
}

.scrollToTop {
    position: fixed;
    right: 60px;
    bottom: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all ease .4s;
    z-index: 96
}

.scrollToTop.show {
    bottom: 60px;
    opacity: 1;
    visibility: visible
}

.vs-icon {
    display: inline-block;
    width: var(--icon-size, 100px);
    height: var(--icon-size, 100px);
    line-height: var(--icon-size, 100px);
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    margin: var(--border-gap, 5px);
    transition: all ease .4s
}

.text-inherit {
    color: #fff;
}

.footer-widget {
    color: #fff;
}

.footer-widget .widget_title {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border: none;
    text-transform: uppercase;
    font-size: 28px;
    color: #CA9C5E;
    text-align: center;
}
.footer-widget .widget_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
   
}
.footer-widget .recent-post-meta a:hover {
    color: var(--theme-color)
}
.footer-menu h4{
    color: #000;
    text-align: center;
    font-size: 26px;
}

.footer-widget.widget_nav_menu ul {
    padding-left: 0px 
}

.footer-widget.widget_nav_menu ul ul {
    margin-top: 0
}

.footer-widget.widget_nav_menu a {
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
}

.footer-widget.widget_nav_menu a:hover {
    background-color: rgba(0,0,0,0);
    color: #da3b85;
}

.vs-header {
    position: relative;
    z-index: 41
}

.header-logo {
    max-width:260px;
}
.main-menu a {
    display: block;
    position: relative;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 15px;
    color: #332f89;
    text-transform: uppercase;
    padding: 5px;
}
.main-menu a:hover {
    color: #fff !important;
    background: #da3b85;
}
.menu-center-image{
    border-radius: 4%;
}

.main-menu>ul>li {
    margin: 0px 12px;
}
.menu li a img{
    border-radius: 5px;
    max-width: 360px;
}
.main-menu ul {
    margin: 0;
    padding: 0
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative
}
.header-text {
    font-size: 12px;
    font-weight: 500;
    color: #e5e4e4;
    margin: 0;
    padding: 12px 0
}

.header-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px
}

.header-btns button:not([class*=vs-]),.header-btns a:not([class*=vs-]) {
    border: none;
    padding: 0;
    line-height: 1;
    font-size: 24px;
    color: var(--title-color);
    background-color: rgba(0,0,0,0)
}

.header-btns button:not([class*=vs-]):hover,.header-btns a:not([class*=vs-]):hover {
    color: var(--theme-color)
}

.widget-area {
    padding-top: 60px;
    padding-bottom: 40px
}
.sticky-wrap {
    background-color: #fff;
    padding: 20px 0px 10px 0px;
}
.footer-logo {
    margin-bottom: 28px
}
.copyright-text {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #000;
}
.copyright-text a {
    color: #000;
    text-transform: uppercase;
    font-size: 11px;
}
.copyright-text a:hover {
    color: var(--title-color)
}
.copyright-menu ul {
    margin: 32px 0 36px 0;
    padding: 0;
    list-style: none
}
.copyright-menu li {
    display: inline-block;
    margin: 0 29px
}

.copyright-menu a {
    display: block;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .13em
}
.copyright-menu a:hover {
    color: var(--theme-color)
}
.footer-row1 {
    border-right: 2px solid #da3b85;
}
.footer-row2 {
    border-right:2px solid #da3b85;
}
.footer-widget.widget_nav_menu ul li{
    text-align: center !important;
    color: #000;
    font-size: 17px;    
}


@keyframes slider{
    from{
        transform: translateX(-500px);
    }
    to{
        transform: translateX(0px);
    }
}
@keyframes slider-image{
    from{
        transform: translateX(500px);
    }
    to{
        transform: translateX(0px);
    }
}
.heading-image{
    animation: slider-image 2s ease-in-out;
}
.heading-2{
animation-name: slider-2;
animation-duration: 3s;
animation-direction: normal;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-timing-function: ease-in; 
} 

.heading{
    animation: slider 2s ease-in-out;
}

@keyframes slider-2{
    0%{
        transform: translateY(20px);
    }
    25%{
        transform: translateY(10px);
    }
    50%{
        transform: translateY(0px);
    }
   75%{
        transform: translateY(10px);
    }
   100%{
        transform: translateY(20px);
    }
}

.header-banner-image{
    background-image: url(../images/bg-1.jpg);
    clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
}
.header-banner-image-bg{
    background-color: #eeb4c7eb;
    padding: 100px 0px 150px 0px;
    border-bottom: 30px solid #da3b85;
}
/* .header-page{
    background-image: url(../images/center-bg.jpg);
} */
/* .header-page-bg{
    padding: 60px 0px;
} */
.header-links ul{
    display: flex;
    justify-content: space-between;
}
.header-top {
    padding-top: 10px;
    background: #da3b85;
    align-items: center;
    display: flex;  
}
.heading h3{
    font-size: 65px;
    color: #332f89;
    position:relative;
    top: 150px;
    font-weight: 600;
}
.heading h1{
    font-size: 21px;
    color: #332f89;
    position:relative;
    top: 150px;
    font-weight: 600;
    margin-bottom: 50px;
}
.heading p{
    font-size: 28px;
    color: #332f89;
    position:relative;  
    top: 135px;
    font-weight: 600;
}
.heading a{
    position:relative;
    top: 130px;
}
.navbar-header {
    align-items: center;
    justify-content: space-between;
}
.contact-button a {
    color: #fff;
    font-size: 15px;
    background-color: #da3b85;
    padding: 14px 20px;
    letter-spacing: 0.5px;
}
.contact-button a:hover{
    color: #000 !important;
    font-weight: 500;
}
.header-links ul li i {
    color: #fff;
    padding-right: 5px;
}
.header-icon img{
    margin-right: 20px;
    max-width: 25px !important;
    height: 25px !important;
}
.banner-image img{
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;    
    border-bottom-right-radius: 50%;
    
}
.about-right{
    margin-top: 60px;
}
.about-right h3{
    font-size: 56px;
    font-weight: 500;
    color: #332f89;
}
.about-right p{
    color: #000000;
    font-size: 18px;
}
.about-right a{ 
    margin-top: 20px;
}
.about-left img{
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;    
    border-bottom-right-radius: 50%;
    border-right: 10px solid #da3b85;
}
.about-left div{
    background-color: #000000;
    padding: 30px;
    max-width: 200px;
    text-align: center;
    align-items: center;
    position: relative;
    top: -120px;
    left: 430px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;    
    border-top-right-radius: 50%;
}
.about-left div:hover{
     background-color: #da3b85;
     transition: 500ms;
}
.about-left h4{
    font-size: 36px;
    color: #fff;
}
.about-number{
    color: #da3b85;
    font-size: 23px;
}
.Services-page{
    padding: 0px 0px 60px 0px;
    text-align: center;
    background-image: url(../images/tra-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.Services-page a{
   margin-top: 40px;
}
.Services-page h4{
    color: #da3b85;
    font-size: 27px;
    margin-top: 20px;
 }
.Services-page h3{
    font-size: 56px;
    text-align: center;
    margin-bottom: 50px ;
    font-weight: 500;
    color: #332f89;
}
.Testimonials-page{
    padding: 50px 0px;
    text-align: center;
    background:#000000ed;
}
.Testimonials-page h4{
    font-size: 32px;
    color: #da3b85;
}
.Testimonials-page h5{
    color: #da3b85;
}
.Testimonials-page h3{
    font-size: 56px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
}
.Testimonials-page p{
    font-size: 19px;
    color: #fff;
}
.about-right h5{
    color: #da3b85;
}
.Testimonials{
    background-image: url(../images/center-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.header-page {
    position: relative;
    margin: 60px 0px;
    padding: 80px 0px 0px 0px;
    z-index: 99;
  }
  
.header-page:after {
    position: absolute;
    content: '';
    width: 68%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    background-color: #f5f1f2;
  }
.about-left {
    z-index: 3;
}
.about-right {
    z-index: 3;
}

footer {
    background: #f5f1f2;
}
.Gallery-page{
    padding: 60px 0px;
    text-align: center;
}
.Gallery-page a{
    margin-top: 30px;
}
.Gallery-page h4{
   font-size: 32px;
   color: #da3b85;
}
.Gallery-page h3{
   font-size: 56px;
   color: #332f89;
}
.offerprice-page{
    padding: 60px 0px;
    text-align: center;
    background-image: url(../images/center-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.offer-box{
    padding: 40px 0px;
}
.offer-box p{
    font-size: 30px;
}
.offer-box h3{
    font-size: 85px;
    color: #332f89;
}
.services-image1 {
    margin: 10px;
}
.google-icon{
    max-width: 180px !important;
    height: auto;
    margin: 20px;
}
.Testimonials-page div{
    text-align: center;
}
.header-icon i{
    color: #fff;
}
.rozi-logo{
    max-width: 185px;
    height: auto;
}
.header-logo {
    text-align: center;
}
.about_us_page{
    padding: 60px 0px;
}
.breadcumb-wrapper{
    padding: 60px 0px;
}
.breadcumb-menu li a{
    color: #000;
    font-size: 18px; 
}   
.breadcumb-menu{
    display: flex;
    padding-left: 0px;
}
.breadcumb-menu li{ 
    padding: 0px 4px;  
} 
.about_us_text a{
    color: #da3b85;
    font-size: 21px;
}
.about_us_image img{
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;    
    border-bottom-right-radius: 50%;
    border-right: 15px solid #da3b85;
}
.established{
    font-size: 23px;
    color:#08076c;
    font-family: var(--title-font);
}
.gallery_page{
    padding: 60px 0px;
}
.gallery_page img{
    margin:30px
}
.facial_page{
    padding: 60px 0px;
}

.contact_us_page{
    padding: 60px 0px;
}
.service-dropdown li{
    padding: 5px 18px;
}
.about_us_image iframe{
    width: 400px;
    height: 350px;
}
.breadcumb-title {
    color: #08076c;
    font-size: 36px;
}
.form-input {
    width: 100%;
    margin: 10px 0px;
    padding: 10px;
}
.contact_us_page h4{
    color: #08076c;
    font-size: 38px;
}
.form-page {
    padding: 30px 0px;
}
.contact-us-list ul li a{
    color: #000;
}
.contact-address{
    padding-left: 34px;
}
.contact-us-list ul li i{
    color: #da3b85;
    font-size: 21px;
    margin-right: 10px;
}
.contact-us-list ul li {
    padding: 36px;
    background: #f8f1e8;
    color: #000;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
}
/* .contact-us-list {
    width: 100%;
} */
.contact-us-list ul{
    padding:0px;
}   

.booking-form{
    width: 100%;
    margin: 15px 0px;
    padding: 10px;
}
.booking-title{
    font-size: 38px;
    color: #08076c;
}
.booking_page img{
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;    
    border-bottom-right-radius: 50%;
    border-right: 15px solid #da3b85;

}
.booking_page{
    padding: 60px 0px;
}
.book-button{
    margin-top: 30px;
}
.facial_page img{
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;    
    border-bottom-right-radius: 50%;
    border-right: 10px solid #da3b85;
}
.gallery_page img{
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;    
    border-bottom-right-radius: 50%;
    border-right: 14px solid #da3b85;
}
.price-box{
    display: flex;
    justify-content: space-between;
}
.price-box h4{
    color: #da3b85;
    font-size: 24px;
}
.price-box span{
    color: #08076c;
    font-size: 21px;
}
.price_page {
    padding: 60px 0px;
}
.price-box {
    margin: 15px;
    padding: 25px 15px;
    border-bottom: 2px dotted;
    border-radius: 4px;
    box-shadow: 1px 1px 7px 2px #eee;
}
.gallery-heading {
    font-size: 24px;
    color: #08076c;
    text-align: center;
}
.gallery_page img:hover{
    transform: scale(1.1);
    transition: 800ms;
}
.facial_page p{
    font-size: 18px;
    margin-top: 60px;
}