.red_light_st_section {
    & .container {
        position: relative;
        z-index: 2;

        & p.preheader {
            color: #42251A;
            text-align: center;
            font-family: "DM Sans";
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
        }

        & h2 {
            color: #42251A;
            text-align: center;
            font-family: "Aboreto";
            font-size: 50px;
            font-style: normal;
            font-weight: 400;
            margin: 2rem 0 5rem;
        }

        & .section_inner {
            width: 100%;
            
            & .products_outer {
                width: 100%;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 2rem;

                & .product {
                    flex: 1;
                    min-width: calc(25% - 1.5rem);
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    @media (max-width: 991px) {
                        min-width: calc(50% - 1rem);
                    }

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

                    & p.step_header {
                        font-family: "Aboreto";
                        font-weight: 400;
                        font-size: 3rem;
                        color: var(--primary);
                        margin: 3rem 0 0;
                        line-height: 1;
                    }

                    & img {
                        width: auto;
                        height: 25rem;
                    }

                    & h3 {
                        color: #44251B;
                        text-align: center;
                        font-family: "DM Sans", arial;
                        font-size: 1.8rem;
                        font-style: normal;
                        font-weight: 700;
                        line-height: normal;
                        margin: 3rem 0 2rem
                    }

                    & .description {
                        & p {
                            font-family: "DM Sans", arial;
                            font-size: 1.6rem;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 1.5;
                            text-align: center;

                            &:not(:last-of-type) {
                                margin: 0 0 1rem;
                            }
                        }
                    }
                }
            }
    
            & .call_to_action_buttons {
                width: 100%;
                margin: 3rem 0 0;
                justify-content: center;
            }
        }
    }
}