@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quattrocento:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
	--font1: "Open Sans", sans-serif;
    --font2: "Quattrocento", serif;
    --font3: "Inter", sans-serif;
	--primary: #c0ecfc;
	--secondary:  #0067a8; 
    --white: #FFFFFF; 
	--black:  #222222; 
	--grey:#656565;
}


*{ 
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;  
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    font-family: var(--font1);
   
}
h1,h2,h3,h4,h5,h6{
    color: var(--black);
    font-family: var(--font2);
    font-weight: 400;
}
h1{
	font-size: 60px;
	line-height: 62px;
    font-weight: 800;
}
h2{
	font-size: 45px;
	line-height: 60px;
    font-weight: 400;
}
h3{
	font-size: 30px;
	line-height: 34px;
    font-weight: bold;
    margin-bottom: 30px;
}
a{
    color: inherit;
}
p{
	margin: 0 0 20px;
}
img,svg{
    width: 100%;
}
.clear{
    clear: both;
}
.clear:after{
    position: relative;
    content: "";
    clear: both;
    display: table;
    width: 100%;
}

ul{
    padding: 0;
    list-style: none;
    display: block;
    margin: 0;
}

a{
    transition: .5s;
    text-decoration: none;
}
a:hover{
	text-decoration: none;
}

.bglight{background: #d1ebf4;}

.container{
    max-width: 1260px;
    margin: 0 auto;

}


/**common**/

section{
    padding: 70px 0;
    position: relative; 
}

.sec-head{
    margin: 0 0 45px;
}
.traning-partner .sec-head{
    margin-bottom: 90px;
}
.sec-head.center{
    text-align: center;
    font-size: 20px;
}
.sec-head.center p{
    max-width: 60%;
    margin: 0 auto;
}
.sec-head .title{
    font-size: 45px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 55px;
    text-transform: capitalize;
}

.cmnbtn2{
	display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--black);
    gap: 5px;
    padding: 12px 20px;
    font-size: 18px;
}
.cmnbtn2 span {
    position: relative;
    z-index: 1;
}
.cmnbtn2:before {
    position: absolute;
    content: "";
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    animation: circlemove 8s linear infinite; 
}
@keyframes circlemove{
	0% {
	    left: 0;
	}
	50% {
	    left: calc(100% - 48px);
	}
	100% {
	    left: 0;
	}
}
 
.memorycarepartner{
    display: inline-block;
    margin: 0 0 20px;
}
.cmnbtn {
    background-color:var(--secondary);
    color: var(--white);
    padding:7px 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border: 1px solid var(--secondary);
}
.cmnbtn:hover{
    border: 1px solid var(--primary);
}
.cmnbtn1{
	background: transparent; 
}

.cmnbtn span {
	border-radius: 25px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    transition: 0.5s;
}
.cmnbtn1 span{
	color: var(--black);
}
.cmnbtn:after {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    background: var(--primary);
    transform: translate(-50%, 0) skew(20deg, 0deg);
    width: 0;
    height: 130%;
    transition: .5s;
}
.cmnbtn:hover:after {
    width: 120%;
}
.cmnbtn.white:hover:after {
    background: var(--white);
}
.cmnbtn:hover span{
    color: var(--secondary);
}


.cmnbtn3{
    display: flex;
    gap: 50px;
    padding: 7px 22px;
}
.cmnbtn3 .ico{transition: .5s;}
.cmnbtn3:hover .ico{
    filter: invert(1) brightness(100);
}
/**header**/
.site-header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--white);
    transition: .5s;
    z-index: 123;
}
.sticky .site-header{
    top: -41px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .05);
    background: var(--white);
}

.headerHold{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    display: inline-block;
    width: 200px;
}
.mobilemenu {
    position: fixed;
    right: -100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, .5);
    transition: .5s;
    z-index: 124;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.cross {
    position: absolute;
    width: 38px;
    height: 38px;
    line-height: 0;
    background: var(--white);
    color: var(--black);
    padding: 5px;
    right: 5px;
    top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.menubtn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    padding: 8px;
    z-index: 124;
    margin-left: 10px;
    border-radius: 5px;
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    vertical-align: top;
    display: none;
}
.menubtn span {
    display: inline-block;
    background: var(--white);
    width: 100%;
    height: 3px;
}
.menulist{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 50px;
}
.menulist li a{
    display: block;
    font-weight: 500;
    color: var(--black);
    text-align: left;
}
.menulist li a:hover,
.menulist li.active a{color: var(--secondary);}
.btnholder{display: flex; gap:30px;}


/**mobile menu**/
.menubtn{
    width: 45px;
    height: 45px;
    background: var(--primary);
    padding: 8px; 
    z-index: 124;
    margin-left: 10px;
    border-radius: 5px; 
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    vertical-align: top;

    display: none;
}
.menubtn span{
    display: inline-block;
    background: var(--white);
    width: 100%;
    height: 3px;
}

.mobilemenu{
    position: fixed;
    right: -100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, .5);
    transition: .5s;
    z-index: 124;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.mobilemenu.active{
    right: 0;
}
.cross{
    position: absolute;
    width: 38px;
    height: 38px;  
    line-height: 0; 
    background: var(--white);
    color: var(--black);
    padding: 5px;
    right: 5px;
    top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.mobilemenu ul{
    padding: 40px 20px;
    background: var(--secondary);
    width: 320px;
    list-style: none;
    margin: 0; 
}
.mobilemenu ul li:before{display: none;}
.mobilemenu ul li a{
    display: block;
    margin: 5px 20px;
    color: var(--white);
    border-radius: 25px;
    position: relative;
}
.mobilemenu li a:after{
	position: absolute;
	content: "";
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: .5s;
	left: 0;
	bottom: 0;
}
.mobilemenu li a:hover:after{
	width: 100%;
}


.mobilemenu ul.submenu1{
    padding: 0 0 0 15px;
    display: none;
}
.mobilemenu ul li.haschild1 >a{
    position: relative;
}
.mobilemenu ul li.haschild1 >a:before{
    position: absolute;
    content: "";
    right: 0;
    top: 10px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: var(--white);
    padding: 3px;
    transform: rotate(135deg);
}
.mobilemenu ul li{
	margin: 0 0 10px;
}

/* header */

.top-header{
    background: #F8F8F8;
    padding: 8px 0;
}
.top-header ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 30px;
}
.top-header ul li a{
    font-size: 13px;
    color: var(--black);
    font-weight: 700;
}
.top-header ul li a:hover{
    color: var(--secondary);
}

.top-header ul li.current_page_item a{
    color: var(--secondary);
}

.bottom-header{
    padding: 15px 0;
}


/**banner**/

.normal-head{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}
.sec-list{
    margin-bottom: 30px;
}
.sec-list li{
    margin-bottom: 20px;
    font-size: 16px;
    display: block;
    padding: 10px 0;
}
.sec-list li span{
    display: inline-block;
    margin-right: 10px;
}

.traning-partner-right{
    padding: 35px;
    border-radius: 5px;
    border: 1px solid #B3B3B3;
    height: 100%;
}
 
.sec-dot-list{
    margin-bottom: 30px;
}
.sec-dot-list li{
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}
.sec-dot-list li::before{
    position: absolute;
    content: "-";
    left: 0;top: 50%;
    transform: translateY(-50%);
}
.traning-partner-left{
    height: 100%;
}
.traning-partner-left img{
    height: 100%;object-fit: cover;
}

.pams-first{
    margin-top: 120px;
    position: relative;
}
.shape1{
    position: absolute;
    left: 20px;top: 80px;
}
.shape2{
    position: absolute;
    right: 30px;top: 80px;
}

.pams-first h2{ 
    text-align: center;
    margin-bottom: 50px; 
}

@media(min-width: 1500px){
    .pams-first h2{
        max-width: 758px;
        margin-left: auto;
        margin-right: auto;
    }
}
.pams-first-part{
    text-align: center;
    padding: 25px;
    background: #d1ebf4;
    border-radius: 5px;
}
.pams-first-part .cmnbtn{
    display: block;
}
.pams-first-img{
    display: inline-block;
    width: 100px;height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}
.pams-first-img img{
    width: 100%;height: 100%;
    object-fit: cover;
}
.pams-first-part h3{
    margin-bottom: 25px;
    text-align: center;
    text-transform: capitalize; 
}
.pams-first-holder{
    padding: 0 150px;
}

.pams-first .container,
.traning-partner .container{
    position: relative;
}

.traning-partner-snd{
    margin-top: 70px;
}
.traning-partner-snd >.row{
    justify-content: space-between;
}
.traning-partner-part.side{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 30px;
}
.traning-partner-part h3{
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}
.traning-partner-part.side p{
    margin: 0;
}
.traning-partner-part.center{
    text-align: center;
    padding: 30px;
    border: 1px solid var(--grey);
    position: relative;
}

.traning-partner-part{
    height: 100%;
}
.traning-partner-part .icon{
    width: 60px;height: 60px;
    background: #81dee3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}
.traning-partner-part .icon img{
    width: 35px;
    filter: invert(1);
}
.traning-partner-part .icon.icon1{
    left: 0;top: 0;
    transform: translate(-50%,-50%);
}
.traning-partner-part .icon.icon2{
    left: 100%;top: 0;
    transform: translate(-50%,-50%);
}
.traning-partner-part .icon.icon3{
    left: 0;top: 100%;
    transform: translate(-50%,-50%);
}
.traning-partner-part .icon.icon4{
    left: 100%;top: 100%;
    transform: translate(-50%,-50%);
}

.normal-head.center{
    text-align: center;
}

.online-care-mt{
    margin-top: 70px;
}
.online-care-img{
    border-radius: 5px;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, .3);
}
.online-care-img img{
    border-radius: 5px;
}
.online-care-content{}
.online-care-content li{
    background: #efefef;
    padding: 25px 30px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.online-care-content li h3{
    font-size: 18px;  
    margin:0 0 2px;
    line-height: 1.2;
}

.proven .online-care-content li{
    padding: 0;
    background: transparent;
}
.proven .online-care-img img{
    height: 300px;
    object-fit: cover;
}

.improving-part{
    padding: 30px 0;
    border-radius: 5px;
    background: #efefef;
}

.decades{
    background: url(../images/dot-bg.png) repeat 0 0;
}
.decades .row{
    align-items: center;
}
.decades-part{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.decades-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;height: 120px;
    background: #81dee3;
    border-radius: 50%;
    margin: 0 auto;
}
.decades-box h3{
    font-size: 60px;
    font-weight: 600;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 0;
    font-family: var(--font1);
}
.decades-count{
    text-align: center;
}
.decades-count p{
    font-weight: 500;
    margin: 15px 0 0;
}
.decades-box img{
    width: 40px;
    filter: invert(1);
}

.contact-sec input,
.contact-sec textarea{
    width: 100%;
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid #B7B7B7;
    outline: none!important; 
    margin-bottom: 15px;
    border-radius: 5px;
}
.contact-sec p{
    margin-top: 40px;
}
.contact-sec p span{
    font-weight: 600;
}
.contact-sec input[type="checkbox"]{
    width: auto;
}
.contact-sec textarea{ 
    min-height: 300px;
}
.form-sub{
    text-align: end;
}
.contact-sec .form-sub input{
    width: auto;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    font-weight: 500;
    transition: 0.5s;
    padding: 5px 30px;
    border: none;
}
.contact-sec .form-sub input[type="submit"]{
    margin-bottom: 0;
}
.contact-sec .form-sub input:hover{
    background: var(--white);
    color: var(--secondary);
}

.site-footer{
    padding: 100px 0 40px;
    font-family: var(--font3);
}
.footer-top{
    padding-bottom: 30px;
    display: grid;
    align-items: flex-start;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
}
.footer-top h3{
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}
.footer-top p{
    margin-bottom: 0;
}
.footer-right a{
    color: var(--secondary);
}
.footer-right p:nth-child(2){
    margin-bottom: 30px;
}
.footer-bottom p{
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.memory-first{
    font-size: 18px;
    line-height: 140%;
}


@media(max-width: 1444px){

}

@media(max-width: 1399px){
/*    .shape1, .shape2 {top: 20px;}*/
.shape2{
    top: 20px;
}
}

@media(min-width: 1250px){

}

@media(max-width: 1199px){
    .pams-first-part h3{
        font-size: 22px;
        line-height: 30px;
    }
}

@media(max-width: 1023px){


}

@media(max-width: 991px){
    .menulist{
        display: none;
    }
    .menubtn {
        display: inline-flex;
    }
    .mobilemenu ul li a br{
        display: none;
    }
    section .row{
        row-gap: 25px;
    }
    .shape1{
        left: 0;
        width: 20%;
    }
    .shape1 img{
        height: 90px;
        object-fit: contain;
        object-position: 0 0;
    }
    .shape2 img{
        height: 90px;
        object-fit: contain;
        object-position: right 0;
    }
    .shape2{
        right: 0;
        width: 20%;
    }
    .sec-head .title{
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 25px;
    }
    .traning-partner-part.side{
        padding: 30px 0;
    }
    .traning-partner{
        padding-bottom: 0;
    }
    .improving-part{
        display: block;
        width: 100%;
    }
    .traning-partner-part.center{
        margin: 0 30px;
    }

    .headerRight{
        display: flex;
        gap: 20px;
    }
    h2{
        font-size: 35px;
        line-height: 1.2;
    }
}

@media(max-width: 767px){
    .shape1, .shape2{
        width: 12%;
    }
    .footer-top{
        flex-wrap: wrap;
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
    .pams-first {
        margin-top: 100px;
    }
    .site-footer{
        padding:50px 0 40px;
    }

    .cmnbtn3 .ico{
        display: none;
    }
    .headerRight{
        gap: 10px;
        align-items: center;
    }
    .logo{
        width: 160px;
    }
    .cmnbtn3{
        padding: 5px 15px;
        display: inline-flex;
    }
    h2,.normal-head,.traning-partner-part h3{
        font-size: 25px;
        line-height: 1.2;
    }
    .pams-first h2,.normal-head,
    .traning-partner .sec-head{
        margin-bottom: 30px;
    }
    section{
        padding: 50px 0;
    }
    .sec-list li{
        margin-bottom: 0;
    }
    .sec-head.center{
        font-size: 16px;
    }
    .traning-partner-snd{
        margin-top: 30px;
    }


    .sec-head.center p{
        max-width: 100%;
    }
}

@media(max-width: 575px){
	.shape1, .shape2{
        display: none;
    }
     
    
    .traning-partner-right h3 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 35px;
    }
    .decades-part{
        flex-wrap: wrap;
        justify-content: center;
    }
    .pams-first-holder {
        padding: 0;
    }
}

@media(max-width: 479px){
	.headerRight .cmnbtn {
        padding: 6px 12px;
    }
    .headerRight .cmnbtn span {
        font-size: 14px;
    }
    .menubtn {
        margin-left: 3px;
        width: 35px;
        height: 35px;
        padding: 5px;
    }
    .logo {
        width: 100px;
    }
     
     h2 br, .normal-head br, .traning-partner-part h3 br{
                display: none;
     }

     .cmnbtn {
        padding: 5px 12px;
     }
     .cmnbtn span{
        font-size: 14px;
     }
}

@media(max-width: 424px){
	
}

@media(max-width: 374px){
	.sticky .site-header {
        top: 0;
    }
    .top-header{
        display: none;
    }
    .pams-first {
        margin-top: 30px;
    }
}



#wpadminbar{
    display: none !important;
}

html{
    margin: 0 !important;
}

.menu-primary-menu-two-container{
    width: 37%;
}

@media(max-width: 1199px){
    .menu-primary-menu-two-container{
    width: 46%;
}

@media(max-width: 990px){
    .menu-primary-menu-two-container{
        display: none;
    }
}

}
.contact-sec  p:not(.checkboxes_label){
    margin: 0;
}

.contact-sec p span.wpcf7-list-item-label{
    font-weight: 400;
}

.contact-sec .wpcf7-spinner{
    display: block;
    margin: 0 auto;
}

.memory_stack{
    display: flex;
    flex-direction: column;
    gap: 70px;
}

@media(max-width: 599px){
    .memory_stack{
        gap: 35px;
    }
}

.headerHold .menulist {
    width: 40%;
}

@media(max-width: 1199px){

    .headerHold .menulist {
        width: 45%;
    }
}


/***about****/
.l4r6_sec{}
.mt-100{
    margin-top: 200px;
}
.l4r6_holder{
    display: grid;
    grid-template-columns: 45% 55%;

}
.l4l6left{
    padding-right: 60px;
}
.flex{
    display: flex;
}
.l4l6right{
    gap: 50px;
}
.nobox{}
.nobox .no{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #222222;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 25px;
    line-height: 20px;
    font-weight: bold;
}

.teamholder{
    display: grid;
    grid-template-columns: 70% 25%;
    gap: 5%;
    align-items: flex-start;
}
.teamdiv{
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 30px;
    margin: 0 0 50px;
}
.teamimg{}
.teamimg img{
    width: 100%;
    height: auto;
}
.teamcontent{
    color: #282727;
}
.teamcontent span{
    display: block;

    color: #757575;
}
.teamcontent .teamtop{
    margin-bottom: 30px;
}
.teamcontent p{
    margin-bottom: 25px;
}
.teamcontent p:last-child{
    margin-bottom: 0;
}

.historyright{
    padding: 70px 40px;
    position: sticky;
    top: 100px;
}
.historydiv{
    margin-bottom: 30px;
}
.historydiv h4{
    font-weight: 600;
    margin: 0 0 10px;
}

/**fullbanner**/
.fullbanner img{width: 100%;}

/**two_coulmn_sec**/
.two_coulmn_row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.mainhead{
    margin-bottom: 40px;
}
.two_coulmn_col h2.normal-head{
    margin-bottom: 20px;
}

.l4l6left{}
.l4l6left img{
    width: 100%;
}
.l4l6right h2.normal-head{
    margin: 0 0 10px;
}
.l4l6right div:first-child{
    margin-bottom: 25px;
}

/**two_coulmn_blue_sec**/
.two_coulmn_blue_sec{
    background: #005B8C;
}
.two_coulmn_blue_row{
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
}
.two_coulmn_blue_row h2{
    color: var(--white);
}
.two_coulmn_blue_row p{
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}


.two_coulmn_blue_row .left_col{
    padding-right: 300px;
}

@media(max-width: 1299px){
    .two_coulmn_blue_row .left_col{
        padding-right: 150px;
    }
}

@media(max-width: 991px){
    .two_coulmn_blue_row .left_col{
        padding-right: 0;
    }
}

/**main_circle_shape**/
.main_circle_shape{
    padding: 0 25px 30px 25px;
}

@media (max-width:1199px){
    .historyright {
        padding: 50px 30px;
    }
    .teamholder{
            grid-template-columns: 65% 30%;
    }
    .teamcontent p{
        margin-bottom: 15px;
    }
    .teamcontent .teamtop{
        margin-bottom: 15px;
    }
}
@media (max-width:1023px){
    .l4r6_holder{
            grid-template-columns: 1fr;
    }
}
@media (max-width:991px){
    .two_coulmn_blue_row, .two_coulmn_row{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .two_coulmn_blue_row h2, .two_coulmn_blue_row p{
        text-align: center;
    }
    .l4l6left{
        padding-right: 0;
    }
    .l4r6_holder{
        gap: 35px;
    }
    .l4r6_sec{
        padding-top: 0;
    }
    .l4r6_sec.second{
        padding-top: 40px;
    }
}
@media (max-width:767px){
    .l4l6right{
        gap: 25px;
        flex-wrap: wrap;
    }
    .teamholder{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .teamdiv{
        grid-template-columns: 1fr;
    }
}


.improving .normal-head.max-width{
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 767px){
    .fullbanner {
        margin-top: 170px;
    }
}

@media(max-width: 479px){
    .fullbanner {
        margin-top: 73px;
    }
}