/*
 *	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 *
 *		Mixin:      media_Bp
 *
 * 		Purpose:    Used as a shorthand for a media query
 *
 * 		Inputs:     $lowerBp - Lower range of the viewport size
 *             		$upperBp - Upper range of the viewport size
 *
 * <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 */
#page_Text {
  grid-column: col 4/span 6;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  #page_Text {
    grid-column: col 2/span 10;
  }
}
@media (min-width: 600px) and (max-width: 767.98px) {
  #page_Text {
    grid-column: col 2/span 10;
  }
  #page_Text #menu_Navbar-XL ul li:first-child {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 599.98px) {
  #page_Text {
    grid-column: col 1/span 12;
  }
  #page_Text #menu_Navbar-SM ul li:first-child {
    display: none;
  }
}