.home-banner {
    position: relative;
    overflow: hidden;
    min-height: 593px;
}
.home-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 100%;
    height: 100%;
    max-height: 500px;
    background: url(../images/header-shape-blur-orange.svg) no-repeat;
    background-size: contain;
    background-position: bottom left;
    z-index: 1;
    pointer-events: none;
}
.home-banner-text {
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 223px 0px 62px 0px;
    z-index: 2;
}

.home-banner-image{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: zoomout 1.5s ease;
    animation: zoomOut 1.5s ease;
}
.home-banner-image::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(33, 37, 45, 0.30) 0%, rgba(33, 37, 45, 0.30) 100%);
    display: block;
    overflow: hidden;
}
.home-banner-image img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.home-banner-image video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.home-banner-text-content *{
    color: var(--white);
}
.home-banner-text-content{
    max-width: 605px;
    margin-bottom: 165px;
}
.home-banner-text-content h1{
    font-style: italic;
}
.text-font{
    font-weight: 400;
}
.text-orange{
    color: var(--helix-orange);
}

.scroll-down-button{
    width: 60px;
    height: 60px;
    display: inline-block;
    z-index: 1;
    position: relative;
}
.scroll-down-button img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}