.hero_banner {
    display: flex;
    flex-direction: column;

    &.full {
        height: 100vh;
    }

    &.dark {
        & p.subheader, h1, & p#breadcrumbs, & p#breadcrumbs a, & p#breadcrumbs span, & .text_area p {
            color: var(--primary) !important;
        }
    }

    &.light {
        & p.subheader, h1, & p#breadcrumbs, & p#breadcrumbs a, & p#breadcrumbs span, & .text_area p {
            color: var(--white) !important;
        }
    }

    & > .container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        z-index: 2;
        flex-wrap: wrap;

        @media (max-width: 991px) {
            padding-top: 130px !important;
            padding-bottom: 50px !important;
        }
        
        &.left {
            align-items: flex-start;
            text-align: left;

            & .call_to_action_buttons {
                justify-content: flex-start;
            }
        }

        &.center {
            align-items: center;
            justify-content: center;
            text-align: center;

            & .hero_banner_inner {
                align-items: 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: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            @media (max-width: 991px) {
                width: 100%;
            }

            p#breadcrumbs {
                font-family: "DM Sans", sans-serif;
                font-weight: 400;
                text-transform: uppercase;
                line-height: 1;

                >span {
                    width: 100%;
                }

                a, span {
                    display: inline-block;
                    text-decoration: none;
                    font-family: "DM Sans", sans-serif;
                    font-weight: 400;
                }
            }

            & .opening_status {
                display: flex;
                flex-direction: row;
                align-items: center;
                margin-bottom: 5rem;

                & .status_badge {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    border-radius: 1rem;
                    color: var(--white);
                    padding: 1rem;

                    &.open {
                        background: #2CA868;
                    }

                    &.closed {
                        background: #D64545;
                    }

                    & span {
                        display: block;
                        color: var(--white);
                        font-size: 1.2rem;
                        font-weight: 700;
                        margin-left: .5rem;
                        text-transform: uppercase;
                    }
                }

                &>span {
                    display: block;
                    color: var(--white);
                    font-size: 1.2rem;
                    font-weight: 700;
                    margin-left: 2rem;
                    text-transform: uppercase;
                }
            }

            & .subheader {
                width: 60rem;
                max-width: 100%;
                font-size: 2rem;
                font-family: "DM Sans", arial, sans-serif;
                font-weight: 400;
                text-transform: uppercase;
                margin: 0;
            }

            & .text_area {
                margin: 3rem 0 0;

                & p {
                    font-family: "Aboreto", arial, sans-serif;
                    text-transform: uppercase;
                    font-size: 9rem;
                    font-weight: 400;
                    margin: 0;
                    line-height: 1;
    
                    @media (max-width: 991px) {
                        font-size: 4rem;
                        text-align: center;
                    }
                }
            }

            & .call_to_action_buttons {
                @media (min-width: 992px) {
                    flex-direction: row;
                    margin: 4rem 0 0;
                }

                @media (max-width: 991px) {
                    flex-direction: column;
                    align-items: center;
                    margin: 3rem 0 0;
                }

                & a {
                    margin-bottom: 0;

                    @media (max-width: 991px) {
                        width: 27rem;
                        max-width: 100%;
                        padding: 1.4rem;

                        &:first-of-type {
                            margin-bottom: 2rem;
                        }
                    }
                }
            }
        }
    }
	
	& img {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
        position: absolute;
        z-index: 0;
	}

    & img.hero_banner_image_desktop {
		@media (max-width: 767px) {
			display: none;
		}
    }
	
	& img.hero_banner_image_mobile {
		@media (min-width: 768px) {
			display: none;
		}
	}

    & .slick-dots {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        list-style-type: none !important;
        padding: 0 !important;
        margin: 0 !important;
        position: absolute;
        z-index: 1;
        bottom: 3rem;

        & >li {
            &.slick-active {
                & button {
                    background: var(--white) !important;
                }
            }

            & button {
                background: rgba(255, 255, 255, .25) !important;
            }
        }
    }

    & button.slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9;
        border: none;
        background: none;
        cursor: pointer;
        margin: 0;
        padding: 0;

        &.slick-prev {
            left: 1rem;
        }

        &.slick-next {
            right: 1rem;
        }
    }
}