@charset "UTF-8";

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 300;
  src: url(./../fonts/HelveticaNeueCyr-Light.woff);
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 400;
  src: url(./../fonts/HelveticaNeueCyr-Roman.woff);
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 700;
  src: url(./../fonts/HelveticaNeueCyr-Bold.woff);
}

:root {
  --green-0: #ffffff;
  --green-100: #d1e7dd;
  --green-200: #a3cfbb;
  --green-300: #75b798;
  --green-400: #479f76;
  --green-500: #198754;
  --green-600: #146c43;
  --green-700: #0f5132;
  --green-800: #0a3622;
  --green-900: #051b11;
}

@keyframes slidein {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.white {
  color: var(--green-0);
}

.green {
  color: var(--green-500);
}

.black {
  color: var(--green-900);
}

* {
  margin: 0;
  border: 0;
  padding: 0;
  margin-block: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--green-500);
}

::placeholder {
  color: var(--green-500);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  color: var(--green-500);
}

::-ms-input-placeholder {
  color: var(--green-500);
}

input[type="time"]:before {
  content: "Выберите время";
  color: var(--green-500);
  background: var(--green-100);
  position: absolute;
  width: 110px;
}

input[type="time"]:focus:before {
  width: 0;
  content: "";
}

input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(39%) sepia(86%) saturate(414%) hue-rotate(100deg) brightness(90%) contrast(88%);
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 20px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.4;
  cursor: default;
  position: relative;
  scroll-behavior: smooth;
}

:focus,
:active {
  outline: none;
}

a,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
  color: var(--green-400);
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea {
  font-family: inherit;
  line-height: inherit;
  font-size: 10px;
  background-color: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ul li {
  list-style: none;
  text-decoration: none;
}

img {
  vertical-align: middle;
  height: fit-content;
}

.title {
  margin-bottom: 62px;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 665px;
}

.title span {
  padding: 4px 8px;
  border-radius: 4px;
}

.title-colored {
  color: var(--green-500);
}

.title-colored span {
  background-color: var(--green-500);
  color: var(--green-0);
}

.title-white {
  color: var(--green-0);
}

.title-white span {
  background-color: var(--green-0);
  color: var(--green-500);
}

.title-left {
  text-align: left;
}

.title-center {
  text-align: left;
}

.text-24 {
  font-size: 24px;
}

.text-20 {
  font-size: 20px;
}

.text-18 {
  font-size: 18px;
}

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

.text-14 {
  font-size: 14px;
}

.text-12 {
  font-size: 12px;
}

.text-centered {
  margin: 62px 0 112px 0;
}

.w-700 {
  font-weight: 700;
}

.p-62 {
  padding: 62px 0;
}

.colorBtn {
  border-radius: 4px;
  padding: 8px 16px;
  text-align: center;
  display: inline-block;
  background-color: var(--green-500);
  color: var(--green-0);
  transition: all ease 0.3s;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 300;
  border: 1px solid transparent;
}

.colorBtn:hover {
  background-color: var(--green-400);
  color: var(--green-0);
  border: 1px solid var(--green-700);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateX(0.5px);
}

.colorBtn:active {
  box-shadow: 0px 0px 0px 4px var(--green-300);
  border: 1px solid var(--green-500);
  background-color: var(--green-600);
}

.defaultBtn {
  border-radius: 4px;
  padding: 8px 12px;
  display: inline-block;
  border: 1px solid var(--green-500);
  color: var(--green-500);
  transition: all ease 0.3s;
  line-height: 1.42;
  font-weight: 300;
  cursor: pointer;
}

.defaultBtn:hover {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  background-color: var(--green-400);
  color: var(--green-0);
  border: 1px solid var(--green-700);
}

.defaultBtn:active {
  box-shadow: 0px 0px 0px 4px var(--green-300);
  border: 1px solid var(--green-500);
  background-color: var(--green-600);
}

.close-thanks {
  position: absolute;
  top: 15px;
  right: 15px;
}

.button-centered {
  display: block;
  margin: 0 auto;
}

.logo-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
  flex: 0 0 41%;
}

.logo-block .city-changer {
  line-height: 1.21;
  flex: 0 0 50%;
  cursor: pointer;
}

.logo-block .logo {
  cursor: pointer;
}

.logo-block .logo img {
  max-width: 150px;
  min-width: 83px;
  width: 100%;
}

.logo-block .city-changer img {
  transition: all ease 0.3s;
}

.logo-block .city-changer span {
  text-decoration: underline;
}

.logo-block .city-changer:hover img {
  transform: translateY(2px);
}

.phone-links {
  transition: 300ms;
  text-decoration-line: underline;
}

.phone-links img {
  margin-right: 9px;
  margin-bottom: 3px;
}

.phone-links:hover {
  text-decoration-line: none;
  transform: translateY(-2px);
  display: block;
}

.address-links {
  display: none;
}

.address-links :nth-child(1) img {
  margin-right: 7px;
}

.address-links :nth-child(2) img {
  margin-right: 5px;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  padding: 16px 24px;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.dropdown .dropdown-content a {
  line-height: 1.18;
  padding: 0 0 16px 0;
  text-decoration: none;
  display: block;
}

.dropdown .dropdown-content a:nth-child(3) {
  padding: 0;
}

.dropdown .dropbtn img {
  margin-left: 4px;
  transition: all ease 0.3s;
}

.dropdown:hover img {
  transform: translateY(2px);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.form {
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0px 8px 16px 0px #00000026;
  background-color: var(--green-0);
}

.form__inner {
  width: 70%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.form-text {
  padding-bottom: 5px;
}

.form__input {
  flex: 0 0 100%;
  display: flex;
  gap: 16px;
}

.form__input-input {
  background-color: var(--green-100);
  border-radius: 4px;
  padding: 14px 24px;
  color: var(--green-500);
  font-size: 14px;
  width: 35%;
}

.form-after-text {
  flex: 0 0 50%;
}

.form-after-text span {
  text-decoration: underline;
}

.form-1 {
  padding: 32px 62px 12px 62px;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px #00000013;
  background-color: var(--green-100);
  flex: 0 0 49%;
}

.form-1 .form__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}

.form-1 .form__inner .form-title {
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 12px;
}

.form-1 .form__inner .form-text {
  padding-bottom: 28px;
}

.form-1 .form__inner .form__input {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.form-1 .form__inner .form__input-input {
  background-color: var(--green-0);
  border-radius: 4px;
  padding: 14px 24px;
  color: var(--green-500);
  font-size: 14px;
  width: 100%;
}

.form-1 .form__input-btn {
  margin-bottom: 31px;
}

.form-1 .form-after-text {
  flex: 0 0 100%;
  text-align: center;
}

.form-1 .form-after-text span {
  text-decoration: underline;
}

.attentions-card {
  box-shadow: 0px 8px 16px 0px #00000026;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: 4px;
}

.achievement-cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.achievement-cards .achievement-card {
  display: flex;
  align-items: center;
  flex: 0 0 20%;
  gap: 12px;
  position: relative;
}

.achievement-cards .achievement-card:first-child {
  flex: 0 0 15%;
}

.achievement-cards .achievement-card::after {
  position: absolute;
  content: "";
  background: var(--green-500);
  width: 8px;
  height: 60px;
}

.achievement-cards .achievement-card .achievement-card-item {
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.phone-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}

.phone-cards .phone-card {
  background: var(--green-0);
  cursor: pointer;
  flex: 0 0 31%;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  transition: all ease 0.5s;
  min-height: 264px;
}

.phone-cards .phone-card .phone-card-info {
  flex: 0 0 30%;
  width: 100%;
  padding: 0 24px 24px 24px;
  justify-content: center;
  display: flex;
  align-items: flex-end;
}

.phone-cards .phone-card .phone-card-info .info-title {
  line-height: 1.2;
  margin-bottom: 8px;
}

.phone-cards .phone-card .phone-card-img-crop {
  max-width: 190px;
  flex: 0 0 45%;
  padding-top: 27px;
}

.phone-cards .phone-card .phone-card-img-crop .crop-item {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.phone-cards .phone-card:hover {
  transform: translateY(-5px);
}

.phone-btns-bottom {
  display: none;
}

.advantages-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.advantages-cards .advantages-card {
  flex: 1 0 22%;
  align-self: stretch;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
}

.advantages-cards .advantages-card .card-img {
  box-shadow: 0px 0px 10px 0px #72717126;
  padding: 0 0 14px 24px;
  position: relative;
  border-radius: 4px;
  min-height: 298px;
}

.advantages-cards .advantages-card .card-img .card__title-box {
  position: absolute;
  bottom: 14px;
}

.advantages-cards .advantages-card .card-img .card-title {
  opacity: 0.2;
  line-height: 1.19;
  font-weight: 900;
  transform: translate(-5%, -15%);
}

.advantages-cards .advantages-card .card-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  border-bottom-right-radius: 10px;
}

.advantages-cards .advantages-card .card-img .box-title {
  line-height: 1.19;
  position: relative;
}

.advantages-cards .advantages-card-info {
  padding: 24px 26px 24px 24px;
}

.advantages-cards .advantages-card-info .card-info-text {
  line-height: 1.42;
}

.advantages-cards :nth-child(2) .advantages-card-info {
  padding: 24px 16px 24px 24px;
}

.advantages-cards :nth-child(5) {
  display: flex;
}

.advantages-cards :nth-child(5) .card-img {
  flex: 0 0 48%;
  min-height: 263px;
}

.advantages-cards :nth-child(5) .advantages-card-info {
  flex: 0 0 52%;
  padding: 95px 94px;
}

.advantages-cards :nth-child(5) .advantages-card-info .card-info-text {
  line-height: 1.33;
}

@media (max-width: 376px) {
  .advantages-cards :nth-child(5) {
    flex-direction: column;
  }

  .advantages-cards :nth-child(5) .advantages-card-img {
    min-height: 298px;
  }

  .advantages-cards :nth-child(5) .advantages-card-info {
    padding: 24px 26px 24px 24px;
  }
}

.type__switcher-btns {
  display: flex;
  justify-content: flex-start;
  position: relative;
  max-width: 1200px;
  overflow: auto;
}

.type__switcher-btns::after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  width: 100%;
  height: 12px;
  background-color: var(--green-400);
  transition: 1s ease;
}

.type__switcher-btns .type__switcher-btn {
  flex: 0 0 20%;
  text-align: center;
  position: relative;
  z-index: 5;
  padding-bottom: 16px;
  cursor: pointer;
}

.type__switcher-btns .type__switcher-btn.active::after {
  animation: slidein 0.5s ease-in-out;
  background-color: var(--green-0);
}

.type__switcher-btns .type__switcher-btn::after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  width: 100%;
  height: 12px;
}

.option__cards.hide {
  display: none;
}

.option__cards.show {
  display: flex;
}

.option__cards .product__price {
  margin-top: 32px;
  margin-bottom: 0px;
}

.option__cards .product__price tbody .product__price-header {
  display: table-row;
}

.option__cards .product__price tbody .product__price-header td {
  padding-bottom: 26px;
}

.option__cards .product__price tbody tr {
  display: table-row;
  color: var(--green-0);
}

.option__cards .product__price tbody tr :nth-child(2) {
  text-align: center;
}

.option__cards .product__price tbody tr :nth-child(3) {
  text-align: center;
}

.option__cards .product__price tbody tr :nth-child(4) {
  text-align: center;
}

.option__cards .product__price tbody tr:nth-child(n + 2) {
  transition: 0.3s ease;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--green-0);
}

.option__cards .product__price tbody tr:nth-child(n + 2):hover {
  background-color: var(--green-0);
  color: var(--green-500);
  border: 1px solid var(--green-500);
}

.option__cards .product__price tbody tr:nth-child(n + 2):hover .item-btn {
  background-color: var(--green-500);
  color: var(--green-0);
}

.option__cards .product__price tbody tr:nth-child(n + 2):hover .item-btn:hover {
  background-color: var(--green-400);
  color: var(--green-0);
  border: 1px solid var(--green-700);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.option__cards .product__price tbody tr:nth-child(n + 2) td {
  padding: 10px 0px 10px 0px;
  font-size: 18px;
}

.option__cards .product__price tbody tr td .header-title-img {
  padding: 5px 0;
}

.option__cards .product__price tbody tr td p {
  margin-bottom: 0;
}

.option__cards .product__price tbody tr td:first-child {
  padding-left: 22px;
  width: 42%;
}

.option__cards .product__price tbody .item-btn {
  padding: 4px 8px;
}

.plus-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 376px) {
  .plus-cards {
    justify-content: center;
  }
}

.plus-card {
  text-align: center;
  flex: 0 0 19%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.plus-card .card-img {
  max-width: 133px;
  margin: 0;
}

.reviews-btn {
  max-width: 215px;
}

.swiper-button-prev,
.swiper-button-next {
  width: inherit !important;
  height: inherit !important;
  top: var(--swiper-navigation-top-offset, 47%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev {
  transform: rotate(180deg);
  left: var(--swiper-navigation-sides-offset, 0px);
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0px);
}

.swiper {
  max-width: 1200px;
  margin: 0 auto;
  height: fit-content;
}

.swiper-wrapper {
  padding: 0px 0px 41px 0;
}

.swiper-wrapper .swiper-slide {
  cursor: grab;
}

.swiper-wrapper .swiper-slide .slider-item {
  padding: 24px;
  max-width: 336px;
  width: 100% !important;
  border-radius: 4px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  line-height: 1.25;
  display: flex;
  gap: 24px;
  flex-direction: column;
  min-height: 270px;
}

.swiper-wrapper .swiper-slide .slider-item-profile {
  display: flex;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name {
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 60%;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name .profile-name-crop-img {
  margin-right: 11px;
  max-width: 56px;
  max-height: 56px;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name .profile-name-crop-img .crop-img-item {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-name-item .item-title {
  margin-bottom: 10px;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-star ul {
  display: flex;
}

.swiper-wrapper .swiper-slide .slider-item-profile .profile-star ul li {
  flex: 1 0 20%;
}

.swiper-wrapper .swiper-slide .slider-item-text {

  font-weight: 400;
  color: var(--green-700);
}

.swiper-wrapper .swiper-slide .slider-item.active {
  opacity: 1;
}

.swiper-wrapper .swiper-slide-next {
  opacity: 1;
}

@media (max-width: 830px) {
  .swiper-wrapper .swiper-slide-active {
    opacity: 1;
  }

  .swiper-wrapper .swiper-slide-next {
    opacity: 0;
  }

  .inside-bannner .bannner__inner .bannner__info .bannner__achievement-cards {
    margin-top: 8px;
    margin-bottom: 32px;
    flex: none;
    order: 2;
  }

  .inside-bannner .bannner__inner .bannner__info-form {
    order: 3;
  }
}


.stick-text-block {
  display: flex;
  gap: 82px;
  flex-direction: column;
  padding: 60px 0;
}

.stick-text-block .text-item {
  padding-left: 20px;
  position: relative;
}

.stick-text-block .text-item::after {
  position: absolute;
  content: "";
  background: var(--green-500);
  width: 8px;
  height: 100%;
  left: 0;
  top: 0;
}

.stick-text-block .text-item .text-item-title {
  margin-bottom: 2px;
}

.text-cards {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-cards .text-cards-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px #72717126;
  padding: 22px 23px 22px 27px;
  transition: 300ms;
  position: relative;
  cursor: pointer;
}

.text-cards .text-cards-item .item-title {
  font-weight: 400;
  line-height: 1.33;
}

.text-cards .text-cards-item .item-btn {
  margin-left: auto;
  border-radius: 100%;
  padding: 9px;
  transition: 300ms;
}

.text-cards .text-cards-item .item-block {
  flex: 0 0 100%;
  margin-top: 30px;
  display: none;
}

.text-cards .text-cards-item .item-block-text {
  line-height: 1.25;
}

.text-cards .text-cards-item.active .item-block {
  display: block;
}

.text-cards .text-cards-item.active .item-btn {
  transform: rotate(135deg);
}

.idea-list {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  margin-bottom: 32px;
}

.idea-list .list-item-img {
  flex: 1 0 43%;
  padding: 24px 24px 34px 24px;
  box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.25;
}

.idea-list .list-item-img img {
  flex: 0 0 20%;
  transform: translate(-15px, -15px);
}

.idea-list .list-item-img :nth-child(2) {
  flex: 0 0 70%;
}

.idea-list .list-item-img :nth-child(3) {
  flex: 0 0 100%;
  margin-bottom: 25px;
}

.idea-list .list-item-img :nth-child(4) {
  flex: 0 0 100%;
}

.idea-list .list-item-text {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  line-height: 1.25;
  justify-content: center;
}

.mobile__menu {
  display: none;
}

.burger-menu {
  display: none;
  padding: 14px 10px;
  border-radius: 4px;
  height: fit-content;
}

.burger-menu .line {
  width: 22px;
  height: 2px;
  border-radius: 4px;
}

@media (max-width: 376px) {
  .burger-menu {
    display: flex;
    gap: 4px;
    flex-direction: column;
  }
}

.menu {
  display: none;
}

@media (max-width: 376px) {
  .menu {
    display: block;
    position: absolute;
    width: 100vw;
    z-index: 9999;
    visibility: hidden;
    height: 0;
    left: 0;
    padding: 0;
    box-shadow: 0px 5px 4px 0px #72717126;
    border-radius: 0px 0px 10px 10px;
    transition: 750ms;
  }

  .menu .menu__inner {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu .menu__inner .menu__title {
    display: flex;
    align-items: center;
    margin-bottom: 42px;
  }

  .menu .menu__inner .menu__title .menu__logo-block {
    justify-content: flex-start;
    flex: 1 0 85%;
  }

  .menu .menu__inner .menu__title .menu-close {
    width: 33px;
    height: 33px;
    border-radius: 100%;
    position: relative;
  }

  .menu .menu__inner .menu__title .menu-close-line {
    left: 50%;
    top: 15px;
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 4px;
  }

  .menu .menu__inner .menu__title .menu-close-line:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu .menu__inner .menu__title .menu-close-line:nth-child(2) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .menu .menu__inner .menu-btn {
    margin: 42px 0;
  }

  .menu .menu__inner .menu__nav .menu__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    line-height: 1.2;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item-title {
    display: flex;
    align-items: center;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item svg {
    transition: 300ms;
    margin-left: 4px;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item .submenu {
    margin: 16px 0 35px 0;
    line-height: 1.18;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    position: absolute;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item .submenu-item {
    transition: 0.1s linear;
    transform-origin: 0 0;
    transform: rotateX(90deg);
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover .item-title {
    font-weight: 700;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover svg {
    transform: rotate(60deg);
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover .submenu {
    opacity: 1;
    position: relative;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .list-item:hover .submenu-item {
    transform: rotateX(0deg);
  }

  .menu.active {
    height: inherit;
    padding: 55px 0 65px 0;
    visibility: visible;
  }

  .menu.active .menu__inner {
    display: flex;
  }
}

.block-idea {
  margin: 24px 0;
  box-shadow: 0px 0px 10px 0px #72717126;
  padding: 20px 38px 20px 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.block-idea .block-idea-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bannner__info-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 46px;
}

.bannner__info-block .block-text .block-text-paragraf {
  margin-bottom: 42px;
}

.bannner__info-block .block-text-privace {
  gap: 32px;
}

.bannner__info-block .block-text-privace p {
  color: var(--green-0);
}

.bannner__info-block .block-text-privace ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--green-0);
}

.bannner__info-block .block-text .block-text-text {
  padding: 0;
  gap: 50px;
}

.bannner__info-block .block-text-warranty {
  flex: 0 0 50%;
}

.bannner__info-block .block-text-about {
  flex: 0 0 56%;
}

.bannner__info-block .block-text-service {
  flex: 0 0 50%;
}

.bannner__info-block .block-text-service .block-text-text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 28px 35px;
  margin-bottom: 42px;
}

.bannner__info-block .block-text-service .block-text-text .text-item {
  flex: 0 0 40%;
}

.bannner__info-block .block-img {
  flex: 1 0 10%;
}

.container {
  margin: 0 auto;
  position: relative;
  padding: 0px 1.5rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 550px;
  }
}

@media (min-width: 830px) {
  .container {
    max-width: 800px;
  }
}

@media (min-width: 1050px) {
  .container {
    max-width: 1020px;
  }
}

@media (min-width: 1301px) {
  .container {
    max-width: 1200px;
  }
}

.svg-icon-base {
  margin-right: 10px;
}

.svg-icon-base path {
  fill: var(--green-400);
}

.svg-icon-light path {
  fill: var(--green-300);
}

.header__inner {
  position: relative;
  z-index: 1;
  padding-top: 12px;
}

.header__inner .header__top {
  align-items: center;
  display: flex;
}

.header__inner .header__top .header__top-phone {
  margin: 0 auto;
  text-decoration: none;
}

.header__inner .header__top .header__top-address {
  flex: 0 0 20%;
  margin-left: 45px;
}

.header__inner .header__top .address-btn {
  line-height: 1.18;
  display: flex;
  align-items: center;
}

.header__inner .header__top .address-btn-img {
  margin-right: 10px;
}

.header__inner .header__top .header__top-colorBtn {
  flex-shrink: 0;
}

.header__inner .header__bottom {
  margin-top: 30px;
}

.header__inner .header__bottom .header__bottom-menu {
  justify-content: center;
  display: flex;
  gap: 32px;
}

.header__inner .header__bottom .header__bottom-menu .menu-link {
  display: inline-block;
  transition: 0.3s ease;
}

.header__inner .header__bottom .header__bottom-menu .menu-link:hover {
  color: var(--green-300);
}

.header__inner .header__bottom .header__bottom-menu .menu-link.active {
  color: var(--green-300);
}

.bannner{
  background: linear-gradient(185.97deg, #051b11 1.02%, #0a3622 41.3%, #0f5132 72.75%, #146c43 106.97%);
  transform: translateY(-205px);
  padding-top: 205px;
  margin-bottom: -93px;
  overflow: hidden;
}

.bannner .bannner__inner {
  padding: 50px 0 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.bannner .bannner__inner .bannner__info {
  flex: 1 0 55%;
}

.bannner .bannner__inner .bannner__info .bannner__info-title {
  margin-bottom: 32px;
  padding-left: 20px;
  position: relative;
}

.bannner .bannner__inner .bannner__info .bannner__info-title::after {
  position: absolute;
  content: "";
  background: var(--green-500);
  width: 8px;
  height: 100%;
  left: 0;
  top: 0;
}

.bannner .bannner__inner .bannner__info .bannner__info-form {
  padding: 28px 32px;
}

.bannner .bannner__inner .bannner__achievement-cards {
  flex: 0 0 85%;
  gap: 76px;
}

.bannner .bannner__inner .bannner__inner-crop {
  top: 100px;
  right: 0px;
  max-width: 550px;
  max-height: 630px;
  position: absolute;
  overflow: hidden;
}

.bannner .bannner__inner .bannner__inner-crop .crop-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 376px) {
  .bannner .bannner__inner img {
    width: 100%;
  }
}

.work:nth-child(5) .advantages-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.work:nth-child(5) .advantages-cards .advantages-card {
  flex: 1 0 30%;
  align-self: stretch;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgba(114, 113, 113, 0.15);
  height: 460px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img {
  box-shadow: 0px 0px 10px 0px #72717126;
  padding: 0 0 14px 24px;
  position: relative;
  border-radius: 4px;
  min-height: 298px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img .card__title-box {
  position: absolute;
  bottom: 14px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img .card-title {
  opacity: 0.2;
  line-height: 1.19;
  font-weight: 900;
  transform: translate(-5%, -15%);
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  border-bottom-right-radius: 10px;
}

.work:nth-child(5) .advantages-cards .advantages-card .card-img .box-title {
  line-height: 1.19;
  position: relative;
}

.work:nth-child(5) .advantages-cards .advantages-card-info {
  padding: 24px 57px 24px 24px;
}

.work:nth-child(5) .advantages-cards .advantages-card-info .card-info-text {
  line-height: 1.42;
}

.work:nth-child(5) .advantages-cards :nth-child(2) .advantages-card-info {
  padding: 24px 57px 24px 24px;
}

.work:nth-child(5) .advantages-cards :nth-child(5) {
  display: block;
}

.work:nth-child(5) .advantages-cards :nth-child(5) .card-img {
  flex: 0 0 48%;
  min-height: 298px;
}

.work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-info {
  flex: 0 0 52%;
  padding: 24px 26px 24px 24px;
}

.work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-info .card-info-text {
  line-height: 1.42;
}

@media (max-width: 376px) {
  .work:nth-child(5) .advantages-cards :nth-child(5) {
    flex-direction: column;
  }

  .work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-img {
    min-height: 298px;
  }

  .work:nth-child(5) .advantages-cards :nth-child(5) .advantages-card-info {
    padding: 24px 26px 24px 24px;
  }
}

.consult {
  background: linear-gradient(185.97deg, #051b11 1.02%, #0a3622 41.3%, #0f5132 72.75%, #146c43 106.97%);
}

.consult .consult__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consult .consult__inner .consult-title-box {
  font-size: 155px;
  line-height: 1;
  position: relative;
  padding-left: 22px;
}

.consult .consult__inner .consult-title-box .box-title {
  margin-bottom: 0;
}

.consult .consult__inner .consult-title-box::after {
  position: absolute;
  content: "";
  background: var(--green-500);
  width: 12px;
  height: 100%;
  left: 0;
  top: 0;
}

.consult .consult__inner .consult-form {
  flex: 0 0 55%;
}

.consult .consult__inner .consult-form .form__inner {
  width: 100%;
}

.consult .consult__inner .consult-form .form__input-input {
  width: 49%;
}

.consult .consult__inner .consult-form .form-after-text {
  flex: 0 0 64%;
}

.scheme__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
}

.scheme__cards .scheme__cards-item {
  flex: 1 0 30%;
}

.scheme__cards .scheme__cards-item .item-number {
  margin-bottom: 12px;
  padding-left: 10px;
}

.scheme__cards .scheme__cards-item .item-line {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: var(--green-100);
}

.scheme__cards .scheme__cards-item .item-line .item-line-part {
  height: 4px;
  background-color: var(--green-500);
  border-radius: 4px;
}

.scheme__cards .scheme__cards-item .item-text {
  padding-left: 10px;
  margin-top: 20px;
}

.scheme__cards .scheme__cards-item:nth-child(1) .item-line-part {
  width: 16.6%;
  height: 4px;
  background-color: var(--green-500);
  border-radius: 4px;
}

.scheme__cards .scheme__cards-item:nth-child(2) .item-line-part {
  width: 33%;
  height: 4px;
  background-color: var(--green-500);
  border-radius: 4px;
}

.scheme__cards .scheme__cards-item:nth-child(3) .item-line-part {
  width: 50%;
  height: 4px;
  background-color: var(--green-500);
  border-radius: 4px;
}

.scheme__cards .scheme__cards-item:nth-child(4) .item-line-part {
  width: 66.6%;
  height: 4px;
  background-color: var(--green-500);
  border-radius: 4px;
}

.scheme__cards .scheme__cards-item:nth-child(5) .item-line-part {
  width: 83%;
  height: 4px;
  background-color: var(--green-500);
  border-radius: 4px;
}

.scheme__cards .scheme__cards-item:nth-child(6) .item-line-part {
  width: 100%;
  height: 4px;
  background-color: var(--green-500);
  border-radius: 4px;
}

.economy {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.economy .economy__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.economy .economy__inner-text {
  display: flex;
  gap: 82px;
  flex-direction: column;
  padding: 60px 0;
}

.economy .economy__inner-img {
  position: absolute;
  right: 0;
  top: 174px;
}

.delivery .delivery__inner {
  display: flex;
  flex-wrap: wrap;
}

.delivery .delivery__inner-text {
  gap: 79px;
  padding: 0;
  flex: 1 0 50%;
}

.delivery .delivery__cards {
  margin-top: 62px;
  display: flex;
  gap: 32px;
}

.stages-title {
  margin-bottom: 62px;
  max-width: 736px;
}

.stages .scheme__cards {
  margin-bottom: 62px;
}

.stages .scheme__cards .scheme__cards-item {
  flex: 0 0 31%;
}

.stages .scheme__cards .scheme__cards-item:nth-child(1) .item-line-part {
  width: 20%;
}

.stages .scheme__cards .scheme__cards-item:nth-child(2) .item-line-part {
  width: 40%;
}

.stages .scheme__cards .scheme__cards-item:nth-child(3) .item-line-part {
  width: 60%;
}

.stages .scheme__cards .scheme__cards-item:nth-child(4) .item-line-part {
  width: 80%;
}

.stages .scheme__cards .scheme__cards-item:nth-child(5) .item-line-part {
  width: 100%;
}

.stages .scheme__attentions-card {
  position: relative;
}

.stages .scheme__attentions-card .item-text {
  width: 68%;
}

.stages .scheme__attentions-card .item-img-big {
  position: absolute;
  right: 0;
  bottom: -10px;
}

.service .service-text {
  max-width: 736px;
  margin-bottom: 62px;
}

.service .service__block {
  margin-bottom: 62px;
  position: relative;
}

.service .service__block .service__block-text {
  padding: 0;
  gap: 41px;
  width: 55%;
}

.service .service__block .service__block-img {
  position: absolute;
  right: 0;
  top: -35px;
}

.reviews__slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.reviews__slider .slider-prev-btn {
  transform: rotate(180deg);
  position: absolute;
  left: 0;
  z-index: 3;
}

.reviews__slider .slider-next-btn {
  position: absolute;
  right: 0;
  z-index: 3;
}

.map .map__inner {
  display: flex;
  gap: 32px;
}

.map #map {
  width: 100%;
  height: 359px;
  padding: 0;
  margin: 0;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.15));
  border-radius: 4px;
}

.map .ymaps-2-1-79-inner-panes,
.map .ymaps-2-1-79-map {
  border-radius: 4px;
}

.popup__bg {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 27, 17, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s all;
}

.popup {
  transform: translate(-50%, -50%) scale(0);
  padding: 46px 49px 12px;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 468px;
  width: 100%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.075);
  background-color: var(--green-0);
  border-radius: 4px;
  position: relative;
  left: 50%;
}

.popup .close {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}

.popup .popup-title {
  text-transform: uppercase;
  margin-bottom: 32px;
}

.popup .popup-text {
  padding: 0 35px;
  line-height: 1.33;
  margin-bottom: 24px;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.popup form input {
  width: 100%;
  padding: 14px 24px;
  background-color: var(--green-100);
  border-radius: 4px;
  border: none;
  color: var(--green-300);
}

.popup .popup-colorBtn {
  margin: 0 auto;
  margin-top: 12px;
}

.popup .popup-footnote a {
  text-decoration: underline;
}

.popup.active {
  transform: translate(-50%, 20%) scale(1);
  transition: 0.5s all;
}

.popup__address {
  padding: 24px 93px;
  max-width: 468px;
  box-shadow: 0px 0px 10px 0px #72717126;
  background-color: var(--green-0);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  position: relative;
  left: 50%;
}

.popup__address .address-title {
  line-height: 1.17;
  margin-bottom: 42px;
}

.popup__address ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.25;
  overflow-y: auto;
  height: 250px;
}

.popup__address.active {
  transform: translate(-50%, 20%) scale(1);
  transition: 0.5s all;
}

.history {
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.history .history__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 16px;
  flex-wrap: wrap;
  line-height: 1.3;
}

.history .history__inner .history__inner-link {
  text-decoration: underline;
  font-size: 16px;
}

.history .history__inner .history__inner-active {
  color: var(--green-200);
}

.inside-bannner .bannner__inner .bannner__info .bannner__info-title {
  margin-bottom: 62px;
  max-width: 70%;
}

.inside-bannner .bannner__inner .bannner__info {
  display: flex;
  flex-direction: column;
}

.inside-bannner .bannner__inner {
  position: relative;
}

.inside-bannner .bannner__inner .bannner__info .bannner__achievement-cards {
  margin-top: 34px;
  flex: none;
}

.inside-bannner .bannner__inner .bannner_img-crop {
  position: absolute;
  max-width: 350px;
  width: 100%;
  right: 0;
  height: 100%;
  max-height: 330px;
  overflow: hidden;
}

.inside-bannner .bannner__inner .bannner_img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  right: 0;
  top: inherit;
  bottom: 0;
}

.inside-contact-bannner .links-phone-num {
  text-decoration: underline;
}

.inside-contact-bannner .map .map__inner {
  align-items: center;
}

.inside-contact-bannner .footer__contacts {
  flex: 0 0 23%;
  gap: 0;
}

.inside-reviews-bannner {
  margin-bottom: -143px;
}

.inside__reviews-block .block-table {
  display: flex;
  gap: 26px;
  flex-direction: column;
  align-items: center;
}

.inside-service-bannner .bannner__info-block {
  align-items: center;
}

.block-item {
  display: flex;
  gap: 16px;
  width: 73%;
  padding: 16px 0;
}

.block-item .block-item-crop {
  max-width: 64px;
  max-height: 64px;
}

.block-item .block-item-crop .block-item-img {
  width: 64px;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.block-item .block-item-profile .profile-name {
  display: flex;
  margin-bottom: 4px;
  font-size: 16px;
  gap: 8px;
}

.block-item .block-item-profile .profile-name .name-item {
  color: #6c757d;
}

.block-item .block-item-profile .profile-name .name-data {
  color: #adb5bd;
}

.block-item .block-item-profile .profile-footnote {
  font-size: 16px;
  color: var(--green-900);
  line-height: 1.5;
  margin-bottom: 12px;
}

.block-item .block-item-profile .profile-rating ul {
  display: flex;
  gap: 8px;
}

.about-footnote-text {
  margin: 0 auto;
  width: 45%;
  text-align: center;
}

.about-footnote-double {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.about-footnote-double .double-text {
  flex: 1 0 45%;
}

.about-footnote-service .about-footnote-text {
  width: 55%;
}

.about-footnote-service .about-footnote-text:nth-child(1) {
  margin-bottom: 40px;
}

.speed .speed-attentions-card {
  position: relative;
}

.speed .speed-attentions-card .item-text {
  width: 70%;
}

.speed .speed-attentions-card .item-img-big {
  position: absolute;
  right: 0;
  bottom: 0px;
}

.speed-service .speed-attentions-card .item-text {
  width: 77%;
}

.price .price-title {
  max-width: 990px;
}

.price .price-text {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.price .price-text .text-item {
  flex: 1 0 45%;
}

.product__price {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 62px;
}

.product__price tbody {
  width: 100%;
  display: inline-table;
}

.product__price tbody .product__price-header {
  display: table-row;
}

.product__price tbody .product__price-header td {
  padding-bottom: 26px;
}

.product__price tbody tr {
  display: table-row;
  color: var(--green-500);
}

.product__price tbody tr :nth-child(2) {
  text-align: center;
}

.product__price tbody tr :nth-child(3) {
  text-align: center;
}

.product__price tbody tr :nth-child(4) {
  text-align: center;
}

.product__price tbody tr:nth-child(n + 2) {
  transition: 0.3s ease;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--green-500);
}

.product__price tbody tr:nth-child(n + 2):hover {
  background-color: var(--green-500);
  color: white;
  border: 1px solid var(--green-500);
}

.product__price tbody tr:nth-child(n + 2):hover .item-btn {
  background-color: var(--green-0);
  color: var(--green-500);
}

.product__price tbody tr:nth-child(n + 2):hover .item-btn:hover {
  background-color: var(--green-200);
  color: var(--green-900);
}

.product__price tbody tr:nth-child(n + 2) td {
  padding: 10px 0px 10px 0px;
  font-size: 18px;
}

.product__price tbody tr td .header-title-img {
  padding: 5px 0;
}

.product__price tbody tr td p {
  margin-bottom: 0;
}

.product__price tbody tr td:first-child {
  padding-left: 22px;
  width: 42%;
}

.product__price tbody .item-btn {
  padding: 4px 8px;
}

.free-form {
  padding: 28px 69px 39px;
  display: flex;
  flex-wrap: wrap;
}

.free-form .form-text {
  margin-bottom: 21px;
}

.free-form .form__inner {
  width: 100%;
  gap: 16px;
  display: grid;
  align-items: stretch;
  /* ! */
  grid-template-areas: "A  A A A A A A A A A B B B B B B B B B B B B B B B B B B B B B B B B B B B B" "C  C C C C D D D D D B B B B B B B B B B B B B B B B B B B B B B B B B B B B";
}

.free-form .free-form-box {
  grid-area: A;
  width: 100%;
}

.free-form .free-form-box .box-input {
  width: 100%;
}

.free-form .free-area {
  grid-area: B;
  background-color: var(--green-100);
  border-radius: 4px;
  padding: 14px 24px;
  color: var(--green-500);
  font-size: 14px;
  resize: none;
  width: 100%;
}

.free-form .free-btn {
  grid-area: C;
}

.free-form .free-text {
  grid-area: D;
  width: 100%;
  align-self: center;
}

.block {
  margin-bottom: 112px;
}

footer {
  background: linear-gradient(185.97deg, #051b11 1.02%, #0a3622 41.3%, #0f5132 72.75%, #146c43 106.97%);
  position: relative;
}

footer .footer__inner {
  padding: 62px 0;
  display: flex;
  flex-wrap: wrap;
}

footer .footer__inner .footer__info {
  flex: 0 0 26%;
}

footer .footer__inner .footer__info .footer__info-text {
  margin: 14px 0 27px 0;
  line-height: 1.28;
}

footer .footer__inner .footer__info .footer__logo-block {
  margin-bottom: 40px;
}

footer .footer__inner .footer__info .footer__logo-block .city-changer {
  flex: 0 0 80%;
}

footer .footer__inner .footer__info .footer__props {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer .footer__inner .footer__info .footer__props .footer__props-item:nth-child(1) {
  margin-bottom: 12px;
}

footer .footer__inner .footer__nav {
  display: flex;
  gap: 90px;
  flex: 1 0 70%;
}

footer .footer__inner .footer__nav .footer__nav-card .card-text {
  margin-bottom: 24px;
}

footer .footer__inner .footer__nav .footer__nav-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .footer__inner .footer__payment {
  flex: 1 0 31%;
  margin-left: auto;
}

footer .footer__inner .footer__payment-title {
  margin-bottom: 24px;
}

footer .footer__inner .footer__payment-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

footer .footer__inner .footer-paragraf {
  margin-top: 62px;
  flex: 1 0 100%;
}

.footer__contacts {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.footer__contacts .footer__contacts-link {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__contacts .address-links-btns {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-start;
  margin-bottom: 35px;
}

.footer__contacts .address-links-btns .city-changer {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.footer__contacts .address-links-btns .contacts__time {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contacts .address-links-btns img {
  margin-right: 10px;
}

@media (max-width: 1300px) {
  .logo-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 20px;
    flex: 0 0 37%;
  }

  .logo-block .city-changer {
    line-height: 1.21;
    flex: 0 0 50%;
    cursor: pointer;
  }

  .logo-block .city-changer img {
    transition: all ease 0.3s;
  }

  .logo-block .city-changer span {
    text-decoration: underline;
  }

  .logo-block .city-changer:hover img {
    transform: translateY(2px);
  }

  .form-1 {
    padding: 32px 20px 12px 20px;
    flex: 0 0 49%;
  }

  .form-1 .form__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
  }

  .form-1 .form__inner .form-title {
    margin-bottom: 12px;
  }

  .form-1 .form__inner .form-text {
    padding-bottom: 28px;
  }

  .form-1 .form__inner .form__input {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .form-1 .form__inner .form__input-input {
    background-color: var(--green-0);
    border-radius: 4px;
    padding: 14px 24px;
    color: var(--green-500);
    font-size: 14px;
    width: 100%;
  }

  .form-1 .form__input-btn {
    margin-bottom: 28px;
  }

  .form-1 .form-after-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .form-1 .form-after-text span {
    text-decoration: underline;
  }

  .form {
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0px 8px 16px 0px #00000026;
    background-color: var(--green-0);
  }

  .form__inner {
    width: 80%;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }

  .form-text {
    padding-bottom: 5px;
  }

  .form__input {
    flex: 0 0 100%;
    display: flex;
    gap: 16px;
  }

  .form__input-input {
    background-color: var(--green-100);
    border-radius: 4px;
    padding: 14px 24px;
    color: var(--green-500);
    font-size: 14px;
    width: 35%;
  }

  .form-after-text {
    flex: 0 0 50%;
  }

  .form-after-text span {
    text-decoration: underline;
  }

  .bannner{
    transform: translateY(-205px);
    padding-top: 205px;
    margin-bottom: -93px;
  }

  .bannner .bannner__inner {
    padding: 50px 0 54px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .bannner .bannner__inner .bannner__info {
    flex: 1 0 55%;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-title {
    margin-bottom: 32px;
    padding-left: 20px;
    position: relative;
    width: 100%;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-title::after {
    position: absolute;
    content: "";
    background: var(--green-500);
    width: 8px;
    height: 100%;
    left: 0;
    top: 0;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-form {
    padding: 28px 32px;
  }

  .bannner .bannner__inner .bannner__achievement-cards {
    flex: 0 0 100%;
    gap: 50px;
  }

  .bannner .bannner__inner .bannner__inner-crop {
    top: 190px;
    max-width: 390px;
  }

  .bannner .bannner__inner .bannner__inner-crop .crop-img {}

  .consult .consult__inner {
    display: flex;
    justify-content: inherit;
    gap: 24px;
    align-items: center;
  }

  .consult .consult__inner .consult-title-box {
    font-size: 155px;
    line-height: 1;
    position: relative;
    padding-left: 22px;
  }

  .consult .consult__inner .consult-title-box .box-title {
    margin-bottom: 0;
  }

  .consult .consult__inner .consult-form {
    flex: 1 0 55%;
    padding: 21px;
  }

  .consult .consult__inner .consult-form .form__inner {
    width: 100%;
  }

  .consult .consult__inner .consult-form .form__input-input {
    width: 49%;
  }

  .consult .consult__inner .consult-form .form-after-text {
    flex: 0 0 64%;
  }

  .economy .economy__inner-img {
    width: 50%;
    top: 35%;
    transform: translate(0, 0%);
  }

  .stages .scheme__attentions-card .item-text {
    width: 90%;
  }

  .stages .scheme__attentions-card .item-img-big {
    display: none;
  }

  .service .service__block .service__block-img {
    position: absolute;
    right: 0;
    bottom: 0;
    top: inherit;
    width: 50%;
  }

  .bannner__info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 46px;
  }

  .bannner__info-block .block-text .block-text-paragraf {
    margin-bottom: 42px;
  }

  .bannner__info-block .block-text .block-text-text {
    padding: 0;
    gap: 50px;
  }

  .bannner__info-block .block-text-warranty {
    flex: 0 0 44%;
  }

  .bannner__info-block .block-text-about {
    flex: 0 0 47%;
  }

  .bannner__info-block .block-text-service {
    flex: 0 0 44%;
  }

  .bannner__info-block .block-text-service .block-text-text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 28px 35px;
    margin-bottom: 42px;
  }

  .bannner__info-block .block-text-service .block-text-text .text-item {
    flex: 0 0 40%;
  }

  .bannner__info-block .block-img {
    flex: 1 0 10%;
  }

  .inside-bannner .bannner__inner .bannner__info .bannner__info-title {
    margin-bottom: 62px;
    max-width: 100%;
  }

  .inside-bannner .bannner__inner .bannner_img-crop {
    max-width: 210px;
  }

  .inside-bannner .bannner__inner .bannner_img {
    top: 120px;
    right: -50%;
    width: 100%;
  }
}

@media (max-width: 1050px) {
  .achievement-cards .achievement-card {
    flex: 0 0 26%;
    gap: 12px;
    position: relative;
  }

  .achievement-cards .achievement-card:first-child {
    flex: 0 0 18%;
  }

  .achievement-cards .achievement-card::after {
    position: absolute;
    content: "";
    background: var(--green-500);
    width: 8px;
    height: 60px;
  }

  .achievement-cards .achievement-card .achievement-card-item {
    padding-left: 20px;
    display: flex;
    align-items: center;
  }

  .logo-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    flex: 1 0 75%;
  }

  .logo-block .city-changer {
    line-height: 1.21;
    flex: 0 0 50%;
    cursor: pointer;
  }

  .logo-block .city-changer img {
    transition: all ease 0.3s;
  }

  .logo-block .city-changer span {
    text-decoration: underline;
  }

  .logo-block .city-changer:hover img {
    transform: translateY(2px);
  }

  .form {
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0px 8px 16px 0px #00000026;
    background-color: var(--green-0);
  }

  .form__inner {
    width: 80%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .form__input {
    flex: 0 0 100%;
    display: flex;
    gap: 16px;
  }

  .form__input-input {
    background-color: var(--green-100);
    border-radius: 4px;
    padding: 14px 24px;
    color: var(--green-500);
    font-size: 14px;
    width: 35%;
  }

  .form-after-text {
    flex: 0 0 50%;
  }

  .form-after-text span {
    text-decoration: underline;
  }

  .free-form {
    padding: 20px 20px 28px;
    display: flex;
    flex-wrap: wrap;
  }

  .free-form .form-text {
    margin-bottom: 20px;
  }

  .free-form .form__inner {
    width: 100%;
    gap: 16px;
    display: grid;
    align-items: stretch;
    /* ! */
    grid-template-areas: "A A A A A A A A A A B B B B B B B B B B B B B B B B B B B B B B B B" "C C C C C C C C C C B B B B B B B B B B B B B B B B B B B B B B B B" "D D D D D D D D D D B B B B B B B B B B B B B B B B B B B B B B B B";
  }

  .free-form .free-form-box {
    grid-area: A;
    width: 100%;
    flex-direction: column;
  }

  .free-form .free-form-box .box-input {
    width: 100%;
  }

  .free-form .free-area {
    grid-area: B;
  }

  .free-form .free-btn {
    grid-area: C;
  }

  .free-form .free-text {
    grid-area: D;
    width: 100%;
    align-self: center;
  }

  .phone-cards .phone-card {
    flex: 0 0 45%;
  }

  .swiper-wrapper .swiper-slide {
    cursor: grab;
  }

  .swiper-wrapper .swiper-slide .slider-item {
    max-width: 100%;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile {
    display: flex;
  }

  .header__inner {
    position: relative;
    z-index: 1;
    padding-top: 12px;
  }

  .header__inner .header__top {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .header__inner .header__top .header__top-phone {
    margin: 0;
    margin-right: auto;
    text-decoration: none;
  }

  .header__inner .header__top .header__top-address {
    flex: 0 0 20%;
    margin-left: 45px;
  }

  .header__inner .header__top .address-btn {
    line-height: 1.18;
  }

  .header__inner .header__top .address-btn-img {
    margin-right: 10px;
  }

  .header__inner .header__top .header__top-colorBtn {
    flex-shrink: 0;
  }

  .header__inner .header__bottom {
    margin-top: 30px;
  }

  .header__inner .header__bottom .header__bottom-menu {
    justify-content: center;
    display: flex;
    gap: 32px;
  }

  .header__inner .header__bottom .header__bottom-menu .menu-link {
    display: inline-block;
    transition: 0.3s ease;
  }

  .header__inner .header__bottom .header__bottom-menu .menu-link:hover {
    color: var(--green-300);
  }

  .header__inner .header__bottom .header__bottom-menu .menu-link.active {
    color: var(--green-300);
  }

  .bannner{
    transform: translateY(-215px);
    padding-top: 215px;
    margin-bottom: -93px;
  }

  .bannner .bannner__inner {
    padding: 50px 0 54px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .bannner .bannner__inner .bannner__info {
    flex: 1 0 55%;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-title {
    margin-bottom: 32px;
    padding-left: 20px;
    position: relative;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-title::after {
    position: absolute;
    content: "";
    background: var(--green-500);
    width: 8px;
    height: 100%;
    left: 0;
    top: 0;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-form {
    padding: 24px 22px;
  }

  .bannner .bannner__inner .bannner__inner-crop {
    top: 190px;
    max-width: 340px;
  }

  .bannner .bannner__inner .bannner__inner-crop .crop-img {}

  .consult .consult__inner {
    gap: 50px;
    flex-wrap: wrap;
  }

  .consult .consult__inner .consult-title-box {
    font-size: 120px;
    line-height: 1;
    position: relative;
    padding-left: 22px;
  }

  .consult .consult__inner .consult-title-box .box-title {
    margin-bottom: 0;
  }

  .consult .consult__inner .consult-form {
    flex: 1 0 55%;
    padding: 21px;
  }

  .consult .consult__inner .consult-form .form__inner {
    width: 100%;
  }

  .consult .consult__inner .consult-form .form__input-input {
    width: 49%;
  }

  .consult .consult__inner .consult-form .form-after-text {
    flex: 0 0 64%;
  }

  .economy .economy__inner-img {
    position: relative;
    width: 100%;
  }

  .economy .economy__inner-text {
    display: flex;
    gap: 26px;
    flex-direction: column;
    padding: 0 0 40px 0;
  }

  .form-1 {
    padding: 32px 20px 12px 20px;
    flex: 1 0 51%;
  }

  .form-1 .form__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
  }

  .form-1 .form__inner .form-title {
    margin-bottom: 12px;
  }

  .form-1 .form__inner .form-text {
    padding-bottom: 28px;
  }

  .form-1 .form__inner .form__input {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .form-1 .form__inner .form__input-input {
    background-color: var(--green-0);
    border-radius: 4px;
    padding: 14px 24px;
    color: var(--green-500);
    font-size: 14px;
    width: 100%;
  }

  .form-1 .form__input-btn {
    margin-bottom: 28px;
  }

  .form-1 .form-after-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .form-1 .form-after-text span {
    text-decoration: underline;
  }

  .delivery .delivery__cards {
    margin-top: 32px;
  }

  .delivery .delivery__inner {
    gap: 40px;
  }

  .stages-title {
    margin-bottom: 40px;
    max-width: 736px;
  }

  .stages .scheme__cards {
    margin-bottom: 62px;
  }

  .stages .scheme__cards .scheme__cards-item {
    flex: 1 0 45%;
  }

  .stages .scheme__attentions-card {
    position: relative;
  }

  .stages .scheme__attentions-card .item-img-big {
    position: absolute;
    right: 0;
    bottom: -10px;
  }

  .map .map__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .map #map {
    width: 100%;
    height: 359px;
  }

  .bannner__info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 46px;
  }

  .bannner__info-block .block-text .block-text-paragraf {
    margin-bottom: 42px;
  }

  .bannner__info-block .block-text .block-text-text {
    padding: 0;
    gap: 20px;
  }

  .bannner__info-block .block-text-warranty {
    flex: 1 0 100%;
  }

  .bannner__info-block .block-text-about {
    flex: 1 0 100%;
  }

  .bannner__info-block .block-text-service {
    flex: 1 0 100%;
  }

  .bannner__info-block .block-text-service .block-text-text {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 28px 35px;
    margin-bottom: 42px;
  }

  .bannner__info-block .block-text-service .block-text-text .text-item {
    flex: 0 0 40%;
  }

  .bannner__info-block .block-img {
    max-width: 400px;
    flex: 0 0 10%;
    min-width: 300px;
    height: fit-content;
  }

  footer {
    background: linear-gradient(185.97deg, #051b11 1.02%, #0a3622 41.3%, #0f5132 72.75%, #146c43 106.97%);
    position: relative;
  }

  footer .footer__inner {
    padding: 62px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  footer .footer__inner .footer__info {
    flex: 1 0 26%;
  }

  footer .footer__inner .footer-paragraf {
    margin-top: 0px;
  }

  .inside-bannner .bannner__inner .bannner__info .bannner__info-title {
    margin-bottom: 62px;
    max-width: 100%;
  }

  /* .inside-bannner .bannner__inner .bannner_img {
    right: 0px; } */
  .inside-contact-bannner .links-phone-num {
    text-decoration: underline;
  }

  .inside-contact-bannner .map .map__inner {
    align-items: flex-start;
  }

  .inside-contact-bannner .map .map__inner .footer__contacts {
    flex-direction: column;
  }

  .inside-contact-bannner .map .map__inner .footer__contacts .city-changer img,
  .inside-contact-bannner .map .map__inner .footer__contacts .contacts__time img {
    width: inherit;
  }

  .inside-contact-bannner .footer__contacts {
    flex: 0 0 23%;
    gap: 0;
  }

  .inside-reviews-bannner {
    margin-bottom: -143px;
  }

  .inside__reviews-block .block-table {
    display: flex;
    gap: 26px;
    flex-direction: column;
    align-items: center;
  }

  .inside-service-bannner .bannner__info-block {
    align-items: center;
  }
}

@media (max-width: 830px) {
  ::-webkit-scrollbar {
    width: 3px;
  }

  body,
  html {
    overflow-x: hidden;
  }

  .container {
    padding: 0px 1rem;
  }

  .title {
    margin-bottom: 32px;
    font-size: 22px;
    max-width: 665px;
  }

  .text-24 {
    font-size: 18px;
  }

  .text-20 {
    font-size: 16px;
  }

  .text-18 {
    font-size: 18px;
  }

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

  .text-14 {
    font-size: 12px;
  }

  .text-12 {
    font-size: 12px;
  }

  .stick-text-block {
    display: flex;
    gap: 82px;
    flex-direction: column;
    padding: 60px 0;
  }

  .stick-text-block .text-item {
    padding-left: 20px;
    position: relative;
  }

  .stick-text-block .text-item .text-item-title {
    margin-bottom: 2px;
    font-size: 18px;
  }

  .bannner__info-block .block-text-privace {
    gap: 20px;
    padding: 30px 0;
  }

  .bannner__info-block .block-text-privace p {
    font-size: 16px;
  }

  .bannner__info-block .block-text-privace ul {
    font-size: 16px;
  }

  .burger-menu {
    display: flex;
    gap: 4px;
    flex-direction: column;
  }

  .menu__bg {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 27, 17, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
  }

  .menu__bg.active {
    opacity: 1;
    pointer-events: all;
    transition: 0.5s all;
  }

  .menu {
    display: block;
    position: fixed;
    width: 100vw;
    z-index: 9999;
    visibility: hidden;
    height: 0;
    left: 0;
    background-color: var(--green-0);
    padding: 0;
    box-shadow: 0px 5px 4px 0px #72717126;
    border-radius: 4px;
    transition: 750ms;
  }

  .menu .menu__inner {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu .menu__inner .menu__title {
    display: flex;
    align-items: center;
    margin-bottom: 42px;
  }

  .menu .menu__inner .menu__title .menu__logo-block {
    justify-content: flex-start;
    flex: 1 0 85%;
  }

  .menu .menu__inner .menu__title .menu-close {
    width: 33px;
    height: 33px;
    border-radius: 100%;
    position: relative;
  }

  .menu .menu__inner .menu__title .menu-close-line {
    left: 50%;
    top: 15px;
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: var(--green-500);
    border-radius: 4px;
  }

  .menu .menu__inner .menu__title .menu-close-line:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu .menu__inner .menu__title .menu-close-line:nth-child(2) {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .menu .menu__inner .menu-btn {
    margin: 42px 0;
  }

  .menu .menu__inner .menu__nav .menu__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    line-height: 1.2;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .menu-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .menu-item .menu-link.active {
    color: var(--green-900);
  }

  .menu .menu__inner .menu__nav .menu__nav-list .menu-item-title {
    display: flex;
    align-items: center;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .menu-item:hover .item-title {
    font-weight: 700;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .menu-item:hover svg {
    transform: rotate(60deg);
  }

  .menu .menu__inner .menu__nav .menu__nav-list .menu-item:hover .submenu {
    opacity: 1;
    position: relative;
  }

  .menu .menu__inner .menu__nav .menu__nav-list .menu-item:hover .submenu-item {
    transform: rotateX(0deg);
  }

  .menu .menu__inner .menu-address {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
  }

  .menu.active {
    height: 550px;
    padding: 12px 0 65px 0;
    visibility: visible;
  }

  .menu.active .menu__inner {
    display: flex;
  }

  .mobile__menu {
    display: flex;
    padding: 10px 15px;
    background-color: var(--green-500);
    color: var(--green-0);
    border-radius: 4px;
    align-items: center;
    gap: 15px;
  }

  .mobile__menu.active .mobile__menu-lines .line:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile__menu.active .mobile__menu-lines .line:nth-child(2) {
    opacity: 0;
  }

  .mobile__menu.active .mobile__menu-lines .line:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile__menu.active .line:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile__menu .mobile__menu-lines {
    gap: 4px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
  }

  .mobile__menu .mobile__menu-lines .line {
    background-color: var(--green-0);
    transition: 0.3s ease;
    height: 2px;
    width: 20px;
  }

  .popup {
    padding: 46px 20px 12px;
    max-width: 300px;
  }

  .plus-card {
    flex: 0 0 100%;
  }

  .phone-cards {
    gap: 23px;
  }

  .phone-cards .phone-card {
    flex: 0 0 46%;
    min-height: 155px;
  }

  .phone-cards .phone-card .phone-card-img-crop {
    max-width: 115px;
    padding-top: 10px;
  }

  .phone-cards .phone-card .crop {
    text-align: center;
  }

  .phone-cards .phone-card img {

    width: 100%;
  }

  .swiper-wrapper .swiper-slide .slider-item {
    max-width: 336px;
  }

  .swiper-wrapper .swiper-slide .slider-item-profile {
    display: flex;
  }

  .swiper-slide-active {
    opacity: 1;
  }

  .swiper-slide-next {
    opacity: 0;
  }

  .form-1 {
    padding: 32px 20px 12px 20px;
    flex: 1 0 51%;
  }

  .form-1 .form__inner .form-title {
    margin-bottom: 20px;
    text-align: center;
  }

  .form-1 .form__inner .form-text {
    padding-bottom: 20px;
  }

  .form-1 .form__inner .form__input {
    gap: 12px;
    margin-bottom: 20px;
  }

  .form-1 .form__input-btn {
    margin-bottom: 28px;
  }

  .form-1 .form-after-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .form-1 .form-after-text span {
    text-decoration: underline;
  }

  .free-form .form-text {
    font-size: 18px;
  }

  .free-form .form__inner {
    width: 100%;
    gap: 12px;
    display: grid;
    align-items: stretch;
    /* ! */
    grid-template-areas: "A A A " "B B B " "C C C " "D D D ";
  }

  .free-form .free-form-box {
    width: 100%;
    flex-direction: column;
  }

  .free-form .free-form-box .box-input {
    width: 100%;
    font-size: 14px;
  }

  .free-form .free-area {
    height: 109px;
  }

  .free-form .free-btn {
    margin-top: 8px;
  }

  .free-form .free-text {
    width: 100%;
    align-self: center;
  }

  .attentions-card {
    display: block;
    padding: 24px 20px 23px 14px;
  }

  .attentions-card .item-img {
    float: left;
    margin-right: 10px;
    margin-bottom: -1px;
  }

  .attentions-card .item-img svg {
    width: 38px;
    height: 38px;
  }

  .achievement-cards .achievement-card {
    flex: 0 0 35%;
    position: relative;
  }

  .achievement-cards .achievement-card:first-child {
    flex: 0 0 35%;
  }

  .achievement-cards .achievement-card:first-child .achievement-card-item {
    width: 100%;
  }

  .achievement-cards .achievement-card::after {
    position: absolute;
    content: "";
    background: var(--green-500);
    width: 8px;
    height: 50px;
  }

  .achievement-cards .achievement-card .achievement-card-item {
    padding-left: 16px;
    display: flex;
    align-items: center;
  }

  .stages .scheme__cards .scheme__cards-item {
    flex: 1 0 50%;
  }

  .logo-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 10px;
    flex: 1 0 75%;
  }

  .logo-block .logo {
    max-width: 110px;
    max-height: 50px;
  }

  .logo-block .logo img {
    width: 80%;
    max-width: 100%;
    object-fit: contain;
    height: auto;
  }

  .logo-block .city-changer {
    line-height: 1.21;
    flex: 0 0 59%;
    cursor: pointer;
  }

  .logo-block .city-changer img {
    transition: all ease 0.3s;
  }

  .logo-block .city-changer span {
    text-decoration: underline;
  }

  .logo-block .city-changer:hover img {
    transform: translateY(2px);
  }

  .phone-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .phone-btns-bottom {
    display: flex;
    margin-bottom: 32px;
  }

  .phone-btns .phone-btns-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .form {
    position: relative;
    z-index: 5;
    border-radius: 4px;
  }

  .form__inner {
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .form__input {
    flex: 0 0 100%;
    flex-direction: column;
    gap: 12px;
  }

  .form__input-input {
    padding: 14px 26px;
    width: 100%;
  }

  .form-after-text {
    flex: 0 0 100%;
  }

  .colorBtn {
    width: 100%;
  }

  .header__inner {
    position: relative;
    z-index: 1;
    padding-top: 12px;
  }

  .header__inner .header__top {
    flex-wrap: wrap;
    gap: 0;
  }

  .header__inner .header__top .header__top-phone {
    flex: 1 0 100%;
    margin: 0;
    margin-right: 0;
    margin-bottom: 28px;
    margin-top: 20px;
    text-decoration: none;
  }

  .header__inner .header__top .header__top-address {
    flex: 0 0 20%;
    margin-left: 45px;
  }

  .header__inner .header__top .address-btn {
    line-height: 1.18;
    display: none;
  }

  .header__inner .header__top .address-btn-img {
    margin-right: 10px;
  }

  .header__inner .header__top .header__top-colorBtn {
    flex-shrink: 0;
  }

  .header__inner .header__bottom {
    margin-top: 0px;
    width: 100%;
    display: none;
    border-radius: 4px;
    padding: 24px;
    background-color: var(--green-100);
  }

  .header__inner .header__bottom.active {
    display: block;
    position: absolute;
    top: 120px;
    left: 0;
  }

  .header__inner .header__bottom .header__bottom-menu {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .header__inner .header__bottom .header__bottom-menu .menu-link {
    display: inline-block;
    transition: 0.3s ease;
    font-weight: 700;
    font-size: 20px;
  }

  .header__inner .header__bottom .header__bottom-menu .menu-link:hover {
    color: var(--green-300);
  }

  .header__inner .header__bottom .header__bottom-menu .menu-link.active {
    color: var(--green-500);
  }

  .bannner{
    transform: translateY(-300px);
    padding-top: 300px;
    margin-bottom: -188px;
  }

  .bannner .bannner__inner {
    padding: 22px 0 62px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .bannner .bannner__inner .bannner__info {
    flex: 1 0 55%;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-title {
    margin-bottom: 32px;
    padding-left: 20px;
    position: relative;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-title::after {
    position: absolute;
    content: "";
    background: var(--green-500);
    width: 8px;
    height: 100%;
    left: 0;
    top: 0;
  }

  .bannner .bannner__inner .bannner__info .bannner__info-form {
    padding: 24px 17px;
  }

  .bannner .bannner__inner .bannner__achievement-cards {
    gap: 30px 30px;
  }

  .bannner .bannner__inner .bannner__inner-crop {
    top: inherit;
    bottom: -20px;
    max-width: 270px;
  }

  .bannner .bannner__inner .bannner__inner-crop .crop-img {}

  .inside-bannner .bannner__inner .bannner_img-crop {
    max-width: 150px;
    top: 50px;
  }

  .consult .consult__inner {
    gap: 50px;
    flex-wrap: wrap;
  }

  .consult .consult__inner .consult-title-box {
    font-size: 120px;
    line-height: 1;
    position: relative;
    padding-left: 22px;
  }

  .consult .consult__inner .consult-title-box .box-title {
    margin-bottom: 0;
    font-size: 31px;
  }

  .consult .consult__inner .consult-form {
    flex: 1 0 55%;
    padding: 24px 17px;
  }

  .consult .consult__inner .consult-form .form__inner {
    width: 100%;
  }

  .consult .consult__inner .consult-form .form__input-input {
    width: 100%;
  }

  .consult .consult__inner .consult-form .form-after-text {
    flex: 0 0 100%;
  }

  .scheme__cards .scheme__cards-item {
    flex: 1 0 70%;
  }

  .scheme__cards .scheme__cards-item .item-number {
    font-size: 20px;
  }

  .scheme__cards .scheme__cards-item .item-text {
    font-size: 18px;
  }

  .delivery .delivery__cards {
    flex-wrap: wrap;
  }

  .service .service-text {
    margin-bottom: 42px;
  }

  .service .service__block {
    margin-bottom: 24px;
  }

  .service .service__block .service__block-text {
    padding: 0;
    gap: 32px;
    width: 100%;
    margin-bottom: 31px;
  }

  .service .service__block .service__block-img {
    position: relative;
    right: 0;
    bottom: 0;
    top: inherit;
    width: 100%;
    height: fit-content;
  }

  footer .footer__inner {
    padding: 40px 0 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  footer .footer__inner .footer__info {
    flex: 1 0 26%;
  }

  footer .footer__inner .footer__info .footer__logo-block {
    margin-bottom: 20px;
  }

  footer .footer__inner .footer__info .footer__logo-block .city-changer {
    flex: 0 0 60%;
  }

  footer .footer__inner .footer__nav {
    gap: 32px 72px;
    flex-wrap: wrap;
  }

  footer .footer__inner .footer__nav .footer__nav-card:nth-child(2) {
    order: 3;
  }

  footer .footer__inner .footer__payment {
    order: 2;
    flex: 1 0 31%;
    margin-left: 0;
  }

  footer .footer__inner .footer__payment-title {
    text-align: end;
  }

  footer .footer__inner .footer__payment-cards {
    gap: 5px;
    justify-content: flex-end;
  }

  footer .footer__inner .footer-paragraf {
    margin-top: 0px;
  }

  .option__cards .product__price {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 62px;
  }

  .option__cards .product__price tbody .product__price-header {
    display: table-row;
  }

  .option__cards .product__price tbody .product__price-header .header-title {
    font-size: 14px;
  }

  .option__cards .product__price tbody .product__price-header td {
    padding-bottom: 14px;
  }

  .option__cards .product__price tbody tr :nth-child(2) {
    text-align: center;
    display: none;
  }

  .option__cards .product__price tbody tr :nth-child(3) {
    text-align: center;
    font-size: 16px;
  }

  .option__cards .product__price tbody tr :nth-child(4) {
    text-align: center;
  }

  .option__cards .product__price tbody tr:nth-child(n + 2) td {
    padding: 6px 0px 4px 0px;
    font-size: 14px;
  }

  .option__cards .product__price tbody tr td .header-title-img {
    padding: 5px 0;
  }

  .option__cards .product__price tbody tr td p {
    margin-bottom: 0;
  }

  .option__cards .product__price tbody tr td:first-child {
    padding-left: 0px;
    width: 50%;
  }

  .option__cards .product__price tbody .item-btn {
    padding: 4px 8px;
  }

  .product__price {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 62px;
  }

  .product__price tbody .product__price-header {
    display: table-row;
  }

  .product__price tbody .product__price-header .header-title {
    font-size: 14px;
  }

  .product__price tbody .product__price-header td {
    padding-bottom: 14px;
  }

  .product__price tbody tr :nth-child(2) {
    text-align: center;
    display: none;
  }

  .product__price tbody tr :nth-child(3) {
    text-align: center;
    font-size: 16px;
  }

  .product__price tbody tr :nth-child(4) {
    text-align: center;
  }

  .product__price tbody tr:nth-child(n + 2) td {
    padding: 6px 0px 4px 0px;
    font-size: 14px;
  }

  .product__price tbody tr td .header-title-img {
    padding: 5px 0;
  }

  .product__price tbody tr td p {
    margin-bottom: 0;
  }

  .product__price tbody tr td:first-child {
    padding-left: 0px;
    width: 50%;
  }

  .product__price tbody .item-btn {
    padding: 4px 8px;
  }

  .type__switcher-btns {
    display: flex;
    justify-content: flex-start;
    position: relative;
    overflow: auto;
  }

  .type__switcher-btns::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .type__switcher-btns::after {
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    width: 325%;
    height: 12px;
    background-color: var(--green-400);
    transition: 1s ease;
  }

  .type__switcher-btns .type__switcher-btn {
    flex: 0 0 65%;
  }

  .type__switcher-btns .type__switcher-btn.active::after {
    background-color: var(--green-0);
  }

  .type__switcher-btns .type__switcher-btn::after {
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    width: 100%;
    height: 12px;
  }

  .speed .speed-attentions-card {
    position: relative;
  }

  .speed .speed-attentions-card .item-text {
    width: 100%;
  }

  .speed .speed-attentions-card .item-img-big {
    display: none;
  }

  .speed-service .speed-attentions-card .item-text {
    width: 100%;
  }

  .text-centered {
    margin: 40px 0 112px 0;
  }

  .text-centered .about-footnote-text {
    width: 100%;
    text-align: left;
  }



  .price .price-text .text-item {
    flex: 1 0 50%;
  }

  .block-item {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 16px 0 7px;
  }

  .inside__reviews-block {
    margin-top: -175px;
  }

  .bannner__info-block .block-img {
    max-width: 250px;
    flex: 1 0 10%;
    min-width: 200px;
  }

  .about-footnote-double .double-text {
    flex: 1 0 100%;
  }

  .phone-links {
    font-size: 20px;
  }

  .phone-text {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .achievement-cards .achievement-card:first-child {
    flex: 0 0 45%;
  }

  .achievement-cards .achievement-card {
    flex: 0 0 45%;
  }

  .bannner{
    transform: translateY(-300px);
    padding-top: 300px;
    margin-bottom: -190px;
  }

  .bannner .bannner__inner .bannner__inner-crop {
    top: inherit;
    bottom: -20px;
    max-width: 270px;
    opacity: 0.5;
  }

  .bannner .bannner__inner .bannner__inner-crop .crop-img {}

  .inside-bannner .bannner__inner .bannner_img-crop {
    opacity: 0.2;
    top: 185px;
    max-height: 150px;
  }

  .phone-cards {
    gap: 23px;
  }

  .phone-cards .phone-card {
    flex: 0 0 46%;
  }

  .phone-cards .phone-card .crop {
    max-width: 121px;
  }

  .phone-cards .phone-card img {
    width: 80%;
  }
}

@media (max-width: 520px) {
  .modal_menu {
    z-index: 1000;
  }
}

.none {
  display: none;
}

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



@media (min-width: 992px) {
  .logo-block .logo img {
    height: 75px;
    object-fit: contain;
  }
}

@media (max-width: 992px) {
  .city-changer.header__city-changer {
    margin-left: auto;
    text-align: end;
  }
}