:root {
    --primary-bg-color: green;
}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Cormorant Garamond", Sans-serif;
    line-height: 1.2em !important;
}

a {
    transition: all 0.25s ease-in;
    cursor: pointer;
}

.btn,
a.elementor-button,
input[type="submit"] {
    transition: all 0.25s ease-in;
    cursor: pointer;
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;

    line-height: inherit;

}


/*Header*/

header#main-header {
    position: fixed;
    width: 1440px;
    margin: 0 auto;
    right: 20px;
    left: 20px;
    top: 30px;
    background-color: transparent;
    max-width: calc(100% - 40px);
    padding: 0;
    box-shadow: 0 0 0;
    transition: all 0.2s ease;
}

.admin-bar header#main-header {
    top: 60px;
}

header .header-inner {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
    border-radius: 60px;
    background: rgba(10, 10, 10, 0.91);
    transition: all 0.2s ease;
}



header .header-inner .logo {
    height: 35px;
    transition: all 0.2s ease;
}

header .header-inner .logo img {
    height: 35px;
    margin-left: 10px;
    transition: all 0.2s ease;
    max-width: unset;
}



header .header-inner .main-menu {
    margin: 0 0 0 auto;
}

header .header-inner li a {
    color: #fff;
    text-transform: capitalize;
    transition: all 0.25s ease-in;
    font-weight: 400;
}

header .header-inner .main-menu ul.main-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}





header .header-inner .last-btn a {
    text-transform: math-auto;
    font-size: 16px;
    gap: 0;
}

header .header-inner .last-btn a:hover,
header .header-inner .last-btn a:focus {
    background: #3c3c3c;
    color: #fff;
    border: 2px solid #fff;
}

header .header-inner .last-btn a .icon {
    transform: rotate(-45deg);
    font-size: 20px;
    font-weight: 500;
    margin-left: 8px;

}

/*MENU ICON CUSTOM*/
span.icon-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

span.icon-menu span.line {
    height: 3px;
    display: block;
    width: 30px;
    background: #fff;
    transform: rotate(0deg) translate(0px, 0px);
    border-radius: 4px;
    transition: all 0.25s ease-in;
}

.menu-toggle.active span.line.line-1 {
    transform: rotate(45deg) translate(7px, 10px);
}

.menu-toggle.active span.line.line-2 {
    transform: translate(200px, 0px);
}

.menu-toggle.active span.line.line-3 {
    transform: rotate(-46deg) translate(6px, -9px);
}

p {
    line-height: 1.4em !important;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}


h2 {
    display: flex;
    flex-direction: column;
}

h2 small {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: "DM Sans", sans-serif;
    opacity: 0.7;
    line-height: 1.2em;
}

/*Common classes*/

.container {
    width: 1440px;
    max-width: 100%;
    padding: 15px;
}


.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 12px 22px;
    color: #000;
    border-radius: 40px;
    text-transform: math-auto;
    font-weight: 600;
    border: 2px solid;
    font-size: 16px;
}

.btn .icon {
    transform: rotate(-45deg);
}

.btn-white {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-white:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.btn-black {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-black:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

form .gform_footer input[type="submit"] {
    background: #000;
    border-color: #000;
    padding: 12px 60px 12px 30px;
    text-align: left;
    color: #fff;
    border-radius: 40px;
    text-transform: math-auto;
    font-weight: 600;
    border: 2px solid #000;
    font-size: 18px;
    min-width: 150px;
    background-image: url(icon/arrow-top-right.svg);
    background-size: 24px;
    background-position: calc(100% - 30px) center;
    background-repeat: no-repeat;
}

form .gform_footer input[type="submit"]:hover,
form .gform_footer input[type="submit"]:focus {
    background: #fff;
    color: #000;
    border-color: #000;
    background-image: url(icon/arrow-top-right-hover.svg);
    background-size: 24px;
    background-position: calc(100% - 30px) center;
    background-repeat: no-repeat;
}

/*HOME ABOUT US SECTION*/
.overlay-info .elementor-widget-container {
    min-width: 180px;
    box-shadow: 0px 8px 27px -15px #000;
}

.overlay-info .elementor-widget-container small {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

/*PROJECT HOME SLIDER*/

.project-slider .project-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.project-slider .project-item .project-img {
    width: 40%;
    margin: 0 auto;
}

.project-slider .project-item .project-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 750px;
}

.project-slider .project-item .project-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.project-slider .project-item .project-info .address {
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
    font-size: 16px;
    font-weight: 300;
}

.project-slider .project-item .project-info h3 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    font-family: "DM SANS", sans-serif;
}

.project-slider .project-item .project-info p {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    display: none;
}

.project-slider .slide-counter {
    gap: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    font-weight: 800;
    color: #000;
}

.project-slider .slide-counter .icon {
    cursor: pointer;
    margin: 10px 20px;
    display: block;
}

/*SERVICES*/
.box-services>.elementor-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
}

.box-services .elementor-container.elementor-column-gap-default>div {
    width: calc(33.33% - 60px);
}

.box-services .elementor-container .elementor-element img {
    width: 75px;
}

/*BLOG POST*/
.recent-blog-posts {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 50px;
}

.recent-blog-posts .blog-post {
    width: calc(33.33% - 50px);
    position: relative;
    gap: 25px;
    display: flex;
    flex-direction: column;
}

.recent-blog-posts .blog-post .meta-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
}

.recent-blog-posts .blog-post p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.recent-blog-posts .blog-post .meta-info span.cat {
    font-size: 14px;
    background: #D7D7D7;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
}

.recent-blog-posts .blog-post .meta-info span.date {
    color: #000000;
    font-size: 14px;
}

.recent-blog-posts .blog-post h3 {
    font-size: 28px;
}

.recent-blog-posts a.overlay-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/*FOOTER*/
#main-footer {
    background-color: #E4E6EA;
    padding: 60px 0 40px;
}

#main-footer .footer-inner {
    background: #000;
    padding: 60px 80px 40px;
    border-radius: 0 60px 60px 60px;
}

#main-footer .footer-inner .container {

    width: 100%;
    padding: 0;

}

#main-footer .footer-inner .footer-widget:first-child {
    width: 320px;
}

#main-footer .footer-inner .footer-widget:last-child {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;

}

#main-footer .footer-inner .footer-widget:last-child>div {
    min-width: 150px;
    max-width: 240px;
    margin-bottom: 0 !important;
}

#main-footer .top-bar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

#main-footer .top-bar .box {
    background-color: #2D2F2E;
    border-radius: 0 20px 0 0;
}

#main-footer .top-bar .box.mail-box {
    background-color: #ffffff;
    border-radius: 20px 0 0 0;
    color: #000;
}

#main-footer .top-bar .box.mail-box a {
    color: #000;
}

#main-footer .top-bar .box a {
    padding: 20px 40px;
    display: inline-block;
    color: #E4E6EA;
    font-size: 20px;
}

#footer-widgets {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 0 30px;
    flex-wrap: wrap;
    gap: 50px;
}

#main-footer .footer-inner #footer-bottom {
    background-color: transparent;
    color: #E4E6EA;
}

#main-footer .footer-inner .footer-widget .title {
    font-size: 20px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
}

#main-footer .footer-inner .footer-widget {
    margin: 0 0 auto;
}

#footer-widgets .footer-widget li {
    padding: 0;
    margin-bottom: 12px;
}

#footer-widgets .footer-widget li a {
    color: #E4E6EA;
    text-decoration: none;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-size: 16px;
    display: inline-block;
}

#footer-widgets .footer-widget li a:hover {
    opacity: 1;
    color: #fff
}

#footer-widgets .footer-widget li a:after {
    display: block;
    content: "";
    position: relative;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

#footer-widgets .footer-widget li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

#main-footer .footer-inner #footer-widgets .footer-widget li:before {
    display: none;
}


/*###################
RESPONSIVE MENU
#########################*/

@media (min-width: 1200px) {
    .mobile-menu {
        display: none;
    }


    header .header-inner .main-menu ul li>a::before {
        display: block;
        content: "";
        position: relative;
        width: 100%;
        transform: scaleX(0);
        border-radius: 5px;
        height: 1px;
        bottom: -27px;
        left: 0;
        background: currentcolor;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;

    }

    header .header-inner .main-menu ul.main-menu>li>a::before {

        bottom: -56px;
    }


    header .header-inner .main-menu ul li:hover>a::before {
        transform: scaleX(1);
        transform-origin: bottom left;

    }

    header .header-inner .main-menu ul li ul.sub-menu {
        display: none;
        position: absolute;

        background: #000000;
        padding: 20px;
        border-radius: 16px;
        top: 100px;
    }

    header .header-inner .main-menu ul.sub-menu::before {
        display: block;
        content: "";
        position: absolute;
        top: -60px;
        height: 70px;
        left: 0;
        width: 100%;
    }

    header .header-inner .main-menu ul li:hover ul.sub-menu {
        display: block;
    }

    header .header-inner .main-menu ul li:hover ul.sub-menu li a {
        padding: 5px;
        margin: 5px;
        display: inline-block;
    }

    header .header-inner .main-menu ul.main-menu>li.menu-item-has-children>a:after {
        content: "\e5c8";
        font-family: 'Material Symbols Rounded';
        font-weight: normal;
        font-style: normal;
        font-size: 24px;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
        vertical-align: sub;
        transform: rotate(45deg);
        font-size: 20px;
        font-weight: 500;
        margin-left: 5px;
    }

    header .header-inner .main-menu>ul:hover>li>a {
        opacity: 0.5;
    }

    header .header-inner .main-menu>ul>li>a:hover {
        opacity: 1;
        position: relative;
        z-index: 99;
    }

}

@media (max-width: 1199px) {
    header .header-inner .main-menu ul li:hover>a::before {
        display: none
    }

    header .header-inner .main-menu.active ul {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 19px;
        padding: 15px 0 0;
        text-align: center;
    }

    .main-menu {
        display: none;
    }

    header .header-inner .main-menu.active {
        display: block;
        position: absolute;
        background: #000000d9;
        right: 20px;
        padding: 25px;
        border-radius: 16px;
        z-index: 99;
        top: calc(100% + 20px);
        width: calc(100% - 40px);
    }

    header .header-inner .main-menu.active ul {
        display: flex;
        flex-direction: column;
    }

    .last-btn {
        margin: 0 0 0 auto;
    }

    #main-footer .footer-inner .footer-widget:last-child {
        justify-content: flex-start;
        gap: 50px;
        width: 100%;
        flex-wrap: wrap;
        width: 100% !important;
    }

    #main-footer .footer-inner {
        background: #000;
        padding: 40px;
        border-radius: 0 60px 60px 60px;
    }

}

@media (max-width: 1024px) {
    .box-services>.elementor-container {

        gap: 30px;
    }

    .box-services .elementor-container.elementor-column-gap-default>div {
        width: calc(50% - 30px);
    }


}

@media (max-width: 990px) {

    #main-footer .top-bar {

        margin-bottom: 20px;
    }

    #main-footer .top-bar .box {

        border-radius: 0 20px 20px 0;
        width: 40%;
    }

    #main-footer .top-bar .box.mail-box {

        border-radius: 20px 0 0 20px;

        width: 60%;
    }
}

@media (min-width: 768px) {

    header.scrolled .header-inner {
        padding: 10px 15px;
    }

    header.scrolled .header-inner .logo,
    header.scrolled .header-inner .logo img {
        height: 25px;
    }

    .admin-bar header#main-header.scrolled {
        top: 50px;
    }

    header#main-header.scrolled {
        top: 20px;
    }

    header.scrolled .header-inner .main-menu ul.main-menu>li>a::before {
        bottom: -46px;
    }


}

@media (max-width: 767px) {
    #footer-widgets {
        gap: 0;
    }

    #main-footer .footer-inner .footer-widget .title {
        font-size: 18px;

        margin-bottom: 10px;
    }

    #main-footer .footer-inner .footer-widget:last-child {
        gap: 20px;
        justify-content: center;
    }

    .project-slider .project-item {

        flex-direction: column;
    }

    .project-slider .project-item .project-img {
        width: 100%;
    }

    .project-slider .project-item .project-info {
        width: 100%;
    }

    header .header-inner .logo img {
        height: 30px;
    }

    header#main-header {
        position: fixed;
        max-width: 100%;
        left: 0;
        top: 0;
        right: 0;
    }
 header#main-header{

    
 }
    .admin-bar header#main-header {
        margin: 0;
        padding: 0;
        max-width: 100%;
        top: 0;
    }

    header .header-inner {
        border-radius: 0;
        padding: 15px 15px;
        position: relative;
    }

    h2 small {

        font-size: 16px;
        margin-bottom: 15px;
    }

    .project-slider .project-item .project-info h3 {
        font-size: 24px;
    }

    #main-footer .top-bar .box a {
        font-size: 14px;
    }

    #main-footer .footer-inner #footer-bottom {

        text-align: center;
    }

    #main-footer .footer-inner .footer-widget:first-child {
        width: 320px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0 0 50px !important;
    }

    #main-footer {

        padding: 40px 0 40px;
    }

    #main-footer .top-bar {

        flex-direction: column;
    }

    #main-footer .top-bar .box {
        border-radius: 0 0 20px 20px;
        text-align: center;
        width: 100%;
    }

    #main-footer .top-bar .box.mail-box {
        border-radius: 20px 20px 0 0;
        width: 100%;
    }

    #main-footer .footer-inner {
        background: #000;
        padding: 30px;
        border-radius: 20px;
    }




}

@media (max-width: 640px) {

    .last-btn {
        display: none;
    }

    .project-slider .project-item .project-img img {

        height: 420px;
    }

    .project-slider .project-item .project-info p {
        font-size: 16px;
    }

    p {

        font-size: 16px;
    }

    .recent-blog-posts .blog-post {
        width: 100%;
    }

    #main-footer .footer-inner .footer-widget:last-child {

        justify-content: flex-start;
    }

    .overlay-info .elementor-widget-container small {

        font-size: 10px;

        margin-top: 0;
        line-height: 1.2em;
    }

}

@media (max-width: 480px) {

    header .header-inner .logo img {
        height: 30px;
    }

    header .header-inner .logo {
        height: 30px;
    }

    .box-services>.elementor-container {
        gap: 15px;
        justify-content: center;
    }


    .overlay-info .elementor-widget-container {
        min-width: 100px;
        box-shadow: 0px 8px 27px -15px #000;
        padding: 10px !important;
    }

    .box-services .elementor-container.elementor-column-gap-default>div {
        width: 100%;
        padding: 0px 15px 20px;
        margin-bottom: 20px;
    }

    .project-slider .project-item .project-info .address {
        font-size: 14px;
    }

    .project-slider .slide-counter {
        margin-top: 30px;
    }

    .btn {
        gap: 5px;
        font-size: 14px;
        padding: 12px 16px;
    }

    .btn .icon {
        transform: rotate(-45deg);
        font-size: 18px;
    }

    h2 small {

        font-size: 14px;

    }

    form .gform_footer input[type="submit"] {
        font-size: 14px;
        background-size: 20px;
    }

    .recent-blog-posts .blog-post p {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }
}