.three-col-w-img {
    background-color: var(--color-primary);
    padding-top: 70px;
    padding-bottom: 60px;
}

.three-col-w-img .section-header {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 100px;
    width: 100%;
    max-width: 1160px;
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
    gap: 40px;
}

.three-col-w-img .section-header .section-title {
    width: 100%;
    color: white;
}

.three-col-w-img .section-header .section-description {
    color: white;
    width: 100%;
    max-width: 550px;
}

.three-col-w-img .three-col-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px 40px;
    width: 100%;
    max-width: 1160px;
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
    margin: 0 auto;
}

.three-col-w-img .three-col-container .service-window {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 275px;
    background-size: cover;
    background-position: center;
    border: 15px solid white;
}

.three-col-w-img .three-col-container .service-window:hover .service-container-overlay {
    display: flex;
}

.three-col-w-img .three-col-container .service-container-overlay {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        background-color: rgba(0,0,0,0.5);
}

.three-col-w-img .three-col-container .service-more-info:any-link {
    color: white;
    padding: 16px 24px;
    border-radius: 9px;
    background-color: var(--color-primary);
}

.three-col-w-img .three-col-container .service-title {
    color: white;   
    text-align: center;
    margin: 0;
    margin-top: 25px;
    color: #C2CDAC;
    font-family: Inter;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
}

@media screen and (max-width: 950px) {
    .three-col-w-img .section-header {
        flex-direction: column;
        gap: 0;
        margin-bottom: 60px;
    }

    .three-col-w-img .section-header .section-title {
        text-align: center;
    }

    .three-col-w-img .section-header .section-description {
        margin: 0 auto;
        margin-top: 30px;
    }

    .three-col-w-img .three-col-container {
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       justify-content: center;
    }

    .three-col-w-img .service-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
}