/** @format */

.wrapper_gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	overflow: hidden;
}

.wrapper_gallery img {
	margin-bottom: 0px;
	object-fit: cover;
	transition: 0.5s;
}

.lightbox {
	position: fixed;
	height: 80vh;
	z-index: 1000;
	box-shadow: 10px 10px 50px black;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;

	transition: 1s;
}

.lightbox img {
	height: 100%;
}
.light_overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
	display: none;
	/* transform: scale(0); */
	background-color: rgba(0, 0, 0, 0.658);
	transition: 1s;
}

.portrait {
	width: 33%;
}
.landscape {
	width: 100%;
}

/* ==================================================================== */

@media only screen and (max-width: 1025px) {
	.portrait {
		width: 100%;
	}

	.portrait img {
		padding-bottom: 10px;
	}
	.wrapper_gallery {
		margin-bottom: 5px;
	}
	.wrapper_gallery:first-of-type {
		display: none;
	}
}
