.middle_text_inner_gallery{
	display: block;
	margin: auto;	
	width: 70%;
	margin-bottom: 1.5rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.middle_text_inner_gallery h3{
	display: block;
	margin: auto;
	width: 50%;
	padding-left: 0.5rem;
	padding-bottom: 1rem;
	padding-right: 0.5rem;
	font-family: 'Allerta';
	font-size: 3.5rem;
	letter-spacing: 1.5px;
	text-align: center;
	text-shadow: 1px 1px 1px blue;
	border-bottom: 2px solid black;
	box-shadow: 0 1px rgba(36, 152, 194, 1);
}
.gallery{
	float: left;
	width: 90%;
	margin-left: 5%;
	padding-bottom: 5rem;
}
.responsive {
	float: left;
	width: 20%;
	margin-left: 10%;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
div.img {
	background-color: rgba(255, 255, 255, 1);
	border: 0.3rem solid rgba(36, 152, 194, 1);
}
div.img img {
	width: 90%;
	height: 20rem;
	margin-left: 5%;
	margin-top: 0.5rem;
	margin-right: 2%;
	cursor: pointer;
}
div.desc {
	padding-left: 0.5rem;
	padding-top: 1rem;
	padding-right: 0.5rem;
	padding-bottom: 1rem;
	color: black;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
}
.modal {
	display: none;
	position: fixed;
	z-index: 99999999999999999999999999999999999999999999999999999999;
	padding-top: 10px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	height: 80%;
	max-width: 900px;
}
#caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	font-size: 2rem;
	padding: 10px 0;
	height: 150px;
}
.modal-content, #caption {
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
	from {
		transform: scale(0)
	}
	to {
		transform: scale(1)
	}
}
@keyframes zoom {
	from {
		transform: scale(0.1)
	}
	to {
		transform: scale(1)
	}
}
.close {
	position: absolute;
	top: 25px;
	right: 55px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
.close:hover, .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
@media screen and (max-width: 1080px){
	.gallery{
		width: 98%;
	    margin-left: 1%;
	}
	.responsive {
		width: 25%;
	    margin-left: 6.25%;
	}
}
@media screen and (max-width: 900px){
	.responsive {
		width: 40%;
	    margin-left: 6.66666666666%;
	}
}
@media screen and (max-width: 767px){
	.middle_text_inner_gallery{
		width: 90%;
	}
    .middle_text_inner_gallery h3{
		width: 90%;
		font-size: 2rem;
	    letter-spacing: 0.5px;
	}
	.responsive {
		width: 70%;
	    margin-left: 15%;
	}
}