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

    &.full {
        height: 100vh;
    }

    &.dark {
        & h1, & p#breadcrumbs, & p#breadcrumbs a, & p#breadcrumbs span, & .text_area p {
            color: #012D52;
        }
    }

    &.light {
        & h1, & p#breadcrumbs, & p#breadcrumbs a, & p#breadcrumbs span, & .text_area p {
            color: #FFFFFF;
        }
    }

    & > .container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        z-index: 2;
        flex-wrap: wrap;
        
        &.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: 50%;
            max-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;
                }
            }

            & h1 {
                font-size: 60px;
                font-weight: 400;
                margin: 0;

                @media (max-width: 991px) {
                    font-size: 50px;
                    text-align: center;
                }

                & span {
                    font-size: inherit;
                    font-weight: inherit;
                    color: #FFFFFF;
                }
            }

            & .text_area {
                margin: 30px 0 0;

                & p {
                    font-size: 20px;
                    margin: 0;
    
                    @media (max-width: 991px) {
                        font-size: 18px;
                        text-align: center;
                    }
                }
            }

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

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

                & a {
                    margin-bottom: 0;

                    @media (max-width: 991px) {
                        width: 270px;
                        max-width: 100%;
                        padding: 1.40px;

                        &:first-of-type {
                            margin-bottom: 20px;
                        }
                    }
                }
            }
        }
    }
	
	& 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: 30px;

        & >li {
            &.slick-active {
                & button {
                    background: #FFFFFF !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: 10px;
        }

        &.slick-next {
            right: 10px;
        }
    }
}