:root {
    --dark-color-1: #272727;
    --white-color: #ffffff;
    --green-color: #E6FF8A;
    --body-fonts: 'Artific Trial', sans-serif;
}

/* Artific Trial Font Family */
@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-superbold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Oblique / Italic Styles */
@font-face {
    font-family: 'Artific Trial';
    src: url('../fonts/artifictrial-regularoblique.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

body {
    font-family: var(--body-fonts);
    font-size: 17px;
    line-height: 140%;
    font-weight: 400;
    color: var(--white-color);
    background: var(--dark-color-1);
}

.page-content,
.entry-content,
.entry-summary {
    margin: 0px;
}

.post,
.page {
    margin: 0px;
}

/*header css starts*/
.site-header {
    width: 100%;
    z-index: 999;
    transition: transform 0.25s ease;
}

.site-header.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(39, 39, 39, 0.7);
    backdrop-filter: blur(10px);
}

.site-header.hide-header {
    transform: translateY(-100%);
}

.site-header .header-container {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.site-header .main-navigation {
    width: auto;
}

.site-header .main-navigation ul {
    gap: 20px;
    align-items: center;
}

.site-header .main-navigation a {
    color: var(--white-color);
    font-size: 14px;
    line-height: 108%;
    font-weight: 500;
    transition: all 0.5s;
}

.site-header .main-navigation a:hover,
.site-header .main-navigation .current-menu-item a {
    color: var(--green-color);
}

.site-header .main-navigation .headernavbutton a {
    padding: 13px 15px;
    border-radius: 12px;
    background: var(--green-color);
    color: var(--dark-color-1);
    transition: all 0.5s;
    width: 94px;
    height: 43px;
    text-align: center;
}

.site-header .main-navigation .headernavbutton a:hover,
.site-header .main-navigation .current-menu-item.headernavbutton a {
    background: #CEEB7C;
    color: var(--dark-color-1)
}

.site-header .main-navigation .instagram a,
.site-header .main-navigation .linkedin a {
    border: 1px solid var(--green-color);
    padding: 13px 21px;
    border-radius: 12px;
    background-image: url(../images/instagram.svg);
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    overflow: hidden;
    background-size: 25px;
}

.site-header .main-navigation .linkedin a {
    background-image: url(../images/linkedIn.svg);
}

.site-header .main-navigation .instagram a:hover,
.site-header .main-navigation .linkedin a:hover {
    opacity: 0.8;
}

.site-header .site-branding img {
    display: block;
    max-width: 219px;
}

.site-header .main-navigation ul {
    display: none;
}

.site-header .menu-toggle {
    align-items: center;
    justify-content: center;
    display: flex;
}

.site-header .custom-logo-link {
    display: block;
}

.menu-toggle.active .hamburger-icon {
    display: none;
}

.menu-toggle.active .close-icon {
    display: block;
}

.menu-toggle {
    background: var(--green-color);
    border: none;
    cursor: pointer;
    padding: 0px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 1001;
}

.menu-toggle svg {
    fill: var(--dark-color-1);
    transition: all 0.3s ease;
    width: 11px;
    height: 11px;
}

.menu-toggle .close-icon {
    display: none;
    color: var(--dark-color-1);
}

.menu-toggle .close-icon svg {
    fill: var(--dark-color-1);
}

@media (min-width:600px) {
    .site-header .site-branding img {
        max-width: 250px;
    }
}

@media (min-width:768px) {
    .site-header .main-navigation ul {
        display: flex;
    }

    .site-header .menu-toggle {
        display: none;
    }

    .site-header {
        border: none;
    }
}

@media (min-width:1025px) {
    .site-header .main-navigation ul {
        gap: 40px;
    }

    .site-header .main-navigation ul li.instagram,
    .site-header .main-navigation ul li.headernavbutton {
        margin-left: -30px;
    }

    .site-header .header-container {
        padding: 21px 48px;
    }

    .site-header .site-branding img {
        max-width: inherit;
    }
}

@media (max-width: 767px) {
    body.logged-in .main-navigation ul {
        top: 112px;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
        background: var(--white-color);
        position: fixed;
        top: 80px;
        left: 20px;
        width: calc(100% - 40px);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-navigation ul li {
        display: block;
        margin: 0px 0;
        width: 100%;
        text-align: center;
    }

    .main-navigation.active ul {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .site-header .main-navigation a {
        color: var(--dark-color-1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .site-header .main-navigation a:hover,
    .site-header .main-navigation .current-menu-item a {
        color: var(--dark-color-1);
    }

    .site-header .main-navigation .headernavbutton a {
        width: auto;
    }

    .site-header .main-navigation .instagram a,
    .site-header .main-navigation .linkedin a,
    .site-header .main-navigation .headernavbutton a {
        background-color: #556710;
        color: var(--green-color);
    }
}

/*header css Ends*/
/*button css starts */
.btn {
    padding: 13px 19px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 108%;
    display: block;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--green-color);
    transition: all 0.5s;
}

.btn-primary {
    background: var(--green-color);
    color: var(--dark-color-1);
}

/* .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:visited{background:var(--white-color);color:var(--dark-color-1);border-color:var(--white-color);} */
.btn-primary:hover,
.btn-primary:focus {
    background: #CEEB7C;
    color: var(--dark-color-1);
    border-color: #CEEB7C;
}

.btn-secondary {
    background: var(--dark-color-1);
    color: var(--white-color);
    border-color: var(--dark-color-1);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: #373737;
    color: var(--white-color);
    border-color: #373737;
}

.btn-primary-outline {
    color: var(--green-color);
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline:active {
    background: var(--green-color);
    color: var(--dark-color-1);
    border-color: var(--green-color);
}

.btn-primary-outline:hover:visited {
    background: var(--green-color);
    color: var(--dark-color-1);
    border-color: var(--green-color);
}

.btn.btn-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-color);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease;
    width: 43px;
    height: 43px;
}

.btn.btn-arrow:hover {
    background: #CEEB7C;
}

.btn.btn-arrow svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
    transform: translate(calc(-50% + 5px), calc(-50% + 5px));
}

.btn.btn-arrow::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none"><path d="M1.59436 0V1.59436H5.26279L0 6.87125V8H1.12875L6.40564 2.73721V6.40564H8V0H1.59436Z" fill="%23272727"/></svg>') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transform: translate(calc(-100% - 10px), calc(100% + 10px));
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover animation */
.btn.btn-arrow:hover svg {
    opacity: 0;
    transform: translate(calc(50% + 10px), calc(-50% - 10px));
}

.btn.btn-arrow:hover::after {
    opacity: 1;
    transform: translate(calc(-50% + 5px), calc(-50% + 5px));
}

/*button css ends */
/*Home Hero Section starts*/
.homeherobanner {
    padding: 0px 16px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.homeherobanner>div {
    position: relative;
    z-index: 10;
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width:768px) {
    .homeherobanner .homeherobanner_image_slide img {
        height: calc(100vh - 100px);
        aspect-ratio: 1212 / 821;
        object-fit: cover;
    }
}

.homeherobanner .homeherobanner_image {
    margin-bottom: 20px;
}

.homeherobanner .homeherobanner_image img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
    display: block;
}

.homeherobanner .homeherobanner_buttondiv {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.homeherobanner .btnwitharrow {
    display: flex;
    gap: 4px;
    align-items: center;
}

.page-title {
    font-size: 40px;
    line-height: 102%;
    font-weight: 400;
    color: var(--white-color);
}

.homeherobanner .homeherobanner_content {
    margin-top: 90px;
    margin-bottom: 55px;
}

.homeherobanner_content .page-title {
    margin: 0px;
    margin-bottom: 35px;
}

.homeherobanner .heroprojectdivslider {
    background: #F5F5ED80;
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 12px;
}

.homeherobanner .heroprojectdivslider .heroprojecttitle {
    font-size: 22px;
    line-height: 110%;
    font-weight: 400;
    color: var(--dark-color-1);
    margin-bottom: 16px;
}

.homeherobanner .heroprojectdivslider .heroprojectcategorydiv {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.homeherobanner .heroprojectdivslider .heroprojectcategorydiv .projectcategorybutton {
    padding: 6px;
    border-radius: 4px;
    background: var(--dark-color-1);
    color: var(--white-color);
    font-size: 8px;
    line-height: 140%;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.homeherobanner .heroprojectdivslider .btn.btn-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 1;
}

.homeherobanner .heroprojectdivslider .heroprojectslide {
    padding-top: 92px;
}

.homeherobanner .heroprojectdivslider .owl-dots {
    position: absolute;
    top: 8px;
    left: 0px;
}

.homeherobanner .heroprojectdivslider .owl-dots button span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F5F5ED;
    display: block;
    margin: 0px 2px;
    opacity: 0.25;
}

.homeherobanner .heroprojectdivslider .owl-dots button.active span {
    opacity: 1;
}

.homeherobanner .heroprojectdivslider .owl-dots button:first-child span {
    margin-left: 0px;
}

.homeherobanner .btnwitharrow .btn-primary {
    width: 112px;
    height: 43px;
}

.homeherobanner .getstarteddiv a.btn {
    width: 117px;
    height: 43px;
}

@media (min-width:768px) {
    .homeherobanner .homeherobanner_content {
        max-width: 440px;
        margin: 0px;
    }

    .homeherobanner .heroprojectdivslider {
        position: absolute;
        top: 15px;
        right: 31px;
        max-width: 256px;
    }

    .homeherobanner .homeherobanner_image img {
        height: 600px;
    }

    .page-title {
        font-size: 50px;
    }

    .homeherobanner .homeherobanner_content {
        max-width: 315px;
        position: absolute;
        /* top: 50%; */
        bottom: 5%;
        transform: translateY(-50%);
        left: 48px;
        z-index: 101
    }

    .homeherobanner .heroprojectdivslider {
        top: 32px;
        right: 48px;
        z-index: 101
    }

    .homeherobanner .homeherobanner_image {
        margin-bottom: 0px;
    }

    .homeherobanner:before {
        content: '';
        width: calc(100% - 32px);
        height: 100%;
        position: absolute;
        top: 0px;
        left: 16px;
        background: linear-gradient(270.13deg, rgba(0, 0, 0, 0) 34.09%, rgba(0, 0, 0, 0.4) 99.9%);
        border-radius: 12px;
        z-index: 100;
    }

    .homeherobanner_content .page-title {
        margin-bottom: 35px;
        max-width: 100%;
    }
}

@media (min-width:1025px) {
    .homeherobanner .homeherobanner_image img {
        height: 600px;
    }

    .page-title {
        font-size: 60px;
    }

    .homeherobanner .homeherobanner_content {
        max-width: 440px;
    }
}

@media (min-width:1200px) {
    .homeherobanner .homeherobanner_image img {
        height: 700px;
    }
}

@media (min-width:1440px) {
    .homeherobanner .homeherobanner_image img {
        height: 881px;
    }
}

/*Home Hero Section ends*/
/* Text with card Slider css starts */
.textwithcardslider {
    padding: 115px 0px 120px 0px;
    display: flex;
    align-items: center;
}

.textwithcardslider .textwithcardslider_inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 86px;
    flex-direction: column;
}

.textwithcardslider .textwithcardslider_inner .textwithcardslider_left {
    flex: 1;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: flex;
    flex-direction: column;
}

.textwithcardslider .textwithcardslider_inner .textwithcardslider_left .textwithcardslider_left_bottom {
    margin-top: auto;
}

.textwithcardslider .textwithcardslider_inner .textwithcardslider_right {
    width: 100%;
    flex: 0 0 auto;
}

.textwithcardslider .textwithcardslider_inner .textwithcardslider_left .textwithcardslider_label {
    margin-bottom: 60px;
}

.textwithcardslider .textwithcardslider_inner .textwithcardslider_left .textwithcardslider_left_title {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 102%;
    max-width: 274px;
}

.buttonmaindiv {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.buttonmaindiv .btnwitharrow {
    display: flex;
    gap: 4px;
    align-items: center;
}

.textwithcardslider .textwithcardslider_inner .textwithcardslider_left .textwithcardslider_left_content {
    margin: 35px 0px;
}

.textwithcardslider .textwithcardslider_inner .textwithcardslider_left .textwithcardslider_left_content p {
    margin: 0px;
}

.textwithcardslider_right .textwithcardslider_right_card_img img {
    height: 110px;
    object-fit: contain;
    object-position: left top;
    margin-bottom: 69px;
}

.textwithcardslider_right .textwithcardslider_right_card_title {
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 102%;
}

.textwithcardslider_right .textwithcardslider_right_card_content {
    margin-top: 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.textwithcardslider_right .textwithcardslider_carousel .owl-dots {
    line-height: 0px;
    margin-top: 32px;
}

.textwithcardslider_right .textwithcardslider_carousel .owl-dots button span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark-color-1);
    display: block;
    margin: 0px 2px;
    opacity: 0.25;
}

.textwithcardslider_right .textwithcardslider_carousel .owl-dots button.active span {
    opacity: 1;
}

.textwithcardslider_right .textwithcardslider_carousel .owl-dots button:first-child span {
    margin-left: 0px;
}

.textwithcardslider_left .btnwitharrow .btn-primary {
    width: 112px;
    height: 43px;
}

.textwithcardslider_left .getstarteddiv a.btn {
    /* width: 94px; */
    height: 43px;
}

@media (min-width:768px) {
    .textwithcardslider_right {
        padding: 32px;
        background: var(--green-color);
        border-radius: 12px;
        color: var(--dark-color-1);
    }

    .textwithcardslider .textwithcardslider_inner .textwithcardslider_left .textwithcardslider_left_title {
        font-size: 42px;
        max-width: 100%;
    }

    .textwithcardslider {
        background: var(--dark-color-1) url('../images/bodybgimage.svg');
        background-size: 100%;
        background-repeat: no-repeat;
        transition: background-attachment 0.2s ease;
    }

    .textwithcardslider .textwithcardslider_inner {
        flex-direction: row;
        gap: 50px;
        max-width: 882px;
    }

    .textwithcardslider .textwithcardslider_inner .textwithcardslider_right {
        width: 283px;
    }
}

@media (min-width:900px) {
    .textwithcardslider .textwithcardslider_inner {
        gap: 122px;
    }
}

@media (max-width:767px) {
    .textwithcardslider .textwithcardslider_inner .textwithcardslider_right .textwithcardslider_right_card {
        padding: 32px;
        background: var(--green-color);
        border-radius: 12px;
        color: var(--dark-color-1);
    }

    .textwithcardslider .textwithcardslider_inner .textwithcardslider_right .textwithcardslider_carousel .owl-item:nth-child(even) .textwithcardslider_right_card {
        background: #F5F5ED;
    }

    .textwithcardslider .textwithcardslider_inner .textwithcardslider_left .textwithcardslider_label {
        padding-top: 16px;
        border-top: 1px solid #373737
    }

    .textwithcardslider .textwithcardslider_inner .textwithcardslider_right {
        padding-left: 16px;
    }

    .textwithcardslider .textwithcardslider_inner .textwithcardslider_left {
        padding: 0px 16px;
    }
}

/* Text with card Slider css ends */
/*recentprojectsection css starts */
.recentprojectsection {
    padding: 16px;
}

.recentprojectsection .recentprojectsection_title {
    text-align: center;
    font-size: clamp(45px, 11.897vw, 180px);
    line-height: 102%;
    font-weight: 400;
    color: #373737;
    margin-bottom: 32px;
}

.recentprojects_div {
    display: flex;
    gap: 16px;
    flex-direction: column
}

.recentprojects_div .recentprojects_div_item {
    width: 100%;
    flex: 0 0 auto;
}

.recentprojects_div .recentprojects_div_item:last-child {
    width: 100% !important;
    flex: 0 0 auto;
}

.recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_excert,
.recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_info {
    display: none;
}

.recentprojects_div .recentprojects_div_item .recentprojects_div_item_image_slider img {
    border-radius: 12px;
    height: 243px;
    object-fit: cover;
    width: 100%;
}

.recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_image_slider img {
    height: 243px;
}

/* .recentprojects_div_item_excert .recentprojects_div_item_excert_content{display:none;} */
.recentproject_div_main {
    position: relative;
}

.recentprojects_div_item_excert {
    position: absolute;
    bottom: 32px;
    left: 32px;
    max-width: 250px;
    z-index: 10;
    border-radius: 12px;
    background: rgba(225, 225, 217, 0.70);
    backdrop-filter: blur(2px);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s;
    opacity: 0;
    transform: translatey(20px);
}

.recentprojects_div_item_excert:has(.recentprojects_div_item_excert_open.active) {
    background: rgba(225, 225, 217, 0.70);
}

.recentprojects_div_item:hover .recentprojects_div_item_excert {
    opacity: 1;
    transform: translatey(0px);
}

.recentprojects_div_item_excert:has(.recentprojects_div_item_excert_open.active) {
    height: calc(100% - 64px);
}

.recentprojects_div_item_excert_open {
    line-height: 0px;
    cursor: pointer;
    display: none;
}

.recentprojects_div_item_excert_content {
    font-size: 14px;
    line-height: 130%;
    font-weight: 400;
    color: var(--dark-color-1);
    margin-bottom: 10px;
}

.recentprojects_div_item_excert_open svg {
    padding: 5px;
}

.recentprojects_div_item_image_slider .owl-nav {
    position: absolute;
    bottom: 32px;
    right: 32px;
    line-height: 0;
    display: flex;
    gap: 10px;
}

.recentprojects_div_item_image_slider .owl-nav button {
    border-radius: 12px;
    background: rgba(225, 225, 217, 0.70) !important;
    backdrop-filter: blur(2px);
    width: 40px;
    height: 40px;
}

.recentprojects_div_item_image_slider .owl-nav button:hover {
    background: var(--green-color) !important;
}

.recentprojects_div_item_image_slider .owl-nav button svg {
    fill: none;
    stroke: var(--dark-color-1);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7
}

.recentprojects_div_item_info {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.recentprojects_div_item_info .projectcategorydiv .projectcategorybutton,
.mfp-custom-content .projectcategorydiv .projectcategorybutton {
    padding: 6px;
    border-radius: 4px;
    background: var(--green-color);
    color: var(--dark-color-1);
    font-size: 8px;
    line-height: 140%;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.popupexpand {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(225, 225, 217, 0.70) !important;
    backdrop-filter: blur(2px);
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    transform: translatey(-20px);
    opacity: 0;
}

.popupexpand:hover {
    background: var(--green-color) !important;
}

.recentprojects_div_item:hover .popupexpand {
    opacity: 1;
    transform: translatey(0px);
}

.recentprojects_div_item_info .projectcategorydiv,
.mfp-custom-content .projectcategorydiv {
    display: flex;
    gap: 4px;
}

.recentprojects_div_item .buttonmaindiv {
    margin-top: 16px;
}

.recentprojects_div .recentprojects_div_item:last-child .owl-nav,
.recentprojects_div .recentprojects_div_item:last-child .popupexpand {
    display: none;
}

.recentproject_div_main .owl-nav {
    transition: all 0.5s;
    opacity: 0;
    transform: translatey(20px);
}

.recentprojects_div_item:hover .owl-nav {
    opacity: 1;
    transform: translatey(0px);
}

.recentprojects_div_item_info {
    transition: all 0.5s;
    opacity: 0;
    transform: translatey(-20px);
}

.recentprojects_div_item:hover .recentprojects_div_item_info {
    opacity: 1;
    transform: translatey(0px);
}

.recentprojects_div_item .buttonmaindiv .btnwitharrow .btn-primary {
    width: 144px;
    height: 43px;
}

@media (min-width:768px) {
    .recentprojects_div .recentprojects_div_item {
        width: calc((100% - 315px) / 2);
    }

    .recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_image_slider img {
        height: 150px;
    }

    .recentprojects_div .recentprojects_div_item:last-child {
        width: 283px !important;
    }

    .recentprojects_div {
        flex-direction: row;
    }
}

@media (min-width:1025px) {
    .recentprojects_div .recentprojects_div_item .recentprojects_div_item_image_slider img {
        height: 393px;
    }

    .recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_image_slider img {
        height: 188px;
    }
}

@media (max-width:767px) {

    .recentprojects_div .recentprojects_div_item .owl-nav,
    .recentprojects_div .recentprojects_div_item .popupexpand {
        display: none;
    }

    .recentprojects_div .recentprojects_div_item .recentprojects_div_item_excert,
    .recentprojects_div .recentprojects_div_item .recentprojects_div_item_info {
        display: none;
    }

    .recentprojects_div .buttonmaindiv .btnwitharrow,
    .recentprojects_div .buttonmaindiv {
        display: block;
        width: 100%;
        text-align: center;
    }

    .recentprojects_div .buttonmaindiv .btnwitharrow a.btn-arrow {
        display: none;
    }

    .recentprojects_div_item .buttonmaindiv .btnwitharrow .btn-primary {
        width: 100%;
    }
}

/*recentprojectsection css Ends */

/*testimonial section css starts */
.testimonialsection {
    background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, #373737 40.97%);
    padding-top: 106px;
    padding-bottom: 118px;
}

.testimonialsection .testimonialtitle {
    padding: 0px 16px;
    font-weight: 400;
    font-size: 30px;
    line-height: 102%;
    color: var(--green-color);
    text-align: center;
    margin-bottom: 63px;
}

.testimonialsection .testimonialsection-slider-item-box {
    padding: 32px;
    border-radius: 12px;
    background: #F5F5ED;
    color: var(--dark-color-1);
    height: 100%;
}

.testimonialsection .testimonialsection-slider-item-box .testimonialsection-slider-item-header {
    display: flex;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    justify-content: space-between;
}

.testimonialsection .testimonialsection-slider-item-box .testimonialsection-slider-item-header .testimonialname {
    margin-bottom: 15px;
}

.testimonialsection .testimonialsection-slider-item-box .testimonial-content {
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    margin-top: 68px;
}

.testimonialsection .testimonialsection-slider-item-box .testimonial-content p:last-child {
    margin-bottom: 0px;
}

@media (min-width:768px) {
    .testimonialsection .testimonialtitle {
        font-size: 42px;
    }
}

@media (min-width:1200px) {
    .testimonialsection {
        padding-top: 252px;
        padding-bottom: 164px;
    }
}

@media (max-width:767px) {
    .testimonialsection .testimonialtitle {
        max-width: 264px;
        margin: 0 auto;
        margin-bottom: 60px;
    }
}

/*testimonial section css Ends */
/*banner section css starts */
.bannersection {
    display: flex;
    padding: 0px 16px;
    gap: 16px;
    background: var(--dark-color-1);
    flex-direction: column-reverse;
}

.bannersection .bannersection-left {
    background: #373737;
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.bannersection .bannersection-right {
    border-radius: 12px;
    flex: 1;
}

.bannersection .bannersection-right img {
    border-radius: 12px;
    display: block;
    height: 100%;
    object-fit: cover;
}

.bannersection .bannersection-left .banner-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 102%;
    margin-bottom: 35px;
}

.bannersection .bannersection-left .banner-content {
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 64px;
}

.bannersection .bannersection-left .bannericon {
    margin-top: auto;
}

@media (min-width:768px) {
    .bannersection .bannersection-left .banner-title {
        font-size: 50px;
    }

    .bannersection .bannersection-left .banner-content {
        font-size: 17px;
    }

    .bannersection {
        flex-direction: row
    }

    .bannersection .bannersection-left {
        width: 38.467vw;
    }
}

@media (min-width:1200px) {
    .bannersection .bannersection-left {
        padding: 48px;
    }
}

/*banner section css ends */
.aboutcontentsection {
    padding: 0px 16px;
    padding-top: 50px;
    padding-bottom: 80px;
}

.aboutcontentsection .aboutcontentsection_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.aboutcontentsection .aboutcontent-left-title {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 60px;
}

.aboutcontentsection .aboutcontent-right-title {
    flex: 1;
}

.aboutcontentsection .aboutcontent-right-title h3 {
    font-weight: 400;
    font-size: 23px;
    line-height: 102%;
    margin-top: 0px;
    margin-bottom: 35px;
    max-width: 564px;
}

.aboutcontentsection .contentright {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
}

.aboutcontentsection .contentright p {
    margin-bottom: 12px;
}

.aboutcontentsection .contentright p:last-child {
    margin-bottom: 0px;
}

.aboutcontentsection .contentright-inner {
    max-width: 582px;
}

@media (min-width:768px) {
    .aboutcontentsection .aboutcontentsection_wrapper {
        flex-direction: row;
    }

    .aboutcontentsection {
        background: var(--dark-color-1) url('../images/bodybgimage.svg');
        background-attachment: fixed;
        background-size: cover;
        background-repeat: repeat-x;
    }

    .aboutcontentsection .aboutcontent-left-title {
        width: 38.467vw;
        font-size: 17px;
        margin-bottom: 0px;
    }

    .aboutcontentsection {
        padding-top: 118px;
        padding-bottom: 96px;
    }

    .aboutcontentsection .aboutcontent-right-title h3 {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .aboutcontentsection .contentright {
        font-size: 14px;
    }

    .aboutcontentsection .aboutcontentsection_wrapper {
        padding-top: 32px;
        border-top: 1px solid #373737;
    }
}



/*team section css starts */
.teamsection {
    padding: 0px 16px;
}

.teamsection .teamsection_wrapper {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.teamsection .teamsection-left {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 60px;
}

.teamsection .teamsection-right {
    flex: 1;
}

.teamgird {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 48px;
}

.teamgird-item img {
    border-radius: 12px;
    display: block;
    margin-bottom: 16px;
    height: 181px;
    object-fit: cover;
    width: 100%;
}

.teamgird-item .teamgird-item-content .teamtitle {
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
}

.teamgird-item .teamgird-item-content .teamposition {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
}

.teamgird-item .teamcontentinfo {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    margin-top: 16px;
    padding-top: 11px;
    border-top: 1px solid var(--green-color);
}

.hire-box {
    margin-top: 48px;
    display: flex;
    padding: 32px;
    background: var(--green-color);
    border-radius: 12px;
    color: var(--dark-color-1);
    flex-direction: column;
}

.hire-box .hirebox-left {
    flex: 1;
}

.hire-box .hirebox-left .hireboxtitle {
    font-weight: 400;
    font-size: 30px;
    line-height: 102%;
    margin-bottom: 30px;
}

.hire-box .btn {
    text-align: center;
    margin-top: 48px;
    width: 94px;
    height: 43px;
    text-align: center;
}

.hire-box .btn:hover {
    background: var(--white-color);
    color: var(--dark-color-1);
    border-color: var(--white-color);
}

@media (min-width:768px) {
    .teamsection .teamsection_wrapper {
        flex-direction: row;
        padding-top: 32px;
        border-top: 1px solid #373737;
    }

    .teamsection {
        background: var(--dark-color-1) url('../images/bodybgimage.svg');
        background-attachment: fixed;
        background-size: cover;
        background-repeat: repeat-x;
        position: relative;
    }

    .teamsection:after {
        content: '';
        background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, #373737 26.2%);
        width: 100%;
        height: 50%;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .teamsection>div {
        position: relative;
        z-index: 10;
    }

    .teamsection .teamsection-left {
        width: 38.467vw;
        font-size: 17px;
        margin-bottom: 0px;
    }

    .teamgird {
        grid-template-columns: repeat(3, 1fr);
    }

    .teamgird-item .teamgird-item-content .teamtitle {
        font-size: 17px;
    }

    .teamgird-item .teamgird-item-content .teamposition {
        font-size: 14px;
    }

    .teamgird-item .teamcontentinfo {
        font-size: 14px;
    }

    .hire-box .hirebox-left .hireboxtitle {
        font-size: 42px;
    }

    .hire-box .hirebox-left .hireboxcontent {
        font-size: 17px;
    }

    .hire-box {
        flex-direction: row
    }

    .hire-box .btn {
        margin-top: 0px;
    }
}

@media (min-width:1025px) {
    .teamgird-item img {
        height: 295px;
    }
}

@media (max-width:767px) {

    .aboutcontentsection .aboutcontent-left-title,
    .teamsection .teamsection-left {
        padding-top: 16px;
        border-top: 1px solid #373737;
    }
}

.hirebox {
    background: var(--dark-color-1);
}

@media (min-width:768px) {
    .hirebox {
        background: #373737;
    }

    .hirebox .teamsection-right {
        width: calc(100% - calc(38.467vw + 16px));
        flex: 0 0 auto;
        margin-left: auto;
    }
}

/*team section css ends */
/*accordion section css starts */
.accordionsection {
    padding: 32px 16px 16px 16px;
}

.accordion-wrapper {
    display: grid;
    grid-template-columns: calc(40% - 50px) 60%;
    gap: 50px;
    background: #F5F5ED;
    padding: 32px;
    border-radius: 12px;
}

.accordion-left img {
    width: 100%;
    height: 258px;
    border-radius: 12px;
    object-fit: cover;
    max-width: 343px;
}

.accordion-left .hero-banner-media,
.accordion-content .hero-banner-media {
    max-width: 343px;
    height: 258px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-left .hero-banner-media video,
.accordion-content .hero-banner-media video {
    height: 100%;
    display: block;
    object-fit: cover;
}

.accordion-left .hero-banner-media mux-player,
.accordion-content .hero-banner-media mux-player {
    height: 258px;
    display: block;
    --media-object-fit: cover
}

.accordion-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item:not(:last-child) {
    border-bottom: 1px solid #E1E1D9;
    padding-bottom: 15px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    display: flex;
    justify-content: space-between;
    /* cursor: pointer; */
    align-items: center;
    text-align: left;
    cursor: text;
}

/* Removed ALL max-height animation — fully handled by jQuery */
.accordion-content {

    opacity: 1;
}

.accordion-item .accordion-content {


    font-size: 14px;
    line-height: 140%;
    font-weight: 500;
    color: var(--dark-color-1);
}

.accordion-item .accordion-content p {
    margin-top: 0px;
    margin-bottom: 12px;
    max-width: 582px;
}

.accordion-item .accordion-content p:last-child {
    margin-bottom: 0px;
}

.accordion-item.active .icon::before {
    content: "";
    background: url('../images/minusicon.svg') no-repeat center;
    width: 40px;
    height: 40px;
    display: block;
}

.accordion-item .icon {
    display: none;
}

.accordion-item .icon::before {
    content: "";
    background: url('../images/plushicon.svg') no-repeat center;
    width: 40px;
    height: 40px;
    display: block;
}

@media(min-width:768px) {
    .accordionsection {
        background: #373737;
    }

}


@media (max-width: 768px) {
    .accordion-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;

    }

    .accordionsection {
        background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, #373737 26.2%);
    }
}

.mobile-image {
    margin-top: 32px;
    display: block;
}

.mobile-image img {
    border-radius: 12px;
}

.accordion-left {
    display: none;
}

.accordion-left img {
    border-radius: 12px;
}

.accoriontitle {
    font-size: 17px;
    line-height: 140%;
    font-weight: 500;
    color: var(--dark-color-1);
}

@media (min-width:768px) {
    .accordion-wrapper>.accoriontitle {
        display: none;
    }

    .accordion-header {
        font-size: 22px;
    }

    .mobile-image {
        display: none;
    }

    .accordion-left {
        display: flex;
        align-items: end;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        color: var(--dark-color-1)
    }
}


/*accodion section css ends */
/*portfolio section css starts */
.portfoliosection {
    padding: 50px 16px 0px 16px;
}

.portfoliosection .portfolioinner {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.portfoliosection .portfolioinner .portfoliosmalltitle {
    width: 100%;
    flex: 0 0 auto;
    margin-bottom: 60px;
}

.portfoliosection .portfolioinner .recentprojects_div {
    width: 100%;
    column-gap: 16px;
    row-gap: 50px;
    flex-wrap: wrap;
}

.portfoliosection .recentprojects_div .recentprojects_div_item .recentprojects_div_item_image_slider img {
    width: 100%;
}

.portfoliosection .recentprojects_div .recentprojects_div_item {
    width: 100% !important;
}

.portfoliosection .recentprojects_div .recentprojects_div_item:last-child .owl-nav,
.portfoliosection .recentprojects_div .recentprojects_div_item:last-child .popupexpand {
    display: flex;
}

.portfoliosection .recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_excert,
.portfoliosection .recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_info {
    display: flex;
}

.mfp-custom-nav {
    position: absolute;
    bottom: -30px;
    right: 20px;
    display: flex;
    gap: 6px;
}

.mfp-custom-action {
    display: flex;
    gap: 10px;
}

.mfp-custom-action .mfp-prev-btn,
.mfp-custom-action .mfp-next-btn {
    border-radius: 12px;
    background: rgba(225, 225, 217, 0.70);
    backdrop-filter: blur(2px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mfp-custom-action .mfp-prev-btn:hover,
.mfp-custom-action .mfp-next-btn:hover {
    background: var(--green-color);
}

.mfp-image-holder .mfp-custom-action .mfp-close {
    width: auto;
    right: 26px;
}

.mfp-figure .mfp-close {
    opacity: 1;
    top: -30px !important;
    right: 14px !important;
}

.mfp-custom-nav button {
    cursor: pointer;
}

.mfp-container .mfp-arrow {
    display: none;
}

.custom-mfp .mfp-container:before {
    display: none;
}

.mfp-container .mfp-content .mfp-figure .mfp-close {
    display: none;
}

.mfp-content img.mfp-img {
    border-radius: 12px;
    max-height: calc(90vh - 90px) !important;
    padding: 0;
    margin: 0;
    max-width: 98%;
}

.mfp-container .mfp-content {
    width: 100%;
    display: flex;
    margin: 16px;
    flex-direction: row-reverse;
    height: calc(100% - 32px);
}

.mfp-container .mfp-content .mfp-figure {
    flex: 0 0 71.36%;
}

.mfp-container .mfp-content .mfp-custom-content {
    flex: 0 0 28.64%;
    border-left: 1px solid #373737;
    padding-left: 16px;
}

.mfp-container .mfp-figure:after {
    background-color: transparent;
    box-shadow: none;
}

.mfp-custom-content .mfp-custom-content-inner {
    margin-top: 32px;
}

.mfp-custom-content .mfp-custom-content-inner .project_title {
    color: #F5F5ED;
    font-family: Artific;
    font-size: 26px;
    line-height: 102%;
    margin-bottom: 15px;
}

.mfp-custom-content .recentprojects_div_item_excert_content {
    color: #F5F5ED;
    font-size: 14px;
    font-style: normal;
    /* font-weight: 500; */
    line-height: 140%;
    margin-top: 30px;
}

.mfp-bg {
    opacity: 1 !important;
    background: #272727CC !important;
    backdrop-filter: blur(10px) !important;
}

@media (min-width:768px) {
    .portfoliosection .recentprojects_div .recentprojects_div_item {
        width: calc(50% - 8px) !important;
    }

    .portfoliosection {
        background: var(--dark-color-1) url('../images/bodybgimage.svg');
        background-attachment: fixed;
        background-size: cover;
        background-repeat: repeat-x;
    }

    .portfoliosection .recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_image_slider img {
        height: 243px !important;
    }
}

@media (min-width:1025px) {
    .portfoliosection .recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_image_slider img {
        height: 393px !important;
    }

    .recentprojects_div .recentprojects_div_item:last-child .recentprojects_div_item_image_slider .owl-nav img {
        width: 10px;
        height: auto !important;
    }

    .portfoliosection {
        padding: 118px 16px 0px 16px;
    }

    .portfoliosection .portfolioinner {
        flex-direction: row;
        padding-top: 32px;
        border-top: 1px solid #373737;
    }

    .portfoliosection .portfolioinner .portfoliosmalltitle {
        margin-bottom: 0px;
        width: 283px
    }

    .portfoliosection .portfolioinner .recentprojects_div {
        width: calc(100% - 299px);
    }
}

@media (max-width:1024px) {
    .portfoliosection .portfolioinner .portfoliosmalltitle {
        padding-top: 16px;
        border-top: 1px solid #373737;
    }
}

@media (max-width: 767px) {
    .mfp-content img.mfp-img {
        max-height: 320px !important;
        max-width: 100%;
    }

    .mfp-container .mfp-content {
        width: 90vw;
        flex-direction: column-reverse;
    }

    .mfp-image-holder .mfp-custom-action .mfp-close {
        right: 0;
        top: 5px;
    }

    .mfp-container .mfp-content .mfp-custom-content {
        padding: 0;
        border: 0;
        margin-top: 16px;
    }
}

/*portfolio section css ends */
/*contactformsection css starts */
.contactformsection {
    padding: 16px;
}

.contactformsection .contactformsection-inner {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.contactformsection .contactformsection-right {
    width: 100%;
    flex: 0 0 auto;
}

.contactformsection .contactformsection-left {
    flex: 1;
}

.contactformsection .contactformsection-left img {
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
}

.contactformdiv-top {
    padding: 32px;
    background: #373737;
    border-radius: 12px;
}

.contactformdiv-top .contactformdivtitle {
    font-weight: 400;
    font-size: 36px;
    line-height: 102%;
    margin-bottom: 35px;
}

.contactinfodiv {
    margin-top: 16px;
    background: var(--green-color);
    padding: 32px;
    border-radius: 12px;
}

.contactinfodiv .contactinfodiv-item {
    position: relative;
    display: flex;
    gap: 5px;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    color: var(--dark-color-1);
    padding-right: 50px;
    min-height: 33px;
}

.contactinfodiv .contactinfodiv-item a {
    color: var(--dark-color-1);
    text-decoration: none;
}

.contactinfodiv .contactinfodiv-item:not(:last-child) {
    margin-bottom: 32px;
}

.contactinfodiv .contactinfodiv-item .contactinfodivimg {
    position: absolute;
    right: 0;
    display: none;
}

.contactinfodiv .contactinfodiv-item .contactinfodivtitle {
    width: 88px;
    flex: 0 0 auto;
}

.contactinfodiv .contactinfodiv-item p {
    margin: 0px;
}

.contactinfodiv .contactinfodiv-item:not(:first-child) {
    padding-top: 32px;
    border-top: 1px solid #CEEB7C;
}

.contactinfodiv .contactinfo {
    max-width: 222px;
}

.formdivcontact p {
    margin: 0px;
}

.formdivcontact {
    margin-bottom: 16px;
}

.formdivcontact input,
.formdivcontact textarea {
    font-weight: 500;
    font-size: 14px;
    line-height: 108%;
    color: #F5F5ED !important;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #F5F5ED;
    width: 100%;
    background: transparent;
    outline: none;
    box-shadow: none;
}

.formdivcontact input::placeholder,
.formdivcontact textarea::placeholder {
    color: #F5F5ED;
    opacity: 1;
}

.submitdivcontact p {
    margin: 0px;
}

.submitdivcontact .submit {
    /* width: 132px; */
    flex: 0 0 auto;
}

.submitdivcontact .submit p {
    margin: 0px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.formfieldsinner .emailfield {
    flex: 1;
}

.submitdivcontact .wpcf7-spinner {
    position: absolute;
    bottom: -25px;
    padding: 0;
    margin: 0;
    right: 0;
}

.submitdivcontact {
    position: relative;
}

.submitdivcontact .btn-arrow {
    width: 44px;
    flex: 0 0 auto;
    padding: 0;
    background: var(--green-color);
}

.submitdivcontact .btn-arrow svg {
    transform: none !important;
    opacity: 1 !important;
}

.submitdivcontact .btn-arrow:after,
.formfieldsinner .btn-arrow br {
    display: none;
}

.submitdivcontact .wpcf7-list-item.first.last {
    margin-left: 0px;
    font-size: 12px;
    line-height: 140%;
    font-weight: 500;
}

.submitdivcontact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submitdivcontact input.btn-primary {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 108%;
    display: block;
    text-decoration: none;
    font-weight: 500;
    background: var(--green-color);
    color: var(--dark-color-1);
    border-color: var(--green-color);
    transition: all 0.5s;
    cursor: pointer;
}

/* Wrap CF7 checkbox label */
.submitdivcontact .wpcf7 form .wpcf7-list-item {
    margin: 0;
}

/* Hide original checkbox */
.wpcf7 form .submitdivcontact input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Label styling */
.submitdivcontact .wpcf7-list-item-label {
    position: relative;
    padding-left: 16px;
    /* space for box */
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    user-select: none;
}

/* Custom box */
.submitdivcontact .wpcf7-list-item-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--white-color);
    /* border color */
    border-radius: 3px;
    background: transparent;
    transition: all 0.2s ease;
}

/* Checkmark */
.submitdivcontact .wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--white-color);
    /* tick background */
    opacity: 0;
    border-radius: 3px;
    transition: 0.2s ease;
}

/* Checkbox checked */
.wpcf7 form .submitdivcontact input[type="checkbox"]:checked+.wpcf7-list-item-label:after {
    opacity: 1;
}

@media (min-width:768px) {
    .contactformdiv-top .contactformdivtitle {
        font-size: 50px;
        margin-bottom: 65px;
    }

    .contactformdiv-top,
    .contactinfodiv {
        padding: 48px;
    }

    .contactinfodiv .contactinfodiv-item {
        font-size: 14px;
    }

    .contactinfodiv .contactinfodiv-item .contactinfodivimg {
        display: block;
    }
}

@media (min-width:1025px) {
    .contactformsection .contactformsection-right {
        width: 38.467vw;
    }

    .contactformsection .contactformsection-inner {
        flex-direction: row;
    }

    .contactformsection .contactformsection-left img {
        height: 920px;
    }
}

/*contactformsection css ends */

.hero-banner-media video,
.hero-banner-media .muxvideo-wrapper {
    max-width: 100%;
}

/*footer css starts */
.footerbottomrow {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
}

.footer-menu,
#menu-footer-menu {
    list-style: none;
    padding-left: 0px;
    margin: 0;
}

.footerinfodiv {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 108%;
    color: var(--white-color);
}

.footer-menu li a,
#menu-footer-menu li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 108%;
    color: var(--white-color);
    text-decoration: none;
}

.footer-menu li:not(:last-child),
#menu-footer-menu li:not(:last-child) {
    margin-bottom: 8px;
}

.footer-menu li a:hover,
#menu-footer-menu li a:hover {
    color: var(--green-color);
}

.footer-menu li.headernavbutton {
    margin-top: 32px;
}

.footer-menu li.headernavbutton a {
    padding: 12px 15px;
    border-radius: 12px;
    background: var(--green-color);
    color: var(--dark-color-1);
    transition: all 0.5s;
    display: inline-block;
    width: 94px;
    height: 40px;
    text-align: center;
}

.footer-menu li.headernavbutton a:hover {
    background: #CEEB7C;
    color: var(--dark-color-1)
}

.footerbottomrow .footerinfodiv {
    display: flex;
    width: 100%;
    gap: 30px;
    flex: 0 0 auto;
}

.footerbottomrow .footerinfodiv>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.socials {
    list-style: none;
    padding-left: 0px;
    margin: 0;
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.socials li a {
    display: block;
}

.socials li a img {
    max-width: 20px;
}

.socials li a:hover img {
    filter: invert(0%) sepia(54%) saturate(405%) brightness(104%) contrast(96%);
}

.copydiv {
    margin-top: auto;
}

.copydiv p {
    margin: 0;
}

footer {
    background: var(--dark-color-1);
}

.footertoprow {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 15.4vh;
    padding-bottom: 24.124vh;
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
}

.footertoprow .footercontactinfodiv {
    width: 100%;
    flex: 0 0 auto;
    background: #F5F5ED;
    padding: 32px;
    border-radius: 12px;
    color: var(--dark-color-1);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.footertoprow .footercontactinfodiv .footercontactinfodiv_title {
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 102%;
    margin-bottom: 32px;
}

.footertoprow .footercontactinfodiv .footercontactinfodiv_content p {
    margin-top: 0px;
}

.footertoprow .footercontactinfodiv .footercontactinfodiv_content p:last-child {
    margin-bottom: 0px;
}

.footertoprow .footercontactinfodiv .footercontactinfodiv_content {
    margin-bottom: 48px;
}

.footertoprow .footercontactinfodiv .footercontactinfodiv_button a {
    display: inline-block;
    width: auto;
    text-align: center;
    width: 94px;
    height: 43px;
}

.footerformdiv {
    background: var(--green-color);
    padding: 32px;
    border-radius: 12px;
    color: var(--dark-color-1);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footerformdiv .footerformtitle {
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 102%;
    margin-bottom: 24px;
    max-width: 200px;
}

.footerformdiv .footerformcontent {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    max-width: 314px;
}

.footerformdiv .footerforminner {
    margin-top: 20px;
}

.formfieldsinner {
    display: flex;
    gap: 10px;
}

.formfieldsinner p {
    margin: 0px;
}

.formfieldsinner input[type="email"] {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 108%;
    padding: 14px 20px;
    background: none;
    border: 1px solid var(--dark-color-1);
    color: var(--dark-color-1);
    border-radius: 12px;
    width: 100%;
    height: 43px;
}

.formfieldsinner input[type="email"]::placeholder {
    color: var(--dark-color-1);
    opacity: 1;
}

.formfieldsinner input.btn-secondary {
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 108%;
    display: block;
    text-decoration: none;
    font-weight: 500;
    background: var(--dark-color-1);
    color: var(--white-color);
    border-color: var(--dark-color-1);
    transition: all 0.5s;
    /* width: 88px; */
    height: 43px;
    cursor: pointer;
}

.formfieldsinner input.btn-secondary:hover {
    background: #373737;
    border-color: #373737;
}

.formfieldsinner .submit {
    width: 132px;
    flex: 0 0 auto;
}

.formfieldsinner .submit p {
    margin: 0px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.formfieldsinner .emailfield {
    flex: 1;
}

.formfieldsinner .wpcf7-spinner {
    position: absolute;
    bottom: -25px;
    padding: 0;
    margin: 0;
    right: 0;
}

.formfieldsinner {
    position: relative;
}

.footerformnote {
    padding-right: 30px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-top: 12px;
}

.formfieldsinner .btn-arrow {
    width: 44px;
    flex: 0 0 auto;
    padding: 0;
    background: var(--dark-color-1);
    width: 43px;
}

.formfieldsinner .btn-arrow:hover {
    background: #373737;
}

.formfieldsinner .btn-arrow svg {
    transform: none !important;
    opacity: 1 !important;
}

.formfieldsinner .btn-arrow br {
    display: none;
}

.formfieldsinner .btn-arrow:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'%3E%3Cpath d='M4.79718 0H2.53968L5.7425 3.20282H0V4.79718H5.7425L2.53968 8H4.79718L8 4.79718V3.20282L4.79718 0Z' fill='%23F5F5ED'/%3E%3C/svg%3E");
    transform: translateX(-100%);
}

.formfieldsinner .btn-arrow:hover svg {
    opacity: 0 !important;
    transform: translateX(100%) !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    margin: 0;
    margin-top: 12px;
    font-size: 12px;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}

.footerformdivtop {
    position: relative;
    padding-right: 60px;
}

.footerformdivtop:after {
    content: '';
    background: url('../images/homeemailicon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0px;
    top: 0px;
}

.footerforminner .wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

.page-id-187 .bgfootergrig {
    padding-top: 120px;
}

@media (min-width:501px) {
    .footerbottomrow .footerinfodiv>div {
        padding-top: 16px;
        border-top: 1px solid #373737;
    }

    .footerbottomrow .footerlogodiv {
        padding-top: 16px;
        border-top: 1px solid #373737;
    }
}

@media (min-width:768px) {
    .footerbottomrow .footerlogodiv {
        flex: 1;
        text-align: right;
    }

    .footerbottomrow .footerinfodiv {
        width: 550px;
        gap: 30px;
    }

    .footerbottomrow {
        flex-direction: row;
    }

    .footerformdivtop {
        padding-right: 130px;
    }

    .footerformdivtop:after {
        width: 120px;
        height: 120px;
    }

    .footertoprow {
        max-width: 912px;
        flex-direction: row;
    }

    .footertoprow .footercontactinfodiv {
        width: 284px
    }

    .footerformdiv .footerforminner {
        margin-top: auto;
    }

    .page-id-187 .bgfootergrig {
        padding-top: 400px;
    }
}

@media (min-width:1025px) {
    .footerbottomrow .footerinfodiv {
        width: 600px;
        gap: 30px;
    }


    .footerformdiv,
    .footertoprow .footercontactinfodiv {
        padding: 32px;
    }
}

@media (min-width:1200px) {
    .footerbottomrow .footerinfodiv {
        width: 700px;
        gap: 40px;
    }

    .footertoprow {
        padding-top: 168px;
        padding-bottom: 217px;
    }
}

@media (min-width:1440px) {
    .footerbottomrow .footerinfodiv {
        width: 884px;
        gap: 86px;
    }
}

@media (max-width:500px) {
    .footerbottomrow .footerinfodiv {
        flex-wrap: wrap;
    }

    .footerbottomrow .footerinfodiv>div.footerinfodivcol3 {
        width: 100%;
        flex: 0 0 auto;
    }

    .copydiv {
        margin-top: 0px;
    }

    .footerbottomrow .footerinfodiv>div.footerinfodivcol3 {
        flex-direction: row;
        gap: 16px;
        margin-top: 50px;
    }

    .footerbottomrow .footerinfodiv>div.footerinfodivcol3>div {
        flex: 1;
        padding-top: 16px;
        border-top: 1px solid #373737;
    }

    .footerbottomrow {
        gap: 80px;
    }

    .footerlogodiv img {
        width: 100%;
    }
}

@media (max-width:767px) {
    .formfieldsinner {
        flex-direction: column;
    }

    .formfieldsinner .submit {
        width: 100%;
    }

    .formfieldsinner input.btn-secondary {
        flex: 1;
        width: auto;
    }

}

/*footer css ends*/
/*404page css starts*/
.error-404-content {
    padding: 100px 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width:500px) {
    .error-404-content .error-404-image svg {
        width: 100px !important;
        height: 100px !important;
    }
}

.search-page-wrapper {
    padding: 60px 16px;
}

.search-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-item-title a {
    color: var(--green-color);
    text-decoration: none;
    font-size: 22px;
}

.search-item-title a:hover {
    color: var(--white-color);
}

.search-item-excerpt {
    color: var(--white-color);
}

.no-results {
    margin-top: 50px;
}

.no-results h2 {
    font-size: 28px;
}

.search-form {
    display: flex;
    gap: 16px;
}

.search-form input.search-field {
    font-weight: 500;
    font-size: 14px;
    line-height: 108%;
    color: #F5F5ED !important;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #F5F5ED;
    width: 100%;
    background: transparent;
    outline: none;
    box-shadow: none;
}

.search-form .search-submit {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 108%;
    display: block;
    text-decoration: none;
    font-weight: 500;
    background: var(--green-color);
    color: var(--dark-color-1);
    border-color: var(--green-color);
    transition: all 0.5s;
    cursor: pointer;
}


/*container changes */

.recentprojects_div .recentprojects_div_item .recentprojects_div_item_image_slider .owl-nav img {
    width: 10px;
    height: auto;
}

.homeherobanner,
.footerbottomrow {
    max-width: 1440px;
    margin: 0 auto;
}

.textwithcardslider,
.aboutcontentsection,
.portfoliosection,
.contactformsection {
    max-width: calc(1440px - 32px);
    margin: 0 auto;
    background-size: calc(100% - 32px);
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: unset;
}

.teamsection .teamsection_wrapper,
.accordion-wrapper {
    max-width: calc(1440px - 32px);
    margin: 0 auto;
}

.recentprojectsection,
.bannersection {
    max-width: calc(1440px);
    margin: 0 auto;
}

.bannersection .muxvideo-wrapper,
.bannersection .hero-banner-media {
    border-radius: 12px;
    overflow: hidden;
}

.bannersection .hero-banner-media .herobannervideo {
    display: block;
    height: 100%;
    object-fit: cover;
}

.bannersection .muxvideo-wrapper mux-player {
    display: block;
    height: 100%;
    --media-object-fit: cover
}

.bannersection .hero-banner-media,
.bannersection .muxvideo-wrapper {
    height: 100%;
}

.bannersection .muxvideo-wrapper video {
    object-fit: cover;
}

.bg-sticky-fixed {
    background-attachment: fixed;
    background-position: center;
}

.teamsection {
    background-position: center -32px;
    background-repeat: no-repeat;
}

.btnwitharrow .btn-primary:hover+.btn-arrow svg {
    opacity: 0;
    transform: translate(calc(50% + 10px), calc(-50% - 10px));
}

.btnwitharrow .btn-primary:hover+.btn-arrow:after {
    opacity: 1;
    transform: translate(calc(-50% + 5px), calc(-50% + 5px));
}

.btnwitharrow .btn-primary:hover+.btn-arrow {
    background: #CEEB7C;
}

footer:not(:has(.footertoprow)) {
    padding-top: 120px;
}

@media (min-width:768px) {
    footer:not(:has(.footertoprow)) {
        padding-top: 217px;
    }

    .bgfootergrig {
        background: url(../images/bodybgimage.svg);
        background-position: center;
        background-attachment: fixed;
        background-size: calc(100% - 32px);
        background-repeat: no-repeat;
    }

    .textwithcardslider {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contactformsection .contactformsection-left .hero-banner-media {
        border-radius: 12px;
        overflow: hidden
    }

    .contactformsection .contactformsection-left .herobannervideo {
        height: 100%;
        object-fit: cover
    }

    .contactformsection .contactformsection-left .muxvideo-wrapper {
        height: 100%;
    }

    .contactformsection .contactformsection-left .muxvideo-wrapper mux-player {
        height: 100%;
        --media-object-fit: cover
    }
}

@media (min-width:1408px) {

    .textwithcardslider,
    .bgfootergrig,
    .aboutcontentsection,
    .teamsection,
    .portfoliosection {
        background-size: calc(1440px - 32px);
    }

}

@media (min-width:1440px) {

    .aboutcontentsection,
    .teamsection,
    .portfoliosection,
    .contactformsection {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width:2200px) {

    .aboutcontentsection .aboutcontent-left-title,
    .teamsection .teamsection-left,
    .bannersection .bannersection-left {
        width: 50%;
    }

    .aboutcontentsection .aboutcontent-right-title,
    .teamsection .teamsection-right,
    .bannersection .bannersection-right {
        width: calc(50% - 16px)
    }
}

@media (min-height: 1251px) {
    .page-id-187 #page {
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
    }

    .page-id-187 #page footer {
        margin-top: auto;
    }
}

@media (max-width:767px) {
    .homeherobanner_media {
        margin-bottom: 16px;
    }

    .site-header {
        border-bottom: 1px solid #373737;
        margin-bottom: 16px;
    }

    .home .site-header {
        margin-bottom: 0px;
    }
}

.textwithcardslider,
.aboutcontentsection,
.teamsection,
.portfoliosection {
    background-image: none;
}