@font-face {
    font-family: 'Rasputin';
    src: url('../fonts/RasputinRegular.woff2') format('woff2'),
        url('../fonts/RasputinRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a,button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Inter", serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.container{
    max-width: 1210px;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 76px 0 0;
    overflow-x: hidden;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    overflow: hidden;
}
header::before{
    content: '';
    position: absolute;
    top: 49.2%;
    right: -38%;
    width: 100%;
    height: 79px;
    background: #FFFFFF;
    border-radius: 50px;
    z-index: -1;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
header.nav-new {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease-in-out;
    -webkit-animation: slideDown 0.4s ease-in-out;
    padding: 7px 0;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
@-webkit-keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
header.nav-new::before{
    top: 0;
    right: 0;
    border-radius: 0;
    height: 100%;
}
header.nav-new .navbar-brand img{
    height: 90px;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar-brand img {
    max-width: 100%;
    height: 140px;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.nav-row{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.navbar-light .navbar-nav {
    margin: 0 0 0 auto;
}
.navbar-light .navbar-nav li {
    margin-right: 43px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 67px;
}
.navbar-light .navbar-nav .nav-link {
    padding: 0;
    color: #940B92;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: #feccf0;
}
.navbar .navbar-nav .active a,
.navbar .navbar-nav .active a:focus,
.navbar .navbar-nav .active a:hover {
    color: #feccf0;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #8B1054;
}

ul.enter-nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
ul.enter-nav li a.btn-nav{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #8B1054;
    padding: 8px 20px;
    background: #feccf0;
    border-radius: 25px;
    display: inline-block;
}
ul.enter-nav li a.btn-nav:hover{
    background: #000;
    color: #fff;
}

/* **** End Header **** */


/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 30px;width: 30px;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #000;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #000;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */

/* **** Banner **** */
.banner-wrp{
    position: relative;
    width: 100%;
    height: 700px;
    background: url(../images/banner.png) 0 0 no-repeat;
    background-size: cover;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-wrp::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(102.34deg, rgba(255, 255, 255, 0.6) 15.73%, rgba(255, 255, 255, 0) 63.8%), linear-gradient(0deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15));
    z-index: -1;
}
.banner-wrp-data{
    width: 100%;
    position: relative;
    padding-top: 260px;
}
.banner-wrp-data h1{
    font-family: 'Rasputin';
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 43px;
    text-align: right;
    color: #FFFFFF;
    text-shadow: 4px -1px 3.3px rgba(0, 0, 0, 0.25);
}

.banner-wrp-data ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 179px 0 0;
}
.btn-main{
    display: flex;
    align-items: center;
    font-family: 'Rasputin';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 27px;
    color: #8B1054;
    padding: 12px 60px 11px 20px;
    background: #FFF3FF;
    border-radius: 25px;
    height: 50px;
}
.btn-main figure{
    margin: 0 15px 0 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.btn-main:hover{
    color: #fff;
    background: #feccf0;
}
.btn-main:hover figure{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
/* **** End Banner **** */

/* **** About **** */
.about-wrp{
    position: relative;
    width: 100%;
    padding: 62px 0 88px;
    background: #feccf0;
}
.about-wrp-data h2{
    font-family: 'Rasputin';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 41px;
    color:#8B1054;
    margin: 22px 0 44px;
}
.about-wrp-data p{
    max-width: 600px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #8B1054;
    margin: 0 0 20px;
}
.about-wrp-data p:last-child{
    margin: 0;
}

.about-wrp-img img{
    border-radius: 25px;
}
.about-wrp-img figure{
    margin: 0;
}
/* **** End About **** */

/* **** Services **** */
.services-wrp{
    position: relative;
    width: 100%;
    padding: 74px 0 55px;
    background: #FFF3FF;
}
.services-wrp-data h2{
    font-family: 'Rasputin';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 41px;
    color: #8B1054;
    margin: 0 0 60px;
}
.services-wrp-data h3{
    font-family: 'Rasputin';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    color: #8B1054;
    margin: 0 0 10px;
}
.services-wrp-data p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #8B1054;
    margin: 0 0 20px;
    max-width: 600px;
}
.services-wrp-data p:last-child{
    margin: 0;
}
.services-wrp-data h6{
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #8B1054;
    margin: 0;
}

.services-wrp-right-img{
    margin: 0 0 50px;
}
.services-wrp-right-img img{
    border-radius: 25px;
}

.services-wrp-right-box{
    background: #feccf0;
    border-radius: 24px;
    padding: 42px 38px 53px 37px;
}
.services-wrp-right-box h2{
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #8B1054;
    margin: 0 0 20px;
}
.services-wrp-right-box ul{
    padding: 0 0 0 30px;
}
.services-wrp-right-box ul li{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #8B1054;
    list-style: disc;
}
.services-wrp-divider {
    padding-top: 105px;
    padding-bottom: 105px;
    border-top: 1px solid #740645;
    border-bottom: 1px solid #740645;
    margin: 50px 0 101px;
}
/* **** End Services **** */

/* **** Treatment **** */
.treatment-wrp{
    position: relative;
    width: 100%;
    padding: 95px 0;
    background: url(../images/tretment-bg.png) 0 0 no-repeat;
    background-size: cover;
    z-index: 1;
}
.treatment-wrp::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(218, 12, 129, 0) 0%, rgba(218, 12, 129, 0.75) 50%);
    z-index: -1;
}
.treatment-wrp-data h2{
    font-family: 'Rasputin';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 41px;
    color: #FFFFFF;
    margin: 0 0 36px;
}
.treatment-wrp-data p{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
    color: #FFFFFF;
    margin: 0 0 180px;
}
.treatment-wrp-data h3{
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #FFFFFF;
    margin: 0 0 15px;
}
.treatment-wrp-data h3 a{
    color: #fff;
    border-bottom: 1px solid #fff;
}
.treatment-wrp-data h3 a:hover{
    opacity: 0.6;
}
.treatment-wrp-data h3:last-child{
    margin: 0;
}
/* **** End Treatment **** */

/* **** Footer **** */
footer{
    position: relative;
    width: 100%;
    padding: 32px 0 0;
    background: #FFF3FF;
}
.footer-left{
    display: flex;
    align-items: center;
}
.footer-logo figure{
    margin: 0 13px 0 0;
}
.footer-contact p,.footer-contact a{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #940B92;
}
.footer-contact a:hover{
    color: #000;
}
.footer-menu ul li a{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #940B92;
}
.footer-menu ul li a:hover{
    color: #000;
}
.footer-menu ul li{
    margin: 0 0 8px;
}
.footer-menu ul li:last-child{
    margin: 0;
}
.copyright-wrp{
    position: relative;
    width: 100%;
    border-top: 1px solid #940B92;
    margin: 44px 0 0;
    padding: 28px 0;
}
.copyright-wrp ul{
    display: flex;
    align-items: center;
}
.copyright-wrp ul li{
    margin: 0 27px 0 0;
}
.copyright-wrp ul li a{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #940B92;
}
.copyright-wrp ul li a:hover{
    color: #000;
}

/* **** End Footer **** */

img{
    max-width:100%;
}

section.banner-wrp.smaller {
    height: 300px;
}

.about-wrp-data.fullWidth p {
    max-width: 100%;
}