.fast-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

.fast-hero__slide {
    position: relative;
    min-height: 371px;
}

.fast-hero__slide picture,
.fast-hero__slide img {
    display: block;
    width: 100%;
    height: 371px;
}

.fast-hero__slide img {
    object-fit: cover;
}

.fast-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fast-hero__content {
    position: absolute;
    left: 7vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: 371px;
    color: #fff;
    z-index: 2;
}

.fast-hero__content h1,
.fast-hero__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.2vw, 68px);
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
}

.fast-hero__content p {
    margin: 0 0 28px;
    font-size: clamp(17px, 1.4vw, 23px);
    line-height: 1.45;
    color: #fff;
}

.fast-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    border: 1px solid rgba(255,255,255,.85);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .02em;
    transition: background .2s ease, color .2s ease;
}

.fast-hero__button:hover {
    background: #fff;
    color: #111;
}

.fast-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(0,0,0,.25);
    cursor: pointer;
}

.fast-hero__arrow svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}

.fast-hero__arrow--prev { left: 24px; }
.fast-hero__arrow--next { right: 24px; }

.fast-hero__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fast-hero__page {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}

.fast-hero__page.is-active {
    background: #fff;
    transform: scale(1.25);
}

@media (max-width: 767px) {
    .fast-hero__slide,
    .fast-hero__slide picture,
    .fast-hero__slide img {
        height: 520px;
        min-height: 520px;
    }

    .fast-hero__content {
        left: 24px;
        right: 24px;
        max-width: none;
    }

    .fast-hero__arrow {
        display: none;
    }
}
