
.split-horizontal {
    display: grid;
    grid-template-columns: 50% 50%;
}


.row {
    display: grid;
    grid-template-columns: repeat(12, 8.33%);
}

.col-1 {
    grid-column: span 1;
}

.col-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

.col-6 {
    grid-column: span 6;
}

.col-7 {
    grid-column: span 7;
}

.col-8 {
    grid-column: span 8;
}

.col-9 {
    grid-column: span 9;
}

.col-10 {
    grid-column: span 10;
}

.col-11 {
    grid-column: span 11;
}

.col-12 {
    grid-column: span 12;
}

.responsive-grid-4 {
    display: grid;
    grid-template-columns: 21% 21% 21% 21%;
    grid-column-gap: 5%;
    grid-row-gap: 2rem;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .responsive-grid-4 {
        grid-template-columns: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .responsive-grid-4 {
        grid-template-columns: 90%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .responsive-grid-4 {
        grid-template-columns: 47% 47%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .responsive-grid-4 {
        grid-template-columns: 30% 30% 30%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .responsive-grid-4 {
        grid-template-columns: 21% 21% 21% 21%;
    }
}
