.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}
.cell1 {
    background-color: rgb(220, 220, 220);
    height: 30px;
}

.cell2 {
    background-color: rgb(220, 220, 220);
    height: 200px;
}

.cell3 {
    background-color: rgb(220, 220, 220);
    height: 50px;
}

.cell4 {
    background-color: rgb(220, 220, 220);
    height: 100px;
}

.cell5 {
    background-color: rgb(220, 220, 220);
    height: 700px;
}

.cell6 {
     background-color: rgb(220, 220, 220);
    height: 400px;
}

.cell7 {
     background-color: rgb(220, 220, 220);
    height: 260px;
}

/* default - small devices */

[class*="col"] {
    grid-column-end: span 12;
}

/* below 600px typically tablet*/

@media only screen and (max-width: 600px) {
    .sm1 {
        grid-column-end: span 12;
    }
    .sm2 {
        grid-column-end: span 6;
    }
    .sm3 {
        grid-column-end: span 4;
    }
    .sm4 {
        grid-column-end: span 3;
    }
    .sm6 {
        grid-column-end: span 2;
    }
    .sm12 {
        grid-column-end: span 1;
    }
}

/* above 601px typically tablet*/

@media only screen and (min-width: 601px) {
    .md1 {
        grid-column-end: span 12;
    }
    .md2 {
        grid-column-end: span 6;
    }
    .md3 {
        grid-column-end: span 4;
    }
    .md4 {
        grid-column-end: span 3;
    }
    .md6 {
        grid-column-end: span 2;
    }
    .md12 {
        grid-column-end: span 1;
    }
}

/* above 1025px typically desktop*/

@media only screen and (min-width: 1025px) {
    .col1 {
        grid-column: 11/ span 2;
    }
    .col2 {
        grid-column-end: span 6;
    }
    
    .col2onespan6 {
        grid-column: 1/ span 6;
    }
    
    .col3 {
        grid-column-end: span 4;
    }
    .colstart3 {
        grid-column: 5/ span 4;
        
    }
    
    .colstart7 {
        grid-column: 7/ span 3;
    }
    
    .colstart9 {
        grid-column: 10/ span 3;
    }

    .col4 {
        grid-column-end: span 3;
    }
    .col6 {
        grid-column-end: span 2;
    }
    
    .colstart6 {
        grid-column: 1/ span 2;
    }
    .col12 {
        grid-column-end: span 1;
    }
    
    .coltwo12 {
        grid-column-end: 2/ span 1;
    }
    
    .colthree12 {
        grid-column-end: 3/ span 1;
    }
    
    .colfour12 {
        grid-column: 4/ span 1;
    }
    
    .col7span4 {
        grid-column: 7/ span 4;
    }



#wrapper {
    
}
.logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
        max-width: 100%;


}

.top {
    
    top: 0;
    text-align: center;
    align-content: center;
    grid-column-end: span 12;

}
/*
.middle {
    align-items:center;
    grid-column-end: span 1/12;
} */


#nav-trigger {
    display: none;
}
.nav-trigger {
    position: absolute;
}
label[for="nav-trigger"] {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 200;
    cursor: auto;
}
.nav-trigger + label,
.navigation {
    transition: right 0.4s;
}
.nav-trigger:checked + label {
    right: 215px;
}
.nav-trigger:checked ~ .navigation {
    right: 0;
}
nav ul {
    list-style-type: none;
    padding: 0;
    /*    new*/
    margin: 0;
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -200px;
    bottom: 0;
    z-index: 200;
    text-align: left;
    background: #ccc;
}
nav li {
    /*    width: 150px;*/
    margin: 10px 0;
    /*    text-align: center;*/
}
a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 10px 20px;
    color: #000;
    background: #ddd;
    transition: all 0.7s;
}
a:hover {
    color: #fff;
    background: #333;
}

ul.nobullet {
     list-style-type: none;
    padding: 0;
    margin: 10px;
}


.images {
max-width: 100%;
    /* height: 450px;
    width: 450px;*/
}

.issue {
max-width: 100%;}