footer,
footer a {
    font-family: 'AvenirLTStd-Light';
    color: white;
}

.block-table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 2rem 0;
}


.block-table tr:nth-of-type(odd) {
    background: #eee;
}



.block-table th {
    padding: 1rem;
    font-family: 'AvenirLTStd-Black';
}

.block-table tr {
     border: 1px solid rgb(196, 196, 196); 


}

.block-table td {
    font-family: 'AvenirLTStd-Light';
    vertical-align: top;
    padding: 1rem;
 }


@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    .block-table table,
    .block-table thead,
    .block-table tbody,
    .block-table th,
    .block-table td,
    .block-table tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .block-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .block-table tr {
        border: 1px solid #ccc;
    }

    .block-table td {
        /* Behave  like a "row" */
        border: none;

        position: relative;
        padding: 0.5rem;
        padding-left: 50%;

    }

    .block-table td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding: 0.5rem;
        white-space: wrap;
        font-weight: bold;
    }

    /*
	Label the data
	*/
    .block-table td:nth-of-type(1):before {
        content: "Pwrpas / Gweithgaredd";
    }

    .block-table td:nth-of-type(2):before {
        content: "Math o ddata";
    }

    .block-table td:nth-of-type(3):before {
        content: "Sail gyfreithlon ar gyfer prosesu gan gynnwys sail buddiant dilys";
    }

}