.columns_section {
    width: 100%;
    position: relative;
    
    & .container {
        position: relative;
        z-index: 2;

        & .main_content {
            width: 100%;
            margin-bottom: 50px;
    
            & h3 {
                color: #FFFFFF;
                margin: 0 0 30px;
            }
    
            & p {
                color: #FFFFFF;
                margin: 0;
            }
        }

        & .section_inner {
            width: 100%;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 50px;
            
            & .column {
                width: calc(25% - 37.5px);
                display: flex;
                flex-direction: column;
                align-items: center;

                @media (max-width: 991px) {
                    width: calc(50% - 25px);
                }

                @media (max-width: 767px) {
                    width: 100%;
                }
    
                & img {
                    width: 112px;
                    max-width: 100%;
                    height: auto;
                }

                & h3 {
                    text-align: center;
                    font-size: 20px;
                    font-weight: 500;
                    margin: 30px 0 0;
                }

                & p {
                    text-align: center;
                    font-size: 16px;
                    font-weight: 300;
                    margin: 30px 0 0;
                }
            }
        }
    }
}