* {
  outline: none;
  font-family: Manrope;
}

html {
  -webkit-text-size-adjust: none;
  height: 100%;
  scrollbar-gutter: stable both-edges;
}

body {
  margin: 0;
  overflow-x: hidden;
  height: 100%;
  letter-spacing: -0.2px;
}

h1 {
  padding: 0;
  margin: 0;
  color: #333333;
}
h1 span {
  font-weight: 500;
}

p {
  padding: 0;
  margin: 0;
  line-height: 23px;
}

a {
  text-decoration: none;
}

input[type=text], input[type=submit], textarea {
  -webkit-appearance: none;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

::-webkit-scrollbar-thumb {
  background-color: #a0a0a0;
  border-radius: 8px;
}

._req {
  border: 1px solid #8E8E8E;
}

._error {
  border: 1px solid #f81414;
}

.container {
  max-width: 1480px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container-nav {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
  z-index: 20;
  height: 58px;
  transition: 0.5s;
  transform: translateY(0px);
}
.container-nav::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: rgb(204, 204, 204);
  left: 0px;
  opacity: 0;
  bottom: 0;
  transition: 0.7s;
}
.container-nav_active::before {
  opacity: 0.7;
  transition: 0.7s;
}
.container-nav__active {
  transition: 0.7s;
  opacity: 0;
  transform: translateY(-80px);
}

.caption {
  font-size: 33px;
  line-height: 47px;
  margin-top: 20px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
}
.caption span {
  color: #2882D3;
}

.subcaption {
  font-size: 17px;
  color: #828282;
  padding-top: 30px;
}

.img-block_one, .img-block_two {
  margin-top: 130px;
}
.img-block_filter {
  margin-top: 120px;
}
.img-block img {
  width: 100%;
  height: auto;
}

.button {
  font-size: 16px;
  text-transform: uppercase;
  color: #4F4F4F;
  font-weight: 700;
  display: inline-block;
  padding-right: 20px;
  position: relative;
  transition: 0.7s;
  box-sizing: border-box;
  line-height: 0.8;
}
.button::before {
  transition: 0.7s;
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_button.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  right: 0px;
  top: 0;
  box-sizing: border-box;
}
.button::after {
  transition: 0.7s;
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #4F4F4F;
  left: 0px;
  top: 16px;
  box-sizing: border-box;
}
.button:hover {
  color: #2882D3;
  transition: 0.7s;
}
.button:hover::before {
  transition: 0.7s;
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_button_active.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  right: 0px;
  top: 0px;
  box-sizing: border-box;
}
.button:hover::after {
  background-color: #2882D3;
}

.form-popup {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  padding: 55px 30px 40px 30px;
  box-sizing: border-box;
  background-color: #fff;
}
.form-popup_title {
  font-size: 25px;
  line-height: 37px;
  color: #333333;
  font-weight: 700;
}
.form-popup_subtitle {
  font-size: 17px;
  margin-top: 25px;
  color: #4F4F4F;
  line-height: 27px;
}
.form-popup_close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  cursor: pointer;
}
.form-popup_close img {
  width: 24px;
}
.form-popup_overlay {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.78);
  z-index: 99;
  transition: 0.5s;
}
.form-popup_overlay__active {
  display: block;
  opacity: 1;
  transition: 0.5s;
  visibility: visible;
}

.page-caption {
  padding-top: 20px;
  font-size: 73px;
  line-height: 85px;
  margin-top: 0;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 39px;
  transform: translateX(-3px);
}
.page-caption span {
  color: #2882D3;
}

.header-navigation {
  margin-top: 80px;
  display: flex;
}
.header-navigation a {
  color: #828282;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: 0.5s;
}
.header-navigation a:hover {
  transition: 0.5s;
  color: #2882D3;
}
.header-navigation_active p {
  color: #828282;
  font-size: 14px;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0px;
}
.header-logo a {
  text-decoration: none;
}
.header-logo a img {
  width: 185px;
}
.header-nav {
  display: flex;
  padding-bottom: 5px;
  padding-left: 0;
}
.header-nav li {
  list-style: none;
}
.header-nav li a {
  color: #333333;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.7s;
}
.header-nav li a:hover {
  color: #2882D3;
  transition: 0.7s;
}
.header-phone {
  display: flex;
  align-items: center;
}
.header-phone a {
  color: #333333;
  font-weight: 700;
  font-size: 19px;
  padding-bottom: 5px;
}
.header-offer {
  margin-top: 87px;
}
.header-caption {
  position: relative;
}
.header-caption h1 {
  font-size: 119px;
  text-transform: uppercase;
  color: #333333;
  font-weight: 500;
  line-height: 137px;
  transform: translateX(-5px);
}
.header-caption_cta {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 49px;
  left: 796px;
}
.header-caption_cta img {
  width: 92px;
}
.header-caption_cta p {
  font-size: 18px;
  color: #4F4F4F;
  max-width: 341px;
  padding-left: 47px;
  transform: translateY(-2px);
}
.header-subcaption {
  font-weight: 500;
  color: #4F4F4F;
  font-size: 19px;
  text-transform: uppercase;
}
.header-subcaption_cta__mobile {
  display: none;
}
.header-button {
  animation: header-btn 3s infinite ease-out;
  cursor: pointer;
}
.header-img {
  margin-top: 50px;
}
.header-img img {
  width: 100%;
  height: auto;
}
.header-popup {
  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-popup_block {
  box-sizing: border-box;
  width: 360px;
  padding: 50px 20px 20px 20px;
}
.header-popup__title {
  font-size: 29px;
  text-transform: uppercase;
  line-height: 43px;
  color: #333333;
  font-weight: 700;
}
.header-popup_subtitle {
  font-size: 16px;
  color: #4F4F4F;
  line-height: 23px;
  padding-top: 15px;
}
.header-popup_overlay {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.78);
  z-index: 99;
  transition: 0.5s;
}
.header-popup_overlay__active {
  display: block;
  opacity: 1;
  transition: 0.5s;
  visibility: visible;
}
.header-popup__text {
  font-size: 12px;
  color: #4F4F4F;
  line-height: 19px;
  margin-top: 25px;
  margin-bottom: 15px;
}
.header-popup__text a {
  color: #2882D3;
  transition: 0.7s;
  position: relative;
}
.header-popup__text a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2882D3;
  left: 2px;
  top: 15px;
}
.header-popup__text a:hover {
  transition: 0.7s;
  color: #288DE8;
}
.header-popup_close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
}
.header-popup_close img {
  max-width: 21px;
  cursor: pointer;
}
.header-form {
  padding-top: 30px;
}
.header-form form {
  box-sizing: border-box;
  margin: auto;
}
.header-form input {
  background: transparent;
  width: 320px;
  height: 60px;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  box-sizing: border-box;
}
.header-form input::-moz-placeholder {
  opacity: 0.8;
  color: #4F4F4F;
  font-weight: 400;
}
.header-form input::placeholder {
  opacity: 0.8;
  color: #4F4F4F;
  font-weight: 400;
}
.header-form button {
  margin-top: 5px;
  width: 320px;
  background-color: #2882D3;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  height: 60px;
  box-sizing: border-box;
  font-size: 16px;
  padding-right: 30px;
  cursor: pointer;
  transition: 0.7s;
  position: relative;
}
.header-form button::before {
  transition: 0.7s;
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_button_white.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  right: 70px;
  top: 25px;
}
.header-form button:hover {
  background-color: #288DE8;
  transition: 0.7s;
}
.header-menu {
  display: none;
  position: relative;
  width: 30px;
  padding-left: 0px;
  cursor: pointer;
  padding-top: 23px;
  transform: translateY(7px);
  margin-left: 25px;
}
.header-menu span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #4F4F4F;
  top: 10%;
  border-radius: 10px;
  transition: 0.15s;
}
.header-menu span::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #4F4F4F;
  top: 3px;
  transition: 0.21s;
  border-radius: 10px;
  transition: 0.15s;
  transform: translateY(-10px);
}
.header-menu span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #4F4F4F;
  top: -1px;
  left: 15px;
  transition: 0.21s;
  border-radius: 10px;
  transition: 0.15s;
  transform: translateY(8px);
}
.header-menu_mobile {
  position: fixed;
  background-color: #ffffff;
  top: 0;
  right: 0;
  opacity: 0.97;
  height: 100dvh;
  z-index: 99;
  vertical-align: middle;
  width: 100%;
  transition: 0.8s;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
}
.header-menu_mobile__active {
  transform: translateX(0px);
  visibility: visible;
  opacity: 0.98;
  transition: 0.8s;
}
.header-menu_mobile__block {
  position: relative;
  top: 10%;
  padding-left: 10px;
}
.header-menu_mobile__block a {
  padding-top: 25px;
  display: block;
}
.header-menu_mobile__close {
  text-align: center;
  position: absolute;
  top: 13px;
  right: 5px;
}
.header-menu_mobile__close p {
  color: #fff;
  font-size: 18px;
}
.header-menu_mobile__close img {
  width: 39px;
}
.header-menu_mobile__phone {
  margin-top: 35px;
}
.header-menu_mobile__phone a {
  font-size: 23px;
  font-weight: 500;
  color: #4F4F4F;
}
.header-menu_mobile__nav {
  padding-left: 0;
}
.header-menu_mobile__nav li {
  list-style: none;
  position: relative;
}
.header-menu_mobile__nav li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: rgb(204, 204, 204);
  left: 0px;
  top: 66px;
  opacity: 0.35;
}
.header-menu_mobile__nav li::after {
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_blue.svg");
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;
  background-size: contain;
  right: 10px;
  top: 41px;
}
.header-menu_mobile__nav li a {
  color: #4F4F4F;
  display: block;
  font-size: 27px;
  margin-right: 10px;
  line-height: 1;
}
.header-menu_mobile__button {
  margin-top: 15px;
  color: #2882D3;
}
.header-menu_mobile__button::before {
  transition: 0.7s;
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_blue.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  right: 0px;
  top: 0px;
}
.header-menu_mobile__button::after {
  background-color: #2882D3;
}
.header-menu_mobile__info {
  position: absolute;
  left: 10px;
  bottom: 30px;
}

.privacy-title {
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 35px;
  margin-top: 90px;
  line-height: 43px;
  text-transform: uppercase;
}
.privacy-subtitle {
  color: #4F4F4F;
}
.privacy-subtitle p {
  color: #4F4F4F;
  font-size: 17px;
}
.privacy-subtitle a {
  text-decoration: underline;
  color: #2882D3;
  transition: 0.5s;
  font-size: 17px;
}
.privacy-subtitle a:hover {
  color: #288DE8;
  transition: 0.5s;
}
.privacy-subtitle span {
  font-size: 21px;
  color: #4F4F4F;
  text-transform: uppercase;
  font-weight: 700;
}

.tabs-nav {
  display: flex;
  padding-top: 20px;
  padding-bottom: 35px;
}
.tabs-nav_item {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 4px;
  padding-bottom: 4px;
  border: 0.7px #333333 solid;
  border-radius: 50px;
  font-weight: 500;
  color: #333333;
  font-size: 17px;
  margin-right: 10px;
  cursor: pointer;
  box-sizing: border-box;
}
.tabs-nav_item__active {
  color: #fff;
  background-color: #333333;
  font-weight: 400;
}
.tabs-content_item {
  opacity: 0;
  overflow: hidden;
  height: 0;
  transform: scale(0);
  transform: translateY(50px);
}
.tabs-content_item__active {
  opacity: 1;
  overflow: visible;
  height: 100%;
  transition: 1.5s;
  transform: scale(1);
  transform: translateY(0px);
}

.wrap {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 65px;
  right: 20px;
  box-sizing: border-box;
  z-index: 98;
  cursor: pointer;
}
.wrap_overlay {
  right: 27px;
}

.btn-phone-wrap {
  position: relative;
  box-sizing: border-box;
}

.btn-phone {
  background: #288DE8 url(../img/icon/phone.svg) center center no-repeat;
  height: 55px;
  width: 55px;
  border-radius: 50px;
  animation: phone-rotate 1.3s infinite alternate linear;
  box-sizing: border-box;
}

.btn-phone-circle {
  height: 55px;
  width: 55px;
  border: 8px solid #288DE8;
  opacity: 0.4;
  border-radius: 55px;
  animation: btn-phone-circle 1.4s infinite alternate linear;
  box-sizing: border-box;
}

.btn-phone-circle2 {
  height: 55px;
  width: 55px;
  position: absolute;
  top: 0;
  border: 1px solid #288DE8;
  border-radius: 55px;
  animation: btn-phone-circle2 3s infinite ease-out;
  box-sizing: border-box;
}

@keyframes phone-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(3deg);
  }
}
@keyframes btn-phone-circle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes btn-phone-circle2 {
  0% {
    opacity: 0.2;
    transform: scale(0.7);
  }
  30% {
    opacity: 0.8;
    transform: scale(1.3);
  }
  100% {
    opacity: 0.1;
    transform: scale(1.5);
  }
}
@keyframes header-btn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1530px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1360px) {
  .container {
    max-width: 1220px;
  }
}
@media (max-width: 1270px) {
  .container {
    max-width: 960px;
  }
  .header-nav {
    display: none;
  }
  .header-menu {
    display: block;
  }
  .header-wrapper {
    padding-top: 11px;
  }
  .header-caption h1 {
    font-size: 87px;
    line-height: 100px;
  }
  .header-caption_cta {
    bottom: 38px;
    left: 577px;
  }
  .header-caption_cta img {
    width: 70px;
  }
  .header-caption_cta p {
    font-size: 16px;
    padding-left: 30px;
  }
  .header-subcaption {
    font-size: 17px;
  }
}
@media (max-width: 1000px) {
  .container {
    max-width: 920px;
  }
  .header-caption h1 {
    transform: translateX(-2px);
    font-size: 85px;
    line-height: 98px;
  }
  .header-caption_cta {
    left: 556px;
  }
  .header-caption_cta img {
    width: 65px;
  }
  .header-caption_cta p {
    padding-left: 20px;
  }
}
@media (max-width: 960px) {
  .caption {
    font-size: 27px;
    line-height: 37px;
  }
  .img-block_one {
    margin-top: 90px;
  }
  .img-block_two {
    margin-top: 105px;
  }
  .img-block_filter {
    margin-top: 100px;
  }
  .container {
    max-width: 770px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-caption h1 {
    margin-bottom: 10px;
  }
  .header-caption_cta {
    right: 0px;
    left: auto;
    bottom: -51px;
  }
  .header-caption_cta p {
    width: 277px;
  }
  .header-img {
    margin-top: 80px;
  }
  .wrap {
    bottom: 20px;
    right: 20px;
  }
  .page-caption {
    font-size: 47px;
    line-height: 57px;
  }
}
@media (max-width: 795px) {
  .container {
    max-width: 730px;
  }
  .header-caption h1 {
    font-size: 78px;
    line-height: 89px;
    margin-bottom: 10px;
  }
}
@media (max-width: 730px) {
  .header-caption h1 {
    font-size: 63px;
    line-height: 71px;
  }
  .header-caption_cta {
    bottom: -45px;
  }
  .header-caption_cta img {
    width: 56px;
  }
  .header-img {
    margin-top: 80px;
  }
  .header-menu_mobile__nav li::before {
    top: 67px;
  }
  .header-menu_mobile__nav li::after {
    top: 35px;
    right: 10px;
    width: 14px;
    height: 14px;
  }
  .header-menu_mobile__nav li a {
    font-size: 21px;
    padding-top: 30px;
  }
  .page-caption {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 700px) {
  .header-caption h1 {
    margin-bottom: 5px;
  }
  .header-caption_cta {
    left: 414px;
    right: auto;
    bottom: 98px;
  }
  .header-caption_cta p {
    display: none;
  }
  .header-caption_cta img {
    width: 48px;
  }
  .header-subcaption {
    font-weight: 400;
    color: #828282;
  }
  .header-subcaption_cta__mobile {
    display: block;
    padding-top: 15px;
  }
  .header-subcaption_cta__mobile p {
    font-size: 16px;
    color: #4F4F4F;
    max-width: 450px;
  }
  .header-img {
    margin-top: 20px;
    background: url("../img/header/header_mobile.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    height: 468px;
  }
  .header-img img {
    display: none;
  }
  .header-navigation a, .header-navigation p {
    font-size: 13px;
  }
  .img-block_one {
    background: url("../img/img_1_mobile.jpg") no-repeat;
    background-size: cover;
    background-position: top left -200px;
    height: 468px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 45px;
  }
  .img-block_one img {
    display: none;
  }
  .img-block_two {
    background: url("../img/img_2_mobile.jpg") no-repeat;
    background-size: cover;
    background-position: top left -265px;
    height: 468px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .img-block_two img {
    display: none;
  }
  .img-block_filter {
    background: url("../img/filter_mobile.jpg") no-repeat;
    background-size: cover;
    background-position: top left -100px;
    height: 468px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .img-block_filter img {
    display: none;
  }
  .img-block_maintenance {
    background: url("../img/maintenance_mobile.jpg") no-repeat;
    background-size: cover;
    background-position: top left -30px;
    height: 468px;
  }
  .img-block_maintenance img {
    display: none;
  }
  .img-block_device {
    background: url("../img/device_mobile.jpg") no-repeat;
    background-size: cover;
    background-position: top left -30px;
    height: 468px;
  }
  .img-block_device img {
    display: none;
  }
}
@media (max-width: 585px) {
  .header-caption h1 {
    font-size: 51px;
    line-height: 59px;
  }
  .header-caption_cta {
    left: 337px;
    bottom: 97px;
  }
  .header-caption_cta img {
    width: 39px;
  }
  .header-wrapper {
    padding-top: 19px;
  }
  .header-phone a {
    display: none;
  }
  .header-img {
    height: 400px;
  }
  .img-block_one {
    background-position: top left -141px;
    height: 400px;
  }
  .img-block_two {
    background-position: top left -210px;
    height: 400px;
  }
  .img-block_maintenance {
    background-position: top left -43px;
    height: 400px;
  }
  .img-block_filter {
    background-position: top left -173px;
    height: 400px;
  }
}
@media (max-width: 479px) {
  .header-caption h1 {
    font-size: 44px;
    line-height: 51px;
  }
  .header-caption_cta {
    left: 293px;
    bottom: 95px;
  }
  .header-caption_cta img {
    width: 33px;
  }
  .header-img {
    height: 300px;
  }
  .img-block_device {
    background-position: top left -43px;
    height: 400px;
  }
}
@media (max-width: 468px) {
  .img-block_maintenance {
    background-position: top left -157px;
  }
}
@media (max-width: 438px) {
  .caption {
    font-size: 22px;
    line-height: 33px;
  }
  .img-block_one {
    margin-top: 25px;
  }
  .img-block_two {
    margin-top: 85px;
  }
  .img-block_filter {
    margin-top: 80px;
  }
  .subcaption {
    font-size: 15px;
  }
  .page-caption {
    font-size: 32px;
    line-height: 37px;
    transform: translateX(-1px);
  }
}
@media (max-width: 414px) {
  .header-caption h1 {
    font-size: 38px;
    line-height: 47px;
  }
  .header-caption_cta {
    left: 251px;
    bottom: 126px;
  }
  .header-caption_cta img {
    width: 29px;
  }
  .header-subcaption_cta__mobile {
    padding-top: 20px;
  }
  .header-subcaption_cta__mobile p {
    max-width: 328px;
  }
  .tabs-nav {
    flex-wrap: wrap;
  }
  .tabs-nav_item {
    padding-left: 22px;
    padding-right: 22px;
  }
  .tabs-nav_item:nth-child(2) {
    margin-right: 0;
  }
}
.about {
  padding-top: 80px;
}
.about-caption {
  max-width: 1015px;
}
.about-wrapper {
  display: flex;
  padding-top: 20px;
}
.about-text {
  margin-top: 20px;
}
.about-text_zero {
  min-width: 50%;
}
.about-text_block {
  padding-left: 7px;
}
.about-text_block p {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  padding-bottom: 15px;
}
.about-advantage {
  display: flex;
  justify-content: space-between;
  margin-top: 95px;
  position: relative;
  padding-bottom: 39px;
}
.about-advantage::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #333333;
  left: 0px;
  top: -15px;
}
.about-advantage_item {
  box-sizing: border-box;
  width: 358px;
  padding-left: 20px;
  position: relative;
}
.about-advantage_item::before {
  position: absolute;
  content: "";
  width: 0.7px;
  height: 200px;
  background-color: #333333;
  left: 0px;
  top: -10px;
}
.about-advantage_item::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  left: -13px;
  top: -26px;
}
.about-advantage_item:nth-child(1) {
  padding-left: 0;
}
.about-advantage_item:nth-child(1)::before, .about-advantage_item:nth-child(1)::after {
  display: none;
}
.about-advantage_item__title {
  font-size: 29px;
  text-transform: uppercase;
  color: #2882D3;
  font-weight: 700;
  padding-bottom: 30px;
  padding-top: 5px;
}
.about-advantage_item__subtitle {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 330px;
}

@media (max-width: 1530px) {
  .about-advantage_item__subtitle {
    max-width: 247px;
  }
  .about-text_block {
    padding-left: 0;
  }
}
@media (max-width: 1270px) {
  .about-advantage {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .about-advantage::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: #333333;
    left: 0px;
    bottom: 218px;
    z-index: -1;
  }
  .about-advantage_item {
    width: 50%;
    margin-bottom: 53px;
  }
  .about-advantage_item::before {
    height: 205px;
  }
  .about-advantage_item::after {
    left: -12px;
  }
  .about-advantage_item:nth-child(3) {
    padding-left: 0px;
  }
  .about-advantage_item:nth-child(3)::before, .about-advantage_item:nth-child(3)::after {
    display: none;
  }
  .about-advantage_item__subtitle {
    max-width: 310px;
  }
}
@media (max-width: 960px) {
  .about {
    padding-top: 60px;
  }
  .about-text_zero {
    min-width: 0%;
  }
  .about-advantage {
    margin-top: 70px;
  }
  .about-advantage::after {
    bottom: 198px;
  }
  .about-advantage_item::before {
    height: 179px;
  }
  .about-advantage_item__title {
    font-size: 25px;
    padding-bottom: 15px;
  }
}
@media (max-width: 700px) {
  .about-advantage::before {
    display: none;
  }
  .about-advantage::after {
    display: none;
  }
  .about-advantage_item {
    padding-left: 0;
    width: 100%;
  }
  .about-advantage_item:nth-child(1)::before, .about-advantage_item:nth-child(3)::before {
    display: block;
  }
  .about-advantage_item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
    left: 0px;
    top: -15px;
  }
  .about-advantage_item::after {
    display: none;
  }
  .about-advantage_item__subtitle {
    max-width: 309px;
  }
}
@media (max-width: 438px) {
  .about {
    padding-top: 45px;
  }
}
.service {
  padding-top: 80px;
}
.service-caption {
  max-width: 755px;
}
.service-wrapper {
  display: flex;
  justify-content: space-between;
}
.service-wrapper_item {
  cursor: pointer;
}
.service-wrapper_item__title {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333333;
  margin-top: 15px;
}
.service-wrapper_item__img img {
  width: 358px;
}
.service-wrapper_item__button {
  margin-top: 15px;
}
.service-way {
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
}
.service-way:nth-last-child(1)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #4F4F4F;
  left: 0px;
  bottom: 0px;
}
.service-way::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #4F4F4F;
  left: 0px;
  top: 0px;
}
.service-way a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-way_title {
  font-size: 27px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  transition: 0.7s;
}
.service-way_title:hover {
  color: #2882D3;
  transition: 0.7s;
}
.service-way_img {
  height: 22px;
}
.service-way_img img {
  width: 22px;
}

@media (max-width: 1530px) {
  .service-wrapper_item__img img {
    width: 319px;
  }
}
@media (max-width: 1360px) {
  .service-wrapper_item__img img {
    width: 294px;
  }
}
@media (max-width: 1270px) {
  .service-wrapper {
    flex-wrap: wrap;
  }
  .service-wrapper_item:nth-child(1) {
    margin-bottom: 35px;
  }
  .service-wrapper_item__img img {
    width: 472px;
  }
}
@media (max-width: 1000px) {
  .service-wrapper_item__img img {
    width: 452px;
  }
}
@media (max-width: 960px) {
  .service {
    padding-top: 60px;
  }
  .service-wrapper_item__img img {
    width: 377px;
  }
  .service-way {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .service-way a {
    align-items: flex-start;
  }
  .service-way_title {
    font-size: 19px;
    padding-right: 30px;
  }
  .service-way_img {
    height: 16px;
    margin-top: 4px;
  }
  .service-way_img img {
    width: 16px;
  }
}
@media (max-width: 795px) {
  .service-wrapper_item__img img {
    width: 357px;
  }
}
@media (max-width: 760px) {
  .service-wrapper_item:nth-last-child(n+2) {
    margin-bottom: 35px;
  }
  .service-wrapper_item__img img {
    height: auto;
    width: 100%;
  }
  .service-tabs_nav__item {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
@media (max-width: 700px) {
  .service-way:nth-last-child(1)::after {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
  .service-way::before {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
}
@media (max-width: 438px) {
  .service {
    padding-top: 45px;
  }
}
.sale {
  margin-top: 110px;
}
.sale-wrapper {
  background: url(../img/sale/background.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
}
.sale-caption {
  text-align: center;
  color: #fff;
  max-width: 890px;
  margin: auto;
  padding-left: 43px;
  padding-right: 43px;
}
.sale-button {
  background-color: #fff;
  width: 270px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 35px;
  cursor: pointer;
}
.sale-button_block {
  color: #333333;
}
.sale-button_block::after {
  display: none;
}
.sale-button:hover .sale-button_block {
  color: #2882D3;
  transition: 0.7s;
}
.sale-button:hover .sale-button_block::before {
  transition: 0.7s;
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_button_active.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  right: 0px;
  top: 0px;
}

@media (max-width: 960px) {
  .sale {
    margin-top: 95px;
  }
}
@media (max-width: 614px) {
  .sale-caption {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 438px) {
  .sale {
    margin-top: 80px;
  }
}
@media (max-width: 415px) {
  .sale-caption {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.step {
  padding-top: 80px;
}
.step-caption {
  max-width: 945px;
}
.step-wrapper {
  display: flex;
  padding-top: 35px;
}
.step-zero {
  width: 357px;
  height: 10px;
  box-sizing: border-box;
}
.step-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1108px;
  position: relative;
  margin-left: 15px;
}
.step-block::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #333333;
  left: 0;
  top: -15px;
}
.step-block::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #333333;
  left: 0px;
  top: 236px;
  z-index: -1;
}
.step-block_zero {
  width: 100%;
  height: 0.7px;
  background-color: #333333;
  position: relative;
  top: -13px;
  z-index: 1;
}
.step-block_zero::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  left: 362px;
  top: -13px;
  z-index: 20;
}
.step-block_zero::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  right: 345px;
  top: -13px;
  z-index: 20;
}
.step-block_item {
  width: 358px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 35px;
  box-sizing: border-box;
}
.step-block_item::before {
  position: absolute;
  content: "";
  width: 0.7px;
  height: 243px;
  background-color: #333333;
  left: 0px;
  top: -10px;
}
.step-block_item::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  left: -13px;
  top: -26px;
  z-index: 10;
}
.step-block_item:nth-child(1) {
  padding-left: 0px;
}
.step-block_item:nth-child(1)::before, .step-block_item:nth-child(1)::after {
  display: none;
}
.step-block_item:nth-child(4) {
  padding-left: 0px;
}
.step-block_item:nth-child(4)::before, .step-block_item:nth-child(4)::after {
  display: none;
}
.step-block_item__title {
  font-size: 29px;
  text-transform: uppercase;
  color: #2882D3;
  font-weight: 700;
  padding-bottom: 30px;
  padding-top: 5px;
}
.step-block_item__subtitle {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 330px;
}
.step-block_item__number {
  font-size: 19px;
  font-weight: 700;
  color: #4F4F4F;
  padding-top: 30px;
}

@media (max-width: 1530px) {
  .step-block {
    max-width: 987px;
  }
  .step-block_item {
    width: 321px;
  }
  .step-block_zero::before {
    left: 320px;
  }
  .step-block_zero::after {
    right: 307px;
  }
}
@media (max-width: 1360px) {
  .step-zero {
    display: none;
  }
  .step-block {
    max-width: 100%;
    margin-left: 0;
  }
  .step-block_item {
    width: 400px;
  }
  .step-block_zero::before {
    left: 398px;
  }
  .step-block_zero::after {
    right: 385px;
  }
}
@media (max-width: 1270px) {
  .step-block_item {
    z-index: 2;
    width: 49%;
  }
  .step-block_item:nth-child(2)::after, .step-block_item:nth-child(4)::after, .step-block_item:nth-child(6)::after {
    display: block;
    left: -12px;
  }
  .step-block_item:nth-child(4) {
    padding-left: 20px;
  }
  .step-block_item:nth-child(4)::before {
    display: block;
  }
  .step-block_item:nth-child(3), .step-block_item:nth-child(5) {
    padding-left: 0;
  }
  .step-block_item:nth-child(3)::before, .step-block_item:nth-child(5)::before {
    display: none;
  }
  .step-block_item::after {
    display: none;
  }
  .step-block_zero::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: #333333;
    left: 0px;
    top: -249px;
    z-index: -1;
  }
  .step-block_zero::after {
    left: 477px;
  }
}
@media (max-width: 1000px) {
  .step-block_zero::after {
    left: 456px;
  }
}
@media (max-width: 960px) {
  .step {
    padding-top: 60px;
  }
  .step-block::after {
    top: 214px;
  }
  .step-block_item__title {
    font-size: 25px;
    padding-bottom: 15px;
  }
  .step-block_item::before {
    height: 215px;
  }
  .step-block_zero::after {
    left: 380px;
  }
  .step-block_zero::before {
    top: -228px;
  }
}
@media (max-width: 795px) {
  .step-block_zero::after {
    left: 49.3%;
  }
}
@media (max-width: 700px) {
  .step-block::before, .step-block::after {
    display: none;
  }
  .step-block_item {
    width: 100%;
  }
  .step-block_item::after {
    display: none;
  }
  .step-block_item:nth-child(1), .step-block_item:nth-child(2), .step-block_item:nth-child(3), .step-block_item:nth-child(4), .step-block_item:nth-child(5), .step-block_item:nth-child(6) {
    padding-left: 0;
  }
  .step-block_item:nth-child(1)::after, .step-block_item:nth-child(2)::after, .step-block_item:nth-child(3)::after, .step-block_item:nth-child(4)::after, .step-block_item:nth-child(5)::after, .step-block_item:nth-child(6)::after {
    display: none;
  }
  .step-block_item:nth-child(1)::before, .step-block_item:nth-child(2)::before, .step-block_item:nth-child(3)::before, .step-block_item:nth-child(4)::before, .step-block_item:nth-child(5)::before, .step-block_item:nth-child(6)::before {
    display: block;
  }
  .step-block_item::before {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
    left: 0;
    top: -15px;
  }
  .step-block_item__subtitle {
    max-width: 530px;
  }
  .step-block_zero {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
  .step-block_zero::after, .step-block_zero::before {
    display: none;
  }
}
@media (max-width: 470px) {
  .step-block_item__subtitle {
    max-width: 323px;
  }
}
@media (max-width: 438px) {
  .step {
    padding-top: 45px;
  }
}
.partner {
  padding-top: 80px;
}
.partner-caption {
  max-width: 693px;
}
.partner-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
}
.partner-wrapper_item {
  border: 0.7px solid #4F4F4F;
  width: 233px;
  height: 129px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-wrapper_item img {
  height: 85px;
}

@media (max-width: 1530px) {
  .partner-wrapper_item {
    width: 208px;
  }
  .partner-wrapper_item img {
    height: 75px;
  }
}
@media (max-width: 1360px) {
  .partner-wrapper_item {
    width: 191px;
  }
  .partner-wrapper_item img {
    height: 70px;
  }
}
@media (max-width: 1270px) {
  .partner-wrapper {
    flex-wrap: wrap;
  }
  .partner-wrapper_item {
    width: 308px;
  }
  .partner-wrapper_item:nth-child(-n+3) {
    margin-bottom: 15px;
  }
  .partner-wrapper_item img {
    height: 97px;
  }
}
@media (max-width: 1000px) {
  .partner-wrapper_item {
    width: 295px;
  }
}
@media (max-width: 960px) {
  .partner {
    padding-top: 50px;
  }
  .partner-wrapper_item {
    width: 245px;
  }
  .partner-wrapper_item img {
    height: 90px;
  }
}
@media (max-width: 795px) {
  .partner-wrapper_item {
    width: 232px;
  }
  .partner-wrapper_item img {
    height: 83px;
  }
}
@media (max-width: 759px) {
  .partner-wrapper_item {
    width: 48.5%;
  }
  .partner-wrapper_item img {
    height: 73px;
  }
}
@media (max-width: 700px) {
  .partner-wrapper_item {
    border: 0.7px solid rgb(204, 204, 204);
    opacity: 0.85;
  }
}
@media (max-width: 500px) {
  .partner-wrapper_item {
    width: 48.3%;
    height: 100px;
  }
  .partner-wrapper_item:nth-child(-n+4) {
    margin-bottom: 10px;
  }
  .partner-wrapper_item img {
    height: 63px;
  }
}
@media (max-width: 438px) {
  .partner {
    padding-top: 39px;
  }
}
.contact {
  padding-top: 80px;
}
.contact-page {
  padding-top: 70px;
}
.contact-maps {
  padding-top: 120px;
}
.contact-map {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 600px;
  touch-action: auto;
  border-radius: 5px;
  filter: grayscale(0.1);
  -ms-filter: grayscale(0.1);
  -webkit-filter: grayscale(0.1);
  -moz-filter: grayscale(0.1);
  -o-filter: grayscale(0.1);
}
.contact-caption {
  margin-bottom: 55px;
}
.contact-item {
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  cursor: pointer;
}
.contact-item:nth-last-child(1)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #4F4F4F;
  left: 0px;
  bottom: 0px;
}
.contact-item:hover .contact-item_subtitle p {
  color: #2882D3;
  transition: 0.7s;
}
.contact-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #4F4F4F;
  left: 0px;
  top: 0px;
}
.contact-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.contact-item_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-item_title {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4F4F4F;
  width: 179px;
}
.contact-item_subtitle {
  width: 438px;
  padding-left: 295px;
}
.contact-item_subtitle p {
  font-size: 27px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  transition: 0.7s;
}
.contact-item_img {
  height: 22px;
}
.contact-item_img img {
  width: 22px;
}

.ymaps-layers-pane {
  filter: grayscale(100%);
}

@media (max-width: 1270px) {
  .contact-item_subtitle {
    padding-left: 0;
    width: 465px;
  }
}
@media (max-width: 1000px) {
  .contact-item_subtitle {
    width: 453px;
  }
}
@media (max-width: 1000px) {
  .contact-item_title {
    font-size: 17px;
    text-transform: none;
    font-weight: 500;
  }
  .contact-item_subtitle {
    width: 457px;
  }
  .contact-item_subtitle p {
    font-size: 19px;
  }
  .contact-item_img {
    height: 16px;
  }
  .contact-item_img img {
    height: 16px;
    width: 16px;
  }
}
@media (max-width: 960px) {
  .contact {
    padding-top: 70px;
  }
  .contact-page {
    padding-top: 60px;
  }
  .contact-item_subtitle {
    width: 410px;
  }
  .contact-maps {
    padding-top: 110px;
  }
}
@media (max-width: 795px) {
  .contact-item_subtitle {
    width: 395px;
  }
}
@media (max-width: 700px) {
  .contact-item a {
    flex-wrap: wrap;
  }
  .contact-item_wrapper {
    flex-wrap: wrap;
  }
  .contact-item_title {
    width: 100%;
    padding-bottom: 10px;
  }
  .contact-item_subtitle {
    width: 310px;
  }
  .contact-item_img {
    height: 15px;
    transform: translateY(-43px);
  }
  .contact-item_img img {
    width: 14px;
    height: 14px;
  }
  .contact-item::before {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
  .contact-item:nth-last-child(1)::after {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
}
@media (max-width: 438px) {
  .contact {
    padding-top: 65px;
  }
  .contact-page {
    padding-top: 39px;
  }
  .contact-maps {
    padding-top: 90px;
  }
}
.footer {
  padding-top: 100px;
}
.footer-wrapper {
  display: flex;
}
.footer-info {
  width: 497px;
  box-sizing: border-box;
}
.footer-info_logo img {
  width: 210px;
}
.footer-info_block {
  padding-top: 20px;
}
.footer-info_block p {
  font-size: 14px;
  color: #4F4F4F;
  padding-bottom: 8px;
}
.footer-info_button {
  margin-top: 43px;
  cursor: pointer;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
}
.footer-nav_item {
  display: flex;
  flex-direction: column;
}
.footer-nav_item:nth-child(1) {
  width: 250px;
}
.footer-nav_item:nth-child(2) {
  width: 375px;
}
.footer-nav_item p {
  font-size: 16px;
  color: #4F4F4F;
  font-weight: 700;
  padding-bottom: 15px;
}
.footer-nav_item a {
  text-decoration: none;
  color: #4F4F4F;
  font-size: 14px;
  padding-bottom: 8px;
  transition: 0.7s;
}
.footer-nav_item a:hover {
  transition: 0.7s;
  color: #2882D3;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  position: relative;
  padding-bottom: 15px;
}
.footer-bottom::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: rgb(204, 204, 204);
  left: 0px;
  top: 16px;
}
.footer-bottom_item {
  display: flex;
}
.footer-bottom_item p {
  font-size: 14px;
  color: #4F4F4F;
  padding-right: 5px;
}
.footer-bottom_item a {
  text-decoration: none;
  font-size: 14px;
  color: #4F4F4F;
  transition: 0.7s;
  position: relative;
}
.footer-bottom_item a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #4F4F4F;
  left: 2px;
  top: 21px;
  transition: 0.7s;
}
.footer-bottom_item a:hover {
  transition: 0.7s;
  color: #2882D3;
}
.footer-bottom_item a:hover::before {
  transition: 0.7s;
  background-color: #2882D3;
}

@media (max-width: 1530px) {
  .footer-info {
    width: 416px;
  }
}
@media (max-width: 1360px) {
  .footer-info {
    width: 366px;
  }
}
@media (max-width: 1270px) {
  .footer-info {
    width: 325px;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 482px;
  }
  .footer-nav_item:nth-child(2) {
    width: 232px;
  }
  .footer-nav_item:nth-child(3) {
    width: 232px;
    padding-left: 248px;
    transform: translateY(-15px);
  }
}
@media (max-width: 1000px) {
  .footer-info {
    width: 312px;
  }
}
@media (max-width: 960px) {
  .footer {
    padding-top: 70px;
  }
  .footer-info {
    width: 325px;
  }
  .footer-wrapper {
    justify-content: space-between;
  }
  .footer-nav {
    width: 432px;
  }
  .footer-nav_item:nth-child(1) {
    width: 200px;
  }
  .footer-nav_item:nth-child(3) {
    padding-left: 200px;
  }
  .footer-bottom {
    flex-direction: column;
    padding-top: 43px;
    padding-bottom: 27px;
  }
  .footer-bottom_item:nth-last-child(n+2) {
    padding-bottom: 10px;
  }
}
@media (max-width: 795px) {
  .footer-nav {
    width: 400px;
  }
  .footer-nav_item:nth-child(1) {
    width: 167px;
  }
  .footer-nav_item:nth-child(3) {
    padding-left: 167px;
  }
}
@media (max-width: 700px) {
  .footer-nav {
    width: 232px;
  }
  .footer-nav_item {
    margin-bottom: 10px;
  }
  .footer-nav_item:nth-child(1), .footer-nav_item:nth-child(3) {
    width: 232px;
    padding-left: 0;
    transform: translateY(0px);
  }
}
@media (max-width: 538px) {
  .footer-wrapper {
    flex-wrap: wrap;
    position: relative;
  }
  .footer-info p {
    display: none;
  }
  .footer-info_button {
    position: absolute;
    bottom: 30px;
    color: #2882D3;
  }
  .footer-info_button::before {
    transition: 0.7s;
    position: absolute;
    content: "";
    background-image: url("../img/icon/arrow_blue.svg");
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-size: contain;
    right: 0px;
    top: 0;
    box-sizing: border-box;
  }
  .footer-info_button::after {
    transition: 0.7s;
    position: absolute;
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: #2882D3;
    left: 0px;
    top: 16px;
    box-sizing: border-box;
  }
  .footer-nav {
    width: 300px;
    padding-top: 10px;
    padding-bottom: 50px;
  }
}
.maintenance {
  padding-top: 80px;
}
.maintenance-caption {
  max-width: 945px;
}
.maintenance-wrapper {
  display: flex;
  padding-top: 35px;
}
.maintenance-zero {
  width: 357px;
  height: 10px;
  box-sizing: border-box;
}
.maintenance-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1108px;
  position: relative;
  margin-left: 15px;
}
.maintenance-block::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #333333;
  left: 0;
  top: -15px;
}
.maintenance-block::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #333333;
  left: 0px;
  top: 151px;
  z-index: -1;
}
.maintenance-block_zero {
  width: 100%;
  height: 0.7px;
  background-color: #333333;
  position: relative;
  top: -13px;
  z-index: 1;
}
.maintenance-block_zero::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  left: 362px;
  top: -13px;
  z-index: 20;
}
.maintenance-block_zero::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  right: 345px;
  top: -13px;
  z-index: 20;
}
.maintenance-block_item {
  width: 358px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 35px;
  box-sizing: border-box;
}
.maintenance-block_item::before {
  position: absolute;
  content: "";
  width: 0.7px;
  height: 153px;
  background-color: #333333;
  left: 0px;
  top: -10px;
}
.maintenance-block_item::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  left: -13px;
  top: -26px;
  z-index: 10;
}
.maintenance-block_item:nth-child(1) {
  padding-left: 0px;
}
.maintenance-block_item:nth-child(1)::before, .maintenance-block_item:nth-child(1)::after {
  display: none;
}
.maintenance-block_item:nth-child(4) {
  padding-left: 0px;
}
.maintenance-block_item:nth-child(4)::before, .maintenance-block_item:nth-child(4)::after {
  display: none;
}
.maintenance-block_item__title {
  font-size: 29px;
  text-transform: uppercase;
  color: #2882D3;
  font-weight: 700;
  padding-bottom: 30px;
  padding-top: 5px;
}
.maintenance-block_item__subtitle {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 330px;
}
.maintenance-block_item__number {
  font-size: 19px;
  font-weight: 700;
  color: #4F4F4F;
  padding-top: 30px;
}

@media (max-width: 1530px) {
  .maintenance-block {
    max-width: 987px;
  }
  .maintenance-block_item {
    width: 321px;
  }
  .maintenance-block_zero::before {
    left: 320px;
  }
  .maintenance-block_zero::after {
    right: 307px;
  }
}
@media (max-width: 1360px) {
  .maintenance-zero {
    display: none;
  }
  .maintenance-block {
    max-width: 100%;
    margin-left: 0;
  }
  .maintenance-block_item {
    width: 400px;
  }
  .maintenance-block_zero::before {
    left: 398px;
  }
  .maintenance-block_zero::after {
    right: 385px;
  }
}
@media (max-width: 1270px) {
  .maintenance-block_item {
    width: 49%;
    z-index: 2;
  }
  .maintenance-block_item:nth-child(2)::after, .maintenance-block_item:nth-child(4)::after, .maintenance-block_item:nth-child(6)::after {
    display: block;
    left: -12px;
  }
  .maintenance-block_item:nth-child(4) {
    padding-left: 20px;
  }
  .maintenance-block_item:nth-child(4)::before {
    display: block;
  }
  .maintenance-block_item:nth-child(3), .maintenance-block_item:nth-child(5) {
    padding-left: 0;
  }
  .maintenance-block_item:nth-child(3)::before, .maintenance-block_item:nth-child(5)::before {
    display: none;
  }
  .maintenance-block_item::after {
    display: none;
  }
  .maintenance-block_zero::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: #333333;
    left: 0px;
    top: -165px;
    z-index: 2;
  }
  .maintenance-block_zero::after {
    left: 477px;
  }
}
@media (max-width: 1000px) {
  .maintenance-block_zero::after {
    left: 456px;
  }
}
@media (max-width: 960px) {
  .maintenance {
    padding-top: 60px;
  }
  .maintenance-block::after {
    top: 273px;
  }
  .maintenance-block_item__title {
    font-size: 25px;
    padding-bottom: 15px;
  }
  .maintenance-block_item::before {
    height: 135px;
  }
  .maintenance-block_zero::after {
    left: 380px;
  }
  .maintenance-block_zero::before {
    top: -287px;
  }
}
@media (max-width: 795px) {
  .maintenance-block_zero::after {
    left: 49.3%;
  }
}
@media (max-width: 700px) {
  .maintenance-block::before, .maintenance-block::after {
    display: none;
  }
  .maintenance-block_item {
    width: 100%;
  }
  .maintenance-block_item::after {
    display: none;
  }
  .maintenance-block_item:nth-child(1), .maintenance-block_item:nth-child(2), .maintenance-block_item:nth-child(3), .maintenance-block_item:nth-child(4), .maintenance-block_item:nth-child(5), .maintenance-block_item:nth-child(6) {
    padding-left: 0;
  }
  .maintenance-block_item:nth-child(1)::after, .maintenance-block_item:nth-child(2)::after, .maintenance-block_item:nth-child(3)::after, .maintenance-block_item:nth-child(4)::after, .maintenance-block_item:nth-child(5)::after, .maintenance-block_item:nth-child(6)::after {
    display: none;
  }
  .maintenance-block_item:nth-child(1)::before, .maintenance-block_item:nth-child(2)::before, .maintenance-block_item:nth-child(3)::before, .maintenance-block_item:nth-child(4)::before, .maintenance-block_item:nth-child(5)::before, .maintenance-block_item:nth-child(6)::before {
    display: block;
  }
  .maintenance-block_item::before {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 0.7px;
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
    left: 0;
    top: -15px;
  }
  .maintenance-block_item__subtitle {
    max-width: 337px;
  }
  .maintenance-block_zero {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
  .maintenance-block_zero::after, .maintenance-block_zero::before {
    display: none;
  }
}
@media (max-width: 470px) {
  .maintenance-block_item__subtitle {
    max-width: 323px;
  }
}
@media (max-width: 438px) {
  .maintenance {
    padding-top: 45px;
  }
}
.preservation {
  padding-top: 80px;
}
.preservation-item {
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
.preservation-item:nth-last-child(1)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #4F4F4F;
  left: 0px;
  bottom: 0px;
}
.preservation-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.7px;
  background-color: #4F4F4F;
  left: 0px;
  top: 0px;
}
.preservation-item_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.preservation-item_title {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4F4F4F;
  width: 300px;
}
.preservation-item_subtitle {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 488px;
  padding-left: 221px;
}
.preservation-item_img {
  height: 22px;
}
.preservation-item_img img {
  width: 22px;
}

@media (max-width: 1270px) {
  .preservation-item_title {
    width: 400px;
  }
  .preservation-item_subtitle {
    padding-left: 0;
    width: 352px;
  }
}
@media (max-width: 1000px) {
  .preservation-item_title {
    font-size: 17px;
    text-transform: none;
    font-weight: 500;
  }
  .preservation-item_img {
    height: 16px;
  }
  .preservation-item_img img {
    height: 16px;
    width: 16px;
  }
}
@media (max-width: 960px) {
  .preservation {
    padding-top: 50px;
  }
  .preservation-item_title {
    width: 275px;
  }
}
@media (max-width: 700px) {
  .preservation-item_wrapper {
    flex-wrap: wrap;
  }
  .preservation-item_title {
    width: 100%;
    padding-bottom: 10px;
  }
  .preservation-item_subtitle {
    width: auto;
    max-width: 544px;
  }
  .preservation-item_img {
    height: 15px;
    transform: translateY(-53px);
  }
  .preservation-item_img img {
    width: 14px;
    height: 14px;
  }
  .preservation-item::before {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
  .preservation-item:nth-last-child(1)::after {
    background-color: rgb(204, 204, 204);
    opacity: 0.85;
  }
}
@media (max-width: 593px) {
  .preservation-item_subtitle {
    max-width: 350px;
  }
  .preservation-item_img {
    height: 15px;
    transform: translateY(-64px);
  }
}
@media (max-width: 405px) {
  .preservation-item_wrapper {
    position: relative;
  }
  .preservation-item_subtitle {
    max-width: 300px;
  }
  .preservation-item_img {
    position: absolute;
    right: 0px;
    top: 67px;
  }
}
@media (max-width: 438px) {
  .preservation {
    padding-top: 35px;
  }
}
.device {
  padding-top: 80px;
}
.device-caption {
  max-width: 900px;
}
.device-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}
.device-wrapper_item {
  width: 483px;
}
.device-wrapper_item__title {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 467px;
}
.device-wrapper_item__button {
  cursor: pointer;
  color: #2882D3;
}
.device-wrapper_item__button::before {
  transition: 0.7s;
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_blue.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  right: 0px;
  top: 0;
  box-sizing: border-box;
}
.device-wrapper_item__button::after {
  transition: 0.7s;
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #2882D3;
  left: 0px;
  top: 16px;
  box-sizing: border-box;
}

@media (max-width: 1530px) {
  .device-wrapper_item {
    width: 431px;
  }
}
@media (max-width: 1360px) {
  .device-wrapper_item {
    width: 398px;
  }
}
@media (max-width: 1270px) {
  .device-wrapper_item {
    width: 50%;
  }
  .device-wrapper_item:nth-child(3) {
    padding-left: 479px;
    margin-top: 15px;
  }
}
@media (max-width: 1000px) {
  .device-wrapper_item:nth-child(3) {
    padding-left: 460px;
  }
}
@media (max-width: 960px) {
  .device {
    padding-top: 60px;
  }
  .device-wrapper_item {
    width: 100%;
  }
  .device-wrapper_item:nth-child(1) {
    order: 3;
    margin-top: 25px;
  }
  .device-wrapper_item:nth-child(3) {
    padding-left: 0px;
  }
  .device-wrapper_item__title {
    max-width: 100%;
  }
}
@media (max-width: 438px) {
  .device {
    padding-top: 45px;
  }
}
.embedded {
  padding-top: 80px;
}
.embedded-caption {
  max-width: 900px;
}
.embedded-caption_subtitle {
  padding-top: 15px;
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 487px;
}
.embedded-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
}
.embedded-wrapper_item {
  margin-bottom: 35px;
}
.embedded-wrapper_item__title {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333333;
  margin-top: 15px;
}
.embedded-wrapper_item__img img {
  width: 358px;
}
.embedded-wrapper_item__zero {
  width: 358px;
  height: 0;
}

@media (max-width: 1530px) {
  .embedded-wrapper_item__img img {
    width: 319px;
  }
  .embedded-wrapper_item__zero {
    width: 319px;
  }
}
@media (max-width: 1360px) {
  .embedded-wrapper_item__img img {
    width: 294px;
  }
  .embedded-wrapper_item__zero {
    width: 294px;
  }
}
@media (max-width: 1270px) {
  .embedded-wrapper {
    flex-wrap: wrap;
  }
  .embedded-wrapper a:nth-child(1) {
    margin-bottom: 35px;
  }
  .embedded-wrapper_item__img img {
    width: 472px;
  }
  .embedded-wrapper_item__zero {
    width: 472px;
  }
}
@media (max-width: 1000px) {
  .embedded-wrapper_item__img img {
    width: 452px;
  }
  .embedded-wrapper_item__zero {
    width: 452px;
  }
}
@media (max-width: 960px) {
  .embedded {
    padding-top: 60px;
  }
  .embedded-wrapper_item__img img {
    width: 377px;
  }
  .embedded-wrapper_item__zero {
    width: 377px;
  }
}
@media (max-width: 795px) {
  .embedded-wrapper_item__img img {
    width: 357px;
  }
  .embedded-wrapper_item__zero {
    width: 357px;
  }
}
@media (max-width: 760px) {
  .embedded-wrapper a:nth-last-child(n+2) {
    margin-bottom: 35px;
  }
  .embedded-wrapper_item__img img {
    height: auto;
    width: 100%;
  }
  .embedded-wrapper_item__zero {
    width: 100%;
  }
}
@media (max-width: 438px) {
  .embedded-wrapper_item:nth-child(6) {
    margin-bottom: 15px;
  }
}
.filter {
  padding-top: 45px;
}
.filter-caption {
  max-width: 900px;
}
.filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}
.filter-wrapper_item {
  width: 483px;
}
.filter-wrapper_item__title {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 467px;
}
.filter-wrapper_item__button {
  cursor: pointer;
  color: #2882D3;
}
.filter-wrapper_item__button::before {
  transition: 0.7s;
  position: absolute;
  content: "";
  background-image: url("../img/icon/arrow_blue.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: contain;
  right: 0px;
  top: 0;
  box-sizing: border-box;
}
.filter-wrapper_item__button::after {
  transition: 0.7s;
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #2882D3;
  left: 0px;
  top: 16px;
  box-sizing: border-box;
}

@media (max-width: 1530px) {
  .filter-wrapper_item {
    width: 431px;
  }
}
@media (max-width: 1360px) {
  .filter-wrapper_item {
    width: 398px;
  }
}
@media (max-width: 1270px) {
  .filter-wrapper_item {
    width: 50%;
  }
  .filter-wrapper_item:nth-child(3) {
    padding-left: 479px;
    margin-top: 15px;
  }
}
@media (max-width: 1000px) {
  .filter-wrapper_item:nth-child(3) {
    padding-left: 460px;
  }
}
@media (max-width: 960px) {
  .filter {
    padding-top: 15px;
  }
  .filter-wrapper_item {
    width: 100%;
  }
  .filter-wrapper_item:nth-child(1) {
    order: 3;
    margin-top: 25px;
  }
  .filter-wrapper_item:nth-child(3) {
    padding-left: 0px;
  }
  .filter-wrapper_item__title {
    max-width: 100%;
  }
}
@media (max-width: 438px) {
  .filter {
    padding-top: 15px;
  }
}
.warm {
  padding-top: 80px;
}
.warm-caption {
  max-width: 900px;
}
.warm-caption_subtitle {
  padding-top: 15px;
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 487px;
}
.warm-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 25px;
}
.warm-wrapper_item__title {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333333;
  margin-top: 15px;
}
.warm-wrapper_item__subtitle {
  padding-top: 10px;
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
  max-width: 326px;
}
.warm-wrapper_item__img img {
  width: 358px;
}
.warm-wrapper_item__zero {
  width: 358px;
  height: 0;
}

@media (max-width: 1530px) {
  .warm-wrapper_item__img img {
    width: 319px;
  }
  .warm-wrapper_item__zero {
    width: 319px;
  }
}
@media (max-width: 1360px) {
  .warm-wrapper_item__img img {
    width: 294px;
  }
  .warm-wrapper_item__subtitle {
    max-width: 296px;
  }
  .warm-wrapper_item__zero {
    width: 294px;
  }
}
@media (max-width: 1270px) {
  .warm-wrapper {
    flex-wrap: wrap;
  }
  .warm-wrapper a:nth-child(1) {
    margin-bottom: 35px;
  }
  .warm-wrapper_item {
    margin-bottom: 35px;
  }
  .warm-wrapper_item:nth-child(3) {
    margin-bottom: 0;
  }
  .warm-wrapper_item__subtitle {
    max-width: 470px;
  }
  .warm-wrapper_item__img img {
    width: 472px;
  }
  .warm-wrapper_item__zero {
    width: 472px;
  }
}
@media (max-width: 1000px) {
  .warm-wrapper_item__img img {
    width: 452px;
  }
  .warm-wrapper_item__subtitle {
    max-width: 450px;
  }
  .warm-wrapper_item__zero {
    width: 452px;
  }
}
@media (max-width: 960px) {
  .warm {
    padding-top: 60px;
  }
  .warm-wrapper_item__img img {
    width: 377px;
  }
  .warm-wrapper_item__subtitle {
    max-width: 370px;
  }
  .warm-wrapper_item__zero {
    width: 377px;
  }
}
@media (max-width: 795px) {
  .warm-wrapper_item__img img {
    width: 357px;
  }
  .warm-wrapper_item__subtitle {
    max-width: 351px;
  }
  .warm-wrapper_item__zero {
    width: 357px;
  }
}
@media (max-width: 760px) {
  .warm-wrapper a:nth-last-child(n+2) {
    margin-bottom: 35px;
  }
  .warm-wrapper_item__img img {
    height: auto;
    width: 100%;
  }
  .warm-wrapper_item__subtitle {
    max-width: 100%;
  }
  .warm-wrapper_item__zero {
    width: 100%;
  }
}
@media (max-width: 438px) {
  .warm {
    padding-top: 45px;
  }
}
.extra {
  padding-top: 80px;
}
.extra-caption {
  max-width: 915px;
}
.extra-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.extra-wrapper_text {
  width: 50%;
}
.extra-wrapper_text p {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 23px;
}
.extra-wrapper_text p:nth-child(2) {
  padding-top: 15px;
}
.extra-wrapper_img {
  display: flex;
}
.extra-wrapper_img img {
  width: 358px;
  height: auto;
  margin-top: 8px;
}
.extra-wrapper_img img:nth-child(1) {
  margin-right: 15px;
}

@media (max-width: 1530px) {
  .extra-wrapper_text p {
    padding-right: 30px;
  }
}
@media (max-width: 1360px) {
  .extra-wrapper_img img {
    width: 294px;
  }
}
@media (max-width: 1270px) {
  .extra-wrapper_img img {
    width: 228px;
  }
}
@media (max-width: 1000px) {
  .extra-wrapper_img img {
    width: 218px;
  }
}
@media (max-width: 960px) {
  .extra {
    padding-top: 60px;
  }
  .extra-wrapper {
    flex-wrap: wrap;
  }
  .extra-wrapper_text {
    width: 100%;
  }
  .extra-wrapper_text p {
    padding-right: 0;
  }
  .extra-wrapper_img {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
  }
  .extra-wrapper_img img {
    width: 49%;
  }
  .extra-wrapper_img img:nth-child(1) {
    margin-right: 0;
  }
}
@media (max-width: 479px) {
  .extra-wrapper_img {
    flex-wrap: wrap;
  }
  .extra-wrapper_img img {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 438px) {
  .extra {
    padding-top: 45px;
  }
}
[data-aos=up-1] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos=up-1].aos-animate {
  opacity: 1;
  transform: translateY(0px);
}

[data-aos=up-2] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos=up-2].aos-animate {
  opacity: 1;
  transition-delay: 0.5s;
  transform: translateY(0px);
}

[data-aos=up-3] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos=up-3].aos-animate {
  opacity: 1;
  transition-delay: 0.8s;
  transform: translateY(0px);
}

[data-aos=up-4] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos=up-4].aos-animate {
  opacity: 1;
  transition-delay: 1.1s;
  transform: translateY(0px);
}

[data-aos=up-5] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos=up-5].aos-animate {
  opacity: 1;
  transition-delay: 1.4s;
  transform: translateY(0px);
}

[data-aos=up-6] {
  opacity: 0;
  transform: translateY(30px);
}

[data-aos=up-6].aos-animate {
  opacity: 1;
  transition-delay: 1.7s;
  transform: translateY(0px);
}

[data-aos=fade-1] {
  opacity: 0;
}

[data-aos=fade-1].aos-animate {
  opacity: 1;
}

[data-aos=fade-2] {
  opacity: 0;
}

[data-aos=fade-2].aos-animate {
  opacity: 1;
  transition-delay: 0.5s;
}

[data-aos=fade-3] {
  opacity: 0;
}

[data-aos=fade-3].aos-animate {
  opacity: 1;
  transition-delay: 0.8s;
}

[data-aos=fade-4] {
  opacity: 0;
}

[data-aos=fade-4].aos-animate {
  opacity: 1;
  transition-delay: 1.1s;
}

[data-aos=fade-5] {
  opacity: 0;
}

[data-aos=fade-5].aos-animate {
  opacity: 1;
  transition-delay: 1.4s;
}

@media (max-width: 760px) {
  [data-aos=up-2].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=up-3].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=up-4].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=up-5].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=up-5].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=fade-2].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=fade-3].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=fade-4].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=fade-5].aos-animate {
    transition-delay: 0s;
  }
  [data-aos=fade-6].aos-animate {
    transition-delay: 0s;
  }
}/*# sourceMappingURL=style.css.map */