@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: rgb(255, 253, 248);
}

body::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: rgb(24, 97, 77);
}

a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, p, a, span, input, button, address, li, div {
  font-family: "Golos Text", sans-serif;
  color: rgb(53, 62, 58);
  font-style: normal;
}

body {
  background: rgb(255, 255, 255);
}

button {
  cursor: pointer;
}

.border-red {
  border: 1px solid red !important;
}

li {
  list-style-type: none;
}

main {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.before-after__toggler {
  position: absolute;
  width: 52px;
  height: 52px;
  line-height: 30px;
  padding: 4px;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgb(255, 255, 255);
}
.before-after__toggler::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.before-after__arrow-left {
  position: absolute;
  display: block;
  width: 8px;
  height: 18px;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("/assets/img/icons/toggler-arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.before-after__arrow-right {
  position: absolute;
  display: block;
  width: 8px;
  height: 18px;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  background: url("/assets/img/icons/toggler-arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.dop_color {
  color: rgb(24, 97, 77);
}

.bold {
  font-weight: 700;
}

.overflow_disable {
  overflow-y: hidden;
}

.overflow_enable {
  overflow-y: visible;
}

.politika__content_pulse {
  opacity: 1 !important;
  border-radius: 20px;
  -webkit-animation: pulse 1s 3 linear;
  animation: pulse 1s 3 linear;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .br_desc {
    display: none;
  }
}

@media (min-width: 768px) {
  .br_mobile {
    display: none;
  }
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: rgb(255, 255, 255);
  margin: 0 10.5px !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: rgb(0, 101, 220);
  width: 15px;
  height: 15px;
}

input.wrong {
  border: 1px solid red;
}

.btn_loader {
  position: absolute;
  display: block;
  top: 50%;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border-top: 3px solid rgb(255, 255, 255);
  border-right: 3px solid transparent;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}
@media (max-width: 320px) {
  .btn_loader {
    width: 15px;
    height: 15px;
    top: 15px;
    right: 15px;
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  0% {
    background: rgba(252, 0, 0, 0);
  }
  50% {
    background: rgba(255, 0, 0, 0.3);
  }
  100% {
    background: rgba(255, 0, 0, 0);
  }
}
@keyframes pulse {
  0% {
    background: rgba(252, 0, 0, 0);
  }
  50% {
    background: rgba(255, 0, 0, 0.3);
  }
  100% {
    background: rgba(255, 0, 0, 0);
  }
}
.checbox_label {
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  padding-left: 27px;
  text-align: center;
  color: rgb(255, 255, 255);
  margin-left: auto;
  margin-right: auto;
}
.checbox_label::before {
  position: absolute;
  content: "";
  top: 50%;
  height: 18px;
  width: 18px;
  border-radius: 3px;
  border: 1px solid rgb(255, 255, 255);
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.checbox_label::after {
  position: absolute;
  content: "";
  opacity: 0;
  top: 50%;
  height: 0px;
  width: 0px;
  -webkit-mask: url(../img/icons/checkbox-galka.svg) no-repeat;
  mask: url(../img/icons/checkbox-galka.svg) no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: rgb(255, 245, 104);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: 2.5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 300px) {
  .checbox_label {
    font-size: 10px;
  }
}

.checbox_label.wrong::before {
  border: 1px solid red;
}

.checkbox__input {
  display: none !important;
  opacity: 0;
}
.checkbox__input:checked + .checbox_label::after {
  opacity: 1;
  height: 11px;
  width: 14px;
}

.politika__link {
  cursor: pointer;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
}
.politika__link:hover {
  text-decoration: underline;
}

.politika__content {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fancybox__content {
  background: rgb(255, 255, 255);
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 30px 30px rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 30px 30px rgba(255, 255, 255, 0.05);
  max-width: 336px;
}
.fancybox__content .checbox_label, .fancybox__content .politika__link {
  color: rgba(36, 41, 38, 0.5);
  font-size: 10px;
}
.fancybox__content .checkbox_politika::before {
  border: 1px solid rgba(36, 41, 38, 0.5);
}
.fancybox__content .checkbox_politika::after {
  background: rgba(36, 41, 38, 0.5);
}
@media (min-width: 768px) {
  .fancybox__content {
    max-width: 420px;
  }
}

.modal {
  padding: 34px 33px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .modal {
    padding: 48px 27px;
    padding-bottom: 57px;
  }
}

.is-close-btn {
  top: 10px !important;
  right: 10px !important;
}

.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.modal__title {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
}

.modal__text {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .modal__text {
    margin-top: 13px;
    font-size: 18px;
  }
}

.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
  max-width: 260px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .modal__form {
    margin-top: 31px;
    max-width: 336px;
  }
}

.modal__input-wrap {
  position: relative;
}

.modal__input {
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  height: 52px;
  background: rgb(229, 243, 239);
  max-width: 100%;
  font-size: 14px;
}
.modal__input::-webkit-input-placeholder {
  opacity: 0;
}
.modal__input::-moz-placeholder {
  opacity: 0;
}
.modal__input:-ms-input-placeholder {
  opacity: 0;
}
.modal__input::-ms-input-placeholder {
  opacity: 0;
}
.modal__input::placeholder {
  opacity: 0;
}
.modal__input.just-validate-error-field {
  border: 1px solid rgba(255, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
  box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
}
.modal__input.input-filled {
  color: rgba(0, 0, 0, 0.9);
}
.modal__input ~ label {
  position: absolute;
  pointer-events: none;
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 1px));
  -ms-transform: translateY(calc(-50% - 1px));
  transform: translateY(calc(-50% - 1px));
  background: rgb(255, 255, 255);
  padding: 3px 8px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .modal__input ~ label {
    font-size: 16px;
  }
}
.modal__input:focus {
  border: 1px solid rgb(255, 245, 104);
  -webkit-box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
  box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
}
.modal__input:focus ~ label {
  top: 3px;
  left: 22px;
}
.modal__input:not(.just-validate-error-field) ~ label.input-filled {
  opacity: 0;
}
.modal__input ~ label.input-filled {
  top: 3px;
  left: 22px;
}
@media (min-width: 768px) {
  .modal__input {
    font-size: 16px;
  }
}
.modal__input ~ label {
  font-size: 14px;
  background: rgb(229, 243, 239);
}
@media (max-width: 767px) {
  .modal__input ~ label {
    left: 12px;
  }
}
.modal__input:focus {
  border: 1px solid rgba(24, 97, 77, 0.8);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.modal__input:focus ~ label {
  left: 12px;
}
@media (max-width: 767px) {
  .modal__input {
    padding-left: 12px;
  }
}
@media (min-width: 768px) {
  .modal__input {
    max-width: 100%;
    font-size: 14px;
  }
}

.modal__submit {
  position: relative;
  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;
  width: 100%;
  border-radius: 100px;
  background: rgb(255, 245, 104);
  font-weight: 400;
  color: rgb(53, 62, 58);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  position: relative;
  background: rgb(24, 97, 77);
  color: rgb(255, 255, 255);
  height: 52px;
  font-weight: 400;
  font-size: 16px;
  padding-right: 30px;
  margin-bottom: 12px;
}
.modal__submit:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .modal__submit:hover {
    background: rgba(255, 245, 104, 0.9);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
    box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
  }
}
@media (min-width: 768px) {
  .modal__submit {
    height: 55px;
  }
}
@media (min-width: 1141px) {
  .modal__submit {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
  }
}
.modal__submit::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(56, 152, 117);
  border-radius: 50%;
  right: 70px;
}
@media (max-width: 320px) {
  .modal__submit::after {
    right: 30px;
  }
}
@media (min-width: 768px) {
  .modal__submit::after {
    right: 108px;
  }
}
.modal__submit.modal__submit_big-text::after {
  right: 44px;
}
@media (max-width: 320px) {
  .modal__submit.modal__submit_big-text::after {
    right: 25px;
  }
}
@media (min-width: 768px) {
  .modal__submit.modal__submit_big-text::after {
    right: 82px;
  }
}
@media (hover: hover) {
  .modal__submit.modal__submit_big-text:hover::after {
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .modal__submit.modal__submit_big-text:hover::after {
    right: 60px;
  }
}
@media (hover: hover) {
  .modal__submit:hover {
    background: rgba(24, 97, 77, 0.8);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .modal__submit:hover::after {
    right: 50px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .modal__submit:hover::after {
    right: 80px;
  }
}
@media (min-width: 768px) {
  .modal__submit {
    height: 52px;
    font-size: 16px;
    padding-bottom: 0;
  }
}
@media (min-width: 1141px) {
  .modal__submit {
    font-size: 16px;
    padding-bottom: 1px;
  }
}

.input-error-container:empty {
  display: none;
}

.input-error-container {
  display: none;
}

.input-error-container {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}

.notify {
  position: fixed;
  top: 25px;
  right: 30px;
  border-radius: 12px;
  background: rgba(104, 168, 145, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 15px 25px 15px 15px;
  -webkit-box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transform: translateX(calc(100% + 30px));
  -ms-transform: translateX(calc(100% + 30px));
  transform: translateX(calc(100% + 30px));
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  max-width: 450px;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 767px) and (max-width: 480px) {
  .notify {
    max-width: 100%;
    right: 0;
  }
}

.notify.active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.notify .notify__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.notify__content .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: rgb(211, 145, 77);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.notify__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin: 0 20px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.notify__title {
  display: block;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 20px;
}

.notify__text {
  display: block;
  color: #FFF;
  font-weight: 400;
  font-size: 16px;
}
.notify__text a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .notify__text a:hover {
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .notify__text br {
    display: none;
  }
}

.notify__button {
  position: relative;
  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;
  max-width: 248px;
  width: 100%;
  border-radius: 100px;
  background: rgb(56, 152, 117);
  font-weight: 400;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  background: rgb(255, 245, 104);
  color: rgb(53, 62, 58);
  padding: 0;
  height: 55px;
}
.notify__button::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(24, 97, 77);
  border-radius: 50%;
  right: 42px;
}
@media (max-width: 306px) {
  .notify__button::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .notify__button::after {
    right: 24px;
  }
}
@media (min-width: 1141px) {
  .notify__button::after {
    right: 31px;
  }
}
.notify__button:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .notify__button:hover {
    background: rgba(56, 152, 117, 0.8);
  }
  .notify__button:hover::after {
    background: rgba(24, 97, 77, 0.7);
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .notify__button:hover::after {
    right: 16px;
  }
}
@media (hover: hover) and (min-width: 1141px) {
  .notify__button:hover::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .notify__button {
    max-width: 306px;
    padding-right: 40px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .notify__button {
    height: 55px;
    padding-right: 24px;
  }
}
@media (min-width: 1141px) {
  .notify__button {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
    padding-right: 31px;
  }
}
.notify__button::after {
  display: none;
}
@media (hover: hover) {
  .notify__button:hover {
    background: rgb(255, 245, 104);
    color: rgb(53, 62, 58);
    -webkit-box-shadow: 0px 0px 10px rgba(255, 245, 104, 0.8);
    box-shadow: 0px 0px 10px rgba(255, 245, 104, 0.8);
  }
}
@media (min-width: 768px) {
  .notify__button {
    height: 55px;
    padding: 0;
    padding-bottom: 3px;
  }
}

.notify .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.notify .close:hover {
  opacity: 1;
}

.notify .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}

.notify .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background-color: rgb(255, 245, 104);
}

.progress.active:before {
  right: 0;
  -webkit-animation: progress 10s linear forwards;
  animation: progress 10s linear forwards;
}

@-webkit-keyframes progress {
  100% {
    right: 100%;
  }
}

@keyframes progress {
  100% {
    right: 100%;
  }
}
.notify.active ~ button {
  pointer-events: none;
}

.header {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100vw;
}
.header .container {
  position: relative;
}
@media (max-width: 767px) {
  .header .container {
    padding: 0;
  }
}
.header.active {
  height: 100vh;
}
@media (max-width: 767px) {
  .header.active .container .header__list {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.header.scrolled .header__mobile {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  .header {
    top: 24px;
  }
}
@media (min-width: 1141px) {
  .header {
    top: 30px;
  }
}

.header__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 12px;
  padding-top: 30px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 0 0 24px 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .header__mobile {
    display: none;
  }
}

.header__logo-mobile-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 70%;
}
.header__logo-mobile-link .header__logo-mobile {
  display: block;
  width: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__logo-mobile {
  display: block;
  max-width: 70%;
}

.header__open-menu {
  display: block;
  width: 46px;
  aspect-ratio: 1/1;
  background: url("/assets/img/icons/burger-open.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 290px) {
  .header__open-menu {
    width: 40px;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform, height;
}
@media (max-width: 767px) {
  .header__list {
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    right: 0;
    height: 100vh;
    max-width: 300px;
    -webkit-transform: translateX(120%);
    -ms-transform: translateX(120%);
    transform: translateX(120%);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 30px 0 0 30px;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(23, 23, 23, 0.2);
    box-shadow: 0px 0px 40px 0px rgba(23, 23, 23, 0.2);
    padding: 30px 24px;
    padding-bottom: 44px;
    z-index: 110;
  }
}
@media (min-width: 768px) {
  .header__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header__close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
  aspect-ratio: 1/1;
  background: url("/assets/img/icons/close.svg") no-repeat;
  background-size: 24px 24px;
  background-position: center;
}
@media (min-width: 768px) {
  .header__close {
    display: none;
  }
}

.header__links-item_mobile {
  margin-bottom: 9px;
}
@media (min-width: 768px) {
  .header__links-item_mobile {
    display: none;
  }
}

.header__text-opacity {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1px;
  color: rgba(36, 41, 38, 0.5);
}

@media (min-width: 768px) {
  .header__logo {
    max-width: 170px;
  }
}
@media (min-width: 1141px) {
  .header__logo {
    max-width: 212px;
  }
}

.header__logo-img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .header__logo-img {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .header__links {
    margin-left: auto;
  }
}
@media (min-width: 1141px) {
  .header__links {
    margin-left: 53px;
  }
}
@media (min-width: 1141px) and (max-width: 1220px) {
  .header__links {
    margin-left: auto;
  }
}

.header__links-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .header__links-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .header__links-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(104, 168, 145, 0.1);
    border-radius: 100px;
    height: 55px;
    padding: 0 8px;
  }
}
@media (min-width: 1141px) {
  .header__links-list {
    height: 60px;
    padding: 0 10px;
    padding-bottom: 2px;
  }
}

.header__link {
  display: block;
  color: rgba(53, 62, 58, 0.9);
  font-weight: 400;
  font-size: 14px;
  border-radius: 20px;
}
@media (hover: hover) {
  .header__link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__link:hover {
    color: rgb(255, 255, 255);
    background: rgb(24, 97, 77);
  }
}
@media (max-width: 767px) {
  .header__link {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .header__link {
    font-size: 16px;
    padding: 8px 12px;
  }
}
@media (min-width: 1141px) {
  .header__link {
    font-size: 18px;
    padding: 10px 20px;
  }
}
@media (min-width: 1141px) and (max-width: 1180px) {
  .header__link {
    padding: 10px 14px;
  }
}

.header__socials-wa {
  background: url("/assets/img/icons/wa.svg") no-repeat;
  background-size: 64% !important;
}

.header__socials-tg {
  background: url("/assets/img/icons/tg.svg") no-repeat;
}

.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__socials a {
  display: block;
  background-color: rgba(104, 168, 145, 0.1);
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-size: 70%;
  background-position: center;
}
@media (hover: hover) {
  .header__socials a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .header__socials a:hover {
    background-color: rgba(104, 168, 145, 0.2);
  }
}
@media (min-width: 768px) {
  .header__socials a {
    width: 55px;
  }
}
@media (min-width: 1141px) {
  .header__socials a {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .header__socials {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__socials {
    margin-left: auto;
    margin-right: 6px;
    gap: 6px;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .header__socials {
    margin-right: 0;
  }
}

.header__dop {
  width: 100%;
}
@media (max-width: 767px) {
  .header__dop {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__dop {
    max-width: 198px;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .header__dop {
    display: none;
  }
}
@media (min-width: 1141px) {
  .header__dop {
    max-width: 248px;
  }
}

.header__button {
  position: relative;
  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;
  max-width: 248px;
  width: 100%;
  border-radius: 100px;
  background: rgb(56, 152, 117);
  font-weight: 400;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
}
.header__button::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(24, 97, 77);
  border-radius: 50%;
  right: 42px;
}
@media (max-width: 306px) {
  .header__button::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .header__button::after {
    right: 24px;
  }
}
@media (min-width: 1141px) {
  .header__button::after {
    right: 31px;
  }
}
.header__button:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .header__button:hover {
    background: rgba(56, 152, 117, 0.8);
  }
  .header__button:hover::after {
    background: rgba(24, 97, 77, 0.7);
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .header__button:hover::after {
    right: 16px;
  }
}
@media (hover: hover) and (min-width: 1141px) {
  .header__button:hover::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .header__button {
    max-width: 306px;
    padding-right: 40px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .header__button {
    height: 55px;
    padding-right: 24px;
  }
}
@media (min-width: 1141px) {
  .header__button {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
    padding-right: 31px;
  }
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 0;
}
.header__contacts .header__text-opacity {
  margin-bottom: 10px;
}
.header__contacts .header__link {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .header__contacts {
    display: none;
  }
}

.header__address {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1px;
  margin-bottom: 12px;
}

.bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 50;
}
@media (min-width: 768px) {
  .bottom-menu {
    display: none;
  }
}

.bottom-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.bottom-menu__item_wa::before {
  -webkit-mask: url("/assets/img/icons/wa.svg") no-repeat;
  mask: url("/assets/img/icons/wa.svg") no-repeat;
  -webkit-mask-size: 28px 28px;
  mask-size: 28px 28px;
}

.bottom-menu__item_tg::before {
  -webkit-mask: url("/assets/img/icons/tg.svg") no-repeat;
  mask: url("/assets/img/icons/tg.svg") no-repeat;
  -webkit-mask-size: 28px 28px;
  mask-size: 28px 28px;
}

.bottom-menu__item_call::before {
  -webkit-mask: url("/assets/img/icons/call.svg") no-repeat;
  mask: url("/assets/img/icons/call.svg") no-repeat;
  -webkit-mask-size: 24px 24px;
  mask-size: 24px 24px;
}

.bottom-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  color: rgb(255, 255, 255);
  background: rgb(24, 97, 77);
  border-radius: 15px 15px 0 0;
  padding-bottom: 10px;
  height: 70px;
  margin-bottom: -2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bottom-menu__item:active {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.bottom-menu__item::before {
  content: "";
  position: absolute;
  width: 34px;
  aspect-ratio: 1/1;
  background: rgb(255, 255, 255);
  -webkit-mask-position: center;
  mask-position: center;
  top: calc(50% - 12px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.bottom-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 10px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  font-weight: 600;
  font-size: 14px;
  color: rgb(255, 255, 255);
  border-radius: 15px 15px 0 0;
}

.intro {
  margin-top: 114px;
}
@media (min-width: 768px) {
  .intro {
    margin-top: 120px;
  }
}
@media (min-width: 1141px) {
  .intro {
    margin-top: 150px;
  }
}

.intro__screens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) and (min-width: 570px) {
  .intro__screens {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .intro__screens {
    gap: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1141px) {
  .intro__screens {
    gap: 20px;
  }
}

.intro__screen-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .intro__screen-first {
    background: rgb(240, 246, 244);
    width: 50%;
    border-radius: 24px;
    padding: 36px 35px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .intro__screen-first {
    width: 65%;
  }
}
@media (min-width: 1141px) {
  .intro__screen-first {
    border-radius: 30px;
    padding: 46px 44px;
  }
}

.intro__title {
  display: block;
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .intro__title {
      font-size: clamp(20px, 7.2222222222vw, 32px) !important;
    }
  }
}
@media (max-width: 767px) and (max-width: 300px) {
  .intro__title {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 28px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .intro__title {
      font-size: clamp(26px, 2.8346456693vw, 36px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .intro__title {
    font-size: 36px;
  }
}
@media (min-width: 1141px) and (max-width: 1255px) {
  .intro__title {
    font-size: 32px;
  }
}
@media (max-width: 1255px) {
  .intro__title {
    text-wrap: balance;
  }
}

.intro__title-dop {
  display: block;
}

.intro__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 35px;
  padding-left: 42px;
  gap: 20px;
}
@media (min-width: 768px) {
  .intro__list {
    margin-bottom: 30px;
    margin-top: 31px;
    padding-left: 40px;
    gap: 17px;
  }
}
@media (min-width: 1141px) {
  .intro__list {
    margin-top: 39px;
    padding-left: 50px;
    gap: 22px;
  }
}

.intro__item-bold {
  font-weight: 600;
}

.intro__item_clear::before {
  background: url(/assets/img/icons/clear.svg);
}

.intro__item_reserve::before {
  background: url(/assets/img/icons/reserve.svg);
}

.intro__item_fast::before {
  background: url(/assets/img/icons/fast.svg);
}

.intro__item_dismantling::before {
  background: url(/assets/img/icons/dismantling.svg);
}

.intro__item {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
}
.intro__item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 2px));
  -ms-transform: translateY(calc(-50% + 2px));
  transform: translateY(calc(-50% + 2px));
  background-position: center center;
  background-size: contain;
  width: 30px;
  height: 30px;
  left: -42px;
}
@media (min-width: 768px) {
  .intro__item::before {
    -webkit-transform: translateY(calc(-50% + 1px));
    -ms-transform: translateY(calc(-50% + 1px));
    transform: translateY(calc(-50% + 1px));
    left: -40px;
  }
}
@media (min-width: 1141px) {
  .intro__item::before {
    left: -50px;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .intro__item {
      font-size: clamp(14px, 4.4444444444vw, 16px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .intro__item {
    font-size: 20px;
  }
}

.intro__button {
  position: relative;
  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;
  max-width: 248px;
  width: 100%;
  border-radius: 100px;
  background: rgb(56, 152, 117);
  font-weight: 400;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  background: rgb(24, 97, 77);
  margin-top: 47px;
}
.intro__button::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(24, 97, 77);
  border-radius: 50%;
  right: 42px;
}
@media (max-width: 306px) {
  .intro__button::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .intro__button::after {
    right: 24px;
  }
}
@media (min-width: 1141px) {
  .intro__button::after {
    right: 31px;
  }
}
.intro__button:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .intro__button:hover {
    background: rgba(56, 152, 117, 0.8);
  }
  .intro__button:hover::after {
    background: rgba(24, 97, 77, 0.7);
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .intro__button:hover::after {
    right: 16px;
  }
}
@media (hover: hover) and (min-width: 1141px) {
  .intro__button:hover::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .intro__button {
    max-width: 306px;
    padding-right: 40px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .intro__button {
    height: 55px;
    padding-right: 24px;
  }
}
@media (min-width: 1141px) {
  .intro__button {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
    padding-right: 31px;
  }
}
.intro__button::after {
  background: rgb(56, 152, 117);
}
@media (hover: hover) {
  .intro__button:hover {
    background: rgba(24, 97, 77, 0.8);
  }
  .intro__button:hover::after {
    background: rgba(56, 152, 117, 0.7);
    right: 20px;
  }
}
@media (max-width: 767px) {
  .intro__button {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .intro__button {
    margin-top: auto;
    margin-bottom: 19px;
    max-width: 270px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .intro__button {
    margin-bottom: 0;
  }
}
@media (min-width: 1141px) {
  .intro__button {
    margin-bottom: 24px;
    max-width: 306px;
  }
}

.intro__screen-second {
  margin-top: 40px;
}
@media (max-width: 767px) and (min-width: 480px) {
  .intro__screen-second {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) and (min-width: 570px) {
  .intro__screen-second {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .intro__screen-second {
    margin-top: 0;
    width: calc(50% - 10px);
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .intro__screen-second {
    width: calc(35% - 10px);
  }
}
@media (min-width: 1141px) {
  .intro__screen-second {
    width: calc(50% - 20px);
  }
}

.intro__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 26px;
}
@media (min-width: 1141px) {
  .intro__img {
    border-radius: 30px;
  }
}

.service {
  margin-top: 47px;
}
@media (min-width: 768px) {
  .service {
    margin-top: 60px;
  }
}
@media (min-width: 1141px) {
  .service {
    margin-top: 75px;
  }
}

.service__title {
  display: block;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.12px;
  font-size: 26px;
}
@media (max-width: 767px) {
  .service__title {
    line-height: 115%;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .service__title {
      font-size: clamp(18px, 7.2222222222vw, 32px) !important;
    }
  }
}
@media (min-width: 768px) {
  .service__title {
    font-size: 28px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .service__title {
      font-size: clamp(28px, 2.8346456693vw, 36px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .service__title {
    font-size: 36px;
  }
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 31px;
}
@media (max-width: 767px) and (min-width: 650px) {
  .service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-top: 41px;
    gap: 16px;
  }
}
@media (min-width: 1141px) {
  .service__list {
    margin-top: 52px;
    gap: 20px;
  }
}

.service__item-text {
  background: rgb(240, 246, 244);
  border-radius: 26px;
  padding: 20px;
  padding-bottom: 24px;
}
@media (hover: hover) {
  .service__item-text .service__text-img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .service__item-text:hover .service__text-img {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(24, 97, 77, 0.8));
    filter: drop-shadow(0px 0px 10px rgba(24, 97, 77, 0.8));
  }
}
@media (max-width: 767px) and (min-width: 650px) {
  .service__item-text {
    width: calc(65% - 10px);
  }
}
@media (min-width: 768px) {
  .service__item-text {
    padding: 40px;
    padding-right: 20px;
    width: calc(66.2% - 16px);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .service__item-text {
    width: calc(70% - 16px);
  }
}
@media (min-width: 1141px) {
  .service__item-text {
    border-radius: 30px;
    padding: 50px;
    padding-top: 49px;
    padding-right: 28px;
    width: calc(66.2% - 20px);
  }
}

.service__text-img {
  display: block;
  aspect-ratio: 1/1;
  width: 60px;
  margin-bottom: 23px;
}
@media (max-width: 767px) {
  @supports (width: clamp(1px, 1px, 1px)) {
    .service__text-img {
      width: clamp(45px, 16.6666666667vw, 60px) !important;
    }
  }
}
@media (min-width: 768px) {
  .service__text-img {
    display: inline;
    float: left;
    width: 48px;
    margin-top: 9px;
    margin-bottom: 12px;
    margin-right: 19px;
  }
  @supports (width: clamp(1px, 1px, 1px)) {
    .service__text-img {
      width: clamp(45px, 4.7244094488vw, 60px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .service__text-img {
    width: 60px;
    margin-top: 12px;
    margin-right: 24px;
  }
}

.service__text-top,
.service__text {
  line-height: 138%;
  font-weight: 400;
  font-size: 16px;
}
.service__text-top .bold,
.service__text .bold {
  letter-spacing: -0.07px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .service__text-top,
    .service__text {
      font-size: clamp(14px, 4.4444444444vw, 16px) !important;
    }
  }
}
@media (min-width: 768px) {
  .service__text-top,
  .service__text {
    font-size: 16px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .service__text-top,
    .service__text {
      font-size: clamp(15px, 1.5748031496vw, 20px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .service__text-top,
  .service__text {
    font-size: 20px;
  }
}
@media (min-width: 1141px) and (max-width: 1240px) {
  .service__text-top,
  .service__text {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .service__text-top {
    display: inline;
  }
}

.service__text {
  margin-top: 32px;
}
@media (min-width: 1141px) {
  .service__text {
    margin-top: 40px;
  }
}

.service__item-img {
  margin-top: 18px;
}
@media (max-width: 767px) and (min-width: 480px) {
  .service__item-img {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) and (min-width: 650px) {
  .service__item-img {
    width: 35%;
  }
}
@media (min-width: 768px) {
  .service__item-img {
    width: 33.8%;
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .service__item-img {
    width: 30%;
  }
}

.service__img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  width: 100%;
  height: 100%;
  border-radius: 26px;
}
@media (min-width: 1141px) {
  .service__img {
    border-radius: 30px;
  }
}

.price {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .price {
    margin-top: 64px;
  }
}
@media (min-width: 1141px) {
  .price {
    margin-top: 80px;
  }
}

.price__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 767px) and (min-width: 650px) {
  .price__blocks {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .price__blocks {
    gap: 16px;
  }
}
@media (min-width: 1141px) {
  .price__blocks {
    gap: 20px;
  }
}

.price__block {
  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;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 30px;
  padding-bottom: 38px;
  border-radius: 26px;
  width: 100%;
}
@media (max-width: 767px) and (min-width: 650px) {
  .price__block {
    width: calc(50% - 5px);
  }
}
@media (min-width: 768px) {
  .price__block {
    width: calc(50% - 8px);
    padding: 32px;
  }
}
@media (min-width: 1141px) {
  .price__block {
    border-radius: 30px;
    width: calc(50% - 10px);
    padding: 40px;
    padding-top: 39px;
  }
}

.price__block_red {
  background: rgba(168, 104, 104, 0.1);
  overflow: hidden;
}
.price__block_red .price__text-color {
  color: rgb(149, 39, 39);
}
.price__block_red .price__button {
  background: rgb(149, 39, 39);
}
.price__block_red .price__button::after {
  background: rgb(168, 104, 104);
}
@media (hover: hover) {
  .price__block_red .price__button:hover {
    background: rgba(149, 39, 39, 0.8);
  }
  .price__block_red .price__button:hover::after {
    background: rgba(168, 104, 104, 0.7);
  }
}
.price__block_red::before {
  top: 37%;
  right: -14.6%;
  aspect-ratio: 1/1;
  background: url("/assets/img/icons/wrench.svg") no-repeat;
}
@media (min-width: 768px) {
  .price__block_red::before {
    width: 232px;
  }
}
@media (min-width: 1141px) {
  .price__block_red::before {
    width: 290px;
  }
}
@media (hover: hover) {
  .price__block_red:hover::before {
    -webkit-transform: rotate(20deg) translateY(10%) translateX(-2%);
    -ms-transform: rotate(20deg) translateY(10%) translateX(-2%);
    transform: rotate(20deg) translateY(10%) translateX(-2%);
  }
}

.price__block_green {
  background: rgba(104, 168, 145, 0.1);
  overflow: hidden;
}
.price__block_green .price__text-color {
  color: rgb(24, 97, 77);
}
.price__block_green .price__button {
  background: rgb(24, 97, 77);
}
.price__block_green .price__button::after {
  background: rgb(104, 168, 145);
}
@media (hover: hover) {
  .price__block_green .price__button:hover {
    background: rgba(24, 97, 77, 0.8);
  }
  .price__block_green .price__button:hover::after {
    background: rgba(104, 168, 145, 0.7);
  }
}
.price__block_green::before {
  top: 33%;
  right: -14.6%;
  background: url("/assets/img/icons/gear.svg") no-repeat;
}
@media (min-width: 768px) {
  .price__block_green::before {
    width: 232px;
    height: 227px;
  }
}
@media (min-width: 1141px) {
  .price__block_green::before {
    width: 291px;
    height: 284px;
  }
}
@media (hover: hover) {
  .price__block_green:hover::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.price__block_red::before,
.price__block_green::before {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
}

.price__block_img {
  padding: 0;
}
@media (max-width: 767px) {
  .price__block_img {
    display: none;
  }
}

.price__block-title {
  display: block;
  font-weight: 700;
  line-height: 110%;
  font-size: 22px;
  padding-left: 4px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .price__block-title {
      font-size: clamp(18px, 6.1111111111vw, 24px) !important;
    }
  }
}
@media (min-width: 768px) {
  .price__block-title {
    font-size: 22px;
    padding-left: 0;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .price__block-title {
      font-size: clamp(22px, 2.2047244094vw, 28px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .price__block-title {
    font-size: 28px;
  }
}

.price__text {
  font-weight: 400;
  font-size: 16px;
  margin-top: 18px;
  padding-left: 4px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .price__text {
      font-size: clamp(14px, 4.4444444444vw, 18px) !important;
    }
  }
}
@media (min-width: 768px) {
  .price__text {
    font-size: 16px;
    margin-top: 21px;
    padding-left: 0;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .price__text {
      font-size: clamp(16px, 1.5748031496vw, 20px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .price__text {
    font-size: 20px;
    margin-top: 27px;
  }
}

.price__value {
  font-weight: 600;
  font-size: 20px;
  margin-top: 31px;
  margin-bottom: 37px;
  padding-left: 4px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .price__value {
      font-size: clamp(16px, 5.5555555556vw, 22px) !important;
    }
  }
}
@media (min-width: 768px) {
  .price__value {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 33px;
    padding-left: 0;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .price__value {
      font-size: clamp(18px, 1.7322834646vw, 22px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .price__value {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 42px;
  }
}

.price__button {
  position: relative;
  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;
  max-width: 248px;
  width: 100%;
  border-radius: 100px;
  background: rgb(56, 152, 117);
  font-weight: 400;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  margin-top: auto;
  margin-bottom: 0;
}
.price__button::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(24, 97, 77);
  border-radius: 50%;
  right: 42px;
}
@media (max-width: 306px) {
  .price__button::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .price__button::after {
    right: 24px;
  }
}
@media (min-width: 1141px) {
  .price__button::after {
    right: 31px;
  }
}
.price__button:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .price__button:hover {
    background: rgba(56, 152, 117, 0.8);
  }
  .price__button:hover::after {
    background: rgba(24, 97, 77, 0.7);
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .price__button:hover::after {
    right: 16px;
  }
}
@media (hover: hover) and (min-width: 1141px) {
  .price__button:hover::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .price__button {
    max-width: 306px;
    padding-right: 40px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .price__button {
    height: 55px;
    padding-right: 24px;
  }
}
@media (min-width: 1141px) {
  .price__button {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
    padding-right: 31px;
  }
}
@media (max-width: 767px) {
  .price__button::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .price__button {
    max-width: 300px;
  }
}
@media (min-width: 1141px) {
  .price__button {
    max-width: 348px;
  }
}

.price__img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 26px;
}
@media (min-width: 1141px) {
  .price__img {
    border-radius: 30px;
  }
}

.recording-form {
  margin-top: 50px;
}
.recording-form .container {
  border-radius: 24px;
  padding: 38px 15px;
  padding-bottom: 40px;
  background: url("/assets/img/recording-form/form-line.svg") no-repeat, -webkit-gradient(linear, left top, right top, from(#18614D), to(#68A891));
  background: url("/assets/img/recording-form/form-line.svg") no-repeat, linear-gradient(90deg, #18614D 0%, #68A891 100%);
}
@media (min-width: 768px) {
  .recording-form .container {
    background-position: left 25.5% top 36%;
    padding: 46px;
    padding-left: 48px;
    padding-right: 80px;
  }
}
@media (min-width: 768px) and (max-width: 930px) {
  .recording-form .container {
    padding-left: 38px;
    padding-right: 40px;
  }
}
@media (min-width: 1141px) {
  .recording-form .container {
    border-radius: 30px;
    padding: 58px;
    padding-left: 60px;
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .recording-form {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .recording-form {
    margin-top: 59px;
  }
}
@media (min-width: 1141px) {
  .recording-form {
    margin-top: 74px;
  }
}
@media (max-width: 1264px) {
  .recording-form {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.recording-form__screens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .recording-form__screens {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8px;
  }
}
@media (min-width: 1141px) {
  .recording-form__screens {
    gap: 10px;
  }
}

.recording-form__screen-text {
  letter-spacing: -0.2px;
}
@media (min-width: 768px) {
  .recording-form__screen-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.recording-form__text-color {
  color: rgb(255, 245, 104);
}

.recording-form__title {
  display: block;
  font-weight: 700;
  line-height: 112%;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 24px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .recording-form__title {
      font-size: clamp(20px, 6.6666666667vw, 26px) !important;
    }
  }
}
@media (max-width: 767px) and (min-width: 450px) {
  .recording-form__title {
    text-wrap: balance;
  }
  .recording-form__title br {
    display: none;
  }
}
@media (min-width: 768px) {
  .recording-form__title {
    font-size: 28px;
    text-align: left;
    margin-top: 18px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .recording-form__title {
      font-size: clamp(23px, 2.8346456693vw, 36px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .recording-form__title {
    font-size: 36px;
    margin-top: 23px;
  }
}

.recording-form__text {
  font-weight: 400;
  color: rgb(255, 255, 255);
  letter-spacing: 0px;
  text-align: center;
  font-size: 16px;
  margin-top: 12px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .recording-form__text {
      font-size: clamp(15px, 4.4444444444vw, 17px) !important;
    }
  }
}
@media (min-width: 768px) {
  .recording-form__text {
    text-align: left;
    text-wrap: balance;
    font-size: 17px;
    margin-top: 31px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .recording-form__text {
      font-size: clamp(17px, 1.7322834646vw, 22px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .recording-form__text {
    text-wrap: wrap;
    font-size: 22px;
    margin-top: 39px;
  }
}

.recording-form__screen-form {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .recording-form__screen-form {
    margin-top: 0;
    width: 306px;
  }
}

.recording-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .recording-form__form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.recording-form__input-wrap {
  position: relative;
}

.recording-form__input {
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recording-form__input::-webkit-input-placeholder {
  opacity: 0;
}
.recording-form__input::-moz-placeholder {
  opacity: 0;
}
.recording-form__input:-ms-input-placeholder {
  opacity: 0;
}
.recording-form__input::-ms-input-placeholder {
  opacity: 0;
}
.recording-form__input::placeholder {
  opacity: 0;
}
.recording-form__input.just-validate-error-field {
  border: 1px solid rgba(255, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
  box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
}
.recording-form__input.input-filled {
  color: rgba(0, 0, 0, 0.9);
}
.recording-form__input ~ label {
  position: absolute;
  pointer-events: none;
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 1px));
  -ms-transform: translateY(calc(-50% - 1px));
  transform: translateY(calc(-50% - 1px));
  background: rgb(255, 255, 255);
  padding: 3px 8px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .recording-form__input ~ label {
    font-size: 16px;
  }
}
.recording-form__input:focus {
  border: 1px solid rgb(255, 245, 104);
  -webkit-box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
  box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
}
.recording-form__input:focus ~ label {
  top: 3px;
  left: 22px;
}
.recording-form__input:not(.just-validate-error-field) ~ label.input-filled {
  opacity: 0;
}
.recording-form__input ~ label.input-filled {
  top: 3px;
  left: 22px;
}
@media (min-width: 768px) {
  .recording-form__input {
    font-size: 16px;
  }
}

.recording-form__politika {
  width: 100%;
}

.recording-form__submit {
  position: relative;
  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;
  width: 100%;
  border-radius: 100px;
  background: rgb(255, 245, 104);
  font-weight: 400;
  color: rgb(53, 62, 58);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.recording-form__submit:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .recording-form__submit:hover {
    background: rgba(255, 245, 104, 0.9);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
    box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
  }
}
@media (min-width: 768px) {
  .recording-form__submit {
    height: 55px;
  }
}
@media (min-width: 1141px) {
  .recording-form__submit {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
  }
}

.before-after {
  margin-top: 98px;
}
@media (min-width: 768px) {
  .before-after {
    margin-top: 108px;
  }
}
@media (min-width: 1141px) {
  .before-after {
    margin-top: 135px;
  }
}

.before-after__title {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 767px) {
  .before-after__title {
    line-height: 115%;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .before-after__title {
      font-size: clamp(24px, 7.2222222222vw, 28px) !important;
    }
  }
}
@media (min-width: 768px) {
  .before-after__title {
    font-size: 28px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .before-after__title {
      font-size: clamp(28px, 2.8346456693vw, 36px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .before-after__title {
    font-size: 36px;
  }
}

.before-after__subtitle {
  display: block;
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .before-after__subtitle {
    line-height: 117%;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .before-after__subtitle {
      font-size: clamp(15px, 4.4444444444vw, 18px) !important;
    }
  }
}
@media (min-width: 768px) {
  .before-after__subtitle {
    font-size: 17px;
    margin-top: 26px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .before-after__subtitle {
      font-size: clamp(17px, 1.7322834646vw, 22px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .before-after__subtitle {
    font-size: 22px;
    margin-top: 33px;
  }
}

.before-after__slider-wrapper {
  position: relative;
}

.before-after__arrows-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .before-after__arrows-container {
    display: none;
  }
}

.before-after__swiper-prev,
.before-after__swiper-next {
  position: relative;
  margin: 0;
  opacity: 1 !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(24, 97, 77);
  border-radius: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.before-after__swiper-prev:active,
.before-after__swiper-next:active {
  background: rgba(24, 97, 77, 0.5);
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.before-after__swiper-prev::after,
.before-after__swiper-next::after {
  position: absolute;
  font-size: 0px;
  width: 8px;
  height: 18px;
  background: url("/assets/img/icons/toggler-arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.before-after__swiper-next::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.before-after__slides-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .before-after__slides-list {
    margin-top: 48px;
    gap: 16px 0;
  }
}
@media (min-width: 1141px) {
  .before-after__slides-list {
    margin-top: 60px;
    gap: 20px 0;
  }
}
@media (min-width: 1200px) {
  .before-after__slides-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 49.5px !important;
  }
}

@media (min-width: 1200px) {
  .before-after__slide.hide {
    display: none;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .before-after__slide {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .before-after__slide {
    min-width: 360px;
    width: calc(33.33% - 33px);
  }
}

.before-after__slide-text {
  display: block;
  text-align: center;
  font-weight: 700;
  color: rgb(53, 62, 58);
  font-size: 18px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .before-after__slide-text {
      font-size: clamp(16px, 5vw, 20px) !important;
    }
  }
}
@media (min-width: 768px) {
  .before-after__slide-text {
    font-size: 16px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .before-after__slide-text {
      font-size: clamp(16px, 1.4173228346vw, 18px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .before-after__slide-text {
    font-size: 18px;
  }
}

.before-after__images-container {
  margin-top: 12px;
  aspect-ratio: 336/400;
  border-radius: 30px;
}
.before-after__images-container img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .before-after__images-container {
    border-radius: 24px;
    aspect-ratio: 380/400;
    margin-top: 16px;
  }
}
@media (min-width: 1141px) {
  .before-after__images-container {
    margin-top: 20px;
  }
}

.before-after__btn-more {
  position: relative;
  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;
  max-width: 280px;
  width: 100%;
  border: 1px solid rgb(24, 97, 77);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0);
  font-weight: 400;
  color: rgb(53, 62, 58);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  margin-left: auto;
  margin-right: auto;
}
.before-after__btn-more::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(56, 152, 117);
  border-radius: 50%;
  right: 42px;
}
@media (max-width: 306px) {
  .before-after__btn-more::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .before-after__btn-more::after {
    right: 60px;
  }
}
.before-after__btn-more:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .before-after__btn-more:hover {
    background: rgb(56, 152, 117);
    color: rgb(255, 255, 255);
    border: 1px solid rgba(24, 97, 77, 0);
  }
  .before-after__btn-more:hover::after {
    background: rgba(56, 152, 117, 0.7);
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .before-after__btn-more:hover::after {
    right: 16px;
  }
}
@media (hover: hover) and (min-width: 1141px) {
  .before-after__btn-more:hover::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .before-after__btn-more {
    max-width: 306px;
    padding-right: 40px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .before-after__btn-more {
    height: 55px;
    padding-right: 35px;
  }
}
@media (min-width: 1141px) {
  .before-after__btn-more {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
  }
}
@media (hover: hover) {
  .before-after__btn-more:hover {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .before-after__btn-more:hover {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .before-after__btn-more {
    display: none;
  }
}
@media (min-width: 768px) {
  .before-after__btn-more {
    margin-top: 32px;
  }
}
@media (min-width: 1141px) {
  .before-after__btn-more {
    margin-top: 40px;
  }
}

.steps {
  margin-top: 49px;
}
@media (min-width: 768px) {
  .steps {
    margin-top: 76px;
  }
}
@media (min-width: 1141px) {
  .steps {
    margin-top: 95px;
  }
}

.steps__title {
  display: block;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.1px;
  font-size: 26px;
}
@media (max-width: 767px) {
  .steps__title {
    line-height: 110%;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .steps__title {
      font-size: clamp(24px, 7.2222222222vw, 28px) !important;
    }
  }
}
@media (min-width: 768px) {
  .steps__title {
    font-size: 28px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .steps__title {
      font-size: clamp(28px, 2.8346456693vw, 36px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .steps__title {
    font-size: 36px;
  }
}

.steps__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 31px;
  gap: 11.6px;
}
@media (max-width: 767px) and (min-width: 602px) {
  .steps__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .steps__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 16px;
    margin-top: 41px;
  }
}
@media (min-width: 1141px) {
  .steps__list {
    gap: 20px;
    margin-top: 52px;
  }
}

.steps__step {
  position: relative;
  background: rgba(104, 168, 145, 0.1);
  border-radius: 24px;
  padding: 30px;
  padding-top: 53px;
  padding-bottom: 29px;
}
.steps__step::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  background: rgb(24, 97, 77);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .steps__step::after {
    top: 32px;
    right: 32px;
  }
}
@media (hover: hover) {
  .steps__step {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .steps__step:hover {
    background: rgba(104, 168, 145, 0.2);
  }
}
@media (max-width: 767px) and (min-width: 602px) {
  .steps__step {
    width: calc(50% - 6px);
  }
}
@media (min-width: 768px) {
  .steps__step {
    width: calc(25% - 12px);
    padding: 28px;
    padding-top: 84px;
  }
}
@media (min-width: 1141px) {
  .steps__step {
    border-radius: 30px;
    width: calc(25% - 15px);
    padding: 36px;
    padding-top: 105px;
  }
}

.steps__stage {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: rgba(53, 62, 58, 0.6);
}

.steps__text {
  display: block;
  font-weight: 600;
  line-height: 120%;
  font-size: 20px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .steps__text {
      font-size: clamp(17px, 5.5555555556vw, 20px) !important;
    }
  }
}
@media (min-width: 768px) {
  .steps__text {
    font-size: 17px;
    margin-top: 20px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .steps__text {
      font-size: clamp(17px, 1.7322834646vw, 22px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .steps__text {
    font-size: 22px;
    margin-top: 25px;
  }
}

.steps__step_color {
  background: linear-gradient(103.34deg, #18614D 9.59%, #68A891 97.28%);
  background-size: 100%;
  padding: 28px;
  padding-top: 49px;
  padding-bottom: 38px;
}
.steps__step_color .steps__text {
  position: relative;
}
.steps__step_color .steps__text::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -57px;
  width: 31px;
  height: 38px;
  background: url("/assets/img/icons/warning-yellow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 768px) {
  .steps__step_color .steps__text::before {
    left: -54.3px;
    top: calc(50% + 3.5px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) and (max-width: 850px) {
  .steps__step_color .steps__text::before {
    left: -43px;
  }
}
.steps__step_color .steps__text {
  font-weight: 700;
  line-height: 122%;
  color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .steps__step_color .steps__text {
      font-size: clamp(17px, 5.5555555556vw, 20px) !important;
    }
  }
}
@media (max-width: 767px) and (min-width: 602px) {
  .steps__step_color .steps__text {
    text-wrap: balance;
  }
  .steps__step_color .steps__text br {
    display: none;
  }
}
@media (min-width: 768px) {
  .steps__step_color .steps__text {
    font-size: 19px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .steps__step_color .steps__text {
      font-size: clamp(19px, 1.8897637795vw, 24px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .steps__step_color .steps__text {
    font-size: 24px;
  }
}
.steps__step_color .dop_color {
  color: rgb(255, 245, 104);
}
.steps__step_color::after {
  display: none;
}
@media (hover: hover) {
  .steps__step_color {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .steps__step_color:hover {
    background: linear-gradient(103.34deg, #18614D 9.59%, #68A891 97.28%);
    background-size: 180%;
  }
}
@media (min-width: 768px) {
  .steps__step_color {
    width: calc(50% - 8px);
    padding: 40px 81px;
    padding-bottom: 62px;
  }
}
@media (min-width: 768px) and (max-width: 850px) {
  .steps__step_color {
    padding: 40px 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1141px) {
  .steps__step_color {
    width: calc(50% - 10px);
    padding: 50px 102px;
    padding-bottom: 78px;
  }
}

.steps__step_img {
  overflow: hidden;
  padding: 0;
}
.steps__step_img::after {
  display: none;
}
@media (max-width: 767px) {
  .steps__step_img {
    display: none;
  }
}

.steps__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-clear {
  margin-top: 33px;
}
@media (min-width: 768px) {
  .form-clear {
    margin-top: 64px;
  }
}
@media (min-width: 1141px) {
  .form-clear {
    margin-top: 80px;
  }
}

.screens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 51px;
}
@media (min-width: 768px) {
  .screens {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1141px) {
  .screens {
    gap: 40px;
  }
}

.form-clear__screen-first {
  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;
}
@media (max-width: 767px) {
  .form-clear__screen-first {
    height: 327px;
  }
}
@media (max-width: 767px) and (min-width: 500px) {
  .form-clear__screen-first {
    height: 400px;
  }
}
@media (min-width: 768px) {
  .form-clear__screen-first {
    width: calc(59.7% - 16px);
  }
}
@media (min-width: 768px) and (max-width: 980px) {
  .form-clear__screen-first {
    width: calc(50% - 16px);
  }
}
@media (min-width: 1141px) {
  .form-clear__screen-first {
    width: calc(59.7% - 20px);
  }
}

.form-clear__bg-image {
  display: block;
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .form-clear__bg-image {
    max-width: 340px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) and (min-width: 500px) {
  .form-clear__bg-image {
    max-width: 520px;
  }
}
@media (min-width: 768px) {
  .form-clear__bg-image {
    height: 90.9%;
  }
}
@media (min-width: 1141px) {
  .form-clear__bg-image {
    border-radius: 30px;
  }
}

.form-clear__text {
  display: block;
  text-align: center;
  margin-top: auto;
  margin-bottom: 0;
  background: rgb(24, 97, 77);
  -webkit-box-shadow: 0px 0px 75px 2px rgba(24, 97, 77, 0.5);
  box-shadow: 0px 0px 75px 2px rgba(24, 97, 77, 0.5);
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  line-height: 130%;
  color: rgb(255, 255, 255);
  width: 94%;
  font-size: 18px;
  padding: 24px 17px;
  padding-top: 22px;
  border-radius: 24px;
  z-index: 1;
}
.form-clear__text .dop_color {
  color: rgb(255, 245, 104);
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .form-clear__text {
      font-size: clamp(16px, 5vw, 20px) !important;
    }
  }
}
@media (min-width: 768px) {
  .form-clear__text {
    width: 89%;
    font-size: 19px;
    padding: 28px 62px;
    padding-bottom: 33px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .form-clear__text {
      font-size: clamp(19px, 1.8897637795vw, 24px) !important;
    }
  }
}
@media (min-width: 768px) and (max-width: 940px) {
  .form-clear__text {
    text-wrap: balance;
    padding: 18px 28px;
    padding-bottom: 23px;
  }
}
@media (min-width: 1141px) {
  .form-clear__text {
    font-size: 24px;
    border-radius: 30px;
    padding: 36px 78px;
    padding-bottom: 42px;
  }
}

.form-clear__screen-second {
  background: rgb(24, 97, 77);
  border-radius: 24px;
  padding: 37px 16px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .form-clear__screen-second {
    width: calc(40.3% - 16px);
    padding: 29px 40px;
    padding-bottom: 58px;
  }
}
@media (min-width: 768px) and (max-width: 980px) {
  .form-clear__screen-second {
    width: calc(50% - 16px);
  }
}
@media (min-width: 1141px) {
  .form-clear__screen-second {
    width: calc(40.3% - 20px);
    border-radius: 30px;
    padding: 37px 51px;
    padding-bottom: 63px;
  }
}

.form-clear__block-title {
  display: block;
  text-align: center;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 113%;
  letter-spacing: -0.1px;
  font-size: 24px;
}
.form-clear__block-title .dop_color {
  color: rgb(255, 245, 104);
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .form-clear__block-title {
      font-size: clamp(20px, 6.6666666667vw, 26px) !important;
    }
  }
}
@media (min-width: 768px) {
  .form-clear__block-title {
    font-size: 25px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .form-clear__block-title {
      font-size: clamp(25px, 2.5196850394vw, 32px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .form-clear__block-title {
    font-size: 32px;
  }
}

.form-clear__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 23px;
  gap: 19px 10px;
}
@media (max-width: 767px) {
  .form-clear__list-items {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) and (max-width: 315px) {
  .form-clear__list-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .form-clear__list-items {
    gap: 30px 16px;
    margin-top: 23px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 1141px) {
  .form-clear__list-items {
    gap: 38px 20px;
    margin-top: 29px;
  }
}

.form-clear__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  padding-left: 42px;
  width: calc(50% - 5px);
}
.form-clear__item::before {
  content: "";
  position: absolute;
  background: url("/assets/img/icons/checkbox-select.svg") no-repeat;
  background-size: contain;
  background-position: center;
  top: calc(50% + 2px);
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
@media (min-width: 768px) {
  .form-clear__item::before {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1141px) {
  .form-clear__item::before {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .form-clear__item {
      font-size: clamp(15px, 4.4444444444vw, 17px) !important;
    }
  }
}
@media (max-width: 767px) and (max-width: 315px) {
  .form-clear__item {
    width: 100%;
  }
  .form-clear__item br {
    display: none;
  }
}
@media (min-width: 768px) {
  .form-clear__item {
    font-size: 16px;
    width: calc(50% - 8px);
    padding-left: 32px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .form-clear__item {
      font-size: clamp(15px, 1.4173228346vw, 18px) !important;
    }
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .form-clear__item {
    font-size: 15px;
  }
}
@media (min-width: 1141px) {
  .form-clear__item {
    font-size: 18px;
    width: calc(50% - 10px);
    padding-left: 41px;
  }
}

.form-clear__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 306px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 41px;
  gap: 10px;
}
@media (min-width: 768px) {
  .form-clear__form {
    margin-top: 44px;
  }
}
@media (min-width: 1141px) {
  .form-clear__form {
    margin-top: 56px;
    gap: 10px;
  }
}

.form-clear__politika {
  position: relative;
}
@media (min-width: 768px) {
  .form-clear__politika .politika__content {
    position: absolute;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.form-clear__input-wrap {
  position: relative;
}

.form-clear__input {
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.form-clear__input::-webkit-input-placeholder {
  opacity: 0;
}
.form-clear__input::-moz-placeholder {
  opacity: 0;
}
.form-clear__input:-ms-input-placeholder {
  opacity: 0;
}
.form-clear__input::-ms-input-placeholder {
  opacity: 0;
}
.form-clear__input::placeholder {
  opacity: 0;
}
.form-clear__input.just-validate-error-field {
  border: 1px solid rgba(255, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
  box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
}
.form-clear__input.input-filled {
  color: rgba(0, 0, 0, 0.9);
}
.form-clear__input ~ label {
  position: absolute;
  pointer-events: none;
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 1px));
  -ms-transform: translateY(calc(-50% - 1px));
  transform: translateY(calc(-50% - 1px));
  background: rgb(255, 255, 255);
  padding: 3px 8px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .form-clear__input ~ label {
    font-size: 16px;
  }
}
.form-clear__input:focus {
  border: 1px solid rgb(255, 245, 104);
  -webkit-box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
  box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
}
.form-clear__input:focus ~ label {
  top: 3px;
  left: 22px;
}
.form-clear__input:not(.just-validate-error-field) ~ label.input-filled {
  opacity: 0;
}
.form-clear__input ~ label.input-filled {
  top: 3px;
  left: 22px;
}
@media (min-width: 768px) {
  .form-clear__input {
    font-size: 16px;
  }
}

.form-clear__submit {
  position: relative;
  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;
  width: 100%;
  border-radius: 100px;
  background: rgb(255, 245, 104);
  font-weight: 400;
  color: rgb(53, 62, 58);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.form-clear__submit:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .form-clear__submit:hover {
    background: rgba(255, 245, 104, 0.9);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
    box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
  }
}
@media (min-width: 768px) {
  .form-clear__submit {
    height: 55px;
  }
}
@media (min-width: 1141px) {
  .form-clear__submit {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
  }
}

.urgent-repair {
  margin-top: 50px;
}
.urgent-repair .container {
  position: relative;
  border-radius: 24px;
  padding: 37px 15px;
  padding-bottom: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#18614D), to(#68A891));
  background: linear-gradient(90deg, #18614D 0%, #68A891 100%);
}
@media (min-width: 768px) {
  .urgent-repair .container {
    background: url("/assets/img/recording-form/form-line.svg") no-repeat, -webkit-gradient(linear, left top, right top, from(#18614D), to(#68A891));
    background: url("/assets/img/recording-form/form-line.svg") no-repeat, linear-gradient(90deg, #18614D 0%, #68A891 100%);
    background-position: left 25.5% top 36%;
    padding: 56px 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1141px) {
  .urgent-repair .container {
    border-radius: 30px;
    padding: 70px 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .urgent-repair {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  .urgent-repair {
    margin-top: 64px;
  }
}
@media (min-width: 1141px) {
  .urgent-repair {
    margin-top: 80px;
  }
}
@media (max-width: 1264px) {
  .urgent-repair {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.urgent-repair__title {
  display: block;
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-size: 24px;
  text-align: center;
  line-height: 113%;
}
.urgent-repair__title .dop_color {
  color: rgb(255, 245, 104);
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .urgent-repair__title {
      font-size: clamp(22px, 6.6666666667vw, 26px) !important;
    }
  }
}
@media (min-width: 768px) {
  .urgent-repair__title {
    letter-spacing: -0.13px;
    font-size: 28px;
    text-align: left;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .urgent-repair__title {
      font-size: clamp(28px, 2.8346456693vw, 36px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .urgent-repair__title {
    font-size: 36px;
  }
}

.urgent-repair__text {
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-size: 15px;
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .urgent-repair__text {
      font-size: clamp(14px, 4.1666666667vw, 16px) !important;
    }
  }
}
@media (max-width: 767px) and (min-width: 400px) {
  .urgent-repair__text {
    text-wrap: balance;
  }
  .urgent-repair__text br {
    display: none;
  }
}
@media (min-width: 768px) {
  .urgent-repair__text {
    letter-spacing: 0.2px;
    text-align: left;
    width: 60%;
    font-size: 17px;
    margin-top: 24px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .urgent-repair__text {
      font-size: clamp(16px, 1.7322834646vw, 22px) !important;
    }
  }
}
@media (min-width: 768px) and (max-width: 830px) {
  .urgent-repair__text {
    width: 57%;
  }
}
@media (min-width: 1141px) {
  .urgent-repair__text {
    font-size: 22px;
    margin-top: 30px;
  }
}

.urgent-repair__img {
  display: block;
  max-width: 100%;
  margin-top: 27px;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .urgent-repair__img {
    aspect-ratio: 300/166;
    padding-left: 3px;
    padding-right: 3px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .urgent-repair__img {
    margin-top: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 35.5%;
    height: 77.7%;
    width: 100%;
    right: 32px;
    max-height: 230px;
  }
}
@media (min-width: 1141px) {
  .urgent-repair__img {
    max-height: none;
    right: 40px;
    border-radius: 30px;
  }
}
@media (min-width: 1141px) and (max-width: 1220px) {
  .urgent-repair__img {
    max-width: 34%;
  }
}

.urgent-repair__button {
  position: relative;
  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;
  max-width: 248px;
  width: 100%;
  border-radius: 100px;
  background: rgb(56, 152, 117);
  font-weight: 400;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  background: rgb(255, 245, 104);
  color: rgb(53, 62, 58);
  padding-right: 0;
  margin-top: 27px;
}
.urgent-repair__button::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(24, 97, 77);
  border-radius: 50%;
  right: 42px;
}
@media (max-width: 306px) {
  .urgent-repair__button::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .urgent-repair__button::after {
    right: 24px;
  }
}
@media (min-width: 1141px) {
  .urgent-repair__button::after {
    right: 31px;
  }
}
.urgent-repair__button:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .urgent-repair__button:hover {
    background: rgba(56, 152, 117, 0.8);
  }
  .urgent-repair__button:hover::after {
    background: rgba(24, 97, 77, 0.7);
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .urgent-repair__button:hover::after {
    right: 16px;
  }
}
@media (hover: hover) and (min-width: 1141px) {
  .urgent-repair__button:hover::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .urgent-repair__button {
    max-width: 306px;
    padding-right: 40px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .urgent-repair__button {
    height: 55px;
    padding-right: 24px;
  }
}
@media (min-width: 1141px) {
  .urgent-repair__button {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
    padding-right: 31px;
  }
}
.urgent-repair__button::after {
  display: none;
}
@media (hover: hover) {
  .urgent-repair__button:hover {
    background: rgba(255, 245, 104, 0.85);
  }
}
@media (max-width: 767px) {
  .urgent-repair__button {
    padding: 0;
    padding-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .urgent-repair__button {
    max-width: 244px;
    margin-top: 40px;
    padding: 0;
    padding-bottom: 4px;
  }
}
@media (min-width: 1141px) {
  .urgent-repair__button {
    max-width: 306px;
    margin-top: 51px;
  }
}

.consequences {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .consequences {
    margin-top: 60px;
  }
}
@media (min-width: 1141px) {
  .consequences {
    margin-top: 76px;
  }
}

.consequences__title {
  display: block;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 115%;
  font-size: 26px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .consequences__title {
      font-size: clamp(24px, 7.2222222222vw, 28px) !important;
    }
  }
}
@media (max-width: 767px) and (min-width: 400px) {
  .consequences__title br {
    display: none;
  }
}
@media (min-width: 768px) {
  .consequences__title {
    font-size: 28px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .consequences__title {
      font-size: clamp(28px, 2.8346456693vw, 36px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .consequences__title {
    font-size: 36px;
  }
}

.consequences__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 31px;
  gap: 20px;
}
@media (max-width: 767px) {
  .consequences__list .consequences__item:nth-child(1) .consequences__column_text .consequences__text {
    font-size: 14px;
    line-height: 144%;
  }
}
@media (max-width: 767px) {
  .consequences__list .consequences__item:nth-child(2) .consequences__columns {
    padding-bottom: 39px;
  }
}
@media (max-width: 767px) {
  .consequences__list .consequences__item:nth-child(3) .consequences__columns {
    padding-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .consequences__list .consequences__item:nth-child(4) .consequences__columns {
    padding-bottom: 28px;
  }
}
@media (min-width: 768px) {
  .consequences__list {
    margin-top: 49px;
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .consequences__list {
    gap: 20px;
  }
}
@media (min-width: 1141px) {
  .consequences__list {
    margin-top: 63px;
    gap: 20px;
  }
}

.consequences__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .consequences__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .consequences__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 1141px) {
  .consequences__item {
    gap: 20px;
  }
}

.consequences__image {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  margin-top: 12px;
}
.consequences__image img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 950px) {
  .consequences__image img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .consequences__image {
    aspect-ratio: 336/180;
  }
}
@media (min-width: 768px) {
  .consequences__image {
    margin-top: 0;
    width: 33.9%;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .consequences__image {
    width: 100%;
  }
}
@media (min-width: 1141px) {
  .consequences__image {
    border-radius: 30px;
  }
}

.consequences__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgba(104, 168, 145, 0.1);
  border-radius: 24px;
  padding: 29px 22px;
  padding-right: 12px;
  padding-bottom: 27px;
}
.consequences__columns .consequences__column:nth-child(1) {
  position: relative;
}
@media (min-width: 768px) {
  .consequences__columns .consequences__column:nth-child(1)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: -2px;
    background: rgba(53, 62, 58, 0.2);
  }
}
@media (hover: hover) {
  .consequences__columns {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .consequences__columns:hover {
    background: rgba(104, 168, 145, 0.2);
  }
}
@media (min-width: 768px) {
  .consequences__columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: calc(66.1% - 16px);
    padding: 40px 32px;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .consequences__columns {
    width: 100%;
  }
}
@media (min-width: 1141px) {
  .consequences__columns {
    width: calc(66.1% - 20px);
    border-radius: 30px;
    padding: 50px 40px;
  }
}

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

.consequences__column_title .consequences__text {
  color: rgba(53, 62, 58, 0.8);
  line-height: 120%;
  font-size: 18px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .consequences__column_title .consequences__text {
      font-size: clamp(16px, 5vw, 20px) !important;
    }
  }
}
@media (min-width: 768px) {
  .consequences__column_title .consequences__text {
    padding-bottom: 3px;
    font-size: 18px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .consequences__column_title .consequences__text {
      font-size: clamp(18px, 1.5748031496vw, 20px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .consequences__column_title .consequences__text {
    padding-bottom: 5px;
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .consequences__column_title {
    width: 25%;
    padding-right: 10px;
  }
}

.consequences__column_text {
  margin-top: 28px;
}
.consequences__column_text .consequences__text {
  color: rgba(53, 62, 58, 0.8);
  padding-bottom: 3px;
  font-size: 16px;
  line-height: 138%;
}
@media (max-width: 767px) and (min-width: 380px) {
  .consequences__column_text .consequences__text br {
    display: none;
    text-wrap: balance;
  }
}
@media (min-width: 768px) {
  .consequences__column_text {
    margin-top: 0;
    width: 75%;
    padding-left: 25px;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .consequences__column_text br {
    display: none;
    text-wrap: balance;
  }
}
@media (min-width: 1141px) {
  .consequences__column_text {
    padding-left: 32px;
  }
}

.consequences__text .bold {
  letter-spacing: -0.1px;
  color: rgba(53, 62, 58, 0.8);
}

.maintenance-form {
  margin-top: 50px;
}
.maintenance-form .container {
  background: -webkit-gradient(linear, left top, right top, from(#18614D), to(#68A891));
  background: linear-gradient(90deg, #18614D 0%, #68A891 100%);
  position: relative;
  border-radius: 24px;
  padding: 37px 15px;
  padding-bottom: 42px;
}
@media (max-width: 320px) {
  .maintenance-form .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .maintenance-form .container {
    background: rgb(24, 97, 77);
    padding: 40px;
    padding-right: 32px;
  }
}
@media (min-width: 1141px) {
  .maintenance-form .container {
    border-radius: 30px;
    padding: 49px 50px;
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .maintenance-form {
    margin-top: 63px;
  }
}
@media (min-width: 1141px) {
  .maintenance-form {
    margin-top: 79px;
  }
}
@media (max-width: 1264px) {
  .maintenance-form {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.maintenance-form__title {
  display: block;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.08px;
  line-height: 113%;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .maintenance-form__title {
      font-size: clamp(22px, 6.6666666667vw, 26px) !important;
    }
  }
}
@media (min-width: 768px) {
  .maintenance-form__title {
    text-align: left;
    width: 59%;
    font-size: 30px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .maintenance-form__title {
      font-size: clamp(30px, 2.9921259843vw, 38px) !important;
    }
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .maintenance-form__title {
    width: 100%;
    text-wrap: balance;
  }
}
@media (min-width: 1141px) {
  .maintenance-form__title {
    font-size: 38px;
  }
}

.maintenance-form__text {
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 16px;
  margin-top: 14px;
  line-height: 120%;
}
@media (max-width: 767px) {
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .maintenance-form__text {
      font-size: clamp(15px, 4.4444444444vw, 18px) !important;
    }
  }
}
@media (min-width: 768px) {
  .maintenance-form__text {
    letter-spacing: -0.28px;
    text-align: left;
    font-size: 17px;
    margin-top: 19px;
    width: 59%;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .maintenance-form__text {
      font-size: clamp(16px, 1.7322834646vw, 22px) !important;
    }
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .maintenance-form__text {
    width: 100%;
  }
}
@media (min-width: 1141px) {
  .maintenance-form__text {
    font-size: 22px;
    margin-top: 24px;
  }
}

.maintenance-form__img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  border-radius: 24px;
  width: 35.5%;
}
@media (max-width: 900px) {
  .maintenance-form__img {
    display: none;
  }
}
@media (min-width: 768px) {
  .maintenance-form__img {
    height: calc(100% - 215px);
    right: 32px;
    top: 32px;
  }
}
@media (min-width: 1141px) {
  .maintenance-form__img {
    height: calc(100% - 196px);
    right: 40px;
    top: 40px;
  }
}

.maintenance-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  gap: 10px;
}
@media (max-width: 767px) {
  .maintenance-form__form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .maintenance-form__form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 48px;
  }
}
@media (min-width: 1141px) {
  .maintenance-form__form {
    margin-top: 60px;
  }
}

.maintenance-form__input-wrap {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .maintenance-form__input-wrap {
    width: calc(33.3% - 10px);
  }
}
@media (min-width: 1116px) {
  .maintenance-form__input-wrap {
    min-width: 250px;
    width: calc(27.5% - 10px);
  }
}

.maintenance-form__input {
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.maintenance-form__input::-webkit-input-placeholder {
  opacity: 0;
}
.maintenance-form__input::-moz-placeholder {
  opacity: 0;
}
.maintenance-form__input:-ms-input-placeholder {
  opacity: 0;
}
.maintenance-form__input::-ms-input-placeholder {
  opacity: 0;
}
.maintenance-form__input::placeholder {
  opacity: 0;
}
.maintenance-form__input.just-validate-error-field {
  border: 1px solid rgba(255, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
  box-shadow: inset 0px 0px 15px rgba(255, 0, 0, 0.2);
}
.maintenance-form__input.input-filled {
  color: rgba(0, 0, 0, 0.9);
}
.maintenance-form__input ~ label {
  position: absolute;
  pointer-events: none;
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 1px));
  -ms-transform: translateY(calc(-50% - 1px));
  transform: translateY(calc(-50% - 1px));
  background: rgb(255, 255, 255);
  padding: 3px 8px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .maintenance-form__input ~ label {
    font-size: 16px;
  }
}
.maintenance-form__input:focus {
  border: 1px solid rgb(255, 245, 104);
  -webkit-box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
  box-shadow: 0px 5px 15px rgba(36, 36, 35, 0.4);
}
.maintenance-form__input:focus ~ label {
  top: 3px;
  left: 22px;
}
.maintenance-form__input:not(.just-validate-error-field) ~ label.input-filled {
  opacity: 0;
}
.maintenance-form__input ~ label.input-filled {
  top: 3px;
  left: 22px;
}
@media (min-width: 768px) {
  .maintenance-form__input {
    font-size: 16px;
  }
}

.maintenance-form__politika {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 900px) {
  .maintenance-form__politika .checkbox_politika, .maintenance-form__politika .politika__link {
    font-size: 10px;
  }
}
.maintenance-form__politika .checkbox_politika::after {
  left: 4px;
}
@media (min-width: 768px) {
  .maintenance-form__politika .checkbox_politika::after {
    left: 4.5px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .maintenance-form__politika .checkbox_politika::before {
    width: 15px;
    height: 15px;
  }
  .maintenance-form__politika .checkbox_politika::after {
    left: 3.5px;
  }
}
.maintenance-form__politika .checkbox__input:checked + .checbox_label::after {
  height: 9px;
  width: 11px;
}
@media (min-width: 1116px) {
  .maintenance-form__politika .politika__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 45%;
  }
}
@media (min-width: 1116px) {
  .maintenance-form__politika .checbox_label, .maintenance-form__politika .politika__link {
    font-size: 10px;
  }
}
@media (min-width: 1116px) {
  .maintenance-form__politika .checbox_label {
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .maintenance-form__politika {
    width: calc(33.33% - 10px);
    max-width: 330px;
  }
}
@media (min-width: 1116px) {
  .maintenance-form__politika {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 500px;
    max-width: 612px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(46% - 10px);
  }
}

.maintenance-form__submit {
  position: relative;
  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;
  width: 100%;
  border-radius: 100px;
  background: rgb(255, 245, 104);
  font-weight: 400;
  color: rgb(53, 62, 58);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  width: 100%;
}
.maintenance-form__submit:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .maintenance-form__submit:hover {
    background: rgba(255, 245, 104, 0.9);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
    box-shadow: 0px 0px 15px rgba(255, 245, 104, 0.6);
  }
}
@media (min-width: 768px) {
  .maintenance-form__submit {
    height: 55px;
  }
}
@media (min-width: 1141px) {
  .maintenance-form__submit {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .maintenance-form__submit {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .maintenance-form__submit {
    margin-bottom: 8px;
  }
}
@media (min-width: 1116px) {
  .maintenance-form__submit {
    margin-bottom: 0;
    max-width: 306px;
    width: 55%;
  }
}
@media (min-width: 1240px) {
  .maintenance-form__submit {
    width: 60%;
  }
}

.footer {
  margin-top: 50px;
  margin-bottom: 80px;
}
.footer .container {
  background: rgba(104, 168, 145, 0.2);
  border-radius: 24px;
  padding-top: 43px;
  padding-bottom: 39px;
}
@media (min-width: 768px) {
  .footer .container {
    border-radius: 48px;
    padding: 48px;
  }
}
@media (min-width: 1141px) {
  .footer .container {
    border-radius: 60px;
    padding: 60px;
  }
}
@media (min-width: 768px) {
  .footer {
    margin-top: 64px;
    margin-bottom: 44px;
  }
}
@media (min-width: 1141px) {
  .footer {
    margin-top: 80px;
    margin-bottom: 55px;
  }
}
@media (max-width: 1264px) {
  .footer {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.footer__logo-mobile {
  display: block;
  max-width: 187px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .footer__logo-mobile {
    display: none;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1141px) {
  .footer__list {
    gap: 0;
  }
}

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

.footer__item_main {
  width: 100%;
}
@media (min-width: 1141px) {
  .footer__item_main .footer__text {
    margin-bottom: 4px;
  }
}
.footer__item_main .footer__link {
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__item_main {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .footer__item_main {
    width: calc(27% - 20px);
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .footer__item_main {
    width: calc(36% - 20px);
  }
}
@media (min-width: 1141px) {
  .footer__item_main {
    width: 32.6%;
  }
}

@media (max-width: 767px) {
  .footer__item_menu {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer__item_menu {
    width: calc(23% - 20px);
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .footer__item_menu {
    width: calc(32% - 20px);
  }
}
@media (min-width: 1141px) {
  .footer__item_menu {
    width: 18.4%;
  }
}

.footer__item_contacts {
  width: 100%;
}
@media (max-width: 767px) {
  .footer__item_contacts {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (min-width: 768px) {
  .footer__item_contacts {
    width: calc(25% - 20px);
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .footer__item_contacts {
    width: calc(32% - 20px);
  }
}
@media (min-width: 1141px) {
  .footer__item_contacts {
    width: 25.8%;
  }
}

@media (max-width: 767px) {
  .footer__item_dop {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer__item_dop {
    width: calc(25% - 20px);
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .footer__item_dop {
    display: none;
  }
}
@media (min-width: 1141px) {
  .footer__item_dop {
    width: 23.2%;
  }
}

.footer__logo {
  width: 100%;
}
@media (max-width: 767px) {
  .footer__logo {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer__logo {
    margin-bottom: 24px;
    max-width: 170px;
  }
}
@media (min-width: 1141px) {
  .footer__logo {
    margin-bottom: 30px;
    max-width: 212px;
  }
}

.footer__text, .footer__link, .footer__address, .footer__sargos {
  font-weight: 400;
  font-size: 14px;
  color: rgba(53, 62, 58, 0.7);
  font-style: normal;
}
@media (max-width: 767px) {
  .footer__text, .footer__link, .footer__address, .footer__sargos {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.footer__text {
  margin-bottom: 4px;
}

.footer__sargos {
  margin-top: auto;
}
@media (max-width: 767px) {
  .footer__sargos {
    margin-top: 56px;
  }
}
@media (min-width: 768px) {
  .footer__sargos {
    margin-bottom: 4px;
  }
}

.footer__link {
  font-size: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  margin-bottom: 14px;
}
.footer__link:hover {
  color: rgb(24, 97, 77);
}
@media (min-width: 768px) {
  .footer__link {
    margin-bottom: 12px;
  }
}
@media (min-width: 1141px) {
  .footer__link {
    margin-bottom: 14px;
  }
}

.footer__item-title {
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 767px) {
  .footer__item-title {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
  }
}
@media (min-width: 768px) {
  .footer__item-title {
    margin-bottom: 28px;
  }
}
@media (min-width: 1141px) {
  .footer__item-title {
    margin-bottom: 35px;
  }
}

.footer__address {
  font-size: 16px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer__address {
    margin-bottom: 12px;
  }
}
@media (min-width: 1141px) {
  .footer__address {
    margin-bottom: 14px;
  }
}

.footer__dop-text {
  display: block;
  font-weight: 600;
}
@media (min-width: 768px) {
  .footer__dop-text {
    font-size: 19px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1141px) {
  .footer__dop-text {
    font-size: 24px;
    margin-top: -3px;
    margin-bottom: 43px;
  }
}

.footer__button {
  position: relative;
  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;
  max-width: 248px;
  width: 100%;
  border-radius: 100px;
  background: rgb(56, 152, 117);
  font-weight: 400;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  height: 60px;
  padding-bottom: 4px;
  max-width: 192px;
  margin-top: auto;
  margin-bottom: 0;
}
.footer__button::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgb(24, 97, 77);
  border-radius: 50%;
  right: 42px;
}
@media (max-width: 306px) {
  .footer__button::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .footer__button::after {
    right: 24px;
  }
}
@media (min-width: 1141px) {
  .footer__button::after {
    right: 31px;
  }
}
.footer__button:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
@media (hover: hover) {
  .footer__button:hover {
    background: rgba(56, 152, 117, 0.8);
  }
  .footer__button:hover::after {
    background: rgba(24, 97, 77, 0.7);
    right: 20px;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .footer__button:hover::after {
    right: 16px;
  }
}
@media (hover: hover) and (min-width: 1141px) {
  .footer__button:hover::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .footer__button {
    max-width: 306px;
    padding-right: 40px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .footer__button {
    height: 55px;
    padding-right: 24px;
  }
}
@media (min-width: 1141px) {
  .footer__button {
    font-size: 18px;
    height: 60px;
    padding-bottom: 5px;
    padding-right: 31px;
  }
}

.page-404 {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 114px;
  min-height: 60vh;
}
.page-404 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .page-404 .container {
    max-width: 800px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-self: center;
  }
}
@media (min-width: 768px) {
  .page-404 {
    margin-top: 120px;
    min-height: calc(100vh - 400px);
  }
}
@media (min-width: 1141px) {
  .page-404 {
    margin-top: 150px;
  }
}

.page-404__title {
  font-weight: 700;
  text-align: center;
  font-size: 26px;
  text-wrap: balance;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .page-404__title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  @supports (font-size: clamp(1px, 1px, 1px)) {
    .page-404__title {
      font-size: clamp(34px, 3.3070866142vw, 42px) !important;
    }
  }
}
@media (min-width: 1141px) {
  .page-404__title {
    font-size: 42px;
    margin-bottom: 20px;
  }
}

.page-404__text {
  text-align: left;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-404__text {
    font-size: 18px;
  }
}

.page-404__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 10px 0;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-404__list {
    gap: 5px;
    margin-top: 8px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1141px) {
  .page-404__list {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.page-404__item {
  position: relative;
  font-size: 16px;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .page-404__item {
    padding-left: 20px;
  }
  .page-404__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgb(56, 152, 117);
    width: 10px;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
}
@media (min-width: 768px) {
  .page-404__item {
    text-align: center;
    font-size: 18px;
  }
}

.page-404__link {
  position: relative;
  color: rgb(56, 152, 117);
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: underline !important;
}
@media (min-width: 768px) {
  .page-404__link {
    text-decoration: none !important;
  }
  .page-404__link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: rgb(56, 152, 117);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .page-404__link:hover::before {
    opacity: 0;
  }
}