/** Shopify CDN: Minification failed

Line 254:0 Unexpected "}"

**/
.vertical-hero {
    background-size: cover;
    background-position: center;
    height: 50vh;
    max-height: 565px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;


    @media (max-width: 767px) {
        max-height: unset;
        height: unset;
        padding: 70px 16px 40px;
    }

    &::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #C10230;
        height: 25px;
        width: 100%;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        width: 80%;
    }
    
    h2 {
        margin-bottom: 28px;
        font-family: 'HelveticaNeue', sans-serif;
        padding: 0;
        font-size: 38px;

        @media (max-width: 767px) {
            font-size: 28px;
            margin: 0 0 15px;
        }
    }
    
    .subheading {
        padding: 0;
        font-size: 18px;
        font-family: 'HelveticaNeue', sans-serif;
        font-weight: 500;
        color: #fff;
        max-width: 1200px;
        margin: 0 auto;

        @media (max-width: 767px) {
            font-size: 16px;
        }
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 75px;

        @media (max-width: 767px) {
            flex-direction: column;
            gap: 17.5px;
        }
    }
    
    .primary-btn, .secondary-btn {
        padding: 10px;
        font-size: .9375rem;
        letter-spacing: .0625rem;
        font-weight: 700;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        background-color: #c30e2f;
        min-width: 160px;
    }
}



.featured-container {
    width: 100%;
    max-width: 1478px;
    padding: 0 16px 80px;
    margin: 0 auto;

    @media (max-width: 767px) {
        padding: 0 0 40px;
    }

    h3 {
        font-family: "HelveticaNeue", sans-serif;
        font-size: 40px;
        font-weight: 400;
        line-height: 47.72px;
        text-align: center;
        color: #000;
        padding: 0;
        margin: 75px 0 30px;
        color: #C30030;

        @media (max-width: 767px) {
            font-size: 28px;
            line-height: 33px;
            text-align: center;
            margin: 45px 0 20px;
        }
    }

    .featured-items {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin: 0 0 40px;
        flex-wrap: wrap;

        @media (max-width: 767px) {
            overflow-x: auto;
            width: 100%;
            overflow-y: hidden;
            flex-wrap: nowrap;
            justify-content: flex-start;
            gap: 16px;
            padding: 0 16px;
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
            will-change: transform;
            user-select: none;
            cursor: pointer;

            &::-webkit-scrollbar {
                display: none;
            }

            &:first-child {
                margin-left: 16px;
            }

            &:last-child {
                margin-right: 16px;
            }
        }

        .featured-item {
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            max-width: 340px;
            width: calc(100% / 4 - 18px);

            @media (max-width: 767px) {
                width: 284px;
                min-width: 284px;
            }

            .image {
                height: 275px;
                text-align: center;

                img {
                    margin: 0 auto;
                    height: 100%;
                    min-width: 100%;
                    width: auto;
                    object-fit: cover;
                    object-position: center;
                }
            }

            h4 {
                font-family: "HelveticaNeue", sans-serif;
                font-size: 24px;
                font-weight: 500;
                line-height: 29.3px;
                text-align: left;
                color: #A92C2C;
                margin: 0;
                padding: 0;
            }

            p,
            ul {
                font-family: "HelveticaNeue", sans-serif;
                font-size: 14px;
                font-weight: 400;
                line-height: 21px;
                text-align: left;
                margin: 0 0 16px;
                padding: 0;
                color: #777779;
            }
            ul {
                list-style: disc inside;
            }

            a.primary-btn {
                font-family: "HelveticaNeue", sans-serif;
                font-size: 14px;
                font-weight: 700;
                line-height: 32px;
                text-align: center;
                padding: 0 24px;
                color: #fff;
                width: 167px;
                background: #C30030;
                border-radius: 4px;
                display: inline-block;
            }}
        }

        &.three-per-row .featured-item {
            max-width: 460px;
            width: calc(100% / 3 - 18px);

            @media (max-width: 767px) {
                max-width: 284px;
                width: 100%;
            }
        }
    }
    
    .cta-buttons {
        text-align: center;
        margin: 50px auto 0;

        a {
            font-family: "HelveticaNeue", sans-serif;
            font-size: 16px;
            font-weight: 700;
            line-height: 52px;
            text-align: center;
            padding: 0 24px;
            color: #fff;
            min-width: 167px;
            background: #C30030;
            border-radius: 4px;
            display: inline-block;
        }
    }
}

.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}