.s-hero {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .s-hero {
        padding: 280px 0 360px;
    }    
}

.s-hero.align-left {
    text-align: left;
}

.s-hero.align-center {
    text-align: center;
}

.s-hero.align-right {
    text-align: right;
}

.s-hero .container {
    max-width: 1348px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.acf-block-preview .s-hero .n3,
.s-hero .n3 {
    margin: 0 0 30px;
    color: #FFF;
    text-transform: uppercase;
}

.acf-block-preview .s-hero h1,
.s-hero h1 {
    max-width: 600px;
    margin: 0;
    color: #FFF;
}

.acf-block-preview .s-hero.align-left h1,
.s-hero.align-left h1 {
    margin-right: auto;
}

.acf-block-preview .s-hero.align-center h1,
.s-hero.align-center h1 {
    margin: 0 auto;
}

.acf-block-preview .s-hero.align-right h1,
.s-hero.align-right h1 {
    margin-left: auto;
}

.s-hero__bg {
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.acf-block-preview .s-hero__bg img,
.s-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-hero .quick-nav {
    display: none;
}

@media screen and (min-width: 768px) {
    .s-hero .quick-nav {
        display: block;
        background: #542e91;
        max-width: 1640px;
        width: 100%;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate3d(-50%,0,0);
        z-index: 2;
        transition: 0.3s;
    }  
    
    .s-hero .quick-nav.fixed {
        max-width: 100%;
        position: fixed;
        top: 60px;
        bottom: auto;
        box-shadow: 0 1px 0 0 rgba(0,0,0,0.2);
    }

    .admin-bar .s-hero .quick-nav.fixed {
        top: 92px;
    }

    .acf-block-preview .s-hero .quick-nav ul,
    .s-hero .quick-nav ul {
        max-width: 1348px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 20px;
        margin: 0 auto;
        padding: 0 24px;
        list-style: none;
    }

    .s-hero .quick-nav ul li {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .s-hero .quick-nav ul li span {
        height: 88px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        text-decoration: none;
        text-wrap: nowrap;
        padding: 0 5px;
        position: relative;
        transition: 0s;
        cursor: pointer;
    }

    .s-hero .quick-nav ul li span::before {
        content: attr(data-title);
        position: absolute;
        height: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        opacity: 0;
        z-index: 2;
    }

    .s-hero .quick-nav.fixed ul li span {
        height: 56px;
    }

    .s-hero .quick-nav ul li span.active-item {
        color: #542e91;
    }

    .s-hero .quick-nav ul li span.active-item:before {
        color: #FFF;
        opacity: 1;
    }
}