
.hero-banner {
    position: relative;
}
.hero-banner img {
    aspect-ratio: 4/5;
    width: 100%;
    height: auto;
    object-fit: cover;
    background: var(--bs-gray-600);
}
.hero-banner::after {
    /*content:"";*/
    display:block;
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.55);
    mix-blend-mode: multiply;
}
.hero-banner figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 8vw;
    text-align: center;
    padding: 3vw;
    width: 100%;
    max-width: 1280px;
    font-family: var(--font-header);
}

@media (min-width: 768px) {
    .hero-banner img {
        aspect-ratio: 16/7;
    }
    .hero-banner figcaption {
        font-size: 3vw;
    }
}


#work-featured-showcase {
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-color: var(--nav-border-color);
}
.work-featured-header {
    border-bottom: 1px solid;
    border-color: var(--nav-border-color);
}
.work-featured-img {
    border-left: 1px solid;
    border-color: var(--nav-border-color);
}
.work-featured-img img {
    aspect-ratio: 16/6;
    object-fit: cover;
    width: 100%;
    height: auto;
}
.work-featured-content {
    width: 100%;
}
@media (min-width: 768px) {
    .work-featured-img img {
        aspect-ratio: 3/4;
    }
    .work-featured-content {
        max-width: 320px;
        padding: 3rem 0;
    }
}
@media (min-width: 1200px) {
    .work-featured-img img {
        aspect-ratio: 4/3;
    }
    .work-featured-content {
        max-width: 460px;
    }
} 

#services {
    border-bottom: 1px solid;
    border-color: var(--nav-border-color);
}

.service-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 1px solid;
    border-color: var(--nav-border-color);
}

.service-item:first-child {
    border: none;
}
@media (min-width: 992px) {
    .service-item {
        border-left: 1px solid;
        border-top:none;
        border-color: var(--nav-border-color);
    }
} 

