/* =============================================================================
   ABOUT - FRAMEWORK
   ========================================================================== */
.framework_rise_table{
    width: 100%; 
    table-layout: fixed; 
    border-collapse: separate; 
    border-spacing: 10px;
}
    .framework_rise_table .table_row { display: table-row; }
    .framework_rise_table .cell{
        width: 25%;
    }


/* =============================================================================
   ----------/////////  MEDIA QUERRIES  /////////------------
   ========================================================================== */
@media screen and (max-width: 1600px) {}
@media screen and (max-width: 1400px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 979px) {
    .framework_rise_table { display: block; }
    .framework_rise_table .table_row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .framework_rise_table .cell {
        display: block;
        width: auto;   /* let the grid control width */
    }
}
@media screen and (max-width: 859px) {}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 640px) {
    .framework_rise_table .table_row {
        grid-template-columns: 1fr;
    }
}
}
@media screen and (max-width: 479px) {}
@media screen and (max-width: 413px) {}
@media screen and (max-width: 330px) {}