
/********************************
    15.    @MEDIA QUERIES
********************************/

/*******************************
    16. Start @media 500px/30em
*******************************/



/*******************************
    17. Start @media 712px/45em
*******************************/

@media screen and (min-width: 45em) {
   
    /****************************
        NAVIGATION @media 712px/45em/
    ****************************/
    nav li {
        display: inline-block; /* dib */
        list-style-type: none;
        width: 18%;
        text-align: center;
    }
    nav a {
        color: floralwhite;
        padding: .5em;
        text-decoration: none;
    }
    .dropdown {
            position: relative;
        }
        
    .dropdown-content {
    display: none;
    position: absolute;
    border-radius: 5px;
}
        
    .dropdown:hover .dropdown-content {
            display: block;
            width: 100%;
            background-color: #000;
            position:absolute;
            left:50px;
            top:10px;
        }
        
    .hide {
    clear: both;
    display: inline-block;
    position: absolute;
    margin-top: -23px;
}
        
    main{
        margin: 0 auto;
/*        max-width: 800px;*/
    }
    
    figure img {
        margin: 5px auto;
        max-width: 600px;
    }
    .imgWrap {
        width: 20%;
        float: left;
    }
    
    /****************************
        Footer @media712px/45em
    ****************************/
    
    footer p {
        margin:0 auto;
    }
}
    
     
    
	


