@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f4f2ee;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  -webkit-text-fill-color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  -webkit-text-fill-color: inherit;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1, .h1 {
  font-size: 48px;
  font-weight: 800;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  h1, .h1 {
    font-size: 28px;
  }
}

h2, .h2 {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  h2, .h2 {
    font-size: 24px;
  }
}

h3, .h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 480px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

.text-muted {
  color: #6b6b6b;
}

.text-sm {
  font-size: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b6b6b;
  max-width: 600px;
  margin-bottom: 32px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 30px 0;
  }
}
.section--dark {
  background-color: #224737;
  color: #ffffff;
}
.section--alt {
  background-color: #eceae6;
}
.section--white {
  background-color: #ffffff;
}

.section__header {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .section__header {
    margin-bottom: 24px;
  }
}

.section__header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 480px) {
  .section__header-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.pb-80 {
  padding: 0 0 60px 0;
}
@media (max-width: 768px) {
  .pb-80 {
    padding: 0 0 50px 0;
  }
}
@media (max-width: 480px) {
  .pb-80 {
    padding: 0 0 30px 0;
  }
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex--between {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex--gap {
  gap: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 8px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mt-5 {
  margin-top: 40px;
}

.mb-5 {
  margin-bottom: 40px;
}

.mt-6 {
  margin-top: 48px;
}

.mb-6 {
  margin-bottom: 48px;
}

.mt-7 {
  margin-top: 56px;
}

.mb-7 {
  margin-bottom: 56px;
}

.mt-8 {
  margin-top: 64px;
}

.mb-8 {
  margin-bottom: 64px;
}

.link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #224737;
  -webkit-transition: gap 0.25s ease;
  transition: gap 0.25s ease;
}
.link-arrow:hover {
  gap: 10px;
}
.link-arrow::after {
  content: "→";
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.header.is-scrolled {
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header.is-scrolled .header-top {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.header-top {
  background-color: #224737;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
  max-height: 60px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
}

.header-top__inner {
  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;
}

.header-top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header-top__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
}
.header-top__item svg {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header-top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header-main {
  padding: 16px 0;
  border-bottom: 1px solid #dedad5;
}

.header-main__inner {
  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: 24px;
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo img {
  height: 44px;
  width: auto;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 0;
  position: relative;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.nav__link:hover, .nav__link.is-active {
  color: #224737;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__phone {
  text-align: right;
}
@media (max-width: 768px) {
  .header__phone {
    display: none;
  }
}

.header__phone-number {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.header__phone-number:hover {
  color: #224737;
}

.header__phone-label {
  font-size: 12px;
  color: #6b6b6b;
}

@media (max-width: 480px) {
  .header__cta {
    display: none;
  }
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
@media (max-width: 1024px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 1px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.burger.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: #ffffff;
  padding: 80px 20px 32px;
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: block;
}

.mobile-menu__nav {
  margin-bottom: 32px;
}

.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #dedad5;
}

.mobile-menu__phone {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mobile-menu__info {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 24px;
}

.footer {
  background-color: #f4f2ee;
  color: #1a1a1a;
  padding: 60px 0 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 0;
  }
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  padding-bottom: 40px;
  border-bottom: 1px solid #dedad5;
}
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__info {
  max-width: 520px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 8px;
}
.footer__logo img {
  height: 90px;
  width: auto;
}

.footer__tagline {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 24px;
}

.footer__desc {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 480px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-size: 14px;
  color: #6b6b6b;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.footer__link:hover {
  color: #224737;
}

.footer__contacts-row {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 72px;
  padding: 32px 0;
  border-bottom: 1px solid #dedad5;
}
@media (max-width: 1024px) {
  .footer__contacts-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__offices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px;
}
@media (max-width: 480px) {
  .footer__offices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.footer__office-city {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer__office-type {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.footer__office-phone {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.footer__office-phone:hover {
  color: #224737;
}

.footer__connect {
  min-width: 0;
}

.footer__connect-label {
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.footer__connect-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__connect-list {
    grid-template-columns: 1fr;
  }
}

.footer__legal {
  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;
  padding: 20px 0;
  border-bottom: 1px solid #dedad5;
  font-size: 12px;
  color: #6b6b6b;
}
@media (max-width: 768px) {
  .footer__legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.footer__legal-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer__legal-links a {
  color: #6b6b6b;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.footer__legal-links a:hover {
  color: #224737;
}

.footer__copyright {
  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;
  padding: 20px 0;
  font-size: 12px;
  color: #a0a0a0;
}
@media (max-width: 768px) {
  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.footer__copyright a {
  color: #a0a0a0;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.footer__copyright a:hover {
  color: #224737;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 6px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background-color: #224737;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #246b34;
}
.btn--outline {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #dedad5;
}
.btn--outline:hover {
  border-color: #224737;
  color: #224737;
}
.btn--outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn--outline-light:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1a1a1a;
}
.btn--white {
  background-color: #ffffff;
  color: #1a1a1a;
}
.btn--white:hover {
  background-color: #f4f2ee;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn--lg {
  padding: 18px 40px;
  font-size: 18px;
}
@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 480px) {
  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 6px;
  -webkit-transition: border-color 0.25s ease;
  transition: border-color 0.25s ease;
}
.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  color: #a0a0a0;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #a0a0a0;
}
.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  color: #a0a0a0;
}
.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  color: #a0a0a0;
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: #a0a0a0;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #224737;
}
.form__input--error,
.form__textarea--error {
  border-color: #d93025;
}

.form__textarea,
.form__input--textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .form__grid-2 {
    grid-template-columns: 1fr;
  }
}

.rating-field {
  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: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #dedad5;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .rating-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}

.rating-field__label {
  font-size: 14px;
  color: #6b6b6b;
}

.rating-field__stars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
}

.rating-field__star {
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: #e0ddd7;
  -webkit-transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  line-height: 1;
}
.rating-field__star i {
  font-size: 28px;
  display: block;
}
.rating-field__star:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.rating-field__star.is-active {
  color: #f5b700;
}

.form__error {
  font-size: 12px;
  color: #d93025;
  margin-top: 4px;
}

.form__consent {
  font-size: 14px;
  color: #6b6b6b;
}
.form__consent a {
  text-decoration: underline;
}
.form__consent a:hover {
  color: #224737;
}

.form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.form__checkbox-label input[type=checkbox] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #224737;
}

.form__consent-text {
  font-size: 12px;
  color: #a0a0a0;
  margin-top: 8px;
  text-align: center;
}
.form__consent-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form__consent-text a:hover {
  color: #224737;
}

.form__success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form__success.is-visible {
  display: block;
}

.form__message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.form__message--success {
  background: rgba(46, 125, 62, 0.1);
  border: 1px solid rgba(46, 125, 62, 0.3);
  color: #2e7d3e;
}
.form__message--error {
  background: rgba(217, 48, 37, 0.08);
  border: 1px solid rgba(217, 48, 37, 0.3);
  color: #d93025;
}

.messengers {
  margin-top: 24px;
}

.messengers__divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #6b6b6b;
  font-size: 14px;
  text-transform: lowercase;
}
.messengers__divider::before, .messengers__divider::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #dedad5;
}

.messengers__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: 8px;
}

.messenger-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.messenger-link:hover {
  border-color: #224737;
  background: rgba(34, 71, 55, 0.03);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.messenger-link:hover .messenger-link__arrow {
  color: #224737;
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}

.messenger-link__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.messenger-link__icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.messenger-link__icon--tg {
  background: #229ED9;
}
.messenger-link__icon--vk {
  background: #0077FF;
}
.messenger-link__icon--max {
  background: #7415f2;
}
.messenger-link__icon--max img {
  width: 26px;
  height: 26px;
}

.messenger-link__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.messenger-link__title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.messenger-link__subtitle {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 2px;
}

.messenger-link__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  color: #6b6b6b;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
.modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal__box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  -webkit-box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
}
@media (max-width: 480px) {
  .modal__box {
    padding: 24px;
  }
}
.modal__box--wide {
  max-width: 680px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.modal__close:hover {
  background-color: #f4f2ee;
}
.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 24px;
}

.project-card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dedad5;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .project-card:hover {
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .project-card:hover .project-card__img--main {
    opacity: 0;
  }
  .project-card:hover .project-card__img--plan {
    opacity: 1;
  }
  .project-card:hover .project-card__plan-label {
    opacity: 1;
  }
}

.project-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-card__img {
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  background-size: cover;
  background-position: center;
}
.project-card__img--main {
  opacity: 1;
  z-index: 1;
}
.project-card__img--plan {
  opacity: 0;
  z-index: 0;
}
.project-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-card__mark {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: #d93025;
  border-radius: 6px;
}

.project-card__plan-label {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #224737;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.project-card__body {
  padding: 20px;
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.project-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-card__desc {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.project-card__specs {
  margin-bottom: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.project-card__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dotted #dedad5;
  font-size: 14px;
}
.project-card__spec:last-child {
  border-bottom: none;
}

.project-card__spec-label {
  color: #6b6b6b;
}

.project-card__spec-value {
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
}

.project-card__footer {
  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;
  padding-top: 16px;
  border-top: 1px solid #dedad5;
  margin-top: auto;
  gap: 16px;
}
@media (max-width: 480px) {
  .project-card__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.project-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.project-card__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #224737;
  -webkit-transition: gap 0.25s ease;
  transition: gap 0.25s ease;
}
.project-card__link:hover {
  gap: 8px;
}
.project-card__link::after {
  content: "→";
}

.tabs {
  margin-bottom: 32px;
}

.tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tabs__btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #dedad5;
  border-radius: 6px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.tabs__btn:hover {
  border-color: #224737;
  color: #224737;
}
.tabs__btn.is-active {
  background: #224737;
  color: #ffffff;
  border-color: #224737;
}

.works-swiper {
  overflow: hidden;
}
.works-swiper .swiper-slide {
  width: 380px;
}
@media (max-width: 480px) {
  .works-swiper .swiper-slide {
    width: 280px;
  }
}

.breadcrumbs {
  font-size: 14px;
  color: #6b6b6b;
  padding: 16px 0;
}
@media (max-width: 480px) {
  .breadcrumbs {
    font-size: 12px;
  }
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: #a0a0a0;
  margin-left: 4px;
}

.breadcrumbs__link {
  color: #6b6b6b;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.breadcrumbs__link:hover {
  color: #224737;
}

.breadcrumbs__current {
  color: #1a1a1a;
  font-weight: 500;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .pagination {
    margin-top: 24px;
  }
}

.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.pagination__item:hover {
  border-color: #224737;
  color: #224737;
}
.pagination__item.is-active {
  background: #224737;
  color: #ffffff;
  border-color: #224737;
}
.pagination__item--next i, .pagination__item--prev i {
  font-size: 16px;
}

.hero {
  padding: 60px 0;
  background-color: #f4f2ee;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 30px 0;
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero__content {
  max-width: 560px;
}
@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.hero__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #224737;
  margin-bottom: 16px;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
}

.hero__subtitle {
  font-size: 18px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .hero__subtitle {
    font-size: 16px;
  }
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero__media {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.hero__image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.hero__play:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.hero__play svg {
  width: 64px;
  height: 64px;
}

.mortgage__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .mortgage__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.mortgage__banks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}
.mortgage__banks img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100px;
  height: auto;
}

.mortgage__bank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 14px;
  background-color: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 6px;
}

.mortgage__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .mortgage__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

.mortgage__stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #224737;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .mortgage__stat-value {
    font-size: 28px;
  }
}

.mortgage__stat-label {
  display: block;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .mortgage__stat-label {
    font-size: 12px;
  }
}

.mortgage__form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.mortgage__form-card h3 {
  margin-bottom: 8px;
}
.mortgage__form-card .text-muted {
  margin-bottom: 24px;
}

.section--mortgage-v2 {
  position: relative;
  overflow: hidden;
}
.section--mortgage-v2 .container {
  position: relative;
  z-index: 2;
}

.mortgage-v2__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1024px) {
  .mortgage-v2__content {
    background: rgba(244, 242, 238, 0.92);
    backdrop-filter: blur(2px);
    padding: 24px;
    border-radius: 12px;
    margin-top: 50%;
  }
}
@media (max-width: 480px) {
  .mortgage-v2__content {
    margin-top: 60vw;
    padding: 20px;
  }
}

.mortgage-v2__cta {
  margin-top: 32px;
}
@media (max-width: 480px) {
  .mortgage-v2__cta .btn {
    width: 100%;
  }
}

.mortgage-v2__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 1;
  background-image: url("/assets/img/ipoteka_bg.webp");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.mortgage-v2__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#f4f2ee), color-stop(15%, rgba(244, 242, 238, 0.85)), color-stop(35%, rgba(244, 242, 238, 0.4)), color-stop(60%, rgba(244, 242, 238, 0)));
  background: linear-gradient(to right, #f4f2ee 0%, rgba(244, 242, 238, 0.85) 15%, rgba(244, 242, 238, 0.4) 35%, rgba(244, 242, 238, 0) 60%);
}
@media (max-width: 1024px) {
  .mortgage-v2__bg {
    width: 100%;
    height: 45%;
    bottom: auto;
  }
  .mortgage-v2__bg::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(244, 242, 238, 0)), color-stop(85%, rgba(244, 242, 238, 0.6)), to(#f4f2ee));
    background: linear-gradient(to bottom, rgba(244, 242, 238, 0) 60%, rgba(244, 242, 238, 0.6) 85%, #f4f2ee 100%);
  }
}
.section--dark.section--stats {
  padding: 40px 0;
}
@media (max-width: 480px) {
  .section--dark.section--stats {
    padding: 24px 0;
  }
}

.stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
@media (max-width: 480px) {
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
}
@media (max-width: 360px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stats__item {
  padding: 16px;
}
@media (max-width: 480px) {
  .stats__item {
    padding: 8px;
  }
}

.stats__value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #86a899;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .stats__value {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .stats__value {
    font-size: 28px;
  }
}

.stats__label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
@media (max-width: 480px) {
  .stats__label {
    font-size: 12px;
  }
}

.advantages__header {
  margin-bottom: 40px;
  max-width: 640px;
}
@media (max-width: 480px) {
  .advantages__header {
    margin-bottom: 24px;
  }
}

.advantages__subtitle {
  font-size: 16px;
  color: #6b6b6b;
  margin-top: 12px;
  line-height: 1.6;
}

.advantages__cta {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 480px) {
  .advantages__cta {
    margin-top: 24px;
  }
}

.advantage-card {
  padding: 72px 44px 40px;
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 6px;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.advantage-card__bg-icon {
  position: absolute;
  bottom: -65px;
  right: -77px;
  font-size: 280px;
  line-height: 1;
  color: #1a1a1a;
  opacity: 0.04;
  pointer-events: none;
}

.advantage-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}

.advantage-card__text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.65;
}
.advantage-card__text strong {
  color: #1a1a1a;
  font-weight: 600;
}

.work-card {
  display: block;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.work-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.work-card:hover .work-card__title {
  color: #a8d030;
}
.work-card:hover .work-card__image img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.work-card__image {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
}
.work-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.work-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.work-card__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.useful-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .useful-info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .useful-info {
    grid-template-columns: 1fr;
  }
}

.useful-info__title-block {
  text-align: left;
}
.useful-info__title-block span {
  color: #224737;
}
@media (max-width: 1024px) {
  .useful-info__title-block {
    grid-column: 1/-1;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.useful-info__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .useful-info__title {
    font-size: 20px;
    text-align: center;
  }
}

.useful-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-align: center;
  padding: 16px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.useful-info__item:hover .useful-info__label {
  color: #224737;
  border-color: #224737;
}

.useful-info__icon {
  width: 50px;
  height: 50px;
}

.useful-info__label {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 3px;
  -webkit-transition: color 0.25s ease, border-color 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contacts-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .contacts-block__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contacts-block__map {
  border-radius: 12px;
  overflow: hidden;
}

.contacts-block__info h2 {
  margin-bottom: 40px;
  line-height: 1.15;
}
@media (max-width: 480px) {
  .contacts-block__info h2 {
    margin-bottom: 24px;
  }
}

.contacts-block__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #dedad5;
}

.contacts-block__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b6b6b;
  margin-bottom: 6px;
}

.contacts-block__value {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}
.contacts-block__value--phone {
  font-size: 24px;
  font-weight: 700;
}

.contacts-block__action {
  display: inline-block;
  font-size: 14px;
  color: #6b6b6b;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.contacts-block__action:hover {
  color: #224737;
}

.contacts-block__socials-wrap {
  padding-top: 24px;
}

.contacts-block__messengers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .contacts-block__messengers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section--cta-final {
  background-color: #224737;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNCIvPjwvc3ZnPg==");
}

.cta-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .cta-block {
    grid-template-columns: 1fr;
  }
}

.cta-block__person {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .cta-block__person {
    min-height: 360px;
  }
}

.cta-block__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-block__person-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #ffffff;
}

.cta-block__person-name {
  font-size: 18px;
  font-weight: 700;
}

.cta-block__person-role {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 2px;
}

.cta-block__form-wrap {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
}
@media (max-width: 480px) {
  .cta-block__form-wrap {
    padding: 24px;
  }
}
.cta-block__form-wrap h2 {
  margin-bottom: 8px;
}
.cta-block__form-wrap .section-subtitle {
  margin-bottom: 24px;
}

.cta-block__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cta-block__messengers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.cta-block__messengers span {
  font-size: 14px;
  color: #6b6b6b;
  white-space: nowrap;
}

.cta-block__messengers-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.cta-block__messenger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.cta-block__messenger svg {
  width: 42px;
  height: 42px;
}
.cta-block__messenger:hover {
  opacity: 0.8;
}
.cta-block__messenger--tg svg {
  fill: #2AABEE;
}

.cta-block__consent {
  font-size: 12px;
  color: #a0a0a0;
  margin-top: 16px;
}
.cta-block__consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-block__consent a:hover {
  color: #224737;
}

.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.85);
}
.video-popup.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-popup__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: #000;
  -webkit-box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5);
          box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5);
}

.video-popup__content iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-popup__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.video-popup__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.video-popup__close svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .video-popup__close {
    top: -44px;
    width: 36px;
    height: 36px;
  }
}

.page-header {
  padding: 32px 0 48px;
}
@media (max-width: 768px) {
  .page-header {
    padding: 16px 0 32px;
  }
}

.page-header__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 900px;
}
@media (max-width: 768px) {
  .page-header__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .page-header__title {
    font-size: 28px;
  }
}

.page-header__subtitle {
  font-size: 18px;
  color: #6b6b6b;
  line-height: 1.6;
  max-width: 760px;
}
@media (max-width: 480px) {
  .page-header__subtitle {
    font-size: 16px;
  }
}

.catalog__tabs {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .catalog__tabs {
    margin-bottom: 24px;
  }
  .catalog__tabs .tabs__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .catalog__tabs .tabs__list::-webkit-scrollbar {
    display: none;
  }
  .catalog__tabs .tabs__list {
    scrollbar-width: none;
  }
  .catalog__tabs .tabs__btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.catalog__grid .project-card {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.catalog__grid .project-card.is-hidden {
  display: none;
}

.catalog__empty {
  text-align: center;
  padding: 48px 24px;
  background: #eceae6;
  border-radius: 12px;
  border: 1px dashed #dedad5;
}
.catalog__empty p {
  color: #6b6b6b;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.catalog__more {
  margin-top: 40px;
  text-align: center;
}
.catalog__more[hidden] {
  display: none;
}
@media (max-width: 480px) {
  .catalog__more {
    margin-top: 24px;
  }
}

.catalog__more-btn {
  min-width: 240px;
}
@media (max-width: 480px) {
  .catalog__more-btn {
    min-width: 0;
  }
}

.project-detail {
  padding-top: 24px;
}

.project-detail__header {
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .project-detail__header {
    margin-bottom: 24px;
  }
}

.project-detail__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  max-width: 900px;
}
@media (max-width: 768px) {
  .project-detail__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .project-detail__title {
    font-size: 24px;
  }
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  grid-template-rows: 1fr auto;
  gap: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .project-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .project-hero {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .project-hero {
    border-radius: 12px;
  }
}

.project-hero__media {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .project-hero__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.project-gallery__main {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 16/10;
}
.project-gallery__main .swiper-wrapper {
  height: 100%;
}
.project-gallery__main .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project-gallery__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #f4f2ee;
}
@media (max-width: 1024px) {
  .project-gallery__main {
    aspect-ratio: 4/3;
  }
}

.project-gallery__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #224737;
  font-size: 22px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.project-gallery__nav:hover {
  background: #ffffff;
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}
.project-gallery__nav--prev {
  left: 12px;
}
.project-gallery__nav--next {
  right: 12px;
}

.project-hero__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  min-width: 0;
}
@media (max-width: 768px) {
  .project-hero__aside {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    gap: 10px;
  }
}

.project-hero__thumbs {
  grid-column: 1/-1;
  min-width: 0;
}
@media (max-width: 768px) {
  .project-hero__thumbs {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.project-gallery__thumbs {
  width: 100%;
}
.project-gallery__thumbs .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.project-gallery__thumbs .swiper-slide {
  width: 140px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  border: 2px solid transparent;
  background: #ffffff;
}
.project-gallery__thumbs .swiper-slide:hover {
  opacity: 0.85;
}
.project-gallery__thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: #224737;
}
@media (max-width: 480px) {
  .project-gallery__thumbs .swiper-slide {
    width: 100px;
    height: 75px;
  }
}
.project-gallery__thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-detail__specs {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 24px 12px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.project-detail__specs-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b6b6b;
  margin-bottom: 16px;
}

.project-specs {
  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;
}

.project-specs__row {
  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: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #dedad5;
  font-size: 13px;
}
.project-specs__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-specs__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #6b6b6b;
  margin: 0;
}
.project-specs__label i {
  font-size: 16px;
  color: #224737;
}

.project-specs__value {
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
  margin: 0;
}

.project-detail__pricing {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
}

.project-detail__price-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: #6b6b6b;
  margin-bottom: 4px;
}

.project-detail__price {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.project-detail__mortgage-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(34, 71, 55, 0.08);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.project-detail__mortgage-badge i {
  font-size: 22px;
  color: #224737;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.project-detail__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.project-detail__actions .btn {
  width: 100%;
  text-align: center;
  line-height: 1.3;
}

.project-packages {
  padding: 0 0 30px;
}
@media (max-width: 768px) {
  .project-packages {
    padding: 0 0 30px;
  }
}

.package-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  background: #ffffff;
  border: 2px solid #dedad5;
  border-radius: 12px;
  padding: 16px 28px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  width: 100%;
}
.package-card:hover {
  border-color: #224737;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.package-card:hover .package-card__more {
  gap: 12px;
  color: #224737;
}
.package-card--popular {
  border-color: #224737;
}

.package-card__num {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b6b6b;
  margin-bottom: 4px;
}

.package-card__name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.package-card__popular {
  position: absolute;
  top: -6px;
  right: -2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 6px 9px;
  background: #224737;
  color: #ffffff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 400;
}
.package-card__popular i {
  font-size: 14px;
}

.package-card__price-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 5px;
  font-size: 12px;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.package-card__price {
  font-size: 21px;
  font-weight: 600;
  color: #1a1a1a;
}

.package-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: auto;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
}
.drawer[hidden] {
  display: none !important;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-animation: drawerFadeIn 0.25s ease forwards;
          animation: drawerFadeIn 0.25s ease forwards;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 540px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation: drawerSlideIn 0.3s ease forwards;
          animation: drawerSlideIn 0.3s ease forwards;
  -webkit-box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
          box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}

@-webkit-keyframes drawerFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes drawerFadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes drawerSlideIn {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes drawerSlideIn {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.drawer__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  padding: 24px 24px 20px;
  border-bottom: 1px solid #dedad5;
  background: #ffffff;
}
@media (max-width: 480px) {
  .drawer__header {
    padding: 20px 16px 16px;
  }
}

.drawer__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f4f2ee;
  border-radius: 50%;
  font-size: 18px;
  color: #1a1a1a;
  z-index: 2;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.drawer__close:hover {
  background: #eceae6;
}

.drawer__num {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b6b6b;
  margin-bottom: 6px;
}

.drawer__header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding-right: 40px;
}

.drawer__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
@media (max-width: 480px) {
  .drawer__title {
    font-size: 22px;
  }
}

.drawer__price-block {
  text-align: right;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drawer__price-label {
  display: block;
  font-size: 12px;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.drawer__price {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  white-space: nowrap;
}

.drawer__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  padding: 24px;
}
@media (max-width: 480px) {
  .drawer__body {
    padding: 20px 16px;
  }
}
.drawer__body::-webkit-scrollbar {
  width: 6px;
}
.drawer__body::-webkit-scrollbar-track {
  background: transparent;
}
.drawer__body::-webkit-scrollbar-thumb {
  background: #dedad5;
  border-radius: 3px;
}
.drawer__body {
  scrollbar-width: thin;
  scrollbar-color: #dedad5 transparent;
}

.drawer__description {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.55;
  margin-bottom: 24px;
}

.drawer__section {
  margin-bottom: 24px;
}
.drawer__section:last-child {
  margin-bottom: 0;
}
.drawer__section--communications {
  padding-top: 24px;
  border-top: 1px solid #dedad5;
}

.drawer__section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.drawer__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.drawer__list li {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.55;
  margin-bottom: 8px;
}
.drawer__list li:last-child {
  margin-bottom: 0;
}

.package-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-items__row {
  padding: 10px 0;
  border-bottom: 1px dashed #dedad5;
  font-size: 14px;
  line-height: 1.5;
}
.package-items__row:last-child {
  border-bottom: none;
}

.package-items__label {
  font-weight: 700;
  color: #1a1a1a;
  margin-right: 6px;
}

.package-items__value {
  color: #6b6b6b;
}

.drawer__footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 16px 24px;
  border-top: 1px solid #dedad5;
  background: #f4f2ee;
}
.drawer__footer .btn {
  width: 100%;
}
@media (max-width: 480px) {
  .drawer__footer {
    padding: 16px;
  }
}

.section--turnkey {
  padding-top: 30px;
}
@media (max-width: 768px) {
  .section--turnkey {
    padding-top: 0px;
  }
}

.turnkey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .turnkey {
    padding: 25px;
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .turnkey {
    grid-template-columns: 1fr;
  }
}

.turnkey__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.turnkey__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.turnkey__list li i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  color: #224737;
  margin-top: 2px;
}

.turnkey__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.turnkey__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-description h2 {
  margin-bottom: 24px;
}

.project-description__content {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
}
.project-description__content p {
  margin-bottom: 16px;
}
.project-description__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.project-description__content ul li {
  margin-bottom: 8px;
}
.project-description__content strong {
  font-weight: 700;
  color: #1a1a1a;
}

.photo-gallery-section {
  padding-bottom: 24px;
  border-bottom: 1px solid #dedad5;
  margin-bottom: -80px;
}
@media (max-width: 480px) {
  .photo-gallery-section {
    padding-bottom: 16px;
    margin-bottom: -24px;
  }
}

.photo-gallery-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 16px;
}
.photo-gallery-section__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #dedad5;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
@media (max-width: 480px) {
  .photo-gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }
}

.photo-gallery__item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.photo-gallery__item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gslide-title {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0 !important;
  padding: 8px 0 0 !important;
}

.gslide-desc {
  display: none !important;
}

.gdesc-inner {
  padding: 0 !important;
  background: none !important;
}

.gslide-description {
  background: none !important;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}

.turnkey__list--detailed {
  gap: 16px;
  margin: 24px 0 32px;
}
.turnkey__list--detailed li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.turnkey__list--detailed li i {
  margin-top: 4px;
  font-size: 22px;
}
.turnkey__list--detailed li strong {
  color: #1a1a1a;
  font-weight: 700;
}

.project-septik {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .project-septik {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.project-septik h2 {
  margin: 0 0 16px;
}
.project-septik .septiki-placeholder {
  width: 100%;
  height: 280px;
  background: #f4f2ee;
  border: 2px dashed #cfc8bd;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  color: #a89e8d;
}
.project-septik .septiki-placeholder i {
  font-size: 36px;
}
.project-septik .septiki-placeholder span {
  font-size: 13px;
}

.project-septik__lead {
  margin: 0 0 16px;
}

.project-septik__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}
.project-septik__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.project-septik__list li i {
  font-size: 18px;
  color: #224737;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.project-septik__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.works-grid {
  row-gap: 32px;
}

.works-socials-card {
  background: #224737;
  color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.works-socials-card__header {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  margin-bottom: 16px;
}
.works-socials-card__header i {
  font-size: 24px;
  color: #a8d030;
}

.works-socials-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.35;
}

.works-socials-card__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.works-social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.works-social-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.works-social-link:hover .works-social-link__arrow {
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}

.works-social-link__badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.works-social-link__badge img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.works-social-link__badge--vk {
  background: #0077FF;
}
.works-social-link__badge--tg {
  background: #229ED9;
}

.works-social-link__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.works-social-link__count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}

.works-social-link__arrow {
  margin-left: auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.works-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dedad5;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
}
.works-card:hover {
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.works-card:hover .works-card__link {
  color: #224737;
}
.works-card:hover .works-card__image img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.works-card__image {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.works-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.works-card__body {
  padding: 16px 20px 20px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.works-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.works-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 12px;
}
.works-card__meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.works-card__meta i {
  font-size: 14px;
}

.works-card__footer {
  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;
  padding-top: 12px;
  border-top: 1px solid #dedad5;
  margin-top: auto;
  font-size: 14px;
}

.works-card__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #6b6b6b;
}
.works-card__date i {
  font-size: 14px;
}

.works-card__link {
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.work-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 8px;
}
.work-detail__meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.work-detail__meta i {
  font-size: 16px;
}

.work-detail-gallery {
  padding-bottom: 32px;
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .work-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 480px) {
  .work-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.work-gallery-grid__item {
  display: block;
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  position: relative;
}
.work-gallery-grid__item--main {
  grid-row: 1/3;
}
@media (max-width: 768px) {
  .work-gallery-grid__item--main {
    grid-row: auto;
    grid-column: 1/-1;
  }
}
.work-gallery-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.work-gallery-grid__item:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.work-description {
  margin-bottom: 32px;
}

.work-description__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b6b6b;
  margin-bottom: 16px;
}

.work-description__text {
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 12px;
}
.work-description__text h2, .work-description__text h3, .work-description__text h4 {
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.work-description__text h2 {
  font-size: 28px;
  font-weight: 700;
}
.work-description__text h3 {
  font-size: 24px;
  font-weight: 700;
}
.work-description__text h4 {
  font-size: 18px;
  font-weight: 700;
}
.work-description__text p {
  margin-bottom: 0;
}
.work-description__text ul, .work-description__text ol {
  margin: 0 0 20px 20px;
  padding: 0;
}
.work-description__text ul li, .work-description__text ol li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.work-description__text ul li {
  list-style: disc;
}
.work-description__text ol li {
  list-style: disc;
}
.work-description__text a {
  color: #224737;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.work-description__text a:hover {
  color: #246b34;
}
.work-description__text strong {
  font-weight: 700;
  color: #1a1a1a;
}
.work-description__text em {
  font-style: italic;
}
.work-description__text blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid #224737;
  background: #f4f2ee;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #6b6b6b;
}

.work-description__details {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
}

.work-specs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .work-specs-row {
    gap: 8px;
  }
}

.work-spec-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #dedad5;
  border-radius: 100px;
  background: #ffffff;
  white-space: nowrap;
}
.work-spec-badge i {
  font-size: 18px;
  color: #224737;
}
@media (max-width: 480px) {
  .work-spec-badge {
    padding: 8px 12px;
  }
  .work-spec-badge i {
    font-size: 16px;
  }
}

.work-spec-badge__label {
  font-size: 14px;
  color: #6b6b6b;
}
@media (max-width: 480px) {
  .work-spec-badge__label {
    font-size: 12px;
  }
}

.work-spec-badge__value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
@media (max-width: 480px) {
  .work-spec-badge__value {
    font-size: 14px;
  }
}

.page-header--center {
  text-align: center;
}
.page-header--center .page-header__subtitle {
  margin-left: auto;
  margin-right: auto;
}
.page-header--center h1 {
  margin-left: auto;
  margin-right: auto;
}

.about-hero {
  padding-bottom: 32px;
}

.about-hero--full {
  padding-bottom: 0;
}
.about-hero--full .about-hero__image {
  border-radius: 0;
  height: 560px;
}
@media (max-width: 768px) {
  .about-hero--full .about-hero__image {
    height: 420px;
  }
}
@media (max-width: 480px) {
  .about-hero--full .about-hero__image {
    height: 320px;
  }
}

.about-hero__image {
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  position: relative;
}
@media (max-width: 768px) {
  .about-hero__image {
    height: 360px;
  }
}
@media (max-width: 480px) {
  .about-hero__image {
    height: 280px;
  }
}
.about-hero__image img {
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

.about-history {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .about-history {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-history__content h2 {
  margin-bottom: 24px;
}
.about-history__content p {
  font-size: 16px;
  line-height: 1.65;
  color: #6b6b6b;
  margin-bottom: 16px;
}
.about-history__content p strong {
  color: #1a1a1a;
  font-weight: 600;
}
.about-history__content h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.about-timeline {
  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;
  border-left: 2px solid #224737;
  padding-left: 24px;
  margin-left: 8px;
}

.about-timeline__item {
  position: relative;
  padding: 12px 0;
}
.about-timeline__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #224737;
  border-radius: 50%;
}

.about-timeline__year {
  font-size: 16px;
  font-weight: 700;
  color: #224737;
  margin-right: 8px;
}

.about-timeline__text {
  font-size: 14px;
  color: #6b6b6b;
}

.about-excursion-card {
  background: #eceae6;
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.about-excursion-card h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.about-excursion-card p {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-director {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .about-director {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-director__photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-director__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .about-director__photo {
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 50%;
  }
}

.about-director__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.about-director__name {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
@media (max-width: 480px) {
  .about-director__name {
    font-size: 24px;
  }
}

.about-director__text {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-director__credentials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.about-director__credential {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.about-director__credential i {
  font-size: 22px;
  color: #224737;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.about-rspp {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .about-rspp {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-rspp__image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dedad5;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.about-rspp__image:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.about-rspp__image img {
  width: 100%;
  height: auto;
}

.about-rspp__content h2 {
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-rspp__content p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.6;
}

.about-requisites {
  border: 1px solid #dedad5;
  border-radius: 12px;
  overflow: hidden;
}

.about-requisites__summary {
  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;
  padding: 20px 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  list-style: none;
}
.about-requisites__summary::-webkit-details-marker {
  display: none;
}
.about-requisites__summary h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.about-requisites__summary i {
  font-size: 20px;
  color: #6b6b6b;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
[open] > .about-requisites__summary i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.about-requisites__body {
  padding: 0 24px 24px;
  border-top: 1px solid #dedad5;
}

.about-requisites__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 16px;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}
.about-requisites__grid strong {
  color: #1a1a1a;
  font-weight: 600;
}
@media (max-width: 480px) {
  .about-requisites__grid {
    grid-template-columns: 1fr;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
}
.news-card:hover {
  border-color: rgba(34, 71, 55, 0.3);
}
.news-card:hover .news-card__image img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.news-card:hover .news-card__more i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.news-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f4f2ee;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.news-card__body {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 24px;
  gap: 12px;
}
@media (max-width: 480px) {
  .news-card__body {
    padding: 16px;
  }
}

.news-card__date {
  font-size: 12px;
  color: #6b6b6b;
  text-transform: lowercase;
}

.news-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

.news-card__excerpt {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__more {
  margin-top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #224737;
  padding-top: 8px;
}
.news-card__more i {
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.article {
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .article {
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .article {
    padding-bottom: 30px;
  }
}

.article__cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/7;
}
.article__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .article__cover {
    aspect-ratio: 16/10;
    margin-bottom: 24px;
  }
}

.article__body {
  max-width: 760px;
  margin: 0 auto;
}

.article__date {
  display: block;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.article__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .article__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .article__title {
    font-size: 28px;
  }
}

.article__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #6b6b6b;
  margin-bottom: 32px;
}

.article__content {
  font-size: 16px;
  line-height: 1.75;
  color: #1a1a1a;
}
.article__content h2, .article__content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.article__content h2 {
  font-size: 28px;
  font-weight: 700;
}
.article__content h3 {
  font-size: 24px;
  font-weight: 700;
}
.article__content p {
  margin-bottom: 16px;
}
.article__content ul, .article__content ol {
  margin: 0 0 20px 20px;
}
.article__content ul li, .article__content ol li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.article__content ul li {
  list-style: disc;
}
.article__content ol li {
  list-style: decimal;
}
.article__content a {
  color: #224737;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article__content a:hover {
  color: #246b34;
}
.article__content strong {
  font-weight: 700;
  color: #1a1a1a;
}
.article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.article__content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid #224737;
  background: #f4f2ee;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #6b6b6b;
}

.article__cta {
  margin-top: 48px;
  padding: 32px;
  background: #f4f2ee;
  border-radius: 16px;
  text-align: center;
}
.article__cta h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.article__cta p {
  color: #6b6b6b;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .article__cta {
    padding: 24px 16px;
  }
}

.news-related__title {
  font-size: 36px;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 480px) {
  .news-related__title {
    font-size: 26px;
  }
}

.feedback-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .feedback-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.feedback-header__text h1 {
  margin-bottom: 12px;
}

.feedback-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feedback-widget {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
  text-decoration: none;
  height: 50px;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.feedback-widget iframe {
  display: block;
  border: 0;
}
.feedback-widget:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feedback-widget--yandex {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 150px;
}
.feedback-widget--yandex:hover {
  -webkit-transform: none;
          transform: none;
}

.feedback-widget--vk {
  background: linear-gradient(135deg, #07f 0%, #0077ff 100%);
  color: #ffffff;
  border-color: transparent;
}
.feedback-widget--vk .feedback-widget__arrow {
  margin-left: 8px;
  font-size: 16px;
  opacity: 0.9;
}

.feedback-widget__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.feedback-widget__icon img {
  width: 18px;
  height: 18px;
  display: block;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.feedback-widget__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.2;
}

.feedback-widget__label {
  font-size: 11px;
  opacity: 0.85;
}

.feedback-widget__value {
  font-size: 13px;
  font-weight: 600;
}

.yandex-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.yandex-badge:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.yandex-badge__rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.yandex-badge__rating i {
  font-size: 22px;
  color: #ff9000;
}

.yandex-badge__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.25;
}

.yandex-badge__title {
  font-size: 14px;
  font-weight: 600;
}

.yandex-badge__source {
  font-size: 12px;
  color: #6b6b6b;
}

.feedback-paper__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .feedback-paper__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}

.feedback-paper__title {
  font-size: 36px;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .feedback-paper__title {
    font-size: 26px;
  }
}

.feedback-paper__subtitle {
  font-size: 16px;
  color: #6b6b6b;
  max-width: 640px;
  line-height: 1.55;
  margin: 0;
}

.feedback-paper__nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.feedback-paper__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dedad5;
  color: #1a1a1a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.feedback-paper__arrow i {
  font-size: 18px;
}
.feedback-paper__arrow:hover {
  background: #224737;
  color: #ffffff;
  border-color: #224737;
}
.feedback-paper__arrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.feedback-paper-swiper {
  overflow: hidden;
}
.feedback-paper-swiper .swiper-slide {
  width: 260px;
  height: auto;
}
@media (max-width: 480px) {
  .feedback-paper-swiper .swiper-slide {
    width: 200px;
  }
}

.feedback-paper__item {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dedad5;
  background: #f4f2ee;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.feedback-paper__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.feedback-paper__item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.feedback-paper__item:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.feedback-paper__item:hover .feedback-paper__item-zoom {
  opacity: 1;
}

.feedback-paper__item-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(34, 71, 55, 0.85);
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.feedback-paper__item-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.35;
}

.feedback-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .feedback-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.feedback-intro {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .feedback-intro {
    position: static;
  }
}

.feedback-intro__card {
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.feedback-intro__photo {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.feedback-intro__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback-intro__text {
  text-align: left;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}
.feedback-intro__text p {
  margin-bottom: 8px;
}
.feedback-intro__text p:last-child {
  margin-bottom: 0;
}

.feedback-intro__signature {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px dashed #dedad5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
}

.feedback-intro__signature-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.feedback-intro__signature-role {
  font-size: 12px;
  color: #6b6b6b;
}

.feedback-intro__btn {
  width: 100%;
  margin-top: 20px;
}
.feedback-intro__btn i {
  font-size: 18px;
  margin-right: 6px;
}

.feedback-list {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.feedback-list__head {
  padding-bottom: 16px;
  border-bottom: 1px solid #dedad5;
  margin-bottom: 8px;
}

.feedback-list__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.feedback-list__count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  background: rgba(168, 208, 48, 0.25);
  color: #224737;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
}

.feedback-list__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 480px) {
  .review-card {
    padding: 20px 16px;
  }
}

.review-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .review-card__head {
    grid-template-columns: auto 1fr;
    row-gap: 8px;
  }
}

.review-card__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f2ee;
  color: #6b6b6b;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.review-card__avatar i {
  font-size: 28px;
  line-height: 1;
}

.review-card__meta {
  min-width: 0;
}

.review-card__line {
  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: 8px;
  line-height: 1.3;
}

.review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.review-card__dot {
  color: #6b6b6b;
}

.review-card__date {
  font-size: 14px;
  color: #6b6b6b;
}

.review-card__rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1px;
}
.review-card__rating i {
  font-size: 14px;
  color: #e0ddd7;
}
.review-card__rating i.is-active {
  color: #f5b700;
}

.review-card__region {
  margin-top: 4px;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.4;
}

.review-card__project {
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
  color: #1a1a1a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .review-card__project {
    grid-column: 1/-1;
    text-align: left;
    white-space: normal;
  }
}
.review-card__project:hover .review-card__project-title {
  color: #224737;
}

.review-card__project-label {
  display: block;
  color: #6b6b6b;
  font-size: 12px;
  margin-bottom: 2px;
}

.review-card__project-title {
  display: block;
  font-weight: 700;
  color: #224737;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.review-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.review-card__text {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.65;
  margin: 0;
  white-space: pre-line;
}

.review-card__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .review-card__photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card__photo {
  display: block;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.review-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.review-card__photo:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.review-card__photo:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.order-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.order-section-head h2 {
  margin: 8px 0 16px;
}
.order-section-head p {
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.6;
}

.order-section-head__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #224737;
  padding: 6px 14px;
  background: rgba(168, 208, 48, 0.18);
  border-radius: 100px;
}

.order-steps {
  list-style: none;
  counter-reset: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .order-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.order-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 24px 32px;
  background: #f4f2ee;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .order-step {
    gap: 16px;
    padding: 20px 16px;
  }
}

.order-step__number {
  font-size: 64px;
  font-weight: 800;
  color: rgba(34, 71, 55, 0.28);
  line-height: 1;
  letter-spacing: -2px;
  min-width: 70px;
}
@media (max-width: 480px) {
  .order-step__number {
    font-size: 48px;
    min-width: 54px;
  }
}

.order-step__body {
  min-width: 0;
  padding-top: 4px;
}

.order-step__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.order-step__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dedad5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #049858;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .order-step__icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

.order-step__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.order-step__text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.55;
  margin: 0;
}

.order-payment-section {
  color: #ffffff;
}

.order-payment {
  max-width: 960px;
  margin: 0 auto;
}

.order-payment__head {
  text-align: center;
  margin-bottom: 40px;
}

.order-payment__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #a8d030;
  padding: 6px 14px;
  background: rgba(168, 208, 48, 0.15);
  border: 1px solid rgba(168, 208, 48, 0.3);
  border-radius: 100px;
  margin-bottom: 16px;
}

.order-payment__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .order-payment__title {
    font-size: 28px;
  }
}

.order-payment__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.order-payment__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 768px) {
  .order-payment__grid {
    grid-template-columns: 1fr;
  }
}

.order-payment__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(6px);
}
@media (max-width: 480px) {
  .order-payment__card {
    padding: 24px;
  }
}

.order-payment__value {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: #a8d030;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.order-payment__value span {
  font-size: 36px;
  font-weight: 700;
  margin-left: 4px;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .order-payment__value {
    font-size: 56px;
  }
  .order-payment__value span {
    font-size: 28px;
  }
}

.order-payment__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.order-payment__card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
}

.order-payment__plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #a8d030;
  color: #224737;
  font-size: 24px;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .order-payment__plus {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.order-payment__note {
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(168, 208, 48, 0.1);
  border: 1px solid rgba(168, 208, 48, 0.25);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}
.order-payment__note i {
  font-size: 20px;
  color: #a8d030;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1px;
}

.order-docs {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .order-docs {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.order-docs__preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .order-docs__preview {
    max-width: 340px;
    margin: 0 auto;
  }
}

.order-docs__paper {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 12px;
  padding: 28px 24px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.order-docs__paper:hover {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.order-docs__paper::before {
  content: "";
  position: absolute;
  inset: 12px -6px -6px 12px;
  background: #eceae6;
  border: 1px solid #dedad5;
  border-radius: 12px;
  z-index: -1;
}

.order-docs__paper-head {
  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;
  padding-bottom: 12px;
  border-bottom: 1px solid #dedad5;
  margin-bottom: 20px;
}

.order-docs__paper-brand {
  font-size: 12px;
  font-weight: 700;
  color: #224737;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-docs__paper-type {
  font-size: 10px;
  font-weight: 600;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-docs__paper-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.order-docs__paper-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.order-docs__paper-lines span {
  display: block;
  height: 4px;
  background: #dedad5;
  border-radius: 2px;
}
.order-docs__paper-lines span:nth-child(2) {
  width: 85%;
}
.order-docs__paper-lines span:nth-child(3) {
  width: 92%;
}
.order-docs__paper-lines span:nth-child(4) {
  width: 70%;
}
.order-docs__paper-lines span:nth-child(5) {
  width: 88%;
}
.order-docs__paper-lines span:nth-child(6) {
  width: 60%;
}

.order-docs__paper-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  border: 2px solid #224737;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  color: #224737;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  opacity: 0.85;
}
.order-docs__paper-stamp i {
  font-size: 20px;
}
.order-docs__paper-stamp span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

.order-docs__body-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}

.order-docs__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.order-docs__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.order-docs__list i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 71, 55, 0.08);
  color: #224737;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.order-docs__list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.order-docs__list span {
  display: block;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.5;
}

.order-docs__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.order-docs__actions .btn i {
  font-size: 18px;
  margin-right: 6px;
}
@media (max-width: 480px) {
  .order-docs__actions .btn {
    width: 100%;
  }
}

.order-docs__meta {
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
}

.order-guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dedad5;
}
@media (max-width: 768px) {
  .order-guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
}

.order-guarantee__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(168, 208, 48, 0.18);
  color: #224737;
  font-size: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .order-guarantee__icon {
    margin: 0 auto;
  }
}

.order-guarantee__body h2 {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .order-guarantee__body h2 {
    font-size: 22px;
  }
}
.order-guarantee__body p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0;
}

.order-faq {
  max-width: 820px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.order-faq__item {
  border: 1px solid #dedad5;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  -webkit-transition: border-color 0.25s ease;
  transition: border-color 0.25s ease;
}
.order-faq__item[open] {
  border-color: rgba(34, 71, 55, 0.4);
}

.order-faq__summary {
  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: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.order-faq__summary::-webkit-details-marker {
  display: none;
}
.order-faq__summary:hover {
  background: #f4f2ee;
}
.order-faq__summary i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  color: #6b6b6b;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
[open] > .order-faq__summary i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #224737;
}

.order-faq__q {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.order-faq__a {
  padding: 0 24px 24px;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.65;
  border-top: 1px solid #dedad5;
  padding-top: 16px;
}
.order-faq__a a {
  color: #224737;
  font-weight: 600;
  border-bottom: 1px solid rgba(34, 71, 55, 0.3);
}
.order-faq__a a:hover {
  border-bottom-color: #224737;
}

.ipoteka-hero {
  padding: 32px 0;
}
@media (max-width: 480px) {
  .ipoteka-hero {
    padding: 16px 0;
  }
}

.ipoteka-hero__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: #224737;
  min-height: 400px;
}
@media (max-width: 1024px) {
  .ipoteka-hero__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.ipoteka-hero__image {
  position: relative;
  overflow: hidden;
}
.ipoteka-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .ipoteka-hero__image {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 480px) {
  .ipoteka-hero__image {
    aspect-ratio: 4/3;
  }
}

.ipoteka-hero__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.ipoteka-hero__content {
  padding: 40px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .ipoteka-hero__content {
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .ipoteka-hero__content {
    padding: 24px;
  }
}

.ipoteka-hero__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}
.ipoteka-hero__title span {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .ipoteka-hero__title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .ipoteka-hero__title {
    font-size: 26px;
  }
}

.ipoteka-hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .ipoteka-hero__subtitle {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

.ipoteka-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ipoteka-hero__actions .btn--primary {
  background: #ffffff;
  color: #224737;
}
.ipoteka-hero__actions .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}
.ipoteka-hero__actions .btn--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}
.ipoteka-hero__actions .btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 480px) {
  .ipoteka-hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ipoteka-hero__actions .btn {
    width: 100%;
  }
}

.ipoteka-benefits {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ipoteka-benefit {
  background: #f4f2ee;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.ipoteka-benefit__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #dedad5;
}
.ipoteka-benefit__icon i {
  font-size: 26px;
  color: #224737;
}

.ipoteka-benefit__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ipoteka-benefit__text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.55;
}

.bank-card {
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.bank-card:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bank-card__header {
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dedad5;
}
.bank-card__header img {
  height: 28px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.bank-card__body {
  padding: 16px 24px 20px;
}

.bank-card__row {
  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;
  padding: 7px 0;
  font-size: 14px;
}
.bank-card__row:not(:last-child) {
  border-bottom: 1px dashed #dedad5;
}

.bank-card__label {
  color: #6b6b6b;
}

.bank-card__value {
  font-weight: 600;
  color: #1a1a1a;
}
.bank-card__value--accent {
  color: #224737;
  font-weight: 700;
}

.ipoteka-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .ipoteka-info {
    grid-template-columns: 1fr;
  }
}

.ipoteka-info__text {
  margin-top: 24px;
}
.ipoteka-info__text p {
  font-size: 16px;
  line-height: 1.65;
  color: #6b6b6b;
  margin-bottom: 16px;
}
.ipoteka-info__text p:last-child {
  margin-bottom: 0;
}
.ipoteka-info__text p strong {
  color: #1a1a1a;
  font-weight: 600;
}

.ipoteka-info__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ipoteka-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ipoteka-form-section {
  background: #eceae6;
}

.ipoteka-form-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ipoteka-form-block__desc {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 24px;
  line-height: 1.55;
}

.ipoteka-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ipoteka-form .form__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 150px;
}
.ipoteka-form .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-top: 15px;
  padding-bottom: 15px;
}
.ipoteka-form select.form__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .ipoteka-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ipoteka-form .form__field {
    min-width: 100%;
  }
  .ipoteka-form .btn {
    width: 100%;
  }
}

.ipoteka-form-block .form__consent-text {
  margin-top: 16px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

.office-card {
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.office-card__header {
  padding: 24px 24px 16px;
}

.office-card__type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #224737;
  margin-bottom: 8px;
}
.office-card__type i {
  font-size: 16px;
}

.office-card__city {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.office-card__body {
  padding: 0 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.office-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.5;
}
.office-card__row i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  color: #224737;
  margin-top: 2px;
}
.office-card__row a {
  font-weight: 600;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.office-card__row a:hover {
  color: #224737;
}

.office-card__map {
  border-top: 1px solid #dedad5;
  margin-top: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
}
.office-card__map iframe {
  display: block;
  width: 100%;
  margin-top: auto;
  position: relative;
  bottom: 0;
}

.contacts-invite-section {
  padding: 0 0 60px;
}
@media (max-width: 768px) {
  .contacts-invite-section {
    padding: 0 0 50px;
  }
}
@media (max-width: 480px) {
  .contacts-invite-section {
    padding: 0 0 30px;
  }
}

.contacts-invite {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 560px;
}
@media (max-width: 768px) {
  .contacts-invite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    min-height: 0;
    border-radius: 0;
    overflow: visible;
  }
}

.contacts-invite__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/invite.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
  width: 50%;
  right: 0;
  left: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .contacts-invite__bg {
    position: relative;
    inset: auto;
    aspect-ratio: 16/10;
    border-radius: 12px;
    width: 100%;
  }
}

.contacts-invite__content {
  position: relative;
  z-index: 2;
  background: #224737;
  color: #ffffff;
  padding: 40px;
  width: 58%;
  min-height: 560px;
  border-radius: 0 50px 50px 0;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .contacts-invite__content {
    width: 100%;
    min-height: 0;
    border-radius: 12px;
    padding: 28px;
  }
}
@media (max-width: 480px) {
  .contacts-invite__content {
    padding: 24px 20px;
  }
}

.contacts-invite__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(168, 208, 48, 0.18);
  border: 1px solid rgba(168, 208, 48, 0.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a8d030;
  margin-bottom: 16px;
}
.contacts-invite__badge i {
  font-size: 14px;
}

.contacts-invite__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .contacts-invite__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .contacts-invite__title {
    font-size: 24px;
  }
}

.contacts-invite__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contacts-invite__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.contacts-invite__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.contacts-invite__list i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 22px;
  color: #a8d030;
  margin-top: 2px;
}
.contacts-invite__list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.contacts-invite__list span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.contacts-invite__regions {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.contacts-invite__regions-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.contacts-invite__regions-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.contacts-invite__regions-list span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.contacts-invite__regions-list i {
  font-size: 15px;
  color: #a8d030;
}

.contacts-invite__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contacts-invite__actions .btn--primary {
  background: #a8d030;
  color: #224737;
}
.contacts-invite__actions .btn--primary:hover {
  background: rgb(178.4811023622, 213.6622047244, 72.9377952756);
}
@media (max-width: 480px) {
  .contacts-invite__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .contacts-invite__actions .btn {
    width: 100%;
  }
}

.contacts-invite__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.contacts-invite__phone:hover {
  color: #a8d030;
}
.contacts-invite__phone i {
  font-size: 22px;
}
@media (max-width: 480px) {
  .contacts-invite__phone {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contacts-messengers-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contacts-messengers-block .section-subtitle {
  margin: 12px auto 32px;
}

.contacts-messengers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .contacts-messengers-grid {
    grid-template-columns: 1fr;
  }
}

.page-septiki .septiki-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .page-septiki .septiki-hero {
    grid-template-columns: 1fr;
  }
}
.page-septiki .septiki-hero__actions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-septiki .septiki-block {
  max-width: 800px;
}
.page-septiki .septiki-block h2 {
  margin-bottom: 12px;
}
.page-septiki .septiki-why {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .page-septiki .septiki-why {
    grid-template-columns: 1fr;
  }
}
.page-septiki .septiki-why h2 {
  margin-bottom: 12px;
}
.page-septiki .septiki-why p + p {
  margin-top: 12px;
}
.page-septiki .septiki-why .septiki-why__media {
  border-radius: 12px;
  overflow: hidden;
}
.page-septiki .septiki-models {
  margin-top: 24px;
}
.page-septiki .septiki-model {
  background: #ffffff;
  border: 1px solid #dedad5;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.page-septiki .septiki-model:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.page-septiki .septiki-model .septiki-placeholder {
  width: 100%;
  height: 160px;
  margin-bottom: 12px;
}
.page-septiki .septiki-model__title {
  font-size: 18px;
  margin: 0 0 8px;
}
.page-septiki .septiki-model__desc {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
}
.page-septiki .septiki-pickup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .page-septiki .septiki-pickup {
    grid-template-columns: 1fr;
  }
}
.page-septiki .septiki-pickup h2 {
  margin-bottom: 12px;
}
.page-septiki .septiki-pickup .septiki-pickup__media {
  border-radius: 12px;
  overflow: hidden;
}
.page-septiki .septiki-pickup__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.page-septiki .septiki-pickup__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.page-septiki .septiki-pickup__list li i {
  font-size: 22px;
  color: #224737;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-septiki .septiki-link-projects {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.page-septiki .septiki-link-projects h2 {
  color: #ffffff;
  margin-bottom: 12px;
}
.page-septiki .septiki-link-projects p {
  color: rgba(255, 255, 255, 0.85);
}
.page-septiki .septiki-link-projects__actions {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-septiki .septiki-placeholder {
  width: 100%;
  height: 320px;
  background: #f4f2ee;
  border: 2px dashed #cfc8bd;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  color: #a89e8d;
}
.page-septiki .septiki-placeholder i {
  font-size: 40px;
}
.page-septiki .septiki-placeholder span {
  font-size: 13px;
}
.page-septiki .septiki-placeholder--small {
  height: 140px;
}
.page-septiki .septiki-placeholder--small i {
  font-size: 28px;
}
.page-septiki .septiki-placeholder--logo {
  height: 280px;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}

.legal__header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dedad5;
}

.legal__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .legal__title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .legal__title {
    font-size: 24px;
  }
}

.legal__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b6b6b;
}

.legal__dot {
  color: #a0a0a0;
}

.legal__body {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
}
.legal__body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.25;
  padding-top: 8px;
  border-top: 1px solid #dedad5;
}
.legal__body h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
@media (max-width: 480px) {
  .legal__body h2 {
    font-size: 18px;
  }
}
.legal__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.legal__body p {
  margin-bottom: 12px;
  color: #1a1a1a;
}
.legal__body ul, .legal__body ol {
  margin: 0 0 16px 20px;
}
.legal__body ul li, .legal__body ol li {
  margin-bottom: 8px;
}
.legal__body ul li ul, .legal__body ul li ol, .legal__body ol li ul, .legal__body ol li ol {
  margin-top: 8px;
}
.legal__body ul li {
  list-style: disc;
}
.legal__body ol li {
  list-style: decimal;
}
.legal__body a {
  color: #224737;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.legal__body a:hover {
  color: #246b34;
}
.legal__body strong {
  color: #1a1a1a;
  font-weight: 600;
}

.legal__table {
  margin: 16px 0 24px;
  border: 1px solid #dedad5;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.legal__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #dedad5;
}
.legal__row:last-child {
  border-bottom: 0;
}
@media (max-width: 768px) {
  .legal__row {
    grid-template-columns: 1fr;
  }
}

.legal__cell {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.55;
}
.legal__cell ul {
  margin: 0 0 0 16px;
}
.legal__cell ul li {
  margin-bottom: 6px;
  list-style: disc;
}
.legal__cell ul li:last-child {
  margin-bottom: 0;
}
.legal__cell--head {
  background: #f4f2ee;
  font-weight: 700;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .legal__cell--head {
    border-bottom: 1px solid #dedad5;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 640px;
  margin: 0 auto;
  z-index: 150;
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
}

.cookie-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #224737;
  color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
}
@media (max-width: 480px) {
  .cookie-banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
    padding: 16px;
  }
}

.cookie-banner__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168, 208, 48, 0.18);
  color: #a8d030;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
}
@media (max-width: 480px) {
  .cookie-banner__icon {
    margin: 0 auto;
    display: none;
  }
  .cookie-banner__text {
    font-size: 11px;
    line-height: 1.3;
  }
}

.cookie-banner__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.cookie-banner__text a {
  color: #a8d030;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover {
  color: #ffffff;
}
@media (max-width: 480px) {
  .cookie-banner__text {
    font-size: 11px;
    line-height: 1.3;
  }
}
.cookie-banner__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #a8d030;
  color: #224737;
}
.cookie-banner__btn:hover {
  background: rgb(176.7342519685, 212.718503937, 68.781496063);
}

.footer__legal-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}/*# sourceMappingURL=main.css.map */