.carousel_section {
    & .container {
        position: relative;
        z-index: 2;

        & .main_content {
            width: 100%;
            margin-bottom: 5rem;
    
            & h3 {
                color: var(--white);
                margin: 0 0 3rem;
            }
    
            & p {
                color: var(--white);
                margin: 0;
            }
        }

        & .section_inner {
            width: 100%;
            
            & .slide {
                display: flex;
                flex-direction: column;
    
                & .image_outer {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    & img {
                        width: auto;

                        @media (min-width: 992px) {
                            height: 100%;
                        }

                        @media (max-width: 991px) {
                            height: 20rem;
                        }
                    }
                }
    
                & .text {
                    & p {
                        color: var(--white);
                        margin: 0;
                    }
                }
    
                & .call_to_action_buttons {
                    margin: 3rem 0 0;
                }
            }
        }
    }
}