/* :root{
    --e-global-color-primary: #AD9340;
    --e-global-color-secondary: #212121;
    --e-global-color-text: #212121;
    --e-global-color-accent: #FFFFFF;
    --e-global-typography-primary-font-family: "Cormorant Garamond";
    --e-global-typography-primary-font-weight: 700;
    --e-global-typography-secondary-font-family: "Sofia Sans";
    --e-global-typography-secondary-font-weight: 600;
    --e-global-typography-text-font-family: "Metropolis";
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Diona";
    --e-global-typography-accent-font-weight: 500;
    --e-global-typography-119c5f4-font-family: "Poppins";
} */
p, h1, h2, h3, h4, h5, h6{
    margin: 0;
}
ul{
    margin: 0;
    padding: 0;
}
ul li{
    list-style-type: none;
}
.projects-section{
    padding-top: 20px;
}
.project-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.project-card .project-image{
    width: 40%;
    position: relative;
    padding: 20px 0 0 15px;
}
.project-card .project-image:after{
    content: "";
    background-color: var(--e-global-color-primary);
    width: calc(100% - 20px);
    height: calc(100% - 20px);;
    top: 20px;
    bottom: 0;
    left: 10px;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: 1;
    transition: all ease-in-out 0.5s;
}
.project-card .project-image img{
    position: relative;
    z-index: 2;
}
.project-card:hover .project-image:after{
    transform: translate3d(-15px, -15px, 0);
}

.project-card .project-content{
    width: 55%;
}
.project-content h3 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 20px;
    color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-primary-font-family) !important;
}
.project-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--e-global-color-text);
    padding-bottom: 25px;
    font-family: var(--e-global-typography-text-font-family);
}
.arrow-btn {
    display: inline-block;
}
.arrow-btn svg{
    width: 70px;
    display: block;
}
.arrow-btn svg circle:nth-child(2) {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: all 1.5s cubic-bezier(.45, 0, .14, 1.03);
    transform: rotate(-200deg);
    transform-origin: 71% 50%;
}
.arrow-btn:hover svg circle:nth-child(2) {
    stroke-dashoffset: 0;
    transform: rotate(55deg);
    transition: 1.2s cubic-bezier(.38, .67, .76, .66);
}
.numberBox .elementor-counter{
    position: relative;
}
.numberBox .elementor-counter-title{
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.featured-card{
    position: relative;
    overflow: hidden;
}
.featured-content{
    background: rgba(0, 0, 0, 0.0);
    position: absolute;
    top: calc(100% - 100px);
    left: 0;
    width: 100%;
    padding: 30px;
    transition: all ease-in-out 0.5s;
}
.featured-card:hover .featured-content{
    background: rgba(0, 0, 0, 0.3);
    top: calc(100% - 270px);
}
.featured-content h3{
    font-size: 30px;
    color: var(--e-global-color-accent);
    line-height: 50px;
    padding-bottom: 20px;
}
.featured-content p{
    font-size: 16px;
    line-height: 25px;
    color: var(--e-global-color-accent);
    padding-bottom: 20px;
}
.featured-content svg circle{
    stroke: var(--e-global-color-accent);
}
.featured-content svg polygon{
    fill: var(--e-global-color-accent);
}
.site-copyright{
    padding: 10px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    color: var(--e-global-color-text);
}
.site-copyright a{
    color: var(--e-global-color-text);
    text-decoration: none;
}
.footerMenu .current-menu-item{
    display: none;
}
.footerW{
    display: none;
}
.wp-dark-mode-active .footerB{
    display: none;
}
.wp-dark-mode-active .footerW{
    display: block;
}
.site-header-bar{
    display: flex;
    justify-content: center;
    align-items: center;
}
.site-header-bar li a,
.site-header-bar li{
    font-size: 16px;
    line-height: 40px;
    display: block;
    color: var(--e-global-color-accent);
    font-family: var(--e-global-typography-text-font-family);
    cursor: pointer;
}
.site-header-bar li a:hover,
.site-header-bar li:hover{
    color: var(--e-global-color-primary);
}
.site-header-bar li{
    padding: 0 15px 0 40px;
    border-right: 1px solid var(--e-global-color-primary);
    position: relative;
}
.site-header-bar li:last-child{
    border: 0;
}
.site-header-bar li:before{
    content: "";
    width: 16px;
    height: 20px;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    position: absolute;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.site-header-bar li.header-email:before{
    background-image: url(../images/envelope.png);
}
.site-header-bar li.header-phone:before{
    background-image: url(../images/cell-phone.png);
}
.site-header-bar li.menu-toggle-btn:before{
    background-image: url(../images/menubars.svg);
}
#site-menu-overlay{
    position:fixed;
    inset:0;
    background: var(--e-global-color-text);
    background-image: url(../images/menuBg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index:99999;
    clip-path:polygon(
        0% 0%,
        100% 0%,
        64% 5%,
        26% 21%
    );
    transition:
        clip-path 1s cubic-bezier(.22,1,.36,1),
        opacity 1.5s ease;
    opacity:0;
    top: 0;
    padding: 80px 50px;
    z-index: -999;
}
#site-menu-overlay.active{
    opacity:1;
    clip-path:polygon(
        0% 0%,
        100% 0%,
        100% 100%,
        0% 100%
    );
    z-index: 999;
}
.overlay-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: calc(100vh - 160px);
    position: relative;
}
.overlay-left{
    width:45%;
    display: flex;
    align-items: center;
    padding-left:120px;
}
.overlay-right{
    width: 30%;
    position: relative;
    height: 600px;
    background-image: url(../images/Frame7.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.overlay-close{
    position: absolute;
    top:40px;
    right:50px;
    color:var(--e-global-color-accent);
    font-size:25px;
    cursor: pointer;
    z-index:100;
}
.overlay-close:hover{
    color: #f90000;
}
.overlay-menu{
    padding:0;
    margin:0;
}
.overlay-menu .current-menu-item{
    position: relative;
}
.overlay-menu .current-menu-item:after{
    content: '';
    top: 0;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 3px;
    background: var(--e-global-color-primary);
    position: absolute;
    margin: auto;
}
.overlay-menu a{
    color:var(--e-global-color-accent);
    text-decoration;
    font-size: 45px;
    font-weight: 600;
    display: block;
    line-height: 70px;
}
.overlay-menu a:hover,
.overlay-menu .current-menu-item a{
    color: var(--e-global-color-primary);
}
.project-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100% !important;
    object-fit:cover;
    top: 0;
    left: 0;
    opacity:1;
    transform:scale(1.05);
    transition:opacity .5s ease, transform .5s ease;
}
.project-image.active{
    opacity:1;
    transform:scale(1);
}
/* Responsive */
@media (max-width: 767px){
    .footerMenu li a{
        display: block;
        text-align: center;
    }
    .site-header-bar li.header-email,
    .site-header-bar li.header-phone{
        display:none;
    }
    .site-header-bar{
        justify-content:flex-end;
    }
    .overlay-inner{
        display:block;
    }
    .overlay-left{
        width:100%;
        height:100vh;
        padding: 60px 30px;
        align-items:flex-start;
    }
    .overlay-right{
        display:none;
    }
    .overlay-menu a{
        font-size:34px;
    }
    #site-menu-overlay{
        padding: 25px;
    }
    .overlay-close {
        top: 30px;
        right: 30px;
        font-size: 18px;
    }
}

@media(max-width: 500px){
    .project-content p{
        max-height: 85px;
        overflow: hidden;
        padding-bottom: 0;
        margin-bottom: 15px;
    }
    .project-card .project-image{
        padding: 0;
    }

    .featured-card .featured-content {
        background: rgba(0, 0, 0, 0.3);
        top: calc(100% - 310px);
    }
}
.imagehover:after{
    background: rgba(255, 255, 255, .3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.postItems:hover .imagehover:after{
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.postBtn:after{
    background-color: var(--e-global-color-primary);
    content: "";
    position: absolute;
    bottom: 0;
    left: -1px;
    height: 0;
    width: calc(100% + 2px);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: -1;
}
.postItems:hover .postBtn:after{
    height: 100%;
    z-index: 2;
}
.postItems .elementor-button-content-wrapper{
    position: relative;
    z-index: 9;
}
.features-list{
    max-width: 60%;
}
.features-list li{
    font-size: 20px;
    line-height: 28px;
    padding: 15px 20px 15px 40px;
    border-bottom: 1px solid var(--e-global-color-primary);
    position: relative;
}
.features-list li:last-child{
    border-bottom: 0;
}
.features-list li:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/team-work.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: auto;
}
@media(max-width:767px){
    .features-list{
        max-width: 100%;
    }
}
.process .processItem{
    position: relative;
}
.process .processItem::before {
    content: "" !important;
    right: calc(100% - 2px);
    width: 4px !important;
    height: calc(100% + 60px) !important;
    background: var(--e-global-color-primary);
}
.process.leftBlock .processItem::before {
    left: calc(100% - 0px);
    right: unset;
}
.process.lastItem .processItem::before{
    height: 100% !important;
}
.process .processItem::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(100% - 15px);
    margin: auto;
    width: 26px;
    height: 26px;
    background-color: var(--e-global-color-primary);
    border: 4px solid var(--e-global-color-accent);
    border-radius: 50%;
}
.process.leftBlock .processItem::after {
    left: calc(100% - 11px);
    right: unset;
}
.listDiv ul{
    padding-left: 25px;
}
.listDiv ul li{
    list-style-type: disc;
}
.listDiv p{
    padding-bottom: 15px;
}
@media(max-width: 767px){
    .process.leftBlock .processItem::after {
        left: unset;
        right: calc(100% - 15px);
    }
    .process.leftBlock .processItem::before {
        left: unset;
        right: calc(100% - 4px);
    }
}
.postDiv p,
.postDiv ul{
    padding-bottom: 15px;
}
.postDiv p:last-child{
    padding-bottom: 0;
}
.postDiv ul{
    padding-left: 25px;
}
.postDiv ul li{
    list-style-type: disc;
}