body {
	margin: 0;
	font-family: 'Cinzel', 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 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100vh;

	background: 
	url("../images/intro3.jpg") center
	no-repeat;
	-webkit-background-size: cover;
	background-size: 45%;

}

.intro_inner {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;

	text-align: center;

}


.intro_title {
	color: #000;
	font-size: 80px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	opacity: 0.2;


}



/* Header */
.header {
	width: 100%;
	padding-top: 10px;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header_inner {
	display: flex;
	justify-content:space-around;
	align-items: flex-start;
}
.logo {



}
	

/* Nav */
.nav {
	font-size: 18px;
	text-transform: uppercase;
}

.nav_link {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px;
	position: relative;
	
	color: #000;
	text-decoration: none;

	transition: color .1s linear;

} 

.nav_link:hover {
	color: #ffe449;
}


/* Button */
.btn {
	display: inline-block;
	vertical-align: top;
	padding: 8px 30px

	border: 3px solid #000;

	font-size: 14px;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	text-decoration: none;

	transition: background .1s linear, color .1s linear;

}
.btn:hover {
	background-color: #000;
	color: #333;

}

/* Slider */

.slider {
	width: 100%;

	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	visibility: hidden;
}

.slider_inner {
	display: flex;
	justify-content: space-between;
}	

.slider_item {
	width: 20%;
	padding: 20px 0;
	position: relative;

	border-top: 1px solid #000;
	opacity: 0.7;

	font-size: 18px;
	color: #000;
	text-transform: uppercase;


}

.slider_item.active {
	opacity: 1;
}

.slider_item.active:before {
	content: "";
	display: block;
	width: 70px;
	height: 1px;

	position: absolute;
	top: -1px;
	left: 0;
	z-index: 1;

	background-color: #ffe449;
}

.slider_num {
	font-size: 25px;
	font-weight: 700;

}

/* Section */
.section {
	padding: 80px 0;


}

.section_header {
	width: 100%;
	max-width: 950px;
	margin: 0 auto 40px;

	text-align: center;


}

.section_subtitle {
	font-size: 25px;
	color: #000;
}

.section_title {
	font-size: 60px;
	color: #000;
	text-transform: uppercase;

	transition: color .6s linear;

}
.section_title:hover {
	color: #cf1500
}
.section_title:after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 40px auto 40px;

	background-color: #ffe449

}
.section_text {
	font-size: 15px;
	color: #333
	text-transform: uppercase;

}
/* About */
.about {
	margin-top: 80px;
	display: flex;
	justify-content: space-between;

}
.about_item {
	width: 380px;
	background-color: #cf1500;
	position: relative;
	
}

.about_item:hover .about_img {
	transform: translate3d(-2px, -2px, 0);

}

.about_item:hover .about_img img {
	opacity: .3

}
.about_item:hover .about_text {
	opacity: 1;
}

.about_img {
	background: linear-gradient(to bottom, #434343, #000000);

	transform: transform .2s linear;

}

.about_img img {
	display: block;
	transition: opacity .1s linear;
}

.about_text {
	width: 100%;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	opacity: 0;

	position: absolute;
	top:50%;
	left: 0;
	z-index: 2;
	transform: translate3d(0, -50%, 0);

	transition: opacity .4s linear;


}