.hero_banner {
    overflow: hidden;

    & .video_wrapper {
        padding-top: 56.25%;

        & iframe {
            position: absolute;
            top: 0;
            left: 0;
            transform: scale(1.01);
        }
    }

    & > .content_overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(39, 71, 66, .75);
        display: flex;
        justify-content: center;
        align-items: center;

        & .container {
            width: 100%;
            display: flex;
            justify-content: center;

            & .hero_banner_inner {
                width: 100%;
                max-width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
    
                @media (max-width: 991px) {
                    width: 100%;
                }
    
                & 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;
                    justify-content: center;

                    @media (max-width: 991px) {
                        margin: 2rem 0 0;
                    }

                    a.button {
                        @media (min-width: 992px) {
                            font-size: 3rem !important;
                        }
                    }
                }
            }
        }
    }
}