.homepage-banner {
    min-height: calc(100vh - 110px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media(max-width: 1199.98px) {
    .homepage-banner {
        min-height: calc(100vh - 80px);
    }
}

.homepage-banner h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    line-height: 1;
    font-size: 365px;
    font-weight: 700;
    position: relative;
    font-family: "Figtree", sans-serif;
}

.homepage-banner h1 > span {
    display: inline-block;
    position: relative;
}

/*.homepage-banner h1 > span:last-of-type::after {*/
    /*content: '';*/
    /*position: absolute;*/
    /*top: -21px;*/
    /*right: -15%;*/
    /*background-image: url('assets/r.svg');*/
    /*background-position: center;*/
    /*background-size: contain;*/
    /*background-repeat: no-repeat;*/
    /*display: block;*/
    /*height: 24%;*/
    /*width: 33%;*/
/*}*/



.homepage-banner h1.alt > span {
    opacity: 0;
    animation: fadeIn_h1_homepage_banner 0.2s forwards;
}

@keyframes fadeIn_h1_homepage_banner {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Add delays to each span */
.homepage-banner h1.alt > span:nth-of-type(1) {
    animation-delay: 0.2s;
}
.homepage-banner h1.alt > span:nth-of-type(2) {
    animation-delay: 0.25s;
}
.homepage-banner h1.alt > span:nth-of-type(3) {
    animation-delay: 0.3s;
}
.homepage-banner h1.alt > span:nth-of-type(4) {
    animation-delay: 0.35s;
}
.homepage-banner h1.alt > span:nth-of-type(5) {
    animation-delay: 0.4s;
}
.homepage-banner h1.alt > span:nth-of-type(6) {
    animation-delay: 0.45s;
}





.homepage-banner h1 > span.o .letter { /* O letters */
    opacity: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.homepage-banner h1 > span.o img { /* O letter image overlays */
    position: absolute;
    top: 55%;
    left: 55%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: auto;
    scale: 1.13;
}

.homepage-banner h5 {
    margin-bottom: 0;
}

.homepage-banner a.button {
    margin: 0;
    margin-top: 45px;
}

@media(max-width: 1850px) {
    .homepage-banner h1 {
        font-size: 340px;
    }
}@media(max-width: 1750px) {
    .homepage-banner h1 {
        font-size: 310px;
    }
}@media(max-width: 1650px) {
    .homepage-banner h1 {
        font-size: 280px;
    }
}@media(max-width: 1550px) {
    .homepage-banner h1 {
        font-size: 270px;
    }
}@media(max-width: 1450px) {
    .homepage-banner h1 {
        font-size: 260px;
    }
}@media(max-width: 1350px) {
    .homepage-banner h1 {
        font-size: 240px;
    }
}@media(max-width: 1250px) {
    .homepage-banner h1 {
        font-size: 220px;
    }
}@media(max-width: 1150px) {
    .homepage-banner h1 {
        font-size: 200px;
    }
}@media(max-width: 1050px) {
    .homepage-banner h1 {
        font-size: 200px;
    }
}@media(max-width: 991.98px) {
    .homepage-banner h1 {
        font-size: 180px;
    }
}@media(max-width: 891.98px) {
    .homepage-banner h1 {
        font-size: 160px;
    }
}@media(max-width: 791.98px) {
    .homepage-banner h1 {
        font-size: 130px;
    }
}@media(max-width: 691.98px) {
    .homepage-banner h1 {
        font-size: 115px;
    }
}@media(max-width: 591.98px) {
    .homepage-banner h1 {
        font-size: 100px;
    }
}@media(max-width: 491.98px) {
    .homepage-banner h1 {
        font-size: 80px;
    }
}@media(max-width: 391.98px) {
    .homepage-banner h1 {
        font-size: 70px;
    }
}@media(max-width: 350.98px) {
    .homepage-banner h1 {
        font-size: 60px;
    }
}@media(max-width: 291.98px) {
    .homepage-banner h1 {
        font-size: 50px;
    }
}




/*** Image Animation - Image timing set in homepage-banner.js ***/
.homepage-banner h1 > span.o img {
    opacity: 0;
    transition: ease all 0.35s;
    -webkit-filter: drop-shadow(2px 13px 4px #cccccc);
    filter: drop-shadow(2px 13px 4px #cccccc);
}
.homepage-banner h1 > span.o img.active {
    opacity: 1;
}
@media(max-width: 991.98px) {
    .homepage-banner h1 > span.o img {
        -webkit-filter: drop-shadow(2px 9px 4px #cccccc);
        filter: drop-shadow(2px 9px 4px #cccccc);
    }
}

@media(max-width: 575.98px) {
    .homepage-banner h1 > span.o img {
        -webkit-filter: drop-shadow(2px 5px 3px #cccccc);
        filter: drop-shadow(2px 5px 3px #cccccc);
    }
}