/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    
    
    .girl {
	display: none;
    }
    .main_content .container {
	    background-image: url(../images/blacksmith_girl_low.png);
        background-size: 100% 100%;
    }
    .slide_item {
	margin-top: 10px;
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .logo {
	    display: none;
    }
    nav ul {
        display: none;
        float: left;
 
    }
    nav ul li {
        /*z-index: 2;*/
    }
    /*
    nav ul ul {
        margin: 0;
        padding: 0;
        top: 50%;
        left: 90%;
    }
    */
}
   

}
/*custom screen size 

@media only screen and (max-width : 562px) {
    nav ul{
	display: table-caption;
    margin: 0;
    padding: 0;
    
}
    nav ul li {
        display: table-column;
    }
    
    nav ul ul {
        margin: 0;
        padding: 0;
        top: 50%;
        left: 90%;
    }
}
*/
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
 /*   nav ul{
	display: table-caption;
    margin: 0;
    padding: 0;
    
}
    nav ul li {
        display: table-column;
        z-index: 2;
    }
    
    nav ul ul {
        margin: 0;
        padding: 0;
        top: 50%;
        left: 90%;
    }
}
*/
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}