.hero-slider {
    width: 100%;
    position: relative;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    max-width: 100%;
    width: 100%;
    height: 100%;
    min-height: 728px;
    padding-bottom: 50px;
}

.hero-slide-inner {
    max-width: 754px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 4.88%, rgba(0, 0, 0, 0.8) 90.11%);
    backdrop-filter: blur(2px);
}

.hero-slide-title {
    margin-bottom: 26px;
    font-family: 'Satoshi', sans-serif;
    font-size: 52px;
    line-height: 113%;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
}

.hero-slide-content {
    display: flex;
    padding: 0 60px;
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    line-height: 131%;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-align: center;
}

.hero-slide-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 57px;
}

@media (max-width: 768px) {
    .hero-slide-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        max-width: 100%;
        width: 100%;
        height: 100%;
        min-height: 400px;
        padding-bottom: 24px;
    }

    .hero-slider .swiper-slide::before {
        display: none;
    }
    .hero-slide-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    .hero-slide-title {
        margin-bottom: 12px;
        padding: 0 16px;
        font-family: 'Satoshi', sans-serif;
        font-size: 24px;
        line-height: 113%;
        font-weight: 700;
        letter-spacing: 0;
        text-align: center;
    }
    .hero-slide-content {
        padding: 0 18px;
        font-size: 16px;
        line-height: 114%;
    }
}