body { margin: 0; }
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
pre { margin: 0; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
h1,
h2,
h3,
h4,
h5,
h6 { margin: 0; font-weight: 500; }
b { font-weight: 500; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; margin: 0; padding: 0; outline: none; background: transparent; }
input,
textarea { width: 100%; border: 0; margin: 0; padding: 0; outline: none; -webkit-appearance: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; }
textarea { resize: vertical; }


@font-face {
  font-family: Nexa;
  src: url(../font/nexa-bold.otf);
  font-weight: bold;
}

@font-face {
  font-family: Nexa;
  src: url(../font/nexa-light.otf);
  font-weight: lighter;
}


body {
	background: #262626;
	font-family: Nexa, Arial;
	-webkit-font-smoothing: antialiased;
}

/* Header
 ----------------- */
.header {
	width: 100%;
	height: 100vh;
	/*height: 720px;*/
	min-height: 720px;
	min-width: 320px;
	background: #262626 url(../img/png/header-bg.png) no-repeat center center/cover;
	position: relative;
	background-attachment: fixed;
    	background-position: center;
    	background-repeat: no-repeat;
    	background-size: cover;
}

.header-menu-trigger {
	display: none;
	position: absolute;
	z-index: 130;
	width: 35px;
	top: 25px;
	right: 20px;
	cursor: pointer;
}
.header-menu-trigger:before,
.header-menu-trigger:after,
.header-menu-trigger span {
	content: '';
	width: 100%;
	height: 3px;
	background: #fff;
	display: block;
	margin-bottom: 13px;
}
.header-menu-trigger:after {
	margin-bottom: 0;
}

/* Header Overlay
 ----------------- */
.header:before {
	content: '';
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(38, 38, 38, .6);
}

.header .header-wrap {
	width: 1280px;
	padding: 0 100px;
	margin: 0 auto;
}

/* Header Content
 ----------------- */
.header-logo {
	position: absolute;
	z-index: 110;
	top: 31px;
	left: calc(50% - (142px/2));
}
.header-logo a {
	display: block;
	font-size: 0;
	color: transparent;
	width: 142px;
	height: 82px;
	background: url(../img/svg/logo.svg) no-repeat center center/cover;
}

.header-nav {
	padding-top: 48px;
	position: relative;
	z-index: 120;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}
.header-nav .header-nav--side {
	display: flex;
	align-items: center;
	padding-top: 4px;
}
.header-nav a {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	display: block;
	margin-right: 40px;
}
.header-nav a.outline {
	color: #212121;
	text-align: center;
	background: #fff;
	line-height: 46px;
	min-width: 166px;
	margin-top: -5px;
}
.header-nav .header-nav--side:first-child a {
	margin-right: 57px;
}
.header-nav a:last-child {
	margin-right: 0 !important;
}

.header-title {
	color: #fff;
	width: 80%;
	position: relative;
	z-index: 120;
	font-family: Nexa;
	text-align: center;
	/*padding-top: 300px;*/
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.header-title h1 {
	font-size: 38px;
	font-weight: bold;
}
.header-title p {
	font-size: 17px;
	font-weight: lighter;
	margin-top: 14px;
}

.header-mouse {
	position: absolute;
	z-index: 120;
	bottom: 47px;
	left: calc(50% - (28px/2));
	width: 28px;
	height: 69px;
	background: url(../img/svg/mouse.svg) no-repeat center center/cover;
	animation: sd 1s infinite;
	cursor: pointer;
}

@-webkit-keyframes sd {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	5% {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes identifier {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	5% {
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}



@media screen and (max-width: 1280px) {

	.header .header-wrap {
		width: 100%;
	}

}

@media screen and (max-width: 1024px) {

	.header {
		min-height: 1024px;
		padding-bottom: 160px;
	}

	.header .header-wrap {
		padding: 0 50px;
	}

	.header-nav a {
		font-size: 18px;
	}
	.header-nav a.outline {
		min-width: 132px;
	}

}

@media screen and (max-width: 768px) {

	.header-nav {
		display: none;
	}

	.header-menu-trigger {
		display: block;
	}

	.header {
		min-height: 640px;
	}

	.header .header-wrap {
		padding: 0 20px;
	}

	.header-title h1 {
		font-size: 24px;
	}

	.header-title {
		/*padding-top: 270px;*/
		/*padding-top: 70%;*/
	}

	.header-logo {
		top: 21px;
	}

}

/* Sections
 ----------------- */
.section {
	color: #212121;
	background: #fff;
	width: 100%;
	min-width: 320px;
	padding-top: 91px;
}
.section .section-wrap {
	width: 1280px;
	margin: 0 auto;
}

.section.services {
	padding-bottom: 83px;
}
.section.cases {
	padding-top: 50px !important;
}

@media screen and (max-width: 1280px) {

	.section .section-wrap {
		width: 100%;
	}

}

@media screen and (max-width: 768px) {

	.section {
		padding-top: 70px;
	}

	.section .section-wrap {
		padding-left: 40px;
		padding-right: 40px;
	}

}

@media screen and (max-width: 414px) {

	.section .section-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

}

.section h1 {
	font-size: 32px;
	line-height: 130%;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 768px) {

	.section h1 {
		font-size: 24px;
	}
	.section h1 br {
		display: none;
	}

}



.side-content {
	font-family: Lato;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 60px;
}

.side-content--main {
	background: #f8fafb;
	width: 555px;
	padding: 36px 100px 40px 36px;
}
.side-content--main .hidden:not(.selected) {
	display: none;
}
.side-content--main h4 {
	color: #212121;
	font-size: 20px;
	font-weight: bold;
	line-height: 178.2%;
}
.side-content--main p {
	color: #8698a3;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	margin-top: 11px;
}

.side-content--main .content-menu--item {
	display: none;
}

.side-content .content-main--item:not(:last-child) {
	margin-bottom: 52px;
}

.side-content--menu {
	width: 695px;
}
.side-content--menu .content-menu--item {

}
.side-content--menu h4 {
	color: #212121;
	font-size: 24px;
	font-weight: bold;
	line-height: 178.2%;
}
.side-content--menu p {
	color: #8698a3;
	font-weight: 400;
	font-size: 18px;
	line-height: 178.2%;
	margin-top: 7px;
}

.side-content--menu .selected h4:after {
	content: '';
	width: 13px;
	height: 14.73px;
	display: inline-block;
	vertical-align: middle;
	background: url(../img/svg/arrow.svg) no-repeat center center/cover;
	margin: -3px 0 0 10px;
}
.side-content--menu .selected h4 {
	color: #fff;
}
.side-content--menu .selected p {
	color: #fff;
}

.side-content--menu .content-menu--item {
	cursor: pointer;
	padding: 19px 120px 15px 103px;
	margin-bottom: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.side-content--menu .content-menu--item:last-child {
	margin-bottom: 0;
}

.side-content--menu .content-menu--item.selected {
	background: rgb(38, 38, 38) no-repeat center center/cover;
}
.side-content--menu .content-menu--item.selected:nth-child(1) {
	background-image: url(../img/png/items-bg-n1.png);
	background-attachment: fixed;
    	background-position: center;
    	background-repeat: no-repeat;
    	background-size: cover;
}
.side-content--menu .content-menu--item.selected:nth-child(2) {
	background-image: url(../img/png/items-bg-n2.png);
	background-attachment: fixed;
    	background-position: center;
    	background-repeat: no-repeat;
    	background-size: cover;
}
.side-content--menu .content-menu--item.selected:nth-child(3) {
	background-image: url(../img/png/items-bg-n3.png);
	background-attachment: fixed;
    	background-position: center;
    	background-repeat: no-repeat;
    	background-size: cover;
}


@media screen and (max-width: 1280px) {

	.side-content--menu {
		margin-right: 36px;
	}

	.side-content--menu .content-menu--item {
		padding-right: 34px;
		padding-left: 50px;
	}

	.side-content--main {
		padding: 25px;
	}

	.side-content--menu h4 {
		font-size: 22px;
	}

}

@media screen and (max-width: 768px) {

	.side-content--menu {
		display: none;
	}

	
	.side-content--main {
		padding: 0;
		width: 100%;
		background: transparent;
	}

	.side-content--main .hidden:not(.selected) {
		display: block !important;
	}

	.side-content--main .content-menu--item {
		display: block;
	}

	.side-content--main .hidden {
		background: #f8fafb;
		padding: 30px 20px;
		margin-bottom: 50px;
	}
	.side-content--main .hidden:last-child {
		margin-bottom: 0;
	}

	.content-menu--item {
		margin-bottom: 30px;
	}

}

.section.cases {
	padding-top: 134px;
	height: 100vh;
	min-height: 620px;
}
.section.cases .section-wrap {
	height: 100%;
}


.side-content--s {
	height: calc(100% - 81px);
	font-family: Lato, Arial;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding-bottom: 61px;
	position: relative;
}




.side-content--menu--s {
	padding: 30px 0 0 100px;
}
.side-content--menu--s .hidden {
	display: none;
	background: #f8fafb;
	padding: 30px 20px;
	color: #8698a3;
	font-size: 18px;
	line-height: 180%;
	margin-bottom: 24px;
}
.side-content--menu--s .hidden:last-child {
	margin-bottom: 0;
}
.content-menu--item--s {
	color: #8698a3;
	font-size: 22px;
	font-weight: 700;
	line-height: 200%;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.content-menu--item--s.selected {
	color: #212121;
}
.content-menu--item--s.selected:before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	width: 24px;
	height: 4px;
	display: block;
	background: #212121;
}

.side-content--main--s {
	width: 742px;
	background: #f8fafb;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 50px;
	padding: 30px 99px 28px 28px;
	overflow-x: hidden;
	overflow-y: auto;
}
.side-content--main--s p {
	color: #8698a3;
	font-size: 18px;
	font-weight: 400;
	line-height: 180%;
	margin-bottom: 33px;
}
.side-content--main--s p:last-child {
	margin-bottom: 0;
}

.content-main--item--s:not(.selected) {
	display: none;
}


@media screen and (max-width: 1280px) {

	.section.cases {
		min-height: 720px;
	}

	.side-content--menu--s {
		padding: 30px;
		margin-right: 460px;
	}
	
	.content-menu--item--s {
		line-height: 1.4;
		margin-bottom: 20px;
	}
	.content-menu--item--s:last-child {
		margin-bottom: 0;
	}

	.side-content--main--s {
		width: 460px;
		padding: 30px;
	}

}

@media screen and (max-width: 768px) {

	.side-content--menu--s {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.side-content--main .hidden {
		display: block;
	}
	.side-content--menu--s .hidden.selected {
		display: block;
	}

	.section.cases {
		min-height: auto;
		height: auto;
	}

	.side-content--main--s {
		display: none;
	}

}


.section.contacts {
	color: #fff;
	background: #262626;
	padding-top: 65px;
}
.section.contacts .section-wrap {
	width: 980px;
}
.section.contacts h1 {
	color: #fff;
}
.section.contacts h1 + p {
	color: #fff;
	font-size: 17px;
	margin-top: 22px;
	text-align: center;
}
.section.contacts h1 + p a {
	position: relative;
}
.section.contacts h1 + p a:before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}

.footer-form {
	display: flex;
	justify-content: space-between;
	margin-top: 78px;
}

.footer-form input,
.footer-form textarea {
	font-family: Lato;
}

.footer-form .wrap-contacts {
	padding-top: 12px;
}

.footer-form .wrap-contacts h6 {
	font-family: Lato, Arial;
	font-size: 18px;
	font-weight: 600;
}
.footer-form .wrap-contacts p {
	font-size: 18px;
	font-weight: 300;
	line-height: 178.2%;
	margin-top: 44px;
}
.footer-form .wrap-contacts .email {
	font-size: 18px;
	margin-top: 24px;
}
.footer-form .wrap-contacts .email span {
	font-family: Lato, Arial;
	font-weight: 600;
}
.footer-form .wrap-contacts .email a {
	font-weight: 300;
}

.footer-form .wrap-form {
	width: 666px;
}

.contact-form--head {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.contact-form--body {
	padding-left: 100px;
	font-size: 0;
}
.contact-form--body textarea {
	background: #5e5e5e;
	min-height: 167px;
	resize: vertical;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	line-height: 178.2%;
	padding: 8px 18px;
}
.contact-form--body button {
	font-size: 18px;
	font-family: Nexa;
	font-weight: bold;
	line-height: 2.5;
	color: #000;
	background: #fff;
	width: 100%;
	margin-top: 20px;
	text-transform: uppercase;
}
.contact-form--head .form-head--item {
	width: calc(49% - 20px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 20px 20px 0;
}
.contact-form--head .form-head--item:nth-child(2n) {
	width: calc(54% - 20px);
	margin-right: 0;
}
.contact-form--head .form-head--item label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 18px;
	font-weight: 300;
	line-height: 178.2%;
	margin-bottom: -10px;
}
.contact-form--head .form-head--item input {
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	width: 205px;
	padding: 9px;
	background: #5e5e5e;
}

.footer-copy {
	padding: 92px 0 31px 0;
}
.footer-copy p {
	text-align: center;
	font-family: Lato, Arial;
	font-size: 18px;
	font-weight: 300;
}

@media screen and (max-width: 1020px) {

	.section.contacts {
		padding-left: 20px;
		padding-right: 20px;
	}
	.section.contacts .section-wrap {
		width: 100%;
	}

}

@media screen and (max-width: 950px) {

	.footer-form {
		flex-direction: column-reverse;
	}

	.footer-form .wrap-form {
		margin: 0 auto;
	}

	.footer-form .wrap-contacts {
		width: 666px;
		margin: 0 auto;
		display: flex;
		padding-top: 140px;
	}
	.footer-form .wrap-contacts h6 {
		margin-right: 35px;
	}
	.footer-form .wrap-contacts p {
		margin: 0 auto;
		flex: 1;
	}

	.footer-form .wrap-contacts .email {
		margin-top: 0;
		margin-left: 35px;
	}

}


@media screen and (max-width: 768px) {

	.section.contacts {
		padding-top: 50px;
	}

	.footer-form .wrap-form {
		width: 100%;
	}

	.contact-form--head {
		flex-direction: column;
	}

	.footer-form .wrap-contacts {
		padding-top: 60px;
	}

	.contact-form--head .form-head--item {
		width: 100% !important;
		margin: 0 0 20px 0;
	}

	.section.contacts h1 + p {
		line-height: 1.2;
	}
	.section.contacts h1 + p a {
		white-space: nowrap;
	}

	.contact-form--body {
		padding-left: 0;
	}

	.footer-form .wrap-contacts {
		width: 100%;
		display: block;
	}

	.footer-form .wrap-contacts h6 {
		margin-right: 0;
	}

	.footer-form .wrap-contacts p {
		margin-top: 24px;
	}

	.footer-form .wrap-contacts .email {
		margin-left: 0;
		margin-top: 24px;
	}

	.footer-copy {
		padding: 30px 0;
	}

	.footer-form {
		margin-top: 50px;
	}

}

@media screen and (max-width: 470px) {

	.section.contacts .section-wrap {
		padding-left: 0;
		padding-right: 0;
	}

	.contact-form--head .form-head--item input {
		width: 180px;
	}

}

.quote-box {
	min-width: 320px;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-x: hidden;
	overflow-y: auto;
	background: rgba(38, 38, 38, .5);
	display: none;
	align-items: center;
	justify-content: center;
	/*flex-direction: column;*/
	padding: 20px 0;
}
.quote-box.shown {
	display: flex;
}
.quote-box .quote-wrap {
	margin: auto;
	color: #fff;
	background: #262626;
	width: 766px;
	padding: 32px 50px 50px 50px;
	position: relative;
}
.quote-box .quote-wrap .cross {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 38px;
	right: 51px;
	background: url(../img/svg/cross.svg) no-repeat center center/cover;
}
.quote-box .quote-wrap h1 {
	color: #fff;
	font-family: Nexa, Arial;
	font-weight: bold;
	font-size: 28px;
	line-height: 178.2%;
	text-align: center;
}
.quote-box .quote-wrap p {
	color: #fff;
	font-size: 17px;
	margin-top: 13px;
	text-align: center;
	line-height: 32px;
}
.quote-box .quote-wrap p a {
	position: relative;
	white-space: nowrap;
}
.quote-box .quote-wrap p a:before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}

.quote-form .wrap-form {
	margin-top: 44px;
}


.quote-wrap .quote-form--head {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.quote-wrap .quote-form--body {
	padding-left: 100px;
	font-size: 0;
}
.quote-wrap .quote-form--body textarea {
	background: #5e5e5e;
	min-height: 167px;
	resize: vertical;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	line-height: 178.2%;
	padding: 8px 18px;
}
.quote-wrap .quote-form--body button {
	font-size: 18px;
	font-family: Nexa;
	font-weight: bold;
	line-height: 2.5;
	color: #000;
	background: #fff;
	width: 100%;
	margin-top: 20px;
	text-transform: uppercase;
}
.quote-wrap .quote-form--head .form-head--item {
	width: calc(49% - 20px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 20px 20px 0;
}
.quote-wrap .quote-form--head .form-head--item:nth-child(2n) {
	width: calc(54% - 20px);
	margin-right: 0;
}
.quote-wrap .quote-form--head .form-head--item label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 18px;
	font-weight: 300;
	line-height: 178.2%;
	margin-bottom: -10px;
}
.quote-wrap .quote-form--head .form-head--item input {
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	width: 205px;
	padding: 9px;
	background: #5e5e5e;
}


.mobile-nav {
	position: fixed;
	z-index: 510;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #262626;
	overflow-x: hidden;
	overflow-y: auto;
	display: none;
	align-items: flex-end;
}
.mobile-nav.shown {
	display: flex;
}
.mobile-nav .cross {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 40px;
	right: 30px;
	background: url(../img/svg/cross.svg) no-repeat center center/cover;
}
.mobile-nav a {
	color: #fff;
	font-family: Nexa, Arial;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 30px;
	display: block;
}
.mobile-nav a.outline {
	width: 100%;
	line-height: 46px;
	text-align: center;
	color: #212121;
	background: #fff;
	margin-bottom: 0;
}

.mobile-nav .mobile-nav--items {
	width: 100%;
	padding: 0 44px;
	padding-bottom: 140px;
}
.mobile-nav .mobile-nav--items2 {
	padding: 0 10px;
}

@media screen and (max-width: 766px) {

	
	.quote-box .quote-wrap {
		width: 100%;
	}

	.quote-box .quote-wrap .cross {
		top: 20px;
		right: 30px;
	}

	.quote-wrap .quote-form--head {
		flex-direction: column;
	}

	.quote-wrap .quote-form--head .form-head--item {
		width: 100% !important;
		margin: 0 0 20px 0 !important;
	}

	.quote-wrap .quote-form--body {
		padding-left: 0;
	}

}

@media screen and (max-width: 460px) {

	.quote-box .quote-wrap {
		padding: 20px;
	}

}

@media screen and (max-width: 375px) {

	.quote-wrap .quote-form--head .form-head--item input {
		width: 180px;
	}

}
