img { max-width:100%; height:auto; }
.wp-block-columns { display:flex; flex-wrap:wrap; }

/*--------------------------Header CSS ----------------------------*/

header {
    position: absolute;
    top: 0;
    width: 100%;
	z-index: 9999999999;
}
header .primary-nav {padding: 15px 0;}
body header:not(.navbar-fixed):not(.fixed) .primary-nav { padding-top: 30px; }
/* body:not(.home) {padding-top: 82px;}
body:not(.home) header {background: #fff;} */
body.menu-open, body.country-open, body.team-open, body.menu-p-open, body.cmp-p-open {overflow: hidden;}
 a:hover{
     cursor: pointer;
 }

.header-full {
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding:0px;
}
 
/* .navbar-fixed .header-full {
    padding: 8px 0;
}
 */
.header-left {
    width: 200px;
}

.header-right {
    width: calc(100% - 200px);
    display: flex;
    justify-content:flex-end;
    align-items: center;
}
.header-right > div {width: 100%;}
.header-right .hr-desk-view {display: flex; align-items: center; justify-content: flex-end; gap: 15px;}
/* .header-right .hr-mob-view {display: none;} */
.hr-desk-view .menubar {width: calc(100% - 95px);}
.header-logo img {
    height: auto;
    width: 180px;
    margin: 0;
}

.touch a {
    padding:10px 30px;
    color: var(--white);
    border:solid 2px var(--white);
    font-size:var( --fontSize18px);
    min-height: 47px;
    padding:2px 10px;
    width:170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    margin-right: 40px;
    position: relative;
    overflow: hidden;
}
 
.touch a:hover{
background:var(--bgwhite);
color: var(--sitebluenew);
}
 
.t-menu{
    width: 30px;
    height: 30px;
    justify-content:flex-end;
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
}
.t-menu .nav-m{
    height: 2px;
    width:50%;
    background:var(--bgwhite);
    transition-duration: 0.2s;
}
.t-menu:hover .nav-m{
    width:80%;
    transition-duration: 0.2s;

}
.t-menu .nav-t{
    height: 2px;
    width:100%;
    background:var(--bgwhite);
}

.side-menu{
    position: fixed;
    width: 100%;
    background:rgb(0, 0, 0,0.4);
    right:-100%;
    top:0;
    transition-duration:0.3s;
}
.side-menu.open{
    transition-duration:0.3s;
    right:0;
}
/* .side-menu ul.main-menu{
    max-width: 350px;
    background: var(--white);
    margin-right: 0;
    margin-left: auto;
    height: 100vh;
    padding:100px 30px 30px;
} */
.side-menu .mobile-menu-inner
{
	max-width: 350px;
    background: #fff;
    margin-right: 0;
    opacity: 1;
    margin-left: auto;
    height: 100vh;
    padding: 100px 30px 100px 50px;

}
.side-menu .mobile-menu-inner .mobile-menu-wrap {height: calc(100vh - 200px); overflow-y: auto;}
.side-menu ul.main-menu {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    flex-direction: column;
	padding: 0;
}
.menu-item-has-children>.sub-menu li:first-child {
    padding-top: 5px;
    padding-bottom: 0px !important;
}
.side-menu .menu-item-has-children>.sub-menu li {margin-bottom: 10px;}
.side-menu .menu-item-has-children>.sub-menu li:first-child {margin-top: 10px;}
.side-menu .menu-item-has-children>.sub-menu li:last-child {margin-bottom: 0;}
.close {
    position: absolute;
    top: 45px;
    right: 35px;
    /* width: 30px; */
    cursor: pointer;
    transition-duration: 0.2s;
    z-index: 99;
}
.toggle-menu .close img{
    width:20px;
	filter: brightness(0%);
}
.close:hover {
    transition-duration:0.2s;
    transform: rotate(90deg);
}
.side-menu ul.main-menu li a {
    letter-spacing: 0.2px;
/*     color: var(--sitebluenew); */
	color: var(--font-color);
    padding-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
}
.side-menu ul.main-menu li a:hover {
     color: var(--sitebluenew);
}
.side-menu ul.main-menu li a i, .side-menu ul.main-menu li.menu-item-has-children .fa-angle-right {color: var(--font-color);}
.side-menu ul.main-menu li a:hover, .side-menu ul.main-menu li.menu-item-has-children a:hover .fa-angle-right {color: var(--sitebluenew);}
.side-menu ul.main-menu li{
    padding-bottom:20px;
	text-align:left;
}
.work-full h4{
    text-transform: uppercase;
}
.side-menu ul.main-menu li:last-child{
    padding-bottom:0px;
}
.slide-bg {
    height: 100vh;
    position: relative;
}
/* .overlay{
    width: 100%;
    height:100%;
    padding-top:225px;
    padding-bottom: 100px;
    background-color: rgb(0, 0, 0,0.5);

} */

header.navbar-fixed {
    /* animation: transY 1.6s linear; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 99999;
    -webkit-transform-origin: top;
    transform-origin: top;
    box-shadow: 0 8px 26px -6px rgb(0 0 0 / 15%);
    -webkit-animation: navtrans 0.3s ease-in;
    /* animation: navtrans 1s ease-in; */
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #fff;
/*     background: var(--stickyheader_color); */
    padding: 0;
    animation: transY .6s linear;
}
@keyframes transY {
    0% {
        opacity: 0;
        transform: translateY(-150px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-webkit-keyframes navtrans {
	0% {
		-webkit-transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0%);
	}
}
@-webkit-keyframes navtrans1 {
    100%{transform: translateY(0%);}
    0%{transform: translateY(100%);}
}

.slide-content h1, .slide-content p{
    color: var(--white);
	text-align: left;
}
.slide-content h1 {padding: 0 0 25px; text-transform: none; font-weight:100;}
.slide-content h1:empty {display: none;}
.slider-cnt-btm
{
    position: absolute;
    bottom: 30px;
	left: 50%;
    max-width: 1920px;
    width: 100%;
	transform: translateX(-50%);
}
.slider-cnt-btm-inner {display: grid; grid-template-columns: 4fr 2fr; align-items: flex-end; gap: 10px;}
.slider-cnt-btm-inner .slider-cnt-left {display: grid; grid-template-columns: 300px 300px; align-items: flex-start; gap: 0px;}
.slider-cnt-btm-inner .slider-cnt-left > div {display: grid; /*grid-template-columns: 80px auto;*/ gap: 15px; align-items: center;}
.slider-cnt-btm-inner .slider-cnt-left > div img {width: 100%; height: 80px; object-fit: cover;}
.slider-cnt-btm-inner .slider-cnt-left > div:nth-child(2) {position: relative; padding-left: 20px; margin-left: 20px;}
.slider-cnt-btm-inner .slider-cnt-left > div:nth-child(2):before {content: ''; position: absolute; top: 0; left: 0px; height: 100%; width: 2px; background-color: #fff;}
.slider-cnt-btm-inner h6 {margin: 0; padding: 0; color: #fff; font-size: 20px; font-weight: 400; line-height: 1.4;}
.slider-cnt-btm-inner h6 a, .slider-cnt-btm-inner a h6 {color: #fff; transition: all 0.2s linear;}
.slider-cnt-btm-inner h6 a:hover, .slider-cnt-btm-inner a:hover h6 {color: #fff; text-decoration: underline; transition: all 0.2s linear;}
.slider-cnt-btm-inner .slider-cnt-right h6 {text-align: right;}
.slider-cnt-btm-inner .slider-cnt-right h6 span.icon {display: inline-block; margin-left: 8px; width: 28px; border-left: 1px solid #fff; padding-left: 8px;}
.slider-cnt-btm-inner .slider-cnt-right h6:not(:last-child) {margin: 0 0 5px;}

footer {
    padding:80px 0px 0;
    background-position: center;
}
.footer-full {
    display: flex;
    flex-wrap: nowrap;
    width:100%;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 40px;
}
.footer-one{
    width:33.333%;
}
.footer-one.one>p {
    margin-right:50px;
}
/* .footer-one:nth-child(2){
    width: 33%;
}
.footer-one:nth-child(3){
    width: 21%;
} */
 
.footer-one:first-child p {
    margin-bottom: 35px;
    padding-bottom:0;
}
.social p {
    text-transform: uppercase;
    margin-bottom: 0 !important;
}
.footer-one:first-child img{
    margin-bottom: 15px;
}
.footer-one h5{
    color: var(--white);
    text-transform: uppercase;
}
.footer-one p{
    color: var(--white);
	/* font-family: "Work Sans"; */
	font-size: var(--fontSize18px);
}
.social{
    display: flex;
    flex-wrap:wrap;
	align-items: center;
	gap: 15px;
}

.social ul{
    display: flex;
    padding: 0;
    padding-bottom: 0;
}
.social ul li {padding: 0;}
.social ul li a {
    color: var(--hblue);
    width: 30px;
    display:inline-block;
    height: 30px;
    background-color:var(--bgwhite);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:15px;
    border-radius:50%;
    margin: 0 5px;
}

.quick-links{
    column-count:2;
    padding-left:0;
}
.quick-links li a {
    color: var(--white);
}
.quick-links li a:hover{
    color: var(--sitebluenew);
}
.quick-links li {
    position: relative;
    padding-left: 30px;
    padding-bottom:10px;
}
.quick-links li::after {
    content: "";
    position: absolute;
    top:13px;
    left: 1px;
    width: 13px;
    height: 1px;
    background: #fff;
transition-duration:0.5s;
    transition: all .5s linear;
}
.quick-links li a::before, .quick-links li a::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 1px;
    background: var(--white);
    left: 8px;
    transition: all .5s linear;
	transition-duration:0.5s;

}

/* .quick-links li:hover:after {
transition-duration:0.5s;
left:5px;
}
.quick-links li:hover a:after, .quick-links li:hover a:before {
transition-duration:0.5s;
left: 12px;
}
 */
.quick-links li a::before {
    transform: rotate(45deg);
    top: 11px;
}
.quick-links li a::after {
    transform: rotate(-45deg);
    top: 15px;
}
.email img {
    position: absolute;
    left:0;
    top: 5px;;
}
.email{
    position: relative;
    padding-left: 38px;
}
.footer-one h6{
    font-weight: 500;
    text-transform: none;
    color:var(--white);
    padding-bottom:15px;
	font-size: 20px;
   
    font-weight: 600;
    /* font-family: "Work Sans"; */

}
.email a {
    color: #fff;
	 
    font-size: var(--fontSize18px);
    /* line-height: 43px; */
    /* color: #333333; */
    font-weight: 400;
    /* font-family: "Work Sans"; */
}


.footer-bottom{
text-align: center;
padding:25px 0;
border-top:solid 1px #727272;
}
.footer-bottom p {
    font-size: var(--fontSize20px);
    color: var(--bgwhite);
}

.gotop.top-class{
    position: fixed;
    right: 30px;
    bottom: 30px;
    background:var(--sitebluenew);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.gotop.top-class i{
    color: var(--white);
    font-size: 15px;
}



.home-slider .slick-dots li button:hover:before, .home-slider .slick-dots li button:focus:before{
    display: none;
}
.home-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    background-color: var(--white);
    height: 0px;
    padding: 1px;
    cursor: pointer;
    color:var(--white);
    border: 0;
    outline: none;
    opacity: 0.5;
    /* background: transparent; */
}
.home-slider .slick-dots li button:hover{
    opacity: 1;
}

.home-slider .slick-dots li.slick-active button {
opacity: 1;
}
.home-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.home-slider .slick-dots {
    bottom: 20px;
}






/* about section start */
.wp-block-columns{
    margin-bottom: 0;
}
.site-heading h2{
    position: relative;
}
.site-heading h2 span:before {
    content: "";
    display: inline-block;
    width: 73px;
    margin: 0;
    position: absolute;
    top: 4%;
    left: 0;
    border-color: var(--sitebluenew);
    border-style: solid;
    border-width: 1px 0 0;
}
span.top-head{
    font-size: 15px;
    margin-bottom:20px;
    color:var(--sitebluenew);
    margin-left:5rem;
}
.site-heading h2 span{
    display: block;
}
.about-full {
    display: flex;
    align-items: center !important;
    flex-wrap: wrap;
}
.about-full .about-one:nth-child(1) {
/*     margin-right: 100px; */
/*     flex: 1 0 calc(50% - 0px); */
/*     max-width: calc(50% - 0px); */
}
/* .about-full .about-one:nth-child(2) {
    margin-right: 0px;
    margin-left: 50px!important;
    flex: 1 0 calc(50% - 50px);
    max-width: calc(50% - 50px);
} */
.main-head{
    font-size:60px;
}
.about-full img{
/*     height: 500px; */
	width: auto;
    object-fit: cover;
    object-position: center;
}
/* .about-one p{
    width: 435px;
} */
.common-section .site-button{
    
    margin-top: 20px;

}
.wp-block-button__link:visited {
     color: var(--sitebluenew);
}
.site-button a, button.site-button {
    padding: 10px 30px;
    color: var(--sitebluenew);
    border: solid 1px var(--sitebluenew);
    background-color: transparent;
    font-size: var( --fontSize18px);
    min-height: 47px;
    padding: 2px 10px;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    margin-right: 40px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}
.site-button a:hover, button.site-button:hover {
    background: var(--sitebluenew);
    color: #fff;
}

.site-button.mg-mw a, button.site-button.mg-mw {margin-right: 0 !important; width: auto !important; padding: 6px 20px;}

/* about section end */
/* banner tab start */
/* .tabs {
	width:100%;
	display:inline-block;
}

	
	.tab-links:after {
		display:block;
		clear:both;
		content:'';
	}

	.tab-links li {
		margin:0px 5px;
		float:left;
		list-style:none;
	}

		.tab-links a {
			padding:9px 15px;
			display:inline-block;
			border-radius:3px 3px 0px 0px;
			background:#7FB5DA;
			font-size:16px;
			font-weight:600;
			color:#4c4c4c;
			transition:all linear 0.15s;
		}

		.tab-links a:hover {
			background:#a7cce5;
			text-decoration:none;
		}

        .tab-links li.active a, .tab-links li.active a:hover {
		background:#fff;
		color:#4c4c4c;
	}


	.tab-content {
		padding:15px;
		border-radius:3px;
		box-shadow:-1px 1px 1px rgba(0,0,0,0.15);
		background:#fff;
	}

		.tab {
			display:none;
		}

		.tab.active {
			display:block;
		} */

/* banner tab end */

/* Banner -- START */
.head-ser-bannner {
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    transition: all .5s ease-in-out;
    overflow: hidden;
    margin: 0 0 50px;
    z-index: 1;
}
.head-ser-bannner-innr {
    display: flex;
    align-items: center;
    height: 350px;
    margin: 0 auto !important;
}
.head-ser-bannner-innr h1 {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 0 60px;
}
.head-ser-bannner-innr h1::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 50px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
}
.head-ser-bannner-innr figure {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.head-ser-bannner-innr figure img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}
/* Banner -- END */

/* Title Block -- START */
.title-block {
    margin: 0 0 25px;
}
.title-block .wp-block-columns .wp-block-column h3 {
    text-transform: uppercase;
    padding: 0 0 0;
}
.title-block .wp-block-columns .wp-block-column h3 span {
    display: block;
    color: var(--sitebluenew);
    font-weight: 300;
    margin: 0 0 5px;
}
/* Title Block -- END */

/* Service Block Page -- START */
/* .service-block .wp-block-column {
    position: relative;
    padding: 25px;
    background: #f5f5f5;
    box-shadow: 5px 7px 7px -4px rgb(0 0 0 / 15%);
    margin: 0 0 2em;
    transition: all .5s linear;
} */
.service-block .wp-block-column {
    position: relative;
    padding: 25px;
    background: #000;
    box-shadow: 5px 7px 7px -4px rgb(0 0 0 / 15%);
    margin: 0 0 3em;
    transition: all .5s linear;
	padding:45px;
}
.service-block .wp-block-column figure img {
    WIDTH: auto;
    object-fit: contain;
    /* height: 60px; */
    margin-bottom: 46px;
/*     filter: invert(1); */
}
.service-block .wp-block-column figure {
    text-align: right;
}
.service-block h4{
	color:#fff
}
.service-block p{
	color:#fff;
}
.service-block p:nth-child(1){
	color:#fff;
	    margin-bottom: 30px;
}
.ser-link{
	margin-top:20px
}
.service-block .ser-link a{
	color:#fff
}
.home .inner-page-spacing{
	padding:0
}
/* .about-section{
	padding-top:30px
} */
.even-sec-bg {background-color: rgba(0, 170, 214, 0.2);}
.service-block .wp-block-column:hover {
    box-shadow: 5px 7px 7px -4px rgb(0 0 0 / 20%);
}   
.service-block .wp-block-column.column-dark {
    background: var(--sitebluenew);
	padding:45px;
}
.service-block .wp-block-column h4 {
    position: relative;
    padding: 0 0 15px;
    margin: 0 0 30px;
    font-size: var(--fontSize36px);
}
.service-block .wp-block-column h4::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--white);
}
.service-block .wp-block-column.column-dark h4::after {
    background: #fff;
}
.service-block .wp-block-column p {
    font-size: var(--fontSize24px);
}
/* .service-block .wp-block-column.column-dark figure img {
    filter: invert(1);
} */
.service-block .wp-block-column.column-dark h4 {
    color: #fff;
}
.service-block .wp-block-column.column-dark p {
    color: #fff;
/* 	margin-bottom: 30px; */
}
/* Service Block Page -- END */

/* Section Banner -- START */
.section-banner {
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    overflow: hidden;
}
.section-banner .wp-block-column {
    padding: 100px 60px;
}
.section-banner .wp-block-column h3.wrapper {
    color: #fff;
}
.section-banner .wp-block-column p.wrapper {
    color: #fff;
    margin: 15px auto 0;
}
.service-block .wp-block-column p.ser-link a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
}
.service-block .wp-block-column p.ser-link a::after {
    content: "";
}
.service-block .wp-block-column.column-dark p.ser-link a {
    color: #fff;
}
.service-block .wp-block-column p.ser-link a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: all .5s linear;
}
.service-block .wp-block-column.column-dark p.ser-link a::after {
    background: #fff;
}
.service-block .wp-block-column p.ser-link a:hover::after {
    width: 100%;
}
.section-banner .wp-block-column figure {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.section-banner .wp-block-column figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 35%);
}
.section-banner .wp-block-column figure img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}
/* Section Banner -- END */

/*****contact page design***/
.contact-detail {
    background-color: var(--sitebluenew);
    padding: 20px;
}
.contact-detail p {
    color: #fff;
    padding-left: 30px;
    position: relative;
}
.contact-detail p a{
    color: #fff;
}
.contact-detail p a:hover {
    color: #000;
}
.address:before {
    content: '\f041';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 20px;
}
.mobile:before {
    content: '\f10b' !important;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 20px;
}
.mail-field:before {
    content: '\f0e0' !important;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}
.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap select, .wpcf7-form-control-wrap textarea  {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: var(--fontSize18px);
    border: solid 1px #cbcbcb;
	font-family: "Manrope", sans-serif;
}
.map {
    margin-bottom: 50px;
}
.wpcf7-form-control-wrap select {
    color: #888284;
	font-family: "Manrope", sans-serif;
}
.wpcf7-form.invalid .wpcf7-response-output {
    border: none;
}
.wpcf7-form-control-wrap textarea {
    resize: none;
    height: 151px;
}
/* .site-button {
    padding: 10px 30px;
    color: var(--white);
    border: solid 1px var(--sitebluenew);
    background-color: var(--sitebluenew);
    font-size: var( --fontSize18px);
    min-height: 47px;
    padding: 2px 10px;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    margin-right: 40px;
    position: relative;
    overflow: hidden;
}
.site-button:hover {
    background: var(--bgwhite);
    color: var(--sitebluenew);
} */

.project-section .project-listing {
    
    padding: 30px 0px 0;
}
.home-team-sec .team-sec {
    padding: 80px 0px 80px;
}

.tab {
    overflow: hidden;
    border: 0;
    background-color: #fff;
    order: 2;
    width: 7%;
}
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
  }
  .tab button:hover {
    background-color: #ddd;
  }
  
  .tab button.active {
    background-color: #ccc;
  }
  
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 0;
    border-top: none;
    width: 93%;
    padding-right: 0;
}
.home-blog-full li{
    list-style-type: none;
}
.home-blog-full li.active {
    list-style-type: none;
    width: 90px;
    height: 90px;
    background-color: #004f7e;
    text-align: center;
    margin-right: 0px;
    color: #fff;
}
.home-blog-full li {
    list-style-type: none;
    width: 90px;
    height: 90px;
    background-color: #fff;
    text-align: center;
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 34px;
    color: #000;
    display: flex;
    font-weight: bold;
    /* font-family: "S FPro Display"; */
    text-align: center;
    margin-right: 0px;
    align-items: center;
    justify-content: center;
	padding-bottom:0;
}
.home-blog-full {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}

.home-blog-full h6{
    font-size: 24px;
    letter-spacing: 0px;
    /* line-height: 42px; */
    color: #004f7e;
    padding-bottom: 10px;
}
.home-blog-full h3{
    font-size: 34px;
    letter-spacing: 0px;
    /* line-height: 42px; */
    text-transform: uppercase;
    margin-bottom: 25px;
}
.home-blog-full h5{
    width: 395px;
    /* height: 61px; */
    font-size: var(--fontSize36px);
    letter-spacing: 0px;
    line-height: 40px;
    text-transform: capitalize;
    color: #000000;
    font-weight: bold;

}
.home-blog-full p {
    width: 380px;
    /* height: 157px; */
    font-size: var(--fontSize24px);
    line-height: 32px;
    color: #000000;
}
.bg-full {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.blog-one {
    width: 40%;
}
.blog-one:nth-child(2) {
    width: 55%;
}
.blog-one img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}
.tab {
    overflow: hidden;
    border: 0;
    background-color: #fff;
    order: 2;
    width: 7%;
}
.blog-btn{
    margin-top: 30px;
}
.blog-btn.site-button a {
    background:transparent;
    color: var(--sitebluenew);
}
.blog-btn.site-button a:hover {
    background: var(--sitebluenew);
    color: var(--bgwhite);
}

/* .h-services-wrapper .blog-btn.site-button.project-button a {
    background: var(--sitebluenew);
    color: #fff;
}
.h-services-wrapper .blog-btn.site-button.project-button a:hover {
    background: transparent;
    color: var(--sitebluenew);
} */

.team-des .team-full {
	padding-bottom:30px
}

.home-testi-full {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.testi-one:nth-child(1){
    width: 30%;
}
.testi-one:nth-child(2){
    width: 70%;
}
.testi-content{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.testi-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 30px !important;
    margin: 0 auto;
	 object-fit: cover;
}
.testi-one:nth-child(1) img {
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.home-testi .testi-one:nth-child(1) img {
	height: 600px;
}
.page-id-372 .home-testi .testi-one:nth-child(1) img {
	height: 60px;
}
.testi-one:nth-child(2){
    padding: 65px;
}
.home-testi-full h2 {
    margin-bottom: 15px;
    font-size: 36px;
    text-align: center;
}
.testi-content .description p{
    position: relative;
    margin-top: 50px;
    margin-bottom: 40px;
    max-width: 90%;
    margin: 0 auto;
}
.testi-content .description p:before {
    content: "";
    position: absolute;
    color: #fff;
    left: -40px;
    top: -23px;
    width: 26px;
    height: 26px;
    background-size: contain;
    background: url(../images/right-arrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
}
.testi-content .description p::after {
    content: "";
    position: relative;
    display: inline-block;
    color: #fff;
    right: -20px;
    bottom: -23px;
    width: 26px;
    height: 26px;
    background-size: contain;
    background: url(../images/left-arrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.prj-title h2 {
    padding-bottom: 5px;
    font-size: 36px;
}
.prj-details .prj-img img {
	height: auto;
}
.authoe-name {
    font-size: 18px;
    padding-bottom: 0px;
    color: #000;
    font-weight: 600;
    font-style: italic;
	margin-top:30px;
}
.ltst:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: solid 0px #666;
}
.designiation{
    font-size: 18px;
    padding-bottom: 5px;
    color: var(--sitebluenew);
    font-weight: 600;
    font-style: italic;
}
.home-testi-full .slick-dots li.slick-active button{
    opacity: 1;
    
}
.home-testi-full .slick-dots li button:before {
   display: none;
}
.home-testi-full .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 27px;
    height: 0px;
    padding: 2px;
    cursor: pointer;
    color: transparent;
    opacity: 0.5;
    border: 0;
    outline: none;
    background: var(--sitebluenew);
}
.home-testi-full .slick-dots {
    position: absolute;
    bottom: -60px;
}
.testi-inner-content .testi-one{
    width: 100%;
}
.testi-inner-content .testi-content img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px !important;
    margin: 0 auto;
}
.author-content {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.author-content-full .designiation{
    display: block;
}


.testi-inner-content .testi-content{
    width: 100%;
    position: relative;
    padding: 30px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
    margin-bottom: 25px;
    opacity: 0.8;
    background-color: #fff;
}
.testi-inner-content .testi-content .description {
    position: relative;
    margin-top: 50px;
    margin-bottom: 40px;
    max-width: 90%;
    margin: 0 auto;
    font-style: italic;
    font-weight: 400;
}
a.page-numbers {
    background-color: var(--sitebluenew);
	border:2px solid var(--sitebluenew);
    width: auto;
    height: auto;
    padding: 10px 16px;
    color: #fff;
	font-size: 16px;
	    display: inline-block;
}
.page-numbers:hover{
	background-color:#fff;
	color:var(--sitebluenew);
}
span.page-numbers.current{
	background-color:#fff;
	color:var(--sitebluenew);
	border:2px solid var(--sitebluenew);
    width: auto;
    height: auto;
    padding: 12px 16px;
	display: inline-block;
	font-size: 16px;
}
.pagination {
    margin-top: 50px;
    text-align: center;
}


/* blog section start */


/* blog section start */
.blog .blog-d {
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.blog .blog-d .part-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.part-img img{
	 width: 100%;
    height: 300px;
    object-fit: cover;
}
.blog .blog-d .part-txt {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-d .site-button{
    margin-top: auto;
}
.blog .blog-d .part-txt .date {
position: absolute;
    bottom: 100%;
    left: 15px;
    text-align: center;
    color: var(--bgwhite);
    background: var(--sitebluenew);
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
    z-index: 2;
    padding: 5px 15px !important;
}
.blog .blog-d .blog-inner:hover .part-txt .date:after {
    background: var(--bgwhite);
    border-color: var(--siteblue);
    -webkit-animation: 5s spin linear infinite;
    animation: 5s spin linear infinite;
}

 

.blog .blog-d .part-txt h2 {
   
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--siteblue);
    margin-bottom: 0px;
/*     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical; */
	padding-bottom:15px;
}
.blog .blog-d .part-txt h2 a{
    
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--siteblue);
    margin-bottom: 15px;
}
.blog .blog-d .part-txt h2 a:hover{
	color:#004f7e
}

.blog .blog-d .part-txt p {
   
    margin-bottom: 14px;
    margin-top: auto;
}
.blog-details-one .part-txt .date:after{
	display:none;
}
.recent-post h4{
	display:none
}
.pagination {
    width: 100%;
    text-align: center;
}
.page-numbers.current {
    background-color: var(--sitebluenew);
    border:2px solid var(--sitebluenew);
    width: 20px;
    height: 13px;
    line-height: 1;
    padding: 10px 15px;
    color: #fff;
}
.page-numbers:hover {
    background-color: var(--bgwhite);
    border:2px solid var(--sitebluenew);
/*     width: 20px;
    height: 20px;
    line-height: 20px; */
/*     padding: 10px 15px; */
    color:var(--sitebluenew);
}
.page-numbers {
    background-color: transparent;
    border:2px solid var(--sitebluenew);
    width: 20px;
    height: 13px;
    line-height: 20px;
    padding: 10px 15px;
    color: var(--sitebluenew);
}
.blog .blog-d:hover {
    -webkit-box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
    box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
}

.blog-full{
    display: flex;
    flex-flow:wrap;
    justify-content: center;
    width: 100%;
}
.blog-d{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 30.333%;
    margin: 0 10px 0;
   
}
.blog-d .blog-inner{

    display: flex;
    flex-direction: column;
    background: #f2f2f2;
    margin: 0 0px 0;
    height: 100%;
    overflow: hidden;
    
}
.blog-details-full{
    display: flex;
    flex-flow:wrap;
    justify-content: space-between;
    width: 100%;
}
.blog-details-one{
    margin-right: 30px;
    flex: 1 0 calc(70% - 30px);
    max-width: calc(70% - 30px);
    text-align: left;
    background-color: var(--bgwhite);
}
.blog-details-one:nth-child(2){
    margin-right: 0px;
    flex: 1 0 calc(30% - 0px);
    max-width: calc(30% - 0px);
    
    background-color: var(--bgwhite);
}
.blog-details-one .part-img img {
    width: 100%;
	    height: auto;
}
.blog-details-one .part-txt {
    padding: 0px;
    position: relative;
}
.single-cpt-case-studies .blog-details-one .part-img img {
    width: 100%;
    height: auto;
}
.blog-details-one .part-txt .date {
    position: absolute;
    bottom: 100%;
    left: 35px;
    text-align: center;
    width: 82px;
    height: 51px;
    line-height: 50px;
    border-radius: 0;
    color: var(--bgwhite);
    font-size: 15px;
    text-transform: uppercase;
    padding: 0px 0;
    margin-bottom: 20px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 2;
    background-color: var(--sitebluenew);
}
.blog-details-one .part-txt .date:hover{
	color:#fff;
}
.blog-details-content h2 {
    font-size: 30px;
    text-transform: capitalize;
    margin-top: 30px;
	line-height:36px;
}
.blog-details-content h2:first-child {margin-top: 0;}
.blog-details-one .blog-inner:hover .part-txt .date:after {
    background: var(--bgwhite);
    border-color: var(--siteblue);
    -webkit-animation: 5s spin linear infinite;
    animation: 5s spin linear infinite;
}
.cpt-case-studies-template-default .blog-details-one:nth-child(2) ul {
    padding-bottom: 35px;
}
.cpt-case-studies-template-default .sidebar .side-blog{
	margin-bottom:0px
}
.blog-details-one .part-txt .date:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:var(--sitebluenew);
    border: 1px dashed var(--bgwhite);
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
}
.blog-details-one:hover .part-txt .date {
    color: #fff;
}
.blog-details-content ul {list-style-type: disc;}
.blog-details-content ol {list-style-type: decimal; padding-left: 35px;}
.blog-details-content .wp-block-list ul.wp-block-list, .blog-details-content .wp-block-list ol.wp-block-list {padding-bottom: 0; padding-top: 15px;}
.blog-details-content ul.wp-block-list li:last-child, .blog-details-content ol.wp-block-list li:last-child {padding-bottom: 0;}

.services-details-cnt .wp-block-list ul.wp-block-list, .services-details-cnt .wp-block-list ol.wp-block-list {padding-bottom: 0; padding-top: 15px;}
.services-details-cnt ul.wp-block-list li:last-child, .services-details-cnt ol.wp-block-list li:last-child {padding-bottom: 0;}

.site-button.site-btn-group
{
	display: flex;
    flex-flow: row wrap;
	justify-content: center;
    gap: 15px;
}

.site-button.site-btn-group a
{
	margin: 0; width: auto;
}

.tags a {
    height: 40px;
    line-height: 38px;
    padding: 0 20px;
    border: 1px solid var(--colorblack);
    border-radius: 0px;
    font-size: 18px !important;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--colorblack);
    margin-bottom: 11px;
    margin-right: 0px;
}
.navbar-fixed .header-logo img {
    height: 64px;
    width: auto;
    margin: 0px 0;
}
.tags a:hover {
    background-color: var(--sitebluenew);
    color: #fff;
    border: 1px solid var(--sitebluenew);
}
 .sidebar .category {
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
    box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
    padding-top: 25px;
    margin-bottom: 30px;
	 padding-bottom:25px;
}
.sidebar .category h3 {
    font-size: 23px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--siteblue);
    padding: 0 25px 25px;
    margin-bottom: 0;
}
.sidebar .category ul {
    padding: 0 25px;
    margin: 0;
}
.sidebar .category ul li {
    list-style: none;
    margin-bottom: 0;
    display: flex;
}
.sidebar .category ul li span{
    padding: 15px 0 15px 0px;
    width:5%;
}
.sidebar .category ul li a {
    display: block;
    font-size: 16px;
    width: 95%;
    font-weight: 400;
    text-transform: capitalize;
    color: #000;
    padding: 15px 0 15px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}
.sidebar .category ul li:last-child a {padding-bottom: 0;}
.sidebar .category ul li{
	padding-bottom:0px;
}
.sidebar .side-blog {
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
    box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
    padding-top: 30px;
    margin-bottom: 30px;
	padding-bottom:40px;
}
.sidebar .side-blog h3 {
    font-size: 23px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--siteblue);
    padding: 0 25px 25px;
    margin-bottom: 0;
}
.sidebar .side-blog ul {
    padding: 0 25px;
    margin: 0;
}
.sidebar .side-blog ul li {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
    margin-bottom: 0;
    /* padding: 20px 0; */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.sidebar .side-blog ul li:last-child {padding-bottom: 0;}
.sidebar .side-blog ul li img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: cover;
}
 .sidebar .side-blog ul li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000;
}
.sidebar .tags {
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
    box-shadow: 0px 4px 10px 2px rgb(0 0 0 / 10%);
    padding: 40px;
    margin-bottom: 30px;
}
.sidebar .tags h3 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--siteblue);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.sidebar .tags ul {
    display: flex;
    flex-wrap: wrap;
}
.sidebar .tags ul li {
    height: 40px;
    line-height: 38px;
    padding: 0 20px;
    border: 1px solid var(--siteblue);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--siteblue);
    margin-bottom: 20px;
    margin-right:15px
}
.sidebar .tags ul li a {
   
    font-weight: 600;
    text-transform: capitalize;
    color: var(--siteblue);
    
}
.sidebar .tags ul li:hover {
    color: var(--bgwhite);
    background: var(--siteblue);
}
.sidebar .tags ul li:hover a {
    color: var(--bgwhite);
}
 


 .home-testi.common-section{
    padding-bottom:0px;
    padding-top:0px;
 }
 #tab-01{
    display: block;
 }
 .home-blog-full .tabcontent{
    padding:0;
 }
.ser-link{
	display:none;
}
.gotop a{
	font-size:15px;
}
.gotop.top-class:hover{
	background-color:#000;
}
.social ul li a:hover {
   
	background-color: #fff;
	
}
.social ul li a:hover i{
	color: var(--sitebluenew);
}
.email a:hover, .foo-addr a:hover > p{
	color: var(--sitebluenew);
}
.team-des .team-sec {
    padding: 20px 0px;
}
.h-team .team-des .team-sec {padding: 0;}
.team-text h4:hover{
	color: var(--sitebluenew);
}
.home-blog-full li{
	padding:0;
}
.blog-btn.site-button.project-button{
	    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.team-sec h2{
	font-size:36px
}
.home-testi .blog-btn.site-button a{
	margin-right:0px;
	margin-top: 10px;
}
.home-testi-full .slick-dots {
    position: absolute;
    bottom: -35px;
}
.page-id-372 .home-testi-full{
	padding:70px 0;
}
.page-id-30 .team-sec {
    padding: 70px 0px 70px;
}
/* .mobile-menu li.menu-item-has-children.down>.sub-menu {
    max-height: 1000px;
    transition-duration: 0.5s;
}

.mobile-menu li.menu-item-has-children .sub-menu {
    max-height: 0px;
    overflow: hidden;
    transition-duration: 0.5s;
    transform-origin: top;
    margin-left: 10px;
}
.mobile-menu li.menu-item-has-children.down> .fa-angle-right {
    transform: rotate(90deg);
    transition-duration: 0.5s;
}
li.menu-item-has-children .fa-angle-right {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #2da2a6;
    cursor: pointer;
    transition-duration: 0.0s;
    font-weight: 600;
} */

.mobile-menu li.menu-item-has-children .sub-menu {
    max-height: 0px;
    overflow: hidden;
    transition-duration: 0.5s;
    transform-origin: top;
    margin-left: 10px;
	padding:0px
}
.menu-item-has-children.menuselected .sub-menu {
    display: block !important;
	vertical-align: middle;
	}
	.menu-item-has-children>.sub-menu li a {
    border-bottom: none;
/*     text-transform: uppercase; */
}
	.menu-item-has-children>.sub-menu li {
    width: 100%;
    padding-bottom: 0px !important;
}
.menu-item-has-children>.sub-menu li {
   
		width: 100%;
	}
.control-label{
		cursor:pointer;
	}
	.control-label:after{
		position:absolute;
		font-size:25px;
		content:'\f105';
		right:3px;
		top:-2px;
		color:#fff;
		    font-family: 'FontAwesome';
			transition-duration:0.5s;
	}
	.menuselected>.control-label:after{
		transform:rotate(90deg);
			transition-duration:0.5s;
	}
	.menu-item-has-children>.sub-menu>li.menu-item-has-children .sub-menu{
	left: 0;
    position: relative;
     padding-top:0;
		max-height:0;
		overflow:hidden;
		transition-duration:0.5s;
	}
/* 	.menu-item-has-children>.sub-menu li{
		width:100%;
	} */
	.menu-item-has-children>.sub-menu li a{
		border-bottom:none;
		font-size:16px !important;
		position:relative;
/* 		color:#03304A !important; */
		margin-left:18px;
	}
.menu-item-has-children>.sub-menu li a:before {
    content: '';
    position: absolute;
    top: 11px;
    left: -23px;
    display: inline-block;
    font-size: 12px;
    width: 17px;
    border-bottom: 1px solid var(--font-color);
}
.menu-item-has-children>.sub-menu li.current-menu-item a:before {border-bottom: 1px solid var(--sitebluenew);}
	
		.menu-item-has-children.menuselected .sub-menu{
		min-height:auto;
		height:auto;
		max-height:1000px;
		transition-duration:0.5s;
			
	}
	
		.menu-item-has-children>ul.sub-menu:before{
		display:none;
	}
.mobile-menu li.menu-item-has-children.down> .fa-angle-right {
/*     transform: rotate(90deg); */
	    transform: rotate(270deg);
    transition-duration: 0.5s;
}
.mobile-menu li.menu-item-has-children.down>.sub-menu {
    max-height: 1000px;
    transition-duration: 0.5s;
}
.mobile-menu li.menu-item-has-children {
    position: relative;
}
li.menu-item-has-children .fa-angle-right {
    position: absolute;
    top: 5px;
    right: 12px;
    /* color: var(--sitebluenew); */
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    transition-duration: 0.0s;
    font-weight: 600;
    transform: rotate(90deg);
}
.mobile-menu li.menu-item-has-children .sub-menu {
    max-height: 0px;
    overflow: hidden;
    transition-duration: 0.5s;
    transform-origin: top;
    margin-left: 0px;
    /* margin-top: 10px; */
}
.side-menu ul.main-menu li.current_page_ancestor>a{
	    color: var(--sitebluenew);
	font-weight:500;
}
.side-menu ul.main-menu li.current_page_item>a{
	 color: var(--sitebluenew);
	font-weight:500;
/* 	opacity: 0.7; */
}
.side-menu ul.main-menu li.current_page_ancestor>i, .side-menu ul.main-menu li.current_page_item> i, .side-menu ul.main-menu li.menu-item-has-children.current_page_item > .fa-angle-right, .side-menu ul.main-menu li.menu-item-has-children.current_page_ancestor > .fa-angle-right { color: var(--sitebluenew);}
.inner-page-spacing h3{
	font-size:30px;
/* 	text-transform:uppercase; */
}
textarea::-webkit-input-placeholder {
/*     font-size: 20px; */
    /* font-family: 'MADE Evolve Sans'; */
    font-family: "Manrope", sans-serif;
}

textarea:-moz-placeholder { /* Firefox 18- */
/*     font-size: 20px; */
    /* font-family: 'MADE Evolve Sans'; */
    font-family: "Manrope", sans-serif;
}

textarea::-moz-placeholder {  /* Firefox 19+ */
/*     font-size: 20px; */
    /* font-family: 'MADE Evolve Sans'; */
    font-family: "Manrope", sans-serif;
}
.email-one h3{
	font-size:25px
}
.email-one a {color: var(--font-color);}
.email-one a:hover {color: var(--sitebluenew);}

textarea:-ms-input-placeholder {
    font-size: 18px; 
    /* font-family: 'MADE Evolve Sans'; */
    font-family: "Manrope", sans-serif;
}
.email-one .wp-block-image {
	border: 1px dashed var(--hcolor) !important;
}
.email-one:nth-child(3) .wp-block-image img{
	position:relative;
	top:-3px;
}
.social p{
	font-weight:600;
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-linkedin:before {
  content: "\f0e1";
}
select{
	-webkit-appearance: menulist;
	appearance: menulist;
	background: transparent;
	border-radius:0px
}
input,
option
 {
   -webkit-appearance: none;
   appearance: none;
  
   background: transparent;
	 border-radius:0px
}
.about-team .blog-btn.site-button a{
	margin-right:0px;
}
.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap select, .wpcf7-form-control-wrap textarea{
	appearance:none;
}
.wpcf7-form-control-wrap input[type="checkbox"] {appearance: auto; margin: 0; cursor: pointer;}
.wpcf7-form-control-wrap select{
	position:relative;
/* 	background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right; */
	 -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
	cursor:pointer;
}
.blog-btn.site-button a{
	margin-right:0px
}
.team-img figure:after{
	display:none;
}
.case h2:hover{
	color: var(--sitebluenew);
}
.wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item {margin: 0;}
.wpcf7-form-control.wpcf7-checkbox label {display: grid; grid-template-columns: 20px auto; gap: 10px; cursor: pointer; font-size: 16px;}

.inner-ban-image:before{
content:'';
position:absolute;
	top:0;
	left:0;
	display:inline-block;
	width:100%;
	height:100%;
	    background: rgb(0, 0, 0, 0.3);
}
.in-ban-content .wrapper {
    position: absolute;
    top: calc(50% + 40px);
	left: 50%;
    max-width: 1920px;
    width: 100%;
	transform: translate(-50%, -50%);
}
.inner-ban-image img{
	width:100%;
	height: 700px;
	object-fit:cover
}
.inner-ban-image.default_banner_image img {
    object-position: 50% 29%;
}
.in-ban-content{
	padding:0 !important
}
.pj-content h2{
    text-transform: capitalize;
}
.pj-content h2 a{
    font-size: var(--fontSize26px);
}
.minus.title{
    font-size: 36px;
}
.home-blog-full h3{
    display: none;
}
.pop-ff h3{
	text-transform:capitalize !important;
}

.privacy-policy .inner-page-spacing h3 {
    font-size: 30px;
    text-transform: capitalize;
/* 	margin-top:30px; */
}
strong.privacy-policy-tutorial {
    font-weight: 400;
}
.privacy-policy p{
	padding-bottom: 25px;
	max-width:80%

}
.privacy-policy .inner-page-spacing h3 p strong{
	font-weight:500;
}
.privacy-policy .in-ban-content  p  {
    max-width: 100%;
}

.slide-bg::before{
	content:'';
	display:inline-block;
	position:absolute;
	top:0;
	left:0;
	    width: 100%;
    height: 100%;
    /* padding-top: 225px;
    padding-bottom: 100px; */
	background-color: rgb(0, 0, 0,0.3);
}
.banner-bg{
	height: 100vh;
	width:100%;
	object-fit:cover;
}
.overlay{
	position: absolute;
    top: 50%; /*calc(50% - 62px)*/
    max-width: 1920px;
    width: 100%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.service-block .wp-block-column:hover{
	background-color:var(--sitebluenew)
}
.service-block .wp-block-column.column-dark:hover {
    background: #000;
}
.header-bottom{
	    position: absolute;
    bottom: 20px;
    right: 165px;
    /* width: 30px; */
    cursor: pointer;
    transition-duration: 0.2s;
    z-index: 99;
}
.header-bottom .social {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}
.header-bottom .social ul {
    display: flex;
    padding-bottom: 0;
    padding-left: 14px;
    padding-left: 0;
}
/* .header-bottom .social ul li a{
	background-color:#000;
} */
.header-bottom .social ul li a:hover{
	background-color:transparent;
}
.header-bottom .social p {
    font-weight: 600;
    color: var(--font-color);
	margin-left: -33px;
	padding: 0;
}
.header-bottom .social ul li a {
    color: var(--font-color);
    width: auto;
    display: inline-block;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    border-radius: 50%;
    margin: 0 10px;
}
.prj-detail-full .latest-post {
    padding: 40px 45px;
    background: #e7e7e7;
}
.max-para-80{
	max-width:70%;
	margin:0 auto;
}

.mobile-logo {display: none;}

@media (max-width: 767px)
{
	.desktop-logo {display: none;}
	.mobile-logo {display: inline-block;}
}

.menubar nav > ul {display: flex; flex-flow: row wrap; align-items: center; justify-content: center; gap: 25px; padding: 0; margin: 0;}
.menubar nav > ul > li {margin: 0; padding: 0;}
.menubar nav > ul > li > a {display: inline-block; color: #fff; font-size: 21px; padding: 10px 0;}

.navbar-fixed .menubar nav > ul > li > a {color: var(--font-color);}
.menubar nav > ul > li:hover > a, .menubar nav > ul > li.current-menu-parent > a, .menubar nav > ul > li.current-menu-item > a {display: inline-block; color: var(--sitebluenew); opacity: 1;}
.navbar-fixed .menubar nav > ul > li:hover > a, .navbar-fixed .menubar nav > ul > li.current-menu-parent > a, .navbar-fixed .menubar nav > ul > li.current-menu-item > a {color: var(--sitebluenew); opacity: 1;}


@media screen and (max-width: 1150px)
{
    .header-right .hr-desk-view .menubar {display: none;}
    /* .header-right .hr-mob-view {display: flex; justify-content: flex-end; align-items: center;} */
}

.main-slider.slick-dotted.slick-slider {margin: 0 !important;}
.h-video-wrap {position: relative;}
img.hplay-btn {width: 45px; height: 45px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.2s linear;}
.h-video-wrap:hover img.hplay-btn {transform: translate(-50%, -50%) scale(1.1); transition: all 0.2s linear;}

.fancybox-container {z-index: 999999999 !important;}

/*-----------------*/

/* body.home .header-left {display: none;}
body.home .header-full, body.home .header-right, body.home .header-right .hr-desk-view {justify-content: center;} */

/* body.home .navbar-fixed .header-left {display: block;}
body.home .navbar-fixed .header-full, body.home .navbar-fixed .header-right, body.home .navbar-fixed .header-right .hr-desk-view {justify-content: flex-end;} */

.menu-btns ul {padding: 0; margin: 0; list-style-type: none; display: flex; flex-flow: row nowrap; align-items: center; justify-content: center; gap: 10px;}
.menu-btns ul li {padding: 0; margin: 0;}
.menu-btns ul li a.lang-globe {display: inline-flex; align-items: center; gap: 5px;}
.menu-btns ul li a span.globe-ico {display: inline-flex; align-items: center;  justify-content: center; width: 35px; height: 35px; /*border: 2px solid #fff;*/ border-radius: 50%;}
.menu-btns ul li a span.globe-ico img {width: auto; height: 29px;}

/* .navbar-fixed .menu-btns ul li a span.globe-ico {border: 2px solid #000; border-radius: 50%;} */
.navbar-fixed .menu-btns ul li a span.globe-ico img {filter: invert(100%);}
.navbar-fixed .t-menu .nav-t, .navbar-fixed .t-menu .nav-m, body.country-open .t-menu .nav-t, body.country-open .t-menu .nav-m {background: #000;}
/* body.country-open li#current-lang-display {color: #fff;}
 */

/*---------LG SubMenu*/

.menu-item-has-children
{
    position: relative;
}
.menubar ul.sub-menu
{
    position: absolute;
    left: 0%;
    width: auto;
    min-width: 250px;
    height: auto;
    z-index: 99;
    background-color: #34b0d9;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transform-origin: top;
    transform-origin: top;
    visibility: hidden;
    opacity: 0;
    margin: 10px 0 0;
    padding: 15px 0;
    -webkit-transition: all 0.2s cubic-bezier(.165,.84,.44,1);
    transition: all 0.2s cubic-bezier(.165,.84,.44,1);
}
.menubar .menu-item-has-children:hover > ul.sub-menu
{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s cubic-bezier(.165,.84,.44,1);
    transition: all 0.2s cubic-bezier(.165,.84,.44,1);
}
.menubar ul.sub-menu > li
{
    display: block;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0 15px;
    transition: all 0.2s linear;
}
.menubar ul.sub-menu > li+li {margin-top: 10px;}
.menubar .menu-item-has-children > ul.sub-menu > li {transform: translateY(5px) ; opacity: 0; transition: all 0.2s linear;}
.menubar ul.sub-menu > li:last-child {margin-bottom: 0 !important;}
.menubar .menu-item-has-children:hover > .sub-menu li
{
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s linear 0.1s;
}
.menubar ul.sub-menu > li > a
{
    display: inline-block;
    list-style-type: none;
    color: #fff;
    padding: 0;
    width: 100%;
    position: relative;
    font-size: 15px;
	margin: 0;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.menubar ul.sub-menu > li > a:hover, .menubar ul.sub-menu > li.current-menu-item > a
{
    color: #fff;
    opacity: 0.7;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.menubar ul.main-menu > li > ul.sub-menu:before {
    position: absolute;
    content: '' !important;
    width: 100%;
    height: 10px;
    left: 0px;
    top: -10px;
    display: block !important;
}
.menubar ul.sub-menu ul.sub-menu {left: 250px; top: 0;}
.menubar .menu-item-has-children>.sub-menu li a:before {display: none;}
.menubar .menu-item-has-children>.sub-menu li:first-child {padding-top: 0;}
/*-------------*/

.slide-btn.site-button {text-align: left; display: inline-flex; flex-flow: row wrap; gap: 15px;}
.slide-btn.site-button a
{
	width: auto;
	display: inline-flex;
	color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    border: 2px solid rgb(255, 255, 255);
	margin: 0;
	padding: 12px 30px;
	border-radius: 0;
	color: var(--font-color);
	font-size: 16px;
	text-transform: uppercase;
}
.slide-btn.site-button a:hover
{
	color: #fff;
    border: solid 2px rgba(52, 176, 217, 0.5);
    background-color: rgba(52, 176, 217, 0.5);
}

/*------------------*/

/* .services-listing-page, .guides-listing-page {padding: 80px 0;} */
.services-blocks
{
	display: grid;
    grid-template-columns: 3fr 3fr 3fr;
    gap: 30px;
}
.services-blk {position: relative; background-color: #fff; padding-bottom: 85px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);}
.services-blk-img img
{
	height: 250px;
    width: 100%;
    object-fit: cover;
}
.services-blk-cnt {padding: 25px 25px 0;}
.services-blk-cnt h2
{
	padding: 0 !important;
    margin: 0 0 15px;
	font-size: var(--fontSize26px) !important;
}
.services-blk-cnt h2 a {color: var(--font-color);}
.services-blk-cnt h2 a:hover {color: var(--sitebluenew);}
.services-blk-btn.site-button {position: absolute; bottom: 25px; left: 25px;}
.services-blk-btn.site-button a {margin: 0; width: auto; padding: 8px 25px; font-size: 16px; min-height: 40px;}

/* ---------- */

.services-blocks-nl {display: grid; grid-template-columns: 2fr 2fr; gap: 30px;}
.services-blk-nl {position: relative; overflow: hidden; height: 380px;}
.services-blk-nl::before {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.3); z-index: 9;}
.services-blk-nl img {height: 100%; width: 100%; object-fit: cover; object-position: center; transform: scale(1); transition: all 0.2s linear;}
.services-blk-nl:hover img {transform: scale(1.02); transition: all 0.4s linear;}
.services-blk-nl > a {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 999;}

.services-blk-caption {position: absolute; top: 50%; left: 50%; width: 60%; height: auto; transform: translate(-50%, -50%); z-index: 99;}
.services-blk-caption h2 {text-align: center; padding: 0; margin: 0; font-size: 26px; line-height: 1.4; color: #fff; font-weight: 400;}

/* ----------- */

.guides-blocks {display: grid; grid-template-columns: 2fr 2fr; gap: 30px;}
.guides-blocks > .guides-blk {display: grid; grid-template-columns: 2fr 2fr; gap: 30px; padding: 45px;}
.guides-blocks > .guides-blk h2 {font-size: var(--fontSize30px); padding: 0; color: #fff; text-transform: uppercase;}
.guides-blocks > .guides-blk h2 a {color: #fff;}
.guides-blocks > .guides-blk p {font-size: var(--fontSize18px); padding: 0; color: #fff;}
.guides-blocks > .guides-blk .guides-blk-btn {margin-top: 45px; display: flex; flex-flow: row wrap; align-items: center; gap: 10px;}
.guides-blocks > .guides-blk .guides-blk-btn a {background-color: rgba(255, 255, 255, 0.2); padding: 10px 25px; color: #fff; width: auto;}
.guides-blocks > .guides-blk .guides-blk-btn a:hover {background-color: rgba(255, 255, 255, 0.5);}

.guides-blocks > .guides-blk:nth-child(1) {grid-template-columns: 1fr; grid-row-start: 1; grid-row-end: 3;}
.guides-blocks > .guides-blk:nth-child(4) {grid-row-start: 3; grid-row-end: 3; grid-column: 1 / span 2;}
.guides-blocks > .guides-blk:nth-child(7) {grid-row-start: 5; grid-row-end: 5; grid-column: 1 / span 2;}
.guides-blocks > .guides-blk:nth-child(10) {grid-row-start: 7; grid-row-end: 7; grid-column: 1 / span 2;}
.guides-blocks > .guides-blk:nth-child(13) {grid-row-start: 9; grid-row-end: 9; grid-column: 1 / span 2;}
.guides-blocks > .guides-blk:nth-child(16) {grid-row-start: 11; grid-row-end: 11; grid-column: 1 / span 2;}
.guides-blocks > .guides-blk:nth-child(1) h2 {margin: 0 0 15px;}
.guides-blocks > .guides-blk:nth-child(1) .guides-blk-btn {margin-top: 0;}
.guides-blocks > .guides-blk:nth-child(1) .guides-blk-right {display: flex; flex-flow: row wrap; align-items: flex-end;}
.guides-blocks > .guides-blk:nth-child(3n+1) {background-color: var(--sitebluenew);}
.guides-blocks > .guides-blk:nth-child(3n+2) {background-color: var(--font-color);}
.guides-blocks > .guides-blk:nth-child(3n+3) {background-color: var(--hcolor);}


.filter-button-list {margin: 30px 0 50px; display: flex; flex-flow: row wrap; align-items: center; justify-content: center; gap: 22px;}
.filter-button-list button.filter-button.site-button 
{
    cursor: pointer;
    margin-right: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    width: auto;
	min-height: auto;
	color: var(--font-color);
	min-width: 70px;
	display: flex;
    flex-flow: column wrap;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
	align-self: end;
}
.filter-button-list button.filter-button.site-button:hover, .filter-button-list button.filter-button.site-button.active {background-color: transparent; color: var(--sitebluenew); border: none;}
.filter-button-list button.filter-button.site-button img {width: 20px; height: 12px; margin-bottom: 10px;}
.filter-item {display: block;}
.filter-hide {display: none;}
.teams-wrapper .teams-blocks {display: flex; flex-flow: row wrap; gap: 30px;}
.teams-wrapper .teams-blocks .teams-blk {position: relative; width: calc(33.333% - 20px); padding-bottom: 65px; background-color: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);}
.teams-blk-img img {height: 320px; width: 100%; object-fit: cover;}
.teams-wrapper .teams-blocks .teams-blk .teams-blk-cnt {padding: 30px 20px 15px; text-align: left;}
.teams-wrapper .teams-blocks .teams-blk .teams-blk-cnt h2 {font-size: var(--fontSize20px); display: flex; flex-flow: row nowrap; align-items: center; gap: 10px; padding: 0 0 25px;}
.teams-wrapper .teams-blocks .teams-blk .teams-blk-cnt h2 img {width: 30px; height: 20px;}
.teams-blk-cat {background-color: #f5f5f5; padding: 10px; display: flex; flex-flow: row nowrap; align-items: center; justify-content: center; gap: 15px;}
.teams-blk-cat .tb-cat-blk {display: flex; flex-flow: column wrap; justify-content: center; align-items: center;}
.teams-blk-cat .tb-cat-blk img {width: 20px; margin: 0; height: 12px;}
.teams-blk-cat .tb-cat-blk span {display: inline-block; font-size: 12px; font-weight: 400;}
.teams-blk-cat img {width: 25px; height: auto; margin-right: 15px;}
.teams-blk-cnt span.icon
{
	position: relative;
	display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 25px;
    height: 25px;
/*     background-color: #f1f1f1; */
    color: #808080;
/*     border-radius: 50%; */
    font-size: 16px;
	position: absolute;
    left: 0;
    top: 0;
}
.teams-blk-cnt span.icon:after
{
	content: '';
	position: absolute; 
	top: 0;
	right: 0;
	height: 100%;
	width: 1px;
	background-color: #d0d0d0;
}
.teams-blk-cnt ul
{
	padding: 0;
    margin: 0;
    list-style-type: none !important;
	padding-left: 0 !important;
}
.teams-blk-cnt ul li
{
	padding-left: 35px;
    position: relative;
	font-size: 16px;
}
.teams-blk-cnt ul li:last-child {padding-bottom: 0;}
.teams-blk-cnt ul li a {color: var(--font-color);}
.teams-blk-cnt ul li a:hover {color: var(--sitebluenew);}
.team-blk-btn {position: absolute; left: 20px; bottom: 25px; width: calc(100% - 40px); height: auto; text-align: left;}
.team-blk-btn a {display: inline-flex; align-items: center; min-height: inherit; width: auto; margin: 0 auto;}
.team-blk-btn a:hover {color: var(--sitebluenew); transition: all 0.2s linear;}
.team-blk-btn a span {display: inline-block; position: relative; padding-bottom: 2px;}
.team-blk-btn a span:before {content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 1px; background-color: var(--sitebluenew); transition: all 0.2s linear;}
.team-blk-btn a:hover span:before {background-color: var(--sitebluenew); left: 0; width: 100%; transition: all 0.2s linear;}
.team-blk-btn a img
{
	width: 22px;
    margin-left: 8px;
    padding-bottom: 2px;
	transition: all 0.2s linear;
}
.team-blk-btn a:hover img {filter: brightness(0) saturate(100%) invert(70%) sepia(9%) saturate(5836%) hue-rotate(160deg) brightness(91%) contrast(86%); transition: all 0.2s linear;}


.teams-wrapper .teams-blocks.team-slider {/* display: block; */ padding: 0 35px;}
.teams-wrapper .teams-blocks.team-slider .teams-blk {margin: 20px 10px; width: 100%; max-width: 350px;}
.teams-wrapper .teams-blocks.team-slider .slick-track {display: flex;}
.teams-wrapper .teams-blocks.team-slider .slick-track .slick-slide {display: flex; height: auto; justify-content: center;}


.team-slider .slick-prev, .team-slider .slick-next
{
    height: 45px;
    width: 45px;
    top: 50%;
    z-index: 9;
	transform: translateY(-50%);
    transition: all 0.2s linear;
}
.team-slider .slick-prev {left: -15px;}
.team-slider .slick-next {right: -15px;}
.team-slider .slick-prev:before, .team-slider .slick-next:before {font-size: 0;opacity: 1;}
.team-slider .slick-prev, .team-slider .slick-prev:focus, .team-slider .slick-prev:hover
{
    background-image: url(../images/slider-arw-l.png);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
}
.team-slider .slick-next, .team-slider .slick-next:focus, .team-slider .slick-next:hover
{
    background-image: url(../images/slider-arw-r.png);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
}
.team-slider .slick-prev:hover, .team-slider .slick-next:hover, .team-slider .slick-prev:focus, .team-slider .slick-next:focus
{
    opacity: 0.6;
    transition: all 0.2s linear;
}



.common-section .site-button.project-button {margin-top: 30px;}

.services-details-cnt ul {list-style-type: disc; padding-left: 35px;}
.services-details-cnt ol {list-style-type: decimal; padding-left: 35px;}

.project-section.common-section .mls-list-filter {display: none;}
.project-section.common-section .mls-parent-wrapper {padding: 0; margin-top: 20px;}

.hcw-blocks {display: grid; grid-template-columns: 2fr 2fr; align-items: center; gap: 30px;}

.hcw-blk-left ul {
	padding: 0;
    margin: 25px 0 0;
    list-style-type: none;
}
.hcw-blk-left ul li
{
	padding-top: 4px;
	padding-left: 40px;
    position: relative;
	font-size: 16px;
}
.hcw-blk-left ul li span.icon
{
	position: relative;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--sitebluenew);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
	position: absolute;
    left: 0;
    top: 0;
}
.hcw-blk-left ul li a {color: var(--font-color);}
.hcw-blk-left ul li a:hover {color: var(--sitebluenew);}

.hcw-blocks p:empty {display: none;}

.secondary-menu {width: 100%; background-color: #f7f7f7; padding: 10px; line-height: 1;}
.secondary-nav {width: 100%; max-width: 1350px; margin: 0 auto; text-align: center; overflow-x: auto; }
.secondary-nav::-webkit-scrollbar {
    height: 4px;
}
.secondary-nav::-webkit-scrollbar-thumb {
    background-color: #bababa;
    outline: 0px solid rgba(133, 203, 107, 0.3);
}
.secondary-nav ul.secondary-nav-list
{
	padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
/*     justify-content: center; */
    gap: 25px;
/* 	width: 1350px; */
	line-height: 1;
}
.secondary-nav ul.secondary-nav-list li.secondary-nav-item {padding: 0; font-size: 15px; text-transform: uppercase; font-weight: 500; line-height: 1; flex-shrink: 0;}
.secondary-nav ul.secondary-nav-list li.secondary-nav-item a {display: inline-grid; align-items: center; /* grid-template-columns: 35px auto; gap: 6px; */ grid-template-columns: 1fr; padding: 5px 0;}
.secondary-nav ul.secondary-nav-list li.secondary-nav-item a img {border-radius: 50%; display: none;}

.header-lang-pop-wrapper{
    position: fixed;
    width: 100%;
    background:rgb(0, 0, 0,0.4);
    right:-100%;
    top:0;
	z-index: 99999999999;
    transition-duration:0.3s;
}
body.country-open .header-lang-pop-wrapper{
    transition-duration:0.3s;
    right:0;
}
.close-lang {
    position: absolute;
    top: 45px;
    right: 35px;
    cursor: pointer;
    transition-duration: 0.2s;
    z-index: 999999999999;
}
.close-lang img {
    width: 20px;
    filter: brightness(0%);
}
.header-lang-pop {width: 100%; max-width: 350px; height: 100vh; background-color: #fff; padding: 100px 30px 30px 30px; overflow-y: auto; z-index: 999999; margin-left: auto; transition: all 0.2s linear;}
.header-lang-pop .gtranslate_wrapper 
{
	display: flex;
    flex-flow: row wrap;
/*     align-items: center; */
    gap: 20px;
	height: calc(100vh - 130px);
	overflow-y: auto;
	width: 100%;
}
.header-lang-pop .gtranslate_wrapper a {color: var(--font-color) !important; font-family: "Manrope", sans-serif; font-size: 24px !important; display: inline-grid !important; grid-template-columns: 25px auto; gap: 20px; width: 100%; padding: 0px !important; font-weight: bold !important; transition: all 0.2s linear;}
.header-lang-pop .gtranslate_wrapper a:hover, .header-lang-pop .gtranslate_wrapper a.gt-current-lang {color: var(--sitebluenew) !important; transition: all 0.2s linear;}
/* body.country-open a.lang-globe {position: relative;}
body.country-open a.lang-globe:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/close.png);
	background-color: #fff;
	border-radius: 50%;
	z-index: 1;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
} */
span#current-lang-display {font-size: 16px;}
body header:not(.navbar-fixed) span#current-lang-display {color: #fff;}
body.country-open span#current-lang-display{color: var(--font-color) !important;}
/* body.country-open header .primary-nav {background-color: #fff;}
 */
.wpcf7-form-control.wpcf7-checkbox {cursor: pointer;}
.form-note {font-size: 19px; margin: 0 0 15px; display: inline-block;}

a.foo-logo span {color: #fff;}

.h-services-wrapper {margin-top: 20px;}
.project-section.common-section .mls-pagination {display: none;}

.multi-list ul ul, .multi-list ul ul li:last-child, ul.multi-list ul, ul.multi-list ul li:last-child {padding-bottom: 0;}
.multi-list ul ul, ul.multi-list ul {padding-top: 15px;}
.services-intro {max-width: 850px; width: 100%; padding: 30px; background-color: #34b0d9; margin: 0 auto 25px; border-radius: 16px;}
.services-intro h2 {font-size: 36px; color: #fff;}
.services-intro h3 {font-size: 20px; font-weight: 500;  color: #fff;}
.services-intro h4 {font-size: 24px;  color: #fff;}

figure.alignright {float: right; width: 100%; max-width: 50%; margin: 0 0 15px 15px;}
figcaption {text-align: center; font-weight: 600;}

.inner-page-spacing ol {padding-left: 40px;}
.inner-page-spacing ul {list-style-type: disc; padding-left: 40px;}

figure.wp-block-table {margin: 0 0 20px;}
.wp-block-table td, .wp-block-table th {border: 1px solid #cadbe0;}
.wp-block-table thead {background-color: #34b0d9; border: none; color: #fff;}

/*-------------------------*/

.wp-block-columns.services-intro-blocks {display: grid !important; grid-template-columns: 2fr 2fr; gap: 40px !important; margin-bottom: 80px !important; background-color: #f6f6f6; padding: 40px;}
.wp-block-columns.services-cols-style1, .wp-block-columns.services-cols-style2 {display: grid !important; grid-template-columns: 2fr 3fr; gap: 40px !important; margin-bottom: 80px !important;}
.wp-block-columns.services-cols-style2 {grid-template-columns: 3fr 2fr;}
.wp-block-columns.services-intro-blocks.mb-0, .wp-block-columns.services-cols-style1.mb-0, .wp-block-columns.services-cols-style2.mb-0 {margin-bottom: 0 !important;}
.services-intro-blocks h2 {font-size: 26px; padding: 0;}
.wp-block-columns.services-cols-style1 ul:last-child, .wp-block-columns.services-cols-style2 ul:last-child, .wp-block-columns.services-cols-style1 ul li:last-child, .wp-block-columns.services-cols-style2 ul li:last-child {padding-bottom: 0px;}

.services-cols-style1 img, .services-cols-style2 img {width: 100%; height: auto; object-fit: cover; object-position: center;}

.wp-block-column.insurance-service-main > .wp-block-group:not(:last-child) {margin-bottom: 70px;}
.wp-block-column.insurance-service-main > .wp-block-group h2 {color: var(--sitebluenew);}
.wp-block-column.insurance-service-main > .wp-block-group h4 {padding-top: 15px; padding-bottom: 15px;}
.wp-block-column.insurance-service-main > .wp-block-group h3 + h4, .wp-block-column.insurance-service-main > .wp-block-group ul + h4 {padding-top: 0px;}
.wp-block-column.insurance-service-main > .wp-block-group ul > li:last-child {padding: 0;}
.wp-block-column.insurance-service-main > .wp-block-group .site-button 
{
	display: flex;
    flex-flow: row wrap;
    gap: 20px;
}
.wp-block-column.insurance-service-main > .wp-block-group .site-button a {margin: 0; width: auto;}
.services-details-cnt .rd-sidebar-inner ul
{
	list-style-type: none;
    padding: 0;
}
.services-details-cnt .rd-sidebar-inner ul li:last-child {padding: 0;}
.services-details-cnt .rd-sidebar-inner ul li a {padding-left: 25px; position: relative; display: inline-block;}
.services-details-cnt .rd-sidebar-inner ul li a:before 
{
	content: '-';
    position: absolute;
    top: -13px;
    left: 0;
    font-size: 36px;
}
.services-details-cnt .rd-sidebar-inner h2 {color: var(--sitebluenew); font-size: 30px;}

@media screen and (max-width: 1200px)
{
	.wp-block-columns.services-intro-blocks, .wp-block-columns.services-cols-style1, .wp-block-columns.services-cols-style2 {gap: 30px !important; margin-bottom: 60px !important;}
	
	.wp-block-columns.services-intro-blocks {padding: 30px;}
}

@media screen and (max-width: 767px)
{
	.wp-block-columns.services-intro-blocks, .wp-block-columns.services-cols-style1, .wp-block-columns.services-cols-style2 {grid-template-columns: 1fr; gap: 25px !important; margin-bottom: 40px !important;}
	.wp-block-columns.services-cols-style1 > .wp-block-column:first-child {order: 2;}
	.wp-block-columns.services-cols-style1 > .wp-block-column:last-child {order: 1;}
	.form-note {font-size: 16px;}
}

p.foo-addr.foo-addr2
{
	position: relative;
    margin: 0 0 15px;
    padding: 15px 0;
}

p.foo-addr.foo-addr2:before, p.foo-addr.foo-addr2:after
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
	height: 1px;
	background-color: #727272;
}
p.foo-addr.foo-addr2:after
{
	top: auto;
	bottom: 0;
}

.services-form form 
{
	background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    padding: 25px;
}
.services-form form input[type="submit"] 
{
    color: var(--sitebluenew);
    border:solid 1px var(--sitebluenew);
    font-size:var( --fontSize18px);
    min-height: 40px;
    padding: 2px 10px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
	cursor: pointer;
	margin-top: 20px;
}
 
.services-form form input[type="submit"]:hover
{
background:var(--sitebluenew);
color: var(--bgwhite);
}
.services-form form > p {position: relative;}
.services-form form > p .wpcf7-spinner {position: absolute; left: 130px; bottom: 20px; margin: 0;}

.wp-block-columns.services-mot .wp-block-column {padding: 25px; background-color: #f8f8f8;}
.wp-block-columns.services-mot
{
	display: flex !important;
    flex-flow: row nowrap;
    align-items: stretch !important;
	    gap: 15px;
}

.wp-block-columns.services-mot h2
{
	font-size: 22px;
    padding: 25px 0;
}
.wp-block-columns.services-mot img {width: 100%;}
.wp-block-columns.services-mot ul {
    padding: 0;
    margin: 0;
    list-style-type: none!important;
    padding-left: 0!important
}

.wp-block-columns.services-mot ul li {
    padding-left: 25px;
    position: relative;
    font-size: 18px
}

.wp-block-columns.services-mot ul li:last-child {
    padding-bottom: 0
}

.wp-block-columns.services-mot ul li a {
    color: var(--font-color)
}

.wp-block-columns.services-mot ul li a:hover {
    color: var(--sitebluenew)
}
.wp-block-columns.services-mot li {position: relative; padding-left: 32px;}
.wp-block-columns.services-mot li:before {
	content: '';
	background-image: url(../images/phone.png);
	background-size: 16px;
	background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 0;
	filter: brightness(0) saturate(100%) invert(64%) sepia(60%) saturate(1174%) hue-rotate(160deg) brightness(92%) contrast(84%);
}
.wp-block-columns.services-mot li.whatsapp-ico:before {background-image: url(../images/whatsapp.png); background-size: 20px; top: 2px;}
.wp-block-columns.services-mot li.email-ico:before {background-image: url(../images/envelope.png); background-size: 18px; top: 3px;}

.mort-calc
{
	background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    padding: 25px;
}
.mort-calc button 
{
    color: var(--sitebluenew);
    border:solid 2px var(--sitebluenew);
    font-size:var( --fontSize18px);
    min-height: 40px;
    padding: 2px 10px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
	cursor: pointer;
	margin-top: 20px;
	background-color: #fff;
}
 
.mort-calc button:hover
{
background:var(--sitebluenew);
color: var(--bgwhite);
}
.mort-calc label
{
	display: inline-block;
	margin: 0 0 5px;
	width: 100%;
}
.mort-calc input, #mc_embed_signup .mc-field-group input
{
	width: 100%;
    padding: 10px 18px;
    font-size: var(--fontSize18px);
    border: solid 1px #cbcbcb;
	border-radius: 0;
}
.mort-form-wrapper > div.mort-fg:not(:last-of-type) {margin-bottom: 15px;}
.mort-calc p#result {margin-top: 20px; font-size: 18px; font-weight: bold;}

.h-about-sec.even-sec-bg {background-color: #fff;}
.wp-block-columns.abt-blk-style
{
	display: grid;
    grid-template-columns: 5fr 2fr;
	align-items: center;
    gap: 100px;
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 60px;
	margin-bottom: 60px;
}
.wp-block-columns.abt-blk-style.last {padding-bottom: 0 !important; margin-bottom: 0 !important; border: none !important;}
.wp-block-columns.abt-blk-style h3 {font-weight: 400; padding-bottom: 20px !important;}

.team-db-contactformshortcode
{
	margin-top: 20px;
}
.team-db-contactformshortcode form
{
	background-color: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / .2);
    padding: 25px;
}
.team-db-contactformshortcode form input[type="submit"] {
    color: var(--sitebluenew);
    border: solid 1px var(--sitebluenew);
    font-size: var(--fontSize18px);
    min-height: 40px;
    padding: 2px 10px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-db-contactformshortcode form input[type="submit"]:hover {
    background: var(--sitebluenew);
    color: var(--bgwhite)
}

.team-db-contactformshortcode form>p {
    position: relative;
	padding: 0;
}

.team-db-contactformshortcode form>p .wpcf7-spinner {
    position: absolute;
    left: 130px;
    bottom: 20px;
    margin: 0
}

.project-section.common-section .mls-container {padding: 0 !important;}

div#ht-ctc-chat {z-index: 9999 !important;}

.site-button.pro-sbtn a {margin: 0 !important;}
.site-button.pro-sbtn {margin-top: 50px !important;}

.wp-block-column.email-one span.icon
{
	display: inline-block;
    vertical-align: middle;
}
.wp-block-column.email-one span.icon i 
{
	color: #34b0d9;
    font-size: 24px;
    margin-right: 5px;
}
.footer-one.three p.email {
    display: flex;
    align-items: center;
    position: initial;
    padding-left: 0;
}
.footer-one.three p.email img {
    padding-right: 12px;
    position: initial;
}
.footer-one.three p.email.ico-size img {width: 33px; height: auto;}
.footer-one.three p.email:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 1px;
    background-color: #727272;
}
.footer-one.three p.email:first-of-type {
    padding-top: 20px;
}
.foo-addr.foo-thumb {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.foo-addr.foo-thumb img {
    height: 69px;
    width: 101px;
    padding-right: 12px;
    object-fit: cover;
}
.foo-addr.foo-addr2.foo-thumb {
    margin: 20px 0;
}


/*------MLS Plugin-------*/

.filter-form-wrapper form .mls-f-order9 input[type="submit"] {height: 61px !important;}

@media (max-width: 1200px)
{
	.filter-form-wrapper form button.mls-add-feat-btn {height: 61px !important;}	
}

@media (max-width: 767px)
{
	.filter-form-wrapper {padding: 15px;}	
}

/*------Giudes-------*/

.daz-content {margin-left: 0px !important; margin-top: 0 !important; margin-bottom: 0 !important;}

.category-guides .blog-details-one {flex: 1 0 100%; max-width: 100%; margin-right: 0;}
.category-guides .blog-details > .wrapper {width: 100%; max-width: 100%; padding: 0;}
.category-guides .blog-details-content > h2 {display: none;}

.gp-cr-link a {display: inline-block; font-weight: bold; font-style: italic;}
.gp-cr-link a:hover {color: var(--sitebluenew);}
.guides-more-cnt {display: none;}
.guides-less-cnt .wp-block-columns.services-cols-style2 {margin-bottom: 0 !important;}
.g-show .guides-more-cnt {display: block;}
.g-show .gp-cr-link a {display: none;}
.g-show .guides-less-cnt .wp-block-columns.services-cols-style2 {margin-bottom: 80px !important;}

/* ---guides Popup */

.guides-popup-wrapper
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999999999;
	align-items: center;
	justify-content: center;
}
.guides-open .guides-popup-wrapper {display: block !important;}
.guides-popup-outer {width: 100%; height: 100vh; display: flex; flex-flow: row wrap; align-items: center; justify-content: center; overflow-y: auto; padding: 0 30px;}
.guides-popup-inner
{
	position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
    background-color: #fff;
    margin: 0 auto;
}
.guides-cnt-blocks
{
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 2fr;
    align-items: stretch;
}
.guides-db-img {display: flex; align-items: center; justify-content: center; background-color: #f7f7f7;}
.guides-db-img img {width: auto; height: 350px; object-fit: cover; object-position: center;}
.guides-close
{
	position: absolute;
	top: 15px;
	right: 15px;
    width: 30px;
    height: 30px;
    display: inline-block;
    padding: 3px;
    cursor: pointer;
}
.guides-close img
{
    filter: brightness(0);
}
.guides-db-content {padding: 50px 20px; align-self: center}
.guides-form-wrapper h3 {text-align: center; font-size: 20px;}
.guides-form .mcfg-wrapper {margin: 0;}
.guides-form .mc-field-group .wpcf7-form-control-wrap input, .guides-form .mc-field-group .wpcf7-form-control-wrap select {margin-bottom: 0 !important;}
.guides-form .mc-field-group .wpcf7-form-control-wrap select
{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 35px !important;
    display: block;
    background-image: url(../images/down-arrow-blk.webp);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}
.guides-form form input[type="submit"] {
    color: var(--sitebluenew);
    border: solid 1px var(--sitebluenew);
    font-size: var(--fontSize18px);
    min-height: 40px;
    padding: 2px 10px;
    width: 120px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.guides-form form input[type="submit"]:hover {
    background: var(--sitebluenew);
    color: var(--bgwhite)
}
.guides-form .mc-field-group.mcfg-submit {margin-top: 5px !important; text-align: center; position: relative;}

.guides-form .mc-field-group.mcfg-submit .wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
}
.guides-form .mcfg-wrapper .wpcf7-not-valid-tip {top: -28px;}
@media (max-width: 1200px)
{
	.g-show .guides-less-cnt .wp-block-columns.services-cols-style2 {margin-bottom: 60px !important;}	
}

@media (max-width: 767px)
{
	.g-show .guides-less-cnt .wp-block-columns.services-cols-style2 {margin-bottom: 40px !important;}	
	.guides-form .mcfg-wrapper {gap: 20px;}
}

@media (max-width: 600px)
{
	.guides-popup-inner {height: auto;}
	.guides-cnt-blocks {grid-template-columns: 1fr;}
	.guides-db-img {padding: 20px 0;}
	.guides-db-img img {height: 200px;}
}

.grecaptcha-badge {visibility: hidden !important;}
.h-guide-daz .daz-modal-container-0 {padding: 0 !important;}
.category-guides .part-img, .category-guides .part-txt {display: none;}

.slick-prev:before, .slick-next:before {visibility: hidden;}

.prop-al-wrap
{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 20px;
    padding-right: 10px;
}

.prop-al-wrap .prop-al-col2
{
    width: calc(50% - 10px);
}

.prop-al-wrap .prop-al-col1
{
    width: calc(100% - 0px);
}
.prop-al-wrap input {margin: 0; color: #fff;}
.prop-al-wrap .wpcf7-form-control-wrap select {color: #fff !important; margin: 0; background-color: #000; background-image: url(https://www.marbellaluxuryhomes.es/wp-content/uploads/2025/09/down-arrow-sel.webp); background-position: right 15px center; background-size: 17px;} 
.prop-al-wrap .wpcf7-form-control-wrap textarea {background-color: transparent; margin: 0; color: #fff;}
.prop-al-wrap .checkb .wpcf7-list-item {color: #fff; cursor: pointer;}
.prop-al-wrap .checkb .form-note {color: #fff; font-size: 16px;}
.prop-al-wrap .submit input.wpcf7-form-control.wpcf7-submit.has-spinner {
    padding: 10px 30px;
    color: #fff;
    border: solid 1px var(--sitebluenew);
    background-color: var(--sitebluenew);
    font-size: var( --fontSize18px);
    min-height: 47px;
    padding: 2px 10px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0 !important;
}
.prop-al-wrap .submit input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: transparent;
    color: var(--sitebluenew);
}
.prop-al-wrap .submit {position: relative;}
.prop-al-wrap .submit .wpcf7-spinner
{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    margin: 0;
}

.prop-al-wrap .wpcf7-not-valid-tip
{
    top: 0px;
    box-shadow: none !important;
}
.prop-al-wrap .checkb .wpcf7-not-valid-tip
{
    top: -40px;
    left: 0 !important;
    right: auto !important;
}
.cmp-popup-wrapper .wpcf7 form.sent .wpcf7-response-output
{
    background-color: #fff;
    border: 1px solid #fff;
    margin: 15px 0 0;
    padding: 15px;
    font-size: 16px;
}

/* .slide-btn.site-button a.pop-cmp-btn {display: none !important;} */

@media (max-width: 991px)
{
    a.foo-logo {width: 164px !important;}
}

@media (max-width: 560px)
{
    a.foo-logo {width: 132px !important;}
}

@media (max-width: 320px)
{
    a.foo-logo {width: 108px !important;}
}

/* header:not(.navbar-fixed) .header-logo a {
    width: auto !important;
} */