/* Шрифты */
@font-face {
	font-family: 'Gilroy';
	src: url('/fonts/gilroy-regular.eot');
	src: local('☺'), url('/fonts/gilroy-regular.woff') format('woff'), url('/fonts/gilroy-regular.ttf') format('truetype'), url('/fonts/gilroy-regular.svg') format('svg');
	font-weight: 400;
	font-style: normal;
	display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('/fonts/gilroy-medium.eot');
	src: local('☺'), url('/fonts/gilroy-medium.woff') format('woff'), url('/fonts/gilroy-medium.ttf') format('truetype'), url('/fonts/gilroy-medium.svg') format('svg');
	font-weight: 500;
	font-style: normal;
	display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('/fonts/gilroy-bold.eot');
	src: local('☺'), url('/fonts/gilroy-bold.woff') format('woff'), url('/fonts/gilroy-bold.ttf') format('truetype'), url('/fonts/gilroy-bold.svg') format('svg');
	font-weight: 700;
	font-style: normal;
	display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('/fonts/Gilroy-Light.eot');
	src: local('☺'), url('/fonts/Gilroy-Light.woff') format('woff'), url('/fonts/Gilroy-Light.ttf') format('truetype'), url('/fonts/Gilroy-Light.svg') format('svg');
	font-weight: 300;
	font-style: normal;
	display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('/fonts/Gilroy-Semibold.eot');
	src: local('☺'), url('/fonts/Gilroy-Semibold.woff') format('woff'), url('/fonts/Gilroy-Semibold.ttf') format('truetype'), url('/fonts/Gilroy-Semibold.svg') format('svg');
	font-weight: 600;
	font-style: normal;
	display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('/fonts/Gilroy-Black.eot');
	src: local('☺'), url('/fonts/Gilroy-Black.woff') format('woff'), url('/fonts/Gilroy-Black.ttf') format('truetype'), url('/fonts/Gilroy-Black.svg') format('svg');
	font-weight: 900;
	font-style: normal;
	display: swap;
}
/* Обнуление стилей */
* {
	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: 'Gilroy';
  font-size: 18px;
  font-weight: 300;
  color: #5a5966;
  height: 100%;
}
.wrapper {
	min-height: 100%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
/* Конец общих стилей */
/* Верхнее меню */
.header__menu {
  display: none;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: #fff;
}
.header__container {
	max-width: 1300px;
	margin: 0px auto;
	display: flex;
	padding: 10px 20px;
	align-items: center;
	justify-content: space-between;
}
.header__logo {
	position: relative;
	z-index: 5;
}
.icon-header {
	width: 25px;
}
.link-left {
	margin-left: 10px;
}
.header-display__link {
	text-transform: uppercase;
	color: #333;
	font-size: 14px;
}
.header_phone_link {
	color: #f1b253;
	font-size: 18px;
	font-weight: 500;
}
.header_phone_link:hover {
	color: #333;
}
.header-display__link:hover {
	color: #f1b253;
}
.header-logo_text {
	font-size: 12px;
}
.header-display__list {
	display: flex;
	align-items: center;
}
.header-logo_icon {
	display: block;
}
.menu__icon {
	display: none;
}
.menu__list > li {
	position: relative;
	margin: 0px 0px 0px 20px;
}
.menu__link {
	color: #fff;
	font-size: 18px;
}
.menu__link:hover {
	text-decoration: underline;
}
.menu__sub-list {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #000;
	padding: 15px;
	min-width: 200px;
}
.menu__arrow {
	display: none;
}
/* ----------------------- */
body._pc .menu__list > li:hover .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}
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: 920px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
	.menu__list > li {
		padding: 10px 0;
	}
	.menu__sub-list {
		transform: translate(0px, 10%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 920px) {
	.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: #333;
	}
	.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: #fff;
		z-index: 2;
	}

	.menu__list > li {
		flex-wrap: wrap;
		margin: 0px 0px 30px 0px;
	}
	.menu__list > li:last-child {
		margin-bottom: 0;
	}
	.menu__list > li._active .menu__sub-list {
		display: block;
	}
	.menu__link {
		font-size: 24px;
	}
	.menu__sub-list {
		position: relative;
		background-color: #fff;
		flex: 1 1 100%;
		margin: 20px 0px 0px 0px;
		display: none;
	}
	.menu__sub-link {
		font-size: 20px;
		color: #000;
	}
}

/* Конец верхнего меню */
/* Верхний блок */
.offer {
	background-color: #f4f4f4;
	margin-top: 100px;
}
.offer-images_bg {
	max-width: 1300px;
	margin: 0 auto;
}
.offer-cart_box {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	position: absolute;
	width: 1100px;
	left: 100px
}
.offer-cart {
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	align-items: center;
	padding: 10px;
	max-width: 290px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-o-border-radius:5px;
	-webkit-box-shadow: 0px 0px 9px -1px rgba(0, 0, 0, 0.5); 
  box-shadow: 0px 0px 9px -1px rgba(0, 0, 0, 0.5);
}
.offer-cart_box-mobil {
	display: none;
}
.block-offer {
	display: flex;
	justify-content: space-between;	
}
.offer-cart_text {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	margin-left: 10px;
}
.offer-post_block {
	width: 50%;
	padding: 20px;
}
.header-position {
	position: relative;
}
.offer-title {
	font-size: 38px;
	font-weight: 900;
	text-transform: uppercase;
	color: #000;
	line-height: 1.4;
	padding-top: 100px;
}
.offers-photo {
	width: 750px;
}
.offers-photo_mobil {
	display: none;
}
.offer-subtitle_link {
	color: #f1b253;
	text-transform: uppercase;
	font-size: 38px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}
.offer-subtitle_link:hover {
	color: #333;
}
.offer-text_top {
	font-size: 24px;
	font-weight: 700;
	margin-top: 20px;
}
.text-orange {
	color: #f1b253;
}
.offer-text {
	margin-top: 30px;
	line-height: 1.2;
	padding-bottom: 80px;
}
/* Конец верхнего блока */
/* Блок Преимущества */
.advantages {
	margin-top: 60px;
}
.advantages-text {
	margin-top: 15px;
	line-height: 1.5;
}
.advantages-title {
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 40px;
	padding-bottom: 20px;
}
.advantages-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.advantages-cart {
	margin-top: 20px;
	width: 380px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right  bottom;
	background-color: #f4f4f4;
	padding: 30px 0 0 30px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-o-border-radius:5px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.advantages-cart_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.advantages-cart_text {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
}
.advantages-cart_namber {
	padding-right: 30px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
}
.img-position {
	text-align: right;
}
.advantages-cart_images {
	border-radius: 0 0 5px 0;
	-webkit-border-radius: 0 0 5px 0;
	-moz-border-radius: 0 0 5px 0;
	-ms-border-radius: 0 0 5px 0;
	-o-border-radius: 0 0 5px 0;
}
.top-padding {
	padding-top: 70px;
}
.advantages-phone {
	background-color: #f4f4f4;
	flex: 1;
	margin-top: 20px;
	margin-left: 20px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-o-border-radius:5px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 36px;
	text-transform: uppercase;
	line-height: 1.3;
}
.advantages-phone_link {
	color: #f1b253;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}
.advantages-phone_link:hover {
	color: #333;
	font-weight: 500;
}
/* Конец блока Преимущества */
/* Блок Услуги */
.service {
	margin-top: 60px;
}
.service-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.service-cart {
	margin-top: 20px;
	width: 380px;
	background-color: #f4f4f4;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.service-cart_img {
	width: 100%;
	border-radius:5px 5px 0 0;
	-webkit-border-radius:5px 5px 0 0;
	-moz-border-radius:5px 5px 0 0;
	-ms-border-radius:5px 5px 0 0;
	-o-border-radius:5px 5px 0 0;
}
.service-cart_title {
	padding: 0 30px;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 30px;
}
.service-cart_text {
	line-height: 1.5;
	padding: 0 30px;
	margin-top: 20px;
}
.service-cart_link {
	display: block;
	margin: 0 30px;
	background-color: #f1b253;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding: 20px 0;
	margin-top: 30px;
}
.service-cart_link:hover {
	color: #333;
}
.service-phone {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: #f4f4f4;
	margin-top: 20px;
	align-items: center;
}
.service-phone_img {
	display: block;
}
.advantages-phone_text {
	flex: 1;
	text-align: center;
	font-size: 36px;
  text-transform: uppercase;
  line-height: 1.3;
}
/* Конец блока Услуги */
/* Блок цен */
.price {
	background-color: #f4f4f4;
	padding: 40px 0;
	margin-top: 60px;
}
.tabs {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}
.tab-button {
	display: block;
	align-items: center;
	justify-content: center;
	height: 90px;
	width: 360px;
	color: #000;
	text-decoration: none;
	padding: 10px 10px;
	border: 1px solid #000;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	margin-top: 15px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	background-color: #fff;
}
.tab-button span {
	font-weight: 400;
}
.tab-button:hover {
	background-color: #f1b253;
	color: #fff;
}
.tab-active {
	background-color: #f1b253;
	color: #fff;
	border: 0;
}
.tabs-container {
	margin-top: 40px;
}
.tabs-content {
	display: none;
}
.tabs-content-active {
	display: block;
}
.table {
	border-collapse: collapse;
	background-color: #fff;
	margin-top: 20px;
	width: 100%;
}

.table th,
.table td,
.table tr {
	padding: 15px 30px;
	border: 1px solid #000;
	text-align: center;
}
.bold {
	font-weight: 700;
	text-transform: uppercase;
}
.service-phone_bg {
	background-color: #fff;
}
/* Конец блока цен */
/* Блок о компании */
.company {
	margin-top: 60px;
}
.compani-block {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
}
.company-colom {
	max-width: 50%;
}
.colom-padding {
	padding: 30px;
}
.company-text {
	line-height: 1.5;
	margin-top: 20px;
}
.company-autor {
	margin-top: 30px;
	font-size: 20px;
	line-height: 1.5;
}
.company-name {
	text-transform: uppercase;
	font-size: 20px;
	color: #000;
}
/* Конец блока о компании */
/* Блок с картой */
.maps {
	margin-top: 60px;
}
/* Конец блока с картой */
/* Блок с описаниями */
.post {
	background-color: #f4f4f4;
	padding: 40px 0;
	margin-top: 60px;
}
.post-subtitle {
	font-size: 24px;
	font-weight: 500;
	padding: 20px 0 0 0;
}
.post-list {
	margin-top: 15px;
}
.post-punkt {
	list-style-type: disc;
	margin-left: 20px;
	font-size: 16px;
	line-height: 1.3;
}
/* Конец блока с описания */
/* Подвал сайта */
.footer {
	padding: 20px;
}
.footer-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-colom {
	text-align: center;
}
.footer-logo_icon {
	display: block;
}
.footer-logo_text {
	font-size: 12px;
	margin-top: 5px;
}
.phone-block {
	display: flex;
	align-items: center;
}
.footer-phone_icon {
	display: block;
	margin-right: 15px;
}
.footer_phone_link {
	display: block;
	font-size: 20px;
	color: #333;
}
.footer-mail {
	display: block;
	margin-top: 10px;
	font-size: 20px;
	color: #333;
}
/* Конец подвала сайта */
/* Нижняя плашка */
.box-phone {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	background-color: rgb(8, 138, 36);
	padding: 10px;
	text-align: center;
	display: none;
	z-index: 999;
}
.box-phone_icon {
  margin-right: 5px;
}
.box-phone_link {
	margin-right: 5px;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
}
/* Конец нижней плашки */
.cart-none {
	display: none;
}

.form {
	padding: 20px;
}
.form-title-modal {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	padding-top: 20px;
}
.form-input {
	margin-top: 10px;
	width: 100%;
	height: 45px;
	border: 1px solid #333;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	padding-left: 20px;
	font-size: 14px;
	color: #5a5966;
}
.form-btn {
	margin-top: 10px;
	border: 0;
	width: 100%;
	height: 45px;
	background-color: #f1b253;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.form-btn:hover {
	color: #333;
}
.form-subtitle {
	font-size: 14px;
	margin-top: 15px;
	text-align: center;
}
.maps-images {
	width: 100%;
}
.header-phone_mobil {
	display: none;
}
/* ==========================================================Толщина шрифтов========================================================== */
/* Заголовок Н1 */
h1 {
	font-weight: 900;
}
/* Заголовки Н2 */
h2 {
	font-weight: 700;
}
/* Заголовки Н3 */
h3 {
	font-weight: 600;
}
/* Текст */
p, ul, li {
	font-weight: 300;
}

