/* BE AWARE OF BOOTSTRAP 4.6.2 BREAKPOINTS: xs (<576px), sm (≥576px), md (≥768px), lg (≥992px), xl (≥1200px) */

/* Small Mobile Phones */
@media only screen and (min-width: 360px) {


}

/* Large Mobile Phones */
@media only screen and (min-width: 667px) {

}

/* Mobile - Up to Right Before Small Tablet Sizes */
@media only screen and (max-width: 768px) {

	/* ADJUST DEFAULT FONT SIZE ON MOBILE */
	BODY
	{
	font-size:17px;
	}

	/* REDUCE GUTTER SIZES FOR THE CONTAINER */
	.container
	{
	max-width:100% !important;
	padding-right: 0px;
	padding-left: 0px;
	}
	
	.slash-anim-container
	{
	margin-top:8px;
	}

}


/* Small Tablets */
@media only screen and (min-width: 768px) {

	.slash-anim-container
	{
	margin-top:8px;
	}

}

/* Large Tablets */
@media only screen and (min-width: 1024px) {

	.slash-anim-container
	{
	margin-top:8px;
	}

}

/* Desktop */
@media only screen and (min-width: 992px) and (max-width: 2200px) {

}

/* Widescreen */
@media only screen and (min-width: 2201px) {

}


