.header-banner-component {
    padding: 0;
}

.header-banner-wrapper {
    background-color: var(--palette-200);
    display: flex;
    min-height: 440px;
    /* min-height: 300px; */
    /* min-height: 380px; */
}

.header-banner-content-wrapper {
    display: flex;
    flex: 1 0 40%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;

    background-image: url(../img/MainBannerOverlay_1.svg);
    background-blend-mode: color-burn;
    background-repeat: no-repeat;
    background-size: 380px;
    background-position: top left;
    background-color: var(--palette-200);
}

.header-banner-logo {
    max-width: 440px;
    position: absolute;
    right: 0;
}

.header-banner-logo img {
    max-width: 100%;
    height: auto;
}

.header-banner-content {
    max-width: 440px;
    position: absolute;
    right: 0;
    padding: 20px;

    margin-right: -30px;
    z-index: 3;
}

.header-banner-title {
    /* font-size: 48px; */
    font-size: 38px;
    line-height: normal;
    font-weight: bold;
    margin-bottom: 25px;
    display: block;
}

.header-banner-content h1 {
    margin: 0;
    font-weight: 300;
    font-size: 2em;
    letter-spacing: 2px;
}

.header-banner-content-title {
    position: absolute;
    right: -25px;
    padding: 20px;
    z-index: 2;
}

.header-banner-content-title-short {
    max-width: 340px;
    right: 40px;
}

.header-banner-content-title h1 {
    margin: 0;
    font-size: 2.667em;
    font-weight: 200;
    letter-spacing: normal;
}

.header-banner-content p {
    color: var(--white);
    margin-bottom: 25px;
}

.header-banner-content p strong {
    font-weight: 300;
}

.header-banner-btn {
    /* background-color: var(--white); */
    background-color: #f4b334;
    color: var(--palette-100);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 200;
    display: inline-block;
    transition: all ease-in-out .3s;
}

.header-banner-btn:hover {
    /* background-color: var(--palette-100); */
    /* color: var(--white); */
    background-color: var(--white);
    color: var(--palette-100);
}

.header-banner-content-wrapper:after {
    display: none;
    
    content: '';
    width: 380px;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(../img/MainBannerOverlay_2_dark.svg);
    background-blend-mode: color-burn;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom  left;
    background-color: transparent;
    transform: translateX(85%);
    opacity: .5;
    z-index: 2;
}

.header-banner-media {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex: 1 0 60%;
    /* clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%); */
    /* clip-path: polygon(310px 0, 100% 0%, 100% 100%, 0% 100%); */
    position: relative;
    overflow: hidden;
}

.header-banner-media:before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 0;
    z-index: 1;
    height: 0;
    border-top: solid 440px var(--palette-200);
    border-left: solid 0 transparent;
    border-right: solid 440px transparent;
}

.header-banner-media video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
}

@media screen and (min-width: 320px) {
    .header-banner-media {
        min-height: 180px;
    }
}


@media screen and (min-width: 480px) {
    .header-banner-media {
        min-height: 230px;
    }
}

@media screen and (min-width: 640px) {
    .header-banner-media {
        min-height: 230px;
    }
}

@media screen and (max-width: 960px) {
    .header-banner-wrapper {
       flex-flow: column-reverse;
       min-height: 0;
    }

    .header-banner-content {
        max-width: none;
        padding: 0;
        position: relative;
        margin-right: 0;
    }

    .header-banner-logo {
        position: relative;
    }

    /* .header-banner-media {
        clip-path: unset;
        min-height: 180px;
    } */

    .header-banner-media:before {
        display: none;
    }

    .header-banner-content-wrapper:after {
        display: none;
    }

    .header-banner-media video {
        position: relative;
        height: 100%;
    }

    .header-banner-content-title {
        position: relative;
        right: 0;
    }

    .header-banner-content-title h1 {
        font-size: 2em;
    }
}

@media screen and (min-width: 960px) {
    .header-banner-wrapper {
        min-height: 300px;
    }

    .header-banner-content-wrapper {
        background-size: 220px;
    }

    .header-banner-content-wrapper:after {
        width: 220px;
    }

    .header-banner-media:before {
        border-top-width: 300px;
        border-right-width: 300px;
    }

    .header-banner-content {
        max-width: 340px;
        margin-right: -100px;
    }

    .header-banner-content p {
        font-size: .750em;
    }

    .header-banner-content-title h1 {
        font-size: 2em;
    }
}

@media screen and (min-width: 1024px) {
    /* .header-banner-content-title h1 {
        font-size: 2em;
    } */
}

@media screen and (min-width: 1280px) {
    .header-banner-wrapper {
        min-height: 300px;
    }

    .header-banner-content-wrapper {
        background-size: 220px;
    }

    .header-banner-content-wrapper:after {
        width: 220px;
    }

    .header-banner-media:before {
        border-top-width: 300px;
        border-right-width: 300px;
    }

    .header-banner-content {
        max-width: 380px;
    }

    .header-banner-content p {
        font-size: .875em;
    }

    .header-banner-content-title h1 {
        font-size: 2.222em;
    }
}

@media screen and (min-width: 1440px) {
    .header-banner-wrapper {
        min-height: 380px;
    }

    .header-banner-content-wrapper {
        background-size: 300px;
    }

    .header-banner-content-wrapper:after {
        width: 300px;
    }

    .header-banner-media:before {
        border-top-width: 380px;
        border-right-width: 380px;
    }

    .header-banner-content {
        max-width: 400px;
    }

    .header-banner-content p {
        font-size: 1em;
    }
}

@media screen and (min-width: 1680px) {
    .header-banner-wrapper {
        min-height: 440px;
    }

    .header-banner-content-wrapper {
        background-size: 380px;
    }

    .header-banner-content-wrapper:after {
        width: 380px;
    }

    .header-banner-media:before {
        border-top-width: 440px;
        border-right-width: 440px;
    }
}