/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
.nav-main a{padding-left: 24px;padding-right: 24px;}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
.nav-main a{padding-left: 8px;padding-right: 8px;}.search input{width: 200px;margin-top: 4px;}
.slider{display: none;}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.search input{width: 300px;margin-top:4px;}
.nav-main{margin: 10px auto;}
.menu-item {display:block; text-align: center;}
.nav-main ul{display:none;}
.show-menu{display:block;}


}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
.news-item-img{float:none;width: 100%;}
}
@media only screen and (max-width : 420px) {

}

/* 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) {
.menu-item{display:inline-block; text-align: center;}
.nav-main ul{display:block;}
.show-menu{display:none;}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
