/* START GENERAL */
.clear{
	clear: both;
}
img{
	display: block;
}
img.full{
	width: 100%;
	height: auto;
}
.left{
	float: left;
	width: 50%;
	padding: 20px;
	box-sizing: border-box;
}
.right{
	float: right;
	width: 50%;
	padding: 20px;
	box-sizing: border-box;
}

/* DESING CONTENT */
#wrapper{
	max-width: 1280px;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 1);
	box-sizgin: border-box;
	font-size: 16px;
	line-height: 1.4;
}
#wrapper i{
	font-size: 14px;
}
#wrapper section, #wrapper .section{
	height: 100vh;
	padding: 5% 50px;
	box-sizing: border-box;

}
.intro{
	text-align: center;
}
.intro h1{
	margin: 0 ;
	padding: 10px;
}
.button{
	display: inline-block;
	box-sizing: border-box;
	padding: 7px 19px;
	background-color: rgba(120, 180, 120, 1);
	border-radius: 50px;
	text-align: center;
	color: rgba(255, 255, 255, 1);
	transition: all 0.3s;
}
.button:hover{
	cursor: pointer;
	background-color: rgba(90, 150, 90, 1);
	transition: all 0.3s;
}
.button p{
	margin: 0;
	padding: 0;
}
img.full{
	box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 1);
}