#hero.hero-four{
    justify-content: center;
    align-items: center;
    display: flex;
    height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
}
#hero.hero-four .hero-container{
    width: 100%;
    height: 100%;
    max-width: var(--max-screen-width);
    justify-content: flex-end;
}
#hero.hero-four .hero-right{
    justify-content: center;
    padding-left: 80px;
    width: 40%;
}
#hero.hero-four .hero-left{
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 0;
}
#hero.hero-four .hero-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#hero.hero-four .hero-topline{
    font-family: var(--secondary-font);
    color: var(--text-body);
    font-size: var(--text-display);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}
#hero.hero-four .hero-headline{
    font-family: var(--primary-font);
    color: var(--text-title);
    font-size: var(--h1);
    font-weight: 700;
    margin-bottom: var(--space-s);
}
#hero.hero-four .hero-text{
    font-family: var(--secondary-font);
    color: var(--text-body);
    font-size: var(--text);
    font-weight: 400;
}
#hero.hero-four .hero-buttons{
    margin-top: var(--space-s);
    gap: var(--space-xs);
}
#hero.hero-four .hero-buttons button{
    padding: var(--space-2xs) var(--space-s) var(--space-2xs) var(--space-s);
    border: 1px solid var(--primary);
    opacity: 0px;
    border-radius: 0;
    cursor: pointer;
}
#hero.hero-four .hero-buttons .button-one{
    background-color: var(--primary);
    color: var(--light);
}
#hero.hero-four .hero-buttons .button-two{
    background-color: transparent;
    color: var(--primary);
}
@media only screen and (max-width:768px){
    .reversed{
        flex-direction: column-reverse !important;
    }
    #hero.hero-four{
        height: 100%;
    }
    #hero.hero-four .hero-container{
        width: 100%;
        height: 100%;
        max-width: var(--max-screen-width);
        display: flex;
        flex-direction: column;
        gap: var(--space-3xl);
        padding-bottom: var(--section-space);
        padding-left: 0px;
        padding-right: 0px;
    }
    #hero.hero-four .hero-right{
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }
    #hero.hero-four .hero-left{
        width: 100%;
        position: static;
    }
    #hero.hero-four .hero-left img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}