.component--hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.user-logged-in.toolbar-horizontal.toolbar-fixed .component--hero-banner {
    height: calc(100vh - 53px);
}

.component--hero-banner h1 {
    color: #fff;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.125;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.component--hero-banner ol.breadcrumb {
    border-radius: 480px;
    padding: 0.5rem 1.25rem;
    padding-left: 1.25rem !important;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    display: inline-flex;
}

.hero-banner--video,
.hero-banner--image {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.hero-banner--video {
    top: 50%;
    left: 50%;
    object-fit: cover;
    /* behaves like background-size: cover */
    object-position: center;
    /* behaves like background-position: center center */
    transform: translate(-50%, -50%);
}

.hero-banner--image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-banner--overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.5rem 3rem;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to bottom, rgba(20, 28, 82, 0), rgba(20, 28, 82, 0.75), #141c52 100%);
    color: #fff;
}

.hero-banner--scroll {
    position: absolute;
    bottom: 55px;
    right: 30px;
    z-index: 3;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    flex-direction: column;
    color: #dee2e6 !important;
    line-height: 1.25;
    text-decoration: none;
    transform: translateY(0);
    transition: all ease-in-out 0.3s;
    font-weight: 600;
    border-bottom: 0 !important;
}

.hero-banner--scroll:hover {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.75);
    text-decoration: none !important;
    transform: translateY(3px);
    transition: all ease-in-out 0.3s;
}

@media screen and (max-width: 1399px) {
    .hero-banner--overlay>.container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .component--hero-banner h1 {
        font-size: 3.5rem;
    }
}