:root{

    /* --primary:#38AD85; */
    --primary:#394d28;
    --body:#424242;
    --white:#ffffff;
    --black:#000000;
    --bg-light:#F1F8F5;

 }

.post, .page{
    margin-bottom: 0;
}

html{
	scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    box-sizing: border-box;
    margin-bottom: 0;
    font-family: "Saira", serif;
    color: var(--body);
}
ul,ol{
    margin-left: 18px;
}

p{
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 0;
    color: var(--body);
}

h1,.h1{
    font-size: 52px;
    font-weight: 700;
    line-height: 60px; 
    color: var(--white);
    margin-bottom: 22px;
    margin-top: 0;
}
h2,.h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    color: var(--black);
    margin-bottom: 30px;
    margin-top: 0;

}
h3,.h3{
    font-size: 28px;
    font-weight: 600;
    line-height: 44px;
    color: var(--black);
    margin-bottom: 5px;
    margin-top: 0;
}
h4,.h4{
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    color: var(--black);
    margin-bottom:5px; 
    margin-top: 0;
}

h5,.h5{
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--black);
    margin-bottom:12px; 
    margin-top: 0;
}
h6,.h6{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    box-sizing: border-box;
    margin-top: 0;
    color: var(--black);

}

b, strong {
    font-weight: 600;
}

 p:last-child{
    margin-bottom: 30px !important;
}



.container{
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

@media only screen and (min-width:576px){
    .container{
        max-width:540px
    }	
}
@media only screen and (min-width:768px){
	.container{
		max-width:720px
	}
}
@media only screen and (min-width:992px){
  .container{
    	max-width:960px
    } 
   
}
@media only screen and (min-width:1200px){
   .container{
	   max-width:1140px
    }
}
@media only screen and (min-width:1400px){
	 .container{
		max-width:1300px
	 }
 }
 a{
    text-decoration: none;
 }

 .wpcf7-form-control-wrap .wpcf7-not-valid-tip:not(:nth-child(2)){
    display: none;
 }

 .fill-btn{
    margin-top: 22px !important;
    text-align: center;
 }
 .fill-btn a,.outline-btn a,.contact-form-col form input.wpcf7-submit {
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 25.18px;
    padding: 13px 25px;
    border-radius: 50px;
    display: block;
    border:1px solid var(--primary) !important ;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    box-shadow: none;
    cursor: pointer;
 }
 .outline-btn a{
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
 }
 .outline-btn a:hover{
    background-color: var(--primary);
    border-color: var(--primary);
 }
 .fill-btn a:hover,.contact-form-col form input.wpcf7-submit:hover{
    background-color: transparent;
    color: var(--primary);
 }
 .header-btn  a{
    border-color: var(--white) !important;
 }
 .header-btn  a:hover{
    border-color: var(--primary) !important;
 }
 @media(max-width:991px){
    h1,.h1{
        font-size: 45px;
        line-height: 55px; 
        margin-bottom: 20px;
    }
    h2,.h2{
        font-size: 32px;
        line-height: 52px;
        margin-bottom: 10px;
    }
 }
 @media(max-width:767px){
    h1,.h1{
        font-size: 40px;
        line-height: 48px; 
        margin-bottom: 10px;
    }
    h2,.h2{
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    h4, .h4 {
        font-size: 20px;
        line-height: 26px;
    }
    h3, .h3{
        font-size: 22px;
        line-height: 32px;
    }
 }
 @media(max-width:575px){
    .fill-btn a, .outline-btn a, .contact-form-col form input.wpcf7-submit{
        font-size: 14px;
        line-height: 23px;
        padding: 10px 20px;
    }
 }
 @media(max-width:359px){
    .fill-btn a, .outline-btn a, .contact-form-col form input.wpcf7-submit{
        font-size: 12px;
        padding: 10px 16px;
    }
}
 


 /* header */

 header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    padding:30px 0;
}
.site-header.is-sticky {
    position: fixed;
    background-color: var(--black);
    padding: 15px 0;
    -webkit-animation: slideDown 0.6s ease-out;
    animation: slideDown 0.6s ease-out;
}
body.logged-in header{
    top: 32px;
}
header .container{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
header .container .site-branding img{
    max-width: 278px;
    display: block;
}
@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
@media(max-width:991px){
    header .container .site-branding img {
        max-width: 248px;
    }
}
@media(max-width:575px){
    header .container .site-branding img {
        max-width: 178px;
    }
}
@media(max-width:359px){
    header .container .site-branding img {
        max-width: 156px;
    }
}
 

 /* banner-section */

 .baner-section{
    min-height: 725px;
    background-color: rgba(0, 0, 0, 0.65);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
 }
 .small-banner {
    min-height: 450px;
 }
 .baner-section .banner-text {
    text-align: center;
    max-width: 940px;
    margin: auto;
}
.baner-section .banner-text p{
    color: var(--white);
    max-width: 662px;
    margin: auto;
}
.page-id-10 .baner-section .banner-text p{
    max-width: 693px;
}
.baner-section .fill-btn a:hover{
    background-color: transparent;
    color: var(--white);
    border-color: var(--white) !important;
 }
 .baner-section .fill-btn{
    margin: auto;
    width: fit-content;
 }
 @media(max-width:767px){
    .baner-section {
        min-height: 655px;
    }
 }


 /* .principal-registeration */

 .principal-registeration{
    padding: 100px 0;
 }
 .principal-registeration .row{
    display: flex;
    flex-wrap: wrap;
    gap: 54px;
    align-items: center;
 }
 .principal-registeration .row > div{
    width: calc(50% - 27px);
 }
 .principal-registeration .row img{
    border-radius: 30px;
    display: block;
    width: 100%;
 }
 .principal-registeration .row .right-contebnt p:not(:last-child){
    margin-bottom: 30px;
 }
 .principal-registeration .left-col{
    position: relative;
    padding: 36px;
    padding-right: 0;
 }
 .principal-registeration .left-col::after{
    content: "";
    background-image: url(../images/vector-shape.png);
    position: absolute;
    width: 387px;
    height: 100%;
    top: 0;
    left: 0;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
 }

 @media(max-width:991px){
    .principal-registeration .row > div{
        width: 100%;
    }
    .principal-registeration{
        padding: 80px 0;
    }
 }
 @media(max-width:767px){
    .principal-registeration .left-col{
        padding: 16px;
    }
    .principal-registeration .left-col::after{
        width: 207px;
        background-size: contain;
    }
    .principal-registeration{
        padding: 60px 0;
    }
    .principal-registeration .row{
        gap: 24px;
    }
 }

 /* .what-we-do */

 .what-we-do{
    padding: 52px 0 92px 0;
    background-color: var(--bg-light);
    background-image: url(../images/City.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
 }
 .what-we-do .row{
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
 }
 .what-we-do .row > div{
   width: calc(25% - 39px);
   text-align: center;
 }
 .title-block {
    text-align: center;
}
.what-we-do .icon{
    width: 125px;
    height: 125px;
    background: #fff;
    box-shadow: 0px 0px 16px 0px #0000000F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #fff;
    transition: all 0.3s ease-in-out;
}
.what-we-do .icon-box-block:hover .icon{
    border-color: var(--primary);
}
.what-we-do .icon-content p{
    line-height: 26px;
}
@media(max-width:991px){
    .what-we-do .row > div{
        width: calc(50% - 26px);
    }
 }
 @media(max-width:767px){
    .what-we-do .row{
        gap: 24px;
        padding-top: 20px;
    }
    .what-we-do .row > div {
        width: calc(50% - 12px);
    }
    .what-we-do .icon{
        width: 90px;
        height: 90px;
    }
    .what-we-do .icon img{
        width: 40px;
    }
 }
 @media(max-width:374px){
    .what-we-do .row > div{
        width: 100%;
    }
 }

/* .contact-section */


.contact-section{
    padding: 92px 0;
}

.contact-section .row{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.contact-section .row .contact-info-col {
    width: calc(41% - 25px);
    border-radius: 10px;
    background: var(--primary);
    padding: 44px 32px;
    padding-right: 27px;
    position: relative;
    overflow: hidden;
}
.contact-section .row .contact-info-col::after{
    content: "";
    background-image: url(../images/contact-vector.svg);
    position: absolute;
    width: 217px;
    height: 40%;
    right: -26px;
    bottom: -145px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.contact-section .row .contact-form-col{
  width: calc(59% - 25px);
}
.contact-section .row .contact-info-col h3,.contact-section .row .contact-info-col p{
    color: var(--white);
}
.contact-section .row .contact-info-col .contact-title p{
    font-size: 18px;
    line-height: 28px;
}
.contact-section .icon-box-block{
    margin-top: 50px;
    display: flex;
    gap: 25px;
}
.contact-section .icon-box-block a{
    line-height: 25px;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}
.contact-section .icon-box-block a:hover{
    color: var(--black);
}
.contact-section .icon-box-block img{
    display: block;
    margin-top: 5px;
}
.contact-section .social-media ul{
    list-style: none;
    display: flex;
    gap: 10px;
    margin-top: 50px;
}
.contact-form-col form{
    display: flex;
    gap:77px 40px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.contact-form-col form .col-6{
    width: calc(50% - 20px);
}
.contact-form-col form .col-12,.wpcf7-response-output{
    width:100%;
}
.wpcf7-response-output{
    margin-top: -40px !important;
    text-align: center;
}
.contact-form-col form input.wpcf7-submit{
    font-weight: 500 !important;
    margin-top:-36px;
}
.contact-form-col form .submit-btn{
    position: relative;
}
.contact-form-col form .submit-btn .wpcf7-spinner{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
    margin: 0;
    margin-top: 10px;
}
.contact-form-col form label{
    font-size: 12px;
    color: var(--black);
    line-height: 20px;
    font-weight: 500;
}
.contact-form-col form  input,.contact-form-col form  textarea{
    border: 0;
    border-bottom: 1px solid #8D8D8D !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #8D8D8D;
    box-shadow: none;
    outline: none;
    padding:5px 10px;
    width: 100%;
    font-family: "Saira", serif !important;

}
.contact-form-col form  textarea {
    max-height: 94px;
    padding-top: 60px;
}
.wpcf7-not-valid-tip{
    font-size: 14px;
}
@media(max-width:991px){
    .contact-section .row .contact-info-col,.contact-section .row .contact-form-col{
        width: 100%;
    }
    .contact-section{
        padding: 80px 0;
    }
 }
 @media(max-width:767px){
    .contact-section{
        padding: 60px 0;
    }
    .contact-section .row .contact-info-col{
        padding: 30px 20px;
    }
    .contact-section .icon-box-block{
        gap: 12px;
    }
    .contact-section .row .contact-info-col .contact-title p{
        font-size: 16px;
        line-height: 26px;
    }
    .contact-section .icon-box-block,.contact-section .social-media ul{
        margin-top: 20px;
    }
    .contact-form-col form {
     gap: 40px;
    }
    .contact-form-col form input.wpcf7-submit,.wpcf7-response-output{
        margin-top: -16px !important;
    }
 }

 /* footer */

 footer{
    background-color: var(--primary);
    padding: 14px 0;
 }

 footer .row{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
 }
 footer .row .footer-logo{
    width: 278px;
 }
 footer .row .footer-logo img{
    max-width: 100%;
    width: 100%;
    display: block;
    height: auto;
 }
 footer .row .footer-menu{
    width: calc(100% - 298px);
    display: flex;
    justify-content: flex-end;
}
footer .row .footer-menu ul{
    list-style: none;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}
footer .row .footer-menu ul li{
    position: relative;
}
footer .row .footer-menu ul li:not(:first-child):after{
    content: "/";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translate(0,-50%);
    color: #fff;
    font-size: 20px;
    line-height: 31.48px;
    font-weight: 500;
}
footer .row .footer-menu ul a{
color: var(--white);
text-decoration: none;
font-size: 20px;
line-height: 31.48px;
font-weight: 500;
transition: all 0.3s ease-in-out;
}
footer .row .footer-menu ul a:hover{
    color: var(--black);
}
@media(max-width:991px){
    footer .row .footer-menu ul{
        gap: 24px;
    }
    footer .row .footer-menu ul li:not(:first-child):after{
        left: -12px;
    }
    footer .row .footer-logo {
        width: 248px;
    }
}
@media(max-width:767px){
    footer .row{
        flex-direction: column;
    }
    footer .row .footer-menu{
        width: 100%;
        justify-content: center;
    }
    footer .row .footer-menu ul a{
        font-size: 16px;
        line-height: 27.48px;
    }
}
@media(max-width:575px){
    footer .row .footer-logo {
        width: 178px;
    }
}


/* faq page */

.faq-section{
    padding: 80px 0;
}
.faq-section .row{
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}
.faq-section .row .lef-col{
    border-radius: 20px;
    padding: 26px;
    min-height: 387px;
    max-height: 387px;
    width: calc(36% - 22px);
    background-color: var(--primary);
}
.faq-section .row .lef-col h2,.faq-section .row .lef-col p{
    color: #fff;
}
.faq-section .row .lef-col p {
    color: rgba(255, 255, 255, 0.8);
}
.faq-section .row .faq-col{
    width: calc(64% - 22px);
}
.faq-accordian-des{
    display: none;
}

.faq-accordian-heading-icon .faq-accordian-heading {
    position: relative;
    padding-right: 24px;
}
.faq-accordian-heading-icon .faq-accordian-heading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url(../images/faq-expand.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.faq-accordian-text-box.active .faq-accordian-heading-icon .faq-accordian-heading::after {
    background-image: url(../images/faq-close.svg);
}
.faq-accordian-text-box {
    padding: 20px 0;
    border-top: 1px solid #C8C8C8;
}
.faq-accordian-main-sec .faq-accordian-text-box:last-child{
    border-bottom: 1px solid #C8C8C8;
}
.faq-accordian-heading h6{
    font-size: 18px;
    line-height: 28px;
}
.faq-accordian-des p:first-child{
    margin-top: 22px;
}
.faq-accordian-des p{
    margin-bottom: 16px;
}
.faq-accordian-des p:last-child{
    margin-bottom: 0 !important;
}
.faq-accordian-heading-icon {
    cursor: pointer;
}

.main-content{
    padding:60px 0;
}
.error-page{
    padding:80px 0
}
.error-page{
    text-align: center;
}
.error-page .fill-btn{
    width: fit-content;
    margin: auto;
}
.main-content p,.main-content ol li,.main-content ul li{
    margin-bottom: 12px;
    text-transform: capitalize;
}
.main-content h5:first-child{
    margin-top: 0;
}
.main-content h5{
    margin-top: 50px;
}
.main-content ol,.main-content ul{
    margin-left: 18px;
}
.main-content a{
    color: var(--primary);
}

@media(min-width:992px){
    .faq-section .row .lef-col h2 {
        line-height: 50px;
        margin-bottom: 24px;
    }
}
@media(max-width:1024px){
    .faq-section .row .lef-col{
        width: calc(40% - 22px);
    }
    .faq-section .row .faq-col {
        width: calc(60% - 22px);
    }
}
@media(max-width:991px){
    .faq-section .row .lef-col,.faq-section .row .faq-col {
        width: 100%;
    }
    .faq-section .row .lef-col{
        min-height: 250px;
        max-height: none;
    }
    body:not(.home) .baner-section {
        padding-top: 70px;
    }
}
@media(max-width:767px){
    .faq-section,.error-page{
        padding: 60px 0;
    }
}