@charset "UTF-8";
.hero {
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}
.hero .hero-image {
    width: 100%;
    height: 100%;
}
.hero .hero-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(0.8);
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
