/* Standart */

*, *::before, *::after {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

:focus, :active {
	outline: none;
}

a:focus, a:active {
	outline: none;
}

html, body {
	width: 100%;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #161616;
	text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body.lock {
	overflow: hidden;
}

address {
	font-style: normal;
}

input, button, textarea {
	font-family: inherit;
	font-size: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a, a:hover {
	color: inherit;
	text-decoration: none;
}

li {
	list-style: none;
}

img {
	vertical-align: top;/*
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;*/
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: normal;
}

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

/* IB */

.ib {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.ib .ib_use {
	display: none;
}

/* Sprite */

._sprite {
	display: block;
  min-width: 9px;
  height: 14px;
  background: url('../img/sprite.png') no-repeat;
}

._sprite._sprite_phone {
  background-position: 0 -14px;
  height: 13px;
}

/* Btn */

.btn {
	display: inline-block;
	cursor: pointer;
	transition: .2s;
	background: #ffe500;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0.13em;
	color: #161616;
	padding: 19px 50px;
	text-align: center;
}

.btn:hover {
	background: #f2e044;
	color: #161616;
}

.btn_b {
	background: #161616;
	color: #fff;
	font-size: 12px;
	line-height: 14px;
}

.btn_w {
	background: transparent;
	color: #fff;
	font-size: 12px;
	line-height: 14px;
	padding: 18px 49px;
	border: 1px solid #fff;
}

.btn_w:hover {
	border-color: #f2e044;
}

/* Phone */

.phone {
	display: flex;
	align-items: center;
	font-size: 13px;
}

.phone span {
	margin-right: 10px;
}

/* Address */

.address {
	display: flex;
	align-items: center;
	font-size: 10px;
}

.address span {
	margin-right: 10px;
}

/* Logo */

.logo img {
	max-width: 100%;
}

/* Header */

.header {
	background: #161616;
	color: #fff;
	position: relative;
}

.header__offer-body {
	padding: 70px 0 40px;
}

@media (max-width: 991px) {
	.header__slider {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
	}

	.header__body {
		background: rgba(0, 0, 0, .6);
	}
}

@media (min-width: 992px) {
	.header__slider {
		margin-bottom: -80px;
		margin-top: 20px;
		flex: 0 0 50%;
		transform: translate(-100%, 0);
	}

	.header__offer {
		flex: 0 0 100%;
	}

	.header__offer-body {
		width: 50%;
	}

	.header__offer-body {
		padding-right: 35px;
	}
}

.header__body {
	padding-top: 30px;
	position: relative;
	z-index: 2;
}

.header__content {
	margin-top: 90px;
	display: flex;
}

.header__title {
	font-weight: 700;
	font-size: 27px;
	line-height: 45px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.header__btn {
	margin-top: 50px;
}

.header__slider-btns {
	margin-top: 70px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header__slider-btn {
	position: relative;
	top: unset;
	left: unset;
	right: unset;
	bottom: unset;
	z-index: 1;
	margin-top: unset;
}

.header__slider-btn::after {
	font-size: 0;
}

.header__slider-count {
	margin: 0 20px;
}

/* Nav */

.nav__logo {
	margin-right: 20px;
}

.nav__menu {
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.nav__menu li {
	margin-right: 30px;
}

.nav__menu li:last-child {
	margin-right: 0;
}

.nav__menu-link {
	font-size: 13px;
	text-transform: uppercase;
	position: relative;
}

.nav__menu-link::before {
	content: '';
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transition: .2s;
}

.nav__menu-link:hover::before {
	width: 100%;
}

.nav__phone {
	margin-right: 20px;
}

.nav__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav__burger .burger__link {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 25px;
}

.nav__burger .burger__nav {
	justify-content: space-between;
	align-items: center;
}

/* Burger */

.burger {
	display: none;
	position: relative;
	z-index: 5;
}

.burger__bg {
	opacity: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	transform: translateX(100%);
	transition: .3s;
}

.burger__btn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	position: relative;
	z-index: 1;
	height: 16px;
}

.burger__line {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: .3s;
}

.burger__menu {
	width: 40%;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 1);
	text-align: center;
	transition: .3s;
	z-index: 2;
	overflow: auto;
	transform: translateX(100%);
}

.burger.variation_1 .burger__nav {
	display: flex;
}

.burger.variation_2 .burger__nav {
	display: none;
}

.burger.variation_2 .burger__menu {
	padding-top: 100px;
}

.burger__nav {
	justify-content: flex-end;
	padding: 30px;
}

.burger__close-btn {
	width: 24px;
	height: 16px;
	cursor: pointer;
	position: relative;
}

.burger__close-btn::before, .burger__close-btn::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 24px;
	height: 2px;
	background: #fff;
}

.burger__close-btn::before {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.burger__close-btn::after {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

.burger__link {
	cursor: pointer;
	display: block;
	padding: 20px 0;
	transition: .3s;
	color: #fff;
}

.burger__link:hover {
	background: #fff;
	color: #000;
}

.burger.active .burger__menu {
	transform: translateX(0%);
}

.burger.active .burger__bg {
	opacity: .2;
	transform: translateX(0%);
}

.burger.variation_2 .burger__btn {
	z-index: 20;
}

.burger.variation_2 .burger__menu {
	z-index: 19;
}

.burger.variation_2.active .burger__line:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.burger.variation_2.active .burger__line:nth-child(2) {
	transform: scale(0);
}

.burger.variation_2.active .burger__line:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Title */

.title {
	text-align: center;
}

.title__title {
	font-weight: 600;
	font-size: 30px;
	line-height: 35px;
	color: #000;
}

/* Usefulness */

.usefulness {
	overflow: hidden;
	background: #f1f2f5;
	padding: 215px 0 70px;
}

.usefulness__items {
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
	margin-right: -30px;
}

.usefulness__item {
	display: flex;
	flex-direction: column;
	flex: 0 1 33.333%;
}

.usefulness__item-wrap {
	background: #fff;
	height: 100%;
	margin-top: 45px;
	margin-right: 30px;
	transition: .3s;
	position: relative;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .1);
}

.usefulness__item-map {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 54px;
	background: #FFE500;
	overflow: hidden;
	padding: 0 10px;
}

.usefulness__item-map svg {
	height: 100%;
}

.usefulness__item-map svg + p {
	display: none;
	margin-left: 15px;
	font-size: 18px;
	line-height: 21px;
}

.usefulness__item-map:hover p {
	display: block;
}

.usefulness__item-img {
	padding-bottom: 93%;
}

.usefulness__item-title {
	display: block;
	padding: 30px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 3px;
}

.usefulness__item-wrap:hover {
	transform: translate(0, -20px);
}

.usefulness__item-wrap:hover .usefulness__item-title {
	font-weight: 700;
}

/* Advantages */

.advantages {
	overflow: hidden;
	padding: 100px 0 75px;
}

.advantages__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-right: -85px;
}

.advantages__item {
	flex: 0 1 30%;
}

.advantages__item-wrap {
	margin-top: 85px;
	margin-right: 85px;
	display: flex;
	align-items: center;
}

.advantages__item-order {
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFE500;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000000;
	margin-right: 40px;
}

.advantages__item-text {
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #161616;
	position: relative;
}

.advantages__item-text span {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(0, -80%);
	font-weight: 600;
	font-size: 80px;
	line-height: 94px;
	color: rgba(0, 0, 0, .03);
}

/* Map */

.map {
	padding: 75px 0 60px;
}

.map__img {
	margin-top: 45px;
}

.map__img img {
	max-width: 100%;
}

/* Order Land */

.order-land {
	padding: 60px 0 100px;
}

.order-land__body {
	display: flex;
	align-items: center;
}

.order-land__content {
	flex: 0 0 50%;
	padding: 0 150px 0 20px;
}

.order-land__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 35px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #000;
}

.order-land__text {
	margin-top: 25px;
	font-size: 15px;
	line-height: 18px;
}

.order-land__btn {
	margin-top: 40px;
}

.order-land__img {
	flex: 0 0 50%;
	background: #F1F2F5;
	margin-top: -60px;
	margin-left: -60px;
}

.order-land__img img {
	transform: translate(60px, 60px);
	max-width: 100%;
}

/* Order Store */

.order-store {
	padding-top: 20px;
	background: #161616;
	color: #fff;
}

.order-store__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 35px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.order-store__text {
	margin-top: 25px;
	font-size: 15px;
	line-height: 18px;
}

.order-store__btn {
	margin-top: 30px;
}

.order-store__content {
	flex: 0 0 100%;
}

.order-store__body {
	width: 50%;
	padding: 70px 90px 70px 20px;
}

.order-store__img img {
	max-width: 100%;
	transform: translate(0, 100px);
}

@media (min-width: 991px) {
	.order-store {
		display: flex;
		align-items: center;
	}

	.order-store__img {
		flex: 0 0 50%;
		transform: translate(-100%, 0);
	}
}

/* Contact */

.contact {
	padding: 200px 0 100px;
}

.contact__title {
	text-align: center;
	font-weight: 700;
	font-size: 25px;
	line-height: 37px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	max-width: 714px;
	margin: 0 auto;
}

.contact__form {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact__input {
	margin-right: 15px;
	padding: 20px;
	background: #EFF0F1;
}

/* Footer */

.footer {
	padding: 50px 0;
	background: #161616;
	color: #fff;
}

.footer__logo {
	margin-right: 20px;
}

.footer__menu {
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.footer__menu li {
	margin-right: 30px;
}

.footer__phone {
	margin-right: 20px;
}

.footer__menu li:last-child {
	margin-right: 0;
}

.footer__menu-link {
	font-size: 13px;
	text-transform: uppercase;
	position: relative;
}

.footer__menu-link::before {
	content: '';
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transition: .2s;
}

.footer__menu-link:hover::before {
	width: 100%;
}

.footer__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Media */

@media (max-width: 1199px) {
	.nav__burger {
		display: block;
	}

	.nav__menu {
		display: none;
	}

	.nav__phone {
		margin-left: auto;
	}

	.nav__address {
		margin-right: 20px;
	}

	.order-store__img img {
		transform: translate(0, 0);
	}

	.contact {
		padding: 80px 0;
	}

	.footer__body {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__logo {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.footer__menu {
		margin-right: 0;
		margin-bottom: 20px;
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__menu li {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.footer__menu li:last-child {
		margin-bottom: 0;
	}

	.footer__phone {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

@media (max-width: 991px) {
	.nav__burger .burger__menu {
		width: 70%;
	}

	.usefulness {
		padding-top: 100px;
	}

	.usefulness__item-title {
		padding: 20px;
		font-size: 13px;
		line-height: 25px;
	}

	.advantages__item {
		flex-basis: 50%;
	}

	.advantages {
		padding: 40px 0 30px;
	}

	.advantages__item-wrap {
		margin-top: 35px;
	}

	.order-land__body {
		flex-direction: column-reverse;
	}

	.order-land__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0;
		margin-top: 40px;
	}

	.order-land__img {
		margin-left: 0;
		margin-top: 0;
	}

	.order-land__img img {
		transform: translate(0, 0);
	}

	.order-land {
		padding: 40px 0 100px;
	}

	.order-store__img {
		display: flex;
		justify-content: center;
		padding: 0 15px;
	}

	.order-store__img img {
		transform: translate(0, -40px);
	}

	.order-store__body {
		width: 100%;
		padding: 20px 0 50px;
	}

	.order-store {
		padding-top: 0;
		display: flex;
		flex-direction: column-reverse;
	}
}

@media (max-width: 767px) {
	.usefulness__item {
		flex-basis: 50%;
	}

	.usefulness__items {
		margin-top: 0;
	}

	.usefulness {
		padding: 60px 0;
	}

	.advantages__item {
		flex-basis: 100%;
	}

	.map {
		padding: 30px 0;
	}

	.map__img {
		margin-top: 25px;
	}

	.contact__form {
		flex-direction: column;
		align-items: stretch;
	}

	.contact__title {
    font-size: 18px;
    line-height: 30px;
  }

  .contact {
  	padding: 50px 0;
  }

	.contact__input {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 575px) {
	.nav__burger .burger__menu {
		width: 100%;
	}

	.nav__phone {
		display: none;
	}

	.nav__address {
		display: none;
	}

	.header__title {
		font-size: 18px;
		line-height: 35px;
	}

	.btn {
		padding: 19px 40px;
		font-size: 14px;
		line-height: 20px;
	}

	.btn_w {
		padding: 18px 39px;
	}

	.header__btn {
		margin-top: 30px;
	}

	.header__slider-btns {
		margin-top: 45px;
	}

	.header__offer-body {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.usefulness__item {
		flex-basis: 100%;
	}

	.usefulness__item-img {
		padding-bottom: 60%;
	}

	.title__title {
		font-size: 20px;
		line-height: 25px;
	}
}