.mobile-redline {
    display: flex;
    flex-direction: column;
    background: #000;
    padding-top: 1em;
    background-image: url("https://storage.googleapis.com/jjk_webstore_v2/redline_background_alpha.jpg");
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-redline h1 {
    color: #f5f5f5;
    font-family: var(--header-font);
    font-weight: 100;
    padding-left: .5em;
}

.mobile-redline h1 mark {
    color: #EF3834;
    background: none;
    font-weight: 200;
}

.redline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: 
        "col-1-red col-2-red"
        "col-3-red col-4-red"
    ;
    height: 90vh;
    width: 100%;
    
}

.col-1-red {
    grid-area: col-1-red;
    
}

.col-1-red p {
    color: #d9d9d9;
    font-family: var(--body-font);
    padding-left: 1em;
    font-size: .875em;
    width: 38vw;
}

.col-2-red {
    grid-area: col-2-red;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-2-red img {
    height: 45vh;
    width: 50vw;
    object-fit: cover;

    position: absolute;
    top: 0%;
    right: 5%;
}

.col-3-red {
    grid-area: col-3-red;
    position: relative;
}

.col-3-red img {
    height: 48vh;
    width: 50vw;
    margin-left: 1em;
    object-fit: cover;
    
}

.col-4-red {
    grid-area: col-4-red;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.col-4-red a {
    position: absolute;
    position: absolute;
    top: 25%;
    right: 20%;
    background: none;
    border-radius: 50%;
}

@media only screen and (min-width: 1200px) { 

    .mobile-redline {
        display: none;
    }
}