header{
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
}
.nav-item:not(:last-child){
    margin-right: 20px;
}
.nav-item{
    color: var(--grey);
    font-family: "Roboto", sans-serif;
    position: relative;
}
.nav-item a{
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}
.nav-item a:before{
    content: '';
    position: absolute;
    left: 9px;
    bottom: 0;
    height: 3px;
    width: 0;
    background: var(--success);
    transition: all 0.3s;
}
.nav-item a:hover, .nav-item.current-menu-item a{
    color: var(--success);
}
.nav-item a:hover:before, .nav-item.current-menu-item a:before{
    width: 22px;
}
.contactus a{
    padding: 12px 25px !important;
    background: var(--success);
    display: inline-block;
    color: var(--white);
}
.contactus a:hover{
    color: var(--white)!important;
    background: var(--primary-hover);
}
.nav-item contactus a:hover:before{
    width: 0;
}

.banner{
    height: 100vh;
}
.banner img{
    height: 100%;
    object-fit: cover;
}
.banner-txt{
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
}
.howwework-sec h2, .partner-sec h2{
    font-size: var(--xtra-big-font);
}


.howwework-sec{
    padding: var(--xtra-space) 0;
}
.howwework-sec .item {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.howwework-sec .item .howwework-inner{
    background: var(--secondary-color);
    padding: 30px 15px;
    text-align: center;
    opacity: .5;
    transition: all 0.3s;
	position: relative;
}
.howwework-sec .howwework-inner:hover, .howwework-sec .howwework-inner.active{
    background: var(--grey);
    transform: scale(1.1) !important;
    opacity: 1;
	border-radius: 30px;
    transition: all 0.3s;
}
.howwework-sec .howwework-inner .icon{
    width: 60px;
    display: inline-block;
}
.howwework-sec .item .icon{
    filter: brightness(0) invert(1);
}
.howwework-sec .item .howwework-inner h5{
    color: var(--grey-text);
    margin: 0 0 10px;
    align-items: center;
	font-weight: 800;
	transition: all 0.3s;
}
.howwework-sec .item .howwework-inner:hover h5,
.howwework-sec .item .howwework-inner.active h5{
    color: var(--white);
}
.howwework-inner h5 span{
    color: var(--grey);
    font-size: 24px;
    border-radius: 100%;
    background: var(--grey-medium);
    height: 35px;
    width: 35px;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s;
}
.howwework-sec .item .howwework-inner:hover h5 span,
.howwework-sec .item .howwework-inner.active h5 span{
    color: var(--white);
    background: var(--success);
}
.howwework-inner p{
    color: var(--grey-text);
    margin: 0 0 30px;
    line-height: 1.5;
}
.howwework-sec .item.center .howwework-inner p{
    color: var(--white);
}
.howwework-inner a{
    display: inline-block;
	position: absolute;
    left: 50%;
	bottom: 15px;
    transform: translateX(-50%);
}
.howwework-sec .item .howwework-inner .btn-secondary{
    background: var(--grey-medium);
}
.howwework-sec .item.center .howwework-inner .btn-secondary{
    background: var(--white);
}
.howwework-sec .item.center .howwework-inner:hover .btn-secondary{
    background: var(--primary-hover);
}
.howwework-sec .owl-theme .owl-dots .owl-dot span{
    width: 18px;
    height: 18px;
}
.howwework-sec .owl-theme .owl-dots{
    margin-top: 60px;
}
.howwework-sec .owl-theme .owl-dots .owl-dot.active span,
.howwework-sec .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}
.howwework-sec .owl-carousel .owl-nav button.owl-prev, 
.howwework-sec .owl-carousel .owl-nav button.owl-next{
    background: var(--grey);
    color: var(--white);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    line-height: 34px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.howwework-sec .owl-carousel .owl-nav button.owl-prev:hover, 
.howwework-sec .owl-carousel .owl-nav button.owl-next:hover{
    background: var(--primary-color);
}
.howwework-sec .owl-carousel .owl-nav button.owl-prev{
    left: -60px;
}
.howwework-sec .owl-carousel .owl-nav button.owl-next{
    right: -60px;
}

/* partner */
.partner-sec{
    background: var(--light-bg);
/*     padding: var(--xtra-space) 0; */
    height: 100vh;
	display: flex;
    align-items: center;
}
.partner-sec h4{
    color: var(--grey);
    font-size: var(--big-font);
    margin-bottom: 10px;
}
.partner-form-inn p{
	margin-bottom: 10px;
}
.partner-form{
    align-items: center;
}
.partner-img{
    padding-right: var(--xtra-space);
    height: 83vh;
}
.partner-img img{
    height: 100%;
    object-fit: cover;
}
.contact-form .form-field{
    margin: 0 0 15px;
}
.contact-form .form-field .form-control{
    background: var(--white);
    border-radius: 0;
    border: 1px solid var(--white);
    padding: 0 10px;
    height: 46px;
}
.contact-form .form-field .form-control::placeholder{
    color: var(--grey-text);
}
.contact-form .form-field textarea.form-control{
    height: 162px;
    padding-top: 10px;
}

/* location */
.location-sec{
    position: relative;
}
.location-sec iframe{
    width: 100%;
    height: 512px;
    border: 15px solid var(--white) !important;
}
.contact-us{
    position: absolute;
    bottom: 20px;
    left: 70px;
    background: var(--dark-bg);
    padding: 30px;
    color: var(--white);
}
.contact-us h3{
    margin-bottom: 20px;
}
.contact-us h6{
    margin-bottom: 10px;
}
.whatsapp-btn{
    margin: 20px 0;
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 14px;
    padding: 10px 14px;
    transition: all 0.3s;
}
.whatsapp-btn:hover{
    background-color: var(--primary-hover);
}
.whatsapp-btn img{
    width: 24px;
    margin-right: 5px;
}
.contact-us h5{
    margin-bottom: 10px;
}
.home-abt a.primary-btn {
    margin-top: 1.5rem !important;
}

/* footer */
footer{
    background-color: var(--dark-bg);
}
.footer-top{
    padding: var(--xtra-space) 0;
}
.footer-innr{
    max-width: 327px;
}
.footer-innr img{
    filter: brightness(0) invert(1);
    max-width: 201px;
}
.footer-innr p{
    color: var(--white);
    font-size: var(--medium-font);
    margin-top: 30px;
    line-height: 1.5;
}
.quick-links h5{
    font-weight: 600;
    color: var(--yellow-text);
}
.quick-links ul li{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.quick-links ul li a, .quick-links ul li p{
    color: var(--white);
    font-size: var(--medium-font);
}
.quick-links svg, .quick-links img{
    font-size: 18px;
    color: var(--yellow-text);
    width: 24px;
    margin-right: 10px;
}
.copyright-sec{
    border-top: 2px solid #22441E;
    padding: 20px 0 40px;
}
.copyright-sec p{
    color: var(--white);
    margin: 0;
    font-weight: 300;
}

.about-page header{
    position: static;
    padding: 14px 0;
}
.about-us h2{
    margin-bottom: 30px;
}
.about-us h3{
	 margin: 25px 0 15px;
}
.about-us p{
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.5;
}
.about-us ul{
	padding: 0 0 15px 15px;
}
.about-us ul li:not(:last-child){
	margin: 0 0 10px;
}
.home-abt{
    background: var(--light-bg);
}
.btn-sec .btn-primary{
    display: inline-block;
    width: auto;
    min-width: auto;
}
.partner-sec.about-form {
    background: linear-gradient(to bottom, var(--light-bg) 60%, var(--dark-bg) 40%);
}
.about-form .contact-form{
    background: var(--white);
    padding: 60px;
}
.about-form .contact-form .form-field{
    border-bottom: 1px solid var(--grey-medium);
    text-align: left;
}
.about-form .contact-form .form-field label{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.about-form .contact-form .form-field .form-control{
    background: var(--light-bg);
}

.page-template-tpl-about footer{
	background: var(--dark-bg) url(../images/footer-bg.png) no-repeat;
	background-size: 100%;
	background-position: bottom center;
}

.wpcf7-not-valid-tip{
    display: none;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output{
    border-color: rgb(220 50 50 / 80%);
    background: rgb(220 50 50 / 20%);
    color: rgb(220 50 50 / 100%);
    padding: 20px;
    border-radius: 0;
    text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: rgb(70 180 80 / 80%);
    background: rgb(70 180 80 / 20%);
    color: rgb(70 180 80 / 100%);
    padding: 20px;
    border-radius: 0;
	text-align: center;
}
.wpcf7-spinner{
	position: absolute;
}
.wpcf7-form-control-wrap{
	width: 100%;
}
.wpcf7-form-control-wrap {
    min-width: calc(100% - 186px);
}
span.wpcf7-form-control-wrap[data-name=country-code], 
span.wpcf7-form-control-wrap[data-name=deadline-time] {
    min-width: auto;
}
.wpcf7-form-control-wrap.recaptcha{
	min-width: auto;
	width: auto;
}
.error404 header{
	position: static;
}
.error-gap{
	padding: var(--xtra-space) 0;
	min-height: 400px;
}

/* responsive */
@media only screen and (max-width: 991px) {
    .nav-item {
        margin: 5px 0;
    }
    .partner-img {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-us {
        left: 15px;
        padding: 10px;
    }
    .quick-links{
        word-break: break-word;
    }
    h1, h2, .howwework-sec h2, .partner-sec h2 {
        font-size: 3rem;
    }
	.howwework-sec .item {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (max-width: 768px) {
	.banner {
		height: auto;
	}
    .banner-txt {
        position: static;
        transform: translateX(0);
        padding: 20px 0;
    }
	.about-form .contact-form {
    	padding: 20px;
	}
    h1, h2, .howwework-sec h2, .partner-sec h2 {
        font-size: var(--big-font);
    }
    .partner-sec h4 {
        font-size: 1.5rem;
    }
    .howwework-sec {
        padding: var(--medium-space) 50px;
    }
    .footer-top {
        padding: var(--medium-space) 0;
    }
    .footer-innr{
        max-width: 100%;
        margin-bottom: 15px;
    }
	.howwework-sec .item {
		grid-template-columns: repeat(2, 1fr);
	}
	.partner-sec{
		padding: 20px 0;
		height: auto;
	}
	.partner-img {
		height: 50vh;
	}
	.error-gap{
		padding: var(--medium-space) 0;
		min-height: auto;
	}
}

@media only screen and (max-width: 575px) {
	.partner-sec h2{
		margin: 0 0 15px;
	}
    .partner-sec.about-form {
		height: auto;
	}
	.about-form .contact-form .col-sm-1.col-sm-auto .form-field{
		border-bottom: 0;
	}
	.howwework-sec .item {
		grid-template-columns: repeat(1, 1fr);
	}
}