html{
    margin-top: 80px;
}

.container{
    padding: 50px 0;
}

.section-title{
    text-align: center;
    padding-top: 30px;
    background-color: #ffffff;
}

.section-gallery{
    display: block;
    width: 100%;
}

#art .art{
    padding: 0;
    min-height: 0;
    width: 100%;
    display: block;
}

.art h2{
    width: 100%;
    margin:0 auto;
    text-align: center;
    font-size: 4rem;
    font-weight: 400;
    margin:20px 0;
}

.art .gallery-menu {
    text-align: center;
}

.art .gallery-menu ul{
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}

.art .gallery-menu li{
    font-size: 4em;
    font-weight: 700;
    line-height: 4em;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    border: 1px solid #ffffff;
    transition: .3s ease background-size, .3s ease font-size;
}

.art .gallery-menu li a{
    text-transform: uppercase;
    color: #ffffff;
    display:inline-block;
    width:100%;
    height:100%;
    transition: .3s ease color, .3s ease background-color;
    text-shadow: 0px 0px 10px black;
    /*box-shadow: inset 0 0 0 1000px rgba(0,0,0,.3);*/
    font-style: normal;
    background-color: rgba(0,0,0,0.2);
}

.art .gallery-menu .portraits{
    background-image: url(../art/images/thumbs/thumb_youngcouple.jpg);
}

.art .gallery-menu .illustration{
    background-image: url(../art/images/thumbs/thumb_naga-attack.jpg);
}

.art .gallery-menu .pixels{
    background-image: url(../art/images/thumbs/thumb_adventurers.jpg);
}

.art .gallery-menu .cartography{
    background-image: url(../art/images/thumbs/thumb_axeholm.jpg);
}

.art .gallery-menu .animation{
    background-image: url(../art/images/thumbs/thumb_goblin-spearshield.png);
}

.art .gallery-menu .gaming{
    background-image: url(../art/images/thumbs/hvy/thumb_hvywpn.jpg);
}

.art .gallery-menu .advertising{
    background-image: url(../art/images/thumbs/smax_banner.jpg);
}

.art .gallery-menu .sketchbook{
    background-image: url(../art/images/thumbs/thumb_illus.jpg);
}


.art .gallery {
    text-align: center;
}

.art .gallery ul{
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.art .gallery li{
    background-color: #ffffff;
}

.art .gallery li a{
    font-weight: 400;
    font-style: italic;
}


.art .gallery .opener{
    padding: 30px;
    border-bottom: 1px solid lightgray;
    margin-bottom: 60px;
}

.art .gallery .opener h2{
    text-align: left;
}

.art .gallery .opener p{
    text-align: left;
    font-size: 2em;
    margin-bottom: 20px;
}

.art .gallery .opener .scroll-more{
    display: none;
    text-align: right;
    font-weight: 400;
    line-height: 3em;
    position: relative;
}

.art .gallery .opener .scroll-more img{
    position: absolute;
    top:50%;
    transform: translate(0,-50%);
}

.art .gallery .gallery-item{
    padding: 30px;
    margin-bottom: 30px;
    padding-bottom: 0;
    width: 100%;
    position: relative;
}

.art .gallery .gallery-item img{
    width: 100%;
    border-radius: 20px;
}

.art .gallery li iframe{
    width: 350px;
    height: 197px;
}

.art .gallery .gallery-item .caption{
    font-size: 1.5em;
    font-weight: 400;
}

.art .gallery .gallery-item a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    cursor: zoom-in;
}

.art .gallery .single{
    max-width: 400px;
}

.art .gallery .double{
    max-width: 800px;
}

/* Media Query - TABLET - */

@media only screen and (min-width: 768px){

    html{
        margin-top: 100px;
    }

    .section-title{
        padding: 60px 0;
    }

    .art .gallery-menu ul{
        flex-flow: row wrap;
        justify-content: center;
    }

    .art .gallery-menu li {
        width: 50%;
    }

    .art .gallery ul{
        flex-flow: row wrap;
    }

    .art .gallery .opener{
        width: 100%;
        padding: 60px;
    }

    .art .gallery .gallery-item{
        margin: 60px;
        padding: 0;
        width: 33.3%;
    }

    .art .gallery .double{
        width: 100%;
    }

    .art .gallery-menu .sketchbook{
        width: 100%;        
    }

}

/* END of Media Query - TABLET - */



/* Media Query - DESKTOP - */

@media only screen and (min-width: 1200px){

    html{
        margin-top: 80px;
        background-image: url(../images/bg-tile-black.jpg);
        background-repeat: repeat;
        background-attachment: fixed;
    }

    html::after{
        content: '';
        position: absolute;
        left: 0;
        top: 80px;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 1;
        z-index: -1;
    }

    body{
        background-color: #ffffff;
    }

    .home{
        background: none;
    }

    #header{
        border-bottom: 1px solid white;
        background-color: white;
    }

    #header .brand-logo img{
        height: 80px;
    }

    #header .nav ul li{
        color: black;
    }

    #header .nav ul li a{
        color: black;
    }

    #header .nav ul li:last-child{
        display: block;
    }

    #art .art{
        max-width: 90%;
        margin: 0 auto 16vh auto;
    }

    .section-title{
        margin:0;
        color: #ffffff;
        background: none;
    }

    .art .gallery-menu ul{
        flex-flow: row wrap;
        justify-content: center;
    }

    .art .gallery-menu li {
        margin: 0;
        line-height: 20vh;
        font-size: 4em;
        width: 25%;
    }

    .art .gallery-menu li a{
        padding: 0;
        white-space: nowrap;
    }

    .art .gallery-menu li a:hover{
        color: orange;
        background-color: rgba(0, 0, 0, 0.5);
        transition: .3s ease color, .3s ease background-color;
    }

    .art .gallery-menu li:hover{
        background-size: 105%;
        transition: .3s ease background-size, .3s ease font-size;
        font-size: 4.8em;
    }

    .art .gallery-menu .portraits{
        width: 33.3%;
    }
    
    .art .gallery-menu .illustration{
        width: 33.3%;
    }
    
    .art .gallery-menu .pixels{
        width: 33.3%;
    }
    
    .art .gallery-menu .cartography{
        width: 50%;
    }
    
    .art .gallery-menu .animation{
        width: 50%;
    }

    .art .gallery-menu .gaming{
        width: 50%;
    }
    
    .art .gallery-menu .advertising{
        width: 50%;        
    }

    .art .gallery-menu .sketchbook{
        width: 50%;        
    }

    .art .gallery ul{
        flex-flow: row nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        align-items: center;
        padding: 0;
        min-width: 100%;
        justify-content: flex-start;
    }

    .art .gallery .opener{
        min-width: 30vw;
        max-width: 40%;
        padding: 60px;
        margin-right: 60px;
        margin-bottom: 0;
        border-bottom: none;
        border-right: 1px solid lightgray;
    }

    .art .gallery .opener .scroll-more{
        display: block;
    }

    .art .gallery .gallery-item{
        margin-right: 30px;
        padding: 0;
        min-width: 400px;
        height: 566px;
        transform: scale(1);
        transition: .3s ease transform;
    }
    
    .art .gallery .double{
        min-width: 800px;
        height: 566px;
    }

    .art .gallery .gallery-item:hover{
        transform: scale(1.05);
        transition: .3s ease transform;
    }

    .art .gallery li iframe{
        width: 560px;
        height: 315px;
    }

}

/* End of Media Query - DESKTOP - */