.hero {
    position: relative;
    width: min(100%, var(--container-width));
    margin-inline: auto;
	 --hero-height: 560px;
}

.hero__visual {
    position: relative;
    height: var(--hero-height);
    overflow: hidden;

}

.hero__picture {
    display: block;
    width: 100%;
    height: 93%;
}

.hero__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: absolute;
    top: 185px;
    left: 78px;
    width: 500px;
    color: var(--color-white);
}

.hero__title {
    margin: 0;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    text-shadow: 4px 4px 21px rgba(2, 75, 105, 0.79);
}

.hero__subtitle {
    margin: 26px 0 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
    text-shadow: 0px 0px 45px rgb(0, 0, 0), 0px 0px 45px rgba(0, 0, 0, 0.27);
}

.hero__bottom {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 72% 28%;
    align-items: end;
    margin-top: -72px;
}
.hero__bottom-text {
    transform: translateY(-22px);
}

.hero__bottom-text {
    padding: 27px 78px;
    color: var(--color-white);
    font-size: 21px;
    font-weight: bold;
    line-height: 1.45;
    background: var(--color-blue-dark);
}
.hero__bottom-text p {margin: 0}
.hero__bottom-text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero__bottom-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 115px;
    padding: 18px 30px;
    background: var(--color-white);
}
.hero__bottom-actions--single {
    justify-content: flex-start;
    padding-top: 23px;
}

.hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    min-height: 52px;
    padding: 10px 20px;
    color: var(--color-blue-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid var(--color-blue-dark);
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.hero__button:hover {
    color: var(--color-white);
    background: var(--color-blue-dark);
}
.hero {
    --hero-height: 500px;
}

.hero--home {
    --hero-height: 580px;
}