@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}
.page-template-commercial-landing .headermenu,
.page-template-landing #header .headermenu{
    display: none !important;
}
.page-template-commercial-landing div#container,
.page-template-landing div#container {
    max-width: 100%;
    width: 100%;
    padding: 0 0 0;
    display: block;
}
.header {
    background-color: white;
    padding: 18px 40px;
    width: 100%;
}
.header .header-container {
    max-width: 1160px;
    width: 100%;
    margin-inline: auto;
    padding-inline:  40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.header .header-container .site-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}
.header .header-container .contact-info {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 12px;
    flex-wrap: wrap;
}
.header .header-container .contact-info li a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 170%;
    font-family: "Open Sans", sans-serif;
    display: flex;
    align-items:  center;
    justify-content: end;
    gap: 8px;
}
.header .header-container .contact-info li a svg {
    width: 16px;
    height: 16px;
}
@media(max-width:767px){
    .header {
        padding-block: 16px;
    }
    .header .header-container {
        gap: 16px;
        padding-inline: 20px;
    }
    .header .header-container .site-logo img {
        max-width: 178px;
    }
    .header .header-container .contact-info, .header .header-container {
        justify-content: center;
    }
    .header .header-container .contact-info {
        width: 100%;
        gap: 6px;
    }
    .header .header-container .contact-info li a {
        font-size: 14px;
    }
}



/* LANDING FORM BANNER STYLE START */

.landing-form-banner-section {
    padding-block: 80px;
    position: relative;
    min-height: 600px;
    z-index: 1;
}
.landing-form-banner-section:before {
    content: '';
    background-image: linear-gradient(90deg,rgba(10,10,10,0.5) 25%,rgba(0,0,0,0.5) 60%);
    position: absolute;
    inset: 0;
}

.landing-form-banner-section .banner-animate-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.landing-form-banner-section .banner-animate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: banner_fade 13s linear both;
    animation-iteration-count: infinite;
    transform-origin: 80% 50%;
}
@keyframes banner_fade {
    0% {
        transform: scale3d(1, 1, 1);
    }
    100% {
        transform: scale3d(1.5, 1.5, 1.5);
    }
}

.landing-form-banner-section .landing-form-banner-container {
    display: flex;
    align-items: center;
    max-width: 1220px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}
.landing-form-banner-section .landing-form-banner-container .landing-content-wrapper {
    padding-right: 100px;
    max-width: 68%;
    text-align: center;
}
.landing-form-banner-section .landing-form-banner-container .landing-content-wrapper .landing-banner-title {
    font-size: 30px;
    color: #ffff;
    line-height: 120%;
    font-weight: 400;
}
.landing-form-banner-section .landing-form-banner-container .landing-content-wrapper .landing-banner-description {
    margin-top: 30px;
    font-size: 21px;
    line-height: 143%;
    color: #ffff;
}
.landing-form-banner-section .landing-form-banner-container .landing-content-wrapper .landing-banner-button {
    font-size: 14px;
    line-height: 23.8px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 9px;
    color: #000;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    gap: 10px;
    text-decoration: none;
}
.landing-form-banner-section .landing-form-banner-container .landing-content-wrapper .landing-banner-button svg {
    margin-top: -5px;
    width: 20px;
    height: 20px;
}
.landing-form-banner-section .landing-form-banner-container .landing-form-wrapper {
    width: 32%;
    /* min-height: 450px; */
    background-color: #000000;
    border-radius: 10px;
    padding: 30px 30px 50px;
}
.landing-form-banner-container .landing-form-wrapper .landing-form_heading {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}
.landing-form-wrapper .landing-hero-form {
    margin: 10px 0 0;
}
.landing-hero-form fieldset.hidden-fields-container {
    display: none;
}
.landing-hero-form .wpcf7-form-control-wrap {
    display: block;
}
.landing-hero-form .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
    margin: 8px 0;
}
.landing-hero-form .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
    margin: 8px 0;
    padding: 10px 8px;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    color: #000;
}
.landing-hero-form input.wpcf7-form-control.wpcf7-submit {
    margin: 8px 0 0;
    background-color: #00008B;
    padding: 11px 22px;
    width: 100%;
    color: #fff;
    border: 1px solid #00008B;
    cursor: pointer;
}

@media (max-width: 1024px){
    .landing-form-banner-section .landing-form-banner-container .landing-content-wrapper {
        padding-right: 50px;
        max-width: 60%;
    }
    .landing-form-banner-section .landing-form-banner-container .landing-form-wrapper {
        width: 40%;
    }
    .landing-form-banner-section .landing-form-banner-container .landing-content-wrapper .landing-banner-description {
        margin-top: 30px;
        font-size: 16px;
    }
}

@media (max-width: 767px){
    .landing-form-banner-section {
        padding-block: 60px;
    }
    .landing-form-banner-section .landing-form-banner-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }
    .landing-form-banner-section .landing-form-banner-container .landing-content-wrapper {
        padding-right: 0px;
        max-width: 100%;
    }
    .landing-form-banner-section .landing-form-banner-container .landing-form-wrapper {
        width: 100%;
    }
    .landing-form-banner-section .landing-form-banner-container .landing-content-wrapper .landing-banner-description,
    .landing-form-banner-section .landing-form-banner-container .landing-content-wrapper .landing-banner-button {
        margin-top: 20px;
    }
}

/* OUR SERVICE STYLE END */
.services-section {
    padding: 60px 40px;
    background-color: #f7f7f7;
}
.services-section .services-container {
    max-width: 1200px;
    margin: 0 auto;
}
.services-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    padding-inline: 20px;
    margin-inline: auto;
}
.services-section .section-header .subtitle {
    color: #00008B;
    font-size: 14px;
    font-weight: 700;
        margin-bottom: 10px;
    text-transform: uppercase;
}
.services-section .section-header .title {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    line-height: 130%;
}
.services-section .section-header .description {
    color: #555;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 743px;
    margin-inline: auto !important;
}
.services-section .card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 36px;
}
.services-section .card-wrapper .service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-section .card-wrapper .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.services-section .card-wrapper .service-card .image-box {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}
.services-section .card-wrapper .service-card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-section .card-wrapper .service-card .card-content {
    padding: 30px 0px 0px;
}
.services-section .card-wrapper .service-card .card-content .card-title {
    font-size: 20px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}
.services-section .card-wrapper .service-card .card-content .separator {
    width: 100%;
    height: 1px;
    background-color: #a6a6a6;
    margin-bottom: 25px;
}
.services-section .card-wrapper .service-card .card-content .card-description {
    font-size: 14px;
    /* color: #666; */
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 200;
}
.services-section .card-wrapper .service-card .card-content .contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}
.services-section .card-wrapper .service-card .card-content .contact-btn:hover {
    color: #ff5722;
}
.services-section .card-wrapper .service-card .card-content .contact-btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #00008B;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    transition: background-color 0.3s ease;
}
.services-section .card-wrapper .service-card .card-content .contact-btn:hover .arrow {
    background-color: #ff5722;
}

@media (max-width: 1024px){
    .services-section .card-wrapper {
        gap: 40px 20px;
    }
    .services-section .card-wrapper .service-card {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .services-section .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .services-section {
        padding: 60px 20px;
    }
    .services-section .section-header {
        margin-bottom: 40px;
        padding-inline: 0px;
    }
    .services-section .section-header .title {
        font-size: 28px;
    }
    .services-section .section-header .description {
        font-size: 14px;
    }
    .services-section .card-wrapper {
        grid-template-columns: 1fr;
        gap: 30px 20px;
    }
    .services-section .card-wrapper .service-card .card-content .card-description {
        margin-bottom: 20px;
    }
}
/* OUR SERVICE STYLE END */

/* MORE ABOUT US -- START */

section.more-about-section {
    background-color: rgba(0, 0, 0, 0.06);
    padding: 60px 40px;
}
.more-about-section .more-about-container {
    max-width: 1200px;
    margin: 0 auto;
}
.more-about-section .more-about-heading {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
}
.more-about-section .more-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 54px 0 0;
}
.more-about-grid .more-about-item {
    border: 3px solid #00008B;
    border-radius: 10px;
    padding: 24px;
}
.more-about-item .ma-item-content .ma-item-heading {
    text-align: center;
    font-size: 27px;
    color: #333;
}
.more-about-item .ma-item-content .ma-item-text {
    text-align: center;
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 300;
}
.more-about-section .more-about-btn {
    margin: 60px 0 0;
}
.more-about-section .more-about-btn .ma-btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    gap: 6px;
    color: #FFFFFF;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    background-color: #00008B;
    text-decoration: none;
    padding: 12px 30px;
}
.more-about-section .more-about-btn .ma-btn-link svg {
    width: 16px;
    height: 15px;
    fill: #fff;
}

@media (max-width: 1024px){
    .more-about-section .more-about-grid {
        gap: 20px;
        margin: 30px 0 0;
    }
    .more-about-grid .more-about-item {
        padding: 18px;
    }
    .more-about-item .ma-item-content .ma-item-heading {
        font-size: 22px;
    }
    .more-about-section .more-about-btn {
        margin: 40px 0 0;
    }
}

@media (max-width: 767px){
    section.more-about-section {
        padding: 50px 20px;
    }
    .more-about-section .more-about-heading {
        font-size: 28px;
    }
    .more-about-section .more-about-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        margin: 20px 0 0;
    }
}

/* MORE ABOUT US -- END */

/* FREE ESTIMATE -- START */

section.free-estimate-section {
    background-color: #66b2d2;
    padding: 60px 40px 100px;
    position: relative;
}
.free-estimate-section::after {
    position: absolute;
    content: '';
    background-image: url(https://www.commercialfoamroofing.com/wp-content/uploads/2025/10/svgviewer-png-output-scaled.png);
    background-size: 100% 100px;
    background-repeat: no-repeat;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
}
.free-estimate-section .free-estimate-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.free-estimate-section .free-estimate-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.free-estimate-grid .free-estimate-col {
    width: calc(100% / 2 - 30px);
}
.free-estimate-content .free-estimate-heading {
    color: #fff;
    font-size: 36px;
}
.free-estimate-content  .free-estimate-text {
    margin: 10px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}
.free-estimate-content .free-estimate-btn {
    margin: 30px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    justify-content: center;
    border-radius: 9px;
    font-size: 14px;
    background-color: #00008B;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
}
.free-estimate-content .free-estimate-btn svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

@media (max-width: 1024px){
    .free-estimate-section .free-estimate-grid {
        gap: 40px;
    }
    .free-estimate-grid .free-estimate-col {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 767px){
    section.free-estimate-section {
        padding: 50px 20px 100px;
    }
    .free-estimate-section .free-estimate-grid {
        flex-direction: column;
    }
    .free-estimate-grid .free-estimate-col {
        width: 100%;
    }
    .free-estimate-content .free-estimate-heading {
        font-size: 28px;
    }
}

/* FREE ESTIMATE -- END */

/* LANDING FOOTER -- START */

footer.landing-footer {
    background-image: url(https://www.commercialfoamroofing.com/wp-content/uploads/2025/10/AdobeStock_454329832-1-1.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 60px 40px;
    position: relative;
}
footer.landing-footer::before {
    position: absolute;
    content: '';
    background: #000000bf;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.landing-footer .landing-footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.landing-footer .landing-footer-grid {
    display: flex;
    gap: 40px;
}
.landing-footer .landing-footer-col {
    width: calc(33.33% - 40px * 2 / 3);
}
.landing-footer-col.lading-footer-logo .lfooter-logo-img {
    max-width: 80%;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 12px;
}
.landing-footer-col.lading-footer-logo .lfooter-logo-content {
    margin: 40px 0 0;
    color: #fff;
    font-size: 14px;
}
.lfooter-col-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.lfooter-contact-details .lfooter-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    margin: 12px 0 0;
}
.lfooter-contact-details .lfooter-contact-link svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex: 0 0 auto;
}
.lfooter-contact-details .lfooter-contact-link svg path {
    fill: #fff;
}
.lfooter-business-hours .lfooter-hours-list {
    margin: 12px 0 0;
    list-style-type: none;
}
.lfooter-business-hours .lfooter-hours-list li {
    color: #fff;
    font-size: 14px;
    display: flex;
}
.lfooter-business-hours .lfooter-hours-list li + li {
    margin: 4px 0 0;
}
.lfooter-business-hours .lfooter-hours-list li span {
    min-width: 110px;
    display: block;
}

@media (max-width: 1024px){
    .landing-footer .landing-footer-grid {
        gap: 20px;
    }
    .landing-footer .landing-footer-col {
        width: calc(33.33% - 20px * 2 / 3);
    }
    .lfooter-business-hours .lfooter-hours-list li {
        font-size: 12px;
    }
    .lfooter-business-hours .lfooter-hours-list li span {
        min-width: 90px;
    }
    .lfooter-contact-details .lfooter-contact-link {
        font-size: 12px;
    }
    .landing-footer-col.lading-footer-logo .lfooter-logo-content {
        margin: 30px 0 0;
        font-size: 12px;
    }
}

@media (max-width: 767px){
    footer.landing-footer {
        padding: 50px 20px;
    }
    .landing-footer .landing-footer-grid {
        gap: 30px;
        flex-direction: column;
    }
    .landing-footer .landing-footer-col {
        width: 100%;
    }
    .lfooter-business-hours .lfooter-hours-list li,
    .lfooter-contact-details .lfooter-contact-link {
        font-size: 14px;
    }
    .lfooter-business-hours .lfooter-hours-list li span {
        min-width: 110px;
    }
    .landing-footer-col.lading-footer-logo .lfooter-logo-content {
        font-size: 13px;
    }
}

/* LANDING FOOTER -- END */

/* CUSTOMER REVIEWS -- START */

section.customer-review-section {
    padding: 60px 40px;
    background-color: rgba(0,0,0,0.02);
}
.customer-review-section .customer-review-container {
    max-width: 1200px;
    margin: 0 auto;
}
.customer-review-section .customer-review-heading {
    text-align: center;
    font-size: 36px;
}
.customer-review-section .customer-review-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0 0;
}
.customer-review-grid .customer-review-details {
    width: calc(25% - 20px);
    display: flex;
    align-items: center;
    gap: 14px;
}
.customer-review-grid .customer-review-slidercol {
    width: calc(75% - 20px);
    position: relative;
}
.customer-review-details .cr-details-logo {
    max-width: 80px;
    height: auto;
    display: block;
    flex: 0 0 auto;
}
.customer-review-details .cr-details-text h6 {
    font-size: 16px;
    font-weight: 600;
}
.customer-review-details .cr-details-text .cr-details-star {
    display: flex;
    margin: 6px 0 0;
}
.customer-review-details .cr-details-text .cr-details-star img {
    width: 20px;
    display: block;
}
.customer-review-details .cr-details-text .cr-details-total-reviews {
    display: block;
    font-size: 14px;
    margin: 8px 0 0;
}
.customer-review-details .cr-details-text .cr-details-btn {
    display: flex;
    width: fit-content;
    text-decoration: none;
    margin: 10px 0 0;
    color: #000;
    font-size: 14px;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 6px 16px;
    font-weight: 500;
}
.customer-review-slider.swiper {
    padding: 10px 0;
}
.customer-review-slider .customer-review-slide.swiper-slide {
    height: auto;
}
.customer-review-slide .cr-slide-content {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    transition: ease 0.3s all;
    height: 100%;
}
.customer-review-slide .cr-slide-content:hover {
    transform: translate(0, -5px);
}
.customer-review-slide .cr-slide-content .cr-slide-author {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.customer-review-slide .cr-slide-content .cr-slide-author .cr-slide-google-icon {
    width: 20px;
    display: block;
    flex: 0 0 auto;
    height: auto;
}
.customer-review-slide .cr-slide-author .cr-slide-author-details {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.customer-review-slide .cr-slide-author .cr-slide-author-details .cr-slide-author-img {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    object-fit: cover;
}
.customer-review-slide .cr-slide-author .cr-slide-author-details .cr-slide-author-text h6 {
    font-size: 15px;
    font-weight: 600;
}
.customer-review-slide .cr-slide-author .cr-slide-author-details .cr-slide-author-text span {
    display: block;
    color: #767676;
    font-size: 13px;
    line-height: normal;
}
.customer-review-slide .cr-slide-content .cr-slide-stars {
    margin: 16px 0 0;
    display: flex;
    gap: 6px;
}
.customer-review-slide .cr-slide-content .cr-slide-stars .cr-slide-star {
    display: flex;
}
.customer-review-slide .cr-slide-content .cr-slide-stars .cr-slide-star img {
    width: 16px;
    display: block;
}
.customer-review-slide .cr-slide-content .cr-slide-stars .cr-slide-verified {
    width: 15px;
    display: block;
}
.customer-review-slide .cr-slide-content .customer-review-text {
    margin: 12px 0 0;
    overflow: hidden;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.customer-review-slide .cr-slide-content .customer-review-text p {
    font-size: 14px;
    font-weight: 300;
}
.customer-review-slidercol .creview-button-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    opacity: 1;
    transition: all 200ms ease-out;
    background-color: #ffffff;
    outline-style: solid;
    outline-width: 2px;
    outline-color: #F4F4F4;
    border-radius: 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.customer-review-slidercol .creview-button-arrow svg {
    width: 18px;
    height: 18px;
}
.customer-review-slidercol  .creview-button-next.creview-button-arrow {
    right: -16px;
}
.customer-review-slidercol  .creview-button-prev.creview-button-arrow {
    left: -16px;
}
.customer-review-slidercol .creview-button-arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: no-drop;
}

@media (max-width: 1120px){
    .customer-review-grid .customer-review-details {
        width: calc(35% - 20px);
    }
    .customer-review-grid .customer-review-slidercol {
        width: calc(65% - 20px);
    }
}

@media (max-width: 991px){
    .customer-review-section .customer-review-grid {
        gap: 20px;
        margin: 30px 0 0;
        flex-direction: column;
    }
    .customer-review-grid .customer-review-details,
    .customer-review-grid .customer-review-slidercol {
        width: 100%;
    }
}

@media (max-width: 767px){
    section.customer-review-section {
        padding: 50px 20px;
    }
    .customer-review-section .customer-review-heading {
        font-size: 28px;
    }
}

/* CUSTOMER REVIEWS -- END */

/* WORK GALLERY -- START */

section.work-gallery-section {
    padding: 60px 40px;
}
.work-gallery-section .work-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}
.work-gallery-header h2 {
    text-align: center;
    font-size: 36px;
}
.work-gallery-header p {
    text-align: center;
    font-size: 15px;
    font-weight: 300;
}
.work-gallery-section .work-gallery-grid {
    margin: 60px 0 0;
}
.work-gallery-section .work-gallery-grid {
    margin: 50px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.work-gallery-grid a {
    position: relative;
    padding-top: 75%;
    display: block;
    transition: ease 0.3s all;
}
.work-gallery-grid a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.work-gallery-grid a::before {
    position: absolute;
    content: '';
    background: #0000006b;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: ease 0.3s all;
}
.work-gallery-grid a:hover::before {
    opacity: 1;
}
.work-gallery-section .work-gallery-btn {
    margin: 40px 0 0;
}
.work-gallery-section .work-gallery-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    background: #000;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}
.work-gallery-section .work-gallery-btn a svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

@media (max-width: 991px){
    .work-gallery-section .work-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px){
    section.work-gallery-section {
        padding: 50px 20px;
    }
    .work-gallery-header h2 {
        font-size: 28px;
    }
    .work-gallery-header p {
        font-size: 13px;
        font-weight: 300;
    }
    .work-gallery-section .work-gallery-grid {
        margin: 30px 0 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .work-gallery-section .work-gallery-btn {
        margin: 30px 0 0;
    }
}

/* WORK GALLERY -- END */

/* client logo -- START */
.client-logo-section {
    padding: 60px 40px;
    background: url(images/title-bg.webp) left bottom no-repeat;
    background-size: contain;
    position: relative;
}
.client-logo-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.client-logo-section .clwrapp {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
}
.client-logo-section .clwrapp .clw-heading {
    flex: 0 0 auto;
    width: 240px;
}
.client-logo-section .clwrapp .clw-heading h2{
    font-weight: 700;
    font-size: 36px;
}
.client-logo-section .clwrapp .clw-grid {
    display: flex;
    align-items: center;
    gap: 2em;
    flex: 1;
    width: calc(100% - 260px);
    justify-content: flex-end;
}
.client-logo-section .clwrapp .clw-grid .clw-item {
    flex: 0 0 auto;
}
.client-logo-section .clwrapp .clw-item img {
    display: block;
    height: 100px;
    width: 100%;
    object-fit: contain;
}
@media (max-width: 1200px){
    .client-logo-section .clwrapp .clw-item img {
        height: 64px;
    }
}
@media (max-width: 991px){
    .client-logo-section .clwrapp .clw-grid {
        gap: 24px;
    }
}
@media (max-width: 810px){
    .client-logo-section .clwrapp {
        flex-wrap: wrap;
        gap: 20px;
    }
    .client-logo-section .clwrapp .clw-heading {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }
    .client-logo-section .clwrapp .clw-grid {
        gap: 20px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;    
    }
}
@media (max-width: 767px){
    .client-logo-section {
        padding: 40px 20px;
    }
    .client-logo-section {
        background: url(images/title-bg.webp) left bottom no-repeat;
        background-size: cover;
    }
    .client-logo-section .clwrapp .clw-heading h2{
        font-size: 28px;
    }
}

/* client logo -- END */