
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Medium.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Thin.woff2') format('woff2'),
        url('../fonts/Raleway-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-Bold.woff2') format('woff2'),
        url('../fonts/RedHatDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-SemiBold.woff2') format('woff2'),
        url('../fonts/RedHatDisplay-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-Light.woff2') format('woff2'),
        url('../fonts/RedHatDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-Italic.woff2') format('woff2'),
        url('../fonts/RedHatDisplay-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-Regular.woff2') format('woff2'),
        url('../fonts/RedHatDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../fonts/RedHatDisplay-Medium.woff2') format('woff2'),
        url('../fonts/RedHatDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
    




html {
    height: 100%;
}

body {  
    min-height: 100%;
    position: relative; 
    font-family: 'Red Hat Display';
    font-size: 16px;
    font-weight: 400;
}

a {
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
}

a:hover {
    text-decoration: none;
}

.padding-0 {
    padding: 0;
}

.float-none {
    float: none;
}

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

.gray-bg{
    background: #cbcbca;
}

.gray-bg:before{
    display: none !important;
}

h1{
    font-size: 54px;
    line-height: 65px;
}

h2{
    font-size: 44px;
    line-height: 44px;
    font-weight: 500;
    font-family: 'Playfair Display';
    color: #5D7D98;
}

h3{
    font-weight: 500;
    font-family: 'Playfair Display';
}

p{
    font-family: 'Red Hat Display';
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
}

.container-fluid{
    padding: 0 50px;
    max-width: 1920px;
    margin: 0 auto;
}

.container{
    max-width: 1250px;
    padding: 0 20px;
    margin: 0 auto;
}

.login-btn{
    background: #5D7D98;
    height: 32px;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    margin-left: 20px;
    cursor: pointer;
}

.login-btn:hover{
    background: #000;
    color: #fff;
}

header.sticky-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 6px 2px 20px rgba(0,0,0,0.3);
}

header.sticky-header a.logo {
    width: 150px;
}

.sticky-header .header-main{
    align-items: center;
}

.sticky-header .navigation{
    padding-top: 0;
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 25px 0;
    transition: 0.3s all ease-in-out;
}

.header-main{
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.header-main .logo{
    width: 250px;
}

.header-main .logo img{
    display: block;
    width: 100%
}

.navigation{
    display: flex;
    align-items: center;
    padding-top: 13px;
}

.navigation ul{
    display: flex;
    padding: 0;
    margin: 0;
}

.navigation ul li{
    list-style: none;
    padding: 0 20px
}

.navigation ul li a{
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Red Hat Display';
    font-weight: 400;
    letter-spacing: 0.96px;
    position: relative;
}

.navigation ul li.active a{
    color: #5D7D98;
    text-shadow: 1px 0 0 currentColor;
}


.navigation ul li a:hover{
    color: #5D7D98;
    
}

.navigation ul li.current-menu-item a{
    font-weight: 700;
    text-shadow: none;
    color: #5D7D98;
}

.banner-section{
    height:850px;
    width: 100%;
    background-size: cover !important; 
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.banner-section:before{
    position: absolute;
    top: -3px;
    background: url(../images/header-before.png) no-repeat left top;
    width: 100%;
    height: 439px;
    content: "";
    left: 0;
    background-size: cover;
}

.banner-bg{
    width: 100%;
    margin-bottom: 130px;
    position: relative;
}

/* .banner-section:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254,254,254,0.5);
    content: "";
} */

.banner-left{
    background: rgba(254,254,254,0.78);
    height: 296px;
    width: 70%;
    float: right;
    padding: 30px;
    font-size: 100px;
    line-height: 108px;
    color: #5D7C98;
    font-family: 'Playfair Display';
    font-weight: 500;
    margin-bottom: 100px;
    position: relative;

}

.banner-left span {
    color: #fff;
    position: relative;
    display: block;
    padding-top: 25px;
    z-index: 2;
}

.banner-right{
    background: rgba(93,124,152,0.7);
    height: 296px;
    margin-top: -114px;
    text-align: right;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: calc(-100% - -632px);
    right: auto;
}

.two_coloum{
    padding: 100px 0;
    background-size: cover !important;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.two_coloum:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254,254,254,0.9);
    content: "";
}

/*.two_coloum .container{
    max-width: calc(100% + (1300px - 100%) / 2);
    margin-right: 0;
    margin-left: auto;
    padding-right: 0;
}
*/
.two_main{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.two_left{
    width: 50%;
    padding-right: 104px;
    max-width: 700px;
    padding-left: 0;
}

.two_left h2{
    margin-bottom: 20px;
}

.two_left p{
    font-size: 20px;
    line-height: 26px;
    color: #000;
}

.two_right{
    width: 50%;
    padding-right: 0;
}

.two_right img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}

.two_right_coloum .two_left{
    order: 1;
    padding-left: 104px;
    padding-right: 0;
}

.btn-main{
    margin-top: 80px;
}

.btn-main .full-btn{
    background: #5D7D98;
    height: 79px;
    padding-right: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    font-size: 27px;
    color: #fff;
    padding-left: 0;
}

.full-btn svg {
    transition: 0.5s;
}

.full-btn:hover svg {
    transform: translateX(10px);
}

.btn-main .full-btn span{
    position: relative;
}

.btn-main .full-btn svg{
    width: 32px;
    margin-left: 20px;
    position: relative;
}

.btn-main .full-btn:before{
    background: #5D7D98;
    height: 79px;
    left: -1000px;
    width: 1100px;
    position: absolute;
    content: "";

}

.two_right_coloum .btn-main .full-btn:before{
    right: -656px;
    left: auto;
}

.plan-section{
    min-height:798px;
    width: 100%;
    background-size: cover !important;
    background-position: left bottom !important;
    padding: 80px 0;
}

.plan-left{
    background: rgba(34,46,58,0.8);
    width: 70%;
    float: right;
    min-height: 292px;
    display: flex;
    align-items: center;
    padding-left: 54px;
}

.plan-right {
   
    background: rgba(93,124,152,0.7);
    min-height: 170px;
    width: 50%;
    left: 0;
    display: inline-block;
    margin-top: -106px;
    
}

.plan-left h2{
    font-size: 54px;
    line-height: 64px;
    color: #fff;
    margin-bottom: 54px;
}

.content-link {
    display: flex;
    align-items: center;
}

.plan-left span{
    display: block;
}

.content-link{
    font-size: 27px;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 500;
    max-width: max-content;

}

.content-link:hover{
    color: #fff;
}

.content-link  svg{
    width: 32px;
    display: block;
    margin-left: 20px;
    transition: 0.5s;
}

.content-link:hover  svg{
    transform: translateX(10px);
}

footer{
    padding: 40px 0 20px;
}

footer .footer-top{
    display: flex;
    align-items: center;
    margin-bottom: 43px;
}

footer .footer-top img{
    max-width: 185px;
    display: block;
}


footer .footer-top .phone a{
    color: #000000;
}

footer .footer-top .phone a:hover{
     color: #5D7D98;
}


footer .footer-top .address-box{
    margin-left: 92px;
    max-width: 205px;
}

footer .footer-top .address-box address{
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.copy-main{
    display: flex;
    justify-content: space-between;
}

.footer-bottom p{
    padding-right: 100px;
}

.footer-bottom p{
    font-size: 14px;
    line-height: 17px;
}


.copy-main p{
    padding-right: 0;
}


.copy-main ul{
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px;
    
}

.copy-main ul li{
    list-style: none;
    position: relative;
    padding: 0 5px;
}

.copy-main ul li:before{
    position: absolute;
    right: -5px;
    width:1px;
    height: 15px;
    background: #11274C;
    content: "";
    top: 5px;
}

.copy-main ul li:last-child:before{
    display: none;
}

.copy-main ul li a{
    font-size: 14px;
    color: #11274C;
}

.copy-main ul li a:hover{
    color: #5D7D98;
}

.inner-page header{
    background: #ffff;
    padding: 15px 0;
    box-shadow: 7px -1px 20px 1px #ccc;
}


.inner-page header a.logo {
    width: 150px;
}

.inner-page header .header-main{
    align-items: center;
}

.header-spacer{
    height: 129px;
}

.inner-page .header-spacer{
    height: 111px;
}


.inner-page header .navigation{
    padding-top: 0;
}

.inner-page .inner-banner{
    height: 421px;
}

.inner-page .inner-banner:before{
    display: none;
}

.inner-banner .banner-right{
    height: 158px;
    left: calc(-24%) !important; 
    margin-top: -71px;
}

 .page-template-services-template .inner-banner .banner-right{
    left: calc(-20%) !important; 
}

.page-template-team-template .inner-banner .banner-right{
    left: calc(-18%) !important; 

}

.inner-banner .banner-left{
    height: 183px;
    font-size: 68px;
    line-height: 68px;
    padding: 10px 30px;
    width: 45%;
    background: rgba(254,254,254,0.6);
    position: static;
}


.inner-banner .banner-left span{
    padding-top: 17px;
} 

.inner-banner .banner-bg{
    margin-bottom: 45px;
}


.intro-section{
    padding: 115px 0;
}

.intro-main{
    max-width: 950px;
    margin: 0 auto;
}

.intro-section p{
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 0;
}

.brand-section{
    background: #dceaf6;
   
    position: relative;
}

.brand-main{
    padding: 100px 0;
    max-width: 969px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.brand-section:before{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/brand-vector.png) no-repeat center;
    content: "";
    background-size: contain;
    
}

.brand-section h2{
    font-size: 66px;
    font-weight: 500;
    color: #5D7D98;
    margin-bottom: 30px;
}

.brand-section p{
    font-size: 24px;
    line-height: 36px;
}

.brand-section h3{
    font-size: 44px;
    line-height: 46px;
    font-weight: 500;
    margin: 50px 0 20px;
    color: #5D7D98;
}

.value-grid{
    display: flex;
    margin: 72px -33px 0;
    flex-wrap: wrap;
}

.value-box{
    width: 33.33%;
    padding: 0 33px;
    border-right: 1px solid #5D7D98;
}

.value-box:last-child{
    border-right: 0;
}

.value-desc{
    max-width: 246px;
}

.value-desc h4{
    font-size: 30px;
    line-height: 40px;
    color: #000;
    font-weight: 500;
    font-family: 'Playfair Display';
    margin-bottom: 8px;
}

.value-desc p{
    font-size: 20px;
    line-height: 26px;
}

.benefit-main{
    background: #5D7D98;
    padding: 60px 0;
}

.benefit-main h2{
    color: #fff;
    font-size: 66px;
    line-height: 72px;
    max-width: 423px;
}

.benefits-offer{
    padding: 70px 0;
}

.offer-main{
    display: flex;
    flex-wrap: wrap;
}

.offer-left{
    width: calc(100% - 375px);
    padding-right: 100px;
}

.offer-right {
    width: 375px;
    height: 564px;
    margin-top: -276px;
    box-shadow: 5px 5px 6px rgba(0,0,0,0.35);
}

.offer-right img{
    max-width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.banefit-section .container{
    max-width: 1040px;
}

.offer-left p{
    font-size: 20px;
    line-height: 26px;
}

.offer-left ul{
    margin: 0;
    padding: 2px 0 0 20px;
}

.offer-left ul li{
    font-size: 20px;
    line-height: 26px;
    margin-bottom:14px;
}

.services-intro .quote-massage{
    margin-top: 100px;
}

.quote-bottom{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-right: 88px;
}

.page-template-services-template .quote-bottom{
    padding-right: 185px;
}

.quote-massage {
    margin-top: 55px;
}

.quote-massage p:before{
    background: url(../images/quote-icon1.svg) no-repeat left top;
    position: absolute;
    top: 0;
    width: 35px;
    height: 27px;
    content: "";
    left: 0;
}

.quote-massage p:after{
    background: url(../images/quote-icon2.svg) no-repeat left top;
    position: absolute;
    bottom: 0;
    width: 35px;
    height: 27px;
    content: "";
    right: 0;
}

.quote-massage p{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    font-family: 'Playfair Display';
    position: relative;
    padding: 0 58px;
}


.name{
    font-size: 22px;
    font-weight: bold;
    color: #5D7D98;
}
.position{
    font-size: 20px;
    line-height: 26px;
    font-style: italic;
    color: #000;
}

.quote-bottom span{
    display: block;
}

.services-benefits .benefit-main{
    background: #ced8e0;
}

.services-benefits .benefit-main h2{
    max-width: 100%;
    font-size: 64px;
}

.services-benefits .offer-right{
    margin-top: -204px;
}

.services-benefits h2{
    color: #5D7D98;
}

.services-benefits h6{
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    color: #5D7D98;
}

.focus-section{
    background-size: cover !important;
    width: 100%;
    min-height: 793px;
    align-items: center;
    display: flex;
    position: relative;
}

.focus-section:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    content: "";
}

.focus-section .foucs-main{
    max-width: 809px;
    margin: 0 auto;
    position: relative;
}

.focus-section .foucs-main h2:before{
    background: rgba(93,124,152,0.7);
    left: -1000px;
    width: 1000px;
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
}

.focus-section .foucs-main h2{
    font-size: 66px;
    line-height: 70px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
    background: rgba(93,124,152,0.7);
    padding: 50px 10px;
    position: relative;
}

.fousct-list{
    margin-top: 40px;
    display: flex;
    position: relative;
}

.fousct-list ul{
    width: 100%;
    column-count: 2;
}

.fousct-list ul li{
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 12px;
}

.resources-section{
    padding: 100px 0;
}

.resources-section h2{
    font-size: 66px;
    font-weight: 500;
    margin-bottom: 28px;
}

.resources-section .resources-main{
    max-width: 1042px;
    margin: 0 auto;
}

.resources-list{
    margin-top: 50px;
    display: flex;
}

.resources-list img{
    width: 248px;
    display: block;
    object-fit: contain;
}

.resources-list p{
    padding-left: 40px;
}

.resources-bottom{
    margin-top: 136px;
}

.resources-bottom p{
    font-size: 14px;
    line-height: 18px;
}

.team-box figure{
    width: 299px;
    height: auto;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.team-box figure img{
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1.0);
    transition: 0.3s;
}

.team-box:hover figure img{
    transform: scale(1.1);
}

.team-box:hover .read-more{
    color: #5D7D98;
}

.team-section{
    margin-bottom: 60px;
}

.team-section .container {
    max-width: 833px;
}

.team-section .col-md-6{
    margin-bottom: 74px;
}
.team-box span{
    font-size: 24px;
    line-height: 36px;
    color: #5D7D98;
    font-weight: 500;
}

.team-box p{
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    color: #000;
}

.name .read-more{
    color: #000;
}

.team_single {
    padding: 113px 0px 100px;
    border-bottom: 1px solid #C9D9EC;
}

.team_single .container{
    max-width: 1140px;
    margin: 0 auto;
}

.team_single_wrap {
    display: flex;
    flex-wrap: wrap;
}

.team_single_wrap .team_single_img {
    width: 299px;
    height: 299px;
    object-fit: cover;
    
}

.team_single_wrap .team_single_text {
    width: calc(100% - 299px);
    padding-left: 75px;
}

.team_single_wrap .team_single_text .title {
    margin-bottom: 30px;
}

.team_single_wrap .team_single_img .social_icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.team_single_wrap .team_single_img .social_icon ul li {
    margin-right: 10px;
    list-style: none;
}

.team_single_wrap .team_single_img .social_icon ul {
    display: flex;
    padding: 0px;
    width: auto;
    margin-bottom: 0;
}

.team_single_wrap .team_single_img .social_icon ul li:last-child{
    margin-right: 0
}

.team_single_wrap .team_single_img  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team_single_wrap .team_single_img .social_icon ul li a {
    display: block;
}
.team_single_wrap .team_single_img .social_icon ul li a img {
    height: 32px;
    width: 32px;
}



.team_single_info .title h2{
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #5D7D98;
}

.team_single_info .title span{
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
    color: #000;
}

.team_single_info p{
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
}

.resources-page{
    padding: 90px 0;
    background: #edf5fa;
}

.resources-page img{
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    transform: scale(1.0);
    transition: 0.3s;
}

.resources-box{
    border: 1.1824px solid #5D7D98;
    display: inline-block;
    height: 100%;
    position: relative;
    padding-bottom: 30px;
    background: #fff;
}

.resources-box:hover figure{
    overflow: hidden;
}

.resources-box:hover figure img{
    transform: scale(1.1);
}

.resources-box:hover .resources-desc .read-more{
    color: #000;
}

.back_team {
    color: #000;
    font-size: 18px;
    font-family: 'Red Hat Display';
    font-weight: 400;
}

.back_team:hover{
    color: #5D7D98;
}



.resources-box .resources-desc{
    padding: 18px 60px 30px 30px;
}

.resources-box .resources-desc .date{
    font-size: 17px;
    line-height: 34px;
    color: #000;
    display: block;
}

.update_filter ul{
    margin: 0 0 55px;
    padding: 0;
    display: flex;
}

.update_filter ul li{
    list-style: none;
    padding: 0 18px;
    
    position: relative;
}

.update_filter ul li.active a{
    color: #5D7D98;
}
.update_filter ul li:before{
    background: #5D7D98;
    width: 1px;
    height: 25px;
    position: absolute;
    right: 0;
    content: "";
    top: 7px;
}

.update_filter ul li:last-child:before{
   display: none;
}

.update_filter ul li:first-child{
    padding-left: 0;
}

.update_filter ul li a{
    font-size: 30px;
    line-height: 36px;
    color: #CBCBCA;
    font-weight: 600;
}

.resources-page-list{
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.resources-page-list .item{
    padding: 0 15px;
    width: 33.33%;
}

.resources-box figure{
    margin-bottom: 0;
    overflow: hidden;
    aspect-ratio: 2 / 1;
}

.resources-box .resources-desc h5{
    font-size: 22px;
    line-height: 34px;
    font-weight: bold;
    color: #5D7D98;
    margin-bottom: 0;
    max-width: 200px;
}

.resources-box .resources-desc p{
    color: #000;
}

.resources-box .resources-desc .read-more {
    position: absolute;
    bottom: 30px;
    color: #5D7D98;
    font-weight: bold;
    font-size: 16px;
}

.contact-page{
    padding: 100px 0;
    background: #edf5fa;
}

.contact-page h1{
    color:#5D7D98;
    margin-bottom: 48px;
    font-family: 'Playfair Display';
}

.contat-desc{
    background: #fff;
    padding: 20px 48px;
}

.contat-desc a{
    display: block;
    color: #000;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 5px;
}

.contat-desc h5{
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #5D7D98;
    margin-bottom: 5px;
}

.contat-desc address{
    font-size: 20px;
    line-height: 28px;
    color: #000;
    margin-bottom: 5px;
}

.contat-desc iframe{
    margin-top: 17px;
    height: 295px;
}

.two_right_coloum .two_right{
    padding-right: 0;
    padding-left:0;
}


.contat-form{
  
    width: 100%;
    border: 0;
    position: relative;
}

.contat-form input{
    height: 57px;
    border: 0;
    padding: 0 20px !important;
    font-size: 20px !important;
    font-family: 'Red Hat Display';
    color: #000;
}

.contat-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
.contat-form input::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
.contat-form input:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
.contat-form input:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

.contat-form .gform_wrapper.gravity-theme .gform_fields{
    grid-row-gap: 11px;
}

.contat-form input:focus{
    outline: none !important;
    box-shadow: none !important;
    box-shadow: none;
}

.gform_wrapper.gravity-theme .gform_validation_errors{
    display: none;
}

.gform_confirmation_message {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message{
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

.contat-form .gform_footer .gform_button{
    background: #5D7D98;
    padding: 0 63px !important;
    height: 57px;
    max-width: max-content;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 27px !important;
    font-family: 'Red Hat Display';
    margin-top: 36px;
    transition: 0.3s;
}

.contat-form .gform_footer .gform_button:hover{
    background: #000;
}

.single-team .navigation ul li#menu-item-35 a, .single-post .navigation ul li#menu-item-33   a{
    color: #5D7D98;
    text-shadow: 1px 0 0 currentColor;
}

.page-template-team-template .inner-banner .banner-left{
    width: 50%;
}

.two_right_coloum .two_left .full-btn{
    padding-left: 20px;
    margin-left: -20px;
}

.team-box {
    display: inline-block;
}

.single-banner{
    height: 250px;
    background-size: cover !important;
    width: 100%;
}

.single-main{
    padding: 20px 0 100px;
}

.single-desc {
    max-width: 863px;
    margin: 60px auto 0;
}

.single-main .back-btn{
    font-size: 18px;
    font-weight: 600;
    color: #5D7D98;
}

.single-main .back-btn span{
    margin-right: 5px;
    color: #5D7D98;
}

.single-desc .date{
    font-size: 17px;
    line-height: 34px;
    font-weight: 400;
}

.single-desc h3{
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    color: #5D7D98;
    font-family: 'Red Hat Display';
    margin-bottom: 27px;
}

.single-desc{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}


.single-desc ul, .single-desc ol{
    padding-left: 20px;
}

.page-template-services-template .quote-massage p{
    padding: 0 168px 0 58px;
}

.modal[id="loginmodal"] .modal-dialog {
    transform: none;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

.modal[id="loginmodal"] .modal-body {
    display: flex !important;
    display: -webkit-box;
    align-items: stretch;
    -webkit-align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 70px 15px 90px;
    justify-content: center;
}

.modal[id="loginmodal"] .modal-body .modal-main{
    width: 50%;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid #7d8383;
}

.modal[id="loginmodal"] .modal-header {
    border: 0;
}

.modal[id="loginmodal"] .modal-body .modal-main img {
    max-width: 280px;
    max-height: 140px;
    margin: 0 auto;
    width: 100%;
    object-fit: contain;
}

.modal[id="loginmodal"] .modal-dialog .button {
    font-size: 30px;
    line-height: 35px;
    margin: auto 0 0 0;
    text-align: center;
    text-transform: inherit;
    padding-top: 30px;
    font-weight: 300;
    color: #7d8383;
}

.modal[id="loginmodal"] .modal-body .modal-main:nth-last-child(1) {
    border-right: 0 !important;
}


@media(min-width: 1601px){
    .two_right img{
        width: 100%;
    }
}

/* Large desktops and laptops */
@media(max-width:1600px){
    
    .container{
        max-width:1200px;
    }

    .page-template-team-template .inner-banner .banner-right{
        width: 1340px;
        left: calc(0%) !important;
    }

    .page-template-services-template .inner-banner .banner-right{
        width: 1305px;
        left: calc(0%) !important;
    }

    .two_left{
        padding:0 50px 0 0;
    }

    .inner-banner .banner-right {
        left: calc(0%) !important;
    }

    .banner-right{
        left: -51%;
        width: 1200px;
    }

     .plan-right{
        width: 57%;
    }
    .two_right_coloum .two_left{
        padding-left: 60px;
    }

    .two_right_coloum .two_left .full-btn{
        margin-left: 0;
    }
}

@media(max-width:1366px){
    .inner-banner .banner-right {
        left: calc(-8%) !important;
    }



    .page-template-services-template .inner-banner .banner-right {
        width: 1230px;
    }

    .page-template-team-template .inner-banner .banner-right{
        width: 1170px;
    }

    .two_right img {
        display: block;
        width: 100%;
    }

}


@media(max-width:1199px){
    .banner-right {
        width: 845px;
        left: -47%;
    }

    .resources-page-list .item{
        width: 50%;
    }

    .contat-desc address, .contat-desc a{
        font-size: 18px;
        line-height: 26px;
    }

    .plan-section{
        min-height: auto;
    }


    .footer-bottom p{
        padding-right: 0;
    }



    .inner-banner .banner-right{
        width: 898px;
        left: calc(0%) !important;
    }

    .value-grid{
        margin: 72px -15px 0;
    }

    .value-box{
        padding: 0 15px;
    }

    .container{max-width:960px;}

    .banner-left{
     font-size: 74px;
    }

    .navigation ul li{
        padding: 0 7px;
    }

    .navigation ul li a{
        font-size: 13px;
    }

    .plan-right{
        width: 77%;
    }

    .inner-banner .banner-right {
        left: calc(-4%) !important;
    }

    .inner-banner .banner-left{
        width: 60%;
    }

    .page-template-services-template .inner-banner .banner-right {
        width: 970px;
    }

    .page-template-team-template .inner-banner .banner-right{
        width: 991px;
    }

    .page-template-team-template .inner-banner .banner-left{
        width: 55%;
    }

     .team-section .col-md-6{
        max-width: 50%;
        flex: 0 0 50%;
    }

    
}

@media(max-width:991px){
    .container{
        max-width:760px;
    }

    .two_right_coloum .btn-main .full-btn:before{
        right: -696px;
    }

   
    .page-template-team-template .inner-banner .banner-right{
        width: 800px;
    }

    .page-template-team-template .inner-banner .banner-left {
        width: 56%;
    }

    .team_single_wrap .team_single_text{
        padding-left: 20px;
    }

    .contact-page .col-md-6{
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .banner-right {
        width: 755px;
        left: -43%;
    }

    .contat-desc{
        padding: 25px;
    }

    .contact-page{
        padding: 70px 0;
    }

    .page-template-services-template .inner-banner .banner-right {
         width: 787px;
    }



    .sticky-header .navigation {
        padding-top: 30px;
    }

    .open_menu header {
        background: #fff;
       
    }

    .container-fluid{
        padding: 0 20px;
    }

    .header-main .logo, header.sticky-header a.logo{
        width: 130px;
    }

    header{
        padding: 15px 0;
    }

    .header-main{
        align-items: center;
    }

    .inner-banner .banner-right {
        left: calc(-5%) !important;
    }

    

    .two_coloum .container{
        max-width: calc(100% + (760px - 100%) / 2);
        margin-left: auto;
        margin-right: auto;
        padding-right: 20px;

    }

    

    .two_right_coloum .btn-main{
        display: flex;
        justify-content: flex-end;
        width: auto;
    }

    .btn-main .full-btn{
        font-size: 18px;
    }

    .btn-main {
        width: 66%;
    }

    .btn-main .full-btn:before{
        left: -879px;
    }

    .two_right_coloum .btn-main .full-btn:before{
        width: 150px;
        right: -117px;
        left: auto;
    }

    .inner-banner .banner-left{
        margin-bottom: 60px;
    }

    .btn-main .full-btn{
        padding-right: 25px;
    }

    header button.navbar-toggler{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;background:transparent;outline:0!important;border:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;position:absolute;top:24px;right:0; padding: 0;}
    header button.navbar-toggler span.navbar-toggler-icon{background:#193f6c;height:2px;margin:0 0 7px;width:32px;position:relative;-webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;transition:all 0.2s ease;-webkit-transform:translate3d(0,0px,0) rotate(0deg);transform:translate3d(0,0px,0) rotate(0deg);}
    .navigation{position:fixed;left:0;right:0;top:99px;background:#fff;z-index:99;padding:30px 20px 30px;-webkit-box-orient:vertical;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);-webkit-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out; flex-direction: column; align-items: flex-start;}
    
    .open_menu  .navigation{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%);}
    body.open_menu span.navbar-toggler-icon:nth-child(1){-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);top:5px;}
    body.open_menu span.navbar-toggler-icon:nth-child(2){-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);top:-4px;}
    body.open_menu span.navbar-toggler-icon:nth-child(3){opacity:0;}
    .navigation ul li{
        padding: 0;
        margin-bottom: 10px;
    }
    .navigation ul{
        flex-direction: column;
        width: 100%;
    }

    .navigation ul li a {
        font-size: 16px;
    }

    .inner-page header .navigation {
        padding-top: 30px;
    }

    .login-btn{
        margin-left: 0;
        margin-top: 15px;
    }

    .two_coloum{
        padding: 50px 0;
    }

    .plan-left h2, .brand-section h2{
        font-size: 40px;
        line-height: 64px;
    }

    .brand-section h3{
        font-size: 36px;
        line-height: 42px;
        margin: 50px 0 20px;
    }

    

    .intro-section, .brand-main{
        padding: 50px 0;
    }

    .benefit-main h2, .resources-section h2{
        font-size: 40px;
        line-height: 50px;
    }

    .offer-left{
        padding-right: 50px;
    }

    .inner-page header a.logo{
        width: 130px;
    }

    .inner-page .header-spacer{
        height: 100px;
    }

    .services-benefits .benefit-main h2{
        font-size: 40px;
        line-height: 50px;
    }

    .focus-section .foucs-main h2{
        line-height: 60px;
        font-size: 50px;
    }

    .focus-section .foucs-main:before{
        height: 220px;
    }

    .resources-page-list .item{
        width: 50%;
        padding-bottom: 30px;
    }

    .resources-page{
        padding: 50px 0 20px;
    }

   
    .two_right_coloum .two_right{
        padding-left: 0;
    }

    .two_right_coloum .two_left{
        padding-left: 50px;
    }
    .page-template-team-template .inner-banner .banner-right{
        left: calc(0%) !important;
    }

    .inner-banner .banner-left{
        font-size: 50px;
        line-height: 65px;
    }

    .contat-form{
        margin-bottom: 30px;
    }

    .contat-form .gform_footer .gform_button{
        margin-top: 10px;
    }

    .single-desc{
        margin: 40px auto 0;
    }

    .two_right img{
        height:auto;
    }

    .modal[id="loginmodal"] .modal-body {
        padding: 30px 15px 40px;
        display: inline-flex;
    }

    .modal[id="loginmodal"] .modal-body .modal-main img {
        max-width: 200px;
        max-height: 90px;
    }

    .page-template-services-template .quote-massage p{
        padding: 0 58px;
    }

}

@media(max-width: 800px){
    .page-template-services-template .inner-banner .banner-right{
        width: 730px;
    }

    .page-template-team-template .inner-banner .banner-right {
        width: 700px;
    }
}

@media(max-width:767px){
    .banner-section{
        height: 450px;
    }

    .inner-banner .banner-left span{
        padding-top: 0;
    }

    .modal[id="loginmodal"] .modal-body .modal-main {
        width: 100%;
        padding: 0;
        margin: 0 0 30px;
        border-bottom: 1px solid #7d8383;
        border-right: 0;
        padding: 0 0 20px;

    }

    .modal[id="loginmodal"] .modal-body .modal-main:nth-last-child(1) {
        border-right: 0 !important;
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .modal[id="loginmodal"] .modal-dialog .button {
        font-size: 20px;
        line-height: 31px;
    }

    .two_main{
        flex-direction: column;
    }

    .two_left {
        padding: 0;
        order: 1;
        width: 100%;
        max-width: 100%;
        padding-top: 30px;
    }

    .two_right {
        width: 100%;
        padding-right: 0;
        aspect-ratio: 5 / 1;
        height: auto;
    }

    .two_right img{
        max-width: 100%;
        max-height: 100%;
    }

     .resources-page-list .item{
        width: 100%;
    }

    .single-desc .wp-block-embed__wrapper {
        position: relative;
        padding-bottom: 61%;
    }

    .single-desc .wp-block-embed iframe{
        position: absolute;
        height: 100%;
    }



    .quote-bottom{
        padding-right: 45px;
    }

    .page-template-firm-template  .inner-banner{
        background-position: center !important;
    }

    .inner-banner .banner-left{
        margin-bottom: 0;
    }

     .team-section .col-md-6{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .page-template-services-template .inner-banner .banner-right {
        width: 388px;
    }

    .team-box{
            display: inline-block;
            width: 100%;
            text-align: center;
    }

    .btn-main{
        width: auto;
        margin-top: 40px;
    }

    .team_single {
        padding: 50px 0;
    }

    .team_single_wrap .team_single_text{
        width: 100%;
    }

    .team_single_wrap .team_single_text{
        padding-left: 0;
        padding-top: 30px;
    }

    .team_single_wrap .team_single_img{
        width: 100%;
        height: 100%;
    }

    .team_single_wrap .team_single_img img{
        width: 299px;
        height: 299px;
        margin: 0 auto;
    }

    .team_single_wrap{
        flex-direction: column;
    }


    .inner-banner .banner-right{
        width: 378px;
        height: 85px;
        margin-top: -52px
    }

    .banner-left{
        margin-bottom: 0;
    }

    .plan-left h2, .brand-section h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .container{
        max-width: 540px !important;
    }

    .team-box figure{
        position: relative;
       margin: 0 auto 16px;
       
    }

    .team-box figure img {
        display: block;
        object-fit: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .resources-box .resources-desc {
        padding: 18px 20px 30px 20px;
    }

    .resources-list img{
        width: 140px;
    }

    .resources-bottom{
        margin-top: 50px;
    }

    .focus-section .foucs-main:before {
        height: 200px;
    }

    .fousct-list{
        flex-direction: column;
    }

    .fousct-list ul {
        width: 100%;
        margin-bottom: 0;
    }

    .focus-section{
        padding: 50px 0;
        min-height: auto;
    }

    .focus-section .foucs-main h2{
        line-height: 50px;
        font-size: 40px;
    }

    .inner-banner .banner-left{
        font-size: 40px;
        line-height: 57px;
        width: 85%;
        height: auto;
    }

    .value-box{
        width: 100%;
        margin-bottom: 30px;
        border-right: 0;
    }

    .value-desc {
        max-width: 100%;
    }

    .offer-right{
        margin-top: 0;
    }

    .banner-right{
        
    }

    .banner-left{
        height: auto;
        font-size: 52px;
        line-height: 66px;
        width: 85%;
    }

    .two_right_coloum .two_left{
        padding-right: 0;
        padding-left: 0;
    }

    h2, .resources-section h2{
        font-size: 30px;
        line-height: 36px;
    }

    .plan-left h2{
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .brand-section p{
        font-size: 18px;
        line-height: 26px;
    }

    .brand-section h3{
        margin: 30px 0 10px;
        font-size: 26px;
        line-height: 36px;
    }

    .value-grid {
        margin: 0px -15px 0;
    }
    
    .content-link{
        font-size: 20px;
    }

    .plan-right {
        display: inline-block;
        width: 75%;
        margin-top: -69px;
        min-height: 101px;
    }

    .plan-left{
        width: 75%;
        padding: 20px;
        min-height: auto;
    }

    .plan-section{
        min-height: 400px;
    }

    footer .footer-top{
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    footer .footer-top .address-box{
        margin-left: 0;
    }

    footer .footer-top .address-box{
        margin-top: 20px;
        max-width: 100%;
    }

    .copy-main{
        flex-direction: column;
    }

    .footer-bottom p{
        padding-right: 0;
        margin-bottom: 10px;
    }

    .banner-left{
        padding: 20px 30px;
    }

    .banner-left span{
        padding-top: 0;
    }

    .value-box{
        margin-bottom: 0;
    }

    .value-desc h4{
        font-size: 24px;
        line-height: 36px;
    }

    .banner-bg{
        margin-bottom: 50px;
    }

    .copy-main ul li:first-child{padding-left: 0;}

    .offer-left{
        width: 100%;
        padding-right: 0;
        order: 1;
        padding-top: 30px;
    }

    .quote-massage p {
        font-size: 16px;
        line-height: 26px;
        padding: 0 45px;
    }

    .page-template-services-template .quote-bottom{
        padding-right: 45px;
    }

    .benefits-offer{
        padding: 50px 0;
    }

    .benefit-main h2{
        max-width: 100%;
    }

    .offer-right{
        width: 100%;
        height: auto;
    }

    .services-benefits .offer-right{
        margin-top: 0;
    }

    .resources-section{
        padding: 50px 0;
    }

    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .contact-page{
        padding: 50px 0;
    }

    .contat-desc{
        padding: 20px;
    }

    .offer-right img{
        height: auto;
    }

    .benefit-main h2, .resources-section h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .benefit-main{
        padding: 30px 0;
    }

    .offer-left ul li{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .quote-massage {
        margin-top: 25px;
    }

    .banner-right {
       width: 530px;
       left: -29%;
       height: 106px;
       margin-top: -61px;
    }

    .page-template-team-template .inner-banner .banner-left {
        width: 63%;
    }

    .page-template-team-template .inner-banner .banner-right {
        width: 565px;
    }

    .quote-massage p:before, .quote-massage p:after{
        background-size: 20px;
    }


    
        

}

@media(max-width:500px){
    .banner-left{
        font-size: 40px;
        line-height: 53px;
    }

    .page-template-services-template .quote-massage p {
        padding: 0 38px;
    }

    .inner-page .inner-banner {
        height: auto;
        aspect-ratio: 4/3;
    }

    .btn-main .full-btn:before {
        left: -934px;
    }

    .quote-massage p:after{
        width: 22px;
        height: 22px;
    }


    footer .footer-top .address-box{
        margin: 20px auto 0;
        text-align: center;
    }

    .footer-bottom p{
        text-align: center;
    }

    .copy-main ul{
        justify-content: center;
    }

    .page-template-team-template .inner-banner .banner-left {
        width: 84%;
    }

    .page-template-team-template .inner-banner .banner-right {
        width: 310px;
    }

    .page-template-services-template .inner-banner .banner-right {
        width: 320px;
    }

    .inner-banner .banner-right{
        width: 320px;
    }

    .name, .position{
        font-size: 17px;
    }

    .focus-section .foucs-main h2 {
        line-height: 40px;
        font-size: 30px;
        padding: 30px 10px;
    }

    .update_filter ul{
        margin-bottom: 30px;
    }

    .fousct-list ul {
        width: 100%;
        margin-bottom: 0;
        padding-left: 20px;
        column-count: 1;
    }

    .fousct-list ul li{
        font-size: 17px;
        line-height: 23px;
    }

    .resources-bottom {
        margin-top: 20px;
    }


    .update_filter ul li a{
        font-size: 22px;
        line-height: 30px;
    }

    .resources-page-list .item{
        width: 100%;
    }

    p{
        font-size: 16px;
        line-height: 24px;
    }

    .intro-section p{
        font-size: 18px;
        line-height: 26px;
    }

    .services-intro .quote-massage{
        margin-top: 50px;
    }

    .services-benefits .benefit-main h2 {
        font-size: 30px;
        line-height: 10px;
        margin-bottom: 0;
    }

    .resources-box .resources-desc h5{
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .offer-left p {
        font-size: 16px;
        line-height: 26px;
    }

    .services-benefits h6{
        font-size: 20px;
    }

    .resources-list{
        flex-direction: column;
    }

    .resources-list p{
        padding-left: 0;
        padding-top: 20px;
    }

    .banner-left span{
        padding-top: 0;
    }

    .plan-left h2 {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .plan-left{
        width: 85%;
    }

    .team-section .col-md-6 {
        max-width: 100%;
        flex: 0 0 100% ;
        margin-bottom: 30px;
    }

    .team-section .col-md-6:last-child{
        margin-bottom: 0;
    }

    .team-box span{
        font-size: 20px;
        line-height: 30px;
    }

    .team-box p{
        font-size: 18px;
        line-height: 30px;
    }

    .name .read-more{
        font-size: 18px;
    }

    .intro-section, .brand-main{
        padding: 30px 0;
    }

    .contat-desc address, .contat-desc a{
        font-size: 18px;
    }

    h1{
        font-size: 30px;
        line-height: 40px;
    }

    .banner-right {
        width: 346px;
        left: -18%;
        height: 100px;
        margin-top: -52px;
    }

    .inner-banner .banner-left{
        font-size: 32px;
        line-height: 57px;
    }

    .plan-right{
        margin-top: -63px;
        min-height: 89px;
    }

    footer .footer-top img{
        margin: 0 auto;
    }

    footer .footer-top .address-box address{
        max-width: 201px;
    }

    .copy-main ul li a{
        font-size: 11px;
    }

    .team_single_wrap .team_single_img .social_icon{
        flex-direction: column;
        align-items: flex-start;
    }

    .team_single_wrap .team_single_img .social_icon ul{
        margin-top: 15px;
    }
}