.hero_carousel {
    width: 100%;
    position: relative;
    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;
        }
    }

    & .carousel {
        width: 100%;

        @media (min-width: 992px) {
            height: 100%;

            & .slick-list {
                height: 100%;
            }
            
            & .slick-track {
                display: flex !important;
            }
        }

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

            & .slick-list {
                height: 100%;
            }
            
            & .slick-track {
                display: flex !important;
                align-items: stretch;
            }
        }

        & .primary_slide {
            width: 100%;
            position: relative;
            margin: 0 !important;

            @media (min-width: 992px) {
                height: inherit !important;
                padding: 200px 0 !important;
            }

            @media (max-width: 991px) {
                height: auto;
                padding-top: 50px !important;
                padding-bottom: 50px !important;
            }

/*             &:before {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #000;
                content: "";
                z-index: 1;
                background: linear-gradient(to right, #000000 0%, #333333 50%, #ffffff 100%);
                opacity: 0.81;
                mix-blend-mode: multiply;
            } */

            & .container {
                position: relative;
                width: 100%;
                display: flex;
                flex-direction: row;
                z-index: 2;
                flex-wrap: wrap;
                padding-top: 0 !important;
                padding-bottom: 0 !important;

                @media (min-width: 992px) {
                    height: 100%;
                }
                
                &.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;
                    justify-content: center;

                    @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;
                        }
                    }

                    & .preheader {
                        font-size: 14px;
                        font-weight: 500;
                        color: #00BBFF;
                        text-transform: uppercase;
                        margin: 0;
                    }

                    & .text_area {
                        margin: 30px 0 0;

                        & h1, & h2, & h3, & h4 {
                            font-size: 50px;
                            font-weight: 600;
                            color: #FFFFFF;
                            margin: 0 0 30px;

                            @media (max-width: 991px) {
                                font-size: 30px;
                                line-height: 1.2;
                            }
                        }

                        & p {
                            font-size: 18px;
                            font-weight: 300;
                            margin: 0;
                            color: #FFFFFF;
            
                            @media (max-width: 991px) {
                                font-size: 16px;
                            }
                        }
                    }

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

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

                        & a {
                            margin-bottom: 0;

                            @media (max-width: 991px) {
                                width: auto !important;
                                max-width: 100%;
                                padding: 14px;
                            }
                        }
                    }
                }
            }
        }
	
        & 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: 50px;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;

            & >li {
                margin: 0 8px;
                
                &.slick-active {
                    & button {
                        background: #FFFFFF !important;
                    }
                }

                & button {
                    border: 1px solid #FFFFFF !important;
                    background: none !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;
            }
        }
    }

    & .australian_made_logo {
        width: 110px;
        height: auto;
        position: absolute;
        bottom: 50px;
        right: 50px;
    }
}