.columns_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%;
            display: flex;
            flex-direction: row;
            padding: 0 10rem;
            gap: 5rem;

            @media (max-width: 991px) {
                flex-direction: column;
            }
            
            & .column {
                display: flex;
                flex-direction: column;
                align-items: center;

                @media (max-width: 991px) {
                    width: 100%;
                }
    
                & .image_outer {
                    width: 23rem;
                    height: 23rem;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
    
                    & img {
                        width: 12rem;
                        height: auto;
                    }
                }

                & h4 {
                    width: 100%;
                    font-weight: 400;
                    text-align: center;
                    margin: 3rem 0 0;
                }

                & p {
                    text-align: center;
                    margin: 3rem 0 0;
                }
            }
        }
    }
}