body {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	color: #6c7279;
	margin: 0;
	background-color: #fff;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

p {
	padding: 0 0 10px;
}

.container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	text-decoration: none;
}

/*---===== button =====---*/
.btn {
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	border-radius: 2.0px;
	text-transform: uppercase;
	color: #ffffff;
	padding: 15px 44px;
	transition: background-color 0.4s;
	-webkit-transition: background-color 0.4s;
	-moz-transition: background-color 0.4s;
	-ms-transition: background-color 0.4s;
	-o-transition: background-color 0.4s;
}

.btn--red {
	background-color: #e84545;
}

.btn--red:hover {
	background-color: #ec2121;
}

/*---===== header =====---*/
header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	height: 100px;
	transition: all .9s;
	-webkit-transition: all .9s;
	-moz-transition: all .9s;
	-ms-transition: all .9s;
	-o-transition: all .9s;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 38px 0;
	border-bottom: 1px solid #515369;
}

.header--fixed {
	background-color: #31324ef5;
	position: fixed;
	z-index: 999;
}

.header,
.header--fixed {
	height: 68px;
}

.header--fixed .header__inner {
	padding: 20px 0;
	border-bottom: none;
}

/*---===== nav =====---*/
.nav__link {
	opacity: 0.74;
	font-family: Raleway;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	padding-left: 55px;
	transition: opacity .5s;
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-ms-transition: opacity .5s;
	-o-transition: opacity .5s;
}

.nav__link:first-child {
	padding-left: 0;
}

.nav__link:hover {
	opacity: 1;
}

.burger__menu {
	position: relative;
	top: 2%;
	right: 4%;
	display: none;
}

.burger__menu--item {
	position: absolute;
	top: -5px;
	left: -12px;
	width: 30px;
	height: 3px;
	background: #fff;
	z-index: 1;
}

.burger__menu--item:after,
.burger__menu--item:before {
	content: "";
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
	background: #fff;
}

.burger__menu--item:after {
	top: -8px;
}

.burger__menu--item:before {
	bottom: -8px;
}

/*---===== intro =====---*/
.intro {
	height: 750px;
	background: #30314d url("../img/intro-bg.jpg") center no-repeat;
	background-size: cover;
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.intro__title {
	font-family: 'OpenSans', sans-serif;
	font-size: 65px;
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	margin: 0 0 30px;
}

.intro__text {
	font-size: 22px;
	line-height: 1.5;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 6%;
}

.intro__inner {
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
}

/*---===== features =====---*/
.features {
	display: flex;
	padding: 6% 0;
	flex-wrap: wrap;
}

.features__item {
	width: 33.33333%;
	text-align: center;
	padding: 0 5%;
	margin: 2% 0;
}

.features__img {
	margin-bottom: 5%;
}

.features__title {
	font-weight: 700;
	text-transform: uppercase;
	color: #2d3033;
	margin-bottom: 3%;
}

.features__text {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: #6c7279;
}

/*---===== works =====---*/
.works {
	display: flex;
	flex-wrap: wrap;
}

.works__item {
	width: 25%;
	height: 350px;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;

}

.works__img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	z-index: 1;
	-webkit-transform: translate3d(-50%, -50%, 0);
	-moz-transform: translate3d(-50%, -50%, 0);
	-ms-transform: translate3d(-50%, -50%, 0);
	-o-transform: translate3d(-50%, -50%, 0);
}

.works__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	background-color: rgba(232, 69, 69, 0.9);
	opacity: 0;
	transition: opacity .4s linear;
	-webkit-transition: opacity .4s linear;
	-moz-transition: opacity .4s linear;
	-ms-transition: opacity .4s linear;
	-o-transition: opacity .4s linear;
}

.works__item:hover .works__content {
	opacity: 1;
}

.works__title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 2%;
	text-transform: uppercase;
	color: #ffffff;
}

.works__desc {
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
}

/*---===== team =====---*/
.team {
	margin: 10% 0 5%;
}

.team__inner {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.team__item {
	width: 25%;
	padding: 0 2%;
	margin-bottom: 2%;
}

.team__img {
	max-width: 100%;
	display: block;
	height: auto;
	margin-bottom: 5%;
}

.team__name {
	font-size: 22px;
	font-weight: 400;
	color: #2d3033;
}

.team__prof {
	display: block;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	color: #e84545;
	margin: 3% 0 5%;
}

.team__desc {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: #6c7279;
}

/*---===== social =====---*/
.social {
	display: flex;
}

.social__item {
	border: 1.0px solid #e8ecee;
	transition: all 0.5s linear;
	padding: 4px 4px;
	margin: 1% 1%;
}

.social__item:hover {
	border: 1px solid #0378ff;
}

/*---===== reviews =====---*/
.reviews {
	background-color: #53354a;
	overflow: hidden;
}

.reviews__item {
	display: flex;
	flex-wrap: wrap;
}

.reviews__content {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.reviews__photo {
	width: 50%;
	height: 500px;
	position: relative;
}

.reviews__img {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.reviews__text {
	font-family: initial;
	font-size: 36px;
	line-height: 1.1;
	font-weight: 400;
	font-style: italic;
	color: #ffffff;
	padding: 0 10%;
}

.reviews__autor {
	font-family: Raleway;
	font-size: 13px;
	line-height: 1.5;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	padding: 0 10%;
}

/*---===== download =====---*/
.download {
	padding: 6% 0 5%;
	text-align: center;
}

.download__title {
	font-size: 28px;
	line-height: 0.9;
	font-weight: 300;
	color: #2d3033;
}

.download__desc {
	display: block;
	font-size: 13px;
	text-align: center;
	line-height: 1.8;
	font-weight: 700;
	text-transform: uppercase;
	color: #2d3033;
	padding: 2% 0 3%;
}

/*---===== footer =====---*/
.footer {
	background-color: #3a3e64;
	padding: 6% 0 2%;
}

.footer__inner {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}

.footer__item {
	width: 33.33333%;
	padding: 0 2%;
}

.footer__item--desc {
	display: block;
}

.footer__item--title {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 4%;
}

.footer__social {
	display: flex;
	justify-content: center;
}

.footer__social--item {
	display: flex;
	justify-content: center;
	transition: all 0.5s linear;
	padding: 2% 4%;
	margin: 1% 1%;
	transition: border 0.4s linear;
	-webkit-transition: border 0.4s linear;
	-moz-transition: border 0.4s linear;
	-ms-transition: border 0.4s linear;
	-o-transition: border 0.4s linear;
}


.footer__item--desc {
	opacity: 0.5;
	font-family: Raleway;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: #ffffff;
}

.copyright {
	background-color: #313454;
	padding: 4% 2% 1%;
	line-height: 1.5;
	text-align: center;
}

.author {
	color: #14e7e7;
}

.copyright__text span {
	color: #fff;
}

/*---===== media =====---*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.works__item {
		width: 50%;
	}

	.works__img {
		width: 100%;
		height: 100%;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	nav {
		display: none;
		width: 100%;
		position: relative;
		top: 0;
		left: 0;
		background: #862020;
		flex-direction: column;
	}

	.nav--mobile {
		display: flex;
		width: 100%;
		position: absolute;
		padding: 5% 0 5%;
		align-items: center;
	}

	.nav--mobile .nav__link {
		font-size: 20px;
		line-height: 2.5;
		padding-left: 0;
	}

	.burger__menu {
		display: block;
	}

	.intro__title {
		font-size: 50px;
	}

	.reviews__img {
		right: -4%;
	}
}

@media only screen and (max-width : 874px) {
	.team__item {
		width: 50%;
		text-align: center;
	}

	.team__img {
		max-width: 100%;
		display: block;
		height: auto;
		margin: 0 auto;
		margin-bottom: 5%;
	}

	.social {
		display: flex;
		justify-content: center;
	}

	.team__desc {
		padding: 0 10%;
		font-size: 15px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.intro {
		height: 100vh;
		padding: 30px 0;
	}

	.intro__title {
		font-size: 45px;
		line-height: 1.4;
	}

	.features__item {
		width: 50%;
		margin: 2% 0 0;
	}

	.features {
		padding: 6% 0 0;
	}

	.works__img {
		width: 96%;
		height: 99%;
	}

	.works__content {
		width: 96%;
		position: inherit;
		margin: 0 auto;
		height: 100%;
	}



	.reviews__photo {
		width: 50%;
		height: auto;
		position: relative;
	}

	.reviews__img {
		right: -2%;
		width: 100%;
	}

	.reviews__text {
		font-family: initial;
		font-size: 20px;
		line-height: 1.1;
		font-weight: 400;
		font-style: italic;
		color: #ffffff;
		padding: 5% 14%;
	}

	.reviews__autor {
		font-size: 11px;
		padding: 3% 10%;
	}

	.download__title {
		font-size: 25px;
		line-height: 1.3;
		font-weight: 300;
		color: #2d3033;
		padding: 0 15px;
	}

	.footer__item--desc {
		font-size: 11px;
	}

	.footer {
		background-color: #3a3e64;
		padding: 6% 0 3%;
	}

	.footer__item--title {
		font-size: 12px;
		margin-bottom: 5%;
	}
}



@media only screen and (max-width : 576px) {
	.intro__title {
		font-size: 40px;
	}

	.works__item {
		width: 100%;
	}

	.works__img {
		width: 92%;
		height: 99%;
		padding: 0 3%;
	}

	.works__content {
		width: 87%;
		position: inherit;
		margin: 0 auto;
		height: 100%;
	}

	.team__item {
		width: 100%;
	}

	.team__img {
		margin: 3% auto;
	}

	.team__prof {
		margin: 1% 0 2%;
	}

	.reviews__item {
		display: flex;
		height: 485px;
		flex-direction: column;
		flex-wrap: wrap;
	}

	.reviews__photo {
		width: 100%;
		height: 299px;
	}

	.reviews__img {
		right: 0%;
		width: 100%;
	}

	.reviews__content {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.reviews__text {
		font-size: 22px;
		padding: 0% 12%;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.intro__title {
		font-size: 33px;
	}

	.intro__text {
		font-size: 20px;
	}

	.features__item {
		width: 100%
	}

	.reviews__photo {
		width: 100%;
		height: 53%;
	}

	.reviews__text {
		font-size: 22px;
		text-align: center;
		padding: 0% 1%;
	}

	.reviews__autor {
		font-size: 11px;
		padding: 2% 5% 0px;
	}

	.reviews__item {
		height: 402px;
	}

	.download__title {
		font-size: 21px;
	}

	.download__desc {
		font-size: 11px;
		padding: 5% 0 5%;
	}

	.btn {
		padding: 10px 33px;
	}

	.footer__item {
		width: 50%;
		padding: 0% 2% 0%;
	}

	.footer__item:first-child {
		font-size: 11px;
		margin-bottom: 6%;
	}

	.copyright__text {
		font-size: .9em;
		margin-bottom: 2%;
	}

	.header__inner {
		border-bottom: none;
	}
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
	.intro__title {
		font-size: 19px;
	}

	.intro__text {
		font-size: 16px;
	}

	.reviews__photo {
		width: 100%;
		height: 50%;
	}

	.reviews__item {
		height: 388px;
	}

	.reviews__text {
		font-size: 19px;
	}

	.reviews__autor {
		font-size: 10px;
		padding: 0;
	}

	.download__title {
		font-size: 17px;
	}

	.btn {
		padding: 8px 21px;
	}

	.footer__item {
		width: 100%;
		padding: 0% 2% 0%;
	}

	.footer__social--item {
		padding: 2% 2%;
	}

	.footer__item--title {
		font-size: 12px;
		margin-bottom: 2%;
	}

	.footer__social {
		margin-bottom: 4%;
	}
}

@media only screen and (max-height : 420px) {

	.intro {
		padding: 0;
	}

	.intro__title {
		font-size: 18px;
		margin-top: 17%;
	}

	.intro__text {
		font-size: 16px;
		line-height: 1.5;
		font-weight: 400;
		color: #ffffff;
		margin-bottom: 1%;
	}

	.btn {
		padding: 7px 19px;
	}
}