/*
Theme Name: 
Author: Prosoft Phils
Author URL: http://prosoft-phils.com/
Description: Responsive CSS for Global Partials (Tablet / IPAD)
*/

@media (max-width: 991px){
	
}

@media (min-width: 767px) and (max-width: 991px) {

	/*--------------------------------------------------------------
	HEADER
	--------------------------------------------------------------*/

	/*--------------------------------------------------------------
	FOOTER
	--------------------------------------------------------------*/
	
	/*--------------------------------------------------------------
	404 PAGE NOT FOUND
	--------------------------------------------------------------*/

	/*--------------------------------------------------------------
	Full Width Video iFrame on Modal 
	--------------------------------------------------------------*/
	.video-modal-content {
	    width: 70%;
	}

} /*END of @media 767px -991px*/


/*--------------------------------------------------------------
CUSTOM IPAD BREAKPOINTS
--------------------------------------------------------------*/
/*IPAD Portrait & Landscape*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  { 
	footer .row .col-sm-6 ul li div.form-control div.right span i {
		display: none;
	}
} /*END of IPAD Portrait & Landscape*/

/*IPAD in Landscape*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	footer .row .col-sm-6 ul li div.form-control div.right span i {
		display: none;
	}
} /*END of IPAD in Landscape*/


/*IPAD in Portrait*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
	footer .row .col-sm-6 ul li div.form-control div.right span i {
		display: none;
	}
} /*END of IPAD in Portrait*/