/* Обнуление стилей */
* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}
:focus,
:active {
	outline: none;
}
a:focus,
a:active {
	outline: none;
}
aside,
nav,
footer,
header,
section {
	display: block;
}
input::-ms-clear {
	display: none;
}
a, 
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;
}
/* Конец обнуления стилей */
/* Общие стили */
html,
body {
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5a5966;
  height: 100%;
}
.wrapper {
	min-height: 100%;
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
/* Конец общих стилей */
/* Верхнее меню */
.header-logo {
	z-index: 7;
	display: none;
}
.header-phpne {
	z-index: 8;
	display: none;
}
.header-button {
	z-index: 9;
	display: none;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: #2f2f2f;
	padding: 10px 0;
}
.header__container {
	max-width: 1200px;
	margin: 0px auto;
	display: flex;
	padding: 0px 30px;
	align-items: center;
	justify-content: center;
}
.menu__icon {
	display: none;
}
.menu__list > li {
	position: relative;
	padding: 0px 50px;
	border-right: 1px solid #595959;
}
.menu__link {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
}
.menu__link:hover {
	color: #f7e130;
}
.menu__arrow {
	display: none;
}
/* ----------------------- */
body._touch .menu__list > li {
	display: flex;
	align-items: center;
}
body._touch .menu__link {
	flex: 1 1 auto;
}
body._touch .menu__arrow {
	display: block;
	width: 0;
	height: 0;
	margin: 0px 0px 0px 5px;
	transition: transform 0.3s ease 0s;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #fff;
}

body._touch .menu__list > li._active .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
	transform: rotate(-180deg);
}

/* ----------------------- */
@media (min-width: 975px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
}
@media (max-width: 975px) {
	.menu__icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
	}
	.menu__icon span,
	.menu__icon::before,
	.menu__icon::after {
		left: 0;
		position: absolute;
		height: 10%;
		width: 100%;
		transition: all 0.3s ease 0s;
		background-color: #f7e130;
	}
	.menu__icon::before,
	.menu__icon::after {
		content: "";
	}
	.menu__icon::before {
		top: 0;
	}
	.menu__icon::after {
		bottom: 0;
	}
	.menu__icon span {
		top: 50%;
		transform: scale(1) translate(0px, -50%);
	}

	.menu__icon._active span {
		transform: scale(0) translate(0px, -50%);
	}
	.menu__icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -50%);
	}
	.menu__icon._active::after {
		bottom: 50%;
		transform: rotate(45deg) translate(0px, 50%);
	}

	.menu__body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		overflow: auto;
	}
	.menu__body._active {
		left: 0;
	}

	.menu__body::before {
		content: "";
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		height: 70px;
		background-color: #2f2f2f;
		z-index: 2;
	}

	.menu__list > li {
		flex-wrap: wrap;
		margin-top: 10px;
	}
	.menu__list > li:last-child {
		margin-bottom: 0;
	}
	.menu__list > li._active .menu__sub-list {
		display: block;
	}
	.menu__link {
		font-size: 24px;
	}
}
/* Конец верхнего меню */
/* Шапка сайта */
.offer {
	margin-top: 40px;
	background-image: url(../img/bg-banner.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20px 0 0 0;
	color: #fff;
}
.offer-bg {
	background-image: url(../img/men-bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left bottom;
}
.offer-top__block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.offer-logo_icon {
	display: block;
}
.offer-colom span {
	font-weight: 600;
}
.offer-colom_bottom {
	margin-top: 10px;
}
.offer-adress__icon {
	width: 16px;
	margin-right: 5px;
}
.offer-phone__icon {
	width: 20px;
	margin-right: 10px;
}
.offer-phone__link {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}
.offer-phone__link:hover {
	color: #f7e130;
}
.offer-text__box {
	display: flex;
	justify-content: flex-end;
}
.offer-text {
	max-width: 700px;
}
.offer-title {
	font-size: 55px;
	font-weight: 500;
	margin-top: 150px;
}
.offer-subtitle {
	font-size: 36px;
	font-weight: 300;
	line-height: 1.5;
}
.offer-list {
	display: flex;
	justify-content: space-around;
	max-width: 600px;
	margin-top: 40px;
	margin-bottom: 60px;
}
/* Конец шапки */
/* Услуги */
.taba-wrapper {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
}
.service-top {
	background-color: #f7e130;
	text-align: center;
	padding: 40px 0;
}
.service-title {
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 500;
}
.service-subtitle {
	font-size: 24px;
	font-weight: 300;
}
.tab-button {
	display: block;
	color: #587bb1;
	text-decoration: none;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 700;
}
.tab-icon{
	width: 18px;
	margin-right: 5px;
}
.tabs {
	border-right: 1px solid #ddd;
	max-width: 360px;
}
.tab-active {
	background-color: #f0f0f0;
	color: #333;
	border: 1px solid #dddddd;
}
.tabs-container {
	flex: 1;
	margin-left: 20px;
}
.tabs-content {
	display: none;
}
.tabs-content-active {
	display: block;
}
.content-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}
.content-title {
	font-size: 17px;
	font-weight: 700;
	color: #587bb1;
}
.content-price {
	font-size: 17px;
	font-weight: 300;
}
.block {
	margin-top: 20px;
	display: none;
}
.block-item {
	margin-top: 2px;
}
.block-title {
	font-weight: 700;
	padding: 10px;
	background: #fff;
	color: #587bb1;
	position: relative;
	padding-left: 40px;
	cursor: pointer;
}
.block-title:before,
.block-title:after {
	content: '';
	width: 10px;
	height: 1px;
	background: #587bb1;
	position: absolute;
	top: 18px;
	transition: all 0.3s ease 0s;
}
.block-title:before {
	transform: rotate(40deg);
	left: 10px;
}
.block-title:after {
	transform: rotate(-40deg);
	left: 17px;
}
.block-text {
	padding: 20px;
	display: none;
}
.block-title.active:before,
.block-title.active:after {
	background: #587bb1;
}
.block-title.active:before {
	transform: rotate(-40deg);
}
.block-title.active:after {
	transform: rotate(40deg);
}
/* Конец Услуги */
/* Причины */
.advantages {
	margin-top: 60px;
	background-color: #eff1f2;
	padding: 40px 0;
	color: #000;
}
.advantages-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 36px;
}
.advantages-block {
	margin-top: 20px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.advantages-cart {
	width: 255px;
	margin-top: 20px;
}
.advahtages-cart__title {
	display: flex;
}
.advantages-cart__icon {
	display: block;
}
.advantages-cart__subtitle {
	margin-left: 10px;
}
.advantages-cart__text {
	margin-top: 15px;
	font-weight: 300;
}
/* Конец Причин */
/* Акции */
.action {
	margin-top: 60px;
}
.slider-1 {
	margin-top: 40px;
}
.slide-images {
	max-width: 560px;
}
.slick-slider {
  padding-left: 0;
}

.slide__btnprev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
  z-index: 9;
  left: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slide__btnnext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
  right: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  padding: 0 5px;
}

.slick-dots button {
  margin: 0;
  padding: 0;
  font-size: 0;
  background-color: transparent;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
}

.slick-active button {
  background-color: #fff;
}
.slide-title {
	margin-top: 10px;
}
.slide-text {
	margin-top: 10px;
}
/* Конец акций */
/* Марки */
.stamps {
	margin-top: 60px;
}
.stimps-title {
	text-align: center;
	color: #000;
	font-size: 40px;
	font-weight: 500;
	text-transform: uppercase;
}
.stamps-subtitle {
	text-align: center;
	font-size: 24px;
	font-weight: 300;
	margin-top: 10px;
}
.stamp-block {
	margin-top: 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}
.stamps-cart {
	margin-top: 20px;
	text-align: center;
	width: 130px;
}
.stamps-images {
	max-height: 45px;
}
.stamps-cart_title {
	font-weight: 700;
	margin-top: 10px;
}
/* Конец марок */
/* Подход */
.approach {
	margin-top: 60px;
	padding: 40px 0;
	background-image: url(../img/bg-our.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.approach-title {
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	text-transform: uppercase;
}
.approach-block {
	color: #fff;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}
.approach-colom__one {
	width: 40%;
}
.approach-cart {
	background-color: rgba(62, 74, 88, 0.5);
	margin-top: 20px;
	padding: 20px;
	display: flex;
}
.approach-cart__text {
	margin-left: 10px;
}
.approach-cart__title {
	font-size: 24px;
}
.approach-line {
	background-color: #f7e130;
	width: 80px;
	height: 4px;
	margin: 10px 0;
}
.approach-cart__post {
	font-weight: 300;
}
.approach-colom__two {
	width: 58%;
}
.cart__one {
  padding-bottom: 104px;
}
/* Конец подхода */
/* Отзывы */
.reviews {
	margin-top: 60px;
}
.reviews-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 500;
}
.reviews-block {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 20px;
}
.reviews-cart {
	width: 320px;
	margin-top: 20px;
}
.reviews-cart__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.reviews-icon {
	width: 40px;
	display: inline-block;
}
.reviews-header__text {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
}
.reviews-header__text span {
	font-weight: 300;
	font-size: 14px;
}
.reviews-cart__body {
	border: 1px solid #ddd;
	background-color: #fff;
	padding: 10px;
	margin-top: 10px;
	max-height: 200px;
	overflow: hidden;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}
.reviews-cart__body:hover {
	max-height: 100%;
}
.rewiews-body__title {
	font-size: 17px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
}
.reviews-body__text {
	margin-top: 10px;
	font-weight: 300;
}
/* Конец отзывов */
/* Партнеры */
.brend {
	margin-top: 60px;
	background-color: #eff1f2;
	padding: 40px 0;
	color: #000;
}
.brend-slider {
	margin-top: 40px;
}
.brend-images {
	max-height: 30px;
}
/* Конец партнеров */
/* Галерея */
.gallery {
	margin-top: 60px;
}
.gallery-block {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gallery-images {
	margin-top: 10px;
}
.gallery-photo_img {
	object-fit: cover;
}
.maps {
	margin-top: 20px;
}
/* Конец галереи */
/* Подвал */
.footer {
	margin-top: 60px;
	padding: 40px 0;
	color: #fff;
	background-color: #393c40;
}
.footer-title {
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 30px;
}
.footer-subtitle {
	text-align: center;
	font-size: 24px;
	margin-top: 10px;
}
.form-block {
	display: flex;
	justify-content: space-around;
}
.form-box {
	display: flex;
	align-items: center;
	background-color: #fff;
	height: 45px;
	padding: 10px;
	width: 300px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.form-icon {
	display: block;
}
.footer-input {
	display: block;
	margin-left: 7px;
	border-left: 1px solid #ddd;
	padding-left: 20px;
}
.form-top_margin {
	margin-top: 30px;
}
.footer-btn {
	background-color: #393c40;
	border: 2px solid #fbe106;
	color: #fbe106;
	font-size: 18px;
	font-weight: 500;
	height: 45px;
	width: 300px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-o-border-radius:5px;
}
.box-bg {
	background-color: #393c40;
}
.footer-line {
	background-color: #fbe106;
	width: 100%;
	height: 2px;
	margin: 20px 0;
}
.footer-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-colom {
	margin-top: 10px;
}
.footer-psc {
	margin-top: 10px;
	font-size: 14px;
	width: 150px;
	color: #ddd;
}
.footer-colom__line {
	height: 4px;
	width: 30px;
	background-color: #f7e130;
	margin-top: 10px;
}
.footer-list {
	margin-top: 10px;
}
.footer-punkt {
	margin-top: 10px;
}
.footer-link {
	color: #fff;
	font-size: 16px;
}
.footer-link:hover {
	color: #f7e130;
}
.offer-phone__icon {
	height: 18px;
}
.footer-phone__link {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}
.footer-phone__link:hover {
	color: #fbe106;
}
.footer-adress__icon {
	height: 18px;
	margin-right: 15px;
	margin-top: 10px;
}
.footer-colom__menu {
	display: inline-block;
}
.left-margin {
	margin-left: 40px;
}
/* Конец подвала */

.presentation-form {
	padding: 20px;
}
.form-title-modal {
	font-size: 20px;
	text-align: center;
	font-weight: 500;
	padding-bottom: 10px;
}
.form-input {
	display: block;
	margin-top: 10px;
	width: 100%;
	height: 45px;
	border: 1px solid #333;
	padding-left: 20px;
	font-size: 14px;
}
.form-btn {
	width: 100%;
	height: 45px;
	margin-top: 10px;
	background-color: #393c40;
	color: #fbe106;
	font-size: 18px;
	font-weight: 500;
}
.form-subtitle {
	font-size: 14px;
	font-weight: 300;
	margin-top: 15px;
	text-align: center;
}

.btn-mail {
	background-color: #fbe106;
	color: #333;
}
.form-box_mail {
	border: 1px solid #333;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.mail {
	background-color: #eff1f2;
	margin-top: 60px;
	padding: 40px 0;
}
.maps-box {
	margin-top: 20px;
}
.form-box__btn {
	padding: 0;
}