/* Responsive CSS For all Bootstrap Breakpoints */

/* XS/SM ----------- */
@media
only screen and (max-width : 991px) {
/* Styles */
#wrapper { max-width: 100vw; overflow: hidden; }

}

/* XS - Extra Small Devices ----------- */
@media
only screen and (max-width : 767px) {
/* Styles */
	.container { max-width: 100%; }
	/*#site-header, .header-after { height: 360px; }*/
	#site-header { height: 360px; }
	#site-header .tagline { font-size: 1.35rem; }

}

/* XS - XSmall Devices ----------- */
@media only screen
and (max-width : 575px) {
/* Styles */


}

/* SM - Small Devices ----------- */
@media only screen
and (min-width : 576px)
and (max-width : 767px) {
/* Styles */


}

/* MD - Small Devices ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 991px) {
/* Styles */


}

/* > Tablet */
@media
only screen and (min-width : 991px) {
/* Styles */


}


/* LG - Medium Devices ----------- */
@media only screen
and (min-width : 992px)
and (max-width : 1199px) {
/* Styles */


}


/* XL - Large Devices */
@media
only screen and (min-width : 1200px) {
/* Styles */


}
