#page-content{
	overflow: hidden;
}

.slider{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	overflow: hidden;
}

.slider > :nth-child(2n){
	/*background-color: red;*/
}

.slide{
	min-width: 100vw;
	height: 100%;
	/*background-color: green;*/
	position: relative;
}


.slide > img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.slide > h3{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 50px;
}