.goback {
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 1.25rem;
	margin: 20px 0 ;
}
.goback img {
	width:30px;
	margin-right: 10px;
}
.gallery {
	margin: 40px 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	list-style: none;
	align-items: center;
	justify-content: center;
}
.gallery li {
	height: 250px;
	text-align: center;
	overflow: hidden;
}
.gallery li img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	transition: all .5s ease-in-out;
}
.gallery .photo:hover img {
	transition: all .5s ease-in-out;
	transform: scale(1.1);
}
.adsense {
	grid-column: span 4;
	grid-row: 2;
}
.photo {
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: relative;
	background-color: unset;
	display: block;
	z-index: unset;
}
.photo img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
}
.closeZoom {
	display: none;
	position: absolute;
	top: 10px;
	right: 30px;
	cursor: pointer;
}
.next {
	display: none;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	cursor: pointer;
}
.prev {
	display: none;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	cursor: pointer;
}
.photoscopyright {
	font-size: 12px;
	display: flex;
}
.photoscopyright svg {
	width: 20px;
	height: 20px;
	margin-left: 5px;
}
.photo-info {
	position: absolute;
	bottom: 20px;
	color: #fff;
	display: none;
}
.photo-info a {
	color: #fff;
}
.photo-author {
	text-transform: capitalize;
}
.photo-open .photo-info {
	display: block;
}
.photo-open {
	position :fixed;
	left :0;
	top :0;
	background-color :rgba(0,0,0,0.8);
	display :flex;
	align-items :center;
	justify-content :center;
	z-index: 10000;
	width :100%;
	height :100%;
}
.gallery .photo-open img {
	max-width: 100%;
	max-height: 100%;
	width :auto;
	height :auto;
}
@media (max-width: 1060px) {
	.adsense {
		grid-column: span 3;
	}
}

@media (max-width: 790px) {
	.adsense {
		grid-column: span 2;
	}
}

@media (max-width: 500px) {
	.adsense {
		grid-column: span 1;
	}
}