.HeroElement {
    position: relative;
}

.hero_text_wrapper {
    position: relative;
}

.hero_text {
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.hero__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 21 / 9;
    background-image: var(--bg-desktop);
}

@media (max-width: 991.98px) {
    .hero__image {
        aspect-ratio: 16 / 9;
        background-image: var(--bg-tablet);
    }
}

@media (max-width: 575.98px) {
    .hero__image {
        aspect-ratio: 1 / 1;
        background-image: var(--bg-mobile);
    }
}

