@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-400.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-700.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  right: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  color: #111111;
  background: #fcfcfc;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.body--active {
  background: none;
  overflow: visible;
}

img {
  max-width: 100%;
  height: auto;
}

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1340px;
  padding-left: 90px;
  padding-right: 90px;
}

.container--small-width {
  margin: 0 auto;
  max-width: 1340px;
  padding-left: 200px;
  padding-right: 200px;
}

.feedback__popap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  -webkit-transition: 0.30s;
  -o-transition: 0.30s;
  transition: 0.30s;
  overflow: auto;
}

.feedback__button-close {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 40px;
  right: 45px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.feedback__button-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  background: #777777;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.feedback__button-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  background: #777777;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.feedback__button-close:hover.feedback__button-close::after,
.feedback__button-close:hover.feedback__button-close::before {
  background: #111111;
}

.feedback__popap-title {
  font-size: 1.5rem;
  line-height: 25px;
  margin: 0;
  margin-bottom: 20px;
}

.feedback__popap-note {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.feedback__background {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2500;
}

.feedback__popap--active {
  visibility: visible;
  opacity: 1;
}

.feedback__popap-wrapper {
  position: absolute;
  top: 60px;
  margin-bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 35%;
  min-width: 450px;
  height: auto;
  min-height: 670px;
  background: #ffffff;
  border-radius: 15px;
  z-index: 5000;
}

.feedback__popap-form {
  margin: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.feedback__popap-input {
  margin-bottom: 10px;
  padding: 15px 20px;
  background: #ffffff;
  color: #111111;
  -webkit-box-shadow: inset 0 0 0 50px #ffffff;
  box-shadow: inset 0 0 0 50px #ffffff;
  -webkit-text-fill-color: #111111;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #777777;
  border-radius: 5px;
  outline: none;
}

.feedback__popap-input:focus {
  border: 1px solid #111111;
}

.feedback__popap-input::-webkit-input-placeholder {
  color: #777777;
  -webkit-text-fill-color: #777777;
}

.feedback__popap-input::-moz-placeholder {
  color: #777777;
  -webkit-text-fill-color: #777777;
}

.feedback__popap-input:-ms-input-placeholder {
  color: #777777;
  -webkit-text-fill-color: #777777;
}

.feedback__popap-input::-ms-input-placeholder {
  color: #777777;
  -webkit-text-fill-color: #777777;
}

.feedback__popap-input::placeholder {
  color: #777777;
  -webkit-text-fill-color: #777777;
}

.feedback__popap-input--textarea {
  margin-bottom: 10px;
}

.feedback__popap-button-contain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.feedback__popap-button {
  margin-left: auto;
  padding: 15px 30px;
  background: #f44648;
  border-radius: 5px;
  color: #ffffff;
  outline: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
  border: none;
}

.feedback__popap-button:hover {
  opacity: 0.8;
}

.page-header-top__container {
  background: #ffffff;
  font-size: 12px;
}

.page-header-top {
  position: relative;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}

.page-header-top__contact {
  width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-header-top__list {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-header-top__item {
  list-style: none;
}

.page-header-top__adress {
  position: relative;
}

.page-header-top__adress-link {
  display: block;
  max-width: 270px;
  line-height: 18px;
  padding-left: 40px;
  text-decoration: none;
  color: #111111;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.page-header-top__adress-icon {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.page-header-top__svg-point {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.page-header-top__adress:hover .page-header-top__svg-point {
  fill: #f44648;
}

.page-header-top__adress-link:hover {
  opacity: 0.8;
}

.page-header-top__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.page-header-top__logo-link:hover {
  opacity: 0.75;
}

.page-header-top__logo-img {
  max-width: 80px;
}

.page-header-top__item-link {
  padding-left: 25px;
  position: relative;
  text-decoration: none;
  color: #111111;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.page-header-top__item-link:hover {
  opacity: 0.6;
}

.page-header-top__item-link--phone {
  font-weight: 700;
  line-height: 18px;
}

.page-header {
  width: 100%;
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #333333;
  z-index: 100;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.page-header__scroll--active {
  position: fixed;
  top: 0;
}

.page-header__wrapper--price {
  margin-bottom: 30px;
}

.page-header__nav-toggle {
  display: none;
  outline: none;
}

.page-header__nav-text,
.page-header__nav-decoration {
  display: none;
}

.main-nav__list {
  padding: 0;
  margin: 0;
  width: 770px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
}

.main-nav--opened {
  display: block;
}

.site-list__item {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.site-list__item--services {
  position: relative;
}

.site-list__submenu {
  visibility: hidden;
  opacity: 0;
  padding: 20px;
  position: absolute;
  top: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #333333;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.site-list__submenu-item {
  color: #ffffff;
  margin-bottom: 10px;
  list-style: none;
  text-align: left;
}

.site-list__submenu-item strong {
  cursor: default;
}

.site-list__submenu-item-link {
  color: #999999;
  margin-bottom: 10px;
  list-style: none;
  text-align: left;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.site-list__item--services:hover .site-list__submenu {
  top: 38px;
  visibility: visible;
  opacity: 1;
}

.site-list__submenu-item-link:hover {
  color: #f44648;
}

.site-list__link {
  padding: 10px;
  position: relative;
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.site-list__link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.site-list__link:hover.site-list__link--active::after {
  opacity: 1;
}

.site-list__link--phone {
  font-size: 14px;
  margin-left: 5px;
  color: #505151;
  font-weight: 700;
}

.main--active {
  display: block;
}

.main-information {
  position: relative;
  height: 100vh;
  max-height: 850px;
  min-height: 680px;
  background-image: url("../img/main-page/background-main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.main-information__wrapper {
  padding-top: 70px;
}

.main-information__text {
  margin-top: 120px;
}

.main-information__titles-container {
  position: relative;
  width: 580px;
  opacity: 0;
  margin-bottom: 40px;
  -webkit-animation-name: start;
  animation-name: start;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes start {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes start {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.main-information__title {
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.main-information__subtitle {
  margin-bottom: 50px;
  color: #ffffff;
  opacity: 0.8;
  line-height: 20px;
}

.main-information__buttons-container {
  max-width: 550px;
}

.main-information__button-contact {
  width: 130px;
  padding: 10px 15px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-information__button-contact:hover {
  opacity: 0.75;
}

.main-information__input--container {
  margin-bottom: 20px;
}

.main-information__input:first-child {
  margin-right: 20px;
}

.main-information__input {
  position: relative;
  width: calc(50% - 20px);
  padding: 12.5px 15px;
  padding-left: 15px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.main-information__input--text {
  margin-bottom: 32px;
  width: calc(100% - 16px);
}

.main-information__input:hover {
  border: 1px solid rgba(255, 255, 255);
}

.main-information__input:focus {
  border: 1px solid rgba(255, 255, 255, 1);
}

.main-information__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.main-information__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.main-information__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.main-information__input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.main-information__input::placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.main-information__buttons-wrapper {
  -webkit-animation-name: start;
  animation-name: start;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.main-information__button-input:active,
.main-information__button-input:focus {
  outline: 0;
}

.main-information__button-input::-webkit-input-placeholder {
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-information__button-input::-moz-placeholder {
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.main-information__button-input:-ms-input-placeholder {
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.main-information__button-input::-ms-input-placeholder {
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.main-information__button-input::placeholder {
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-information__button-container {
  position: relative;
}

.main-information__button {
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid #f44648;
  background: #f44648;
  color: #ffffff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
}

.main-information__button:hover {
  opacity: 0.75;
}

.main-information__button:active,
.main-information__button:focus {
  outline: 0;
}

.main-information__button-service:hover {
  opacity: 0.5;
}

.main-information__button-service:active {
  opacity: 0.7;
}

.main-information__buttons-container:hover .main-information__privacy-policy-block {
  visibility: visible;
  opacity: 0.75;
}

.main-information__privacy-policy-block {
  visibility: hidden;
  margin-top: 15px;
  opacity: 0;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

.main-information__privacy-policy {
  font-size: 12.5px;
  color: #ffffff;
  opacity: 0.75;
}

.contacts__result-block {
  position: relative;
  min-height: 13px;
  z-index: 1300;
}

.contacts__result-text {
  display: none;
  color: #ffffff;
  font-weight: 300;
  font-size: 13px;
}

.contacts__result-text--color {
  text-align: center;
  margin-top: 30px;
  color: #111111;
}

/* All services popap */

.services__all-products-popap {
  display: flex;
  align-items: center;
  position: fixed;
  min-width: 400px;
  right: -400px;
  top: 0;
  float: right;
  background: #333333;
  z-index: 1000;
  height: 100vh;
  overflow-y: scroll;
}

.services__all-products-close-button {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50px;
  right: 50px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}

.services__all-products-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: #777777;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.services__all-products-close-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: #777777;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.services__all-products-close-button:hover.services__all-products-close-button::before,
.services__all-products-close-button:hover.services__all-products-close-button::after {
  background: #f44648;
}

.site-list__popap-item-container {
  margin-bottom: 40px;
}

.site-list__popap-all-item {
  color: #ffffff;
  margin-bottom: 10px;
  list-style: none;
  text-align: left;
}

.site-list__popap-all-item strong {
  cursor: default;
}

.site-list__popap-all-item-link {
  color: #999999;
  margin-bottom: 10px;
  list-style: none;
  text-align: left;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.site-list__popap-all-item-link:hover {
  color: #f44648;
}

/* All services popap */

.services {
  padding-top: 70px;
  padding-bottom: 70px;
}

.services__tilte-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.services__title {
  font-size: 28px;
  margin: 0;
  margin-bottom: 15px;
}

.services__all-services-link {
  position: relative;
  top: 24px;
  color: #f44648;
  padding-right: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.services__all-services-link::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: calc(50% + 1px);
  right: 0;
  transform: translateY(-50%);
  background-image: url('/img/services/right-arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s;
}

.services__all-services-link.active.services__all-services-link::after {
  transform: translateY(-50%) rotate(180deg);
}

.services__all-services-link:hover {
  color: #f44648;
  text-decoration: none;
  text-decoration: underline;
  opacity: 0.6;
}

.services__text {
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  width: 430px;
  color: #555555;
}

.services__text--color {
  padding: 2.5px;
  background: #f44648;
  color: #ffffff;
}

.services__list {
  margin-bottom: 40px;
}

/* Services swipers */
.swiper-wrapper {
  max-width: 600px;
  padding-bottom: 40px;
}

.services .swiper-container {
  width: 100%;
  height: 100%;
}

.services .swiper-slide {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  font-size: 14px;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
  outline: none;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #f44648;
  opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  visibility: hidden;
}

/* Services swipers */
.services__item-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services__item-image,
.services__item-category {
  min-height: 350px;
  height: 350px;
  min-width: 100%;
  width: 100%;
  /* border-radius: 5px 5px 0 0; */
}

.services__category--active {
  right: 100%;
}

.services__item-image {
  position: relative;
  right: 0;
  background-size: cover;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.services__item-category {
  position: relative;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background: #f44648;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.services__category-list {
  margin: 0;
  padding: 0;
  margin: auto;
  list-style: none;
}

.services__category-item {
  margin-bottom: 15px;
  text-align: center;
  color: #ffffff;
}

.services__category-item-link {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.services__category-item-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.services__item-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.swiper-slide--click {
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

.swiper-slide--click:hover .services__item-text {
  color: #f44648;
}

.swiper-slide--click:hover .services__item-image,
.swiper-slide--click:hover .services__item-category {
  right: 100%;
}

.services__button-container {
  margin-bottom: 70px;
  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;
}

.services__button {
  max-width: 300px;
  padding: 15px 30px;
  border-radius: 5px;
  border: 2px solid #f44648;
  color: #ffffff;
  background: #f44648;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
}

.services__button:hover {
  opacity: 0.8;
}

.about {
  padding-top: 180px;
  padding-bottom: 120px;
  background: #111111;
  color: #ffffff;
  background-image: url('../img/about/2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.about__wrapper {
  margin-bottom: 180px;
  max-width: 500px;
}

.about__title {
  font-size: 28px;
}

.about__bottom-container {
  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;
}

.about__bottom-title {
  margin: 0;
  margin-bottom: 5px;
  font-size: 28px;
  text-align: center;
  line-height: 26px;
}

.about__bottom-text {
  margin-bottom: 30px;
  opacity: 0.8;
  max-width: 400px;
  text-align: center;
}

.about__text {
  opacity: 0.9;
}

.about__bottom-button {
  max-width: 300px;
  padding: 15px 30px;
  border-radius: 5px;
  border: 2px solid #f44648;
  color: #ffffff;
  background: #f44648;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.about__bottom-button:hover {
  opacity: 0.8;
}

.work {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow-x: hidden;
}

.work__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.work__line {
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: calc(100% - 200px);
  width: 2px;
  background: #111111;
  z-index: 1;
}

.work__line--subline-first {
  position: absolute;
  width: 2px;
  top: 0%;
  height: 0%;
  background: #f44648;
}

.work__line--subline-second {
  position: absolute;
  width: 2px;
  top: 33%;
  height: 0%;
  background: #f44648;
}

.work__line--subline-third {
  position: absolute;
  width: 2px;
  top: 66%;
  height: 0%;
  background: #f44648;
}

.line-animate-active--first {
  -webkit-animation-name: subline-first;
  animation-name: subline-first;
}

.line-animate-active--second {
  -webkit-animation-name: subline-second;
  animation-name: subline-second;
}

.line-animate-active--third {
  -webkit-animation-name: subline-third;
  animation-name: subline-third;
}

.line-animate-active {
  -webkit-animation-duration: 6.5s;
  animation-duration: 6.5s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes subline-first {
  0% {
    height: 0%;
    top: 0%;
  }

  25% {
    height: 33%;
    top: 0%;
  }

  to {
    height: 33%;
    top: 0%;
  }
}

@keyframes subline-first {
  0% {
    height: 0%;
    top: 0%;
  }

  25% {
    height: 33%;
    top: 0%;
  }

  to {
    height: 33%;
    top: 0%;
  }
}

@-webkit-keyframes subline-second {
  25% {
    height: 0%;
    top: 33%;
  }

  55% {
    height: 33%;
    top: 33%;
  }

  to {
    height: 33%;
    top: 33%;
  }
}

@keyframes subline-second {
  25% {
    height: 0%;
    top: 33%;
  }

  55% {
    height: 33%;
    top: 33%;
  }

  to {
    height: 33%;
    top: 33%;
  }
}

@-webkit-keyframes subline-third {
  60% {
    height: 0%;
    top: 66%;
  }

  83% {
    height: 33%;
    top: 66%;
  }

  to {
    height: 33%;
    top: 66%;
  }
}

@keyframes subline-third {
  60% {
    height: 0%;
    top: 66%;
  }

  83% {
    height: 33%;
    top: 66%;
  }

  to {
    height: 33%;
    top: 66%;
  }
}

.work__line-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  z-index: 10;
  background: #ffffff;
  border: 2px solid #111111;
  border-radius: 50%;
}

.work__line-point--first {
  top: 0%;
}

.work__line-point--second {
  top: 33%;
}

.work__line-point--third {
  top: 66%;
}

.work__line-point--four {
  top: 99%;
}

.work-animate-active--first {
  -webkit-animation-name: background-first;
  animation-name: background-first;
}

.work-animate-active--second {
  -webkit-animation-name: background-second;
  animation-name: background-second;
}

.work-animate-active--third {
  -webkit-animation-name: background-third;
  animation-name: background-third;
}

.work-animate-active--four {
  -webkit-animation-name: background-four;
  animation-name: background-four;
}

.work-animate-active {
  -webkit-animation-duration: 6.5s;
  animation-duration: 6.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes background-first {
  0% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  3% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

@keyframes background-first {
  0% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  3% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

@-webkit-keyframes background-second {
  25% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  28% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

@keyframes background-second {
  25% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  28% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

@-webkit-keyframes background-third {
  55% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  58% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

@keyframes background-third {
  55% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  58% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

@-webkit-keyframes background-four {
  80% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  83% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

@keyframes background-four {
  80% {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
  }

  83% {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }

  to {
    border: 2px solid #f44648;
    background: #f44648;
    color: #ffffff;
  }
}

.work__line-point--number {
  margin: auto;
  font-size: 24px;
}

.work__line-point--icon {
  width: 40px;
  height: 40px;
  background-image: url('../img/work/5.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.work__item {
  max-width: 420px;
  text-align: center;
}

.work__item--first {
  margin-right: auto;
}

.work__item--second {
  margin-left: auto;
}

.work__item--third {
  margin-right: auto;
}

.work__item--four {
  margin-left: auto;
}

.work-item__icon {
  margin: auto;
  width: 100px;
  height: 100px;
}

.work__item--first .work-item__icon {
  background: url('../img/work/1.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.work__item--second .work-item__icon {
  background: url('../img/work/2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.work__item--third .work-item__icon {
  background: url('../img/work/3.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.work__item--four .work-item__icon {
  background: url('../img/work/4.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.work__item-text--link {
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.work__item-text--link:hover {
  color: #f44648;
}

.work__title {
  margin-bottom: 50px;
  font-size: 28px;
  line-height: 28px;
  position: relative;
  text-align: center;
}

.work__item-title {
  font-size: 16px;
}

.work__item-text {
  color: #777777;
}

.news {
  padding-top: 100px;
  padding-bottom: 120px;
  background: rgb(242, 242, 242);
}

.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.news__text {
  margin-right: 40px;
  width: 40%;
}

.news__img {
  position: relative;
  min-height: 400px;
  width: 60%;
}

.news__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  border-radius: 0 0 5px 5px;
  right: 0;
  bottom: -20px;
  background: #f44648;
}

.news__title-container {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.news__title {
  margin: 0;
  margin-right: 20px;
  font-size: 28px;
}

.news__slider-button-prev {
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.news__slider-button-next,
.news__slider-button-prev {
  position: relative;
  top: -2.5px;
  display: block;
  background: none;
  border-radius: 5px;
  border: 2px solid #111111;
  width: 28px;
  height: 28px;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.news__slider-button-next:hover,
.news__slider-button-prev:hover {
  border-color: #f44648;
  background: #f44648;
  color: #ffffff;
}

.news__slider-button-next:active {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.news__slider-button-prev:active {
  -webkit-transform: scale(0.8) rotate(180deg);
  -ms-transform: scale(0.8) rotate(180deg);
  transform: scale(0.8) rotate(180deg);
}

/* News swipers */

.news .swiper-container {
  height: 100%;
}

.news .swiper-slide {
  /* border-radius: 5px 5px 0 0; */
}

/* News swipers */

.news__slides-text {
  position: relative;
  top: 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.news__slides-text--active {
  top: 0;
  opacity: 1;
  visibility: visible;
}


.partners {
  padding-top: 50px;
  margin-bottom: 100px;
}

.partners__title-container {
  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;
}

.partners__title {
  margin-bottom: 50px;
  font-size: 28px;
  line-height: 28px;
  position: relative;
  text-align: center;
}

.partners__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 2fr;
  grid-template-rows: 2fr;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.partners__list>*:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.partners__list>*:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.partners__list>*:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.partners__list>*:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}

.partners__item {
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.partners__item:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.partners__item:nth-child(4n) {
  border-right: none;
}

.partners__item:nth-child(n + 5) {
  border-bottom: none;
}

.partners__img {
  margin: auto;
  width: auto;
  height: 100%;
  max-height: 165px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.constacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.contacts__map {
  width: 50%;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.contacts__map:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.contacts__text {
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  background: #f44648;
}

.contacts__text-wrapper {
  margin: auto;
  margin-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts__text-link {
  color: #ffffff;
  text-decoration: none;
}

.contacts__text-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.contacts__text-link--phone {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contacts__text-link--mail {
  opacity: 0.9;
  margin-bottom: 30px;
}

.contacts__text-link--adress {
  max-width: 300px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contacts__text-paragraph {
  opacity: 0.9;
  margin: 0;
  font-size: 12px;
  color: #ffffff;
}

.ymaps-2-1-76-map {
  min-height: 420px;
}

.ymaps-2-1-76-copyright__agreement {
  visibility: hidden;
}

.ymaps-2-1-76-copyright__text {
  visibility: hidden;
}

/* .ymaps-2-1-76-zoom {
  visibility: hidden;
} */

.ymaps-2-1-76-scaleline {
  visibility: hidden;
}

.ymaps-2-1-76-copyright__content {
  visibility: hidden;
}

.ymaps-2-1-76-scaleline__label {
  visibility: hidden;
}

.ymaps-2-1-76-float-button.ymaps-2-1-76-_hidden-text {
  visibility: hidden;
}

/* .ymaps-2-1-76-controls__control {
  visibility: hidden;
} */

.ymaps-2-1-76-controls__control_toolbar {
  visibility: hidden;
}

/* .ymaps-2-1-76-map-copyrights-promo {
  visibility: hidden;
} */

.footer__wrapper {
  background: #333333;
}

.footer-text__text {
  font-size: 12px;
  padding-top: 20px;
  margin-bottom: 0px;
}

.footer-text__privacy-policy {
  margin-top: 5px;
  font-size: 10px;
  margin-bottom: 0;
  opacity: 0.75;
  color: #ffff;
  text-align: center;
}

.footer-text__privacy-policy-link {
  color: #ffffff;
}

.footer-text__wrapper {
  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;
}

.footer-text__wrapper {
  padding-bottom: 20px;
}

.footer-text__text {
  margin-top: 0;
  color: #ffffff;
}


@media screen and (min-width: 0px) and (max-width: 1294px) {
  .container {
    padding-left: 70px;
    padding-right: 70px;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    visibility: visible;
  }
}

@media screen and (min-width: 0px) and (max-width: 1090px) {
  .page-header {
    display: block;
  }

  .page-header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-header::after {
    bottom: -20px;
  }

  .page-header__nav-toggle {
    margin-left: auto;
    cursor: pointer;
  }

  .page-header__nav-decoration::before {
    position: absolute;
    right: 0;
    bottom: 9px;
    content: "";
    width: 80%;
    height: 2px;
    background: #333333;
  }

  .page-header__logo-image {
    z-index: 10;
  }

  .page-header__nav-toggle {
    position: relative;
    padding: 0;
    margin: 5px;
    margin-left: auto;
    display: block;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    z-index: 1200;
  }

  .page-header__nav-decoration {
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 2px;
    background: #333333;
  }

  .page-header__nav-decoration::after {
    position: absolute;
    right: 0;
    top: 9px;
    content: "";
    width: 60%;
    height: 2px;
    background: #333333;
  }

  .page-header__nav-decoration::before {
    position: absolute;
    right: 0;
    bottom: 9px;
    content: "";
    width: 80%;
    height: 2px;
    background: #333333;
  }

  .page-header__nav-decoration--white {
    background: #ffffff;
  }

  .page-header__nav-decoration--white::before {
    background: #ffffff;
  }

  .page-header__nav-decoration--white::after {
    background: #ffffff;
  }

  .page-header__nav-toggle--white {
    color: ffffff;
  }

  .page-header__nav-toggle--white::before {
    color: ffffff;
  }

  .page-header__nav-toggle--white::after {
    color: ffffff;
  }

  .page-header__nav-decoration--open {
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%;
    height: 2px;
    background: #ffffff;
  }

  .page-header__nav-decoration--open::after {
    display: none;
  }

  .page-header__nav-decoration--open::before {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    content: "";
    width: 100%;
    height: 2px;
    background: #ffffff;
  }

  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: #444444;
    z-index: 200;
    opacity: 0;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .main-nav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto;
  }

  .main-nav--opened {
    visibility: visible;
    min-height: 512px;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    overflow-y: scroll;
  }

  .main-nav--closed {
    visibility: hidden;
  }

  .main-nav__list {
    margin: 0;
    padding: 0;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .site-list__link--active::after {
    display: none;
  }

  .site-list__item:last-child {
    margin-bottom: 100px;
  }

  .site-list__item a {
    display: inline-block;
    padding: 25px 50px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
  }

  .site-list__item a::before {
    display: none;
  }

  .site-list__submenu .site-list__submenu-item {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #f44648;
  }
  
  .site-list__submenu .site-list__submenu-item-link {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;;
  }
  
  .site-list__submenu {
    display: none;
    visibility: hidden;
    background: none;
    opacity: 0;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .site-list__submenu .site-list__submenu-item {
    text-align: center;
  }
  
  .site-list__submenu .site-list__submenu-item-link {
    text-align: center;
  }
  
  .site-list__item--services:hover .site-list__submenu {
    display: block;
    position: relative;
    visibility: visible;
    opacity: 1;
  }

  .main--active {
    display: none;
  }

  .about__img {
    display: none;
  }

  .about__text-container {
    width: 100%;
  }

  .about__title-container {
    margin-bottom: 35px;
  }

  .about__text {
    margin-bottom: 45px;
  }

  .about__properties-text {
    width: 170px;
  }

  .work__item {
    width: 300px;
  }

  .contacts__left-block {
    width: 50%;
  }

  .contacts__right-block {
    width: 50%;
  }
}

@media screen and (min-width: 0px) and (max-width: 840px) {
  .work__item {
    width: 60%;
    padding-left: 100px;
    margin-bottom: 50px;
  }

  .work__line {
    top: 70px;
    left: 50px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .work__line-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
  }

  .work-item__icon {
    width: 80px;
    height: 80px;
  }

  .work__item--first {
    margin-right: 0;
    margin-left: auto;
  }

  .work__item--third {
    margin-right: 0;
    margin-left: auto;
  }
}

@media screen and (min-width: 0px) and (max-width: 840px) {
  .news {
    padding-bottom: 50px;
  }

  .news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news__img {
    min-height: 350px;
    width: 100%;
  }

  .news__img .swiper-slide {
    min-height: 390px;
  }

  .news__img::after {
    display: none;
  }

  .news__slides-text {
    margin-bottom: 40px;
    top: 0;
  }

  .news__text {
    width: 100%;
  }

  .partners__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 2fr;
    grid-template-rows: 2fr;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__list>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .partners__list>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .partners__item:nth-child(2n) {
    border-right: none;
  }

  .partners__item:nth-child(n + 5) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .partners__item:nth-child(n + 7) {
    border-bottom: none;
  }

  .constacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .contacts__map,
  .contacts__text {
    width: 100%;
  }

  .contacts__map {
    min-height: 400px;
  }

  .contacts__text {
    min-height: 400px;
  }

  .feedback__contain {
    -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;
  }
}

@media screen and (min-width: 0px) and (max-width: 720px) {
  .page-header-top__contact {
    width: 200px;
  }

  .page-header-top__adress-link-text {
    display: none;
  }

  .main-information {
    padding-bottom: 50px;
    height: 110vh;
  }

  .services {
    padding-top: 70px;
    padding-bottom: 30px;
  }

  .services__button {
    min-width: 300px;
  }

  .services__tilte-container {
    display: flex;
    flex-direction: column;
  }

  .services__all-services-link {
    padding: 10px;
    padding-right: 25px;
    border: 1px solid #f44648;
    display: inline-block;
    top: 0;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .services__all-services-link::after {
    right: 7px;
  }

  .about__bottom-button {
    min-width: 300px;
  }

  .about__title-container {
    margin-bottom: 20px;
  }

  .page-header-top__list {
    padding: 0;
    width: 150px;
  }

  .page-header-top__logo-img {
    width: 200px;
  }

  .page-header-top__item-link--mail {
    display: none;
  }

  .main-information__titles-container {
    width: 385px;
    margin-bottom: 80px;
  }

  .main-information__title {
    letter-spacing: normal;
  }

  .main-information__text {
    margin-top: 100px;
  }

  .services__title {
    text-align: center;
    line-height: 28px;
  }

  .services__text {
    margin-bottom: 0px;
    width: 100%;
  }

  .about__properties-text {
    width: 140px;
    font-size: 14px;
    text-transform: none;
  }

  .about__button {
    margin: auto;
  }

  .feedback {
    margin-bottom: 100px;
  }

  .feedback-container {
    text-align: center;
  }

  .feedback__form {
    padding: 0;
    padding-bottom: 25px;
    margin-bottom: 25px;
    widows: 100%;
    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;
  }

  .feedback__form::after {
    bottom: 0;
    -webkit-transform: translateY(0) translateX(-50%);
    -ms-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
    left: 50%;
  }

  .feedback__result-contain,
  .feedback__result-contain-all {
    padding: 0;
  }

  .feedback__form-label {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .feedback__form-text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contacts__form-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts__title {
    line-height: 28px;
  }

  .contacts__left-block {
    width: 100%;
  }

  .contacts__right-block {
    width: 100%;
  }

  .contacts__input {
    margin-bottom: 15px;
  }

  .contacts-wrapper::after {
    right: -50%;
  }

  .map__title-wrapper {
    margin-left: 0;
  }
}

@media screen and (min-device-width: 0px) and (max-device-width: 550px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header-top__logo-img {
    width: 150px;
  }

  .page-header-top__item-link {
    font-size: 12px;
    padding-left: 22px;
  }

  .page-header-top__item-link::after {
    width: 15px;
    height: 15px;
  }

  .main-information {
    background-position: -600px top;
    height: 100vh;
    min-height: 600px;
  }

  .main-information__text {
    margin-top: 30px;
  }

  .main-information__titles-container {
    width: 100%;
    margin-bottom: 80px;
  }

  .main-information__input {
    padding: 10px 5px;
    padding-left: 5px;
  }

  .main-information__buttons-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-information__button-input {
    width: 100%;
    padding: 15px 15px;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .main-information__button {
    width: 100%;
  }

  .main-information__titles-container {
    margin-bottom: 40px;
  }

  .main-information__subtitle-top {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .main-information__title {
    font-size: 28px;
    line-height: 28px;
  }

  .main-information__input {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-information__input::-webkit-input-placeholder {
    font-size: 12px;
  }

  .main-information__input::-moz-placeholder {
    font-size: 12px;
  }

  .main-information__input:-ms-input-placeholder {
    font-size: 12px;
  }

  .main-information__input::-ms-input-placeholder {
    font-size: 12px;
  }

  .main-information__input::placeholder {
    font-size: 12px;
  }

  .services__all-products-popap {
    width: 100vw;
    right: -100vw;
    min-width: 0;
  }

  .services__item-image {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }

  .services__item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111;
    opacity: 0.3;
  }

  .services__item-image::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-image: url('../img/services/touch-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .swiper-slide--click:hover .services__item-text {
    color: #111111;
  }

  .services__item-category {
    position: relative;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    background: #333333;
  }

  .services__text {
    text-align: center;
  }

  .partners {
    padding-top: 20px;
  }

  .contacts__text-wrapper {
    margin: auto;
    margin-left: 20px;
  }

  .about {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .about__wrapper {
    margin-bottom: 60px;
  }

  .about__title {
    line-height: 24px;
  }

  .about-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .work {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .contacts__adress {
    left: -261px;
  }

  .contacts__adress-block {
    width: 260px;
  }

  .contacts__adress-tab {
    padding: 15px 12px;
  }

  .contacts__input--button {
    margin-top: 30px;
  }

  .contacts__privacy-policy-block {
    margin-top: 30px;
  }

  .contacts__privacy-policy {
    position: relative;
    z-index: 900;
  }

  .feedback__popap-wrapper {
    top: 20px;
    margin-bottom: 20px;
    width: calc(100% - 40px);
    min-width: 300px;
    height: auto;
    min-height: auto;
    border-radius: 15px;
  }

  .feedback__popap-title {
    font-size: 1.3rem;
    padding-right: 30px;
  }

  .feedback__button-close {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }

  .feedback__popap-input {
    margin-bottom: 5px;
    padding: 15px 10px;
  }

  .feedback__popap-button-contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .feedback__popap-button {
    margin: auto;
  }

  .feedback__popap-form {
    margin: 15px;
  }
}

@media screen and (min-device-width: 0px) and (max-device-width: 350px) {
  .page-header-top__item-link {
    font-size: 12px;
  }

  .about__properties-text {
    font-size: 11px;
  }

  .feedback-container {
    width: 100%;
    margin: auto;
  }

  .services__all-products-close-button {
    top: 20px;  
  }
}