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

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    
    .main_top .item_main {width: 50%;display: none}
    .main_top .item_main:nth-child(1),
    .main_top .item_main:nth-child(2) {display: block;}
    
    #main_price .item {display: block; width: auto;}
    #main_price .item .pict {display: block; padding: 0; margin: 0 auto 20px auto; text-align: center}
    #main_price .item .pict img {margin: 0 auto;}
    #main_price .item .info {display: block; text-align: center;}
        
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    #main_price .item {margin: 0 0 20px 0;padding: 0;overflow: hidden;}
    #main_price .col-md-4:last-child .item {margin: 0;}
    
.main_portfolio {padding: 15px;background: #f5f9fa;}
.main_portfolio .title {margin: 5px 0 15px 0;border-right:3px solid #f8bb4f}
.main_portfolio .description {margin: 0 0 10px 0;padding: 0;}
.cat_list ul {padding: 0;}
.cat_list ul li {float:none; width: 100%; margin: 5px 0;}

    .shot_poster {padding: 0 5px 5px 5px;} 
    
    #menu-trigger {display: block;}
	nav.hnav ul {display: none;}
	nav#nav-mobile {display: block;}
    
	/*Disable Animation on Mobile Devices*/
	.animated {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* 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) {

}