/* fonts - Gin, Gibson, Proxima Nova*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --titleColor: #9E0000;
    --secondaryColor: #999999;
    --backgroundColor: #ffffff;
    --fontColor: #000000;
    --boxShadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}

/* =================================== */
/* ============= GENERAL ============= */
/* =================================== */

a {
    text-decoration: none;
    color: #fff;
}

button {
    border: none;
    background-color: var(--titleColor);
    color: #fff;
    font-family: gin;
    padding: 5px 10px;
    box-shadow: var(--boxShadow);
}

button:hover {
    filter: brightness(0.9);
}

button:active {
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.5);
}

#project-footer a:hover {
    color: #e5e5e5;
}

#full-page {
    overflow-x: hidden;
    overflow-y: hidden;
}

/* =================================== */
/* ============= NAVBAR ============== */
/* =================================== */

#navbar {
    position: fixed;
    width: 100vw;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: rgb(255, 255, 255);
}

/* left side navbar */
.nav-logo {
    display: flex;
}

.nav-logo-img {
    width: 50px;
}

.nav-name {
    font-family: Gin, sans-serif;
    font-size: 20px;
    font-weight: normal;
}

.nav-subname {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 200;
    font-size: 15px;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* right side navbar */
.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.nav-links a {
    height:65px;
}

.nav-icons {
    display: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.link-hover:hover {
    filter: brightness(90%);
}

.resume-link {
    box-shadow: none;
}

.resume-link a {
    font-size: 20px;
    height:65px;
}
/* =================================== */
/* =========== FRONT PAGE ============ */
/* =================================== */

#front-page {
    width: 100%;
    height: 55vh;
    background-color: var(--backgroundColor);
    position: absolute;
    z-index: 120;
    display: none;
    justify-content: center;
    align-items: center;
}

.front-page-title {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.front-page-title img {
    width: 300px;
}

.front-page-name :nth-child(1) {
    font-size: 110px;
    font-family: Gin, serif;
    font-weight: 400;
    line-height: 1;
}

/* FEATURED section */
#featured {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--backgroundColor);
}

.featured-links {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0 5px;
}

.featured-links img {
    width: 100%;
    /* animation-name: scale-down;
    animation-duration: 1s; */
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.featured-links img:hover {
    transform: scale(1.2);
}

.hover-box:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hover-box {
    overflow:hidden;
}

/* ABOUT ME SECTION */

#about-me {
    position: relative;
    margin-top: 50px;
}

.design-and-conquer {
    margin-top: 50px;
}

.design-and-conquer img{
    width: 100%;
}

.howdy-yall {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
    color: var(--titleColor);
    font-size: 20px;
}

.howdy-yall h1 {
    font-family: gin, sans-serif;
    font-weight: normal;
}

.about-me-container {
    position: relative;
    margin: 20px 40px;
}

.about-me-text {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 200;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;

}

.jack-of-all-trades {
    font-family: gin, sans-serif;
    color: var(--titleColor);
    font-size: 16px;
    text-align: center;
    padding: 30px 0px;
}

/* PORTFOLIO SECTION */
.portfolio-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 5px;
}
.portfolio-links {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0 5px;
}
.portfolio-grid img {
    display: block;
    width: 100%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.portfolio-grid img:hover {
    animation-name: scale-up;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: scale(1.2);
}

.review-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.email-link {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 50px;
    z-index: 15;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-top: 50px;
}

/* FAREWELL */
#page-end {
    margin: 20px 0px 75px 0px;
    position: relative;
}

.thanks img{
    width: 100%;
}

.lets-work-together {
    font-family: Gin, sans-serif;
    font-size: 16px;
    color: var(--titleColor);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -30px;
}

/* NAV ICON LINKS FOR MOBILE */
.nav-icons-mobile {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
} 
.nav-icons-mobile img {
    width: 50px;
}

/* FOOTER */
#footer {
    display: flex;
    justify-content: center;
    align-self: flex-end;
    bottom: 0;
    width: 100%;
    background-color: var(--titleColor);
    padding: 10px;
}

.footer-img {
    width: 35px;
}

/* =================================== */
/* =========== RESUME PAGE =========== */
/* =================================== */

#front-page-resume {
    width: 100%;
    height: 55vh;
    background-color: var(--backgroundColor);
    position: absolute;
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
}

.resume {
    display: flex;
    flex-direction: column;
    margin: 100px auto 50px auto;
    width: 60%;
}

.resume h5 {
    font-size: 18px;
}

.resume-heading {
    font-family: gin, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--titleColor);
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 3em;
    line-height: 1;
}

.work-experience-box {
    font-family: canada-type-gibson, sans-serif;
    letter-spacing: 1.2px;
    width: 100%;
}

.work-experience-box p {
    font-size: 16px;
}

.resume-right-side {
    font-family: canada-type-gibson, sans-serif;
    font-size: 20px;
    letter-spacing: 1.2px;
}

.resume-right-side, .resume-left-side {
    width: 90%;
    text-align: left;
}

.skillsets {
    line-height: 1.2;
    font-size: 18px;
}

.bold-text {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 28px;
}

.red-text {
    color: var(--titleColor);
    font-size: 20px;
}

.request {
    font-size: 0.6em;
}

.with-passion-comes-power img {
    width: 100%
}

.page-end-resume {
    position: relative;
    margin-bottom: 100px;
}

.lets-work-together-resume {
    font-family: gin, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: var(--titleColor);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: -25px 50px 0px 50px;
}



/* =================================== */
/* ======== MOTORSPORTS GAMES ======== */
/* =================================== */

.motorsport-games-title {
    margin-top: 100px;
    position: relative;
}

.motorsport-games-title img {
    width: 100%;
}

.motorsport-games-title-imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -17px;
}

.motorsport-games-desktop {
    display: none;
}

.motosport-games-mobile {
    display: block;
}

.motorsport-games-title-imgs img {
    width: 100%;
    padding: 0px 20px;
}

.motorsport-portfolio-images {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.motorsport-portfolio-images img {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
}

.img-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.img-flex img {
    width: 48%;
    object-fit: contain;
}

/* =================================== */
/* ======== MOSHPIT MAGAZINE ========= */
/* =================================== */
.moshpit-title img {
    display: absolute;
    z-index: 0;
    margin-top: 100px;
    width: 100%;
}

.moshpit-collection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: -20px;
}

.moshpit-collection img {
    width: 90%;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

/* =================================== */
/* =========== LOGOFOLIO ============= */
/* =================================== */
.recent-logos-title img {
    display: absolute;
    z-index: 0;
    margin-top: 100px;
    width: 100%;
}

.logo-img-collection {
    margin-top: -30px;
}

.logo-img-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.logo-bg {
    width: 90%;
}

.logo-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    z-index: 1;
}

.looking-for-a-logo {
    position: relative;
    margin-bottom: 100px;
    margin-top: 50px
}

.looking-for-a-logo img {
    width: 100%;
}

.looking-for-a-logo a {
    color: var(--titleColor);
}

.looking-for-a-logo p {
    font-family: gin, sans-serif;
    font-weight: 400;
    font-size: 35px;
    font-style: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
}

.looking-for-a-logo a:hover {
    background-color: var(--titleColor);
    opacity: 70%;
    color: #FFF;
    border-radius: 6px;
    box-shadow: var(--boxShadow);
}

/* =================================== */
/* =========== GMB GORILLA =========== */
/* =================================== */

.gmbgorilla-title {
    position: relative;
    margin-top: 100px;
}

.gmbgorilla-title img {
    width:100%;
}

.gmb-gorilla-title-img-group {
    margin-top: -15px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: space-around;
}

.logo-container {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 5px;
   margin-top: 20px;
}
.logo-container img {
    width: 70%;
}
.logo-container p {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 8px;
    line-height: 1.2;
    text-align: center;
}

.right-leaf {
    justify-self: end;
}

.left-leaf, .right-leaf {
    width: 70px;
    align-self: flex-start;
}

.gmb-banner-desktop {
    /* height: 90vh; */
    display: none;
}

.gmb-banner-mobile{
    display: block;
    width: 150%;
    overflow: hidden;
}

.rank-higher {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.rank-higher-text {
    margin-top: -70px;
    padding: 10px;
    width: 340px;
    background-color: #FFF;
    border-radius: 4px;
}

.rank-higher-text h1 {
    font-family: Gibson, sans-serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 1px;
    line-height: 1;
}
.rank-higher-text p {
    margin-top: 10px;
    font-family:proxima-nova, sans-serif;
    line-height: 1.5;
    font-size: 18px;
}

.rank-higher-text span {
    color: #00ADF0;
}

.rank-higher-text img {
    height: 200px;
    margin: 50px 50px 0px 50px;
}

.gmb-logo-description {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 70px auto;
}

.gmb-logo-description p {
    font-family:proxima-nova, sans-serif;
    line-height: 1.5;
    font-size: 20px;
    width: 300px;
}

.gmb-logo-description img {
    width: 100%;
    padding: 0 20px;
}

.gmb-logo-description span {
    color: #00ADF0;
    font-weight: bold;
}

.gmb-design-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 50px;
    margin-bottom: 50px;
}

.gmb-design-details img {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.gmb-portfolio {
    height: 160vh;
    position: relative;
    background-image:url("./IMG/5_GMBGorilla/GMB_10.jpg");
    background-repeat: no-repeat;
    background-size:cover;
}

.gmb-portfolio-text {
    position: absolute;
    top: 10%;
    line-height: 1.5;
}

.gmb-portfolio-img-group img {
    width: 100%;
    padding: 0 20px;
    margin-top: 30px;
}

.gmb-portfolio h1, 
.banners-flyers h1,
.gmb-profile-posts h1 {
    font-family: gibson, sans-serif;
    font-size: 28px;
    text-align: center;
    margin: 20px 40px;
    z-index: 30;
}

.gmb-portfolio h2 {
    font-family: proxima-nova, sans-serif;
    font-size: 14px;
    margin: 0 10px;
    font-weight: 700;
    text-align: center;
}

.banners-flyers {
    height: auto;
    position: relative;
    text-align: center;
    margin-top: -100px;
}

.banners-flyers-text img {
    width: 100%;
    margin: 5px 0px;
    padding: 0 20px;
}

.gmb-profile-posts {
    position: relative;
    text-align: center;
}

.profile-posts-grid {
    margin: 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 2 POSTS ON EACH LINE */
/* .profile-posts-grid {
    margin: 50px 0px;
}
.profile-posts-grid img {
    margin: 1px;
    width: 150px;
}

.profile-posts-grid img:hover {
    transform: scale(1.2);
} */

.profile-posts-grid {
    margin-bottom: 50px;
}

.banner-right-leaf {
    position: absolute;
    right: 0;
    width: 70px;
    top: 0%;
}

.banner-left-leaf {
    position: absolute;
    left: 0;
    width: 70px;
    top: -7%;
}

/* =================================== */
/* =========== HERITAGE PA =========== */
/* =================================== */
.heritage-title {
    position: relative;
    margin-top: 100px;
}

.heritage-title img {
    width: 100%;
}

.heritage-title-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
}

.heritage-title-img img {
    width: 90%;
}

.heritage-pa-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.heritage-pa-group img {
    object-fit: contain;
    margin: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.embed-container-HPA-1 {
     position: relative; 
     padding-bottom: 56.25%; 
     height: 0; 
     overflow: hidden; 
     max-width: 100%; 
     margin-top: -30px;
} 
.embed-container-HPA-1 iframe, 
.embed-container-HPA-1 object, 
.embed-container-HPA-1 embed {
    position: absolute; 
    top: 0; 
    left: 50%; 
    width: 75%; 
    height: 75%; 
    transform: translate(-50%); 
}

/* =================================== */
/* ========= TESSY PLASTICS ========== */
/* =================================== */
.tessy-title {
    margin-top: 100px;
}

.tessy-title img {
    width: 100%;
}

.tessy-title-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
}

.tessy-title-img img {
    width: 90%;
}

.embed-container-tessy1 { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%;
    margin-top: -20px;
} 
.embed-container-tessy1 iframe, .embed-container-tessy1 object, .embed-container-tessy1 embed { 
    position: absolute; 
    top: 0%; 
    left: 50%; 
    width: 80%; 
    height: 80%; 
    transform: translate(-50%);
}

/* =================================== */
/* ======= COCOLOCO CHOCOLATE ======== */
/* =================================== */

.cocoloco-title {
    position: relative;
    margin-top: 100px;
}

.cocoloco-title img {
    width: 100%;
}

.cocoloco-title-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15px;
}

.cocoloco-title-img img {
    width: 90%;
}

/* =================================== */
/* ========= COFFEE AND CO =========== */
/* =================================== */

.coffee-title img {
    width: 100%;
}

.coffee-title {
    margin-top: 100px;
}

.coffee-title-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -17px;
}
.coffee-title-img img {
    width: 90%;
}

/* =================================== */
/* ======== REVIEW UNIVERSITY ======== */
/* =================================== */
.reviewu-title {
    margin-top: 100px;
}

.reviewu-title img {
    width: 100%;
}

.reviewu-title-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15px;
    margin-bottom: 100px;
}

.reviewu-title-img img {
    width: 100%;
}

.reviewu-logo {
    width: 100%;
    background-color: #FFF;
    padding: 15px;
    border-radius: 4px;
    margin-top: -100px;
}

.reviewu-img-group {
    text-align: center;
}

.reviewu-img-group img {
    width: 100%;
    margin: 10px 0px;
}

.reviewu-flex-img-desktop img{
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.reviewu-flex-img img{
    display: block;
}

/* =================================== */
/* ======= GENERAL DESCRIPTION ======= */
/* =================================== */

.standard-project-description {
    margin: 50px 0px 50px 0px;
    padding: 50px;
}

.standard-project-description h1 {
    font-family: gin, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    color: var(--titleColor);
    margin-bottom: 30px;
    line-height: 1;
    text-align: center;
}

.standard-project-description p {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 200;
    font-size: 1.2em;
    line-height: 1.2;
    text-align: left;
}

.project-img-group {
    text-align: center;
    margin: 0 10px 100px 10px;
}

.project-img-group img {
    width: 100%;
    margin-bottom: 50px;
}

#project-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        align-self: flex-end;
        bottom: 0;
        width: 100%;
        background-color: var(--titleColor);
        padding: 10px;
}

#project-footer a {
    color: #FFF;
    font-size: 1em;
    font-family: gin, sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.prev-arrow {
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    margin-top: 5px;
}

/* =============================== */
/* ======== MEDIA QUERIES ======== */
/* =============================== */

/* IPADS / TABLETS */
@media only screen and (min-width: 700px) {

    #navbar {
        padding: 20px;
    }

    .nav-icons {
        display: flex;
    }

    .nav-icons img {
        width: 65px;
        margin-left: 5px;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }

    .nav-name {
        font-size: 32px;
    }
    
    .nav-subname {
        font-family: Gibson, sans-serif;
        font-size: 24px;
    }

    .resume-link {
        font-size: 2em;
    }

    .resume-link a {
        font-size: 44px;
        padding: 4px;
    }

    .featured-links {
        margin-top: 150px;
        display: flex;
        justify-content: center;
        gap: 5px;
        padding: 0px 50px;
    }

    .howdy-yall {
        margin-top: -80px;
        font-size: 40px;
    }

    .about-me-container {
        position: relative;
        margin: 20px 80px;
    }

    .about-me-text {
        font-family: Gibson, sans-serif;
        font-size: 24px;
    }

    .jack-of-all-trades {
        font-size: 32px;
        text-align: center;
        padding: 30px 0px;
    }

    .portfolio-grid {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 0 5px;
        margin: 60px 0;
    }

    .portfolio-grid img {
        width: 220px;
    }

    .email-link {
        font-size: 36px;
        font-weight: normal;
        margin-bottom: 50px;
        z-index: 15;
    }

    .lets-work-together {
        font-size: 30px;
        margin-top: -55px;
    }

    .nav-icons-mobile {
        display: none;
    }

    /* MOTORSPORT GAMES */
    .motorsport-games-title-imgs {
        margin-top: -35px;
    }
    
    .motorsport-games-desktop {
        display: block;
    }
    
    .motosport-games-mobile {
        display: none;
    }

    .motorsport-portfolio-images img {
        width: 93%;
        padding: 0px 20px;
        margin-bottom: 30px;
    }

    .img-flex img {
        width: 46%;
    }

    /* MOSHPIT MAGAZINE */
    .moshpit-collection {
        margin-top: -40px;
    }
    
    .moshpit-collection img {
        width: 80%;
    }

    /* LOGOFOLIO */
    .logo-collection {
        margin-top: -35px;
    }

    .logo-collection img {
        padding: 0 20px;
    }

    .looking-for-a-logo p {
        font-size: 50px;
        margin-top: -50px;
    }

    /* GMB GORILLA */

    .gmb-gorilla-title-img-group {
        margin-top: 0px;
    }

    .logo-container {
        margin-top: 30px;
     }
     .logo-container p {
        margin-top: 20px;
        font-size: 18px;
     }
     .logo-container img {
        width: 100%;
     }
    
    .left-leaf, .right-leaf {
        width: 250px;
        align-items: flex-start;
    }

    .gmb-banner-mobile {
        display: block;
        width: 100vw;
    }

    .gmb-banner-desktop {
        display: none;
    }
    
    .rank-higher-text {
        margin-top: -120px;
        padding: 10px;
        width: 700px;
        background-color: #FFF;
        border-radius: 4px;
    }
    
    .rank-higher-text h1 {
        font-family: Gibson, sans-serif;
        font-weight: 700;
        font-size: 60px;
        letter-spacing: 1px;
        line-height: 1;
    }
    .rank-higher-text p {
        margin-top: 20px;
        font-family:proxima-nova, sans-serif;
        line-height: 1.5;
        font-size: 20px;
    }
    
    .rank-higher-text span {
        color: #00ADF0;
    }
    
    .rank-higher-text img {
        width: 60%;
        height: 20%;
        margin-top: 50px;
        padding-left: 50px;
    }
    
    .gmb-logo-description {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin: 100px auto;
    }
    
    .gmb-logo-description p {
        font-family:proxima-nova, sans-serif;
        line-height: 1.5;
        font-size: 36px;
        width: 700px;
    }
    
    .gmb-logo-description img {
        width: 100%;
        padding: 0 60px;
    }
    
    .gmb-logo-description span {
        color: #00ADF0;
        font-weight: bold;
    }
    
    .gmb-design-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .gmb-design-details img {
        width: 100%;
        padding: 0 60px;
    }
    .gmb-portfolio {
        height: 220vh;
        position: relative;
        margin-top: 20px;
        position: relative;
        background-image:url("./IMG/5_GMBGorilla/GMB_10.jpg");
        background-repeat: no-repeat;
        background-size:cover;
    }
    
    .gmb-portfolio-text {
        position: absolute;
        top: 15%;
        line-height: 1.5;
    }
    
    .gmb-portfolio-img-group img {
        width: 100%;
        padding: 0 40px;
        margin-top: 30px;
    }
    
    .gmb-portfolio h1 {
        font-family: gibson, sans-serif;
        font-size: 42px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: -100px;
        z-index: 30;
    } 

    .banners-flyers h1,
    .gmb-profile-posts h1 {
        font-family: gibson, sans-serif;
        font-size: 38px;
        text-align: center;
        margin: -30px 50px 20px 50px;
        z-index: 30;
    }
    .gmb-portfolio h2 {
        font-family: proxima-nova, sans-serif;
        font-size: 20px;
        margin: 0 10px;
        font-weight: 700;
        text-align: center;
    }
    
    .banners-flyers {
        height: auto;
        position: relative;
        text-align: center;
        margin-top: -80px;
    }

    .banners-flyers-text img {
        width: 100%;
        margin: 30px 0px;
        padding: 0 100px;
    }
    
    .gmb-profile-posts {
        position: relative;
        text-align: center;
        margin-top: 70px;
    }
    
    .profile-posts-grid {
        flex-flow: row wrap;
        justify-content: center;
        margin: 30px 0px;
    }
    .profile-posts-grid img {
        margin: 1px;
        width: 300px;
    }
    
    .profile-posts-grid img:hover {
        transform: scale(1.2);
    }
    
    .profile-posts-grid {
        margin-bottom: 50px;
    }
    
    .banner-right-leaf {
        position: absolute;
        right: 0;
        width: 100px;
        top: -2%;
    }
    
    .banner-left-leaf {
        position: absolute;
        left: 0;
        width: 100px;
        top: -2%;
    }

    /* HERITAGE PA */
    .heritage-title-img {
        margin-top: -40px;
    }

   .heritage-pa-group {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 70px;
    }
    .heritage-pa-group img {
        width: 30%;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin: 0;
    }

    .embed-container-HPA-1 {
        margin-top: -40px;
    }

    /* TESSY PLASTICS */
    .tessy-title-img {
        margin-top: -30px;
        padding: 0px 20px;
    }

    .embed-container-tessy1 {
        margin-top: -35px;
    }

    /* COCOLOCO */
    .cocoloco-title-img {
        margin-top: -25px;
        padding: 0px 20px;
    }

    /* COFFEE AND CO */
    .coffee-title-img {
        margin-top: -27px;
        padding: 0px 20px;
    }

    /* REVIEW UNIVERSITY */
    .reviewu-title-img {
        margin-top: -25px;
        margin-bottom: 120px;
    }
    
    .reviewu-logo {
        margin-top: -100px;
        margin-bottom: 20px;
    }
    
    .reviewu-img-group img {
        padding: 0 20px;
    }

    .reviewu-flex-img-desktop img{
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 50%;
    }

    .reviewu-flex-img img{
        display: none;
    }
    /* GENERAL STYLING */

    .standard-project-description {
        padding: 50px 100px;
    }
    
    .standard-project-description h1 {
        font-size: 45px;
    }
    
    .standard-project-description p {
        font-size: 1.2em;
    }

    #project-footer a {
        font-size: 2em;
    }

    .project-img-group img {
        padding: 0px 40px;
    }

}

/* SMALL LAPTOPS */
@media only screen and (min-width: 1100px) {
    /* #front-page {
        display: flex;
    } */

    .nav-icons {
        display: block;
    }

    .nav-logo-img {
        width: 80px;
    }

    .nav-name {
        font-size: 40px;
    }
    
    .nav-subname {
        font-family: Gibson, sans-serif;
        font-size: 28px;
    }

    .nav-icons img {
        width: 65px;
    }

    .resume-link {
        font-size: 3em;
    }

    .featured-links {
        margin-top: 200px;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 0px 200px;
    }

    .howdy-yall {
        margin-top: -120px;
        font-size: 60px;
    }

    .about-me-container {
        position: relative;
        margin: 20px 200px;
    }

    .about-me-text {
        font-family: Gibson, sans-serif;
        font-size: 32px;
    }

    .jack-of-all-trades {
        font-size: 36px;
        text-align: center;
        padding: 30px 0px;
    }

    .portfolio-grid {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 0 5px;
        margin: 60px 0;
    }

    .portfolio-grid img {
        width: 350px;
    }

    .email-link {
        font-size: 52px;
        font-weight: normal;
        margin-bottom: 50px;
        z-index: 15;
    }

    .lets-work-together {
        font-size: 40px;
        margin-top: -85px;
    }

    .nav-icons-mobile {
        display: none;
    }

    #front-page-resume {
        display: flex;
        z-index: 100;
    }
    
    .resume {
        flex-direction: row;
        margin: 500px auto 100px auto;
        gap: 100px;
    }
    
    .work-experience-box {
        text-align: left;
    }
    
    .resume-right-side {
        font-size: 24px;
    }

    .resume-right-side, .resume-left-side {
        width: 50%;
    }
    
    .skillsets {
        text-align: left;
    }
    
    .page-end-resume {
        position: relative;
        margin-bottom: 200px;
    }
    
    .lets-work-together-resume {
        font-size: 32px;
        margin: -70px 150px 0px 150px;
    }

        /* MOTORSPORT GAMES */
        .motorsport-games-title-imgs {
            margin-top: -60px;
        }

        .motorsport-games-title-imgs img {
            padding: 0px 150px;
        }

        .motorsport-portfolio-images{
            margin: 0px 150px;
        }

        .motorsport-portfolio-images img {
            padding: 0px 0px;
        }

        .img-flex {
            padding: 0px 0px;
            gap: 8px;
        }

        .img-flex img {
            object-fit: contain;
        }
        
        .motorsport-games-desktop {
            display: block;
        }
        
        .motosport-games-mobile {
            display: none;
        }

    /* MOSHPIT MAGAZINE */
    .moshpit-collection {
        margin-top: -60px;
    }
    
    .moshpit-collection img {
        width: 60%;
    }

     /* LOGOFOLIO */
    .logo-collection {
        margin-top: -45px;
    }

    .logo-collection img {
        padding: 0 100px;
    }

    .looking-for-a-logo p {
        font-size: 65px;
        margin-top: -70px;
    }

    /* GMB GORILLA */

    .gmb-gorilla-title-img-group {
        margin-top: -45px;
    }
    
    .gmbgorilla-logo {
        top: 65%;
    }

    .left-leaf, .right-leaf {
        width: 200px;
    }

    .gmb-banner-mobile {
        display: none;
    }
    .logo-container img{
        width: 70%;
    }
    .logo-container p{
        font-size: 24px;
        width: 600px;
    }

    .gmb-banner-desktop {
        display: block;
        height: 80vh;
    }

    .rank-higher {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin-top: 70px;
    }
    
    .rank-higher-text {
        margin-top: 50px;
        padding: 0;
        width: 350px;
        background-color: none;
        border-radius: none;
    }
    
    .rank-higher-text h1 {
        font-size: 36px;
    }
    .rank-higher-text p {
        font-size: 18px;
    }
    
    .rank-higher-text span {
        color: #00ADF0;
    }
    
    .rank-higher-text img {
        height: 200px;
        margin-top: 20px;
        padding-left: 0;
        padding-right: 20px;
    }
    
    .gmb-logo-description {
        gap: 20px;
        margin: 100px auto;
        width: 75%;
    }
    
    .gmb-logo-description p {
        font-size: 40px;
        width: 85%;
    }
    
    .gmb-logo-description img {
        height: auto;
        padding: none;
    }
    
    .gmb-logo-description span {
        color: #00ADF0;
        font-weight: bold;
    }
    
    .gmb-design-details {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 100px;
        margin-bottom: 20px;
        padding: 0 200px;
    }
    
    .gmb-design-details img {
        height: auto;
        width: 100%;
    }

    .gmb-portfolio {
        height: 160vh;
        position: relative;
        background-image:url("./IMG/5_GMBGorilla/GMB_10.jpg");
        background-repeat: no-repeat;
        background-size:cover;
    }
    
    .gmb-portfolio-text {
        position: absolute;
        top: 20%;
        line-height: 1.5;
    }
    
    .gmb-portfolio-img-group {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        padding: 0px 20px;
        margin-top: 60px;
        padding-bottom: 20px;
    }

    .gmb-portfolio-img-group img {
        width: 50%;
        padding: 0;
        margin: 0;
    }
    
    .gmb-portfolio h1 {
        font-family: gibson, sans-serif;
        font-size: 56px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: -20px;
        z-index: 30;
    } 

    .banners-flyers h1,
    .gmb-profile-posts h1 {
        font-family: gibson, sans-serif;
        font-size: 50px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 60px;
        z-index: 30;
    }
    .gmb-portfolio h2 {
        font-family: proxima-nova, sans-serif;
        font-size: 24px;
        margin: 0 10px;
        font-weight: 700;
        text-align: center;
    }
    
    .banners-flyers {
        height: auto;
        position: relative;
        text-align: center;
        margin-top: -50px;
    }
    
    .banners-flyers-text img {
        width: 100%;
        margin: 30px 0px;
        padding: 0 220px;
    }
    
    .gmb-profile-posts {
        position: relative;
        text-align: center;
        margin-top: 0px;
    }
    
    .profile-posts-grid {
        margin: 50px 40px;
    }
    .profile-posts-grid img {
        margin: 1px;
        width: 200px;
    }
    
    .profile-posts-grid img:hover {
        transform: scale(1.2);
    }
    
    .profile-posts-grid {
        margin-bottom: 50px;
        padding: 0 50px;
    }
    
    .banner-right-leaf {
        position: absolute;
        right: 0;
        width: 150px;
        top: -5%;
    }
    
    .banner-left-leaf {
        position: absolute;
        left: 0;
        width: 140px;
        top: -5%;
    }
    
    /* HERITAGE PA */
    .heritage-title-img {
        margin-top: -60px;
        padding: 0px 50px;
    }

    .embed-container-HPA-1 {
        margin-top: -65px;
    }
    
    /* TESSY PLASTICS */
    .tessy-title-img {
        margin-top: -45px;
        padding: 0px 60px;
    }

    .embed-container-tessy1 {
        margin-top: -45px;
    }

    /* COCOLOCO */
    .cocoloco-title-img {
        margin-top: -45px;
        padding: 0px 60px;
    }

    /* COFFEE AND CO */
    .coffee-title-img {
        margin-top: -45px;
        padding: 0px 60px;
    }

    /* REVIEW UNIVERSITY */
    .reviewu-title-img {
        margin-top: -40px;
        margin-bottom: 120px;
        padding: 0px 60px;
    }
    
    .reviewu-logo {
        margin-top: -100px;
        margin-bottom: 20px;
    }
    
    .reviewu-img-group img {
        padding: 0;
        margin: 10px 50px;
        object-fit: contain;
        width: 80%;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .reviewu-flex-img img{
        display: none;
    }

    .reviewu-flex-img-desktop {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .reviewu-flex-img-desktop img {
        width: 400px;
        height: 100%;
    }

    /* GENERAL STYLING */
    
    .standard-project-description {
        padding: 50px 250px;
    }
        
    .standard-project-description h1 {
        font-size: 50px;
    }
        
    .standard-project-description p {
        font-size: 1.7em;
    }
    
    #project-footer a {
        font-size: 2em;
    }

    .project-img-group img {
        padding: 0px 100px;
    }
}

/* LAPTOPS AND DESKTOPS */
@media only screen and (min-width: 1400px) {
    #front-page {
        display: flex;
    }

    .nav-icons {
        display: flex;
    }

    .nav-logo-img {
        width: 80px;
    }

    .nav-name {
        font-size: 40px;
    }
    
    .nav-subname {
        font-family: Gibson, sans-serif;
        font-size: 28px;
    }

    .nav-icons img {
        width: 65px;
    }

    .resume-link {
        font-size: 3em;
    }

    #featured {
        margin-top: 400px;
        margin-bottom: 100px;
    }

    .featured-links {
        margin-top: 200px;
        gap: 10px;
        padding: 0px 100px;
    }

    .howdy-yall {
        margin-top: -130px;
        font-size: 60px;
    }

    .about-me-container {
        position: relative;
        margin: 20px 250px;
    }

    .about-me-text {
        font-family: Gibson, sans-serif;
        font-size: 28px;
    }

    .jack-of-all-trades {
        font-size: 42px;
        text-align: center;
        padding: 30px 150px;
    }

    .portfolio-grid {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 0 5px;
        margin: 60px 0;
    }

    .portfolio-grid img {
        width: 400px;
    }

    .email-link {
        font-size: 52px;
        font-weight: normal;
        margin-bottom: 70px;
        z-index: 15;
    }

    .lets-work-together {
        font-size: 40px;
        margin-top: -105px;
    }

    .nav-icons-mobile {
        display: none;
    }

    .lets-work-together-resume {
        font-size: 32px;
        margin: -100px 150px 0px 150px;
    }

    .footer-img {
        width: 80px;
    }

     /* MOTORSPORT GAMES */
     .motorsport-games-title-imgs {
        margin-top: -70px;
    }
    
    .motosport-games-mobile {
        display: none;
    }

    /* MOSHPIT MAGAZINE */
    .moshpit-collection {
        margin-top: -80px;
    }
    
    .moshpit-collection img {
        width: 50%;
    }
    
     /* LOGOFOLIO */
     .logo-img-collection {
        margin-top: -90px;
    }

    .logo-img-group {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }
    
    .logo-bg {
        width: 75%;
    }
    
    .logo-text {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60%;
        z-index: 1;
    }

    .looking-for-a-logo p {
        font-size: 80px;
        margin-top: -90px;
    }

    /* GMB GORILLA */

    .gmb-gorilla-title-img-group {
        margin-top: -25px;
    }
    
    .gmbgorilla-logo {
        top: 60%;
    }

    .left-leaf, .right-leaf {
        width: 400px;
    }

    .gmb-banner-mobile {
        display: none;
    }

    .logo-container img {
        margin-top: 100px;
        width: 70%;
    }

    .logo-container p {
        font-size: 28px;
        margin: 20px 60px;
    }

    .gmb-banner-desktop {
        display: block;
        height: 90vh;
    }

    .rank-higher {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-top: 10px;
    }
    
    .rank-higher-text {
        margin-top: 0px;
        padding: 0;
        width: 400px;
        background-color: none;
        border-radius: none;
    }
    
    .rank-higher-text h1 {
        font-size: 45px;
    }
    .rank-higher-text p {
        font-size: 20px;
    }
    
    .rank-higher-text span {
        color: #00ADF0;
    }
    
    .rank-higher-text img {
        height: 200px;
        margin-top: 50px;
        padding-left: 0;
    }
    
    .gmb-logo-description {
        gap: 20px;
        margin: 100px auto;
        width: 75%;
    }
    
    .gmb-logo-description p {
        font-size: 45px;
        width: 75%;
    }
    
    .gmb-logo-description img {
        margin-top: 50px;
        height: auto;
        width: 85%;
        padding: none;
    }
    
    .gmb-logo-description span {
        color: #00ADF0;
        font-weight: bold;
    }
    
    .gmb-design-details {
        display: flex;
        display:-webkit-flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        -webkit-align-items: center;
        -webkit-justify-content: center;
        gap: 30px;
        margin: 80px auto 50px auto;
        padding: 0 100px;
    }

    .gmb-design-details img {
        height: 40%;
        width: 40%;
        padding: 0;
    }
    
    .gmb-portfolio {
        position: relative;
        background-image:url("./IMG/5_GMBGorilla/GMB_10.jpg");
        background-repeat: no-repeat;
        background-size:cover;
    }

    .gmb-portfolio-text {
        position: absolute;
        top: 20%;
        line-height: 1.5;
    }
    
    .gmb-portfolio-img-group {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 70px;
        padding-left: 70px;
        margin-top: 40px;
        padding-bottom: 20px;
    }

    .gmb-portfolio-img-group img {
        width: 45%;
        padding: 0;
        margin: 0;
    }
    
    .gmb-portfolio h1 {
        font-family: gibson, sans-serif;
        font-size: 56px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 0px;
        z-index: 30;
    } 

    .banners-flyers h1,
    .gmb-profile-posts h1 {
        font-family: gibson, sans-serif;
        font-size: 50px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 100px;
        z-index: 30;
    }
    .gmb-portfolio h2 {
        font-family: proxima-nova, sans-serif;
        font-size: 28px;
        margin: 0 20px;
        font-weight: 700;
        text-align: center;
    }
    
    .banners-flyers {
        height: auto;
        position: relative;
        text-align: center;
        margin-top: -50px;
    }
    
    .banners-flyers-text img {
        width: 100%;
        margin: 30px 0px;
        padding: 0 250px;
    }
    
    .gmb-profile-posts {
        position: relative;
        text-align: center;
        margin-top: 0px;
    }
    
    .profile-posts-grid img {
        margin: 1px;
        width: 225px;
    }
    
    .profile-posts-grid img:hover {
        transform: scale(1.2);
    }
    
    .profile-posts-grid {
        margin-bottom: 50px;
        padding: 0 150px;
    }
    
    .banner-right-leaf {
        position: absolute;
        right: 0;
        width: 250px;
        top: -4%;
    }
    
    .banner-left-leaf {
        position: absolute;
        left: 0;
        width: 190px;
        top: -10%;
    }

    /* HERITAGE PA */
    .heritage-title-img {
        margin-top: -80px;
        padding: 0px 250px;
    }

    .heritage-pa-group img {
        width: 25%;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .embed-container-HPA-1 {
        margin-top: -60px;
    }

    /* TESSY PLASTICS */
    .tessy-title-img {
        margin-top: -65px;
        padding: 0px 250px;
    }

    /* COCOLOCO */
    .cocoloco-title-img {
        margin-top: -65px;
        padding: 0px 250px;
    }

    /* COFFEE AND CO */
    .coffee-title-img {
        margin-top: -65px;
        padding: 0px 250px;
    }

    /* REVIEW UNIVERSITY */
    .reviewu-title-img {
        margin-top: -55px;
        margin-bottom: 150px;
        padding: 0px 200px;
    }
    
    .reviewu-logo {
        margin-top: -120px;
        margin-bottom: 40px;
        padding: 20px 25px;
    }

    .reviewu-img-group img {
        padding: 0;
        margin: 10px 50px;
        object-fit: contain;
        width: 60%;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .reviewu-flex-img img{
        display: none;
    }

    .reviewu-flex-img-desktop {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .reviewu-flex-img-desktop img {
        width: 510px;
        height: 100%;
    }

    /* GENERAL STYLING */
    .standard-project-description {
        padding: 50px 300px;
    }
    
    .standard-project-description h1 {
        font-size: 62px;
        text-align: center;
    }
    
    .standard-project-description p {
        font-size: 1.7em;
    }

    #project-footer a {
        font-size: 3em;
    }

    .project-img-group img {
        padding: 0px 300px;
    }

    .resume-heading {
        font-size: 70px;
    }

    .embed-container-tessy1,
    .embed-container-HPA-1 {
        margin-top: -80px;
    }

}

/* XL SCREENS */
@media only screen and (min-width: 1600px) {

    .portfolio-grid {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 0 5px;
        margin: 60px 0;
    }

    .portfolio-grid img {
        width: 500px;
    }

    .about-me-container {
        position: relative;
        margin: 20px 400px;
    }

    .about-me-text {
        font-family: Gibson, sans-serif;
        font-size: 32px;
    }

    .jack-of-all-trades {
        font-size: 42px;
        text-align: center;
        padding: 30px 100px;
    }

    .lets-work-together {
        font-size: 40px;
        margin-top: -125px;
    }

    .nav-icons-mobile {
        display: none;
    }

    .resume {
        margin: 600px auto 100px auto;
        gap: 100px;
    }

         /* MOTORSPORT GAMES */
         .motorsport-games-title-imgs {
            margin-top: -95px;
        }
        
        .motorsport-games-desktop {
            display: block;
        }
        
        .motosport-games-mobile {
            display: none;
        }

    /* MOSHPIT MAGAZINE */
    .moshpit-collection {
        margin-top: -100px;
    }
    
    .moshpit-collection img {
        width: 40%;
    }

     /* LOGOFOLIO */
     .logo-collection {
        margin-top: -100px;
    }

    .logo-collection img {
        padding: 0 200px;
    }

    .looking-for-a-logo p {
        font-size: 80px;
        margin-top: -90px;
    }

    /* GMB GORILLA */

    .gmb-gorilla-title-img-group {
        margin-top: -25px;
    }
    
    .gmbgorilla-logo {
        top: 60%;
    }

    .left-leaf, .right-leaf {
        width: 400px;
    }

    .gmb-banner-mobile {
        display: none;
    }

    .logo-container img {
        margin-top: 100px;
        width: 70%;
    }

    .logo-container p {
        font-size: 28px;
        margin: 20px 60px;
    }

    .gmb-banner-desktop {
        display: block;
        height: 90vh;
    }

    .rank-higher {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-top: 10px;
    }
    
    .rank-higher-text {
        margin-top: 0px;
        padding: 0;
        width: 400px;
        background-color: none;
        border-radius: none;
    }
    
    .rank-higher-text h1 {
        font-size: 45px;
    }
    .rank-higher-text p {
        font-size: 20px;
    }
    
    .rank-higher-text span {
        color: #00ADF0;
    }
    
    .rank-higher-text img {
        height: 200px;
        margin-top: 50px;
        padding-left: 0;
    }
    
    .gmb-logo-description {
        gap: 20px;
        margin: 100px auto;
        width: 75%;
    }
    
    .gmb-logo-description p {
        font-size: 45px;
        width: 75%;
    }
    
    .gmb-logo-description img {
        margin-top: 50px;
        height: auto;
        width: 85%;
        padding: none;
    }
    
    .gmb-logo-description span {
        color: #00ADF0;
        font-weight: bold;
    }
    
    .gmb-design-details {
        display: flex;
        display:-webkit-flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        -webkit-align-items: center;
        -webkit-justify-content: center;
        gap: 30px;
        margin: 80px auto 50px auto;
        padding: 0 100px;
    }

    .gmb-design-details img {
        height: 40%;
        width: 40%;
        padding: 0;
    }

    .gmb-portfolio {
        height: 200vh;
        position: relative;
        background-image:url("./IMG/5_GMBGorilla/GMB_10.jpg");
        background-repeat: no-repeat;
        background-size:cover;
    }
    
    .gmb-portfolio-text {
        position: absolute;
        top: 20%;
        line-height: 1.5;
    }
    
    .gmb-portfolio-img-group {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 70px;
        padding-left: 70px;
        margin-top: 40px;
        padding-bottom: 20px;
    }

    .gmb-portfolio-img-group img {
        width: 45%;
        padding: 0;
        margin: 0;
    }
    
    .gmb-portfolio h1 {
        font-family: gibson, sans-serif;
        font-size: 56px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 0px;
        z-index: 30;
    } 

    .banners-flyers h1,
    .gmb-profile-posts h1 {
        font-family: gibson, sans-serif;
        font-size: 50px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 100px;
        z-index: 30;
    }
    .gmb-portfolio h2 {
        font-family: proxima-nova, sans-serif;
        font-size: 28px;
        margin: 0 20px;
        font-weight: 700;
        text-align: center;
    }
    
    .banners-flyers {
        height: auto;
        position: relative;
        text-align: center;
        margin-top: -50px;
    }
    
    .banners-flyers-text img {
        width: 100%;
        margin: 30px 0px;
        padding: 0 250px;
    }
    
    .gmb-profile-posts {
        position: relative;
        text-align: center;
        margin-top: 0px;
    }
    
    .profile-posts-grid img {
        margin: 1px;
        width: 320px;
    }
    
    .profile-posts-grid img:hover {
        transform: scale(1.2);
    }
    
    .profile-posts-grid {
        margin-bottom: 50px;
        padding: 0 100px;
    }
    
    .banner-right-leaf {
        position: absolute;
        right: 0;
        width: 250px;
        top: -4%;
    }
    
    .banner-left-leaf {
        position: absolute;
        left: 0;
        width: 190px;
        top: -10%;
    }
    
    /* HERITAGE PA */
    .heritage-title-img {
        margin-top: -100px;
        padding: 0px 250px;
    }

    .embed-container-HPA-1 {
        margin-top: -90px;
    }

    /* TESSY PLASTICS */
    .tessy-title-img {
        margin-top: -80px;
        padding: 0px 250px;
    }

    .embed-container-tessy1 {
        margin-top: -70px;
    }

    /* COCOLOCO */
    .cocoloco-title-img {
        margin-top: -80px;
        padding: 0px 250px;
    }

    /* COFFEE AND CO */
    .coffee-title-img {
        margin-top: -80px;
        padding: 0px 250px;
    }

    /* REVIEW UNIVERSITY */
    .reviewu-title-img {
        margin-top: -65px;
        margin-bottom: 150px;
        padding: 0px 200px;
    }
    
    .reviewu-logo {
        margin-top: -120px;
        margin-bottom: 40px;
        padding: 20px 25px;
    }
    
    .reviewu-img-group img {
        padding: 0;
        margin: 10px 50px;
        object-fit: contain;
        width: 70%;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .reviewu-flex-img img{
        display: none;
    }

    .reviewu-flex-img-desktop {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .reviewu-flex-img-desktop img {
        width: 650px;
        height: 100%;
    }
    /* GENERAL STYLING */
    .standard-project-description {
        padding: 50px 420px;
    }
    
    .standard-project-description h1 {
        font-size: 60px;
    }
    
    .standard-project-description p {
        font-size: 1.7em;
    }

    .project-img-group img {
        padding: 0px 300px;
    }
}

/* XXL 2K displays */
@media only screen and (min-width: 2000px) {

    .featured-links {
        margin-top: 500px;
    }
    
    .portfolio-grid img {
        width: 600px;
    }

    /* MOTORSPORTS GAMES */
    .img-flex img {
        width: 40%;
        padding: 10px;
    }

    /* GMB GORILLA */

    .gmb-gorilla-title-img-group {
        margin-top: -25px;
    }
    
    .gmbgorilla-logo {
        top: 60%;
    }

    .left-leaf, .right-leaf {
        width: 400px;
    }

    .gmb-banner-mobile {
        display: none;
    }

    .logo-container img {
        margin-top: 100px;
        width: 70%;
    }

    .logo-container p {
        font-size: 28px;
        margin: 20px 60px;
    }

    .gmb-banner-desktop {
        display: block;
        height: 90vh;
    }

    .rank-higher {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-top: 10px;
    }
    
    .rank-higher-text {
        margin-top: 0px;
        padding: 0;
        width: 400px;
        background-color: none;
        border-radius: none;
    }
    
    .rank-higher-text h1 {
        font-size: 55px;
    }
    .rank-higher-text p {
        font-size: 28px;
    }
    
    .rank-higher-text span {
        color: #00ADF0;
    }
    
    .rank-higher-text img {
        height: 200px;
        margin-top: 50px;
        padding-left: 0;
    }
    
    .gmb-logo-description {
        gap: 20px;
        margin: 100px auto;
        width: 75%;
    }
    
    .gmb-logo-description p {
        font-size: 45px;
        width: 75%;
    }
    
    .gmb-logo-description img {
        margin-top: 50px;
        height: auto;
        width: 85%;
        padding: none;
    }
    
    .gmb-logo-description span {
        color: #00ADF0;
        font-weight: bold;
    }
    
    .gmb-design-details {
        display: flex;
        display:-webkit-flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        -webkit-align-items: center;
        -webkit-justify-content: center;
        gap: 30px;
        margin: 80px auto 50px auto;
        padding: 0 100px;
    }

    .gmb-design-details img {
        height: 40%;
        width: 40%;
        padding: 0;
    }

    .gmb-portfolio {
        height: 210vh;
        position: relative;
        background-image:url("./IMG/5_GMBGorilla/GMB_10.jpg");
        background-repeat: no-repeat;
        background-size:cover;
    }
    
    .gmb-portfolio-text {
        position: absolute;
        top: 20%;
        line-height: 1.5;
    }
    
    .gmb-portfolio-img-group {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 70px;
        padding-left: 70px;
        margin-top: 40px;
        padding-bottom: 20px;
    }

    .gmb-portfolio-img-group img {
        width: 45%;
        padding: 0;
        margin: 0;
    }
    
    .gmb-portfolio h1 {
        font-family: gibson, sans-serif;
        font-size: 56px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 0px;
        z-index: 30;
    } 

    .banners-flyers h1,
    .gmb-profile-posts h1 {
        font-family: gibson, sans-serif;
        font-size: 50px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 100px;
        z-index: 30;
    }
    .gmb-portfolio h2 {
        font-family: proxima-nova, sans-serif;
        font-size: 28px;
        margin: 0 20px;
        font-weight: 700;
        text-align: center;
    }
    
    .banners-flyers {
        height: auto;
        position: relative;
        text-align: center;
        margin-top: -30px;
    }
    
    .banners-flyers-text img {
        width: 100%;
        margin: 30px 0px;
        padding: 0 250px;
    }
    
    .gmb-profile-posts {
        position: relative;
        text-align: center;
        margin-top: 0px;
    }
    
    .profile-posts-grid img {
        margin: 1px;
        width: 370px;
    }
    
    .profile-posts-grid img:hover {
        transform: scale(1.2);
    }
    
    .profile-posts-grid {
        margin-bottom: 50px;
        padding: 0 100px;
    }
    
    .banner-right-leaf {
        position: absolute;
        right: 0;
        width: 250px;
        top: -4%;
    }
    
    .banner-left-leaf {
        position: absolute;
        left: 0;
        width: 190px;
        top: -10%;
    }
}