body {
	font-family: 'Montserrat', sans-serif;

	font-size: 15px;
	line-height: 1.6;
	color: #333;

}

*,
*:before,
*:after {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}


/*Container*/

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/*Intro*/

.intro {
	width: 100%;
	height: 100vh;
	background: 
	url(intro.jpg) center no-repeat;
	-webkit- background-size: cover;
	background-size: cover;
}

/*Header*/
.header {
	width: 100%;
	padding-top: 30px;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;

}

.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;

}


.header_logo {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
}

/*Nav*/

.nav {
	font-size: 14px;
	text-transform: uppercase;
}

.nav_link {
	display: inline-block;
	vertical-align: top;
	margin: 0 13px;
	position: relative;

	color: #fff;
	text-decoration: none;

	transition: color .1s linear;
}
.nav_link:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;

	

	background-color: #fce38a;
	opacity: 0;

	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;

	transition: opacity .1s linear;
}


.nav_link:hover {
	color: #fce38a;

}

.nav_link:hover:after {
	opacity: 1;
}

