* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gilroy", sans-serif;
  color: #2e4e95;
  overflow-x: hidden;
  line-height: 1.5;
}

body.active {
  overflow: hidden;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

li {
  list-style: none;
}

/* Модальное окно праздники */
.date-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: rgba(7, 28, 84, 0.7);
  transition: 0.25s ease-in-out;
  opacity: 0;
  pointer-events: none;  
}

.date-popup.active {
  opacity: 1;
  pointer-events: all;
}

.date-popup__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}

.date-popup__body {
  padding-top: 50px;
  min-width: 300px;
  position: relative;
  padding: 20px 20px 20px 20px;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;  
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-popup__title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.date-popup__weekend {
  width: 100%;
  padding: 15px 30px;
  background-color: #D9D9D9;
  border-radius: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-popup__work {
  width: 100%;
  padding: 15px 30px;
  background-color: #D9D9D9;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-popup__weekend-month,
.date-popup__weekend-desc,
.date-popup__work-month,
.date-popup__work-desc {
  margin: 0;
  font-size: 22px;
}

.date-popup__weekend-desc,
.date-popup__work-desc {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
}

.date-popup__close {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background: transparent;
  transition: .5s;
}

.date-popup__close:hover {
  background-color: #d9d9d9;
  border-radius: 50%;
}

.container {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.container-fluid::after {
  content: '';
  position: absolute;
  top: -18px;
  left: -23px;
  transform: rotate(142deg);
  border-left: 49px solid transparent;
  border-right: 25px solid transparent;
  border-top: 43px solid #ffffff;
}

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

.nav_toggle {
  display: none;
  width: 25px;
  padding: 14px 0;
  z-index: 11;
  cursor: pointer;
}

.nav_toggle-item {
  display: block;
  width: 100%;
  height: 3px;
  position: relative;
  border-radius: 8px;
  background-color: #75b527;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.nav_toggle-item:before,
.nav_toggle-item:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  background-color: #75b527;
  border-radius: 8px;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.nav_toggle-item:before {
  top: -10px;
}

.nav_toggle-item:after {
  bottom: -10px;
}

.close {
  cursor: pointer;
  width: 25px;
  height: 31px;
  position: relative;
  display: none;
  margin-bottom: 20px;
  opacity: 0.8;
}

.close::before {
  position: absolute;
  content: "";
  top: 0;
  right: 12px;
  width: 3px;
  height: 100%;
  background-color: #75b527;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close::after {
  position: absolute;
  content: "";
  top: 0;
  right: 12px;
  width: 3px;
  height: 100%;
  background-color: #75b527;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 20;
}

.shadow.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.slick-list {
  margin: 0 -15px;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
  cursor: pointer;
  border: 0;
  width: 36px;
  height: 36px;
  background-color: #40ab33;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: linear 4s infinite pulse;
  animation: linear 4s infinite pulse;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.slick-prev::before,
.slick-next::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  top: 13px;
  left: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slick-next {
  left: initial;
  right: -50px;
  -webkit-transform: translateY(-50%) rotate(0deg) scale(-1, -1);
  transform: translateY(-50%) rotate(0deg) scale(-1, -1);
}

/*header*/
.home .main_title {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.main_content_inner {
  max-width: 550px;
}

.services_inner .services_item:hover {
  backdrop-filter: blur(2px);
  text-decoration: none !important;
}


.header {
  transition: 2s;
  min-height: 300px;
  background: top center/cover url("../img/main.png");
}

.header--indexPage {
  min-height: 800px;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 30px;
}

.header_inner .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index-page__logo {
  max-width: 97px;
}
.sale-logo {
  margin: 0;
}
.header_inner .logo p {
  font-size: 12px;
  color: #333333;
  font-weight: 400;
  font-family: "Roboto";
  padding: 0 10px;
  border-left: 2px solid #54b253;
  margin-left: 10px;
}

.header_inner .header_navigation {
  top: 10px;
  left: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav ul li {
  margin: 0 10px;
  display: block;
}

.nav ul li a {
  display: table;
  text-transform: uppercase;
  font-size: 13.5px;
  color: #2e4e95;
  font-weight: 800;
  padding-bottom: 3px;
  position: relative;
}

.nav ul li a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #54b253;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav ul li a:hover::before {
  width: 100%;
}

.main_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.main_content .header_price {
  margin-top: 0;
  font-size: 12px;
}

.main_content .header_price img {
  width: 40px;
}


.main_text {
  color: #4c4c4c;
  font-family: "Roboto";
  font-size: 21px;
  text-shadow: 0 3px 6px #fff;
}

.main_inner {
  margin-top: 30px;
  max-width: 560px;
  margin-left: auto;
}

.btn {
  cursor: pointer;
  outline: none;
  border: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
  font-weight: 800;
  padding: 14px 30px;
  display: table;
  background-color: #75b527;
  border-radius: 4px;
  -webkit-box-shadow: 0 -11px 13px #4b9524 inset, 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -11px 13px #4b9524 inset, 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn:hover {
  -webkit-box-shadow: 0 -5px 13px #4b9524 inset, 0 3px 6px rgba(0, 0, 0, 0.36);
  box-shadow: 0 -5px 13px #4b9524 inset, 0 3px 6px rgba(0, 0, 0, 0.36);
}

.btn.blue {
  padding: 10px 24px;
  background-color: #009bdd;
  -webkit-box-shadow: 0 -11px 13px #0079b5 inset, 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -11px 13px #0079b5 inset, 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn.blue:hover {
  -webkit-box-shadow: 0 -2px 13px #0079b5 inset, 0 3px 6px rgba(0, 0, 0, 0.36);
  box-shadow: 0 -2px 13px #0079b5 inset, 0 3px 6px rgba(0, 0, 0, 0.36);
}

.btn.recall {
  padding: 0 30px 0 0;
}

.title {
  display: table;
  text-transform: uppercase;
  font-size: 32px;
  color: #2e4e95;
  font-weight: 800;
  position: relative;
}

.title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 240px;
  height: 120px;
  background: center/contain url("../img/title.png") no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.title.white {
  color: #fff;
}

.title.without::before {
  display: none;
}

.read_more {
  display: table;
  font-size: 14px;
  color: #4c4c4c;
  font-weight: 700;
  font-family: "Roboto";
  padding: 0 15px 5px 0;
  position: relative;
}

.read_more::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #509336;
}

.read_more::after {
  position: absolute;
  content: "";
  top: 3px;
  right: 0;
  width: 6px;
  height: 6px;
  border: 2px solid #4c4c4c;
  border-bottom: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.text {
  font-size: 18px;
  color: #4c4c4c;
  font-weight: 400;
  font-family: "Roboto";
  margin-bottom: 20px;
}

.text.back {
  padding: 20px 20px 20px 30px;
  background-color: #fff;
  border-left: 3px solid #509336;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.more {
  display: table;
  text-transform: uppercase;
  font-size: 14px;
  color: #509336;
  font-weight: 700;
  font-family: "Roboto";
  border-bottom: 2px solid #509336;
}

.phone {
  font-size: 23px;
  color: #333333;
  font-weight: 800;
  display: table;
  margin-bottom: 20px;
}

.recall {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px 0 0;
}

.recall img {
  padding: 10px;
  border-right: 1px solid #98c666;
  margin-right: 15px;
}

.profile {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 20px;
}

.profile span {
  font-size: 14px;
  margin-left: 25px;
  color: #2e4e95;
  font-weight: 800;
  padding-bottom: 4px;
  border-bottom: 1px solid #54b253;
}

.header_price {
  margin-top: 60px;
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  font-family: "Roboto";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header_price img {
  margin-right: 20px;
}

.header_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main {
  min-height: 60vh;
}

/*form*/

.form_inner {
  background: center/cover url("../img/form.png");
  padding-bottom: 90px;
  padding-right: 20px;
  position: relative;
  /*max-height: none !important;*/
}

.form_inner form .form_content {
  height: auto !important;
}

.form_inner .form_block {
  display: none;
}

.form_inner .form_block.active {
  display: block;
}

.form_inner .journal {
  position: absolute;
  right: -80px;
  bottom: 50px;
  pointer-events: none;
}

.form_inner .form_tab {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_inner .form_tab button {
  padding: 30px 10px;
  display: table;
  max-width: 320px;
  width: 100%;
  text-align: center;
  outline: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 29px;
  color: #ffffff;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.form_inner .form_tab button::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -5px;
  width: 100%;
  height: calc(77% - 2px);
  border: 3px solid #fff;
  border-top: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}

.form_inner .form_tab button::after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 17px;
  width: 100.1%;
  height: 25%;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  -webkit-transform: skewX(-53deg);
  transform: skewX(306deg);
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_inner .form_tab button.active::before,
.form_inner .form_tab button.active::after {
  opacity: 1;
}

.form_inner form label {
  /*padding-left: 6%;*/
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Roboto";
}

.form_inner form .form_content {
  margin-top: 25px;
  max-width: 820px;
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.form_inner form .form_content .form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 49%;
}

.form_inner form .form_content .form_item input,
.form_inner form .form_content .form_item select {
  padding: 18px;
  outline: none;
  width: 100%;
  border: 0;
  border-radius: 10px;
  margin-bottom: 10px;
}

.form_inner form .form_content .form_item select {
  -webkit-appearance: none;
}

.form_inner form .form_content .form_item .form_select {
  position: relative;
}

.form_inner form .form_content .form_item .form_select::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 18px;
  right: 20px;
  border: 2px solid #124095;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form_inner form .form_btn {
  margin-bottom: 10px;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form_inner form .form_policy {
  position: relative;
}

.form_inner form .form_policy input {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  opacity: 0;
}

.form_inner form .form_policy input:checked+label::after {
  opacity: 1;
}

.form_inner form .form_policy label {
  cursor: pointer;
  display: table;
  padding-left: 25px;
  position: relative;
}

.form_inner form .form_policy label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #009bdd;
  border-radius: 4px;
  background-color: #4c4c4c;
}

.form_inner form .form_policy label::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background-color: #009bdd;
  border-radius: 2px;
  opacity: 0;
}

/*product*/
.product_top {
  margin: 0 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product_top .title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.product_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1%;
}

.product_inner .product_item {
  min-height: 460px;
  width: 23%;
  margin: 1.5% 1%;
  position: relative;
}

.product_inner .product_item.active .product_frontface {
  -webkit-transform: rotateY(-0.5turn) perspective(500px);
  transform: rotateY(-0.5turn) perspective(500px);
}

.product_inner .product_item.active .product_backface {
  -webkit-transform: rotateY(0turn) perspective(500px);
  transform: rotateY(0turn) perspective(500px);
}

.product_inner .product_item .product_frontface,
.product_inner .product_item .product_backface {
  position: relative;
  height: 100%;
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  border-top: 3px solid #2d7f22;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.product_inner .product_item .product_frontface .product_more,
.product_inner .product_item .product_backface .product_more {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.product_inner .product_item .product_frontface .product_more img,
.product_inner .product_item .product_backface .product_more img {
  width: 25px;
  height: 25px;
}

.product_inner .product_item .product_backface {
  display: block;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(500px);
  transform: perspective(500px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 45px;
  -webkit-transform: rotateY(-0.5turn);
  transform: rotateY(-0.5turn);
}

.product_inner .product_item .product_backface p {
  font-size: 14px;
  color: #4c4c4c;
}

.product_inner .product_img {
  width: 100%;
  background-color: #fff;
  height: 200px;
  margin-bottom: 15px;
}

.product_inner .product_img img {
  max-height: 176px;
  max-width: 250px;
  -o-object-fit: contain;
  object-fit: contain;
}

.product_inner .product_item_title {
  font-size: 18px;
  color: #4c4c4c;
  font-weight: 800;
  margin-bottom: 10px;
}

.product_inner .product_text {
  margin-top: auto;
  font-size: 14px;
  color: #4c4c4c;
  font-weight: 400;
  font-family: "Roboto";
  margin-bottom: 10px;
}

.product_inner .product_price {
  font-size: 25px;
  color: #339900;
  font-weight: 800;
  margin-bottom: 15px;
}

.product_inner .product_price.lowprice {
  color: #4c4c4c;
}

.product_inner .product_price span {
  font-size: 14px;
  color: #4c4c4c;
  font-weight: 800;
}

.product_inner .product_info {
  font-size: 13px;
  color: #2d7f22;
  font-weight: 400;
  font-family: "Roboto";
}

.product_inner .product_count {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product_inner .product_count button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 28px;
  outline: none;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  background-color: transparent;
  color: #339900;
  font-weight: 600;
}

.product_inner .product_count input {
  width: 47px;
  height: 100%;
  text-align: center;
  border: 1px solid #e5e5e5;
  outline: none;
}

.product_inner .product_order {
  margin-bottom: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*services*/
.services {
  padding-top: 80px;
  margin-bottom: -270px;
  position: relative;
  z-index: 1;
}

.services_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.services_inner .title {
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.services_inner .services_item {
  transition: 0.3s;
  backdrop-filter: blur(0);
  padding: 50px 40px;
  min-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 33.3%;
  position: relative;
  overflow: hidden;
}

.services_inner .services_item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: -10;
}

.services_inner .services_item:hover img {
  transform: scale(1.15);
}

.glass {
  width: 175px;
  height: 175px;
  position: absolute;
  border-radius: 50%;
  cursor: crosshair;

  /* Создание эффекта стекла */
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);

  /* Изначально скрыто */
  display: none;
}

.services_inner .services_item:first-child {
  width: 66.6%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.services_inner .services_title {
  font-size: 30px;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-decoration: underline transparent;
  transition: 0.5s;
}

.services_inner .services_item:hover .services_title {
  text-decoration: underline #fff;
}

.services_inner .services_title span {
  font-size: 22px;
}

/*buy*/
.buy {
  padding: 285px 40px 55px 50px;
  min-height: 680px;
  background: center/cover url("../img/buy_bg.png");
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.buy::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  background: center/cover url("../img/buy.png") #03324f;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 94% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 94% 100%, 0% 100%);
}

.buy_inner {
  position: relative;
  max-width: 540px;
}

.buy_inner .gaz {
  position: absolute;
  top: -70px;
  left: 120%;
  z-index: 2;
}

.buy_text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Roboto";
  padding-left: 25px;
  margin: 30px 0;
  border-left: 3px solid #fff;
}

.buy_inner_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.buy_inner_content .buy_tel {
  font-size: 27px;
  color: #ffffff;
  font-weight: 800;
}

/*news*/
.news {
  padding: 50px 0;
  background: bottom/cover url("../img/news_bg.png");
}

.news .title::before {
  display: none;
}

.news_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.news_slider .slick-list {
  padding: 10px 0 20px;
}

.news_slider .news_item {
  height: initial;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 15px;
}

.news_slider .news_item img {
  height: 165px;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.news_slider .news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background: right bottom url("../img/news_icon.png") no-repeat #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 30px 30px;
}

.news_slider .news_title {
  font-size: 18px;
  color: #4c4c4c;
  font-weight: 800;
  margin-bottom: 30px;
}

.news_slider .date {
  margin-top: auto;
  display: table;
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  padding: 8px 10px;
  position: relative;
  z-index: 1;
}

.news_slider .date::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #40ab33;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  border-radius: 4px;
  z-index: -1;
}

/*about*/
.about {
  background: center/cover url("../img/about.png");
  padding-bottom: 60px;
  transition: 2s;
}

.about_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 1.5s;
  transform: translateX(-120%);
}

.about-active {
  transform: translateX(0%);
}

.about_inner .title {
  margin-bottom: 25px;
}

.about_content {
  width: 49%;
  padding: 50px 0;
}

.about_info {
  width: 49%;
  padding: 50px 0;
  position: relative;
}

.about_info::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 20%;
  width: 100%;
  height: 100%;
  background: center/cover url("../img/about_bg.png");
}

.about_slider .slick-prev,
.about_slider .slick-next {
  width: 42px;
  height: 30px;
  background: center/contain url("../img/arrow.svg") no-repeat;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: initial;
  bottom: -50px;
  -webkit-transform: translate(0);
  transform: translate(0);
  right: 30%;
}

.about_slider .slick-prev:hover::after,
.about_slider .slick-next:hover::after {
  opacity: 0.4;
}

.about_slider .slick-prev::before,
.about_slider .slick-next::before {
  display: none;
}

.about_slider .slick-prev::after,
.about_slider .slick-next::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #40ab33;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.about_slider .slick-prev {
  left: initial;
  right: 42%;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

.about_slider .slick-list {
  margin: 0;
}

.about_item {
  max-width: 750px;
  padding: 0 10px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_item img {
  width: calc(100% - 170px);
  height: 305px;
  -o-object-fit: cover;
  object-fit: cover;
}

.about_item .about_item_info {
  max-width: 170px;
  width: 100%;
}

.about_item .about_item_info p {
  padding-left: 70px;
  font-size: 26px;
  line-height: 20px;
  color: #fafafa;
  font-weight: 800;
  position: relative;
  margin-bottom: 35px;
}

.about_item .about_item_info p:last-child {
  margin-bottom: 0;
}

.about_item .about_item_info p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 48px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about_item .about_item_info p::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 48px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about_item .about_item_info p span {
  display: table;
  font-size: 14px;
  line-height: 12px;
  font-weight: 400;
}

/*footer*/
.footer {
  background: center/cover url("../img/footer.png");
  padding: 30px 0 40px;
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_content {
  width: 75%;
}

.footer_nav {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #326181;
}

.footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_nav ul li a {
  display: table;
  font-size: 16px;
  color: #ffffff;
  font-weight: 800;
}

.footer_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_info .footer_info_left {
  width: 48%;
}

.footer_info .footer_info_left p {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  font-family: "Roboto";
  color: #fff;
  font-size: 14px;
}

.footer_info .footer_info_left p img {
  max-width: 15px;
  width: 100%;
  margin-right: 15px;
}

.footer_info .footer_info_left p a {
  color: #339900;
  font-weight: bold;
}

.footer_info .footer_info_left .policy {
  display: table;
  margin-top: 20px;
  font-size: 14px;
  color: #96d469;
  border-bottom: 1px solid #96d469;
}

.footer_info .footer_info_right p {
  margin-bottom: 20px;
  font-family: "Roboto";
  color: #fff;
  font-size: 14px;
}

.footer_info .footer_info_right p:last-child {
  margin-bottom: 0;
}

.footer_logo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.footer_logo .logo p {
  margin-top: 5px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Roboto";
}

.footer_logo .copyright {
  display: table;
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #ffffff;
}
/* Страница вакансий */
.vacancy {  
  background: center/cover url(../img/about.png);
  padding-bottom: 60px;
}
.vacancy__header-title {
  margin-bottom: 10px;
}
.vacancy__header-text {
  font-size: 20px;
}
.vacancy__header {
  padding: 5px;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 1px 1px 4px rgba(0,0,0, 0.3);
  margin-bottom: 30px;
}

.vacancy__item {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25),
              0px -18px 18px -10px rgba(34, 60, 80, 0.2) inset;
  padding: 10px;
  margin-bottom: 40px;
  border-radius: 5px;
  max-height: 220px;
  overflow-y: hidden;
  position: relative;
}
.vacancy__item-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.vacancy__item-city {
  color: black;
  margin-bottom: 10px;
  font-size: 18px;
}
.vacancy__item-info {
  color: black;
  margin-bottom: 10px;
  font-size: 18px;
}
.vacancy__item-list {
  margin-left: 30px;
  margin-bottom: 20px;
  color: black;
  font-size: 18px;
}
.vacancy__item-description {
  list-style: disc;
}

.vacancy__item-more,
.vacancy__item-hide {
  border: none;
  border-bottom: 1px solid rgba(46, 78, 149, 1);
  background: transparent;
  cursor: pointer;
  color: rgba(46, 78, 149, 1);
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
.vacancy__item-more {
  opacity: 1;
  pointer-events: all;
}
.vacancy__item-more.hide {
  opacity: 0;
  pointer-events: none;
}
.vacancy__item-hide { 
  opacity: 0;
  pointer-events: none;
}
.vacancy__item-hide.active {
  opacity: 1;
  pointer-events: all;
}
/* Страница входа */
.login-main {
  min-height: 100vh;
  background-image: url('../img/login-page2.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.login-size-wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

.login-form-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.login-page__logo-prev {
  margin-left: 8%;
  margin-top: 130px;
  margin-right: 2%;
}

.login-page__logo-img {
  width: 20vw;
}

.login-form__slide-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 58px 0px 0px 0px;
  transition: 1s;
}
.login-form-content {
  margin: 20px;
  position: relative;
  padding: 40px 40px 30px 40px;
  border-radius: 40px;
  box-shadow: 0 4px 16px #000;
  background: rgba(0, 0, 0, 0.41);
  backdrop-filter: blur(45px);
  -webkit-backdrop-filter: blur(45px);
  transition: 1.3s;
}

.login-form-content::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  top: 21px;
  right: 30px;
  background-image: url('../img/logoAMG.svg');
  background-repeat: no-repeat;
}

.login__title {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 15px;
}

.login__text {
  color: #fff;
  font-size: 26px;
  margin-bottom: 40px;
}

.login-form {
  font-family: sans-serif;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.input-login,
.input-password,
.login-button {
  font-family: sans-serif;
  letter-spacing: 1px;
  font-size: 22px;
}

.login-group,
.password-group {
  position: relative;
  margin-bottom: 32px;
}

.label-login,
.label-password {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.input-login,
.input-password {
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  color: #E8E8E8;
  background: transparent;
}

.input-login:focus,
.input-password:focus {
  border-bottom: 1px solid #c5c579;
}

.login-button {
  padding: 10px 50px;
  border-radius: 5px;
  margin-right: 10px;
  color: #fff;
  background: rgba(255, 238, 226, 0.01);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: none;
  cursor: pointer;
  transition: 0.4s;
}

.login-button:focus,
.login-button:hover {
  background: rgb(0 0 0 / 50%);
}

.button-group {
  display: flex;
  justify-content: center;
}

.button-registration {
  padding: 10px 20px;
  background: rgb(72 142 151 / 11%);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 5px;
  font-family: sans-serif;
  letter-spacing: 1px;
  font-size: 22px;
  color: #00ffaa;
  transition: 0.4s;
}

.button-registration:hover,
.button-registration:focus {
  background: rgb(0 0 0 / 50%);
  color: #fff;
}

.input-login:focus~.label-login,
.input-password:focus~.label-password {
  top: -18px;
  font-size: 16px;
  color: #e0e0e0;
}

.input-login:hover~.label-login,
.input-login:not(:placeholder-shown)~.label-login,
.input-password:hover~.label-password,
.input-password:not(:placeholder-shown)~.label-password {
  top: -18px;
  font-size: 16px;
  color: #e0e0e0;
}

.authorization-fields {
  display: flex;
  flex-direction: column;
}

.login-restore-wrap {
  display: flex;
  justify-content: end;
}

.login-restore {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 18px;
  margin-right: 10px;
  color: #04d491;
  transition: 0.3s;
}

.login-restore:hover,
.login-restore:focus {
  color: #fff;
}

.restore-form-content {
  opacity: 1;
  margin: 20px;
  position: relative;
  padding: 40px 40px 30px 40px;
  border-radius: 40px;
  box-shadow: 0 4px 16px #000;
  background: rgba(0, 0, 0, 0.41);
  backdrop-filter: blur(45px);
  -webkit-backdrop-filter: blur(45px);
}
.restore-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.restore-text-wrap {
  margin-right: 10px;
}
.restore__title {
  white-space: nowrap;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
}

.restore__text {
  color: #fff;
  font-size: 17px;
}

.restore-form {
  font-family: sans-serif;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.restore-group {
  position: relative;
  margin-bottom: 32px;
}

.input-restore-email {
  font-family: sans-serif;
  letter-spacing: 1px;
  font-size: 22px;
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  color: #E8E8E8;
  background: transparent;
}

.input-restore-email:focus {
  border-bottom: 1px solid #c5c579;
}

.label-restore-email {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.input-restore-email:focus~.label-restore-email {
  top: -18px;
  font-size: 16px;
  color: #e0e0e0;
}

.input-restore-email:hover~.label-restore-email,
.input-restore-email:not(:placeholder-shown)~.label-restore-email {
  top: -18px;
  font-size: 16px;
  color: #e0e0e0;
}
.restore-prev {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #04d491;
  font-size: 18px;
  color: #04d491;
  transition: 0.3s;
}
.restore-prev:hover {
  color: #fff;
}
/* Футер входа */

.login-footer {
  height: 40px;
  margin-top: -40px;
  opacity: 0.8;
  color: #fff;
  padding-top: 5px;

  /* background: rgba(255, 238, 226, 0.01); */
  background: rgb(0 0 0 / 24%);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: inset 0 1px #fff;
}

.login-footer-info {
  display: flex;
  justify-content: space-around;
}

.login-footer-company {
  display: flex;
  flex-direction: column;
}

.login-footer__copyright {
  font-size: 14px;
}

.login-footer__agreement {
  position: relative;
  max-width: 260px;
  font-size: 12px;
}

.login-footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-footer__contacts-text {
  font-size: 16px;
}

@media (max-width: 850px) {
  .login-page__logo-prev {
    margin-left: 4%;
  }
}

@media (max-width: 775px) {
  .login-page__logo-prev {
    margin-left: 0;
    margin-right: 0;
  }

  .login-form-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 620px) {
  .login-page__logo-prev {
    margin-top: 20px;
  }

  .login-form-content {
    margin-top: 20px;
  }
}

@media (max-width: 540px) {
  .login-footer {
    height: 55px;
    margin-top: -55px;
    padding-top: 0px;
  }

  .login-button {
    padding: 10px 5px;
  }

  .button-registration {
    padding: 10px 5px;
  }

  .restore__title {
    white-space: normal;
  }

  .login-footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .login-footer-company {
    align-items: center;
  }

  .login-footer__contacts {
    align-items: center;
  }

  .login-footer__copyright {
    margin-bottom: 0;
  }

  .login-footer__contacts-text {
    margin-bottom: 0;
  }
}

@media (max-width: 400px) {
  .button-group {
    display: flex;
    flex-direction: column;
  }

  .login-button {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Реализация страицы входа окончена */
@media (max-width: 1400px) {

  .slick-prev,
  .slick-next {
    right: 0;
    top: -30px;
  }

  .slick-prev {
    left: initial;
    right: 60px;
  }

  .news_top {
    margin-bottom: 60px;
  }

  .form_inner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 31px solid #fff;
    border-right: 44px solid transparent;
  }
}

@media (max-width: 1220px) {
  .header_inner .header_navigation {
    position: relative;
    z-index: 25;
    top: 0;
    padding-top: 15px;
    left: 0;
    padding-left: 20px;
    background-color: transparent;
    backdrop-filter: blur(5px);
    width: 100%;
    position: fixed;
  }

  .main_content {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
  }

  .main_content .btn {
    margin: 20px 0;
  }

  .form_inner .journal {
    left: 70%;
  }

  .close {
    display: table;
  }

  .nav_toggle {
    display: block;
    margin-right: 15px;
  }

  .nav {
    margin-top: 120px;
    margin-left: 20px;
    overflow: auto;
    background-color: #fff;
    padding: 40px 15px 20px 15px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 260px;
    z-index: 100;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-700px);
    transform: translateX(-700px);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.22);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.22);
  }

  .nav ul {
    display: block;
  }

  .nav ul li {
    margin: 0 0 10px;
  }

  .nav ul li a {
    padding: 5px 0;
  }

  .nav.active {
    z-index: 25;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .header_inner .logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
  }

  .header_inner .header_left {
    width: 100%;
  }

  .main_inner {
    margin-left: 0;
  }

  .main_title {
    font-size: 35px;
  }

  .header_info {
    max-width: 265px;
    margin-left: 25px;
    width: 100%;
  }

  .product_inner .product_item {
    width: 31.3%;
  }

  .services .container-fluid {
    padding: 0;
  }

  .services_inner .services_item {
    padding: 50px 30px;
  }

  .services_inner .services_title {
    font-size: 20px;
  }

  .buy::before {
    width: 85%;
  }

  .buy_inner {
    max-width: 460px;
  }

  .buy_inner .gaz {
    width: 150px;
    top: 0;
    left: 105%;
  }

  .buy_inner_content .buy_tel {
    font-size: 18px;
  }
}

@media (max-width: 1220px) {
  .about_inner .about_info img {
    display: block;
    width: 100%;
  }

  .swiper-button {
    max-width: 160px;
  }

  .main_text::before {
    display: none;
  }

  .home .main_text::before {
    display: none;
  }

  .header {
    min-height: 70vh;
    position: relative;
    padding-bottom: 0;
  }

  .header::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
  }

  .header_inner {
    position: relative;
  }

  .phone {
    font-size: 20px;
  }

  .form_inner {
    padding: 0 15px 30px;
  }

  .form_inner::before {
    display: none;
  }

  .form_inner form label {
    padding-left: 0;
    display: table;
  }

  .form_inner form .form_content {
    padding-left: 0;
    display: block;
  }

  .form_inner form .form_content .form_item {
    width: 100%;
  }

  .form_inner form .form_btn {
    margin-top: 10px;
    display: block;
  }

  .form_inner form .form_btn .btn {
    margin-top: 20px;
  }

  .form_inner .form_tab button {
    max-width: 100%;
    width: 50%;
    font-size: 20px;
  }

  .form_inner .form_tab button::after {
    display: none;
  }

  .form_inner .form_tab button::before {
    height: 100%;
  }

  .services_inner .services_item {
    width: 100%;
    min-height: 260px;
  }

  .title {
    font-size: 24px;
  }

  .buy::before {
    width: 100%;
    bottom: 30px;
  }

  .buy_inner .gaz {
    display: none;
  }

  .footer_content .footer_info {
    display: block;
  }

  .footer_content .footer_info .footer_info_left {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 1220px) {
  .phone {
    font-size: 22px;
    margin-bottom: 0;
    margin-right: auto;
  }

  .main_title {
    font-size: 30px;
  }

  .title {
    font-size: 28px;
  }

  .header_inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 100px;
  }

  .header_inner .header_left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .header_info {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
  }

  .header_info .profile {
    margin-top: 0;
    margin-left: 20px;
  }

  .header_info .profile span {
    margin-left: 0;
    font-size: 0;
  }

  .header_info .header_price {
    display: none;
  }

  .form_inner .form_tab button {
    font-size: 24px;
  }

  .form_inner .form_tab button::after {
    left: 17.5px;
  }

  .form_inner .journal {
    display: none;
  }

  .product_inner .product_item {
    width: 48%;
  }

  .services_inner .services_item {
    width: 50%;
  }

  .services_inner .services_item:first-child {
    width: 100%;
  }

  .footer_inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer_content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }

  .footer_content .footer_nav {
    display: none;
  }

  .footer_content .footer_info {
    margin-top: 30px;
  }

  .footer_logo {
    margin: 0 auto;
  }

  .footer_logo .copyright {
    margin-top: 20px;
  }

  .about_inner {
    display: block;
  }

  .about_inner .about_content {
    width: 100%;
    padding: 40px 0;
  }

  .about_inner .about_info {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .header_info .recall {
    margin-left: auto;
    margin-right: 15px;
    font-size: 0;
    padding: 0;
  }

  .header_info .recall img {
    margin-right: 0;
  }

  .services_inner .services_item {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .main_title {
    font-size: 26px;
  }

  .product_inner .product_item {
    width: 100%;
    margin: 3% 1%;
  }

  .form_inner .form_tab button {
    padding: 20px 10px;
    font-size: 14px;
  }

  .services_inner .services_item {
    padding: 50px 10px;
  }

  .services_inner .title {
    font-size: 20px;
  }

  .buy {
    padding: 285px 0 55px 0;
  }

  .buy_inner_content {
    display: block;
  }

  .buy_inner_content .buy_tel {
    display: table;
    margin-bottom: 15px;
  }

  .buy_text {
    padding-left: 15px;
    font-size: 14px;
  }

  .product_top {
    display: block;
    margin-bottom: 20px;
  }

  .product_top .more {
    margin-left: auto;
    margin-top: 30px;
  }

  .news_top {
    display: block;
  }

  .news_top .more {
    margin-top: 20px;
  }

  .services {
    padding-top: 30px;
  }

  .services_inner .services_item:first-child {
    padding: 30px 0;
    min-height: auto;
    background: none !important;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about_slider .slick-prev,
  .about_slider .slick-next {
    right: 5px;
    bottom: initial;
    top: -40px;
  }

  .about_slider .slick-prev {
    right: 80px;
  }

  .about_info {
    padding: 50px 0 30px;
  }

  .about_info::before {
    left: 0;
    width: auto;
    left: -15px;
    right: -15px;
  }

  .about_item {
    padding: 0 5px;
    display: block !important;
  }

  .about_item img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }

  .about_item .about_item_info {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about_item .about_item_info p {
    font-size: 18px;
  }
}

/*# sourceMappingURL=style.css.map */