/* BANNER HOME */
.banner_home {
	height: 700px;
	position: relative;
	margin-bottom: 100px;
	background-position: center center;
	background-size: cover;
}

.banner_home .content {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	width: 500px;
}

.banner_home h1 {
	font-weight: 300;
	margin-bottom: 20px;
	text-align: center;
}

.banner_home p {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.banner_home a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid #fff;
	padding: 17px 35px;
	font-size: 13px;
	text-transform: uppercase;
	box-sizing: border-box;
	font-weight: 700;
	letter-spacing: 3px;
	transition: all ease 0.4s;
}

.banner_home a:hover {
	background: #fff;
	color: #1b1b1b;
}