.big-h1 {
	font-size: 50px;
}
.txt-center {
	text-align: center;
}
.font-changer {
	font-family: "Fredericka the Great", cursive;
}

.accordionTurfu {
	display: flex;
	width: 100%;
	padding: 4% 2%;
	box-sizing: border-box;
	height: 50vh;
}

.box {
	flex: 1;
	overflow: hidden;
	transition: 0.5s;
	margin: 0 2%;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
	line-height: 0;
height: 100%;
}

.box img {
	width: 100%;
	height: calc(100% - 10vh)!important;
	object-fit: cover;
	transition: 0.5s;
}

.box span {
	font-size: 2vh;
	display: block;
	text-align: center;
	height: 10vh;
	line-height: 2;
	background-color: #d98f44;
	color: #fff;
    width: 100%;
}

.box:hover {
	flex: 1 1 50%;
}
.box:hover img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width:900px){

.accordionTurfu{
flex-direction:column;
}
.box{
height: 100vh;
margin-bottom: 15px;
}
.box img{
height: calc(100% - 5vh)!important;
}
.box span{
height:5vh;}
}