/*
Theme Name: Five by Five
Author: Five by Five
Version: 4.0
*/

:root {
    color-scheme: auto;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
	color: #495056;
	font-size: 16px;
	line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	line-height: 1.25;
    text-wrap: pretty;
    font-weight: 400;
}

/*h1, h2, h3, h4, h5, p{
    color: #fff;
}*/

h1 { font-size: 47px; }
h2 { font-size: 40px; }
h3 { font-size: 35px; }
h4 { font-size: 30px; line-height: 1.33em}
h5 { font-size: 24px; line-height: 1.45em}
h6 { font-size: 18px; }

p {
    font-weight: 300;
	margin: 0 0 20px;
    text-wrap: pretty;
}

p:last-of-type{
    margin-bottom: 0px;
}

a {
	color: inherit;
    transition: background-color .3s ease, opacity .3s ease, color .3s ease;
}

a[role="button"] {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

select,
button,
textarea,
input {
    font-size: inherit;
    font-family: inherit;
}

.btn,
button,
input[type="submit"],
a {
    cursor: pointer;
}

.wrapper {
    width: 1460px;
	max-width: 100%;
	padding: 0 10px;
	margin: 0 auto;
}

.site-container {
    overflow-x: hidden;
}

/* Site Scrollbar */
::-webkit-scrollbar {
    width: 0.7rem;
}
::-webkit-scrollbar-track {
    border: none;
	background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
    /* border: 2px solid #e5e5e5;
    border-radius: 10px; */
    background: #495056;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b3f42; 
}

/* Keyframes */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@-webkit-keyframes fade-in-top{
    0%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-top{
    0%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-top {
	-webkit-animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-bottom{
    0%{-webkit-transform:translateY(30px);transform:translateY(30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-bottom{
    0%{-webkit-transform:translateY(30px);transform:translateY(30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-bottom {
	-webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-out-top{
    0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
    100%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
}
@keyframes fade-out-top{
    0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
    100%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
}
.fade-out-top {
	-webkit-animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
.elementor-button {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    font-weight: 300;
    padding: 16.5px 26px;
    line-height: 1;
    transition: background-color .3s ease, color .3s ease, border .3s ease;
    border-radius: 50px;
    position: relative;
}
span.elementor-button-content-wrapper{
    margin-right: 10px;
}
span.elementor-button-content-wrapper:after {
    content: url(/wp-content/uploads/2024/12/arrowRight.svg);
    position: absolute;
    right: 20px;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.elementor-button:hover {
    border: 2px solid;
    color: #000;
}
.elementor-button:focus, .elementor-button:hover, .elementor-button:visited{
    color: #000;
}

.secondary .elementor-button{
    border-radius: 4px;
    position: relative;
    min-height: 50px;
}

.secondary span.elementor-button-content-wrapper{
    margin-right: 30px;
}

.secondary span.elementor-button-content-wrapper:after {
    content: url(/wp-content/uploads/2024/12/Arrow-custom.svg);
    position: absolute;
    right: 25px;
    transition: .5s right ease;
}

.secondary .elementor-button:hover span.elementor-button-content-wrapper:after{
    filter: invert(1);
    right: 15px;
}

.secondary-inverted .elementor-button{
    border-radius: 4px;
    position: relative;
    min-height: 50px;
}

.secondary-inverted span.elementor-button-content-wrapper{
    margin-right: 30px;
}

.secondary-inverted span.elementor-button-content-wrapper:after {
    content: url(/wp-content/uploads/2024/12/Arrow-custom.svg);
    position: absolute;
    right: 35%;
    transition: .5s right ease;
    filter: invert(1);
}

.secondary-inverted .elementor-button:hover span.elementor-button-content-wrapper:after{
    filter: invert(0);
    right: 33%;
}

.tertiary .elementor-button{
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.black-bg-button .elementor-button{
    background: #000;
    color: #fff;
}
.black-bg-button span.elementor-button-content-wrapper:after{
    content: "";
}

.gm-style button {
    border-radius: 0;
}

.btn, .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    min-height: 40px;
    min-width: 122px;
}

/* Header */
.elementor-location-header {
    background: #fff;
}
/* .header-stick .site-header, */
/* .header-stick.header-type1 .elementor-location-header, */
.header-stick.header-type2 .elementor-location-header,
.header-stick .elementor-location-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    animation:fade-in-top .3s cubic-bezier(.39,.575,.565,1.000) both;
    box-shadow: 0 0 17px 0 rgb(0 0 0 / 5%);
}
/* .header-unstick .site-header, */
/* .header-unstick.header-type1 .elementor-location-header, */
.header-unstick.header-type2 .elementor-location-header,
.header-unstick .elementor-location-header {
    animation:fade-out-top .2s cubic-bezier(.25,.46,.45,.94) both;
}

/* .header-type1 .site_header_con,
.header-type1 .elementor-location-header, */
.header-type2 .site_header_con,
.header-type2 .elementor-location-header {
	position: absolute;
	width: 100%;
	z-index: 100;
}

/*.header-type1 .elementor-location-header{
    background: none;
}*/

.header-type2 .elementor-location-header {
	background: none;
	color: #fff;
}

/* .header-type1.header-stick .elementor-location-header, */
.header-type2.header-stick .elementor-location-header {
	background: #fff;
	color: inherit;
}

.header-type2.header-stick .with-alt-logo .site-logo-main,
.header-type2 .with-alt-logo .site-logo-alt {
    display: none;
}
.header-type2.header-stick .with-alt-logo .site-logo-alt {
    display: inline-block;
}

.logo-container .mobile-logo,
.header-type2 .site-logo-main.mobile-logo,
.header-type2.header-stick .with-alt-logo .site-logo-alt.mobile-logo{
	display: none;
}

@media(max-width: 767px){
    .logo-container .mobile-logo,
    .header-type2 .site-logo-alt.mobile-logo{
        display: inline-block;
    }

	.header-type2.header-stick .with-alt-logo  .site-logo-main.mobile-logo {
	    display: inline-block;
	}
	
	.header-type2.header-stick .with-alt-logo .site-logo-alt.desktop-logo,
    .logo-container .desktop-logo{
        display: none;
    }
}

/* Menu */
ul.menu {
    list-style: none;
    padding: 0;
}

div .elementor-nav-menu .sub-arrow i:after{
	content: '\e90b';
    font-family: 'icomoon';
    font-style: normal;
    position: relative;
}
.elementor-nav-menu .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
} 

/* Search */
.ff-search {
    background: #f8f9fa;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: transform .5s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    will-change: transform;
    transform: translate3d(0, -100%, 0);
}
.show_search .ff-search {
    transform: translate3d(0, 0, 0);
}
.ff-search form {
    width: 730px;
    max-width: 100%;
    position: relative;
}
.ff-search .search-input {
    width: 100%;
    background: #fff;
    border: 1px solid #ACB5BD;
    height: 60px;
    border-radius: 60px;
    padding: 5px 25px 5px 25px;
}
.ff-search .submit {
    width: 150px;
    position: absolute;
    right: 5px;
    height: 50px;
    top: 5px;
    border-radius: 50px;
}
.ff-search .close {
    position: absolute;
    top: 20px;
    right: -30px;
    font-size: 25px;
    font-weight: 400;
    opacity: .6;
    cursor: pointer;
}
.ff-search .close:hover {
    opacity: 1;
}

/* Slide Menu */
.ff-slide-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 100;
    pointer-events: none;
    display: none;
}
.show_slide_menu .ff-slide-menu-mask {
    display: block;
    pointer-events: auto;
    animation: fadeIn 1s;
}
.ff-slide-menu {
    width: 100%;
    max-width: 400px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #000;
    z-index: 110;
    transition: transform .6s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    transition-delay: .1s;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    padding: 20px;
    overflow: auto;
}
.ff-slide-menu a{
    color: #fff;
    text-decoration: none;
}
.show_slide_menu .ff-slide-menu {
    transform: translate3d(0, 0, 0);
}
/* .show_slide_menu .site-container {
    transform: translate3d(-100px, 0, 0);
} */
body.show_slide_menu {
    overflow: hidden;
}
.ff-slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}
.ff-slide-menu-close {
    cursor: pointer;
    font-size: 30px;
}
.ff-slide-menu-close:hover {
    opacity: .8;
}

.ff-slide-menu-trigger {
    background: none;
    border: none;
    padding: 2px;
    width: 38px;
    height: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
}
.ff-slide-menu-trigger span {
    height: 1px;
    width: 100%;
    background: #fff;
}
.ff-slide-menu-trigger:hover {
    background: none;
}
.ff-slide-menu-trigger .l1 {
    width: 70%;
    transition: width .5s ease;
    will-change: width;
}
.ff-slide-menu-trigger:hover .l1 {
    width: 100%;
}

.ff-slide-menu .sub-menu {
    /* overflow: hidden;
    transition: all .5s ease;
    height: 0;
    display: flex; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.2;
    padding: 0;
}
/* .ff-slide-menu .show-sub .sub-menu {
    height: initial;
    padding-bottom: 12px;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */

.ff-slide-menu .menu-item-has-children > a {
    position: relative;
    display: inline-block;
}
.ff-slide-menu .menu-item-has-children > a:after {
    content: '\e90b';
    font-family: 'icomoon';
    transition: transform .5s ease;
    display: inline-block;
    margin-left: 14px;
    position: absolute;
    font-size: 18px;
    top: 5px;
    line-height: 1;
}
.ff-slide-menu .menu-item-has-children.show-sub > a:after {
    transform: rotate(180deg);
}
.ff-slide-menu .toggle_height_el_con {
    transition: height 500ms ease;
}

/* Swiper / Carousel */
.swiper-slide {
    width: auto;
}
.transition-linear {
    transition-timing-function: linear;
}
.swiper-pagination-bullet {
	font-size: 0;
	line-height: 1;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    border: 1px #495056 solid;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #495056;
}

.swiper-pagination.numeric .swiper-pagination-bullet {
	font-size: 15px;
	font-weight: bold;
	color: #a4a7aa;
	letter-spacing: 1px;
    width: 40px ;
    height: 15px;
    display: inline-flex;
	justify-content: center;
	align-items: center;
    border-radius: 0;
    background: transparent;
    border: 0px;
	border-right: 2px #a4a7aa solid;
	margin: 0;
}
.swiper-pagination.numeric .swiper-pagination-bullet:last-of-type {
	border-right: 0px;
}
.swiper-pagination.numeric .swiper-pagination-bullet-active {
    background: transparent;
	color: #495056;
}

/* Toggle Height */
.toggle_height_el_con {
    height: 0;
    overflow: hidden;
    transition: height 600ms ease;
}

/* Others */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}

.NOIntersectionObserver .elementor-invisible {
	visibility: visible;
}

body.admin-bar .dialog-lightbox-widget {
    min-height: 100vh;
}

body:not(.elementor-editor-active) .defer-bg-image div,
body:not(.elementor-editor-active) .defer-bg-image section,
body:not(.elementor-editor-active) .defer-bg-image {
	background-image: none!important;
}

.section-with-border-top:before,
.section-with-border-bottom:before {
	content: '';
	position: absolute;
	width: 1400px;
    max-width: 100%;
	left: 50%;
	translate: -50%;
	height: 2px;
    background: #eff0f1;
}
.section-with-border-bottom:before {
    top: initial;
    bottom: 0;
}
.section-with-border-top:before {
    bottom: initial;
	top: 0;
}

.elementor-video-wrapper iframe {
    height: 100%;
}

.flex {
    display: flex;
}
.items-no-shrink .item {
    flex-shrink: 0;
}

.color-white {
    color: #fff;
}

.hide {
    display: none!important;
}

.text-center { text-align: center; }

.lh-0 { line-height: 0; }
.lh-1 { line-height: 1; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.limit-lines-4,
.limit-lines-3,
.limit-lines-2,
.limit-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.limit-lines-2 {
    -webkit-line-clamp: 2;
}
.limit-lines-3 {
    -webkit-line-clamp: 3;
}
.limit-lines-4 {
    -webkit-line-clamp: 4;
}

.fa-twitter:before{ 
    content: '\e935' !important;
    font-family: 'icomoon' !important;
    font-weight: 400 !important;
}


@media(max-width:1023px){
    .tablet-ml-auto { margin-left: auto; }
    .tablet-mr-auto { margin-right: auto; }
    .tablet-mx-auto { margin-left: auto; margin-right: auto; }
    .tablet-text-center { text-align: center; }

    .tablet-cols-fullwidth.e-con > .e-con-inner {
        flex-wrap: wrap;
    }
    .tablet-cols-fullwidth.e-con > .e-con-inner > .e-con {
        width: 100%;
    }
}
@media(max-width:767px){
    .mobile-ml-auto { margin-left: auto; }
    .mobile-mr-auto { margin-right: auto; }
    .mobile-mx-auto { margin-left: auto; margin-right: auto; }
    .mobile-text-center { text-align: center; }
}

/* @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    
} */



/*CUSTOM CSS*/
.custom-tab-1 .e-n-tab-title {
    background: transparent !important;
    border-bottom: 2px solid #CCC !important;
    color: #000 !important;
    font-size: 16px !important;
}
.custom-tab-1 .e-n-tabs-heading {
    gap: 0 !important;
}
.custom-tab-1 .e-n-tab-title[aria-selected=true]{
    border-bottom: 2px solid #000 !important;

}
/* Custom Accordion Flex */
.accordion-style-1.elementor-widget-n-accordion {
    --n-accordion-border-width: 0px;
}

.accordion-style-1 .e-n-accordion-item {
    --n-accordion-border-width: 0px;
    border-bottom: 2px #000 solid;
}

.accordion-style-1 .e-n-accordion-item-title-icon .e-opened i:before,
.accordion-style-1 .e-n-accordion-item-title-icon .e-closed i:before{
    display: none;
}

.accordion-style-1 .e-n-accordion-item-title-icon {
    align-self: flex-start;
    margin-top: 3px;
}

.accordion-style-1 .e-n-accordion-item-title-icon .e-opened i:after,
.accordion-style-1 .e-n-accordion-item-title-icon .e-closed i:after{
    content: url('/wp-content/uploads/2024/12/Arrow-custom.svg');
    font-family: 'icomoon';
    font-size: 18px;
    color: #ff0000
}

.accordion-style-1 .e-n-accordion-item-title-icon .e-opened i:after{
    content: url('/wp-content/uploads/2024/12/Arrow-custom.svg');
}

.accordion-style-1 .e-n-accordion-item-title{
    padding: 25px 10px !important;
}

.accordion-style-1 .e-n-accordion-item-title-text{
    font-weight: 400;
    font-size: 18px !important;
    line-height: 1.55;
    padding-left: 30px;
    text-transform: capitalize;
}
.accordion-style-1 .e-n-accordion-item p, .accordion-style-1 .e-n-accordion-item li{
    margin-left: 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.80;
}
.accordion-style-1 .e-n-accordion-item a{
	font-weight: 600;
}
.accordion-style-1 .e-n-accordion-item[open] .e-n-accordion-item-title{
    padding-bottom: 0 !important;
}

@media(max-width: 1023px){
    .accordion-style-1 .e-n-accordion-item-title{
        padding: 12px 0px;
    }
    
    .accordion-style-1 .e-n-accordion-item-title-text{
        font-size: 15px;
        padding-left: 0px;
    }
}


/*Accordion Style 2*/
.accordion-style-2.elementor-widget-n-accordion {
    --n-accordion-border-width: 0px;
}

.accordion-style-2 .e-n-accordion-item {
    --n-accordion-border-width: 0px;
    border-bottom: 2px #fff solid;
}

.accordion-style-2 .e-n-accordion-item-title-icon .e-opened i:before,
.accordion-style-2 .e-n-accordion-item-title-icon .e-closed i:before{
    display: none;
}

.accordion-style-2 .e-n-accordion-item-title-icon {
    align-self: flex-start;
    margin-top: 3px;
}

.accordion-style-2 .e-n-accordion-item-title-icon .e-opened i:after,
.accordion-style-2 .e-n-accordion-item-title-icon .e-closed i:after{
    content: url('/wp-content/uploads/2024/12/Arrow-custom-white.svg');
    font-family: 'icomoon';
    font-size: 18px;
    color: #fff
}

.accordion-style-2 .e-n-accordion-item-title-icon .e-opened i:after{
    content: url('/wp-content/uploads/2024/12/Arrow-custom-white.svg');
    color: #fff
}

.accordion-style-2 .e-n-accordion-item-title{
    padding: 25px 10px !important;
}

.accordion-style-2 .e-n-accordion-item-title-text{
    font-weight: 400;
    font-size: 18px !important;
    line-height: 1.55;
    padding-left: 30px;
    text-transform: capitalize;
    color: #fff;
}
.accordion-style-2 .e-n-accordion-item p {
    margin-left: 40px;
    font-size: 14px;
    line-height: 1.80;
    color: #fff;
}
.accordion-style-2 .e-n-accordion-item[open] .e-n-accordion-item-title{
    padding-bottom: 0 !important;
}

.accordion-style-2 .e-n-accordion-item[open] .e-n-accordion-item-title i {
    color: #fff !important;

}
.white-texts li, .white-texts .elementor-widget-text-editor .elementor-widget-container, .white-texts p{
    color: #fff;
}
@media(max-width: 1023px){
    .accordion-style-2 .e-n-accordion-item-title{
        padding: 12px 0px;
    }
    
    .accordion-style-2 .e-n-accordion-item-title-text{
        font-size: 15px;
        padding-left: 0px;
    }
}

/*Item Team Box*/

.item-team .s1 img{
    width: 184px;
    height: 184px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 50px;
    position: relative;
    top: 0;
}
.item-team .name{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}
.item-team .position{
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #000;
}
.item-team .s1.image.hover-overlay{
    text-align: center;
}
.item-team .s2{
    position: relative;
    top: 0;
}
.item-team:hover .s2{
    top: 5px;
    transition: top .3s ease;
}
.item-team:hover img{
    top: -5px;
    transition: top .3s ease;
}
.button-box {
    display: flex;
    gap: 40px;
}
.button-box .icon-tri-arrow-left:before {
    color: #000;
    cursor: pointer;
    font-size: 12px;
}
.button-box .icon-tri-arrow-right:before {
    color: #000;
    cursor: pointer;
    font-size: 12px;
}
.elementor-nav-menu--main .elementor-item {
    color: #fff;
}
.menu-phone a{
    color: #fff !important;
}
.menu-phone span{
    font-weight: 600;
}
.menu-phone span.elementor-button-text{
    color: #000;
    font-weight: 300;
}
/*NEWS*/
.post a {
    text-decoration: underline;
    font-weight: 400;
}
.item.item-post {
    background: #F7F8FA;
    border-radius: 9px;
}
.item.item-post .s2 {
    padding: 20px 25px 70px 25px;
}
.item.item-post .s2 .post-title{
    font-weight: 400;
}
.item-post img {
    height: 226px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}
.item-post .title{
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.55;
    margin-bottom: 25px;
    min-height: 50px;
}
.item-post .more-link{
    background: #000;
    color: #fff;
    display: none;
    position: absolute;
    margin-top: 10px;
    max-width: 134px;
    width: 100%;
}
.item-post:hover{
    background: #fff;
}
.item-post .more-link:hover{
    color: #fff;
}
.item-post:hover img{
    height: 200px;
    transition: height .3s ease;
}
.item-post:hover .more-link{
    display: flex
}

/*Projects*/
.item-project .title{
    font-size: 24px;
    font-weight: 400;
    line-height: 1.41;
    text-transform: capitalize;
    margin-bottom: 20px;
    min-height: 63px;
    color: #000;
}
.item-project .excerpt{
    line-height: 1.93;
}
.item-project .btn{
    border: 0;
    font-weight: 600;
    padding: 0;
    margin-top: 20px;
    display: block;
}
.item-project .btn:after{
    content: url('/wp-content/uploads/2024/12/Arrow-custom.svg');
    position: relative;
    left: 40px;
    transition: left .5s ease;
}
.item-project:hover .btn:after{
    left: 20px;
}
.item-project p.post-type{
    color: #000;
}

/*Item Team*/
.team-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.loop.team-overview a {
    width: 258px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

/*Projects Overview*/
.projects-overview .media-boxes-filter-container .inner{
    justify-content: center;
}
.projects-overview .media-boxes-filter-container{
    box-shadow: none;
}
.projects-overview .media-boxes-search {
    border: 0;
    border-bottom: 1px solid #000;
    width: 100%;
    min-width: 464px;
    padding: 0;
}
.projects-overview .mb-search:after {
    content: '\e9a8';
    font-family: 'icomoon';
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: initial;
    font-size: 24px;
}
.projects-overview .s2 .excerpt {
    min-height: 123px;
}

/*News Overview*/
.news-overview .media-boxes-filter-container .inner{
    justify-content: center;
}
.news-overview .media-boxes-filter-container{
    box-shadow: none;
}
.news-overview .media-boxes-search {
    border: 0;
    border-bottom: 1px solid #000;
    width: 100%;
    min-width: 464px;
    padding: 0;
}
.news-overview .mb-search:after {
    content: '\e9a8';
    font-family: 'icomoon';
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: initial;
    font-size: 24px;
}
/*.news-overview .s2 .excerpt {
    min-height: 123px;
}
*/

.header-type1 .elementor-element.header-row-2.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded{
    background: #000;
}

/* Content Well */
.content-well {
    background: #E9ECEF;
    border-radius: 5.138px;
    padding: 20px 30px;
}

/*Single Project*/
.key-project-listing {
    width: 100%;
}
.key-listing {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 10px;
}
.key-listing p{
    margin-bottom: 0;
}
.key-listing .k1{
    font-size: 14px;
    text-transform: capitalize;
}
.key-listing .k2{
    font-size: 18px;
}
.key-listing div {
    width: 23%;
}


/*Custom Mobile Resposnsive*/
@media (max-width: 767px){
    .key-listing div {
        width: 47%;
    }
    .key-listing{
        margin-bottom: 40px;
    }
}


/*Services*/
.service-overview .items {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}
.item-service{
    position: relative;
}
.item-service .inner-content{
    position: relative;
    max-width: 400px;
}
.item-service p.title {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.41;
    color: #fff;
    font-size: 24px;
    max-width: 279px;
    z-index: 9;
}
.item-service .inner-content img {
    border-radius: 12px;
    height: 582px;
    object-fit: cover;
}
.item-service .image-with-overlay{
    position: relative;
}
.item-service .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000087;
    border-radius: 12px;
    max-height: 582px;
}
p.title-toggled{
    font-weight: 400;
}
.default-toggled, .default{
    opacity: 1;
    transition: opacity .3s ease;
}
.default-toggled{
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.41;
    color: #fff;
    font-size: 24px;
    max-width: 279px;
    flex-wrap: wrap;
    flex-direction: column;
    z-index: 9;
}
.default-toggled p.excerpt, .default-toggled p.subheading{
	font-size: 16px;
    line-height: 2;
    text-shadow: 1px 1px #000;
}
.item-service .inner-content:hover .default{
    display: none;
    opacity: 0;
}
.item-service .inner-content:hover .default-toggled{
    display: flex;
    flex-direction: column;
    gap: 100px;
    opacity: 1;
}
.item-service .more-link{
    border-color: #fff;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

@media (max-width: 1200px){
    .service-overview .items {
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    .service-overview .swiper-slide{
        max-width: 400px;
        width: 100%;
    }
}
@media (max-width: 767px){
    .news-overview .media-boxes-search, .projects-overview .media-boxes-search{
        min-width: initial;
        width: 100%;
    }
}

/*TEAM POPUP*/
.team-popup {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
}
.show-team-popup {
    margin: 0; 
    height: 100%; 
    overflow: hidden;
}
.show-team-popup .team-popup,
.team-popup--show {
    display: block;
}
.team-popup__overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: #000000a3;
}

.team-popup__container {
    min-height: 459px;
    left: 50%;
    max-height: calc(100vh - 40px);
    opacity: 0;
    position: absolute;
    top: 40%;
    transform: translate(-50%, -50%);
    transition: top 0.5s ease, opacity 0.5s ease;
    width: min(820px, calc(100vw - 40px));
}
.team-popup__container--show {
    opacity: 1;
    top: 50%;
}

.team-popup__body {
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.14);
    min-height: 200px;
    position: relative;
}



@media(max-height:700px){
    .team-popup__body {
        min-height: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.team-popup__loading {
    aspect-ratio: 1;
    background: transparent;
    /* border-radius: 10%; */
    border-radius: 20%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    /* width: 98px; */
    width: 70;
}
.team-popup__loading::before {
    aspect-ratio: 1;
    /* background: transparent url(/wp-content/uploads/2023/10/well-icon.svg) no-repeat center center; */
    background: transparent url(/wp-content/uploads/2025/01/loading.webp) no-repeat center center;
    background-size: contain;
    content: ' ';
    display: block;
    width: 70px;

    animation-name: loading;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.team-popup__close {
    aspect-ratio: 1;
    background: transparent;
    box-shadow: initial;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 25px;
    transform: translate(50%, -50%);
    width: 45px;
}
.team-popup__close::before {
    color: #2C0E34;
    content: '\e9df';
    font-family: icomoon;
    font-size: 26px;
    left: 50%;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}


@keyframes loading {
    to { transform: scale(1.5) }
}
/* End Team Popup` */