.hero {
    background: var(--color-black);
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__media::before {
    content: "";
    display: block;
    background: #000;
    opacity: 0.4;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__media .video {
    position: absolute;
    inset: 0;
}

.hero__inner {
    padding-block: var(--section-padding);
    gap: 10rem;
    justify-content: space-between;
    min-height: 100vh;
}

.hero__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
}

.hero__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    font-weight: 500;
    font-size: 1.4rem;
}

.hero__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}

.hero__text {
    font-size: 2rem;
}



.hero-socials .socials__item {
    backdrop-filter: blur(1rem);
}



.hero-buttons {
    display: flex;
    position: absolute;
    inset: 0;
    top: auto;
    backdrop-filter: blur(1rem);
    margin-bottom: -0.1rem;
}

.hero-button__btn {
    flex: 1;
    padding-block: 2rem;
    font-weight: 500;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 0.1rem solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-button__btn::after {
    content: "";
    display: block;
    background: var(--color-black);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-out;
}

.hero-button__btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.hero-button__btn-icon {
    width: 2.4rem;
    flex: 0 0 auto;
}

@media (hover: hover) and (pointer: fine) {
    .hero-button__btn:not(:hover)::after {
        height: 0;
    }
}

@media (hover: none) {
    .hero-button__btn:not(:active)::after {
        height: 0;
    }
}

@media screen and (max-width: 1024.9px) {
    .hero__inner {
        padding-top: calc(var(--section-padding) * 2);
    }
}

@media screen and (max-width: 767.9px) {
    .hero {
        padding-bottom: 0;
    }

    .hero__inner {
        gap: 10rem;
        padding-bottom: 15rem;
    }

    .hero__text br {
        display: none;
    }

    .hero__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-buttons {
/*        flex-direction: column;
        position: static;*/
        margin-top: 5rem;
    }

    .hero-button__btn {
        font-size: 1.6rem;
    }

    .hero-button__btn[href^="http"] {
        display: none;
    }
}

@media screen and (max-width: 575.9px) {
    .hero__inner {
        gap: 2rem;
        justify-content: unset;
    }

    .hero__header {
        justify-content: center;
        text-align: center;
    }

    .hero__list {
        justify-content: center;
    }

    .hero__title {
        font-weight: 700;
        font-size: 3.6rem;
    }

    .hero__footer {
        align-items: center;
        text-align: center;
    }

    .hero__text {
        font-size: 1.8rem;
    }

    .hero-socials {
        display: none;
    }
}