.hero-block{
    position: relative;
    background: linear-gradient(15deg, rgba(255,255,255,1) 40%, rgba(219,220,218,1) 100%);
    /* max-height: 800px; */
}
.hero-block::after{
    content: "";
    background-image: url('../../../../uploads/2023/04/hero-slanted-lines.png');
    background-size: 433.5px 50px;
    width: 867px;
    height: 50px;
    position: absolute;
    z-index: 10;
    bottom: -15px;
    left: -50px;
    mix-blend-mode: multiply;
}
.hero-background{
    width: 110%;
    margin-left: -10%;
    display: flex;
    transform: skew(-10deg);
    border-radius: 50px;
    border: 20px solid #2e5b6f;
    overflow: hidden;
    background: #2e5b6f;
    margin-top: -22px;
    /* max-height: 800px; */
}
.hero-background .hero-inner{
    width: 100%;
}
.hero-background img{
    width: calc(110% + 23px);
    height: 100%;
    margin-left: -20px;
    object-fit: cover;
    transform: skew(10deg);
}
.hero-background::before{
    content: "";
    background-image: url('../../../../uploads/2023/04/hero-arrows.png');
    background-size: 377px 70px;
    width: 377px;
    height: 70px;
    display: inline-block;
    position: absolute;
    left: -25px;
    top: calc(50% - 125px);
    z-index: 1;
}
.hero-content{
    position: absolute;
    transform: skew(-10deg);
    max-width: 80%;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-title{
    padding-left: 20px;
    margin-left: -20px;
    position: relative;
    margin-bottom: 25px;
}
.hero-title::before{
    content: "";
    display: flex;
    width: 0px;
    height: 100%;
    position: absolute;
    background: #E59457;
    border: 2px solid #E59457;
    border-radius: 3px;
    left: 0;
}
.hero-title h1, .hero-title h3{
    margin: 0;
}
.hero-title h3{
    font-weight: normal;
}
/* @todo clean up once a styles are defined */
.hero-link{
    font-family: 'rift', sans-serif;
    font-size: 28px;
    line-height: 33px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform:  uppercase;
    display: flex;
    align-items: center;
}
.hero-link > img{
    height: 12px;
    margin-top: 1px;
    margin-left: 8px;
    transition: height 0.35s;
}
.hero-link:hover > img{
    height: 18px;
}

@media (max-width: 850px){
    .hero-background::before{
        left: -100px;
        top: calc(50% - 200px);
    }
    .hero-title::before{
        content: unset;
    }
    .hero-title h1{
        position: relative;
    }
    .hero-title h1::before{
        content: "";
        display: flex;
        width: 0px;
        height: calc(100% - 5px);
        position: absolute;
        background: #E59457;
        border: 2px solid #E59457;
        border-radius: 3px;
        left: -20px;
    }
    .hero-content{
        max-width: 90%;
        margin-left: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-background{
        width: 125%;
        margin-left: -20%;
        min-height: 70vh;
    }
    .hero-background img{
        width: calc(125% + 23px);
    }
    .hero-block::after{
        width: 433.5px;
    }
}

@media (max-width: 500px){
    .hero-background::before{
        left: -200px;
    }
    .hero-background {
        width: 140%;
        margin-left: -30%;
        min-height: 90vh;
    }
    .hero-block::after{
        left: -225px;
    }
}