					/* ОБНУЛЕНИЕ */
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display:none;}
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
ul li{list-style:none;}
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
					/* CONTAINER */
.container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

@media (max-width:1200px){
	.container{
		max-width: 970px;
	}
}
@media (max-width:992px){
	.container{
		max-width: 750px;
	}
}
@media (max-width:767px){
	.container{
		max-width: none;
	}
}
					/* HEADER */
body{
	background-color: #000;
}

.header{
	height: 100vh;
	background-image: url(../img/bg/background.gif);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.header__wrapper{
	background-color: rgba(0, 0, 0, .7);
	height: 100%;
}

.header .container{
	height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
	text-align: center;
}

.nav-left,
.nav-center,
.nav-right{
	width: 33.33%;
}

.nav-left,
.nav-right{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-around;
	-ms-align-items: center;
	align-items: center;
}

.nav-item{
	display: inline-block;
	font-family: 'BebasNeueCyrillic';
	letter-spacing: 2px;
	font-size: 20px;
	color: #fff;
	transition: all .3s linear;
	padding: 10px;
	cursor: pointer;
}

.nav-item:nth-of-type(1){
	white-space: nowrap;
}

.nav-item:hover{
	transform: translate(0, 3px);
	color: #fa9006;
	transition: all .3s linear;
}

.nav-item::before{
	margin-bottom: 40px;
	display: block;
	content: "";
	background-color: #fa9006;
	width: 100%;
	height: 1px;
	transition: all .3s linear;
	opacity: 0;
}

.nav-item:hover::before{
	opacity: 1;
	transform: translate(0, 30px);
}

.nav-item::after{
	margin-top: 40px;
	display: block;
	content: "";
	background-color: #fa9006;
	width: 100%;
	height: 1px;
	transition: all .3s linear;
	opacity: 0;
}

.nav-item:hover::after{
	opacity: 1;
	transform: translate(0, -30px);
}

.nav-center img{
	width: 100%;
	animation: logo 1.5s ease infinite normal 0s none;
}

.header__slogan{
	font-family: 'BebasNeueCyrillic';
	font-size: 35px;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	padding-bottom: 200px;
	letter-spacing: 2px;
}

.header__bottom{
	margin-bottom: 50px;
	text-align: center;
}

.header__icon-down{
	display: inline-block;
	color: #333;
	padding: 15px 18px;
	background-color: #fff;
	border-radius: 100%;
	cursor: pointer;
	transition: all .3s linear;
	animation: header-icon 1s ease infinite normal 2s none;
	font-size: 15px;
}

.header__icon-down:hover{
	color: #fa9006;
	background-color: #000;
	animation-play-state: paused;
	transition: all .3s linear;
}

@keyframes header-icon{
	0%{

	}
	50%{
		transform: translate(0, 20px);
	}
	100%{

	}
}

@keyframes logo{
	0%{
		-webkit-transform: scale3d(1, 1, 1);
   		transform: scale3d(1, 1, 1);
	}
	50%{
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
    	transform: scale3d(1.05, 1.05, 1.05);
	}
	100%{
		-webkit-transform: scale3d(1, 1, 1);
    	transform: scale3d(1, 1, 1);
	}
}

@media (max-width:992px){
	.nav-item{
		font-size: 15px;
	}
}
@media (max-width:767px){
	.nav-center{
		display: none;
		width: 0;
	}
	.nav-left,
	.nav-right{
		width: 50%;
	}
}
@media (max-height:600px){
	.header{
		height: 600px;
	}
}
					/* Переходы */
.transition{
	height: 200px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
}

.header-s1{
	background-image: url(../img/bg/1.png);
}

.s2-s3{
	background-image: url(../img/bg/3.png);
}

@media (max-width:767px){
	.transition{
		height: 150px;
	}
}
					/* ABOUT */
.s1{
	padding: 100px 0 50px 0;
}

.section__headline{
	font-family: 'BebasNeueCyrillic';
	font-size: 45px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.section__text{
	font-size: 19px;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	line-height: 1.2;
	margin: 30px 0 60px 0;
}

.s1__row{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
}

.s1__row-item{
	width: 30%;
	height: 35vh;
	position: relative;
	border: solid 2px #fa9006;
	cursor: pointer;
}

.s1__row-item img{
	width: 100%;
	height: 100%;
}

.s1__row-blackout{
	opacity: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba( 0, 0, 0, .8);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	color: #fff;
	font-family: 'BebasNeueCyrillic';
	font-size: 23px;
	transition: all .3s linear;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.s1__row-blackout:hover{
	opacity: 0;
	font-size: 0;
	transition: all .3s linear;
}
@media (min-width:1280px){
	.s1__row-item{
		height: 347px;
	}
}

@media (max-width:1200px){
	.s1__row-blackout{
		font-size: 20px;
	}
}
@media (max-width:992px){
	.s1__row-item{
		width: 32%;
		height: 250px;
	}
	.s1__row-blackout{
		font-size: 16px;
	}
	.s1{
		padding: 50px 0 25px 0;
	}
}
@media (max-width:767px){
	.s1__row{
		flex-wrap: wrap;
	}
	.s1__row-item{
		margin: 0 auto 20px auto;
		width: 300px;
	}
}
					/* WORKS */
.s2{
	padding: 50px 0 100px 0;
}

.s2__headline{
	color: #fff;
}

.s2__works{
	margin-top: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}

.s2__works-item{
	width: 30%;
	margin-bottom: 30px;
	text-align: center;
}

.s2__vid{
	height: 60%;
}

.s2__title{
	margin: 20px 0 10px 0;
	font-family: 'BebasNeueCyrillic';
	font-size: 30px;
	text-transform: uppercase;
	color: #fa9006;
}

.s2__subtitle{
	font-size: 20px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.3;
}

@media (max-width:992px){
	.s2{
		padding: 25px 0 50px 0;
	}
	.s2__works-item{
		width: 45%;
	}
}
@media (max-width:767px){
	.s2__works-item{
		width: 320px;
	}
}
@media (max-width:669px){
	.s2__works-item:nth-of-type(6),
	.s2__works-item:nth-of-type(7),
	.s2__works-item:nth-of-type(8),
	.s2__works-item:nth-of-type(9),
	.s2__works-item:nth-of-type(10){
		display: none;
	}
}
					/* RIVIEWS */
.reviews{
	padding: 50px 0 75px 0;
}

.reviews__slider{
	margin-top: 50px;
	padding: 0 50px;
	position: relative;
}

.slider__item{
	height: 600px;
}

/* Слайдер */
.slick-slider{}
/* Слайдер запущен */
.slick-slider.slick-initialized{}
/* Слайдер с точками */
.slick-slider.slick-dotted{}
/* Ограничивающая оболочка */
.slick-list {
	overflow: hidden;
}
/* Лента слайдов */
.slick-track{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
/* Слайд */
.slick-slide{}
/* Слайд активный (показывается) */
.slick-slide.slick-active{}
/* Слайд основной */
.slick-slide.slick-current{}
/* Слайд по центру */
.slick-slide.slick-center{}
/* Клонированный слайд */
.slick-slide.slick-cloned{}
/* Стрелка */
.slick-arrow{
	position: absolute;
	top: 50%;
	z-index: 10;
	font-size: 0;
	width: 37px;
	height: 30px;
	margin-top: -15px;
	opacity: .7;
	transition: all .3s linear;
	background-color: #fff;
}
.slick-arrow:hover{
	opacity: 1;
	transition: all .3s linear;
}
/* Стрелка влево */
.slick-arrow.slick-prev{
	left: 0px;
	background: url('../img/angle-double-left-solid.png') 0 0 / 100% no-repeat;
}
/* Стрелка вправо */
.slick-arrow.slick-next{
	right: 0px;
	background: url('../img/angle-double-right-solid.png') 0 0 / 100% no-repeat;
}
/* Стрелка не активная */
.slick-arrow.slick-disabled{}
/* Точки (булиты) */
.slick-dots{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.slick-dots li{
	margin: 20px 10px 0 10px;
}
/* Активная точка */
.slick-dots li.slick-active button{
	background-color: #fa9006;
	border: solid 3px #fff;
}
/* Элемент точки */
.slick-dots li button{
	font-size: 0px;
	padding: 5px;
	border: solid 3px rgba(0, 0, 0, 0);
	background-clip: padding-box;
	border-radius: 50%;
	background-color: #333;
	transition: all .3s linear;
}

@media (max-width:1200px){
	.slider__item{
		height: 500px;
	}
}
@media (max-width:992px){
	.slider__item{
		height: 400px;
	}
}
@media (max-width:767px){
	.slick-arrow{
		top: 97.5%;
	}
	.reviews__slider{
		padding: 0;
	}
	.slick-dots li{
		margin: 10px 5px 0 5px;
	}
	.reviews{
	padding: 0px 0 50px 0;
}
}
@media (max-width:640px){
	.slider__item{
		height: 300px;
	}
}
@media (max-width:380px){
	.slider__item{
		height: 250px;
	}
	.slick-dots li{
		margin: 10px 2px 0 2px;
	}
}
					/* TEAM */
.s3{
	padding: 100px 0 75px 0;
	background-color: #222;
}

.s3__team{
	margin-top: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-around;
}

.s3__member{
	width: 20%;
}

.s3__photo{
	border-radius: 100%;
}

.s3__photo img{
	width: 100%;
	height: 100%;
	border-radius: 100%;
}

.s3__name{
	margin: 40px 0 15px 0;
	text-align: center;
	font-size: 25px;
	font-family: "BebasNeueCyrillic";
	text-transform: uppercase;
	color: #fa9006;
}

.s3__place{
	font-size: 19px;
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	color: #fff;
	text-align: center;
}

.s3__icons{
	margin-top: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: center;
}

.s3__icon{
	color: #fff;
	font-size: 20px;
	margin-right: 10px;
	transition: color .3s linear;
}

.s3__icon:last-of-type{
	margin-right: 0;
}

.s3__icon:hover{
	transition: all .3s linear;
    color: #fa9006;
}

@media (max-width:992px){
	.s3__name{
		font-size: 20px;
	}
	.s3__place{
		font-size: 10px;
	}
	.s3{
		padding: 50px 0 50px 0;
	}
}
@media (max-width:767px){
	.s3__member{
 	   width: 35%;
	}
	.s3__member:nth-of-type(1),
	.s3__member:nth-of-type(2){
		margin-bottom: 20px;
	}
	.s3__team{
		flex-wrap: wrap;
	}
	.s3__name{
		font-size: 16px;
	}
}
					/* COOPERATION */
.s4{
	padding: 75px 0 100px 0;
}

.s4__coop{
	margin-top: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.s4__coop-member{
	width: 30%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

.s4__photo img{
	width: 100%;
	border-radius: 100%;
}

.s4__photo{
	width: 110px;
	height: 110px;
	border-radius: 100%;
}

.s4__text{
	padding: 0px 0px 0px 15px;
}

.s4__name{
	padding: 15px 0 10px 0;
	color: #fa9006;
	font-size: 25px;
	font-family: "BebasNeueCyrillic";
	text-transform: uppercase;
}

.s4__about{
	padding-bottom: 10px;
	font-size: 16px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

.s4__links{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

.s4__link{
	color: #fff;
	font-size: 18px;
	margin-right: 10px;
	transition: color .3s linear;
}

.s4__link:last-of-type{
	margin-right: 0;
}

.s4__link:hover{
	color: #fa9006;
	transition: all .3s linear;
}

@media (max-width:992px){
	.s4__coop{
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.s4__coop-member{
    	width: 45%;
    	margin-bottom: 10px;
	}
	.s4__coop-member:last-of-type{
		margin-bottom: 0;
	}
	.s4{
		padding: 50px 0 50px 0;
	}
}
@media (max-width:767px){
	.s4__coop-member{
    	width: 100%;

	}
}
					/* FOOTER */
.footer{
	padding: 50px 0 30px 0;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	background-image: url(../img/bg/2.png);
}

.footer .container{
	max-width: 600px;
}

.footer__row{
	margin-top: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: flex-end;
	align-items: flex-end;
}

.footer__logo{
	width: 105px;
	margin-right: 20px;
}

.footer__logo img{
	width: 100%;
}

.footer__links{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.footer__links p{
	margin-bottom: 10px;
	font-size: 33px;
	font-family: 'BebasNeueCyrillic';
	color: #fff;
	text-transform: uppercase;
}

.footer__link{
	color: #fff;
	font-size: 30px;
	transition: color .3s linear;
	padding: 10px;
	border: solid 2px #fa9006;
	border-radius: 10px;
	margin-bottom: 10px;
}

.footer__link:last-of-type{
	margin-bottom: 0;
}

.footer__link span{
	font-size: 20px;
	margin-left: 3px;
}

.footer__link:hover{
	color: #fa9006;
	transition: color .3s linear;
}

@media (max-width:992px){
	.footer{
		padding: 25px 0;
	}
	.section__text{
		margin: 25px 0 40px 0;
	}
}
@media (max-width:500px){
	.footer__logo{
		width: 80px;
	}
	.footer__link{
		font-size: 20px;
	}
	.footer__link span{
		font-size: 14px;
		margin-left: 0px;
	}
}