.homepage-title {
    max-width: 1100px;
    margin: 50px auto;
}

.homepage-title h2,
.homepage-carousel h2 {
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin: 20px 20px 40px;
    color: #222;
}


/*
==================================================
Карусели
==================================================
*/

.homepage-carousel {
    max-width: 1100px;
    margin: 50px auto;
    position: relative;
    background: #fff;
}

.homepage-carousel .carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.homepage-carousel .carousel-window {
    overflow: hidden;
}

.homepage-carousel .carousel-track {
    display: flex;
    transition: transform .5s ease;
}

.homepage-carousel .carousel-item {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 0 15px;
}

.homepage-carousel .carousel-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: #222;
    text-align: left;
}

.homepage-carousel .carousel-link img {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.homepage-carousel .carousel-link h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 15px;
    min-height: 70px;
}

.homepage-carousel .carousel-link p {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 15px;
}

.homepage-carousel .carousel-price {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}


/*
==================================================
Стрелки
==================================================
*/

.homepage-carousel .carousel-prev,
.homepage-carousel .carousel-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 48px;
    line-height: 1;
    color: #bdbdbd;
    cursor: pointer;
    z-index: 10;
}

.homepage-carousel .carousel-prev {
    left: 10px;
}

.homepage-carousel .carousel-next {
    right: 10px;
}


/*
==================================================
Текстовый блок
==================================================
*/

.homepage-services {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.homepage-services p {
    margin: 0 0 20px;
    line-height: 1.6;
}


/*
==================================================
Адаптация
==================================================
*/

@media (max-width: 900px) {

    .homepage-carousel .carousel-item {
        flex-basis: 50%;
    }

}

@media (max-width: 600px) {

    .homepage-carousel .carousel-wrapper {
        padding: 0 45px;
    }

    .homepage-carousel .carousel-item {
        flex-basis: 100%;
    }

    .homepage-title h2,
    .homepage-carousel h2 {
        font-size: 26px;
    }

}

/*
==================================================
Верхний баннер
==================================================
*/

.homepage-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.homepage-hero-window {
    width: 100%;
    overflow: hidden;
}

.homepage-hero-track {
    display: flex;
    transition: transform .5s ease;
}

.homepage-hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.homepage-hero-slide a {
    display: block;
}

.homepage-hero-slide img {
    display: block;
    width: 100%;
    height: auto;
}


/*
Стрелки
*/

.homepage-hero-prev,
.homepage-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 50px;
    height: 70px;

    border: 0;
    padding: 0;

    background: rgba(255,255,255,.65);

    font-size: 38px;
    line-height: 1;

    color: #777;

    cursor: pointer;
}

.homepage-hero-prev {
    left: 20px;
}

.homepage-hero-next {
    right: 20px;
}


/*
Точки
*/

.homepage-hero-dots {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 15px;

    display: flex;
    justify-content: center;
    gap: 8px;

    z-index: 5;
}

.homepage-hero-dot {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.65);

    cursor: pointer;
}

.homepage-hero-dot.active {
    background: #333;
}


@media (max-width: 600px) {

    .homepage-hero-prev,
    .homepage-hero-next {
        width: 36px;
        height: 50px;
        font-size: 30px;
    }

    .homepage-hero-prev {
        left: 5px;
    }

    .homepage-hero-next {
        right: 5px;
    }

}