/*gallery*/
#gallery-t {
	min-height: 100vh;
}
.gallery-t_template__container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.gallery-t__row {
	display: flex;
	justify-content: space-between;
}
.gallery-t__row:not(:last-child) {
	padding: 0 0 5rem 0;
}
.gallery-t__column {
	flex-basis: 48%;
	transition: all ease 0.3s;
	border-radius: 2rem;
	height: auto;
}
.gallery-t__image {
	background-color: #222f3e;
	border-radius: 2rem;
}
.gallery-t__image:not(:last-child) {
	margin-bottom: 5rem; 
}
.gallery-t__column img {
	width: 100%;
	object-fit: cover;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	border-radius: 2rem;
}
.gallery-t__column img:hover {
	opacity: 1;
}

/*extra*/
.header {
	background-image: linear-gradient(#222f3edd,#222f3edd), url(../../img/backgrounds/bg-4.jpg) !important;
}