.hero_banner {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary);

    &.full {
        height: 100vh;
    }

    & > .container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        z-index: 3;
        flex-wrap: wrap;
        
        &.left {
            align-items: flex-start;
            text-align: left;

            & .call_to_action_buttons {
                justify-content: flex-start;
            }
        }

        &.center {
            align-items: center;
            text-align: center;

            & .call_to_action_buttons {
                justify-content: center;
            }
        }

        &.right {
            align-items: flex-end;
            text-align: right;

            & .call_to_action_buttons {
                justify-content: flex-end;
            }
        }

        & .hero_banner_inner {
            width: 60%;
            max-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            @media (max-width: 991px) {
                width: 100%;
                margin-bottom: 5rem;
            }

            p#breadcrumbs {
                font-family: "Inter", sans-serif;
                font-weight: 400;
                color: var(--white);
                text-transform: uppercase;
                line-height: 1;

                >span {
                    width: 100%;
                }

                a, span {
                    display: inline-block;
                    text-decoration: none;
                    font-family: "Inter", sans-serif;
                    font-weight: 400;
                    color: var(--white);
                }
            }
    
            & h1 {
                color: var(--white);
                line-height: 1.2;
                font-weight: 100;
                margin: 0;

                @media (min-width: 992px) {
                    font-size: 9rem;
                }

                @media (max-width: 991px) {
                    font-size: 2.8rem;
                }
            }

            & p {
                font-size: 2rem;
                color: var(--text);

                @media (max-width: 991px) {
                    font-size: 1.8rem;
                }
            }

            & .call_to_action_buttons {
                margin: 4rem 0 0;
            }
        }
    }

    & img.hero_banner_image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
        z-index: 1;
    }

    &:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(39, 71, 66, .75);
        z-index: 2;
    }
}