*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

.hero{
	position: relative;
	width: 100%;
	height: 100vh;
	background: #D2B48C;
}

nav{
	display: flex;
	width: 84%;
	margin: auto;
	padding: 20px 0;
	align-items: center;
	justify-content: space-between;
}

nav ul li{
	display: inline-block;
	list-style: none;
	margin: 10px 20px;
}

nav ul li a{
	text-decoration: none;
	color: #A0522D;
	font-weight: bold;
	font-size: 25px;
}

nav ul li a:hover{
	color: #FFFFFF;
}

.detel{
	margin-left: 8%;
	margin-top: 13%;
}

.detel h1{
	font-size: 50px;
	color: #000000;
	margin-bottom: 20px;
}

span{
	color: #A0522D;
}

.detel p{
	color: #000000;
	line-height: 22px;
}

.images{
	width: 45%;
	height: 80%;
	position: absolute;
	bottom: 0;
	right: 100px;
}

.images img{
	height: 100%;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: bottom 1s, left 1s;
}

.images:hover .shape{
	bottom: 40px;
}

.images:hover .boy{
	left: 45%;
}