.hero-title {
    padding: 80px 0 0;
}

.hero-title .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.hero-title .content .small-title {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: .4;
    text-transform: uppercase;
}

.hero-title .content .big-title,
.hero-title .content .big-title * {
    font-size: 72px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-title .button-link {
    position: absolute;
    right: 0;
    bottom: 0;
}

.marquee-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.marquee-row .swiper {
    width: 100%;
    height: 320px;
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.marquee-row .swiper .swiper-slide {
    width: auto;
    max-width: 360px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
}

.preload-hidden {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marquee-row .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (min-width:968px) {
    .hero-title .content .big-title {
        width: calc(100% - 170px);
    }
}

@media (max-width:968px) {

    .hero-title .content .small-title {
        display: none;
    }

    .hero-title .content .big-title,
    .hero-title .content .big-title * {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .hero-title .button-call {
        position: relative;
    }

    .marquee-row .swiper {
        width: 100%;
        height: 240px;
    }

    .marquee-row {
        gap: 12px;
    }

    .marquee-row .swiper .swiper-slide {
        width: 160px;
    }
}