#banner {
	padding: 7rem 0;
	position: relative;
	
	.banner-background {
		object-fit: cover;
		position: absolute;
		width: 100%;
		height: 100%;
		object-position: center;
		top: 0;
	}
	
	.banner-overlay {
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		background: rgba(0, 0, 0, .2);
	}
	
	.banner-content {
		position: relative;
		z-index: 2;
	}
	
	&.interior-banner {
		min-height: 20rem;
		
		@media (max-width: 1200px) {
			display: none;
		}
	}
 
 &.interior-banner-services {
  min-height: 20rem;

  @media (max-width: 1200px) {
   display: block !important;
  }
 }
}