@charset "UTF-8";
/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #dfe6e9;
}

a {
  background-color: transparent;
}

a:focus {
  outline: unset;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

img {
  height: auto;
}

main img {
  max-width: 100%;
  border-style: none;
}

picture img {
  display: block;
}

button,
input {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button {
  text-transform: none;
  -webkit-appearance: button;
  appearance: button;
}

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

button:-moz-focusring {
  outline: 1px dotted #fff;
}

[type=search] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
  color: #333;
  background: #fff;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/
body {
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.76;
  background-color: #fff;
}

/*--------------------------------------------------------------
# Headings
--------------------------------------------------------------*/
h1 {
  margin-block: 0;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (max-width: 1140px) {
  h1 {
    font-size: clamp(30px, 3vw, 56px);
  }
}

h2 {
  margin-block: clamp(24px, 3vw, 30px);
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 300;
  line-height: 40px;
}

h3 {
  margin-block: clamp(24px, 3vw, 30px);
  font-size: clamp(24px, 3vw, 26px);
  font-weight: 300;
  line-height: 30px;
}

h4 {
  margin-block: 20px;
  font-size: 24px;
  font-weight: 300;
  line-height: 25px;
}

h5 {
  margin-block: 22px;
}

h6 {
  margin-block: 20px;
}

/*--------------------------------------------------------------
# Paragraphs
--------------------------------------------------------------*/
p {
  margin-block: 20px;
}
p:empty {
  margin-block: 0;
}
p:last-child {
  margin-bottom: 0;
}
p:first-child {
  margin-top: 0;
}

b,
strong {
  font-weight: 600;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
:where(a) {
  transition: 0.3s;
}

:where(a:not([class])) {
  color: #3f5ed9;
}

:where(a[class]) {
  color: #000;
  text-decoration: none;
}

.post__content :where(a:hover) {
  text-decoration: none;
}

.post__content a:not([class]):visited {
  color: #ffd200;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  border: none;
  transition: 0.3s ease-in;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .button,
  button,
  input[type=button],
  input[type=reset],
  input[type=submit] {
    white-space: unset;
  }
}
.button:focus,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: none;
}
.button:disabled,
button:disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
input[type=submit]:disabled {
  color: #a4aeb9;
  background-color: #e4e8ec;
  cursor: not-allowed;
}

.button--green {
  color: #fff;
  fill: #fff;
  background-color: #487810;
}
.button--yellow {
  color: #000;
  background-color: #ffd200;
}
.button--light {
  color: #000;
  background-color: #fbfaf4;
  fill: #487810;
}
.button--light:hover {
  color: #fff;
  background-color: #487810;
  fill: #fff;
}
.button--default {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 10px;
}
.button--small {
  padding: 12px 30px;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 10px;
}
.button--mini {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  border-radius: 7px;
}
@media screen and (max-width: 1024px) {
  .button--mobile-icon {
    padding: 0;
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .button--mobile-icon .button__icon {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .button--mobile-icon .button__text {
    display: none;
  }
}

/* ## Cross */
.cross {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cross:before, .cross:after {
  content: "";
  width: 1px;
}
.cross:before {
  transform: rotate(45deg);
}
.cross:after {
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
# Scroll button
--------------------------------------------------------------*/
.scroll-button {
  position: fixed;
  right: 25px;
  bottom: 40px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  width: 35px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .scroll-button {
    display: none;
  }
}
.scroll-button-up, .scroll-button-down {
  margin-top: 5px;
  margin-bottom: 5px;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.scroll-button-up:hover, .scroll-button-down:hover {
  opacity: 1;
}
.scroll-button-up svg, .scroll-button-down svg {
  display: block;
  margin: auto;
  width: 14px;
  height: 16px;
}
.scroll-button-middle {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.5;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
/* ### Ripple button */
[animation=ripple] {
  position: relative;
  overflow: hidden;
  outline: none;
}
[animation=ripple]:before {
  content: "";
  position: absolute;
  display: block;
  background: var(--ripple-background, white);
  border-radius: 50%;
  pointer-events: none;
  top: calc(var(--y) * 1px);
  left: calc(var(--x) * 1px);
  width: calc(var(--d) * 1px);
  height: calc(var(--d) * 1px);
  opacity: calc(var(--o, 1) * var(--ripple-opacity, 0.4));
  transition: calc(var(--t, 0) * var(--ripple-duration, 600ms)) var(--ripple-easing, linear);
  transform: translate(-50%, -50%) scale(var(--s, 1));
  transform-origin: center;
}
[animation=ripple]:hover {
  opacity: 1;
}

/* ## Radial hover */
.button--radial {
  overflow: hidden;
  position: relative;
}

.button--radial:before {
  content: "";
  position: absolute;
  top: calc(var(--top) * 1px);
  left: calc(var(--left) * 1px);
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  border-radius: 1000px;
  pointer-events: none;
  background: radial-gradient(circle, rgb(57, 59, 197), rgb(73, 136, 243));
  animation: none;
}

.button--radial.explode-circle:before {
  animation: explode 0.5s forwards;
}

.button--radial.desplode-circle:before {
  animation: desplode 0.5s forwards;
}

@keyframes explode {
  0% {
    width: 0;
    height: 0;
    margin-left: 0;
    margin-top: 0;
  }
  100% {
    width: 500px;
    height: 500px;
    margin-left: -250px;
    margin-top: -250px;
  }
}
@keyframes desplode {
  0% {
    width: 500px;
    height: 500px;
    margin-left: -250px;
    margin-top: -250px;
  }
  100% {
    width: 0;
    height: 0;
    margin-left: 0;
    margin-top: 0;
  }
}
/* ## Fade in */
[animation=fade-in] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
[animation=fade-in].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ## Slide in */
[animation=slide-in] {
  transform: translateX(100px);
}
[animation=slide-in].in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Image */
.image-assembly {
  position: relative;
  overflow: hidden;
}

.image-assembly__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-assembly__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transform: translateY(100%);
  animation: assembleImage 1s ease-in-out forwards;
}

.part-1 {
  clip-path: polygon(0% 0%, 20% 0%, 20% 100%, 0% 100%);
  animation-delay: 0.1s;
}

.part-2 {
  clip-path: polygon(20% 0%, 40% 0%, 40% 100%, 20% 100%);
  animation-delay: 0.2s;
}

.part-3 {
  clip-path: polygon(40% 0%, 60% 0%, 60% 100%, 40% 100%);
  animation-delay: 0.3s;
}

.part-4 {
  clip-path: polygon(60% 0%, 80% 0%, 80% 100%, 60% 100%);
  animation-delay: 0.4s;
}

.part-5 {
  clip-path: polygon(80% 0%, 100% 0%, 100% 100%, 80% 100%);
  animation-delay: 0.5s;
}

/* Анимация сборки */
@keyframes assembleImage {
  to {
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# Grid and Container
--------------------------------------------------------------*/
:root {
  --global_padding: 3vw;
}
@media screen and (max-width: 1380px) {
  :root {
    --global_padding: 4vw;
  }
}

.body--no-scroll {
  overflow: hidden;
}

.site-container {
  position: relative;
  overflow: hidden;
}
.site-container__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
  min-height: 100vh;
  width: 1300px;
  max-width: 100%;
}
@media screen and (max-width: 1380px) {
  .site-container__wrapper {
    padding-inline: var(--global_padding);
  }
}
@media screen and (max-width: 1024px) {
  .site-container__wrapper {
    overflow: hidden;
  }
}

/* ## Main */
.site-main {
  margin-bottom: clamp(40px, 4vw, 70px);
}
.site-main__inner {
  position: relative;
}
.site-main__inner:not(:only-child) {
  margin-bottom: clamp(40px, 4vw, 70px);
}
.site-main__inner--singular {
  margin-left: auto;
  margin-right: auto;
  width: 920px;
  max-width: 100%;
}

/* ## Section */
.section {
  position: relative;
}
.section:not(:last-child) {
  margin-bottom: clamp(40px, 4vw, 100px);
}
.section--single:not(:last-child) {
  margin-bottom: clamp(40px, 4vw, 70px);
}
.section--small {
  margin: 0 auto 70px;
  width: 920px;
  max-width: 100%;
}
.section--alignwide {
  margin-left: -90px;
  width: 1480px;
  max-width: var(--viewport-width);
}
@media screen and (max-width: 1480px) and (min-width: 1381px) {
  .section--alignwide {
    margin-left: calc(-1 * (var(--viewport-width) - 1300px) / 2 + var(--global_padding) * 0.5);
    width: calc(var(--viewport-width) - var(--global_padding) * 1);
  }
}
@media screen and (max-width: 1380px) {
  .section--alignwide {
    margin-left: calc(-1 * (var(--viewport-width) - 1300px) / 2 - var(--global_padding) * 0.5);
    width: calc(var(--viewport-width) - var(--global_padding));
  }
}
@media screen and (max-width: 1300px) {
  .section--alignwide {
    margin-left: calc(-1 * var(--global_padding) * 0.5);
    width: calc(var(--viewport-width) - var(--global_padding) * 1);
  }
}
.section__title {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 1.3;
}
@media screen and (max-width: 1140px) {
  .section__title {
    margin-bottom: clamp(20px, 3vw, 40px);
    font-size: clamp(26px, 3vw, 40px);
  }
}
.section__title--small {
  font-size: 30px;
}
@media screen and (max-width: 1140px) {
  .section__title--small {
    font-size: clamp(26px, 3vw, 30px);
  }
}
.section__more {
  margin: 30px auto 0;
  width: 350px;
  max-width: 100%;
}

/*--------------------------------------------------------------
# Overlay
--------------------------------------------------------------*/
.site-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-in, opacity 0.3s ease-in;
  pointer-events: none;
}
.site-overlay--active {
  display: block;
  visibility: visible;
  opacity: 0.7;
  pointer-events: auto;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/* ## Form general */
.form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form__row {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .form__row {
    flex-direction: column;
  }
}
.form__row > * {
  flex-grow: 1;
}
.form__column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.form__silence {
  display: none;
}
.form__icon {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-shrink: 0;
  width: 36px;
  opacity: 0.5;
}
.form__actions {
  display: flex;
  align-items: center;
  gap: 20px 30px;
}
@media screen and (max-width: 768px) {
  .form__actions {
    flex-direction: column;
  }
}
.form__text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.43;
}
.form__button {
  flex-shrink: 0;
  width: 270px;
}
@media screen and (max-width: 480px) {
  .form__button {
    width: 100%;
  }
}
.form__group {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9e7ed;
  border-radius: 10px;
  overflow: hidden;
}
.form__group--textarea {
  align-items: flex-start;
}
.form__group--textarea .form__control {
  width: 100%;
}
.form--bg .form__group {
  box-shadow: 0px 0px 16px 0px rgba(96, 121, 169, 0.08);
  border: 0;
}
.form__control {
  flex-grow: 1;
  padding: 15px 20px;
  font-size: 15px;
  color: rgba(30, 50, 91, 0.7);
  border: 1px solid transparent;
}
.form__control::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: rgba(30, 50, 91, 0.4);
  text-overflow: ellipsis;
  transition: 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}
.form__control:focus {
  border-color: #d9e7ed;
  outline: none;
}
.form__control:focus::placeholder {
  opacity: 0;
}
.form__control:disabled {
  background-color: #fbfaf4;
  cursor: not-allowed;
}
.form__control.error {
  border-color: #eb3154;
}
.form__info {
  display: none;
  font-size: 12px;
}
.form__info--success, .form__info--error {
  display: block;
}
.form__info--success {
  color: #329847;
}
.form__info--error {
  color: #d90027;
}
.form__loader {
  --margin: -10px;
  --radius: 8px;
  left: 0;
  top: 0;
  border-radius: 20px;
}
.form__loader--small {
  --size: 2px;
  --width: 20px;
  right: 30px;
  left: unset;
  top: 20px;
}
.form__results {
  position: absolute;
  top: calc(100% + 5px);
  z-index: 1;
  width: 100%;
  max-height: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 24px 0px rgba(96, 121, 169, 0.35);
  overflow-y: scroll;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
  pointer-events: none;
}
.form__results--visible {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
  overflow: unset;
  transform: translateY(0);
  pointer-events: auto;
}
.form__results::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.form__results::-webkit-scrollbar-button {
  display: none;
}
.form__results::-webkit-scrollbar-corner {
  background: transparent;
}
.form__results::-webkit-scrollbar-track {
  background-color: #fbfaf4;
}
.form__results::-webkit-scrollbar-thumb {
  background-color: #487810;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.form__results::-webkit-scrollbar-thumb:hover {
  background-color: rgba(251, 250, 244, 0.7);
}
.form__results::-webkit-resizer {
  display: none;
}
.form__results-item {
  padding: 10px 20px;
  transition: 0.3s ease-in;
  cursor: pointer;
}
.form__results-item:hover {
  background-color: #fbfaf4;
}

/* ## Select */
.select {
  cursor: pointer;
}
.select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 5px;
  padding-right: 50px;
}
.select__text {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .select__text {
    font-size: 14px;
  }
}
.select__price {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .select__price {
    font-size: 16px;
  }
}
.select .ts-wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMyA2Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4yNzcgMS40MTYgNy4wNzkgNC44ODFsLS4zNTYuNTM1LS4yMjMtLjE0OS0uMjIzLjE0OS0uMzU2LS41MzVMLjcyMyAxLjQxNmwuNTU0LS44MzJMNi41IDQuMDY2IDExLjcyMy41ODRsLjU1NC44MzJaIi8+PC9zdmc+);
  background-size: 15px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  border: 1px solid #d9e7ed;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: 0.3s ease-in;
}
.select .ts-wrapper.input-active {
  border-color: #487810;
}
.select .ts-control {
  padding: 13px 20px;
  font-size: 15px;
  background-color: transparent !important;
  border: unset;
  outline: unset;
}
.select .ts-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 10px;
  border-radius: 10px;
  border: unset;
}
.select .ts-dropdown .ts-dropdown-content {
  padding-right: 5px;
}
.select .ts-dropdown .ts-dropdown-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.select .ts-dropdown .ts-dropdown-content::-webkit-scrollbar-button {
  display: none;
}
.select .ts-dropdown .ts-dropdown-content::-webkit-scrollbar-corner {
  background: transparent;
}
.select .ts-dropdown .ts-dropdown-content::-webkit-scrollbar-track {
  background-color: #fbfaf4;
}
.select .ts-dropdown .ts-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #487810;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.select .ts-dropdown .ts-dropdown-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(251, 250, 244, 0.7);
}
.select .ts-dropdown .ts-dropdown-content::-webkit-resizer {
  display: none;
}
.select .ts-dropdown .option {
  position: relative;
  display: flex;
  padding: 10px 12px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-radius: 7px;
  transition: 0.3s ease-in;
  cursor: pointer;
}
.select .ts-dropdown .option .select__text {
  font-size: 14px;
  font-weight: 300;
}
.select .ts-dropdown .option .select__price {
  font-size: 16px;
}
.select .ts-dropdown .option:hover {
  background-color: #ffd200;
}
.select .ts-dropdown .selected {
  background-color: #fbfaf4;
}

/* ## Switch */
.switch {
  --width: 37px;
  --height: 20px;
  --toggle-size: calc(var(--height) - 0.4em);
  --toggle-offset: 0.2em;
  --background-off: #5a5a5a;
  --background-on: #15b300;
  --toggle-off: #ffffff;
  --toggle-on: #ffffff;
  --shadow-off: 0 2px 5px rgba(0, 0, 0, 0.2);
  --shadow-on: 0 0 8px rgba(59, 130, 246, 0.5);
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .switch {
    gap: 10px;
  }
}
.switch__slider {
  position: relative;
  flex-shrink: 0;
  width: var(--width);
  height: var(--height);
  background-color: var(--background-off);
  border-radius: var(--height);
  transition: 0.4s cubic-bezier(0.44, 0.09, 0.21, 0.97);
  overflow: hidden;
}
.switch__slider:before {
  content: "";
  position: absolute;
  left: var(--toggle-offset);
  bottom: var(--toggle-offset);
  height: var(--toggle-size);
  width: var(--toggle-size);
  background-color: var(--toggle-off);
  border-radius: 50%;
  box-shadow: var(--shadow-off);
  transition: 0.4s cubic-bezier(0.44, 0.09, 0.21, 0.97);
}
.switch__slider:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 23%, transparent 24%), radial-gradient(circle at 53% 53%, rgba(255, 255, 255, 0.2) 23%, transparent 24%);
  background-size: 0.75em 0.75em;
  background-position: 0 0, 0.35em 0.35em;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.switch__control:checked + .switch__slider {
  background-color: var(--background-on);
}
.switch__control:checked + .switch__slider:before {
  transform: translateX(calc(var(--width) - var(--height)));
  background-color: var(--toggle-on);
  box-shadow: var(--shadow-on);
  animation: ripple 0.6s linear;
}
.switch__control:checked + .switch__slider:after {
  opacity: 1;
}
.switch__control:focus + .switch__slider {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}
.switch__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 15px;
}
.switch__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .switch__text {
    font-size: 14px;
  }
}
.switch__price {
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}
/*--------------------------------------------------------------
# Modal forms
--------------------------------------------------------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
  pointer-events: none;
}
.modal--visible {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
  overflow: unset;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 480px) {
  .modal {
    align-items: flex-start;
  }
  .modal--visible {
    overflow-y: auto;
  }
}
.modal__inner {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: 24px;
  width: 600px;
  max-width: 95%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 24px 0px rgba(96, 121, 169, 0.35);
}
@media screen and (max-width: 768px) {
  .modal__inner {
    padding: 20px;
    max-width: 95%;
  }
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9e7ed;
}
.modal__title {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 400;
  line-height: 1.3;
}
.modal__cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  stroke: #487810;
  cursor: pointer;
}
.modal__form {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
}
.modal__summary {
  display: none;
}
.modal__summary--active {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal__summary-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
}
.modal__summary-label {
  flex-shrink: 0;
  width: 100px;
  font-weight: 500;
}
.modal__summary-list {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* ## Loader */
.loader {
  display: none;
  position: absolute;
  z-index: 99;
}
.loader--bg {
  margin: var(--margin);
  width: calc(100% - var(--margin) * 2);
  height: calc(100% - var(--margin) * 2);
  background-color: rgba(240, 245, 249, 0.5);
  border-radius: var(--radius);
}
.loader:after {
  content: "";
  position: absolute;
  top: calc(50% - var(--width) / 1.5);
  left: calc(50% - var(--width) / 1.5);
  display: block;
  width: var(--width);
  height: var(--width);
  margin: 8px;
  border-radius: 50%;
  border: var(--size) solid #487810;
  border-color: #487810 transparent #487810 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

:where(.loader) {
  --size: 6px;
  --width: 64px;
}

:where(.loader--bg) {
  --margin: 0px;
  --radius: 0;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ## Articles */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
}
.articles:not(:last-child) {
  margin-bottom: clamp(40px, 4vw, 100px);
}
@media screen and (max-width: 1380px) {
  .articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .articles {
    grid-template-columns: minmax(250px, 1fr);
  }
}
.articles__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .articles__item {
    gap: 15px;
  }
}
.articles__image {
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .articles__image {
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 1024px) {
  .articles__image {
    border-radius: clamp(20px, 2vw, 30px);
  }
}
.articles__image-src {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in;
}
.articles__item:hover .articles__image-src {
  transform: scale(1.1);
}
.articles__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .articles__details {
    gap: 15px;
  }
}
.articles__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 26px;
  color: #000;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .articles__title {
    font-size: clamp(20px, 2vw, 26px);
  }
}
@media screen and (max-width: 1024px) {
  .articles__title {
    gap: 10px;
  }
}
.articles__price {
  padding: 10px;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  background-color: #fbfaf4;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .articles__price {
    font-size: clamp(16px, 2vw, 20px);
  }
}
.articles__button {
  align-self: flex-start;
  margin-top: auto;
}
.articles__item:hover .articles__button {
  color: #fff;
  background-color: #487810;
  fill: #fff;
}

/* ### House info */
.house-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: -20px;
}
@media screen and (max-width: 480px) {
  .house-info {
    margin-inline: -15px;
  }
}
.house-info--card {
  margin-inline: -30px;
}
@media screen and (max-width: 480px) {
  .house-info--card {
    margin-inline: -15px;
  }
}
.house-info__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-inline: 20px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .house-info__item {
    padding-inline: 15px;
  }
}
.house-info__item:not(:last-child) {
  border-right: 1px solid #d9e7ed;
}
.house-info__item-value {
  font-size: 20px;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .house-info__item-value {
    font-size: clamp(18px, 2vw, 20px);
  }
}
.house-info__item-small {
  font-size: 12px;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .house-info__item-small {
    font-size: 10px;
  }
}
.house-info--card .house-info__item {
  padding-inline: 30px;
}
@media screen and (max-width: 480px) {
  .house-info--card .house-info__item {
    padding-inline: 15px;
  }
}

/* ## Advantages */
.advantages {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1400px) {
  .advantages {
    gap: clamp(20px, 2vw, 40px);
  }
}
@media screen and (max-width: 1024px) {
  .advantages {
    flex-wrap: wrap;
  }
}
.advantages__description {
  position: relative;
  padding-left: 60px;
  max-width: 530px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .advantages__description {
    flex-grow: 1;
    max-width: unset;
    font-size: clamp(18px, 2vw, 20px);
  }
}
.advantages__description:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 40px;
  height: 2px;
  background-color: #487810;
  border-radius: 1px;
}
.advantages__highlight {
  padding-inline: 10px;
  background-color: #ffd200;
  border-radius: 12.5px;
}
.advantages__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 30px;
  max-width: 750px;
  border: 1px solid #d9e7ed;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .advantages__list {
    flex-grow: 1;
    margin-left: 60px;
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .advantages__list {
    flex-wrap: wrap;
    margin-left: 0;
  }
}
.advantages__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.advantages__icon {
  flex-shrink: 0;
}
.advantages__info {
  font-size: 14px;
  line-height: 1.43;
}

/* ## Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .features {
    gap: clamp(30px, 2vw, 50px);
  }
}
@media screen and (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.features__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  border: 1px solid #d9e7ed;
  background-color: #fff;
  border-radius: 50px;
}
.features__item:not(.features__item--highlighted):hover {
  border-color: #487810;
}
@media screen and (max-width: 1024px) {
  .features__item {
    gap: clamp(15px, 2vw, 30px);
    padding: clamp(20px, 2vw, 40px);
    border-radius: clamp(20px, 2vw, 50px);
  }
}
.features__item--highlighted {
  background-color: #fbfaf4;
  border-color: transparent;
}
.features__title {
  font-size: 26px;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .features__title {
    white-space: unset;
  }
}
@media screen and (max-width: 1024px) {
  .features__title {
    font-size: clamp(20px, 2vw, 26px);
  }
}
.features__text {
  font-size: 15px;
  line-height: 1.67;
}
@media screen and (max-width: 768px) {
  .features__text {
    font-size: 14px;
  }
}
.features__image {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .features__image {
    width: 100px;
    height: auto;
  }
}
.features__banks {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1140px) {
  .features__banks {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* ## Reviews */
.reviews--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1400px) {
  .reviews--row {
    gap: clamp(20px, 2vw, 40px);
  }
}
@media screen and (max-width: 1024px) {
  .reviews--row {
    grid-template-columns: 1fr;
  }
}
.reviews__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  height: 100%;
  background-color: #fbfaf4;
  border-radius: 30px;
}
@media screen and (max-width: 1024px) {
  .reviews__item {
    padding: 15px 20px;
    border-radius: 20px;
  }
}
.reviews__item:hover {
  box-shadow: inset 0 0 0 1px #487810;
}
.reviews__header {
  display: flex;
  align-items: center;
  gap: 10px 15px;
}
@media screen and (max-width: 768px) {
  .reviews__header {
    flex-wrap: wrap;
  }
}
.reviews__author {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.reviews__rating {
  display: flex;
  align-items: center;
}
.reviews__rating-star {
  fill: #d9e4f5;
}
.reviews__rating-star--active {
  fill: #ffd200;
}
.reviews__date-construction {
  margin-left: auto;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  .reviews__date-construction {
    margin-left: 0;
  }
}
.reviews__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .reviews__content {
    flex-direction: column;
  }
}
.reviews__image {
  flex-shrink: 0;
  width: 150px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .reviews__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.reviews__description {
  font-size: 14px;
}

/* ## Splide */
.splide__pagination {
  position: inherit;
  margin-top: 30px;
}
.splide__pagination__page {
  background-color: #d9e4f5;
}
.splide__pagination__page.is-active {
  background-color: #487810;
}

/* ## jQuery UI Slider */
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}
.ui-slider {
  position: relative;
}
.ui-slider-handle {
  position: absolute;
  z-index: 2;
  height: 14px;
  width: 14px;
  background-color: #487810;
  border-radius: 50%;
  cursor: pointer;
  touch-action: none;
}
.ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
}
.ui-slider-horizontal {
  height: 14px;
  background-color: #d9e7ed;
  background-clip: content-box;
  padding: 6.5px 0;
}
.ui-slider-horizontal .ui-slider-handle {
  top: 0;
  margin-left: -7px;
  border: none;
  outline: none;
}
.ui-slider-horizontal .ui-slider-range {
  top: 7px;
  height: 1px;
  background-color: #487810;
  background-clip: content-box;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/* ## Lists */
.post__content ul.wp-block-list {
  margin: 0 0 30px;
  padding: 0;
}
.post__content ul.wp-block-list ul {
  margin: 10px 0;
  padding-left: 30px;
}
.post__content ul.wp-block-list ol {
  margin: 10px 0;
}
.post__content ul.wp-block-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  overflow: hidden;
}
.post__content ul.wp-block-list li:last-child {
  margin-bottom: 0;
}
.post__content ul.wp-block-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #487810;
  border-radius: 50%;
}

.post__content ol.wp-block-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  counter-reset: listCounter;
}
.post__content ol.wp-block-list[start] {
  counter-reset: listCounter calc(var(--start) - 1);
}
.post__content ol.wp-block-list > li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 7px;
  overflow: hidden;
  counter-increment: listCounter;
}
.post__content ol.wp-block-list > li:last-child {
  margin-bottom: 0;
}
.post__content ol.wp-block-list > li:before {
  content: counter(listCounter);
  position: absolute;
  top: 2px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  background-color: #ffd200;
  border-radius: 50%;
}
.post__content ol.wp-block-list ul,
.post__content ol.wp-block-list ol {
  margin: 10px 0 0;
}

/* ## Table */
.post__table {
  margin-block: 40px;
  max-width: 100%;
  border: 1px solid #d9e7ed;
  border-radius: 12px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.post__table table {
  width: 100%;
  font-size: 14px;
  line-height: 19.6px;
  border: unset;
  border-collapse: collapse;
  border-spacing: 0;
}
.post__table table tbody tr:nth-child(odd) {
  background-color: #f8f9fc;
}
.post__table table thead tr,
.post__table table thead + tbody tr:first-child {
  background-color: #f1f3f9;
}
.post__table table thead + tbody tr:nth-child(even) {
  background-color: #f8f9fc;
}
.post__table table thead + tbody tr:nth-child(odd) {
  background-color: #fff;
}
.post__table table tbody tr:first-child {
  font-weight: 500;
  background-color: #f1f3f9;
}
.post__table table thead + tbody tr:first-child {
  font-weight: 400;
}
.post__table table th {
  font-weight: 500;
}
.post__table table td,
.post__table table th {
  padding: 10px 16px;
  text-align: center;
  border: unset;
}
.post__table table td:first-of-type,
.post__table table th:first-of-type {
  text-align: left;
}
.post__table table td:not(:last-child),
.post__table table th:not(:last-child) {
  border-right: 1px solid #d9e7ed;
}
.post__table table tr:first-child td:first-child,
.post__table table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.post__table table tr:first-child td:last-child,
.post__table table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.post__table table tr:last-child td:first-child,
.post__table table tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
}
.post__table table tr:last-child td:last-child,
.post__table table tr:last-child th:last-child {
  border-bottom-right-radius: 10px;
}
.post__table table thead tr:last-child td:first-child,
.post__table table thead tr:last-child th:first-child {
  border-bottom-left-radius: 0;
}
.post__table table thead tr:last-child td:last-child,
.post__table table thead tr:last-child th:last-child {
  border-bottom-right-radius: 0;
}
.post__table table thead + tbody tr:first-child td:first-child,
.post__table table thead + tbody tr:first-child th:first-child {
  border-top-left-radius: 0;
}
.post__table table thead + tbody tr:first-child td:last-child,
.post__table table thead + tbody tr:first-child th:last-child {
  border-top-right-radius: 0;
}

.wp-block-table {
  margin-block: 40px;
}
.wp-block-table .post__table {
  margin-block: 0;
}
.wp-block-table thead {
  border-bottom: 0;
}

/* ## Video */
.post__video iframe {
  margin-block: 40px;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 1) {
  .post__video {
    position: relative;
    padding: 56.25% 0 0;
    height: 0;
    overflow: hidden;
  }
  .post__video iframe {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

/* ## Images */
.post__content :where(img) {
  border-radius: 20px;
  content-visibility: auto;
}

:where(.aligncenter, .alignleft, .alignright) {
  display: block;
  padding: 0;
}

:where(.alignnone, .aligncenter) {
  margin: 0 auto;
}

:where(.alignright) {
  float: right;
  margin-left: 30px;
}

:where(.alignleft) {
  float: left;
  margin-right: 30px;
}

figure:where(.alignwide) {
  margin-left: -95px;
  width: 1110px;
  max-width: var(--viewport-width);
}
@media screen and (max-width: 1110px) {
  figure:where(.alignwide) {
    margin-left: calc(-1 * (var(--viewport-width) - 920px) / 2 + var(--global_padding) * 0.5);
    width: calc(var(--viewport-width) - var(--global_padding) * 1);
  }
}
@media screen and (max-width: 920px) {
  figure:where(.alignwide) {
    margin-left: calc(-1 * var(--global_padding) * 0.5);
    width: calc(var(--viewport-width) - var(--global_padding) * 1);
  }
}

:where(.alignfull) {
  margin-left: calc(50% - var(--viewport-width) / 2);
  margin-right: calc(50% - var(--viewport-width) / 2);
  width: var(--viewport-width);
  max-width: 100vw;
}

.wp-caption {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
}
.wp-caption :where(img) {
  display: block;
}

.wp-caption-text,
.wp-element-caption {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  line-height: 19.6px;
}

@media screen and (max-width: 728px) {
  .alignright:not(.wp-caption),
  .alignleft:not(.wp-caption) {
    display: table;
  }
  .alignright,
  .alignleft {
    float: none;
    margin: 0 auto 30px;
  }
}
/* ## Standard gallery */
.gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
}
.gallery-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item a:hover {
  opacity: 0.8;
}

.gallery-icon.landscape {
  height: 100%;
}
.gallery-icon img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-icon:not(:only-child) a {
  border-radius: 20px 20px 0 0;
}

@media screen and (min-width: 768px) {
  .gallery-columns-1 .gallery-item {
    flex-basis: calc(100% - 5px);
  }
  .gallery-columns-2 .gallery-item {
    flex-basis: calc(50% - 5px);
  }
  .gallery-columns-3 .gallery-item {
    flex-basis: calc(33.3333% - 5px);
  }
  .gallery-columns-4 .gallery-item {
    flex-basis: calc(25% - 5px);
  }
  .gallery-columns-5 .gallery-item {
    flex-basis: calc(20% - 5px);
  }
  .gallery-columns-6 .gallery-item {
    flex-basis: calc(16.6667% - 5px);
  }
  .gallery-columns-7 .gallery-item {
    flex-basis: calc(14.2857% - 5px);
  }
  .gallery-columns-8 .gallery-item {
    flex-basis: calc(12.5% - 5px);
  }
  .gallery-columns-9 .gallery-item {
    flex-basis: calc(11.1111% - 5px);
  }
}
@media screen and (max-width: 768px) {
  .gallery-item {
    flex-basis: calc(50% - 5px);
  }
}
@media screen and (max-width: 400px) {
  .gallery-item {
    flex-basis: calc(100% - 5px);
  }
}
/* ## Blockquote, blocks */
blockquote:not([class]) {
  margin: 30px 0;
  padding: 30px 40px;
  background-image: #fbfaf4;
  border: 1px solid #d9e7ed;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  blockquote:not([class]) {
    padding: 20px;
  }
}

.custom-quote {
  position: relative;
}
.custom-quote--quote {
  margin: 40px 0 30px;
  padding: 40px 50px;
  width: 100%;
  font-size: 22px;
  line-height: 35px;
  text-align: center;
  border-top: 1px solid #d9e7ed;
  border-bottom: 1px solid #d9e7ed;
}
@media screen and (max-width: 768px) {
  .custom-quote--quote {
    padding: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .custom-quote--quote {
    font-size: 16px;
  }
}
.custom-quote--bg {
  margin: 30px 0;
  padding: 30px 40px;
  background-image: #fbfaf4;
  border: 1px solid #d9e7ed;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .custom-quote--bg {
    padding: 20px;
  }
}
.custom-quote__icon {
  position: absolute;
  top: -25px;
  left: calc(50% - 40px);
  width: 80px;
  background-color: #fff;
  stroke: #487810;
}

/* ## Accent bg */
.has-inline-color {
  padding: 1px 5px;
  color: #fff;
  border-radius: 11px;
}

[class*=has-accent-].has-inline-color {
  padding: 0;
  border-radius: 0;
}

.has-primary-color {
  color: #000;
}

.has-accent-blue-color {
  color: #3f5ed9;
}
.has-accent-green-color {
  color: #74b713;
}
.has-accent-yellow-color {
  color: #ffd200;
}
.has-accent-light-color {
  color: #fbfaf4;
}

.has-background {
  padding: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 1024px) {
  .has-background {
    padding: 15px 20px;
  }
}
.has-background-light-background-color {
  background-color: #fbfaf4;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
  display: flex;
  flex-direction: column;
}
.site-header--front {
  margin-bottom: 50px;
  height: 100vh;
  min-height: 780px;
}
@media screen and (max-width: 1024px) {
  .site-header--front {
    min-height: unset;
  }
}
@media screen and (max-width: 768px) {
  .site-header--front {
    height: 500px;
  }
}
@media screen and (max-width: 480px) {
  .site-header--front {
    height: 320px;
  }
}
.site-header__main {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-block: 30px 20px;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #d9e7ed;
}
@media screen and (max-width: 1024px) {
  .site-header__main {
    gap: clamp(20px, 2vw, 40px);
    padding: 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .site-header__main {
    gap: 10px;
  }
}
.site-header__main-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .site-header__main-wrap {
    flex-direction: row;
    padding: 10px;
    margin: 20px calc(-1 * var(--global_padding));
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
  }
}
.site-header--front .site-header__main {
  align-self: center;
  width: 1110px;
  max-width: 100%;
}
.site-header--front .site-header__menu {
  align-self: center;
  max-width: 1160px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .site-header--front .site-header__menu {
    width: auto;
  }
}
.site-header__front {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-block: 50px 100px;
}
@media screen and (max-width: 1600px) {
  .site-header__front {
    padding-block: 50px;
  }
}
@media screen and (max-width: 480px) {
  .site-header__front {
    gap: 5px;
    padding-block: 25px;
  }
}
.site-header__subheading {
  padding: 5px 16px;
  font-size: 20px;
  font-weight: 400;
  color: white;
  line-height: 1.43;
  text-align: center;
  background-color: #487810;
  border-radius: 15px;
}
@media screen and (max-width: 1728px) {
  .site-header__subheading {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__subheading {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .site-header__subheading {
    font-size: 16px;
  }
}
.site-header__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 60px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1728px) {
  .site-header__heading {
    font-size: 56px;
  }
}
@media screen and (max-width: 1400px) {
  .site-header__heading {
    font-size: clamp(30px, 3vw, 56px);
  }
}
@media screen and (max-width: 480px) {
  .site-header__heading {
    font-size: 26px;
  }
}
.site-header__heading-bold {
  font-size: 90px;
  font-weight: 900;
}
@media screen and (max-width: 1728px) {
  .site-header__heading-bold {
    font-size: 80px;
  }
}
@media screen and (max-width: 1400px) {
  .site-header__heading-bold {
    font-size: clamp(40px, 3vw, 80px);
  }
}
@media screen and (max-width: 480px) {
  .site-header__heading-bold {
    font-size: 30px;
  }
}
.site-header__bg {
  height: 100vh;
  min-height: 780px;
  pointer-events: none;
  position: absolute;
  left: calc(-50vw + 50%);
  top: 0;
  z-index: -1;
  width: 100vw;
}
@media screen and (max-width: 1024px) {
  .site-header__bg {
    min-height: unset;
  }
}
@media screen and (max-width: 768px) {
  .site-header__bg {
    height: 500px;
  }
}
@media screen and (max-width: 480px) {
  .site-header__bg {
    height: 320px;
  }
}
.site-header__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.site-header__round-bg1 {
  position: absolute;
  left: calc(-50vw + 50% - 520px);
  top: -210px;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .site-header__round-bg1 {
    left: calc(-50vw + 50% - 580px);
  }
}
.site-header__round-bg2 {
  position: absolute;
  right: calc(-50vw + 50% - 600px);
  top: 260px;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .site-header__round-bg2 {
    right: calc(-50vw + 50% - 670px);
  }
}
.site-header__city {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #3f5ed9;
  line-height: 1;
  text-decoration: underline;
  cursor: pointer;
}
.site-header__city-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media screen and (max-width: 768px) {
  .site-header__main > .site-header__city-wrap {
    display: none;
  }
}
.site-header__city:after {
  content: "";
  width: 12px;
  height: 6px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMyA3Ij4KICA8cGF0aCBmaWxsPSIjM2Y1ZWQ5IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4zMiAxLjM4NCA3LjI4MSA1LjU4M2wuMDM5LjAzMy0uNjQuNzY4LS4xOC0uMTUtLjE4LjE1LS42NC0uNzY4LjAzOS0uMDMzTC42OCAxLjM4NGwuNjQtLjc2OEw2LjUgNC45MzIgMTEuNjguNjE2eiIvPgo8L3N2Zz4K);
  background-position: center;
  background-repeat: no-repeat;
}
.site-header__address {
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.5;
}
.site-header__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.site-header__email {
  font-size: 12px;
  color: #3f5ed9;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .site-header__email {
    display: none;
  }
}
.site-header__email:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .site-header__logo {
    margin-right: auto;
  }
}

/* ## Logo */
.logo {
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .logo--header .logo__image {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .logo--header .logo__image {
    width: 130px;
  }
}
@media screen and (max-width: 375px) {
  .logo--header .logo__image {
    width: 110px;
  }
}
.logo__small {
  position: absolute;
  right: 2px;
  bottom: 0;
  font-size: 11px;
  line-height: 1.45;
  opacity: 0.7;
}

/* ## Social */
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social--header {
  margin-left: auto;
}
.social__text {
  margin-right: 5px;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .social__text {
    display: none;
  }
}
.social__link {
  display: flex;
}
.social__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .social__icon {
    width: 40px;
    height: 40px;
  }
}

/* ## Menu info */
@media screen and (min-width: 1729px) {
  .primary-menu__list > .menu-item > a,
  .primary-menu__list > .menu-item > span {
    font-size: 17px;
  }
}
@media screen and (max-width: 1140px) {
  .primary-menu {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1025px) {
  .primary-menu {
    display: flex;
    margin-left: -25px;
    margin-right: -25px;
  }
  .primary-menu__list {
    display: flex;
    margin: 0;
    padding: 0;
    line-height: 1;
    list-style: none;
  }
  .primary-menu__list > .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 10px;
    white-space: nowrap;
    transition: 0.3s;
  }
  .primary-menu__list > .menu-item:hover {
    background-color: #487810;
  }
  .primary-menu__list > .menu-item:hover a,
  .primary-menu__list > .menu-item:hover span {
    color: #fff;
  }
  .primary-menu__list > .menu-item-has-children:hover {
    border-radius: 10px 10px 0 0;
  }
  .primary-menu__list > .menu-item-has-children:hover > .sub-menu {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .primary-menu__list > .menu-item > a,
  .primary-menu__list > .menu-item > span {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    text-decoration: none;
  }
  .primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    margin: 0;
    padding: 10px 20px;
    min-width: 250px;
    width: 100%;
    height: auto;
    list-style: none;
    background-color: #487810;
    border-radius: 0 10px 10px 10px;
  }
  .primary-menu .sub-menu .menu-item {
    position: relative;
    display: flex;
    width: 100%;
  }
  .primary-menu .sub-menu .menu-item:hover > a {
    background-color: rgb(64.8, 108, 14.4);
  }
  .primary-menu .sub-menu .menu-item:hover > a:not(:only-child) {
    border-radius: 7px 0 0 7px;
  }
  .primary-menu .sub-menu .menu-item:hover > .sub-menu {
    display: flex;
  }
  .primary-menu .sub-menu .menu-item a,
  .primary-menu .sub-menu .menu-item span {
    padding: 11px;
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
  }
  .primary-menu .sub-menu .menu-item span {
    background-color: rgb(64.8, 108, 14.4);
  }
  .primary-menu .sub-menu .menu-item ul {
    top: 0;
    left: 100%;
    border-radius: 0 10px 10px 10px;
    transform: translateX(0);
  }
  .primary-menu .sub-menu .menu-item ul.reverse {
    left: auto;
    right: 100%;
    border-radius: 10px 0 10px 10px;
  }
}
/* ## Mobile menu */
.primary-menu__toggle,
.primary-menu__button,
.primary-menu__cross {
  display: none;
}

@media screen and (max-width: 1024px) {
  .primary-menu {
    order: 4;
  }
  .primary-menu__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .primary-menu__button span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #487810;
    transition: 0.3s;
  }
  .primary-menu__toggle:checked ~ .primary-menu__inner {
    transform: translate3d(0, 0, 0);
  }
  .primary-menu__toggle:checked + .primary-menu__button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .primary-menu__toggle:checked + .primary-menu__button span:nth-child(2) {
    opacity: 0;
  }
  .primary-menu__toggle:checked + .primary-menu__button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .primary-menu__cross {
    position: absolute;
    top: 10px;
    right: 15px;
    display: flex;
    width: 30px;
    height: 30px;
    stroke: #487810;
    cursor: pointer;
  }
  .primary-menu__bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding: 20px 0;
  }
  .primary-menu__bottom .site-header__city {
    display: flex;
    margin-left: unset;
  }
  .primary-menu__inner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 40px 20px 0 30px;
    width: 400px;
    max-width: 100%;
    font-size: 15px;
    color: #42516f;
    background-color: #fff;
    box-shadow: 0px 0px 29px 0px rgba(104, 136, 209, 0.16);
    transition: 0.3s;
    transform: translate3d(-480px, 0, 0);
    overflow: hidden;
  }
  .primary-menu__inner ul {
    display: block;
    padding: 0;
    margin: 0;
    line-height: 1;
  }
  .primary-menu__inner ul li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .primary-menu__inner ul li a,
  .primary-menu__inner ul li span {
    display: flex;
    padding: 15px 0;
    color: #42516f;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
  }
  .primary-menu__inner ul li a:hover {
    color: #000;
  }
  .primary-menu__inner ul li span {
    opacity: 0.8;
  }
  .primary-menu__inner .sub-menu {
    padding: 0 0 0 20px;
    width: 100%;
    list-style: none;
  }
  .primary-menu__inner .sub-menu li {
    text-transform: none;
  }
  .primary-menu__inner .sub-menu a {
    gap: 10px;
    padding: 10px 0;
    text-transform: none;
  }
  .primary-menu__inner .sub-menu a:before {
    content: "";
    flex-shrink: 0;
    margin-top: 5px;
    width: 5px;
    height: 5px;
    background-color: #2479a9;
    border-radius: 50%;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  margin-top: auto;
}
.site-footer:before {
  content: "";
  background-color: #fbfaf4;
  height: 100%;
  position: absolute;
  left: calc(-50vw + 50%);
  top: 0;
  z-index: -1;
  width: 100vw;
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px 50px;
  padding-block: 35px;
  border-bottom: 1px solid #d9e7ed;
}
@media screen and (max-width: 1140px) {
  .site-footer__top {
    flex-wrap: wrap;
    gap: 20px clamp(20px, 2vw, 50px);
  }
}
.site-footer__copyright {
  max-width: 400px;
  font-size: 12px;
  line-height: 1.67;
  opacity: 0.5;
}
.site-footer__footer-menu {
  margin-left: auto;
  margin-inline: -25px;
}
.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px 50px;
  padding-block: 20px;
  border-bottom: 1px solid #d9e7ed;
}
@media screen and (max-width: 1140px) {
  .site-footer__nav {
    flex-wrap: wrap;
    gap: 20px clamp(20px, 2vw, 50px);
  }
}
.site-footer__contacts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 50px;
  padding-block: 50px;
}
@media screen and (max-width: 1400px) {
  .site-footer__contacts {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px clamp(20px, 2vw, 50px);
  }
}
@media screen and (max-width: 480px) {
  .site-footer__contacts {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 360px) {
  .site-footer__contacts {
    grid-template-columns: 1fr;
  }
}

/* ## Info menu */
.info-menu {
  display: flex;
}
.info-menu__list {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  line-height: 1;
  list-style: none;
}
.info-menu__list span,
.info-menu__list a {
  font-size: 12px;
  color: #3f5ed9;
  line-height: 1.3;
  text-decoration: none;
}
.info-menu__list span,
.info-menu__list a:hover {
  text-decoration: underline;
}

/* ## Footer menu */
.footer-menu {
  display: flex;
}
.footer-menu__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  line-height: 1;
  list-style: none;
}
@media screen and (max-width: 1140px) {
  .footer-menu__list {
    justify-content: flex-start;
  }
}
.footer-menu__list > .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 25px;
  border-radius: 10px;
  white-space: nowrap;
  transition: 0.3s ease-in;
}
.footer-menu__list > .menu-item:hover {
  background-color: #487810;
}
.footer-menu__list > .menu-item:hover a,
.footer-menu__list > .menu-item:hover span {
  color: #fff;
}
.footer-menu__list > .menu-item > a,
.footer-menu__list > .menu-item > span {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  text-decoration: none;
}

/* ## Contact */
.contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact--header {
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact--header {
    display: none;
  }
}
.contact__city {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}
.contact__address {
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.5;
}
.contact__time {
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  .contact--footer .contact__address {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contact--header .contact__address {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .contact--header .contact__address {
    font-size: 8px;
  }
}
.contact__phone {
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.contact__phone-code {
  font-weight: 300;
}
@media screen and (max-width: 480px) {
  .contact--footer .contact__phone {
    font-size: 17px;
  }
}
.contact--header .contact__phone {
  font-size: 22px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact--header .contact__phone {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .contact--header .contact__phone {
    font-size: 14px;
  }
}

/* ## City list */
.cities-list {
  position: absolute;
  z-index: -10;
  display: flex;
  width: 200px;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #d9e7ed;
  box-shadow: 0px 0px 20px 0px rgba(96, 121, 169, 0.35);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
  pointer-events: none;
}
.cities-list--visible {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
  overflow: unset;
  transform: translateY(0);
  pointer-events: auto;
}
.cities-list--visible {
  z-index: 9999;
}
.cities-list__inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 25px 20px;
}
.cities-list__item {
  font-size: 15px;
  cursor: pointer;
}
.cities-list__item:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Post
--------------------------------------------------------------*/
.post--small {
  margin: 0 auto;
  width: 920px;
  max-width: 100%;
}
.post__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.post__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post__title {
    margin-bottom: 20px;
  }
}
.post__thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 30px;
}
.post__thumbnail-src {
  border-radius: 30px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# House card
--------------------------------------------------------------*/
.house-card {
  display: grid;
  grid-template-columns: minmax(500px, 830px) minmax(400px, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .house-card {
    gap: clamp(20px, 2vw, 30px);
  }
}
@media screen and (max-width: 1024px) {
  .house-card {
    grid-template-columns: minmax(250px, 1fr);
  }
}
.house-card__full {
  grid-column: span 2;
}
@media screen and (max-width: 1024px) {
  .house-card__full {
    grid-column: unset;
  }
}
.house-card__slider {
  display: flex;
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .house-card__slider {
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 1024px) {
  .house-card__slider {
    border-radius: clamp(20px, 2vw, 40px);
  }
}
.house-card__slider-item {
  display: flex;
}
.house-card__slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.house-card__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 480px) {
  .house-card__content {
    gap: 20px;
  }
}
.house-card__button {
  max-width: 350px;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .house-card__button {
    max-width: 100%;
  }
}
.house-card__actions {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 480px) {
  .house-card__actions {
    gap: 20px;
  }
}
.house-card__label {
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
}
.house-card__label-wrap {
  position: relative;
}
.house-card__question {
  fill: rgba(0, 0, 0, 0.5);
}
.house-card__question:hover {
  fill: #487810;
}
.house-card__complectations {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.house-card__extras {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.house-card__extras-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.house-card__prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.house-card__price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.house-card__price-label {
  font-size: 14px;
  opacity: 0.7;
}
.house-card__price-value {
  font-size: 50px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .house-card__price-value {
    font-size: 30px;
  }
}
.house-card__mortgage {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.house-card__mortgage-label {
  font-size: 14px;
  opacity: 0.7;
}
.house-card__mortgage-value {
  font-size: 40px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .house-card__mortgage-value {
    font-size: 20px;
  }
}

/* ## Pluses list */
.pluses-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 40px;
}
@media screen and (max-width: 1024px) {
  .pluses-list {
    justify-content: flex-start;
  }
}
.pluses-list__item {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.56;
}
@media screen and (max-width: 480px) {
  .pluses-list__item {
    font-size: 14px;
  }
}
.pluses-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url(../images/plus.svg);
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .pluses-list__item:before {
    top: 2px;
  }
}

/* ## Splide */
.splide__arrow {
  width: 40px;
  height: 40px;
  background-color: #ffd200;
  border: 2px solid #fff;
  box-sizing: content-box;
  opacity: 1;
}

/* ## Tabs */
.tabs__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  border-bottom: 1px solid #d9e7ed;
}
@media screen and (max-width: 1400px) {
  .tabs__items {
    gap: clamp(20px, 2vw, 45px);
  }
}
.tabs__item {
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  border-bottom: 5px solid transparent;
  transition: 0.3s ease-in;
  cursor: pointer;
}
.tabs__item--active, .tabs__item:hover {
  border-color: #487810;
}
.tabs__content {
  display: none;
}
.tabs__content-wrapper {
  margin-top: 50px;
}
.tabs__content--active {
  display: block;
}

/* ## Plan gallery */
.plan-gallery {
  display: grid;
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .plan-gallery {
    gap: clamp(20px, 2vw, 50px);
  }
}
.plan-gallery--columns-1 {
  grid-template-columns: 1fr;
  margin: auto;
  max-width: 500px;
}
.plan-gallery--columns-2 {
  grid-template-columns: 1fr 1fr;
}
.plan-gallery--columns-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.plan-gallery__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 40px;
  border: 1px solid #d9e7ed;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .plan-gallery__item {
    border-radius: clamp(20px, 2vw, 40px);
  }
}
.plan-gallery__item:hover {
  border-color: #487810;
}
.plan-gallery__image {
  height: auto;
  object-fit: contain;
}

/* ## Ready houses */
.ready-houses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .ready-houses {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
  }
}
@media screen and (max-width: 480px) {
  .ready-houses {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.ready-houses__item {
  display: flex;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .ready-houses__item {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 1024px) {
  .ready-houses__item {
    border-radius: clamp(20px, 2vw, 30px);
  }
}
.ready-houses__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in;
}
.ready-houses__item:hover .ready-houses__image {
  transform: scale(1.1);
}

/* ## Communications */
.communications {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .communications {
    gap: clamp(20px, 2vw, 30px);
  }
}
@media screen and (max-width: 480px) {
  .communications {
    gap: 10px;
  }
}
.communications__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  border: 1px solid #d9e7ed;
  border-radius: 30px;
}
@media screen and (max-width: 1024px) {
  .communications__item {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 480px) {
  .communications__item {
    gap: 10px;
  }
}
.communications__title {
  margin-bottom: auto;
  font-size: 22px;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .communications__title {
    font-size: clamp(18px, 2vw, 22px);
  }
}
.communications__description {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.54;
  opacity: 0.7;
}
.communications__price {
  display: flex;
  justify-content: center;
  padding: 10px;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  background-color: #fbfaf4;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .communications__price {
    font-size: clamp(16px, 2vw, 20px);
  }
}

/* ## Complectations */
.complectations {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.complectations__item {
  border: 1px solid #d9e7ed;
  border-radius: 20px;
  transition: 0.3s ease-in;
}
.complectations__item:hover {
  border-color: #487810;
}
.complectations__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 30px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .complectations__header {
    gap: 15px;
    padding: 15px 20px;
  }
}
.complectations__name {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: auto;
  font-size: 26px;
  line-height: 1.4;
}
@media screen and (max-width: 1400px) {
  .complectations__name {
    font-size: clamp(16px, 2vw, 26px);
  }
}
@media screen and (max-width: 1024px) {
  .complectations__name {
    gap: 10px;
  }
}
.complectations__name-icon {
  flex-shrink: 0;
  stroke: #487810;
}
@media screen and (max-width: 375px) {
  .complectations__name-icon {
    display: none;
  }
}
.complectations__price {
  padding: 10px;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  background-color: #fbfaf4;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .complectations__price {
    font-size: clamp(16px, 2vw, 20px);
  }
}
.complectations__arrow {
  fill: #487810;
  transition: 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}
.complectations__item--active .complectations__arrow {
  transform: rotate(180deg);
}
.complectations__details {
  display: none;
  padding: 0 30px 25px;
}
@media screen and (max-width: 1024px) {
  .complectations__details {
    padding: 0 20px 15px;
  }
}

/* ## Completion */
.completion-item {
  padding: 20px 30px;
  background-color: #fbfaf4;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .completion-item {
    padding: 15px 20px;
  }
}
.completion-item:not(:last-child) {
  margin-bottom: 10px;
}
.completion-item__title {
  font-size: 22px;
  font-weight: 300;
}
@media screen and (max-width: 1400px) {
  .completion-item__title {
    font-size: clamp(16px, 2vw, 22px);
  }
}
.completion-item__content {
  font-size: 14px;
  line-height: 1.43;
}
@media screen and (max-width: 480px) {
  .completion-item__content {
    font-size: 12px;
  }
}
.completion-item__content p {
  margin-block: 15px;
}

/*--------------------------------------------------------------
# Reviews
--------------------------------------------------------------*/
.reviews-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.reviews-info__rating {
  display: flex;
  align-items: center;
}
.reviews-info__rating-star {
  fill: #d9e4f5;
}
.reviews-info__rating-star--active {
  fill: #ffd200;
}
.reviews-info__date {
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 19.6px;
}
.breadcrumbs__link {
  color: #3f5ed9;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}
.breadcrumbs__last {
  opacity: 0.65;
}
.breadcrumbs__icon {
  fill: #3f5ed9;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sticky {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 30px;
  height: fit-content;
}

.widget__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.error-info {
  padding-top: 40px;
}
.error-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * var(--viewport-width) / 2 + 50%);
  width: var(--viewport-width);
  height: 1px;
  background-color: #d9e7ed;
}
.error-info__content {
  margin: 30px auto 0;
}
.error-info__small {
  margin-bottom: 40px;
  width: 100%;
  font-size: 14px;
  opacity: 0.5;
}
.error-info__description {
  display: flex;
  align-items: center;
}
.error-info__description-num {
  margin-right: 40px;
  font-size: 320px;
  font-weight: 700;
  color: #fbfaf4;
  line-height: 1.2;
}
@media screen and (max-width: 980px) {
  .error-info__description-num {
    font-size: 28vw;
  }
}
@media screen and (max-width: 768px) {
  .error-info__description-num {
    margin-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .error-info__description-num {
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Archive
--------------------------------------------------------------*/
/* ## Info */
.archive-info {
  margin-bottom: 30px;
}
.archive-info__title {
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .archive-info__title {
    margin-bottom: 20px;
  }
}

/* ## Filter */
:root {
  --archive-modal-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);
  --archive-groups-gap-vertical: 24px;
  --archive-groups-gap-horizontal: 30px;
  --archive-actions-rounding: 10px;
  --archive-actions-padding-tb: 12px;
  --archive-actions-padding-lr: 16px;
  --archive-actions-gap: 8px;
}
@media screen and (max-width: 768px) {
  :root {
    --archive-groups-gap-vertical: 16px;
    --archive-groups-gap-horizontal: 16px;
    --archive-actions-padding-tb: 10px;
    --archive-actions-padding-lr: 12px;
  }
}

.archive-filter {
  margin-bottom: 40px;
  padding: 40px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background: #fff;
}
@media screen and (max-width: 1380px) {
  .archive-filter {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    position: fixed;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: scroll;
    transition: 0.3s ease-in;
  }
  .archive-filter--active {
    visibility: visible;
    opacity: 1;
  }
  body.admin-bar .archive-filter {
    top: 46px;
    height: calc(100% - 46px);
  }
}
@media screen and (max-width: 768px) {
  .archive-filter {
    padding: 20px;
  }
}
.archive-filter__top {
  display: none;
  align-items: center;
  gap: var(--archive-groups-gap-horizontal);
  margin-bottom: var(--archive-groups-gap-vertical);
}
@media screen and (max-width: 1380px) {
  .archive-filter__top {
    display: flex;
  }
}
.archive-filter__title {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .archive-filter__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.archive-filter__close-btn {
  margin-left: auto;
}
.archive-filter__close-btn svg {
  display: block;
}
.archive-filter__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--archive-groups-gap-vertical) 0;
  margin: 0 calc(var(--archive-groups-gap-horizontal) / 2 * -1);
}
.archive-filter__form:not(:last-child) {
  margin-bottom: calc(var(--archive-actions-padding-tb) * 2);
}
@keyframes group-show-hide {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.archive-filter__group {
  display: block;
  width: 100%;
  padding: 0 calc(var(--archive-groups-gap-horizontal) / 2);
}
.archive-filter__group--col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.archive-filter__group--col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.archive-filter__group--col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.archive-filter__group--col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.archive-filter__group--col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.archive-filter__group--col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.archive-filter__group--col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.archive-filter__group--col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.archive-filter__group--col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.archive-filter__group--col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.archive-filter__group--col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.archive-filter__group--col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.archive-filter__group--show-all {
  animation-name: group-show-hide;
  animation-direction: normal;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.615, 0, 0.07, 1);
  animation-iteration-count: 1;
}
.archive-filter__group--hide {
  display: none;
}
@media screen and (max-width: 1380px) {
  .archive-filter__group {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.archive-filter__group-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive-filter__group-title {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive-filter__group-title {
  margin-bottom: 4px;
}
.archive-filter__chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.archive-filter__chip {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive-filter__chip {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive-filter__chip {
  min-width: calc(1lh + var(--archive-actions-padding-tb) * 2);
  padding: var(--archive-actions-padding-tb) var(--archive-actions-padding-lr);
  border: 1px solid #d9e7ed;
  border-radius: var(--archive-actions-rounding);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5C5C5C;
  transition: 0.3s ease-in;
}
.archive-filter__chip[data-cat-id] {
  cursor: pointer;
}
.archive-filter__chip--active, .archive-filter__chip:hover {
  color: #000;
  border-color: #487810;
  background-color: #ECFFD5;
}
.archive-filter__dropdown {
  position: relative;
}
.archive-filter__dropdown-toggle {
  min-width: calc(1lh + var(--archive-actions-padding-tb) * 2);
  padding: var(--archive-actions-padding-tb) var(--archive-actions-padding-lr);
  border: 1px solid #d9e7ed;
  border-radius: var(--archive-actions-rounding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--archive-actions-gap);
  width: 100%;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.archive-filter__dropdown-toggle--default {
  color: #5C5C5C;
}
.archive-filter__dropdown-label {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive-filter__dropdown-label {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive-filter__dropdown-label {
  color: inherit;
  flex-grow: 1;
}
.archive-filter__dropdown-icon {
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}
.archive-filter__dropdown-icon svg {
  display: block;
}
.archive-filter__dropdown-menu {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive-filter__dropdown-menu {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive-filter__dropdown-menu {
  display: flex;
  position: absolute;
  top: calc(100% + 5px);
  width: 100%;
  box-shadow: var(--archive-modal-shadow);
  background-color: #fff;
  border-radius: var(--archive-actions-rounding);
  z-index: 1;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
  pointer-events: none;
}
.archive-filter__dropdown-menu--visible {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
  overflow: unset;
  transform: translateY(0);
  pointer-events: auto;
}
.archive-filter__dropdown-menu--visible {
  --max-items: 5;
  max-height: calc(var(--max-items) * 1lh + var(--max-items) * var(--archive-actions-padding-tb) * 2 + 20px);
  overflow: hidden;
}
.archive-filter__dropdown-menu-inner::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.archive-filter__dropdown-menu-inner::-webkit-scrollbar-button {
  display: none;
}
.archive-filter__dropdown-menu-inner::-webkit-scrollbar-corner {
  background: transparent;
}
.archive-filter__dropdown-menu-inner::-webkit-scrollbar-track {
  background-color: #fbfaf4;
}
.archive-filter__dropdown-menu-inner::-webkit-scrollbar-thumb {
  background-color: #487810;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.archive-filter__dropdown-menu-inner::-webkit-scrollbar-thumb:hover {
  background-color: rgba(251, 250, 244, 0.7);
}
.archive-filter__dropdown-menu-inner::-webkit-resizer {
  display: none;
}
.archive-filter__dropdown-menu-inner {
  display: grid;
  max-height: 100%;
  width: 100%;
  padding: 10px;
  overflow: auto;
}
.archive-filter__dropdown-item {
  min-width: calc(1lh + var(--archive-actions-padding-tb) * 2);
  padding: var(--archive-actions-padding-tb) var(--archive-actions-padding-lr);
  border-radius: var(--archive-actions-rounding);
  cursor: pointer;
  transition: 0.3s ease-in;
}
.archive-filter__dropdown-item--active {
  background-color: #ECFFD5;
}
.archive-filter__dropdown-item:hover {
  background-color: #ffd200;
}
.archive-filter__dropdown--open .archive-filter__dropdown-icon {
  transform: rotateX(180deg);
}
.archive-filter__price-box {
  min-width: calc(1lh + var(--archive-actions-padding-tb) * 2);
  padding: var(--archive-actions-padding-tb) var(--archive-actions-padding-lr);
  border: 1px solid #d9e7ed;
  border-radius: var(--archive-actions-rounding);
  display: flex;
  align-items: center;
  gap: var(--archive-actions-padding-lr);
}
.archive-filter__price-input {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive-filter__price-input {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive-filter__price-input {
  padding: 0;
  margin: 0;
  min-width: 0;
  border: none;
  outline: none;
  flex-grow: 1;
}
.archive-filter__price-input--max {
  text-align: right;
}
.archive-filter__price-range {
  margin-top: -7.5px;
  margin-left: var(--archive-actions-padding-lr);
  margin-right: var(--archive-actions-padding-lr);
}
.archive-filter__bottom {
  display: flex;
  gap: var(--archive-groups-gap-horizontal);
  align-items: center;
  flex-wrap: wrap;
}
.archive-filter__apply {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1380px) {
  .archive-filter__apply {
    display: block;
  }
}
.archive-filter__clear {
  display: flex;
  gap: var(--archive-actions-gap);
  padding: var(--archive-actions-padding-tb) 0;
  margin-left: auto;
}
.archive-filter__clear-icon {
  flex-shrink: 0;
}
.archive-filter__clear-icon svg {
  display: block;
}
.archive-filter__clear-icon--gray-dark svg path {
  transition: 0.3s ease-in;
}
.archive-filter__clear:hover .archive-filter__clear-icon--gray-dark svg path {
  stroke: #000;
}
.archive-filter__clear-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive-filter__clear-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive-filter__clear-text {
  color: #5C5C5C;
  transition: 0.3s ease-in;
}
.archive-filter__clear:hover .archive-filter__clear-text {
  color: #000;
}
.archive-filter__show-all {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--archive-actions-gap);
}
.archive-filter__show-all-icon {
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}
.archive-filter__show-all-icon svg {
  display: block;
}
.archive-filter__show-all-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive-filter__show-all-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive-filter__show-all-text {
  border-bottom: dashed 1px #000;
}
.archive-filter__show-all--open .archive-filter__show-all-icon {
  transform: rotateX(180deg);
}
@media screen and (max-width: 1380px) {
  .archive-filter__show-all {
    order: -1;
    width: 100%;
  }
}
.archive-before-articles {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1380px) {
  .archive-before-articles {
    flex-direction: column-reverse;
    align-items: start;
    justify-content: center;
    gap: var(--archive-groups-gap-vertical);
  }
}
.archive-before-articles__actions {
  display: flex;
  gap: var(--archive-actions-gap);
  margin-left: auto;
}
@media screen and (max-width: 1380px) {
  .archive-before-articles__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .archive-before-articles__actions {
    grid-template-columns: 1fr;
  }
}
.archive__found-posts {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .archive__found-posts {
    font-size: 20px;
    line-height: 1.4;
  }
}
.archive__open-filter {
  min-width: calc(1lh + var(--archive-actions-padding-tb) * 2);
  padding: var(--archive-actions-padding-tb) var(--archive-actions-padding-lr);
  border-radius: var(--archive-actions-rounding);
  display: none;
  align-items: center;
  gap: var(--archive-actions-gap);
}
.archive__open-filter-icon svg {
  display: block;
}
.archive__open-filter-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive__open-filter-title {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1380px) {
  .archive__open-filter {
    display: flex;
    width: 100%;
  }
}
.archive__sorting {
  display: flex;
  align-items: center;
  gap: calc(var(--archive-actions-gap) * 2);
}
@media screen and (max-width: 1380px) {
  .archive__sorting {
    width: 100%;
  }
}
.archive__sorting-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive__sorting-title {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1380px) {
  .archive__sorting-title {
    display: none;
  }
}
.archive__sorting-actions {
  display: flex;
  align-items: center;
  gap: var(--archive-actions-gap);
}
@media screen and (max-width: 1380px) {
  .archive__sorting-actions {
    display: none;
  }
}
.archive__sorting-button {
  display: flex;
  gap: var(--archive-actions-gap);
  border: 1px solid #d9e7ed;
  border-radius: 2000px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.archive__sorting-button-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive__sorting-button-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive__sorting-button-text {
  color: #5C5C5C;
}
.archive__sorting-button-icon {
  transition: 0.3s ease-in;
}
.archive__sorting-button-icon svg {
  display: block;
}
.archive__sorting-button-icon--gray-dark svg path {
  transition: 0.3s ease-in;
}
.archive__sorting-button--active {
  background-color: #d9e7ed;
}
.archive__sorting-button--active .archive__sorting-button-text {
  color: #000;
}
.archive__sorting-button--active .archive__sorting-button-icon--gray-dark svg path {
  stroke: #000;
}
.archive__sorting-button[data-order=asc] .archive__sorting-button-icon {
  transform: rotateX(180deg);
}
.archive__sorting-dropdown {
  display: none;
  position: relative;
}
@media screen and (max-width: 1380px) {
  .archive__sorting-dropdown {
    display: block;
    flex-grow: 1;
  }
}
.archive__sorting-dropdown-toggle {
  min-width: calc(1lh + var(--archive-actions-padding-tb) * 2);
  padding: var(--archive-actions-padding-tb) var(--archive-actions-padding-lr);
  border-radius: var(--archive-actions-rounding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--archive-actions-gap);
  width: 100%;
  background-color: #d9e7ed;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.archive__sorting-dropdown-label {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive__sorting-dropdown-label {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive__sorting-dropdown-label {
  color: inherit;
  flex-grow: 1;
}
.archive__sorting-dropdown-icon {
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
}
.archive__sorting-dropdown-icon svg {
  display: block;
}
.archive__sorting-dropdown-menu {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .archive__sorting-dropdown-menu {
    font-size: 14px;
    line-height: 20px;
  }
}
.archive__sorting-dropdown-menu {
  display: flex;
  position: absolute;
  top: calc(100% + 5px);
  width: 100%;
  box-shadow: var(--archive-modal-shadow);
  background-color: #fff;
  border-radius: var(--archive-actions-rounding);
  z-index: 1;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.615, 0, 0.07, 1);
  pointer-events: none;
}
.archive__sorting-dropdown-menu--visible {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
  overflow: unset;
  transform: translateY(0);
  pointer-events: auto;
}
.archive__sorting-dropdown-menu--visible {
  --max-items: 5;
  max-height: calc(var(--max-items) * 1lh + var(--max-items) * var(--archive-actions-padding-tb) * 2 + 20px);
  overflow: hidden;
}
.archive__sorting-dropdown-menu-inner::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.archive__sorting-dropdown-menu-inner::-webkit-scrollbar-button {
  display: none;
}
.archive__sorting-dropdown-menu-inner::-webkit-scrollbar-corner {
  background: transparent;
}
.archive__sorting-dropdown-menu-inner::-webkit-scrollbar-track {
  background-color: #fbfaf4;
}
.archive__sorting-dropdown-menu-inner::-webkit-scrollbar-thumb {
  background-color: #487810;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.archive__sorting-dropdown-menu-inner::-webkit-scrollbar-thumb:hover {
  background-color: rgba(251, 250, 244, 0.7);
}
.archive__sorting-dropdown-menu-inner::-webkit-resizer {
  display: none;
}
.archive__sorting-dropdown-menu-inner {
  display: grid;
  max-height: 100%;
  width: 100%;
  padding: 10px;
  overflow: auto;
}
.archive__sorting-dropdown-item {
  min-width: calc(1lh + var(--archive-actions-padding-tb) * 2);
  padding: var(--archive-actions-padding-tb) var(--archive-actions-padding-lr);
  border-radius: var(--archive-actions-rounding);
  cursor: pointer;
  transition: 0.3s ease-in;
}
.archive__sorting-dropdown-item--active {
  background-color: #ECFFD5;
}
.archive__sorting-dropdown-item:hover {
  background-color: #ffd200;
}
.archive__sorting-dropdown--open .archive__sorting-dropdown-icon {
  transform: rotateX(180deg);
}
.archive-load-more {
  display: flex;
  justify-content: center;
}/*# sourceMappingURL=main.css.map */