/* ======================== PAGE HERO ======================== */

.hero {
    display: flex!important;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* full height */
.hero.full-h {
    height: 100dvh;
}

/* flex height */
.hero.flex-h {
    height: 100%;
}

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

.hero-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    content: '';
}

.bg-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.hero-container {
    display: flex;
    padding: calc(var(--main-header-height) + 70px) 10% 70px 10%;
    width: 100%;
    z-index: 1;
}

.hero-container.center {
    display: flex;
    justify-content: center;
}

.hero-content.center {
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

/* Hero Highlights */

.hero-highlights {
    margin: 50px 0 0 0;
    padding: 0;
}

.hero-highlight {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 15px;
}

.hero-highlight img {
    margin: 10px;
    max-width: 25px;
    max-height: 25px;
}

.hero-highlight span {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

@media (max-width: 992px) {

    .hero-container.mobile-centered {
        display: flex;
        justify-content: center;
    }

    .hero-content.mobile-centered {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .headline-svg-wrapper.mobile-centered {
        margin: 0 auto;
        justify-content: center;
    }
}












.headline-svg-wrapper {
    display: flex;
    width: 100%;
    max-width: 300px;
    padding: 0 0 20px 0;
}

.headline-svg-wrapper.center {
    margin: 0 auto;
    justify-content: center;
}

.headline-svg-wrapper img {
    display: block;
    width: 100%;
}

.headline-svg-wrapper svg {
    display: block;
    max-width: 150px;
}

.headline-svg-wrapper svg path {
    fill: #ffffff;
}

.headline {
    display: block;
    margin: 0 0 25px 0;
    padding: 0;
    color: #ffffff;
}

.headline span {
    padding: 7px;
    background-color: #BB2649;
}

.hero-content {
    max-width: 700px;
}

.hero-content .hero-paragraph {
    display: block;
    margin: 0 0 25px 0;
    padding: 0;
    font-weight: 300;
    font-size: 17px;
    line-height: 23px;
    color: #ffffff;
}

.hero-content .hero-paragraph span {
    font-weight: 500;
}

.hero-content .default-notes {
    position: absolute;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0 10%;
    bottom: 0;
    left: 0;
    color: #999999;
    font-size: 9px;
    text-align: center;
}






/* scroll down animation */

.icon-scroll {
    width: 30px;
    height: 50px;
    margin-left: -20px;
    bottom: 10%;
    margin-top: -35px;
    box-shadow: inset 0 0 0 1px #dcdcdc;
    border-radius: 25px;
    overflow: hidden;
}

.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%;
}

.icon-scroll:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #dcdcdc;
    margin-left: -2px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}

.icon-scroll div {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.icon-scroll span {
    position: absolute;
    display: none;
    left: 130%;
    width: 100px;
    top: 50%;
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
    text-align: left;
    transform: translate(0px, -50%);
}

@keyframes scroll {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(46px);
    }
}

/** For desktop devices **/
@media (min-width: 992px) {

    .icon-scroll {
        bottom: 100px;
    }

    .hero-highlights {
        max-width: 100%;
    }

    .hero-highlight {
        display: flex;
        justify-content: center;
    }

}