.page-hero-section {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}



.page-hero-text-wrapper {
    text-align: left;
    width: 45%;
    padding: 0 0 0 5%;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.page-hero-text-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 100vh 200px 0 200px;
    border-color: #ffffff transparent transparent transparent;
    transform: rotate(0deg);
    z-index: -1;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-headline h1,
.hero-headline h2,
.hero-headline h3,
.hero-headline h4,
.hero-headline h5,
.hero-headline h6 {
    margin: 0 0 0px 0;
    padding: 0;
    font-size: unset;
    font-weight: unset;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.page-hero-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-hero-button:hover {
    background-color: #005bb5;
}

a.hero-button{
    text-decoration: none;
}

a.hero-button:hover{
    text-decoration: none;
}

a.hero-button-primary:hover{
    color: #fff;
}


/** 768 media */
@media (max-width: 1140px) {

    .page-hero-text-wrapper{
        width: 100%;
        padding: 0 5% 5% 5%;
        z-index: 2;
    }
    .page-hero-section {
        flex-direction: column-reverse;
        min-height: 100vh;
    }

    

    .page-hero-text-wrapper::after {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 50px 0 50px 100vw;
    border-color: transparent transparent transparent #ffffff;
    transform: rotate(0deg);
    z-index: -1;
}
}