/*************** Import Css **************/

/* @import "common.css"; */
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/*font-family: "Jost", sans-serif;*/
/*font-family: "Playfair Display", serif;*/
/********************* Header Css ******************/
.header-area{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
.top-header {
    background-color: #7C746A;
}
.top-header ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.top-header ul li{
    text-align: center;
}
.top-header ul li a{
    display: inline-block;
    padding: 7px 15px;
    width:100%;
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #E8E6E0;
    letter-spacing: 1.5px;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.top-header ul li a span{
    margin-right:7px;
}
.top-header ul li a:hover{
    background-color: #313B4E;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.main-header{
    padding:35px
}
.stiky-logo{
    display:none;
}
.start-your-journey-button a.common-button{
    border: 1px solid #fff;
    background:#E8E6E0;
    font-size:14px;
    padding: 13px 25px 13px 25px;
}
.start-your-journey-button a.common-button:hover{
    background-color: #4B403A;
	color:#fff;
}
.search-box{
    width:44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #707070;
    display:none;
}
.menu-icon {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
}
.menu-icon:after, .menu-icon:before{
    width:100%;
    height:2px;
    left: 0px;
    content: '';
    background: #fff;
    position: absolute;
}
.menu-icon:after{
    bottom:0px;
}
.menu-icon:before{
    bottom:12px;
}
.main-header-right{
    gap:40px;
}
.address-and-phone ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.address-and-phone ul li:not(:last-child):after{
    width: 2px;
    height: 20px;
    left: 0px;
    content: '';
    background: #fff;
    display: inline-block;
    margin: 0px 15px;
    position: relative;
    top: 4px;
}
.address-and-phone ul li a{
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 1px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    color:#fff;
    text-transform: uppercase;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.address-and-phone ul li a:hover{
    color:#4B403A;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.address-and-phone ul li span{
    margin-right: 10px;
}
.main-header-right {
    padding-top: 15px;
}
.header-area.fixed_header{
    position:fixed;
    top:-100%;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
}
.header-area.fixed_header.stky{
    top:0px;
    transition: all 0.5s;;
}
.header-area.fixed_header .top-header{
    display: none;
}
.header-area.fixed_header .main-header {
    padding: 15px 35px;
}
.header-area.fixed_header .main-header-right {
    padding-top: 0px;
}
.header-area.fixed_header .normal-logo{
    display: none;
}
.header-area.fixed_header .stiky-logo{
    display:block
}
.header-area.fixed_header .search-box{
    display: flex;
}
.header-area.fixed_header .address-and-phone ul li a {
    color: #1F1F1F;
}
.header-area.fixed_header .address-and-phone ul li a:hover{
    color:#E8E6E0
}
.header-area.fixed_header .address-and-phone ul li span img{
    filter: invert(1);
}
.header-area.fixed_header .address-and-phone ul li:not(:last-child):after {
    background: #1F1F1F;
}
.header-area.fixed_header .menu-icon {
    color: #1F1F1F;
}
.header-area.fixed_header .menu-icon:after, .header-area.fixed_header .menu-icon:before {
    background:#1F1F1F;
}
/************** Banner Area *************/
.banner-area{
    min-height:100vh; 
    padding-bottom: 70px;;
}
.banner-area:after{
    width:100%;
    height:100%;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 58%,rgba(0,0,0,0.62) 100%);
    position: absolute;
    top: 0;
    left:0;
    content:'';
}
.banner-area .container{
    z-index: 1;
}
.banner-content h4{
    font-family: "Jost", sans-serif;
    font-size:18px;
    line-height: 20px;
    letter-spacing: 5.6px;
    text-transform: uppercase;
    color: #C1C1C1;
    margin-bottom: 20px;
}
.banner-content h1{
    font-size: 60px;
    line-height: 64px;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-weight: 400;
}
/************* End:Banner Area *************/
/************* Logo Slider Area *************/
.logo-area{
    padding:75px 0px;
    background-color: #fff;
}
.logo-wrapper .swiper-wrapper {
    transition-timing-function: linear !important;
    position: relative;
}
.logo-wrapper .swiper-wrapper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    height: 55px;
}
/************* End:Logo Slider Area *************/
/************* Signeture Procedure *************/
.signeture-procedure{
    background-color: rgba(232,230,224, 0.3);
    padding: 95px 0px;
}
.signeture-procedure-left{
    padding-right:30px;
    padding-top: 30px;;
}
.signeture-procedure-left h4{
    font-family: "Jost", sans-serif;
    font-size:12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C1C1C1;
    margin-bottom: 6px;
}
.signeture-procedure-left h2{
    font-family: "Jost", sans-serif;
    font-size:38px;
    line-height: 41px;
    color:#313B4E;
    font-weight: 400;
    margin-bottom: 35px;
}
.each-procedure-box{
    padding:40px 35px 40px;
    min-height:383px;
    border:1px solid #CFC5BC;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: #fff;
    transition: all 0.5s;
}
.each-procedure-box:not(:last-child){
    border-right: 0px;
} 
.icon-box{
    width:65px;
    height:65px;
}
.each-procedure-box h4{
    font-family: "Jost", sans-serif;
    font-size:12px;
    line-height: 20px;
    letter-spacing: 5.6px;
    text-transform: uppercase;
    color: #C1C1C1;
    margin-bottom: 6px;
}
.each-procedure-box h3{
    font-family: "Jost", sans-serif;
    font-size:30px;
    line-height: 30px;
    color:#313B4E;
    font-weight: 400;
    margin-bottom: 8px;
    transition: all 0.5s;
}
.each-procedure-box h3 strong{
    font-weight: 400;
    font-family: 'Apparat Rg';
    font-size:31px;
    line-height: 41px;
    color: #D2C5B2;
}
.each-procedure-box h3 sup{
    font-size: 12px;
    color: #1A1A1A;
    font-weight: 400;
    display: inline-block;
    position: relative;
    top: -10px;
    transition: all 0.5s;
}
.each-procedure-box p{
    font-family: 'Scandia Rg';
    font-size:10px;
    line-height: 16px;
    color:#E8E6E0;
    /* display:none; */
    max-height: 0;
    transition: max-height 0.5s ease-out;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    margin-bottom: 40px;
    font-weight: 400;
}
.link-icon{
    position:absolute;
    bottom:35px;
    left:35px;
    display:inline-block;
}
.each-procedure-box a{
    position: absolute;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.procedure-wrapper{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
}
.each-procedure-box:hover{
    background-color: #313B4E;
    transition: all 0.5s;
}
.each-procedure-box:hover h3{
    color:#E8E6E0;
    transition: all 0.5s;
}
.each-procedure-box:hover h3 sup{
    color: #E8E6E0;
    transition: all 0.5s;
}
.each-procedure-box:hover p{
    max-height: 500px;
    transition: max-height 0.5s ease-in;
    opacity: 1;
    pointer-events: all;
    transition: all 0.5s;
}
.icon-box{
    margin-bottom: 20px;;
}
.each-procedure-box:hover .link-icon img{
    filter: brightness(0) saturate(100%) invert(97%) sepia(4%) saturate(1550%) hue-rotate(326deg) brightness(84%) contrast(95%);
    transform: rotate(-45deg);
    transition: all 0.5s;
}
/************* End:Signeture Procedure *************/
/************* Certified Expert *************/
.certified-expert{
    padding: 95px 0px;
    background-color: #262B36;
}
.certified-expert-content{
    padding-right: 50px;
}
.certified-expert-content h2{
    font-family: "Jost", sans-serif;
    font-size:38px;
    line-height: 41px;
    color:#E8E6E0;
    font-weight: 400;
    margin-bottom: 15px;
}
.certified-expert-content p{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color:#E8E6E0;
    margin-bottom: 35px;
    font-weight: 400;
}
.doctor-area{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
}
.doc-info {
    margin-top: 25px;
}
.doc-info h3{
    font-family: "Jost", sans-serif;
    font-size:23px;
    line-height: 31px;
    color:#FFFFFF;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.doc-info h6{
    font-family: "Jost", sans-serif;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C1C1C1;
    margin-bottom: 0px;
}
/************* End:Certified Expert *************/
/************* Pyramid Area *************/
.pyramid-area{
    padding: 95px 0px;
    background:#fff;
}
.pyramid-area-content h2{
    font-family: "Jost", sans-serif;
    font-size:38px;
    line-height: 41px;
    color:#313B4E;
    font-weight: 400;
    margin-bottom: 25px;
}
.pyramid-area-content p{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color:#313B4E;
    margin-bottom: 35px;
    font-weight: 400;
}
.pyramid-area-content{
    padding-right: 115px;;
}
/************* End:Pyramid Area *************/
/************* Age Area *************/
.each-iamge-area{
    display:none;
    margin-left:-90px;
}
.each-iamge-area.active{
    display: block;
}
.each-age-content h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #939393;
    margin-bottom: 6px;
    font-weight:400;
}
.each-age-content h2{
    font-family: "Jost", sans-serif;
    font-size: 38px;
    line-height: 41px;
    color: #313B4E;
    font-weight: 400;
    margin-bottom: 35px;
}
.each-age-content p{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color:#1F1F1F;
    margin-bottom: 30px;
    font-weight: 400;
}
.each-age-content ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.each-age-content ul li:not(:last-child){
    margin-bottom: 20px;
}
.each-age-content ul li a{
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 19px;
    font-weight:600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color:#313B4E;
    transition: all 0.5s;
}
.each-age-content ul li a:hover{
    color: #939393;
    transition: all 0.5s;
}
.age-content-wrapper{
    padding-left: 130px;
}
.each-age-content{
    display:none;
}
.each-age-content.active{
    display:block
}
.age-number-wrapper{
    padding: 65px 40px;
    background-color: #F0F0F0;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    position:absolute;
    right:-60px;
    top:50%;
    transform: translateY(-50%);
}
.age-number-wrapper ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.age-number-wrapper ul li:not(:last-child){
    margin-bottom: 65px;
}
.age-number-wrapper ul li a{
    font-family: "Jost", sans-serif;
    font-size: 19px;
    font-weight:600;
    color: #B7B7B7;
    letter-spacing: 3px;
    transition: all 0.5s;
}
.age-number-wrapper ul li.active a{
    font-weight: 700;
    color:#000
}
.age-number-wrapper ul li a:hover{
    color:#000;
    transition: all 0.5s;
}
/************* End:Age Area *************/
/************* Singel Review Area ************/
.singel-review-area{
    padding: 135px 0px 95px;
    background-color: #fff;
}
.singel-review-content-wrapper{
    max-width: 900px;
    position: relative;
}
.singel-review-content-wrapper p{
    font-family: 'Operetta 12 light';
    font-size: 30px;
    line-height: 48px;
    color:#1F1F1F;
    margin-bottom: 25px;
}
.singel-review-content-wrapper h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #939393;
    margin-bottom: 6px;
    font-weight:400;
}
.singel-review-content-wrapper span{
    font-family: "Playfair Display", serif;
    font-size: 116px;
    line-height: 39px;
    color:#1F1F1F;
    opacity: 0.15;
    font-style: italic;
    position: absolute;
    left: -50px;
    top: -10px;
}
/************* End:Singel Review Area ************/
/************* Transformation Area **************/
.transformation-area{
    padding: 105px 0px;
    z-index: 1;
}
.transformation-area:after{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0,0,0,0.6);
    z-index: -1;
}
.transformation-left-content h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #939393;
    margin-bottom: 13px;
    font-weight:400;
}
.transformation-left-content h2{
    font-family: "Jost", sans-serif;
    font-size: 38px;
    line-height: 41px;
    color: #E8E6E0;
    font-weight: 400;
    margin-bottom: 20px;
}
.transformation-left-content p{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color:#E8E6E0;
    margin-bottom: 35px;
    font-weight: 400;
}

.comparison {
    width: 100%;
    /* padding-bottom: 100%; */
    overflow: hidden;
    position: relative;
    height: 515px;
    display:none
}

figure {
    position: absolute;
    background-size: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.divisor {
    background-size: cover;
    position: absolute;
    width: 50%;
    box-shadow: 0 5px 10px -2px rgba(0,0,0,0.3);
    bottom: 0;
    height: 100%;
}

.divisor::before,
.divisor::after {
    content: '';
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}

.divisor::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0,0,0,.3);
}

.divisor::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,.3);
}

.handle {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

.handle::before,
.handle::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

.handle::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}

.handle::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background-color: transparent;
    width: calc(100% + 50px);
    z-index: 2;
}

input[type=range]:focus,
input[type=range]:active {
    border: none;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid white;
    box-shadow: 0 0 8px 1px rgba(0,0,0,.3);
}

input[type=range]::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 100%;
    background-color: transparent;
    position: relative;
    outline: none;
}
.transformation-image-slider-area{
    padding:18px;
    background-color: #fff;
}
.comparison.active{
    display:block
}
.transformation-left-content{
    padding-right: 115px;;
}
.tab-area{
    background-color: #F0F0F0;
    padding: 20px 50px;
    width: calc(100% - 100px);
    margin: 0px auto;
    left: 50%;
    transform: translate(-50%);
    bottom: -25px;
    position: absolute;
    z-index: 99;
}
.tab-area ul{
    margin: 0px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.tab-area ul li a{
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #B7B7B7;
    transition: all 0.5s;
}
.tab-area ul li.active a{
    color:#397A9E
}
/************* End:Transformation Area **************/
/**************** Asthetic Goals *****************/
.asthetic-goals{
    padding: 110px 0px;;
}
.asthetic-goals-heading-left h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #939393;
    margin-bottom: 13px;
    font-weight:400;
}
.asthetic-goals-heading-left h2{
    font-family: "Jost", sans-serif;
    font-size: 38px;
    line-height: 41px;
    color: #313B4E;
    font-weight: 400;
    margin-bottom: 0px;
}
.asthetic-goals-heading-right p{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color:#1F1F1F;
    margin-bottom: 0px;
    font-weight: 400;
}
.asthetic-goals-heading-wrapper{
    padding: 0px 60px;
    margin-bottom: 65px;
}
.each-asthetics-block{
    padding: 0px 18px;
    display: inline-block;
}
.asthetic-block-image:after{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    content:'';
}
.block-heading {
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:1;
}
.block-heading h2{
    font-family: "Jost", sans-serif;
    font-size: 54px;
    line-height: 72px;
    color: #fff;
    font-weight: 400;
}
.asthetic-hober-block-content{
    padding: 45px;
    position: absolute;
    left: 0px;
    bottom:0px;
    opacity: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    transition: all 0.5s;
}
.asthetic-hober-block-content h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #939393;
    margin-bottom: 7px;
    font-weight:400;
}
.asthetic-hober-block-content p{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color:#1F1F1F;
    margin-bottom: 25px;
    font-weight: 400;
}
.asthetic-hober-block-content a.common-button{
    border: 1px solid #fff;
    background: #E8E6E0;
    font-size: 14px;
    padding: 13px 25px 13px 25px;
}
.asthetic-hober-block-content a.common-button:hover{
    background-color: #4B403A;
    color: #fff;
}
.each-asthetics-block:hover .asthetic-hober-block-content{
    bottom:-40px;
    opacity: 1;
    transition: all 0.5s;
}
/**************** End:Asthetic Goals *****************/
/*************** Expert Skin Care ************/
.expert-skin-care-bg{
    min-height: 690px;
    padding:90px 100px;
    flex-direction: column;
    align-items: baseline;
    justify-content: end;
    z-index: 1;
}
.expert-skin-care-bg:after{
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.61) 100%);
    content:'';
    z-index: -1;
}
.expert-skin-care-bg h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E8E6E0;
    margin-bottom: 13px;
    font-weight: 400;
}
.expert-skin-care-bg  h2{
    font-family: "Jost", sans-serif;
    font-size: 38px;
    line-height: 41px;
    color:#E8E6E0;
    font-weight: 400;
    margin-bottom: 35px;
}
.md-skin-logo{
    position: absolute;
    bottom:85px;
    right:80px;
}
/*************** End:Expert Skin Care ************/
/*************** Your Comfort ************/
.your-comfort{
    min-height:768px;
    z-index: 1;
    margin-top: 115px;
    background-position: top center;
}
.your-comfort:before{
    position: absolute;
    top: 0;
    right: 0px;
    width: 80%;
    height: 100%;
    content:'';
    z-index: -1;
    background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
}
.your-comfort-content h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D2C5B1;
    margin-bottom: 13px;
    font-weight: 400;
}
.your-comfort-content h2{
    font-family: "Jost", sans-serif;
    font-size: 50px;
    line-height: 50px;
    color:#fff;
    font-weight: 400;
    margin-bottom: 35px;
}
.your-comfort-content p{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color:#fff;
    margin-bottom: 35px;
    font-weight: 400;
}
.your-comfort-content a.common-button{
    border: 1px solid #E8E6E0;
    background: #E8E6E0;
    font-size: 14px;
    padding: 13px 25px 13px 25px;
    color:#262B36
}
.your-comfort-content a.common-button:hover{
    background-color: #4B403A;
    color: #fff;
}
.your-comfort-content{
    padding-left: 105px;
}
/*************** End:Your Comfort ************/
/*************** Join Our Mailing List ************/
.join-our-mailing-list-wrapper{
    background-color: #F0F0F0;
    padding:50px;
    border-radius:10px;
	webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}
.join-our-mailing-heading{
    margin-bottom: 50px;
}
.join-our-mailing-heading h4{
    font-family: "Jost", sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #939393;
    margin-bottom: 13px;
    font-weight: 400;
}
.join-our-mailing-heading h2{
    font-family: "Jost", sans-serif;
    font-size: 48px;
    line-height: 39px;
    color:#313B4E;
    font-weight: 400;
    margin-bottom: 35px;
}
.join-our-mailing-list{
    margin-top: -130px;
    position: relative;
    z-index: 1;
}
/*************** End:Join Our Mailing List ************/
/************** Footer Area *************/
.footer-area{
    padding-top: 100px;
}
.footer-left{
    min-width:285px;
    max-width:285px;
}
.footer-left img{
    margin-bottom: 30px;
}
.footer-left p{
    font-family: 'Scandia Rg';
    font-size:13px;
    line-height: 19px;
    color:#1F1F1F;
    margin-bottom: 0px;
    font-weight: 400;
}
.footer-info h5{
    font-family: "Jost", sans-serif;
    font-size: 21px;
    line-height: 28px;
    color:#1F1F1F;
    font-weight: 400;
    margin-bottom: 10px;
}
.footer-info a, .footer-info p{
    color:#1F1F1F;
    transition: all 0.5s;
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    display:inline-block;
    margin-bottom: 20px;
    font-weight: 400;
}
.footer-info p{
    margin-bottom: 0px;
}
.footer-info a:hover{
    color:#D2C5B2;
    transition: all 0.5s;
}
.footer-links ul{
    margin: 0px;
    padding: 0;
    list-style: none;
}
.footer-links ul li a{
    font-family: 'Scandia Rg';
    font-size:15px;
    line-height: 22px;
    color: #313B4E;
    margin: 0px;
}
.footer-links ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-social ul{
    margin: 0px;
    padding: 0;
    list-style: none;
    display: flex;
    gap:20px;
}
.footer-social ul li a{
    font-size: 25px;
    color: #1F1F1F;
}
.footer-bottom-area{
    background-color: #1F1F1F;
    margin-top: 80px;;
}
.footer-bottom-left p{
    color:#C9C9C9;
    margin: 0px;
    white-space: nowrap;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 22px;
}
.footer-bottom-left ul{
    margin: 0px;
    padding: 0;
    list-style: none;
    display: flex;
}
.footer-bottom-left ul li{
    position: relative;
}
.footer-bottom-left ul li:after{
    width:2px;
    height: 10px;
    background-color: #C9C9C9;
    content:'';
    margin: 0px 10px;
    display: inline-block;
}
.footer-bottom-left ul li a{
    font-size: 14px;
    color: #D2C5B2;
    line-height: 22px;
    display: inline-block;
}
.footer-bottom-left ul li a{
    color:#D2C5B2;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight:500;
    text-decoration: underline;
    transition: all 0.5s;
}
.footer-bottom-left ul li a:hover{
    color:#fff;
    transition: all 0.5s;
}
.footer-bottom-left{
    gap:15px
}
.footer-bottom-area{
    padding: 10px 0px;
}
.footer-bottom-left ul li:last-child:after{
    display:none
}
.footer-bottom-right p{
    color:#C9C9C9;
    margin: 0px;
    white-space: nowrap;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 22px;
}
.footer-bottom-right p a{
    font-weight: 700;
    color:#C9C9C9;
}
.footer-social {
    margin-top: 20px;
}
/************** End:Footer Area *************/
/*************Inner Banner Area ************/
.inner-banner-area{
    background-color: #313B4E;
    min-height:504px;
}
.form-area{
    padding: 95px 0px;;
}

/******custom-search*********/
.search-area-box {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	background-color: #F7F6F4;
	background-repeat: repeat;
	background-size: cover;
}
.search-area-box.active {
	opacity: 1;
	visibility: visible;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.search-area-box:after {
	content: "";
	height: 100%;
	width: 100%;   
	background-image: url(/wp-content/uploads/2024/02/about-mark.png);
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	z-index: -1;
}
.search-close {
	cursor: pointer;
	position: absolute;
	top: 40px;
	right: 50px;
	z-index: 1;
}
.search-form-wrapper {
	position: relative;
	width: 100%;
	z-index: 1;
	max-width: 533px;
	margin: 0 auto;
}
.search-area-box form {
	display: flex;
	align-items: center;
	max-width: 736px;
	margin: 0px auto;
}
.advance-search-wrapper input {
	border: none;
	overflow: hidden;
	padding: 10px 50px 10px 10px;
	font-size: 16px;
	line-height: 19px;
	color: #000000;
	font-family: "Jost", sans-serif;
	font-weight: 400;
	width: 100%;
	background-color: transparent;
	border-radius: 0;
}
.advance-search-wrapper input::placeholder {
	color: #000000;
	opacity: 1;
}
.advance-search-wrapper input:-moz-placeholder {
	color: #000000;
	opacity: 1;
}
.advance-search-wrapper input::-moz-placeholder {
	color: #000000;
	opacity: 1;
}
.advance-search-wrapper input:focus-visible{
	outline: none;
}
.search-form-wrapper button {
	background-color:transparent;
	border-radius: 0 5px 5px 0;
	border: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	position: absolute;
	top: 0;
	right: -1px;
	height: 39px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.search-form-wrapper button img{
	filter: invert(1);
}

#advance-search-display ul li p {
	font-size: 14px !important;
}
#advance-search-display {
	max-height: calc( 40vh - 30px) !important;
	margin-top: 20px !important;
}
/*****search-result******/
.search-result-area {
	padding: 100px 0;
}
.search-result-area article {
	padding: 100px 150px 60px 0;
	border-bottom: 1px solid #A26875;
	position: relative;
}
.search-result-area article h2 {
	color: #011D3F;
}
.search-result-area article h2 a {
	color: #011D3F;
}
.search-result-area article h2 a:hover,
.search-result-area article a:hover{
	color: #A26875;
}
.search-result-area article img {
	width: 110px !important;
	max-width: 100% !important;
	height: 140px !important;
	object-fit: cover;
}
.search-result-area article figure {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.search-result-area .pagination {
	margin-top: 40px;
}
.search-result-area .pagination h2,
.search-result-area .pagination a {
	color: #011D3F;
}
.search-result-area .pagination a:hover {
	color: #FF3524;
}
.search-result-area .nav-links {
	display: flex;
	gap: 10px;
}
.search-result-area .page-header {
	background-color: #4B403A;
	padding: 30px 30px 0;
}
.search-result-area .page-header h2 {
	color: #fff;
	margin-bottom: 0;
}
.search-result-area .search-result-count {
	background-color: #4B403A;
	color: #fff;
	padding: 10px 30px 15px;
}
.loader-img img {
	max-width:80px;
}
.search-result-area .no-results .page-title {
	color: #fff;
}
.search-result-area .no-results .page-header {
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.search-result-area .no-results .search-field {
	border: 1px solid #000;
	border-radius: 5px;
	overflow: hidden;
	padding: 10px 100px 10px 10px;
	font-size: 16px;
	line-height: 19px;
	color: #000000;
	font-family: "Jost", sans-serif;
	font-weight: 400;
	width: 100%;
}
.search-result-area .no-results .search-submit {
	background-color: #003D93;
	border-radius: 0 5px 5px 0;
	border: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	position: absolute;
	top: 0;
	right: -1px;
	height: 41px;
	width: 83px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.search-result-area .no-results .search-submit:hover {
	background-color: #FF3524;
}
.search-result-area .no-results label {
	display: none;
}
.search-result-area .no-results form {
	display: flex;
	align-items: center;
	max-width: 600px;
	width: 100%;
	position: relative;
}
.search-result-area figure {
    width: 130px;
    height: 130px;
}
.search-box {
	cursor: pointer;
}
.form-wrapper {
    margin-bottom: 70px;
}
.join-form-wrapper form{
	display:flex;
	gap:24px;
}
.join-form-wrapper .gform_wrapper.gravity-theme .gfield_label {
    font-family: "Jost", sans-serif  !important;
    font-size: 12px !important;
    line-height: 20px;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    color: #939393 !important;
    margin-bottom: 9px !important;
    font-weight: 400 !important;
}
.join-form-wrapper .gform_footer{
	padding:0px !important;
	margin:0px !important;
}
.join-form-wrapper .gform_footer input {
    border: 1px solid #E8E6E0 !important;
    background: #7C746A !important;
    font-size: 14px !important;
    padding: 16px 25px 16.5px 25px !important;
    color: #fff !important;
	font-family: "Jost", sans-serif !important;
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 400 !important;
	letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-align: center !important;
	min-width:171px !important;
	margin:0px !important;
}
.join-form-wrapper .gform_body{
	width:100%;
}
.join-form-wrapper .gform_wrapper.gravity-theme .gfield input.large{
	width: 100%;
    border-radius: 5px;
    border: 0px;
    height: auto !important;
    padding: 14px 15px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.12);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.12);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.12);
	font-size: 14px !important;
	font-family: "Jost", sans-serif !important;
	color: #011D3F !important;
}
.join-form-wrapper .gform_footer {
    padding: 0px !important;
    margin: 0px !important;
	margin-top:20px !important;
	justify-content:center !important
}
.form-wrapper{
	max-width:860px;
	margin:0px auto;
}
.form-wrapper .gform_wrapper.gravity-theme .gfield input.large, 
.form-wrapper .gform_wrapper.gravity-theme .gfield select.large,
.form-wrapper .gform_wrapper.gravity-theme .gfield textarea{
	border:0px !important;
	border-radius:0px !important;
	border-bottom:1px solid #707070 !important;
	font-size:15px !important;
	font-family: "Jost", sans-serif  !important;
	line-height:20px !important;
	padding: 15px;
	color:#000;
	resize:none;
	text-transform: uppercase !important;
	letter-spacing: 2px !important;
}
.form-wrapper .gform_footer input {
    border: 1px solid #313B4E !important;
    background: #313B4E !important;
    font-size: 14px !important;
    padding: 16px 25px 16.5px 25px !important;
    color: #fff !important;
	font-family: "Jost", sans-serif !important;
    font-size: 14px !important;
    line-height: 19px !important;
    font-weight: 400 !important;
	letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-align: center !important;
	min-width:171px !important;
	margin:0px !important;
	width:100%
}
:focus{
	outline:none
}
::-ms-input-placeholder { /* Edge 12-18 */
  color:#000
}

::placeholder {
  color:#000
}
.top-header ul li:first-child{
	background:#313B4E;
}