/*styles for mobile images*/
 @media screen and (max-width: 600px) {
    .mobHide{ 
       display: none !important;
    }
	 
  }
/*styles for desktop images*/
 @media screen and (min-width: 600px) {
    .deskHide{ 
       display: none !important;
    }
	 
  }

/* BLOCKQUOTE */
.image-container {
	position: relative;
}

.text-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: left;
	color: white;
	width: 75%;
	font-size: 18px;
}
