:root{
	--ot1_heading_baslig_color:#048654;
}
.gallery_1{
	padding: 3rem 0;
	min-height: 100vh;
	transition: all 1s ease;
}
.gallery_1 .heading{
	text-align: center;
	width: 90%;
	margin: 0 auto;
	padding: 0 .5rem;
	padding-top: 6rem;
	box-shadow: 0 .2rem .05rem rgba(255,255,255,1);
}
.gallery_1 .heading span{
	display: inline-block;
	font-size: 3.5rem;
	color: #25ccf7;
	padding: 1rem 0;
	box-shadow: 0 .2rem .05rem rgba(0,127,92,0.5);
}
.gallery_1 .gallery{
	min-height: 100vh;
	padding-bottom: 100px;

}
.gallery_1 .gallery .gal_controls{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 20px 0;
	list-style: none;
}
.gallery_1 .gallery .gal_controls .buttons{
	height: 30px;
	width: auto;
	text-align: center;
	background: #fff;
	color: #000;
	font-size: 15px;
	font-weight: 600;
	line-height: 30px;
	cursor: pointer;
	margin: 10px;
	padding:0 15px;
	box-shadow: 0 3px 5px rgba(0,0,0,0.5);
}
.gallery_1 .gallery .gal_controls .buttons.active_b{
	background: #048654;
	color: #fff;
}
.gallery_1 .gallery .image_container{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.gallery_1 .gallery .image_container .item{
	height: 350px;
	width: 350px;
	overflow: hidden;
	border: 15px solid #dedede;
	box-shadow: 0 3px 5px rgba(0,0,0,0.5);
	margin: 20px;
}
.gallery_1 .gallery .image_container .item .image{
	height:250px;
	width: 100%;

}
.gallery_1 .gallery .image_container .item .image img{
	height:250px;
	width: 100%;
	object-fit: cover;
}
.gallery_1 .gallery .image_container .item .image:hover img{
	transform: scale(1.5);
}
.gallery_1 .gallery .image_container .item .info{
	height:100px;
	width: 100%;
	text-align: center;
}
.gallery_1 .gallery .image_container .item .info h2{
	font-size: 20px;
	color: #00bfff;
	margin: 5px;
}
.gallery_1 .gallery .image_container .item .info h3{
	font-size: 15px;
	color: #000;
	line-height: 15px;
}

