.html_header_transparency #top .avia-builder-el-0 .container {
    padding-top: 0;
}

.custom-grid .flex_column {
    width: 100% !important;
}

@media (min-width: 990px) {
    #landing_top .content {
        padding-block: 100px;
    }
}

.inner-table th {
    background: var(--alt-color);
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 15px;
}

.inner-table td {
    font-size: 15px;
    color: #333;
    padding: 20px;
    background-color: #fff;
}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tbody td {
        padding-top: 60px !important;
    }
    
    tr { border: 1px solid #ccc; }
    
    td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
    }
    
    td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 0;
        left: 0;
        width: calc(100% - 60px); 
        padding: 8px 30px; 
        white-space: nowrap;
    background: var(--alt-color);color: #fff;font-weight: bold;text-transform: uppercase;letter-spacing: 1px;font-size: 18px;}
    
    /*
    Label the data
    */
    td:nth-of-type(1):before { content: "Essentials"; }
    td:nth-of-type(2):before { content: "Exceptional"; }
    td:nth-of-type(3):before { content: "Expert"; }

}

.inner-table td {position: relative !important;}

@media(min-width:768px){
    .custom-grid .flex_column_table {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-grid {
        margin-top: 0 !important;
    }
}