.hero-secondary {
    max-width: 1920px;
    margin-inline: auto;
}

.hero-secondary--wrapper {
    position: relative;
}

.hero-secondary--wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(179deg, rgba(255, 255, 255, 0) -8.19%, rgba(0, 0, 0, 0.5) 82.49%);
}

.hero-secondary img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.hero-secondary--container {
    padding: 220px 40px 52px;
    max-width: 1280px;
    margin-inline: auto;
}

@media screen and (min-width: 992px) {
    .hero-secondary--container {
        padding: clamp(220px, 19.17vw, 276px) 40px clamp(52px, 8.19vw, 118px);
    }
}

@media screen and (min-width: 1360px) {
    .hero-secondary--container {
        padding-inline: 0;
    }
}

.hero-secondary--content {
    max-width: 836px;
    color: white;
    z-index: 1;
    position: relative;
}

.hero-secondary--content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 28px;
}

@media screen and (min-width: 992px) {
    .hero-secondary--content h1 {
        font-size: 4.375rem;
        line-height: 70px;
    }
}

.hero-secondary--content h1 em {
    font-family: var(--play);
    font-style: italic;
}

.hero-secondary--content p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width: 992px) {
    .hero-secondary--content p {
        font-size: 17px;
    }
}

.hero-secondary--banner {
    background: var(--violet);
    padding: 36px 0;
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .hero-secondary--banner {
        padding: 40px 0;
    }
}

.hero-secondary--banner .banner--track {
    display: flex;
}

.hero-secondary--banner .banner--set {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    animation: marquee 30s linear infinite;
}

@media screen and (min-width: 992px) {
    .hero-secondary--banner .banner--set {
        gap: 40px;
        padding-right: 40px;
    }
}

.hero-secondary--banner .banner--item {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    align-items: flex-start;
    color: white;
}

.hero-secondary--banner span {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

@media screen and (min-width: 992px) {
    .hero-secondary--banner span {
        font-size: 70px;
        line-height: 70px;
    }
}

.hero-secondary--banner p {
    font-family: var(--play);
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
}

@media screen and (min-width: 992px) {
    .hero-secondary--banner p {
        font-size: 28px;
        line-height: 30px;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*# sourceMappingURL=style.css.map */