.primary-hero--container {
    max-width: 1360px;
    margin-inline: auto;
}

.primary-hero--wrapper {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    border-radius: 32px;
    overflow: hidden;
    justify-content: center;
}

@media screen and (min-width: 992px) {
    .primary-hero--wrapper {
        min-height: 558px;
        justify-content: unset;
    }
}

.primary-hero--wrapper::before {
    content: "";
    background: linear-gradient(180deg, rgba(255, 253, 255, 0.14) 0%, rgba(28, 20, 34, 0.9) 38%);
    width: 100%;
    height: calc(100% + 80px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

@media screen and (min-width: 992px) {
    .primary-hero--wrapper::before {
        background: linear-gradient(270deg, rgba(255, 253, 255, 0.14) 0%, rgba(28, 20, 34, 0.9) 58%);
    }
}

.primary-hero--wrapper>img:not(.logo) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -2;
}

@media screen and (min-width: 992px) {
    .primary-hero--wrapper {
        align-items: flex-start;
    }
}

.primary-hero--content {
    text-align: center;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
}

@media screen and (min-width: 992px) {
    .primary-hero--content {
        text-align: left;
        gap: 24px;
        align-items: flex-start;
    }
}

.primary-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-hero .breadcrumb span {
    color: white;
    font-size: 0.5625rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.primary-hero .breadcrumb span:not(:last-child) {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-hero .breadcrumb span:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 16px;
    background: white;
    transform: rotate(20deg);
}

.primary-hero .breadcrumb .current {
    font-weight: 700;
}

.primary-hero h1,
.primary-hero h2,
.primary-hero p {
    color: white;
}

.primary-hero .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 16px;
}

@media screen and (min-width: 992px) {
    .primary-hero p:not(.uptitle) {
        font-size: 18px;
    }
}

.primary-hero .logo {
    display: none;
    position: absolute;
    right: 24px;
    top: 24px;
}

@media screen and (min-width: 992px) {
    .primary-hero .logo {
        display: block;
        width: clamp(80px, 11.67vw, 168px);
        height: clamp(80px, 11.67vw, 168px);
    }
}

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