.section-hero {
    padding: 32px 0 100px;
}

.section-hero__body {
    border-radius: 40px;
}

.section-hero__item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 70px;
    height: auto;
    justify-content: space-between;
    gap: 100px;
}

.section-hero__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.6) 0%, rgba(27, 27, 27, 0.6) 100%);
    filter: blur(400px);
}

.section-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-hero__head {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.section-hero__head-column {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-hero__head-column--right {
    display: none;
}

.section-hero__head-item {
    border: 1px solid var(--white-100);
    border-radius: 40px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.01em;
    color: var(--neutral-white);
    backdrop-filter: blur(12px);
    background: var(--white-100);
}

.section-hero__head-icon {
    border: 1px solid var(--white-100);
    border-radius: 40px;
    padding: 8px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    backdrop-filter: blur(12px);
    background: var(--white-100);
}

.section-hero__main {
    position: relative;
    z-index: 1;
}

.section-hero__title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 32px;
}

.section-hero__title {
    line-height: 116%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--neutral-white);
    max-width: 580px;
}

.section-hero__btn {
    margin-top: 20px;
}

.section-hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-hero__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: var(--neutral-white);
    opacity: 0.8;
    max-width: 435px;
}

.section-hero__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    padding: 0 16px;
}

@media (min-width: 320px) and (max-width: 1360px) {
    .section-hero__item {
        padding-top: calc(3.2692307692vw + 5.5384615385px);
    }
}

@media (min-width: 1360px) {
    .section-hero__item {
        padding-top: 50px;
    }
}

@media (min-width: 320px) and (max-width: 1360px) {
    .section-hero__item {
        padding-left: calc(3.2692307692vw + 5.5384615385px);
    }
}

@media (min-width: 1360px) {
    .section-hero__item {
        padding-left: 50px;
    }
}

@media (min-width: 320px) and (max-width: 1360px) {
    .section-hero__item {
        padding-right: calc(3.2692307692vw + 5.5384615385px);
    }
}

@media (min-width: 1360px) {
    .section-hero__item {
        padding-right: 50px;
    }
}

@media (min-width: 320px) and (max-width: 1360px) {
    .section-hero__item {
        gap: calc(-3.3653846154vw + 110.7692307692px);
    }
}
@media (min-width: 1360px) {
    .section-hero__item {
        gap: 65px;
    }
}

@media (min-width: 960px) {
    .section-hero__item:after {
        width: 960px;
        height: 430px;
        background: linear-gradient(180deg, #003325 0%, #013b2b 100%);
    }
}
@media (min-width: 768px) {
    .section-hero__item {
        padding: 16px;
    }
}
@media (min-width: 768px) and (min-width: 320px) and (max-width: 1360px) {
    .section-hero__item {
        padding: calc(3.2692307692vw + 5.5384615385px);
    }
}
@media (min-width: 768px) and (min-width: 1360px) {
    .section-hero__item {
        padding: 50px;
    }
}

@media (min-width: 768px) {
    .section-hero__head-column--right {
        display: flex;
    }
}

@media (min-width: 320px) and (max-width: 1360px) {
    .section-hero__title {
        font-size: calc(1.7307692308vw + 26.4615384615px);
    }
}
@media (min-width: 1360px) {
    .section-hero__title {
        font-size: 50px;
    }
}

@media (min-width: 320px) and (max-width: 1820px) {
    .section-hero__btn {
        margin-top: calc(0.8vw + 17.44px);
    }
}
@media (min-width: 1820px) {
    .section-hero__btn {
        margin-top: 32px;
    }
}

@media (min-width: 768px) {
    .section-hero__navigation {
        bottom: 32px;
        right: 32px;
        left: auto;
        padding: 0;
        width: max-content;
        transform: translateX(0);
    }
}