.hero.component {
    max-width: inherit;
    overflow: hidden;
}

.hero.component > .content {
    max-height: 400px;
}

.hero.component .hero-image {
    vertical-align: middle;
    border-style: none;
    object-fit: cover;
    border-style: none;
    filter: blur(1px);
    opacity: 0.7;
    object-position: 50% 50%;
    width: 100%;
    max-height: 400px;
}

.hero.component .hero-image.hero-no-effect {
    filter: inherit;
    opacity: inherit;
}

@media (max-width: 900px) {
    .hero.component .hero-image {
        max-height: 300px;
    }
}

@media (max-width: 600px) {
    .hero.component .hero-image {
        max-height: 200px;
    }
}