body {
    background-color: #f8f4f0;
    padding: 35px;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-90px);
    }

    100% {
        transform: translateY(0);
    }
}



.header-container {
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(100% - 70px);
    transform: translate(-50%, 35px);
    z-index: 1;
    padding: 30px;
}

.header-container.fixed {
    position: fixed;
    left: 50%;
    top: 0;
    padding: 20px;
    transform: translate(-50%, 0) !important;
    animation: 1s forwards smoothScroll;
    background-color: #fff !important;
    z-index: 999;
    box-shadow: rgb(149 157 165 / .2) 0 8px 24px;
}

.header-container.fixed .e-con-inner {
    max-width: 100%;
}

.header-container:not(.fixed) .logo-block .logo-black,
.header-container.fixed .logo-block .white-logo {
    display: none;
}

.header-container:not(.fixed) .elementskit-navbar-nav li a {
    color: #fff !important;
}

.header-container:not(.fixed) .elementskit-navbar-nav li a:hover,
.header-container:not(.fixed) .elementskit-navbar-nav li.current_page_item a {
    color: var(--e-global-color-primary) !important;
}

.header-container:not(.fixed) .social-block a svg {
    fill: #fff !important;
}

.header-container:not(.fixed) .social-block a:hover svg {
    fill: var(--e-global-color-primary) !important;
}


.service-section .service-block {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px !important;
    overflow: hidden;
}


.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.project-grid .project-card {
    width: calc(33.33% - 16.66px);
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 8px 24px 0px rgba(148.99999999999997, 156.99999999999997, 164.99999999999997, 0.2);
    overflow: hidden;
    background-color: #fff;
}

.project-grid .project-card .project-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 70%;
    overflow: hidden;
}

.project-grid .project-card .project-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.project-grid .project-card a:hover .project-thumbnail img {
    transform: scale(1.1);
}

.project-grid .project-card .project-text {
    padding: 30px 20px;
}

.project-grid .project-card .project-text .project-title {
    margin: 0 0 10px;
    font-family: "Jost", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2em;
    color: #000;
    position: relative;
    max-width: max-content;
    padding-bottom: 5px;
}

.project-grid .project-card .project-text .project-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.project-grid .project-card .project-text .project-title:hover:after {
    width: 100%;
}

.project-grid .project-card .project-text .project-size {
    margin: 0 0 10px;
    font-family: "Jost", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
    color: #424242;
}

.project-grid .project-card .project-text .project-desc {
    margin: 0;
    font-family: "Jost", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    color: #424242;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0 0 35px;
}

.project-filters button {
    position: relative;
    z-index: 1;
    padding: 0;
    background-color: transparent;
    border: 0;
    font-family: "Jost", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 7px;
}

.project-filters button:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 3px;
    background-color: var(--e-global-color-primary);
    z-index: 0;
    transition: all 0.3s ease-in-out;
}

.project-filters button.active:after,
.project-filters button:hover:after {
    width: 100%;
}

.custom-hero-sec {
    min-height: 600px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.custom-hero-sec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}


.custom-hero-sec .custom-hero-sec-inner {
    position: relative;
    z-index: 1;
}

.custom-hero-sec .custom-hero-sec-inner .banner-heading {
    font-family: "Jost", Sans-serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin: 0;
}

.rank-math-breadcrumb p,
.rank-math-breadcrumb p a {
    color: #fff;
    font-size: 16px;
    font-family: "Jost", Sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 0;
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease-in-out;
}

.rank-math-breadcrumb p a:hover {
    color: var(--e-global-color-primary);
}

.project-single-container {
    padding: 80px 0;
}

.project-single-container .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.project-single-container .project-size {
    font-family: "Jost", Sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5em;
    color: #3D3D3D;
}

.project-single-container .project-size strong {
    color: #000;
}

.project-single-container .project-content {
    font-family: "Jost", Sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5em;
    color: #3D3D3D;
}

.project-single-container .masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}

.project-single-container .masonry-item {
     display: block;
    break-inside: avoid;
    margin-bottom: 20px;
}

.project-single-container .masonry-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: transform 0.4s ease;
}

.project-single-container .masonry-item:hover img {
    transform: scale(1.03);
}


.our-team-sec .team-card {
    border-radius: 15px;
    overflow: hidden;
}

.our-team-sec .team-card {
    width: 100% !important;
}

.our-team-sec .team-card .profile-designation {
    margin: 0;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: inline-block;
    width: 100%;
    font-family: "Jost", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: #000;
    text-transform: capitalize;
    margin: 0 0 20px;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: inline-block;
    width: 100%;
}

.wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
    display: inline-block;
    width: 100%;
    height: 50px;
    border-radius: 8px;
    padding: 10px;
    font-family: "Jost", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: #000;
    text-transform: capitalize;
    margin-top: 5px;
}

.wpcf7-form .wpcf7-form-control-wrap textarea.wpcf7-form-control {
    height: 100px;
}

.wpcf7-form .wpcf7-submit {
    background-color: var(--e-global-color-primary);
    font-family: "Jost", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
    border-radius: 8px 8px 8px 8px;
    padding: 17px 30px 17px 30px;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: var(--e-global-color-secondary);
}

.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    left: auto;
    right: 0;
    top: -30px;
    width: auto;
    border: 0;
    background-color: #dc3232;
    color: #fff;
    border-radius: 25px;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1;
}

.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip:before {
    content: '';
    position: absolute;
    right: 17px;
    top: 15px;
    width: 15px;
    height: 15px;
    background-color: #dc3232;
    transform: rotate(45deg);
    z-index: -1;
}

@media(max-width:1200px) {
    body {
        padding: 20px;
    }

    .header-container {
        width: calc(100% - 40px);
        transform: translate(-50%, 20px);
    }


}

@media(max-width:1024px) {
	
	.header-container .elementskit-menu-hamburger {
		padding: 0 !important;
        width: 40px  !important;
        border-radius: 0 !important;
        border: 0  !important;
	}
	
	.header-container .elementskit-menu-hamburger .elementskit-menu-hamburger-icon {
		height: 3px !important;
		margin-bottom: 10px !important;
		background-color: #fff !important;
	}
	
	.header-container.fixed .elementskit-menu-hamburger .elementskit-menu-hamburger-icon {
		background-color: #ac1e23 !important;
	}
	
	.header-container .elementskit-menu-overlay:not(.active) {
		left: -150% !important;
	}
	
	.header-container .elementskit-menu-overlay,
	.header-container .elementskit-menu-container {
		min-height: 100vh !important;
	}
	
	.header-container {
		border-bottom-right-radius: 18px;
        border-bottom-left-radius: 18px;
	}
	
	
	
    .project-grid .project-card {
        width: calc(50% - 12.50px);
    }

    .custom-hero-sec {
        min-height: 500px;
    }

    .custom-hero-sec .custom-hero-sec-inner .banner-heading {
        font-size: 50px;
    }

    .project-single-container .masonry-gallery {
        column-count: 2;
    }

    .project-single-container {
        padding: 65px 0;
    }
}


@media(max-width:767px) {
    body {
        padding: 0;
    }

    .header-container {
        width: 100%;
        transform: translate(-50%, 0px);
        padding: 15px;
    }

    .project-grid .project-card {
        width: 100%;
    }

    .custom-hero-sec .custom-hero-sec-inner .banner-heading {
        font-size: 42px;
        line-height: 1.1em;
    }

    .custom-hero-sec {
        min-height: 400px;
        padding: 150px 15px 80px;
        border-radius: 0;
    }

    .project-single-container {
        padding: 50px 0;
    }

    .project-single-container .masonry-gallery {
        column-count: 1;
    }
}