*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.wraper{
	display: flex;
	width: 100%;
	min-height: 1000px;	
	background-color: #afbfa7;
}

.wraper_left {	
	width: 40%;
	height: inherit;
}
.wraper_right{
	display: flex;
	width: 60%;
	height: inherit;
}
.wraper_left>span{
	position: fixed;
	left: 150px;
	top:300px;
	color: white;
	font-size: 50px;
	font-weight: 500;
	text-transform: uppercase;	
}
.img_left{
	width: 50%;
	height: inherit;
}
.img_right{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	height: inherit;
}
.img_left>div,.img_right>div{
	width: 100%;
	height: 20%;	
}
.content>a>img{
	width: 100%;
	height: 100%;
	padding: 20px;
}
@media screen and (max-width: 1000px) {
	.wraper_left>span {
		position: static;
	}
	.wraper_left {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.wraper {
		flex-direction: column;
	}
	.wraper_left,
	.wraper_right {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.wraper_right {
		flex-direction: column;
	}
	.img_left,
	.img_right {
		width: 100%;
	}
}
.content>a>img:hover{
	border: 2px solid yellow;
	padding: 0px;
}
.mail{
	position: fixed;
	top:10px;
	left: 10px;
		
}
	