.hero {
    color: white;
}

.hero--container {
    padding-inline: 24px;
    position: relative;
}

@media screen and (min-width: 992px) {
    .hero--container {
        padding-inline: 0;
        display: flex;
        align-items: center;
    }
}

.hero--content {
    text-align: center;
    padding: 24px;
    background: var(--dark-blue);
    max-width: 80vw;
    margin-inline: auto;
    margin-bottom: -24px;
    z-index: 1;
    position: relative;
}

@media screen and (min-width: 992px) {
    .hero--content {
        max-width: unset;
        padding: 60px 90px 60px 112px;
        text-align: left;
        margin-right: clamp(-226px, -16.31vw, 0px);
        margin-bottom: 0;
    }
}

.hero--content h1 {
    margin-bottom: 12px;
}

@media screen and (min-width: 992px) {
    .hero--content h1 {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 992px) {
    .hero--content p {
        max-width: 448px;
    }
}

.hero--image {
    display: flex;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .hero--image {
        max-width: clamp(0px, 63.19vw, 910px);
        flex-shrink: 0;
    }
}

.hero--image img {
    width: 100%;
    height: 310px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 992px) {
    .hero--image img {
        height: 606px;
    }
}

.hero .scroll-down {
    position: absolute;
    width: 64px;
    height: 64px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    right: 54px;
    bottom: 0;
    transform: translateY(50%);
}

@media screen and (min-width: 992px) {
    .hero .scroll-down {
        width: 80px;
        height: 80px;
        right: 64px;
    }
}

.hero .scroll-down::after {
    content: "";
    width: 24px;
    height: 24px;
    -webkit-mask: url("../images/arrow-down.svg") no-repeat center;
    mask: url("../images/arrow-down.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: white;
}

@media screen and (min-width: 992px) {
    .hero .scroll-down::after {
        width: 36px;
        height: 36px;
    }
}

/*# sourceMappingURL=style.css.map */