/* huge */
/* 1920px / 16px = 120em */
@media (max-width: 120em) {

    .column.h-one {
        width: 6.25%;
    }

    .column.h-two {
        width: 12.5%;
    }

    .column.h-three {
        width: 18.75%;
    }

    .column.h-four {
        width: 25%;
    }

    .column.h-five {
        width: 31.25%;
    }

    .column.h-six {
        width: 37.5%;
    }

    .column.h-seven {
        width: 43.75%;
    }

    .column.h-eight {
        width: 50%;
    }

    .column.h-nine {
        width: 56.25%;
    }

    .column.h-ten {
        width: 62.5%;
    }

    .column.h-eleven {
        width: 68.75%;
    }

    .column.h-twelve {
        width: 75%;
    }

    .column.h-thirteen {
        width: 81.25%;
    }

    .column.h-fourteen {
        width: 87.5%;
    }

    .column.h-fifteen {
        width: 93.75%;
    }

    .column.h-sixteen {
        width: 100%;
    }


    .column.h-third {
        width: 33.333%;
    }

    .column.h-fifth {
        width: 20%;
    }

    .column.h-sixth {
        width: 16.666%;
    }

    .column.h-seventh {
        width: 14.285%;
    }

    .column.h-ninth {
        width: 11.111%;
    }


    /* 20*16 = 320px */
    .column.h-e20 {
        width: 20rem;
    }

    /* 40*16 = 640px */
    .column.h-e40 {
      width: 40rem;
    }

    /* 60*16 = 960px */
    .column.h-e60 {
        width: 60rem;
    }

    /* 80*16 = 1280px */
    .column.h-e80 {
      width: 80rem;
    }

    /* 100*16 = 1600px */
    .column.h-e100 {
      width: 100rem;
    }

    /* 120*16 = 1920px */
    .column.h-e120 {
      width: 120rem;
    }


    .column.h-offset-zero {
        margin-left: 0;
    }

    .column.h-offset-one {
        margin-left: 6.25%;
    }

    .column.h-offset-two {
        margin-left: 12.5%;
    }

    .column.h-offset-three {
        margin-left: 18.75%;
    }

    .column.h-offset-four {
        margin-left: 25%;
    }

    .column.h-offset-five {
        margin-left: 31.25%;
    }

    .column.h-offset-six {
        margin-left: 37.5%;
    }

    .column.h-offset-seven {
        margin-left: 43.75%;
    }

    .column.h-offset-eight {
        margin-left: 50%;
    }

    .column.h-offset-nine {
        margin-left: 56.25%;
    }

    .column.h-offset-ten {
        margin-left: 62.5%;
    }

    .column.h-offset-eleven {
        margin-left: 68.75%;
    }

    .column.h-offset-twelve {
        margin-left: 75%;
    }

    .column.h-offset-thirteen {
        margin-left: 81.25%;
    }

    .column.h-offset-fourteen {
        margin-left: 87.5%;
    }

    .column.h-offset-fifteen {
        margin-left: 93.75%;
    }

    .column.h-offset-sixteen {
        margin-left: 100%;
    }


    .column.h-push-zero {
       left: 0;
    }

    .column.h-push-one {
       left: 6.25%;
    }

    .column.h-push-two {
       left: 12.5%;
    }

    .column.h-push-three {
       left: 18.75%;
    }

    .column.h-push-four {
       left: 25%;
    }

    .column.h-push-five {
       left: 31.25%;
    }

    .column.h-push-six {
       left: 37.5%;
    }

    .column.h-push-seven {
       left: 43.75%;
    }

    .column.h-push-eight {
       left: 50%;
    }

    .column.h-push-nine {
       left: 56.25%;
    }

    .column.h-push-ten {
       left: 62.5%;
    }

    .column.h-push-eleven {
       left: 68.75%;
    }

    .column.h-push-twelve {
       left: 75%;
    }

    .column.h-push-thirteen {
       left: 81.25%;
    }

    .column.h-push-fourteen {
       left: 87.5%;
    }

    .column.h-push-fifteen {
       left: 93.75%;
    }

    .column.h-push-sixteen {
       left: 100%;
    }


    .column.h-pull-zero {
       right: 0;
    }

    .column.h-pull-one {
       right: 6.25%;
    }

    .column.h-pull-two {
       right: 12.5%;
    }

    .column.h-pull-three {
       right: 18.75%;
    }

    .column.h-pull-four {
       right: 25%;
    }

    .column.h-pull-five {
       right: 31.25%;
    }

    .column.h-pull-six {
       right: 37.5%;
    }

    .column.h-pull-seven {
       right: 43.75%;
    }

    .column.h-pull-eight {
       right: 50%;
    }

    .column.h-pull-nine {
       right: 56.25%;
    }

    .column.h-pull-ten {
       right: 62.5%;
    }

    .column.h-pull-eleven {
       right: 68.75%;
    }

    .column.h-pull-twelve {
       right: 75%;
    }

    .column.h-pull-thirteen {
       right: 81.25%;
    }

    .column.h-pull-fourteen {
       right: 87.5%;
    }

    .column.h-pull-fifteen {
       right: 93.75%;
    }

    .column.h-pull-sixteen {
       right: 100%;
    }
    


    .h-block {
        display: block;
    }

    .h-inline-block {
        display: inline-block;
    }

    .h-inline {
        display: inline;
    }

    ul.h-inline, ol.h-inline, dl.h-inline {
        display: block;
    }


    /*Utilities for common CSS-based behavior*/
    .h-hidden {
        display: none;
    }
}