.hero-banner {
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 568px;
    display: flex;
}

.hero-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-banner__video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: flex;
    pointer-events: none;
}

.hero-banner__row {
    position: relative;
    z-index: 2;
    margin: auto 50px 40px;
    display: flex;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
}

.hero-banner__item {
    padding: 30px 10px;
    border-radius: 20px;
    backdrop-filter: blur(13px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 154px;
    flex: 1;
}

.hero-banner__item-img {
    display: flex;
}

.hero-banner__item-img--mobile {
    display: none;
}

.hero-banner__item-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.hero-banner__item-text {
    font-weight: 500;
    line-height: 1.375;
    text-wrap-style: balance;
}

.hero-banner__link-wrapper {
    display: none;
}

.hero-banner__logos {
    display: none;
}

@media screen and (max-width: 1280px) {
    .hero-banner__item:nth-child(n + 5) {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .hero-banner {
        height: 480px;
        margin-bottom: 25px;
    }

    .hero-banner__video {
        height: 100%;
        object-fit: cover;
    }

    .hero-banner__row {
        position: absolute;
        bottom: 42px;
        left: 0;
        margin: 0;
        width: 100%;
        flex-wrap: wrap;
        gap: 5px;
        padding: 5px 20px;
    }

    .hero-banner__item {
        width: calc(100% / 2 - 5px);
        flex: 1 0 auto;
        padding: 25px 15px 15px;
        height: 100px;
    }

    .hero-banner__item-img {
        display: none;
    }

    .hero-banner__item-img--mobile {
        display: flex;
    }

    .hero-banner__item-img--mobile img {
        max-height: 30px;
        width: auto;
        flex-shrink: 0;
    }

    .hero-banner__item-title {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        font-size: 30px;
        line-height: 0.9;
        margin-bottom: 2px;
    }

    .hero-banner__item-text {
        font-size: 14px;
        line-height: 1.1;
    }

    .hero-banner__link-wrapper {
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        z-index: 2;
    }

    .hero-banner__link {
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        line-height: 1;
        color: #fff;
    }
}

@media screen and (max-width: 767px) {
    .hero-banner {
        border-radius: 15px;
    }

    .hero-banner__row {
        left: 35px;
        right: 35px;
        bottom: 40px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(13px);
        width: auto;
        border-radius: 15px;
        padding: 0;
    }

    .hero-banner__item {
        background: transparent;
        display: none;
        backdrop-filter: none;
        padding: 30px 52px;
        height: 124px;
        gap: 5px;
    }

    .hero-banner__item.active {
        display: flex;
    }

    .hero-banner__item-img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 63px;
        height: 63px;
        flex-shrink: 0;
    }

    .hero-banner__item-content {
        width: 120px;
    }

    .hero-banner__logos {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        gap: 15px;
        z-index: 2;
        direction: ltr;
    }
}