/* Container holding the image and the text */
.box_container {
	margin: 0px auto;
	position: relative;

.box_img {
	width: 100%;
	margin: 10px auto;
	border: 0px solid #000000;
	position: relative;
	filter: grayscale(20%) brightness(50%) opacity(80%);
}

.box_text {
	/*background-color: rgba(0, 35, 142, 0.8);*/
    text-align: center;
	position: absolute;
	width: 90%;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	font-size: 18px;
	font-weight: bold;
	color: rgba(255,255,255, 1);
	font-family: Arial, Helvetica, sans-serif;
}
