@media (min-width: 1200px){
    /* /////////////////////////////////// INITIALS ////////////////////////////////// */

    #container{
        -ms-grid-columns: (1fr)[5];
            grid-template-columns: repeat(5, 1fr);
        -ms-grid-rows: (auto)[4];
            grid-template-rows: repeat(4, auto);
        grid-template-areas: 
            "header         header      header      header      header"
            "navigation     navigation  navigation  navigation  navigation"
            "leftNavigation content     content     content     content"
            "footer         footer      footer      footer      footer";
    }

    p, a{
        font-size: 1.05em;
    }

    /* ////////////////////////////////// NAVIGATION /////////////////////////////////////////////// */

    .navigationMedium{
        display: none;
    }

    .navigation{
        display: block;
        grid-area: navigation;
        width: 100%;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 1;
        background: #424242;
    }

    /* ///////////////////////////////// LEFT NAVIGATION ////////////////////////////////////////// */

    .leftNavigation{
        display: block;
        grid-area: leftNavigation;
        min-height: 80vh;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .leftNavigation h2{
        margin: 35px 10px 0 10px;
        padding: 15px 5px 15px 15px;
        background: rgba(0, 0, 0, 0.1);
        font-size: 1.5em;
    }
    
    .leftMenu{
        list-style-type: none;
        margin: 0px 10px 40px 10px;
        padding: 10px 5px;
        background: rgba(0, 0, 0, 0.1);
    }
    
    .leftCategory{
        color: var(--grey);
        margin: 0px 10px 0 10px;
        padding: 1px 5px;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    .leftCategory:hover{
        background: var(--green);
        border-radius: 5px;
    }
    
    .leftCategory a{
        text-decoration: none;
        color: var(--grey);
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        font-size: 1em;
    }

    #favoriteLink{
        font-size: 1.05em;
        font-style: italic;
    }
    
    .leftDropdown{
        background: rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }
    
    .leftDropdownItem{
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: none;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        max-height: 0px;
        overflow-y: hidden;
    }
    
    .leftDropdownItem li{
        margin: 5px 15px 0 14px;
        padding: 0 5px;
    }
    
    .showing .leftDropdownItem{
        display: block;
    }

    .showing-active .leftDropdownItem{
        max-height: 500px;
    }

    .productLeftDiv{
        width: 100%;
        margin: 40px 0;
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }

    /* ///////////////////////////////////////////////////////////// HOME PAGE //////////////////// */

    #slider{
        height: 500px;
    }

    .slidesDiv{
        height: 500px;
    }

    .slidesImages{
        max-height: 500px;
    }

    #carousel{
        height: 500px;
    }

    .carouselItem{
        height: 500px;
    }

    .carouselProductImage{
        height: 247.5px;
    }

    .footerPayment img{
        max-width: 250px;
    }
}