/**   PROJECT   */

.category-container {
    margin-bottom: 1rem;
}

.category {
    color: var(--clr-dark-grey);
    font-weight: 400;
    font-size: 1.15rem;
    padding: 0 0 0 0;
}

.header {
    font-weight: 600;
    font-size: 3.5rem;
    font-style: normal;
    line-height: 1;
    padding-top: 0;
    max-width: 25ch;
}

.summary{
    margin-top:0;
    font-size:1.5rem;
    font-weight:400;
    line-height:1.4;
    max-width: 55ch;
}

.description{
    margin-top:0;
    font-size:25px;
    font-weight:400;
    line-height:1.4;
}

.desc-arrow{
    margin-top:0;
    font-size:25px;
    font-weight:500;
    line-height:1.4;
    color: var(--clr-red);
}

.credits{
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing:.4px;
}

.header-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 30px repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-areas:"one two three";
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    padding: 0;
}

.project-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-row {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 3rem;
        grid-row-gap: 3rem;
        grid-template-areas:"one two";
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        padding: 0;    
}



.desc-grid{
    display:-ms-grid;
    display:grid;
    grid-template-columns: 30px repeat(11, 1fr);
    grid-column-gap:40px;
    grid-row-gap:40px;
    grid-template-areas:"one two two two two two two five three three four four";
    -ms-grid-rows:auto;
    grid-template-rows:auto;
    padding: 40px 0 0 0;
}

.one {
    grid-area: one;
}

.two {
    grid-area: two;
}

.three {
    grid-area: three;
}

.four {
    grid-area: four;
}

.five {
    grid-area: five;
}

.desc-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
}

.cred-desk {
    display: block;
}

.cred-mob {
    display: none;
}


.project-node{
    display:block
}

.project-node img{
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}



/**   More Projects   */

#MoreProjects{
    margin-top:10rem;
}

.more-projects {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-justify-content:space-between;
    gap: 1rem;
    margin-bottom: 10rem;
}

.more-header {
    font-weight: 400;
    font-size: 20px;    
}

.more-arrow {
    color: var(--clr-red);
}

.project-title {
    padding-top: 10px;
    font-weight: 500;
    font-size: 1.5rem;
}

.more-title {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-justify-content:space-between;
    border-top: 1px solid  var(--clr-dark-grey);
    padding: .75rem 0 1.5rem 0;
}

.more-image{
    display:block
}

.more-image img{
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}




/**   BREAK POINTS   */

@media screen and (max-width:1250px){

    #MoreProjects{
        margin-top: 7.5rem;
    }

    .more-projects {
        margin-bottom: 7.5rem;
    }

    .desc-grid{
        display:-ms-grid;
        display:grid;
        grid-template-columns: 30px repeat(9, 1fr);
        grid-column-gap:40px;
        grid-row-gap: 0px;
        grid-template-areas:"one two two two two two five three three three";
        -ms-grid-rows:auto;
        grid-template-rows:auto;
        padding: 40px 0 0 0;
    }    

    .cred-desk {
        display: none;
    }
    
    .cred-mob {
        display: block;
    }  
    
}

@media screen and (max-width:1100px){

    .header {
        font-weight: 600;
        font-style: normal;
        line-height: 1;
        padding-top: 0;
        font-size: 3rem;
    }

    .summary{
        margin-top:0;
        font-size: 1.375rem;
        font-weight:400;
        line-height:1.4;
    }
    
    .description{
        margin-top:0;
        font-size:22px;
        font-weight:400;
        line-height:1.4;
    }
    
    .more-title {
        padding-top: 10px;
        font-weight: 500;
        font-size: 22px;
    }

    .project-title {
        padding-top: 10px;
        font-weight: 500;
        font-size: 1.25rem;
    }    
}

@media screen and (max-width:991px){
    
    .header {
        font-weight: 600;
        font-style: normal;
        line-height: 1;
        padding-top: 0;
        font-size: 3rem;
    }

    .header-grid{
        display: -ms-grid;
        display: grid;
        grid-template-columns: 30px repeat(2, 1fr);
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        grid-template-areas:"one two two"
                            "one three three";
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        padding: 0;
    }
    
    .summary{
        max-width: 50ch;
    }

    .description{
        margin-top:0;
        font-size:22px;
        font-weight:400;
        line-height:1.4;
    }

    .project-column {
        gap: 2rem;
    }
    
    .project-row {
            grid-column-gap: 2rem;  
    }
    
    #MoreProjects{
        margin-top:150px
    }   

    .more-title {
        padding-top: 10px;
        font-weight: 500;
        font-size: 20px;
    }     
}  


@media screen and (max-width:780px){

    .category {
        font-size: 1rem;
    }
    
    .header {
        font-weight: 600;
        font-style: normal;
        line-height: 1;
        padding-top: 0;
        font-size: 2.5rem;
    }

    .summary{
        font-size:1.25rem;
    }

    .project-row {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 1.5rem;
        grid-row-gap: 3rem;
        grid-template-areas:"one"
                            "two";
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        padding: 0; 
    }

    .description{
        margin-top:0;
        font-size:22px;
        font-weight:400;
        line-height:1.4;
    }
    
    .header-grid{
        display: -ms-grid;
        display: grid;
        grid-template-columns: 20px repeat(2, 1fr);
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        grid-template-areas:"one two two"
                            "one three three";
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        padding: 0;
    }

    .desc-grid{
        display:-ms-grid;
        display:grid;
        grid-template-columns: 15px repeat(5, 1fr);
        grid-column-gap:40px;
        grid-row-gap: 50px;
        grid-template-areas:"one two two two two ."
                            "five three three four four .";
        -ms-grid-rows:auto;
        grid-template-rows:auto;
        padding: 40px 0 0 0;
    }

    .cred-desk {
        display: block;
    }
    
    .cred-mob {
        display: none;
    }

    #MoreProjects{
        margin-top: 5rem;
    }

    .more-projects {
        flex-direction: column;
        margin-bottom: 5rem;
    }

}



@media screen and (max-width:600px){

    .description{
        margin-top:0;
        font-size:20px;
        font-weight:400;
        line-height:1.4;
    }

    .header {
        word-wrap: break-word;
    }

    .desc-grid{
        display:-ms-grid;
        display:grid;
        grid-template-columns: 0px repeat(5, 1fr);
        grid-column-gap:40px;
        grid-row-gap: 50px;
        grid-template-areas:"one two two two two two"
                            "five three three three three four";
        -ms-grid-rows:auto;
        grid-template-rows:auto;
        padding: 40px 0 0 0;
    }


}

@media screen and (max-width: 500px){

    .category {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .summary {
        font-size: 1.125rem;
    }

    .description {
        font-size: 1.125rem;
    }

    .credits{
        font-size: 1rem;
    }

    .cred-desk {
        display: none;
    }
    
    .cred-mob {
        display: block;
    }

    .header-grid{
        display: -ms-grid;
        display: grid;
        grid-template-columns: 10px repeat(2, 1fr);
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        grid-template-areas:"one two two"
                            "one three three";
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        padding: 0;
    }

    .desc-grid{
        display:-ms-grid;
        display:grid;
        grid-template-columns: 0px repeat(5, 1fr);
        grid-column-gap:40px;
        grid-row-gap: 40px;
        grid-template-areas:"one two two two two two"
                            "five three three three three four";
        -ms-grid-rows:auto;
        grid-template-rows:auto;
        padding: 40px 0 0 0;
    }
}

@media screen and (max-width:400px){

    .header {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }
}






























