@charset "UTF-8";
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.popup {
  background: transparent;
}

.form__error {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: normal;
  color: var(--color-rd);
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
  border: 1px solid var(--color-ble);
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

.checkbox {
  position: relative;
}

.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__input:focus-visible + .checkbox__label:before {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.checkbox__input:checked + .checkbox__label:before {
  background: #000;
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  gap: 10px;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #a7a9ac;
  background: var(--color-whte);
}

.checkbox__text {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.select {
  min-width: 0;
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.875rem;
  padding: 0 0.9375rem;
  gap: 0.625rem;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: calc(100% - 0.0625rem);
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.select__scroll::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.select__scroll::-webkit-scrollbar-track {
  background: var(--color-ble-opacity);
}

.select__scroll::-webkit-scrollbar-thumb {
  background: var(--color-ble);
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #eee;
}

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

.select--show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0px 10px 0px;
}

._select-tag {
  cursor: pointer;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 130px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: var(--color-whte);
  padding: 2.5625rem;
  width: 100%;
  max-width: 957px;
}

.popup__content .popup__form {
  max-width: 623px;
  margin: auto;
}

.popup__content {
  position: relative;
}

.popup__content .popup__form .form__item-textarea textarea {
  height: 11.6875rem !important;
}

.popup__content .popup__form .form__constructor-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup__content .popup__form .form__title {
  margin-bottom: 2.75rem;
}

.popup__content .popup__form .form__inner {
  display: block;
}

.popup__content .popup__form .form__items {
  gap: 1.5rem;
}

.popup__close {
  position: absolute;
  top: -6.5rem;
  right: 0;
  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;
  --size: 60px;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  width: var(--size);
  height: var(--size);
  background: var(--color-ble)!important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

.popup__close::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-whte);
  --size: 40px;
  width: var(--size);
  height: var(--size);
}

.popup--two .popup__content {
  min-height: 28.5625rem;
  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;
}

.popup__text {
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.popup__slider {
  height: 34.375rem;
}

.popup__swiper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__slide {
  position: relative;
}

.popup__slide .popup__slide-img {
  height: 25rem;
}

.popup__slide.swiper-slide-active .popup__slide-img {
  height: 34.375rem;
}

.popup__slide-img {
  -webkit-transition: height 0.3s ease-in 0s;
  transition: height 0.3s ease-in 0s;
}

.popup__slide-img img,
.popup__slide-img picture {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup__slide-info {
  font-size: 1rem;
  line-height: normal;
  font-weight: 400;
  padding: 1.5625rem 2.6875rem;
  background: var(--color-ble-opacity);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.popup__slide-info span {
  text-decoration: underline;
  font-weight: 700;
}

.popup__constructor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  margin-top: 2.5rem;
}

.popup__arrow {
  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;
  --size: 60px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  background: #2ad4fc;
}

.popup__arrow::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-whte);
  --size: 28px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
}

.popup__pagging {
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.3125rem;
}

.popup--gallery {
  overflow: hidden;
}

.popup--gallery .popup__content {
  max-width: 70.875rem;
  background: transparent;
  padding: 0rem;
}

.comment__column-bottom::-webkit-scrollbar,
.company__row::-webkit-scrollbar,
.direction__items::-webkit-scrollbar,
.direction__sort::-webkit-scrollbar,
.form--two .form__fieldset .form__items .form__item .form__item-textarea textarea::-webkit-scrollbar,
.catalog::-webkit-scrollbar {
  display: none;
}

cite {
  font-style: normal;
  display: block;
}

#map {
  width: 100%;
  height: 43.4375rem;
}

.form__item-input {
  position: relative;
}

.form__item-btn {
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.form__close {
  position: absolute;
  top: 0;
  right: 0;
  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;
  --size: 37px;
  width: var(--size);
  height: var(--size);
  background: var(--color-ble);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.form__close::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-whte);
  --size: 27px;
  width: var(--size);
  height: var(--size);
}

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

.form--two .form__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 21.875rem 1fr;
  grid-template-columns: 21.875rem 1fr;
  gap: 5.3125rem;
}

.form--two .form__fieldset .form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.625rem;
}

.form--two .form__fieldset .form__items .form__item .form__item-label {
  font-size: 1.25rem;
  margin-bottom: 0.8125rem;
}

.form--two .form__fieldset .form__items .form__item .form__item-textarea {
  position: relative;
  margin-bottom: 4.0625rem;
}

.form--two .form__fieldset .form__items .form__item .form__item-textarea textarea {
  height: 19rem;
  overflow: auto;
}

.form--two .form__fieldset .form__items .form__item .form__item-file {
  position: relative;
  margin-bottom: 3.875rem;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.form--two .form__fieldset .form__items .form__item .form__item-file input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0rem;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
}

.form--two .form__fieldset .form__items .form__item .form__item-attention {
  padding: 1.625rem 1.8125rem 1.5rem;
  background: rgba(32, 100, 177, 0.1);
  margin-bottom: 2.25rem;
}

.form--two .form__fieldset .form__items .form__item .form__item-moderation {
  font-size: 1rem;
  font-weight: 300;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1875rem;
}

.form--two .form__fieldset .form__items .form__item .form__item-moderation::before {
  content: "";
  mask: var(--icon) center center/cover no-repeat;
  -webkit-mask: var(--icon) center center/cover no-repeat;
  background: var(--color-ble);
  width: 0.9375rem;
  height: 2.125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.625rem;
          flex: 0 0 0.625rem;
}

.form .form__item-input input,
.form--two .form__fieldset .form__items .form__item .form__item-input input {
  height: 60px;
  width: 100%;
}

.form--two .form__fieldset .form__constructor-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox {
  margin-bottom: 0rem;
}

.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: rgba(17, 17, 19, 0.6);
}

.form a,
.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__text a {
  text-decoration: underline;
  color: var(--color-primary);
}

.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__label {
  gap: 0.8125rem;
}

.form .checkbox__label::after,
.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__label::after {
  content: "";
  position: absolute;
  top: 0.28125rem;
  left: 0.2875rem;
  --size: 11px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--color-ble);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__input:focus-visible + .checkbox__label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form .checkbox__input:checked + .checkbox__label:before,
.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__input:checked + .checkbox__label:before {
  background: var(--color-whte);
}

.form .checkbox__input:checked + .checkbox__label::after,
.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__input:checked + .checkbox__label::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.form ._form-error .checkbox__label::before,
.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox._form-error .checkbox__label::before {
  content: "";
  border: 0.0625rem solid var(--color-rd);
}

.form ._form-error .checkbox__text,
.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox._form-error .checkbox__text {
  color: var(--color-rd);
}

.form ._form-error .checkbox__text a,
.form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox._form-error .checkbox__text a {
  color: var(--color-rd);
}

.form--two .form__fieldset .form__constructor-inner .form__constructor-btn,
.btn-blue {
  padding: 1.125rem 2.1875rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  background: var(--color-ble);
  color: var(--color-whte);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  white-space: nowrap;
  text-decoration: none!important;
}

.chart {
  padding-top: 14.0625rem;
  padding-bottom: 6.8125rem;
}

.chart__title {
  margin-bottom: 3.6875rem;
}

.chart__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.9375rem;
}

.chart__link {
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.fslightbox-container {
  background: var(--color-ble-opacity) !important;
}

.label-upload {
  padding: 1.125rem 1.6875rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--color-whte);
  background: #b6b6b6;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.file-loader__row {
  flex-shrink: 0;
}

.file-loader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 1.875rem;
  width: 100%;
}

.file-loader__error {
  position: absolute;
  top: calc(100% + 0.3125rem);
  font-size: 0.75rem;
  color: var(--color-rd);
}

.file-loader__files {
    width: 100%;
}

.file-loader__result {
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  position: relative;
  width: 100%;
}

.file-loader__result::before {
  content: "";
  background: url("/local/templates/spb/img/icons/33.svg") center center/cover no-repeat;
  --size: 10px;
  width: var(--size);
  height: var(--size);
  flex-shrink: 0;
}

.file-loader__result .close {
  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;
  cursor: pointer;
}

.file-loader__result .close::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url("/local/templates/spb/img/icons/32.svg") center center/cover no-repeat;
  --size: 20px;
  width: var(--size);
  height: var(--size);
}

.file-loader__result p {
  max-width: 80%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 12px;
  display: -webkit-box;
}

.form__item--date {
  position: relative;
}

.form__item--date .form__item-icon {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  pointer-events: none;
}

.form__item--date .form__item-icon::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-ble);
  --size: 20px;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  pointer-events: none;
}

.footer {
  position: relative;
}

.footer.footer--two .top-footer__inner {
  margin-bottom: 2.1875rem;
}

.footer.footer--two .top-footer__block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer.footer--two .top-footer__logo img,
.footer.footer--two .top-footer__logo picture {
  height: 4.6875rem;
}

.top-footer {
  padding: 4.625rem 0rem 3.0625rem;
  background: var(--color-whte);
}

.top-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.625rem;
  margin-bottom: 1.25rem;
}

.top-footer__logo img,
.top-footer__logo picture {
  height: 50px;
}

.top-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.1875rem;
  width: 100%;
}

.top-footer__link {
  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;
  --size: 54px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  border-radius: 50%;
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.top-footer__link::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-whte);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  --size: 29px;
  width: var(--size);
  height: var(--size);
}

.top-footer__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5625rem;
}

.top-footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.top-footer__phone span {
  color: var(--color);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  -webkit-transform: translate(0.1875rem, 0rem);
      -ms-transform: translate(0.1875rem, 0rem);
          transform: translate(0.1875rem, 0rem);
}

.top-footer__phone::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color);
  --size: 26px;
  width: var(--size);
  height: var(--size);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
}

.top-footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.1875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.top-footer__phones, .top-footer__block address, .info-top__links  {
  min-height: 90px;
  margin-bottom: 20px;
}

.top-footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: normal;
  position: relative;
  padding-left: 1.9375rem;
}

.top-footer__address::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-ble);
  --size: 24px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  position: absolute;
  top: 0rem;
  left: 0.125rem;
}

.top-footer__address span {
  font-weight: 600;
}

.footer-btns {
  display: none;
}

.top-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  padding-left: 0.3125rem;
}

.info-top__links {
  margin-bottom: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.info-top__link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  text-align: right;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  text-underline-offset: 4px;
}

.info-top__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
}

.info-top__search {
  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;
}

.info-top__search::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-primary);
  --size: 27px;
  width: var(--size);
  height: var(--size);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.info-top__page::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-primary);
  width: 2.5625rem;
  height: 1.625rem;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.info-top__languages {
  padding-left: 0.5625rem;
}

.info-top__languag {
  font-size: 1.25rem;
  font-weight: 400;
}

.info-top__languag._active {
  font-weight: 700;
  color: var(--color-ble);
}

.company-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}

.company-top__page {
  font-size: 0.75rem;
  line-height: normal;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  min-width: 8.125rem;
}

.company-top__page::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-ble);
  --size: 20px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
}

.company-top__text {
  font-size: 0.75rem;
  line-height: normal;
  padding-left: 9.375rem;
}

.company-top__text a {
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.company-top__group {
  font-size: 0.75rem;
  line-height: normal;
}

.top-bottom {
  padding: 3.375rem 0rem 4.0625rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.375rem;
}

.top-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #f3f3f3;
  z-index: -1;
}

.top-bottom__img img,
.top-bottom__img picture {
  width: 16.875rem;
  height: 6.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-bottom__text {
  font-size: 1rem;
  line-height: normal;
  max-width: 55rem;
}

.news {
  padding-bottom: 5.5625rem;
}

.news.news--two {
  padding-bottom: 0;
  margin-bottom: 9.5625rem;
}

.news__title {
  margin-bottom: 3.125rem;
}

.news__inner {
  position: relative;
}

.news__inner .news__slider {
  overflow: visible;
}

.news__swiper {
  gap: 0rem !important;
}

.news__slide {
  position: relative;
  height: 35.125rem;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 2;
  max-width: 35.125rem;
  width: 100%;
}

.news__slide._active .news__slide-text {
  margin-bottom: 1.3125rem;
}

.news__slide-date {
  position: absolute;
  top: 0.5625rem;
  left: -0.5rem;
  z-index: 2;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: var(--color-whte);
  text-align: center;
  width: 9.5625rem;
  height: 3.9375rem;
  padding: 0.9375rem 1.4375rem;
}

.news__slide-date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  mask: var(--icon) center center/cover no-repeat;
  -webkit-mask: var(--icon) center center/cover no-repeat;
  background: var(--color);
  z-index: -1;
  width: 100%;
  height: 100%;
}

.news__slide-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.news__slide-img img,
.news__slide-img picture {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__slide-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.875rem 3.75rem 1.9375rem 1.4375rem;
  background: rgba(21, 57, 107, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--color-whte);
}

.news__slide-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.3125rem;
}

.news__slide-text {
  font-size: 1rem;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__slide-link {
  font-size: 1.125rem;
  line-height: normal;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.news__constructor {
  position: absolute;
  top: 0;
  right: 0;
}

.news__arrow::before {
  content: "";
  background: var(--color-primary);
}

.news__pagination .swiper-pagination-bullet {
  border: 0.25rem solid var(--color-primary);
}

.news__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  border: 0.25rem solid var(--color-ble);
  background: var(--color-ble) !important;
}

.info {
  padding-bottom: 4.9375rem;
}

.info__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48rem auto;
  grid-template-columns: 48rem auto;
  gap: 6.375rem;
}

.info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info__title {
  margin-bottom: 1.375rem;
}

.info__text {
  margin-bottom: 2.8125rem;
  font-size: 1rem;
  line-height: 125%;
}

.info__link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  padding: 1.125rem 2rem;
  background: var(--color-ble);
  color: var(--color-whte);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  text-decoration: none!important;
}

.info__img img,
.info__img picture {
  width: 100%;
  height: auto;
}

.company__row {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.375rem, 1fr));
  gap: 1.875rem;
}

.company__column-title {
  font-size: 4.0625rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.6875rem;
}

.company__column-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
}

.review {
  margin-bottom: 9.5625rem;
}

.review__inner {
  position: relative;
}

.review__inner .review__slider {
  overflow: visible;
}

.review__title {
  margin-bottom: 5.0625rem;
}

.review__slide {
  padding: 1.125rem 1.25rem 1.4375rem 1.4375rem;
  border: 0.125rem solid rgba(217, 217, 217, 0.65);
  background: var(--color-whte);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 35.125rem;
}

.review__slide-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 1.125rem;
}

.review__slide-text {
  color: var(--color-gry);
  font-size: 1rem;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review__constructor {
  position: absolute;
  top: 0;
  right: 0;
}

.review__arrow::before {
  content: "";
  background: var(--color-primary);
}

.review__pagination .swiper-pagination-bullet {
  border: 0.25rem solid var(--color-primary);
}

.review__pagination .swiper-pagination-bullet-active-main {
  border: 0.25rem solid var(--color-ble);
}

.top-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  margin-bottom: 1.625rem;
}

.top-review__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
}

.top-review__img img,
.top-review__img picture {
  width: 4.4375rem;
  height: 3.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.bottom-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}

.bottom-review__link {
  color: var(--color-gry);
  font-size: 1.125rem;
  line-height: normal;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  text-underline-offset: 4px;
  outline: 0;
}

.bottom-review__date {
  color: var(--color-gry);
  font-size: 1.125rem;
  line-height: normal;
}

.record {
  background: #f3f3f3;
  position: relative;
  margin-top: 140px;
}

.record::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 1.5625rem;
  z-index: 1;
  background: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(122, 121, 143)), color-stop(50%, rgba(255, 255, 255, 0)));
  background: linear-gradient(360deg, rgb(122, 121, 143) 0%, rgba(255, 255, 255, 0) 50%);
  opacity: 0.1;
}

.record.record--two .record__inner {
  padding: 5.3125rem 36.25rem 7.3125rem 9.0625rem;
}

.record__inner {
  position: relative;
  padding: 5.3125rem 37.5rem 7.3125rem 9.0625rem;
}

.record__title {
  margin-bottom: 3.125rem;
}

.record__form {
  position: relative;
  z-index: 2;
}

.record__img {
  position: absolute;
  bottom: 0;
  right: 7.1875rem;
}

.record__img img,
.record__img picture {
  --size: 441px;
  width: var(--size);
  height: var(--size);
  -o-object-fit: cover;
     object-fit: cover;
}

.form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6875rem;
}

.form__item-label {
  font-size: 1.25rem;
  line-height: normal;
  margin-bottom: 0.8125rem;
}

.form__item-checkboxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__item-checkbox {
  margin-bottom: 0rem !important;
}

.form__item-checkbox .checkbox__input:checked + .checkbox__label {
  background: var(--color-ble);
  color: var(--color-whte);
}

.form__item-checkbox .checkbox__label {
  padding: 1.125rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: rgba(var(--color-blck--rgb), 0.3);
  min-width: 11.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  border: 0.0625rem solid var(--color-ble);
  background: var(--color-whte);
}

.form__item-checkbox .checkbox__label::before {
  content: "";
  display: none;
}

.form__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__item-select {
  width: 23.25rem;
}

.form__item-select .select__body .select__content {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
}

.form__item-select .select__body .select__title {
  border: 0.0625rem solid var(--color-ble);
  border-radius: 0rem;
}

.form__item-select .select__body .select__options {
  padding: 1.0625rem 1.125rem;
  background: rgba(145, 188, 229, 0.9);
}

.form__item-select .select__body .select__options .select__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8125rem;
  z-index: 3;
}

.form__item-select .select__body .select__options .select__scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--color-ble-opacity);
  z-index: -1;
}

.form__item-select .select__body .select__options .select__option {
  font-size: 1.25rem;
  text-decoration: underline;
  color: var(--color-primary);
  background: transparent;
  padding: 0rem;
  text-underline-offset: 4px;
  position: relative;
}

.form__item-select .select__body .select__options .select__option:last-child {
  padding-bottom: 0.3125rem;
}

.select__option[hidden] {
    display: block;
    font-weight: 700;
}

.form__item-select .select__body .select__value {
  height: 3.75rem;
  padding: 0rem 1.875rem 0rem 1.125rem;
}

.form__item-select .select__body .select__value::after {
  content: "";
  background: url("/local/templates/spb/img/icons/04.svg") center center/contain no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.9375rem;
          flex: 0 0 0.9375rem;
}

.form__item-btn {
  padding: 1.125rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: var(--color-whte);
  background: var(--color-ble);
}

.consultation-direction__showmore {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: var(--color-ble);
  color: var(--color-whte);
  padding: 1.125rem 2rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.consultation-direction__content {
  max-width: 80.3125rem;
}

.consultation-direction__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 1.8125rem;
}

.consultation-direction__item {
  border: 0.125rem solid rgba(217, 217, 217, 0.65);
  background: var(--color-whte);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  padding: 4.375rem 1.25rem 1.875rem;
  position: relative;
}

.consultation-direction__banner {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: var(--color-whte);
  position: absolute;
  z-index: 1;
  padding: 0.9375rem 2.4375rem;
  margin-bottom: 1.5625rem;
  left: -0.625rem;
  top: 0.625rem;
}

.consultation-direction__banner::before {
  content: "";
  mask: var(--icon) center center/cover no-repeat;
  -webkit-mask: var(--icon) center center/cover no-repeat;
  background: var(--color-grn);
  width: 10.1875rem;
  height: 3.9375rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.consultation-direction__inner {
  max-width: 95.8%;
}

.consultation-direction__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.3125rem;
}

.consultation-direction__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 125%;
  margin-bottom: 2.5rem;
  color: var(--color-primary);
  word-break: break-word;
}

.consultation-direction__text p,
.consultation-direction__text ul,
.consultation-direction__text ol {
    margin-bottom: 10px;
}

.consultation-direction__text ul,
.consultation-direction__text ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  padding-left: 0.3125rem;
}

.consultation-direction__text ol {
  list-style-position: inside;
  padding: 0;
}

.consultation-direction__text ul li {
  font-size: 1rem;
  line-height: normal;
  padding-left: 1.125rem;
  position: relative;
  color: var(--color-primary);
}

.consultation-direction__text ul li::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: -0.25rem;
  --size: 8px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  border-radius: 50%;
  background: var(--color-ble);
}

.consultation-direction__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.625rem;
}

.consultation-direction__price {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: normal;
}

.consultation-direction__price.consultation-direction__price--old {
  color: rgba(78, 78, 78, 0.51);
}

.consultation-direction__link {
  padding: 1.125rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: var(--color-whte);
  background: var(--color-ble);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.mistake__inner {
  position: relative;
  min-height: 79.5625rem;
  padding: 28.3125rem 9.0625rem 6.25rem;
}

.mistake__title {
  font-size: 2.1875rem;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 2.6875rem;
}

.mistake__link {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: normal;
  padding: 1.6875rem 1.625rem 1.75rem;
  background: var(--color-ble);
  color: var(--color-whte);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.mistake__img {
  bottom: 21.875rem;
  right: 8.1875rem;
}

.mistake__img img,
.mistake__img picture {
  width: 54.375rem;
  height: 40.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.question {
  padding-bottom: 9.375rem;
}

.question__title {
  margin-bottom: 2.5625rem;
}

.question__inner {
  max-width: 80.3125rem;
}

.question__spollers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8125rem;
  margin-bottom: 2.25rem;
}

.question__spollers .question__spoller[open] {
  border: 0.125rem solid var(--color-ble);
}

.question__spoller {
  padding: 3rem 3.125rem 3.1875rem 4.25rem;
  border: 0.125rem solid rgba(217, 217, 217, 0.65);
  background: var(--color-whte);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  min-height: 9.375rem;
}

.question__spoller-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  list-style: none;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

.question__spoller-title::marker,
.question__spoller-title::-webkit-details-marker {
  display: none;
}

.question__spoller-title::after {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-primary);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  --size: 37px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.question__spoller-title._spoller-active::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  background: var(--color-ble);
}

.question__spoller-body {
  padding-top: 1.375rem;
  max-width: 61.8125rem;
}

.question__spoller-body ul {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  padding-left: 0.3125rem;
}

.question__spoller-body ul li {
  font-size: 1rem;
  line-height: normal;
  padding-left: 1.125rem;
  position: relative;
  color: var(--color-primary);
}

.question__spoller-body ul li::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: -0.25rem;
  --size: 13px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
  border-radius: 50%;
  background: var(--color-ble);
}

.question__spoller-body ul a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
}

.question__spoller-body ol {
  margin-top: 1.25rem;
  padding-left: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.question__spoller-body ol li {
  font-size: 1rem;
  line-height: normal;
  position: relative;
  color: var(--color-primary);
}

.question__spoller-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4375rem;
  color: var(--color-primary);
}

.question__link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  padding: 1.125rem 2rem;
  background: var(--color-ble);
  color: var(--color-whte);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}

.action__mainslider .action__slide .action__slide-text, .image-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5625rem 2.6875rem;
  font-size: 1rem;
  line-height: normal;
  background: var(--color-ble-opacity);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.swiper-pagination-lock {
  display: none;
}

.comment {
  padding-bottom: 9.3125rem;
}

.comment__title {
  margin-bottom: 3.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.comment__inner {
  max-width: 53.125rem;
}

.comment__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  margin-bottom: 4.375rem;
}

.comment__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3125rem;
}

.comment__column-date {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.comment__column-date::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-primary);
  width: 3.125rem;
  height: 2.3125rem;
}

.comment__column-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem 4.8125rem;
}

.comment__column-item {
  padding-left: 1.75rem;
  position: relative;
  width: 100%;
  max-width: 18.75rem;
}

.comment__column-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background: var(--color-ble);
  --size: 20px;
  width: var(--size);
  height: var(--size);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--size);
          flex: 0 0 var(--size);
}

.comment__column-name {
  line-height: normal;
  margin-bottom: 0.3125rem;
}

.comment__column-link {
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
}

span.comment__column-link {
    cursor: auto;
    text-decoration: none;
}

.comment__column-content {
  font-size: 1rem;
  line-height: 125%;
}

.comment__column-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.625rem;
}

.comment__column-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.625rem;
}

.comment__column-image {
  overflow: hidden;
  display: none;
}

.comment__column-image:nth-child(-n+3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comment__column-image img,
.comment__column-image picture {
  width: 12.0625rem;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.comment__column-all {
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
  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: 12.0625rem;
  height: 8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.0625rem;
          flex: 0 0 12.0625rem;
  padding: 1.25rem;
  background: rgba(106, 168, 206, 0.65);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.comment__column-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 171.429%;
  padding: 0.75rem 0rem 0.75rem 9.8125rem;
  position: relative;
}

.comment__column-title::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  background: var(--icon) center center/cover no-repeat;
  width: 39.4375rem;
  height: 3.25rem;
}

.comment__link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  padding: 1.125rem 2rem;
  color: var(--color-whte);
  background: var(--color-ble);
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  margin: 0 auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.social .contacts__column-item::before {--size: 28px;top: -4px;}

.social .contacts__column-item {
    padding-left: 32px;
}

.time-label-full {
    display: flex;
    align-items:center;
    gap: 12px;
    font-size: 16px;
    width: 100%;
}

.time-label-full .time-label {
    width: 66%;
}

.select-time {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 9px;
    margin-bottom: 2.625rem;
}

.time-label {
    display: block;
    border: 1px solid rgba(165, 165, 165, 1);
    text-align: center;
    width: calc(33.3% - 6px);
    color: rgba(165, 165, 165, 1);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    height: 45px;
    line-height: 45px;
    flex-shrink: 0;
}

.select-time input {
    display: none;
}

.select-time input:checked + .time-label {
    border-color: rgba(42, 212, 252, 1);
}

@media (max-width: 616px) {
  .time-label-full  {
          flex-direction: column;
          gap: 5px;
          align-items: flex-start;
      }
}

@media (min-width: 601px) {
  .popup__slide-info {
      position: absolute;
      bottom: 0;
      left: 0;
    }
}

@media (min-width: 768px) {
  .popup__content .popup__form .form__constructor-inner .form__constructor-btn {
      margin-left: auto;
    }

  .popup .popup__slider {
      overflow: visible;
    }

  .news__title {
      max-width: calc(100% - 18.75rem);
    }

  .review__title {
      max-width: calc(100% - 18.75rem);
    }
}

@media (min-width: 931px) {
  .mistake__img {
      position: absolute;
      z-index: -1;
    }
}

@media (min-width: 992px) {
  .popup__content .popup__form .form__item-textarea {
      margin-bottom: 4.625rem !important;
    }

  .chart__list {
      padding-left: 0.25rem;
    }

  .footer.footer--two .top-footer__block .top-footer__address {
      margin-left: 3.75rem;
    }
}

@media (min-width: 1501px) {
  .footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1.1875rem;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(-121.05%, #e8e6e6), to(rgba(217, 217, 217, 0)));
      background: linear-gradient(180deg, #e8e6e6 -121.05%, rgba(217, 217, 217, 0) 100%);
    }

  .info-top__links {
      padding-right: 0.5625rem;
    }
}

@media (min-width: 992px) {
  .news__slide-title {
      min-height: 3rem;
    }
}

@media (max-width: 1200px) {
  .footer.footer--two .info-top__content {
      margin-bottom: 1.25rem;
    }
}

@media (max-width: 1800px) {
  .top-footer__phones {
      gap: 0.4375rem;
    }

  .top-footer__phone {
      font-size: 1rem;
      gap: 0.625rem;
    }

  .top-footer__phone span {
      -webkit-transform: translate(-0.3125rem, 0rem);
          -ms-transform: translate(-0.3125rem, 0rem);
              transform: translate(-0.3125rem, 0rem);
    }

  .top-footer__phone::before {
      --size: 19px;
    }

  .top-footer__address {
      font-size: 1rem;
      padding-top: 0.1875rem;
      padding-left: 1.25rem;
    }

  .top-footer__address::before {
      top: 0.125rem;
      left: -0.625rem;
    }

  .record.record--two .record__inner {
      padding: 6.25rem 0rem 6.25rem 0rem;
      max-width: calc(100% - 26.375rem);
    }

  .record__inner {
      padding: 6.25rem 12.5rem 6.25rem 2.5rem;
    }

  .record__img {
      right: 2.375rem;
    }

  .record__img img,
    .record__img picture {
      --size: 422px;
    }

  .form__items {
      gap: 2.5rem;
    }

  .form__item-label {
      font-size: 1rem;
      margin-bottom: 0.875rem;
    }

  .form__item-checkbox .checkbox__label {
      font-size: 1rem;
      padding: 1.0625rem 0.5rem;
      width: 8.75rem;
      min-width: auto;
    }

  .form__item-select {
      width: 20.625rem;
    }

  .form__item-select .select__body .select__content {
      font-size: 1rem;
    }

  .form__item-select .select__body .select__value {
      height: 3.3125rem;
      padding: 0rem 1.0625rem 0rem 1.0625rem;
    }

  .form__item-btn {
      font-size: 1rem;
      font-weight: 700;
      line-height: normal;
      padding: 1.0625rem 1.875rem;
    }
}

@media (max-width: 1800px) {
  .record.record--two .record__img {
      left: 100%;
    }
}

@media (max-width: 1500px) {
  .record.record--two .record__inner {
      max-width: 62.1875rem;
    }

  .company__column-title {
      font-size: 3rem;
    }
}

@media (max-width: 1500px) {
  .top-footer {
      padding: 3.8125rem 0rem 2.5rem;
    }

  .top-footer__inner {
      gap: 3.4375rem;
      margin-bottom: 0rem;
    }

  .top-footer__link {
      --size: 48px;
    }

  .top-footer__block {
      gap: 3.625rem;
    }

  .top-footer__list {
      margin-top: -0.8125rem;
      padding-left: 0.1875rem;
      gap: 1rem;
    }

  .info-top__links {
      margin-bottom: 1.6875rem;
    }

  .info-top__link {
      font-size: 1rem;
    }

  .info-top__page::before {
      width: 2.6875rem;
    }

  .info-top__languag {
      font-size: 1rem;
    }

  .company-top__text {
      padding-left: 15.625rem;
    }

  .top-bottom {
      padding: 2.5rem 0rem;
      gap: 4.375rem;
    }

  .top-bottom__text {
      font-size: 0.75rem;
    }

  .news {
      padding-bottom: 6.25rem;
    }

  .info {
      padding-bottom: 6.25rem;
    }

  .info__inner {
      -ms-grid-columns: 37.5rem auto;
      grid-template-columns: 37.5rem auto;
      gap: 5rem;
    }

  .review {
      margin-bottom: 8.5625rem;
    }

  .review__title {
      margin-bottom: 3.75rem;
    }

  .record__title {
      font-size: 1.875rem;
      margin-bottom: 2.625rem;
    }

  .mistake__inner {
      padding: 28.3125rem 0rem 6.25rem;
    }
}

@media (max-width: 1420px) {
  .top-footer__phones {
      gap: 0.625rem;
    }

  .top-footer__phone {
      gap: 0.75rem;
    }

  .top-footer__phone span {
      -webkit-transform: translate(-0.4375rem, 0rem);
          -ms-transform: translate(-0.4375rem, 0rem);
              transform: translate(-0.4375rem, 0rem);
    }

  .top-footer__phone::before {
      --size: 19px;
    }

  .top-footer__address {
      padding-top: 0rem;
      padding-left: 1.25rem;
      gap: 0.625rem;
    }

  .top-footer__address::before {
      top: 0;
      left: -0.5rem;
    }

  .btn-blue {
      font-size: 1rem;
      padding: 1.25rem;
    }
}

@media (max-width: 1420px) {
  .footer.footer--two .top-footer__block .top-footer__address {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
}

@media (max-width: 1400px) {
  .popup--gallery .popup__content {
      max-width: 50rem;
    }
}

@media (max-width: 1400px) {
  .record.record--two .record__inner {
      padding: 6.25rem 0rem 6.25rem 0rem;
    }

  .record__inner {
      padding: 6.25rem 12.5rem 6.25rem 0rem;
    }

  .record__img {
      right: -0.125rem;
    }

  .form__items {
      gap: 1.875rem;
    }

  .form__item-label {
      margin-bottom: 0.75rem;
    }

  .form__item-select {
      width: 19.375rem;
    }

  .form__item-btn {
      padding: 1.0625rem 1.625rem;
    }
}

@media (max-width: 1330px) {
  .record.record--two .record__inner {
      margin: 0 auto;
    }

  .record.record--two .record__img {
      display: none;
    }
}

@media (max-width: 1300px) {
  .question__spoller {
      padding: 3rem 2.375rem 3rem 1.75rem;
    }
}

@media (max-width: 1300px) {
  .info__inner {
      gap: 3.75rem;
    }

  .form__item-select .select__body .select__options .select__option {
      font-size: 1rem;
    }

  .mistake__img {
      right: -3.125rem;
      bottom: 9.375rem;
    }

  .mistake__img img,
    .mistake__img picture {
      width: 47.8125rem;
      height: 51.8125rem;
      -o-object-fit: cover;
         object-fit: cover;
    }
}

@media (max-width: 1280px) {
  .record.record--two .record__inner {
      padding: 3.375rem 0rem 4.125rem 0.125rem;
    }

  .record__inner {
      padding: 3.375rem 0rem 4.125rem 0.125rem;
    }

  .record__title {
      margin-bottom: 1.9375rem;
      font-size: 1.5625rem;
    }

  .record__img {
      right: 1.8125rem;
    }

  .record__img img,
    .record__img picture {
      --size: 265px;
    }

  .form__items {
      gap: 0.9375rem;
    }

  .form__item-label {
      font-size: 0.875rem;
      margin-bottom: 0.5625rem;
    }

  .form__item-checkbox .checkbox__label {
      font-size: 0.875rem;
      padding: 0.5625rem 0.625rem 0.5rem;
      width: 6.8125rem;
    }

  .form__item-select {
      width: 14.9375rem;
    }

  .form__item-select .select__body .select__content {
      font-size: 0.875rem;
    }

  .form__item-select .select__body .select__value {
      height: 2.1875rem;
    }

  .form__item-btn {
      padding: 0.5625rem 0.6875rem;
      font-size: 0.875rem;
    }
}

@media (max-width: 1200px) {
  .top-footer {
      padding: 2.25rem 0rem 1.375rem;
    }

  .top-footer__inner {
      gap: 8.9375rem;
      margin-bottom: 2.375rem;
    }

  .top-footer__link {
      --size: 29px;
    }

  .top-footer__link::before {
      --size: 17px;
    }

  .top-footer__phone {
      font-size: 0.875rem;
      gap: 0.8125rem;
    }

  .top-footer__phone span {
      -webkit-transform: translate(-0.5rem, 0rem);
          -ms-transform: translate(-0.5rem, 0rem);
              transform: translate(-0.5rem, 0rem);
    }

  .top-footer__block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      gap: 3.25rem;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
    }

  .top-footer__address {
      font-size: 0.875rem;
      line-height: 145%;
      gap: 0rem;
      padding-left: 2rem;
      padding-top: 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }

  .top-footer__address::before {
      top: 0.25rem;
      left: -0.125rem;
    }

  .top-footer__list {
      padding-left: 0rem;
      margin-top: 0rem;
      gap: 0.75rem;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      margin-bottom: 1.625rem;
    }

  .info-top__links {
      margin-top: 0rem;
      margin-bottom: 2rem;
    }

  .info-top__link {
      font-size: 0.875rem;
    }

  .info-top__content {
      gap: 1.1875rem;
    }

  .info-top__search::before {
      --size: 24px;
    }

  .info-top__languages {
      padding-left: 0.75rem;
    }

  .company-top__text {
      padding-left: 9.375rem;
    }

  .top-bottom {
      padding: 2.1875rem 0rem;
      gap: 5rem;
    }

  .top-bottom__img img,
    .top-bottom__img picture {
      width: 13.5625rem;
      height: 5.0625rem;
    }

  .info__inner {
      -ms-grid-columns: 31.25rem auto;
      grid-template-columns: 31.25rem auto;
    }

  .top-footer__phones, .top-footer__block address {
      min-height: auto;
    }

  .top-footer__block .btn-blue,
    .info-top__links .btn-blue {
      display: none;
    }

  .top-footer__phones, .top-footer__block address, .info-top__links {
      min-height: auto;
    }

  .footer-btns {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 15px;
      margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
  .form__error {
      top: calc(100% + 0.1875rem);
    }

  .input {
      font-size: 1rem;
    }

  .popup__content {
      padding: 1.4375rem 2.875rem 2.125rem;
    }

  .popup__slider {
      height: 34.625rem;
    }

  .popup__slide .popup__slide-img {
      height: 31.5rem;
    }

  .popup__slide.swiper-slide-active .popup__slide-img {
      height: 34.625rem;
    }

  .popup__slide-info {
      padding: 1rem 2rem;
    }

  .popup__constructor {
      margin-top: 1.875rem;
    }

  .popup--gallery .popup__content {
      max-width: calc(100% - 7.875rem);
    }

  .popup--gallery .popup__close {
      top: -8.5625rem;
    }

  #map {
      height: 31rem;
    }

  .form--two .form__inner {
      gap: 2.75rem;
    }

  .chart {
      padding-top: 9.8125rem;
      padding-bottom: 5.125rem;
    }

  .chart__title {
      margin-bottom: 1.75rem;
    }

  .file-loader__inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 0.625rem;
    }

  .file-loader__error {
      top: calc(100% + 0rem);
      font-size: 0.75rem;
    }

  .news {
      padding-bottom: 4.1875rem;
    }

  .news.news--two {
      padding-bottom: 0;
      margin-bottom: 5.25rem;
    }

  .news__title {
      margin-bottom: 3rem;
    }

  .info {
      padding-bottom: 3.625rem;
    }

  .info__inner {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 0rem;
    }

  .info__title {
      margin-bottom: 1.25rem;
    }

  .info__text {
      max-width: 48rem;
      margin-bottom: 1.25rem;
    }

  .info__img {
      margin-bottom: 1.25rem;
    }

  .company__row {
      max-width: 49.8125rem;
    }

  .review {
      margin-bottom: 5.25rem;
    }

  .review__title {
      margin-bottom: 4.375rem;
    }

  .record.record--two {
      padding: 5.375rem 0rem 3.5rem;
    }

  .record.record--two .record__title {
      font-size: 2.1875rem;
      font-weight: 700;
      line-height: normal;
      margin-bottom: 3rem;
    }

  .record.record--two .record__inner {
      padding: 0rem 0rem 0rem 0.125rem;
      margin: 0;
    }

  .consultation-direction__items {
      margin-bottom: 2.5rem;
    }

  .consultation-direction__inner {
      max-width: 100%;
    }

  .mistake__inner {
      min-height: 74.5625rem;
      padding: 10.125rem 0rem 6.25rem;
    }

  .mistake__img {
      bottom: 5.1875rem;
      right: 5.25rem;
    }

  .question {
      padding-bottom: 5.25rem;
    }

  .question__title {
      margin-bottom: 3rem;
    }

  .question__spollers {
      margin-bottom: 2.125rem;
      gap: 2.5rem;
    }

  .comment {
      padding-bottom: 8.8125rem;
    }

  .comment__title {
      margin-bottom: 3rem;
    }

  .comment__row {
      gap: 3.75rem;
      padding: 0rem 2.5rem;
    }

  .comment__column-bottom {
      overflow: auto;
      min-width: 100vw;
      margin: 0rem -0.9375rem;
      padding: 0rem 0.9375rem;
    }
}

@media (max-width: 950px) {
  .popup__content .popup__form .form__title {
      margin-bottom: 2.0625rem;
    }
}

@media (max-width: 950px) {
  .popup__content .popup__form .form__inner {
      gap: 2.5rem;
    }

  .form--two .form__fieldset .form__items {
      gap: 1rem;
    }

  .form--two .form__fieldset .form__items .form__item .form__item-label {
      font-size: 0.875rem;
      margin-bottom: 0.5625rem;
    }

  .form--two .form__fieldset .form__items .form__item .form__item-textarea {
      margin-bottom: 1.6875rem;
    }

  .form--two .form__fieldset .form__items .form__item .form__item-textarea textarea {
      height: 11.375rem;
    }

  .form--two .form__fieldset .form__items .form__item .form__item-file {
      margin-bottom: 1.6875rem;
    }

  .form--two .form__fieldset .form__items .form__item .form__item-moderation,
    .time-label-full {
      font-size: 0.75rem;
    }

  .time-label {
      font-size: 16px;
      border-width: 1px;
      height: 37px;
      line-height: 37px;
    }

  .form .form__item-input input,
    .form--two .form__fieldset .form__items .form__item .form__item-input input {
      height: 2.3125rem;
    }

  .form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__text {
      font-size: 0.75rem;
    }

  .btn-blue,
    .form--two .form__fieldset .form__constructor-inner .form__constructor-btn {
      padding: 0.625rem 2.1875rem;
      font-size: 0.875rem;
    }

  .label-upload {
      padding: 0.625rem 1.4375rem 0.5625rem;
      font-size: 0.875rem;
    }
}

@media (max-width: 930px) {
  .top-footer__inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1.9375rem;
    }

  .company-top {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      gap: 1.875rem;
    }

  .company-top__text {
      padding-left: 0rem;
    }

  .mistake__content {
      text-align: center;
    }

  .mistake__inner {
      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;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 2.0625rem;
      padding: 5.4375rem 0rem 6.25rem;
      min-height: 45rem;
    }

  .mistake__img img,
    .mistake__img picture {
      max-width: 100%;
      max-height: 100%;
      height: 24.4375rem;
      width: 22.5625rem;
    }
}

@media (max-width: 767px) {
  .popup {
      padding: 80px 10px;
    }

  .popup__content {
      padding: 1.375rem 1.0625rem 2.1875rem;
    }

  .popup__content .popup__form .form__constructor-inner {
      gap: 1.8125rem !important;
    }

  .popup__content .popup__form .form__inner {
      -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
      gap: 1.1875rem;
    }

  .popup__content .popup__form .form__items {
      gap: 1.1875rem;
    }

  .popup__close {
      --size: 36px;
      top: -3.125rem;
    }

  .popup__close::before {
      --size: 24px;
    }

  .popup--two .popup__content {
      min-height: 12.625rem;
    }

  .popup__text {
      font-size: 0.875rem;
    }

  .popup__slider {
      height: auto;
    }

  .popup--gallery .popup__content {
      max-width: calc(100% - 2rem);
    }

  .popup--gallery .popup__close {
      top: -7.75rem;
    }

  #map {
      height: 30.5625rem;
    }

  .form__close {
      display: none;
    }

  .form--two .form__inner {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

  .form--two .form__fieldset .form__items .form__item .form__item-attention {
      padding: 1.625rem 0.625rem 1.5rem 1.8125rem;
    }

  .form--two .form__fieldset .form__items .form__item .form__item-moderation {
      font-size: 0.625rem;
    }

  .form--two .form__fieldset .form__constructor-inner {
      gap: 2.75rem;
    }

  .btn-blue,
    .form--two .form__fieldset .form__constructor-inner .form__constructor-btn {
      display: inline-flex;
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
      padding: 0.625rem 2.4375rem 0.5625rem;
    }

  .chart {
      padding-top: 8.3125rem;
      padding-bottom: 7.125rem;
    }

  .chart__title {
      margin-bottom: 2rem;
    }

  .footer.footer--two .top-footer__list {
      margin-bottom: 0rem;
    }

  .footer-btns .btn-blue {
      align-self: flex-end;
    }

  .footer.footer--two .info-top__content {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
    }

  .top-footer {
      padding: 1.9375rem 0rem 0.875rem;
    }

  .top-footer__logo img,
    .top-footer__logo picture {
      height: 60px;
      width: auto;
    }

  .top-bottom {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1.25rem;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding: 1.375rem 0rem;
    }

  .news {
      padding-bottom: 3.3125rem;
    }

  .news.news--two {
      padding-bottom: 0;
      margin-bottom: 8.0625rem;
    }

  .news__title {
      margin-bottom: 1.5rem;
    }

  .news__slide {
      height: 20.3125rem;
      max-width: 20.3125rem;
    }

  .news__slide._active .news__slide-text {
      margin-bottom: 0.375rem;
    }

  .news__slide-date {
      width: 8.25rem;
      height: 3.4375rem;
      padding: 0.5625rem 0.8125rem;
      top: 0.5625rem;
      left: -0.375rem;
    }

  .news__slide-content {
      padding: 0.375rem 0.625rem 0.9375rem 0.625rem;
    }

  .news__slide-title {
      font-size: 0.875rem;
      margin-bottom: 0.625rem;
    }

  .news__slide-text {
      font-size: 0.75rem;
      max-width: 77%;
    }

  .news__slide-link {
      font-size: 1rem;
    }

  .news__constructor {
      display: none;
    }

  .info {
      padding-bottom: 2rem;
    }

  .info__title {
      margin-bottom: 0.5625rem;
    }

  .info__text {
      font-size: 0.75rem;
      line-height: normal;
      margin-bottom: 0.5625rem;
    }

  .info__link {
      font-size: 1rem;
      padding: 0.78125rem 1.0625rem;
      margin: 0 auto;
    }

  .info__img {
      margin-bottom: 1.1875rem;
    }

  .company__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      gap: 2.6875rem;
      overflow-x: auto;
      margin: 0rem -0.9375rem;
      padding: 0rem 0.9375rem;
    }

  .company__column-title {
      font-size: 2.1875rem;
      margin-bottom: 0.375rem;
    }

  .company__column-text {
      font-size: 0.75rem;
      line-height: normal;
    }

  .review {
      margin-bottom: 8.0625rem;
    }

  .review__title {
      margin-bottom: 0.9375rem;
    }

  .review__slide {
      padding: 0.9375rem 1.375rem 0.9375rem 1.1875rem;
      width: 20.3125rem;
    }

  .review__slide-content {
      margin-bottom: 2.1875rem;
    }

  .review__slide-text {
      font-size: 0.75rem;
      line-height: normal;
      max-width: 81%;
    }

  .review__constructor {
      display: none;
    }

  .top-review {
      margin-bottom: 1.1875rem;
    }

  .top-review__title {
      font-size: 0.875rem;
    }

  .top-review__img img,
    .top-review__img picture {
      width: 3.375rem;
      height: 2.5rem;
    }

  .bottom-review__link {
      font-size: 1rem;
    }

  .bottom-review__date {
      font-size: 1rem;
    }

  .record.record--two {
      padding: 3.4375rem 0rem 3.3125rem;
    }

  .record.record--two .record__title {
      font-size: 1.5625rem;
      margin-bottom: 1.6875rem;
    }

  .record.record--two .record__inner {
      padding: 0rem 0rem 0rem 0.125rem;
      max-width: 31.25rem;
    }

  .record__inner {
      padding: 2.75rem 0rem 9.5625rem 0.125rem;
    }

  .record__title {
      margin-bottom: 1.6875rem;
      font-size: 1.5625rem;
    }

  .record__img {
      right: auto;
      left: 65%;
    }

  .record__img img,
    .record__img picture {
      --size: 426px;
    }

  .form__items {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1.0625rem;
    }

  .form__item-checkbox .checkbox__label {
      width: 7.8125rem;
    }

  .form__item-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1.3125rem;
    }

  .form__item-select {
      width: 15.6875rem;
    }

  .form__item-select .select__body .select__value::after {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 0.625rem;
              flex: 0 0 0.625rem;
    }

  .form__item-btn {
      max-width: -webkit-max-content;
      max-width: -moz-max-content;
      max-width: max-content;
    }

  .consultation-direction__showmore {
      font-size: 1rem;
      padding: 0.8125rem 2rem;
    }

  .consultation-direction__item {
      padding: 5.375rem 1.25rem 1.4375rem;
    }

  .consultation-direction__banner {
      padding: 0.5625rem 1.9375rem;
      margin-bottom: 2.1875rem;
    }

  .consultation-direction__banner::before {
      width: 8.75rem;
      height: 3.4375rem;
    }

  .consultation-direction__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      gap: 1.0625rem;
    }

  .consultation-direction__title {
      margin-bottom: 0rem;
      font-size: 0.875rem;
    }

  .consultation-direction__title br {
      display: none;
    }

  .consultation-direction__text {
      margin-bottom: 0rem;
      font-size: 0.75rem;
    }

  .consultation-direction__bottom {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1.0625rem;
    }

  .consultation-direction__price {
      font-size: 1.25rem;
    }

  .consultation-direction__link {
      padding: 0.8125rem 2rem;
      font-size: 1rem;
    }

  .question {
      padding-bottom: 8.0625rem;
    }

  .question__title {
      margin-bottom: 1.1875rem;
    }

  .question__spollers {
      margin-bottom: 2.5rem;
    }

  .question__spoller {
      min-height: 4.75rem;
      padding: 1.1875rem 1.125rem 2rem 0.9375rem;
    }

  .question__spoller-title::after {
      --size: 25px;
      -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
              transform: rotate(0deg);
    }

  .question__spoller-title {
      font-size: 0.875rem;
      line-height: 120%;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      gap: 5.375rem;
    }

  .question__spoller-title br {
      display: none;
    }

  .question__spoller-title._spoller-active::after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
    }

  .question__spoller-body ul {
      gap: 0.3125rem;
    }

  .question__spoller-body ul li {
      font-size: 0.75rem;
    }

  .question__spoller-body ol {
      gap: 0.3125rem;
      padding-left: 1.25rem;
    }

  .question__spoller-body ol li {
      font-size: 0.75rem;
    }

  .question__spoller-text {
      font-size: 0.75rem;
      gap: 0.9375rem;
    }

  .question__spoller-text br {
      display: none;
    }

  .question__link {
      font-size: 1rem;
      padding: 0.75rem 2rem 0.8125rem;
    }

  .comment {
      padding-bottom: 3rem;
    }

  .comment__title {
      margin-bottom: 1.1875rem;
    }

  .comment__row {
      gap: 1rem;
      margin-bottom: 3rem;
      padding: 0rem 0rem;
    }

  .comment__column {
      gap: 1.25rem;
    }

  .comment__column-date {
      font-size: 1rem;
    }

  .comment__column-items {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }

  .comment__column-name {
      font-size: 0.75rem;
    }

  .comment__column-link {
      font-size: 0.75rem;
    }

  .comment__column-content {
      font-size: 0.75rem;
    }

  .comment__column-title {
      font-size: 0.75rem;
      line-height: normal;
      padding: 0.9375rem 0rem 0.9375rem 5.75rem;
    }

  .comment__column-title::before {
      width: 21.5rem;
      height: 1.875rem;
    }

  .comment__link {
      font-size: 1rem;
      padding: 0.8125rem 2rem;
    }
}

@media (max-width: 600px) {
  .popup__slide .popup__slide-img {
      height: 14.3125rem;
    }

  .popup__slide.swiper-slide-active .popup__slide-img {
      height: 14.3125rem;
    }

  .popup__slide-info {
      font-size: 0.75rem;
      padding: 0.6875rem 1.0625rem;
    }

  .popup__slide-info span {
      display: block;
    }

  .popup__arrow {
      --size: 35px;
    }

  .popup__arrow::before {
      --size: 17px;
    }

  .popup__pagging {
      font-size: 1.25rem;
      letter-spacing: -0.125rem;
    }

  .action__mainslider .action__slide .action__slide-text, .image-desc {
      font-size: 0.75rem;
      padding: 0.625rem 1.0625rem;
      position: static;
    }
}

@media (max-width: 600px) {
  .top-footer__inner {
      gap: 1.625rem;
      margin-bottom: 2.1875rem;
    }

  .top-footer__content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1.8125rem;
    }

  .top-footer__phones {
      gap: 0.9375rem;
    }

  .top-footer__block {
      gap: 1.9375rem;
    }

  .top-footer__address {
      padding-left: 2.125rem;
    }

  .top-footer__address::before {
      top: 0.3125rem;
      left: 0.125rem;
    }

  .top-footer__list {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      margin-bottom: 1.9375rem;
    }

  .info-top__links {
      display: none;
    }

  .company-top {
      gap: 1.375rem;
    }

  .info-top__content {
      justify-content: flex-start;
    }

  .footer-btns .btn-blue {
      align-self: flex-start;
    }
}

@media (max-width: 479px) {
  .form--two .form__fieldset .form__constructor-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }

  .consultation-direction__inner {
      max-width: 100%;
    }

  .mistake__title {
      font-size: 1rem;
      margin-bottom: 0.8125rem;
    }

  .mistake__link {
      font-size: 0.875rem;
      padding: 1rem 0.9375rem 1.0625rem;
    }
}

@media (max-width: 370px) {
  .company__row {
      gap: 1.5625rem;
    }

  .record__img {
      left: 74%;
    }
}

@media (any-hover: hover) {
  .select__option:hover {
      background: #d9d9d9;
    }

  .popup__close:hover {
      background: var(--color-primary)!important;
    }

  .popup__slide-info span:hover {
      text-decoration: none;
    }

  .form__item-btn:hover {
      background: var(--color-primary);
    }

  .form__close:hover {
      background: var(--color-primary);
    }

  .form a:hover,
    .form--two .form__fieldset .form__constructor-inner .form__constructor-checkbox .checkbox__text a:hover {
      text-decoration: none;
    }

  .btn-blue:hover,
    .form--two .form__fieldset .form__constructor-inner .form__constructor-btn:hover {
      background: var(--color-primary);
    }

  .chart__link:hover {
      text-decoration: none;
    }

  .label-upload:hover {
      background: var(--color-ble);
    }

  .top-footer__link:hover::before {
      background: var(--color-ble);
    }

  .top-footer__phone:hover {
      color: var(--color-ble);
    }

  .top-footer__phone:hover span {
      color: var(--color-ble);
    }

  .top-footer__phone:hover::before {
      content: "";
      background: var(--color-ble);
    }

  .info-top__link:hover {
      text-decoration: none;
    }

  .info-top__search:hover::before {
      background: var(--color-ble);
    }

  .info-top__page:hover::before {
      background: var(--color-ble);
    }

  .info-top__languag:hover {
      font-weight: 700;
    }

  .company-top__page:hover {
      font-weight: 600;
      text-decoration: none;
    }

  .company-top__text a:hover {
      text-decoration: none;
    }

  .news__slide-link:hover {
      text-decoration: none;
    }

  .info__link:hover {
      background: var(--color-primary);
    }

  .bottom-review__link:hover {
      text-decoration: none;
    }

  .form__item-checkbox .checkbox__label:hover {
      color: var(--color-ble);
    }

  .form__item-select .select__body .select__options .select__option:hover {
      text-decoration: none;
      font-weight: 700;
    }

  .consultation-direction__showmore:hover {
      background: var(--color-primary);
    }

  .consultation-direction__item:hover {
      border: 0.125rem solid var(--color-ble);
    }

  .consultation-direction__link:hover {
      background: var(--color-primary);
    }

  .mistake__link:hover {
      background: var(--color-primary);
    }

  .question__spoller:hover {
      border: 0.125rem solid var(--color-ble);
    }

  .question__spoller-body ul a:hover {
      text-decoration: none;
    }

  .question__link:hover {
      background: var(--color-primary);
    }

  .comment__column-link:hover {
      text-decoration: none;
    }

  .comment__column-image:hover img,
    .comment__column-image:hover picture {
      -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
              transform: scale(1.1);
    }

  .comment__column-all:hover {
      text-decoration: none;
    }

  .comment__link:hover {
      background: var(--color-primary);
    }
}

@media (min-height: 1000px) {
  .popup__slider {
      height: 47.125rem;
    }

  .popup__slide .popup__slide-img {
      height: 38.875rem;
    }

  .popup__slide.swiper-slide-active .popup__slide-img {
      height: 47.125rem;
    }
}

@media (max-height: 1000px) {
  .popup--gallery .popup__close {
      top: -5rem;
    }
}

@media (max-width: 767px) {
  @keyframes tileTransferFromBottomMobile {
      0% {
        opacity: 0;
        transform: translateY(100%);
      }
      50% {
        opacity: 0;
        transform: translateY(100%);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
}

@media (min-width: 1201px) {
  .top-footer__list {
        position: absolute;
        left: 0;
        bottom: 102px;
    }

  .top-footer__inner {
        position: relative;
        margin-bottom: 4.875rem;
    }
}

@media (min-width: 1501px) {
  .top-footer__list {
        bottom: 86px;
    }
}

.table {
  overflow: auto;
  position: relative;
}

.table table {
    border-collapse: collapse;
}

.table table td,
.table table th {
    padding: 10px 15px;
    border: 2px solid rgba(42, 212, 252, 1);
}

.scroll-indicator {
  /* animation: mayatnik 5s; */
  animation-duration: 8s;
  animation-name: mayatnik;
  animation-timing-function: linear;
}

.scroll-indicator-wrap {
  position: relative;
  height: 40px;
}

.__standart {
  opacity: 0;
}

.scroll-indicator.__standart {
  position: absolute;
  left: 50%;
  margin-left: -14px;
}

@keyframes mayatnik {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  8% {
    transform: translateX(-50%);
    opacity: 1;
  }
  24% {
    transform: translateX(50%);
    opacity: 1;
  }
  40% {
    transform: translateX(-50%);
    opacity: 1;
  }
  56% {
    transform: translateX(50%);
    opacity: 1;
  }
  72% {
    transform: translateX(-50%);
    opacity: 1;
  }
  88% {
    transform: translateX(50%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}

.fancybox__container {
  max-width: 100%;
}

.captcha-block {
    display: flex;
    gap: 15px;
}

@media (max-width: 767px) {
  .captcha-block {
      flex-direction: column;
    }
}

#showmap {
    padding-top: 110px;
    margin-top: -110px;
}

@media (max-width: 1200px) {
  #showmap {
      padding-top: 80px;
      margin-top: -80px;
    }
}

.quote {
  position: relative;
  padding-top: 25px;
  margin-top: 40px;
  margin-bottom: 25px;
  border-top: 2px solid var(--color-ble);
}

.quote label {
  display: block;
  position: relative;
  background: url('../img/icons/citata-marker.svg') no-repeat 59px 0;
  overflow: hidden;
  color: rgba(21, 57, 107, 1);
  font-weight: 700;
  min-height: 25px;
  max-width: 631px;
  padding: 12px 30px 16px 157px;
  font-size: 14px;
  margin-top: 30px;
}

.quote label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 59px;
  border-top: 2px solid rgba(42, 212, 252, 1);
}

.quote label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 118px;
  width: 845px;
  max-width: 100%;
  border-top: 2px solid rgba(42, 212, 252, 1);
}

@media (max-width: 600px) {
  .js-slider-about.action__thumbsslider .action__slide .action__slide-img img,
    .js-slider-about.action__thumbsslider .action__slide .action__slide-img picture {
      height: auto!important;
    }
}

@media (min-width: 601px) {
  .js-slider-about .action__slide:nth-child(n+4) {
      display: none;
    }
}

@media (max-width: 767px) {
  .quote {
      border-width: 1px;
      padding-top: 15px;
      margin-top:20px
    }

  .quote label {
      font-size: 12px;
      background-size: 35px 35px;
      background-position: 59px -3px;
      min-height: 35px;
      padding: 12px 30px 16px 110px;
      margin-top:15px;
    }

  .quote label:before, .quote label:after {
      border-width: 1px
    }

  .quote label:after {
      left: 94px;
    }
}

@media (max-width: 440px) {
  .record__title {
      max-width: 250px;
    }

  .record__img {
      right: -275px;
      left: auto;
    }

  .btn-blue {
      padding-right: 15px;
      padding-left: 15px;
    }
}

@media (max-width: 359px) {
  .time-label {
      font-size: 14px;
    }
}

.about-swiper {
  overflow: visible;
}

.custom-block__item {
  margin-bottom: 80px;
}

.custom-block__item ._title {
  margin-bottom: 30px;
}

.custom-block__item .block-direction__items {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    gap: 1rem;
}

@media (min-width: 768px) {
  .custom-block__item .block-direction__items {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
}

@media (min-width: 1421px) {
  .custom-block__item .block-direction__items {
      grid-template-columns: 1fr 1fr 1fr;
    }
}

.custom-block__item .question__spollers {
    max-width: 1285px;
}

.rv-root {
    z-index: 9999;
}

.rv-img {
    margin: auto;
}

.services-note {
  display: inline-block;
  background: #f7f7f7;
  padding: 10px 20px;
  margin-bottom: 30px;
  color: #8f8f8f;
  font-weight: 500;
  font-size: 16px;
}

.services-note a {
  color:var(--color-ble);
  font-weight:600;
}

.services-note a:hover {
  text-decoration: underline;
}

.search-page .action__content b {
  font-size: inherit;
  line-height: inherit;
}

.scroll-margin {
  scroll-margin-top: 100px;
}

@media (max-width: 1200px) {
  .scroll-margin {
      scroll-margin-top: 70px;
    }
}

.form textarea.input {
  height: 128px;
}

.form .form__item {
  margin-bottom: 19px;
}

.form .form__item-input, .form .form__item-textarea {
  margin-top: 10px;
}

.form-prof {
  font-size: 0.75rem;
}

.form-prof__title {
  font-size: 140%;
  line-height: normal;
  margin-bottom: 40px;
}

.form-prof__btn {
  display: block;
  width: 270px;
  margin: 25px auto 0;
}

@media (min-width: 768px) {
  .form-prof {
      font-size: 0.875rem;
    }
}

@media (min-width: 992px) {
  .form-prof {
      font-size: 1rem;
    }

  .form-prof {
      max-width: 50%;
    }

  .form .form__item {
      margin-bottom: 27px;
    }

  .captcha-block {
        gap: 30px;
    }

  .form-prof__btn {
      margin: 0 0 0 auto;
    }
}

.search-section .form__item, .search-section .form__item-input {
  margin: 0;
}
