/*gallery*/
#gallery {
	min-height: 80vh;
}
.gallery__container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.gallery__row a {
	display: block;
}
.gallery__row {
	display: flex;
	justify-content: space-between;
}
.gallery__row:not(:last-child) {
	padding-bottom: 5rem;
}
.gallery__column {
	border: 1px solid #8395a7;
	border-radius: 2rem;
	flex-basis: 45%;
	transition: background-color ease 0.3s;
}
.gallery__column:hover {
	background-color: #8395a755;
}
.gallery__column:hover img {
	opacity: 1;
}
.gallery__column img {
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
	width: 100%;
	height: 40rem;
	object-fit: cover;
	opacity: 0.7;
	transition: opacity ease 0.3s;
}
.gallery__text {
	padding: 2rem;
	background-image: url(../../img/misc/tile.jpg);
	border-bottom-left-radius: 2rem;
	border-bottom-right-radius: 2rem;
	height: auto;
}


/*extra*/
.header {
	background-image: linear-gradient(#222f3edd,#222f3edd), url(../../img/backgrounds/bg-3.jpg) !important;
}