.hero-title{
    z-index: 3;
    font-size: 3rem;
    text-align: right;
    width: 30%;
    position: absolute;
    display: block;
    height: 100%;
    right: 0;
    background: #033336;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-title:before{
    content: '';
    background-color: #033336;
    width: 150px;
    height: 100%;
    position: absolute;
    right: calc(100% - 1px);
    z-index: 11;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.hero-title h1{
    color: #5e9499;
    width: 400px;
}

.hero-header .hero-images {
    width: 100%;
    transition: width 0.3s ease;
}

.hero-header.has-headline .hero-images {
    width: 70%;
}


.hero-images{
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
}

.hero-header{
    position: relative;
    height: 60vh;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.hero-images .bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-images .bg.visible {
    opacity: 1;
    z-index: 2;
}