.marquee {
    position: relative;
    width: 100%;
    height: 550px;
    padding: 0 20px;
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.marquee-container .marquee.parallax {
    background-attachment: fixed;
}
.marquee-container.add-filter .marquee::after {
    position: absolute;
    content: "";
    opacity: 0.8;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--red);
}
.marquee .title {
    font-family: var(--font-display-alt);
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--off-white);
}

.marquee .title a {
    color: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-size: inherit;
}
.marquee .content {
    position: relative;
    z-index: 1;
}
.marquee .content p {
    font-size: 16px;
    line-height: 27px;
    color: var(--off-white);
}
.marquee .link-cont {
    display: block;
    text-align: center;
    padding: 23px 0;
}
.marquee .link-cont .link{
    padding: 21px 39px;
    background-color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
}
.marquee .link .icon {
    margin-left: 5px;
}

@media only screen and (min-width: 1025px) {
    .marquee {
        width: calc(100% - 110px);
        margin-left: auto;
        margin-bottom: 140px;
        align-items: flex-start;
    }
    .marquee .content {
        width: 915px;
        margin-top: 150px;
    }
    .marquee .title {
        font-weight: 900;
        font-size: 35px;
        line-height: 40px;
    }
    .marquee .content p {
        font-size: 18px;
        line-height: 28px;
    }
    .marquee .link-cont {
        text-align: right;
    }
}

.marquee.marquee-alt {
    align-items: center;
}

.marquee.marquee-alt::after {
    opacity: 0.5;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) 100%);
}

.marquee.marquee-alt .title a {
    font-size: 35px;
    line-height: 38px;
}

.marquee.marquee-alt .link-cont .link {
    font-size: 14px;
    line-height: 18px;
}

@media only screen and (min-width: 375px) {
    .marquee.marquee-alt .title a {
        font-size: 43px;
        line-height: 47px;
    }

    .marquee.marquee-alt .link-cont .link {
        font-size: 18px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1025px) {
    .marquee.marquee-alt .content {
        max-width: 850px;
        margin-top: 0;
    }

    .marquee.marquee-alt .title a {
        font-size: 56px;
        line-height: 48px;
    }

    .marquee.marquee-alt .content p {
        line-height: 26px;

    }
}