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

@media screen and (min-width: 1280px) {
    .hero {
        padding-inline: 32px;
    }
}

.hero--container {
    position: relative;
}

.hero--container-content {
    position: relative;
    max-width: 1536px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 589px;
    padding: 116px 24px 40px 24px;
}

@media screen and (min-width: 992px) {
    .hero--container-content {
        padding: 147px 48px 64px 48px;
        min-height: 526px;
    }
}

.hero--img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 16px;
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .hero--img {
        border-radius: 24px;
    }
}

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

.hero--img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(28deg, rgba(0, 0, 0, 0.7) 17.43%, rgba(0, 0, 0, 0) 78.81%), linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 32.38%), linear-gradient(0deg, rgba(132, 218, 255, 0.16) 0%, rgba(132, 218, 255, 0.16) 100%);
}

.hero--content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero--content .uptitle {
    color: var(--medium-blue);
}

.hero--content h1,
.hero--content p {
    color: var(--white);
}

.hero--content p:not(.uptitle) {
    font-weight: 400;
}

@media screen and (min-width: 992px) {
    .hero--content .ref {
        margin-top: 16px;
    }
}

.hero--back {
    position: absolute;
    top: 24px;
    left: 24px;
}

@media screen and (min-width: 992px) {
    .hero--back {
        top: 64px;
        left: 48px;
    }
}

.hero--breadcrumb {
    position: absolute;
    top: 24px;
    left: 24px;
}

.hero--breadcrumb .breadcrumb {
    display: flex;
    gap: 32px;
    row-gap: 6px;
    flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
    .hero--breadcrumb {
        top: 48px;
        left: 48px;
    }
}

.hero--breadcrumb .breadcrumb-item {
    color: rgba(250, 250, 250, 0.6);
    font-family: var(--aileron);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    transition: all .3s ease;
}

.hero--breadcrumb li:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.6;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.hero--breadcrumb a:hover,
.hero--breadcrumb li.breadcrumb-item.active {
    color: #fafafa;
}

.hero--btn {
    margin-top: 32px;
}