<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.campaign-video-carousel-wrapper {
    position: relative;
    display: block;
    width: 100%;
    /*padding: 0 5%;*/
    overflow: hidden;
    margin-bottom: 0;

}

.button-prev,
.button-next {
    height: 3rem;
    width: 3rem;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 100%;
    position: absolute;
    /*top: 50%;*/

    background-color: rgba(255, 255, 255, 0);
    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;

    opacity: 1;
    /*transition: opacity 300ms ease-in-out;*/

}

/*.campaign-video-carousel-wrapper:hover .button-prev,
            .campaign-video-carousel-wrapper:hover .button-next {
                opacity: 1;
            }*/

.button-next::before,
.button-prev::before {
    position: relative;
    content: "";
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    margin-left: -5px;
    margin-top: -5px;

}

.button-prev {
    left: 5%;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);

}

.button-next {
    right: 1%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.carousel-video-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* content page styling */
.campaign-video-carousel {
    position: relative;
    scroll-snap-type: x mandatory;
    overflow-y: hidden;
    overflow-x: scroll;
    display: flex;
    scroll-behavior: smooth;
    margin-bottom: 2rem;

}

.campaign-video-carousel::-webkit-scrollbar {
    width: 0px;
}

.campaign-video-item {
    position: relative;
    width: 95%;
    display: flex;
    scroll-snap-align: center;
    flex-shrink: 0;
    gap: 2rem;
}

.campaign-video-item .text-container {
    position: relative;
    color: #000;

    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 40%;
    padding-right: 5%;

}

.campaign-video-item .text-container h3,
.campaign-video-item .text-container .eyebrow {
    position: relative;
    font-family: freight-big-pro, serif;
    font-size: clamp(2.5rem, calc(3vw + .5rem), 3.4375rem);
    line-height: 0.8;
    margin: 0.1em 0 0.3em 0;

}

.campaign-video-item img {
    width: 100%;
    display: block;
}

.campaign-video-item .text-container .eyebrow {
    font-style: italic;
    font-size: clamp(1.25rem, calc(1.5vw + .5rem), 2.5rem);
    line-height: 1;
    margin: 0;
}

.campaign-video-item .text-container p {
    font-family: "minion-pro", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.0625rem;
    line-height: 1.5;
    letter-spacing: normal;
    margin: 0 0 1em;

}

.campaign-video-item .text-container div.campaign-button,
.campaign-video-item .text-container a.campaign-button.explore-button {
    font-family: "proxima-nova", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

    font-size: 0.9375rem;
    line-height: 1;
    color: #000;
    border: 1px solid #000;
    padding: 10px 20px;
    width: 275px;
    height: 63px;
    margin-bottom: 10px;
    cursor: pointer;
}

.campaign-video-item .text-container a.campaign-button.explore-button {
    z-index: 30;
}

.campaign-video-item&gt;* {
    width: 100%;
}

.campaign-video-item .arrow-container {
    width: 20%;
    margin-top: 1rem;
    cursor: pointer;
}

/*Mobile Only Styles  */
.mobile-only {
    display: none;
}

@media only screen and (min-width: 1023.98px) {
    .campaign-video-item .text-container a.campaign-button.explore-button.mobile-only {
        display: none;
    }

}

.desktop-only {
    display: block;
}

/*MODAL STYLES*/
.campaign-video-modal-shade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 1);
    z-index: 10000;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}


.campaign-video-modal-shade.active {
    visibility: visible;
    opacity: .5;
}

.campaign-video-modal-container {
    display: none;
    position: fixed;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    /*border: 1px solid yellow;*/
    background-color: #fff;
    width: 75%;
}

@media screen and (max-width: 1023.98px) {
    .campaign-video-modal-container {
        width: 98%;
        padding: 0;
    }

}


.campaign-video-modal-container.active {
    display: block;
}

.watch-film-button {
    cursor: pointer;
}

.vimeo-styles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1023.98px) {
    .campaign-video-carousel {
        gap: 1em;
        margin-bottom: 0;
    }

    .campaign-video-item .text-container h3 {
        line-height: 1;
        margin: 0 0 0.1em 0;

    }

    .campaign-video-item .text-container p {
        width: 100%;
        font-size: 0.9375rem;
        margin-bottom: 1.5em;
    }

    .campaign-video-carousel::-webkit-scrollbar {
        display: none;
    }

    .campaign-video-item {
        flex-direction: column;
        width: 85%;
        gap: 1rem;
    }

    /*Mobile Only Styles  */
    .mobile-only {
        display: block;
        margin-top: .5em;
    }

    .video-container .mobile-only {
        margin: 0;
    }

    .mobile-only.active {
        margin: 0;
    }

    .desktop-only {
        display: none;
    }

    .button-prev {
        left: 1%;
    }

    .campaign-video-item .text-container div.campaign-button,
    .campaign-video-item .text-container a.campaign-button.explore-button {
        padding: 6px;
        height: 50px;
        width: 250px;
        margin: 0 0 10px;
    }

    /* positioning for text block */
    .campaign-video-item .text-container {
        width: 100%;
        padding-left: 11%;

    }

}</pre></body></html>