body {
	background-color: #0b0b0b;
	margin: 0;
	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 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background: url(../fon1.jpg) no-repeat;
	-webkit- background-size: cover;
	background-size: cover;
}

.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 {
	text-shadow: 1px 1px 2px yellow, 0 0 1em;
	color: white;
	font-family: 'Abril Fatface';
	text-align: center;
	font-size: 100px;
	font-weight: 700;
	color: #222222;
	margin: 0 auto 0;
}

.nav {
	font-size: 32px;
	text-transform: uppercase;
}
.nav__link {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	display: inline-block;
	vertical-align: top;
	margin: 0 32px 0;
	position: relative;

	color: gray;
	text-decoration: none;

	transition: color .1s linear;
}

.nav__link:after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	opacity: 0;

	background-color: #fff;

	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;

	transition: opacity .1s linear;
}


.nav__link:hover {
	color: #fff;
}


.nav__link:hover:after {
	opacity: 1;
} 

.btn {
	display: inline-block;
	vertical-align: top;
	padding: 8px 30px;
	margin-top: 500px;
	margin-left:400px;

	border: 3px solid #222222;

	font-size: 14px;
	font-weight: 700;
	color: #97978f;
	text-transform: uppercase;
	text-decoration: none;

	transition: background .1s linear, color .1s linear;

}

.btn:hover {
	background-color: #97978f;
	color: black;
}




.slider {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.slider__item {
	width: 23%;
	padding: 20px 0;
	position: relative;

	border-top: 3px solid #fff;
	opacity: .7;

	font-size: 18px;
	color: #fff;

	text-transform: uppercase;
}

.slider__item.active:before {
	content: "";
	display: block;
	width: 70px;
	height: 3px;

	background-color: #00ffff;

	position: absolute;
	top: -3px;
	left: 0;
	z-index: 1;
}

.slider___item.active {
	opacity: 1;
}

.slider__num {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.section {
	padding: 80px 0;

}
.section__header {
	width: 100%;
	max-width: 950px;
	margin: 0 auto 40px;

	text-align: center;

}

.section__suptitle {
	font-size: 50px;
	color: #fff;
	margin: 0 auto 40px;
}

.section__title {
	font-size: 72px;
	font-weight: 700;
	color: #fff
}

.section__title:after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 40px auto;

	background-color: red;
}
.search-box 
{
	float: right;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%,50%);
	background: #2f3640;
	border-radius: 40px;
	padding: 10px;
}

.search-btn {
	color: #fff;
	float: right;;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #2f3640;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.search-box:hover > .search-txt 
{
	width: 240px;
	padding: 0 6px;
}
.search-box:hover > .search-btn {
	background: gray;
}
.search-txt 
{
	float: right;
	border: none;
	background: none;
	outline: none;
	float: left;
	padding: 0;
	color: white;
	font-size: 16px;
	transition: 0.4s;
	line-height: 40px;
	width: 0px;
	transition: 0.4s;
}
.about {
	margin: 100px auto 70px;
	display: flex;
	justify-content: space-between;

}
.about__item {
	width: 670px;
	position: relative;
}

.comment {
	background: #0b0b0b;
	margin: 0px auto 0px;
	color: #fff;
	font-size: 50px;
	font-weight: 700px;
	max-width: : 950px;
	width: 900px;
	text-decoration: none;
}
.about__item:hover .about__img {
	transform: translate3d(-10px, -10px, 0);
}

.about__item:hover .about__img img {
	opacity: .1;
}
.about__item:hover .about__text {
	opacity: 1;
}

.about__img {
	background: linear-gradient(to bottom, #00dbde, #fc00ff);
	transition: transform .1s linear;
}

.about__img img {
	display: block;
	transition: opacity .1s linear;
}

.about__text {
	width: 100%;
	font-size: 72px;
	color: #333;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	opacity: 0;

	position: absolute;
	top: 40%;
	left: 0;
	z-index: 2;
	transform: translate3d(0, -50%, 0);

	transition: opacity .1s linear;
	text-decoration: none;
}
