@charset "UTF-8";
/* Стили для модального окна */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 65, 102, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1050;
  overflow: hidden auto;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

/* Стили для модального диалога */
.custom-modal-dialog {
  position: relative;
  display: flex;
  width: 700px;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* Стили для контента модального окна */
.custom-modal-content {
  padding: 60px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #EBF1F7;
  border-radius: 30px;
  outline: 0;
}

/* Стили для заголовка модального окна */
.custom-modal-header {
  margin: 0 auto 45px;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
  color: #333F56;
  max-width: 500px;
  text-align: center;
}

/* Стили для тела модального окна */
.custom-modal-body {
  position: relative;
}

.custom-modal-text {
  margin: 0 auto 32px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  max-width: 365px;
  color: #4D7295;
  text-align: center;
}

/* Стили для подвала модального окна */
.custom-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}

/* Кнопка закрытия */
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 40px;
  color: #333F56;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.3;
}

.close:hover {
  opacity: 1;
}

/* Открытое модальное окно */
.custom-modal.show {
  display: flex;
}

.custom-modal-body .form__notice {
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #333F56;
  text-align: center;
  opacity: 0.5;
}

.custom-modal-body .form__notice a {
  text-decoration: underline;
  color: #333F56;
}

body.overlay-active {
  overflow: hidden;
}

.successful-modal {
  display: none;
  position: fixed;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 600px;
  height: 75px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  background-color: #EBF1F7;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #333F56;
  box-shadow: 0 8px 30px rgba(51, 63, 86, 0.3);
}

.custom-modal .favorite-only {
  display: none;
}
.custom-modal.favorite-login-modal .custom-modal-title {
  display: none;
}
.custom-modal.favorite-login-modal .favorite-only {
  display: block;
}

@media (max-width: 500px) {
  .custom-modal {
    padding: 50px 20px;
  }
  .custom-modal-dialog {
    width: 100%;
  }
  .custom-modal-content {
    padding: 40px 20px 20px;
  }
  .custom-modal-header {
    margin: 0 auto 30px;
    max-width: 280px;
    font-size: 24px;
  }
  .custom-modal-body .form__notice {
    font-size: 10px;
  }
}
form p {
  margin: 0;
  padding: 0;
}
form p br {
  display: none;
}
form .row-group {
  display: flex;
  gap: 10px;
}
form .input-group {
  position: relative;
  margin-bottom: 10px;
}
form .input-group > span {
  width: 100%;
}
form .input-group input, form .input-group textarea {
  width: 100%;
  position: relative;
  padding: 25px 24px;
  border: none;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  background-color: #FFFFFF;
}
form .input-group input:focus, form .input-group textarea:focus {
  outline: none;
  box-shadow: none;
}
form .input-group input::-moz-placeholder, form .input-group textarea::-moz-placeholder {
  color: #212C40;
  opacity: 0.6;
}
form .input-group input::placeholder, form .input-group textarea::placeholder {
  color: #212C40;
  opacity: 0.6;
}
form .input-group input.wpcf7-not-valid, form .input-group textarea.wpcf7-not-valid {
  color: #DC0000 !important;
}
form .input-group input.wpcf7-not-valid::-moz-placeholder, form .input-group textarea.wpcf7-not-valid::-moz-placeholder {
  color: #DC0000 !important;
}
form .input-group input.wpcf7-not-valid::placeholder, form .input-group textarea.wpcf7-not-valid::placeholder {
  color: #DC0000 !important;
}
form .input-group.left-icon input, form .input-group.left-icon textarea {
  padding-left: 60px;
}
form .input-group.left-icon svg {
  position: absolute;
  top: 25px;
  left: 24px;
  width: 20px;
  height: 20px;
  color: #C8D4E5;
  fill: #C8D4E5;
  transition: all 0.2s ease;
}
form .input-group.left-icon:has(input:not(:-moz-placeholder)) svg {
  color: #909FB6;
  fill: #909FB6;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
form .input-group.left-icon:has(input:focus) svg, form .input-group.left-icon:has(input:not(:placeholder-shown)) svg {
  color: #909FB6;
  fill: #909FB6;
  transition: all 0.2s ease;
}
form .input-group.left-icon:has(input.wpcf7-not-valid) svg {
  color: #EA6666;
  fill: #EA6666;
  transition: all 0.2s ease;
}
form .input-group.right-icon input, form .input-group.right-icon textarea {
  padding-right: 60px;
}
form .input-group.right-icon svg {
  position: absolute;
  top: 25px;
  right: 24px;
  width: 20px;
  height: 20px;
  color: #C8D4E5;
  fill: #C8D4E5;
  transition: all 0.2s ease;
}
form .input-group.right-icon:has(input:not(:-moz-placeholder)) svg {
  color: #909FB6;
  fill: #909FB6;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
form .input-group.right-icon:has(input:focus) svg, form .input-group.right-icon:has(input:not(:placeholder-shown)) svg {
  color: #909FB6;
  fill: #909FB6;
  transition: all 0.2s ease;
}
form .input-group.right-icon:has(input.wpcf7-not-valid) svg {
  color: #EA6666;
  fill: #EA6666;
  transition: all 0.2s ease;
}
form .input-submit {
  position: relative;
}
form .input-submit input, form .input-submit button {
  width: 100%;
  padding: 28px 24px;
  border: none;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #333F56;
  background-color: #FFB830;
  cursor: pointer;
}
form .input-submit input:hover, form .input-submit input:focus, form .input-submit button:hover, form .input-submit button:focus {
  background-color: #FFD057;
}
form .row-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
form .row-buttons input, form .row-buttons button {
  width: 100%;
  flex-shrink: 1;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  height: 76px;
}

@media (max-width: 500px) {
  form .input-group input,
  form .input-group textarea {
    padding: 20px;
    font-size: 16px;
  }
  form .input-group input::-moz-placeholder, form .input-group textarea::-moz-placeholder {
    font-size: 16px;
  }
  form .input-group input::placeholder,
  form .input-group textarea::placeholder {
    font-size: 16px;
  }
  form .input-group.right-icon svg {
    top: 24px;
    right: 20px;
    width: 16px;
    height: 16px;
    color: #C8D4E5;
    fill: #C8D4E5;
  }
  form .input-group.right-icon:has(input:not(:-moz-placeholder)) svg {
    color: #909FB6;
    fill: #909FB6;
  }
  form .input-group.right-icon:has(input:focus) svg,
  form .input-group.right-icon:has(input:not(:placeholder-shown)) svg {
    color: #909FB6;
    fill: #909FB6;
  }
  form .input-group.right-icon textarea svg {
    top: 20px;
    transform: none;
  }
  form .input-submit input,
  form .input-submit button {
    padding: 20px;
    font-size: 18px;
  }
  form .row-buttons input, form .row-buttons button {
    font-size: 16px;
    height: 60px;
  }
}
.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-spinner {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  background-color: transparent !important;
  -webkit-backdrop-filter: blur(2px) !important;
          backdrop-filter: blur(2px) !important;
  opacity: 1 !important;
}
.wpcf7-spinner::before {
  top: calc(50% - 14px) !important;
  left: calc(50% - 14px) !important;
  width: 10px !important;
  height: 10px !important;
  transform-origin: 14px 14px !important;
  background-color: #ffffff !important;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 0.2em 1em;
  font-family: "Inter";
  font-size: 14px;
}

form.sent .wpcf7-response-output {
  color: #f9fffa !important;
  background-color: #46b450 !important;
  border-color: #46b450 !important;
}

form.failed .wpcf7-response-output,
form.aborted .wpcf7-response-output,
form.spam .wpcf7-response-output,
form.invalid .wpcf7-response-output,
form.unaccepted .wpcf7-response-output,
form.payment-required .wpcf7-response-output {
  color: #fff6f6 !important;
  background-color: #DC0000 !important;
  border-color: #DC0000 !important;
}

.iti {
  width: 100%;
}
.iti .iti__country-container {
  padding-left: 16px;
}
.iti .iti__tel-input {
  padding-left: 72px !important;
}
.iti .iti__dropdown-content {
  width: 300px !important;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
  border: none;
  overflow: hidden;
}
.iti .iti__search-input {
  padding: 12px 24px;
}

.intl-tel-input {
  width: 100%;
}
.intl-tel-input .flag-container {
  padding-left: 16px !important;
}
.intl-tel-input .wpcf7-intl-tel {
  padding-left: 72px !important;
}
.intl-tel-input .country-list {
  width: 300px !important;
  border-radius: 16px !important;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25) !important;
  border: none !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 100%;
  padding: 10px !important;
}

.form__or {
  margin: 40px 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #4D7295;
}

.nsl-container .nsl-container-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nsl-container .nsl-container-buttons a {
  text-decoration: none !important;
}
.nsl-container .nsl-container-buttons .nsl-button {
  width: 100% !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #e2eaf2 !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: none !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-svg-container {
  padding: 0 !important;
  width: 30px !important;
  height: 30px !important;
  flex-shrink: 0 !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-svg-container svg {
  width: 30px !important;
  height: 30px !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-label-container {
  padding: 0;
  margin: 0;
  flex-grow: 0 !important;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #212C40;
  opacity: 0.6 !important;
  text-decoration: none !important;
}
.nsl-container .nsl-container-buttons .nsl-button .nsl-button-label-container strong, .nsl-container .nsl-container-buttons .nsl-button .nsl-button-label-container b {
  font-weight: 400;
}

#addFavoriteModal .favorite_list {
  display: flex;
  flex-direction: column;
}
#addFavoriteModal .favorite_list input[type=radio] {
  display: none;
}
#addFavoriteModal .favorite_list label {
  width: 100%;
  height: 60px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #e2ebf5;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #212C40;
  cursor: pointer;
}
#addFavoriteModal .favorite_list label:hover, #addFavoriteModal .favorite_list label:focus {
  background-color: #D6EAFF;
}
#addFavoriteModal .favorite_list input[type=radio]:checked + label {
  background-color: #D6EAFF;
  color: #3575B1;
}
#addFavoriteModal .add-new-favorite {
  width: 100%;
  height: 60px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid #3575B1;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  color: #3575B1;
  cursor: pointer;
}
#addFavoriteModal .add-new-favorite:hover, #addFavoriteModal .add-new-favorite:focus {
  background-color: #D6EAFF;
}
#addFavoriteModal .input-submit {
  margin-top: 32px;
}

#createNewFavoriteModal .wpcf7-form .wpcf7-response-output {
  display: none;
}
#createNewFavoriteModal .wpcf7-form.invalid .wpcf7-response-output {
  display: block;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.dropdown-hover {
  position: relative;
}
.dropdown-hover ul {
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 102%;
  border: none;
  border-radius: 10px;
  list-style: none;
  overflow: hidden;
  z-index: 10;
}
.dropdown-hover ul li {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dce8f4;
  background-color: #f6f9fa;
  height: 48px;
}
.dropdown-hover ul li:hover {
  background-color: #dce8f4;
}
.dropdown-hover ul li:last-child {
  border-bottom: none;
}
.dropdown-hover ul li a {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  text-wrap: nowrap;
  color: #3d4b64;
}
.dropdown-hover ul li a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.dropdown-hover ul li .button {
  justify-content: start;
  height: 100%;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
}
.dropdown-hover:hover ul {
  display: flex;
}

/* Стилизация общего контейнера скроллбара */
::-webkit-scrollbar {
  width: 10px;
  /* ширина вертикального скролла */
  height: 10px;
  /* высота горизонтального скролла */
}

/* Цвет фона трека скроллбара */
::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  /* цвет фона */
  border-radius: 10px;
  /* скругление углов */
}

/* Цвет и стиль ползунка */
::-webkit-scrollbar-thumb {
  background-color: #888;
  /* цвет ползунка */
  border-radius: 10px;
  /* скругление углов */
  border: 2px solid #f0f0f0;
  /* пространство между треком и ползунком */
}

/* Цвет ползунка при наведении */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* более темный цвет при наведении */
}

html {
  box-sizing: border-box;
}

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

*:hover {
  transition: all 0.3s ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #333F56;
  background-color: #373B44;
}

a {
  color: #2977C1;
}
a:hover {
  color: #1C568D;
}
a .active {
  color: #6497C6;
}

ul {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Geologica", sans-serif;
  font-size: 100px;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 500px) {
  h1 {
    font-size: 45px;
  }
}
.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.section {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section .section__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: auto;
}
.section .section__inner {
  position: relative;
  width: 100%;
}
.section .section__title {
  font-family: "Geologica", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #333F56;
}
.section .section__title span {
  color: #3575B1;
}
.section .section__content {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.section .section__content p {
  margin-bottom: 20px;
}
.section .section__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .container {
    padding: 0;
    margin: 0 auto;
    max-width: 320px;
  }
  .section .section__inner {
    padding: 80px 0;
  }
  .section .section__inner .section__title {
    font-size: 38px;
  }
  .section .section__inner .section__content {
    font-size: 18px;
  }
  .section .section__inner .section__img {
    margin: 0 -20px;
  }
  .section .section__inner .section__img img {
    width: 100%;
    height: auto;
  }
}
:root {
  --button-color-black: #333f56;
  --button-color-white: #ffffff;
  --button-color-blue: #4d7295;
  --button-color-blue2: #3575b1;
  --button-color-orange: #ffb830;
  --button-color-red: #e67987;
  --button-color-red2: #e78f9b;
  --button-color-dark-red: #D63F69;
  --button-color-dark-red-hover: #b03155;
  --button-color-gray: #ebf1f7;
}

button {
  cursor: pointer;
}

.button {
  padding: 10px 15px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 4px;
  border: none;
  border-radius: 10px;
  background-color: #FFB830;
  color: #333F56;
  cursor: pointer;
}
.button:hover, .button:focus {
  background-color: #FFD057;
}
.button.active {
  background-color: #FFAA47;
}
.button.button--lg {
  padding: 25px 45px;
  font-size: 18px;
}
.button--secondary {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--button-color-blue);
}
.button--secondary:hover, .button--secondary:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.button--secondary-icon {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--button-color-blue);
}
.button--secondary-icon:hover, .button--secondary-icon:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.button--error {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--button-color-red);
}
.button--error:hover, .button--error:focus {
  background-color: rgba(255, 255, 255, 0.8);
}
.button--transparent {
  background-color: transparent;
}
.button--transparent:hover, .button--transparent:focus {
  background-color: rgba(255, 255, 255, 0.5);
}
.button--outline {
  border: 1px solid var(--button-color-blue);
  background-color: transparent;
  color: var(--button-color-blue);
}
.button--outline:hover, .button--outline:focus {
  background-color: rgba(255, 255, 255, 0.5);
}
.button--red {
  background-color: var(--button-color-dark-red);
  color: var(--button-color-white);
}
.button--red:hover, .button--red:focus {
  background-color: var(--button-color-dark-red-hover);
}

.button__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #333F56;
  cursor: pointer;
}
.button__icon:hover, .button__icon:focus {
  background-color: rgba(255, 255, 255, 0.7);
}
.button__icon.active {
  background-color: rgb(255, 255, 255);
}

.header {
  position: fixed;
  width: 100%;
  max-width: 1920px;
  border-bottom: #ebecf7 1px solid;
  background-color: #fff;
  z-index: 500;
}
.header__inner {
  padding: 3px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner .header__left {
  display: flex;
  align-items: center;
}
.header__inner .header__right {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__inner .header__logo {
  margin-right: 60px;
}
.header__inner .header__logo img {
  width: 72px;
  height: auto;
}
.header__inner .header__menu-btn {
  display: none;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  color: #333f56;
  cursor: pointer;
}
.header__inner .header__menu {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.header__inner .menu__list {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
.header__inner .menu__list .menu__item {
  margin-right: 16px;
}
.header__inner .menu__list .menu__item:hover > .menu__link {
  color: #4289CC;
  fill: #4289CC;
}
.header__inner .menu__list .menu__item.has-children > .menu__link:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%233D4B64'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.header__inner .menu__list .menu__item:hover.has-children > .menu__link:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%234289CC'/%3E%3C/svg%3E");
}
.header__inner .menu__list .menu__item:last-child {
  margin-right: 0;
}
.header__inner .menu__list .menu__item:last-child.has-children > .menu__link:after {
  width: 14px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z' fill='%233D4B64'/%3E%3C/svg%3E");
  margin-left: 4px;
}
.header__inner .menu__list .menu__item:last-child:hover.has-children > .menu__link:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z' fill='%234289CC'/%3E%3C/svg%3E");
}
.header__inner .has-children {
  position: relative;
}
.header__inner .has-children > .submenu__list {
  margin: 0;
  min-width: 200px;
  padding: 2px;
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background-color: transparent;
  border: none;
  list-style: none;
}
.header__inner .has-children > .submenu__list > .submenu__item {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce8f4;
  background-color: #ebf1f7;
}
.header__inner .has-children > .submenu__list > .submenu__item:first-child {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.header__inner .has-children > .submenu__list > .submenu__item:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom: none;
}
.header__inner .has-children > .submenu__list > .submenu__item:hover {
  background-color: #deebf8;
}
.header__inner .has-children > .submenu__list > .submenu__item .submenu__link {
  flex-grow: 1;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  color: #3D4B64;
}
.header__inner .has-children > .submenu__list > .submenu__item:last-child {
  border-bottom: none;
}
.header__inner .has-children:hover > .submenu__list {
  display: block;
}
.header__inner .has-children .has-children::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #3D4B64;
  border-bottom: 2px solid #3D4B64;
  transform: rotate(-45deg);
  margin-right: 16px;
}
.header__inner .has-children .has-children > .submenu__list {
  top: 0%;
  left: 100%;
  margin-left: 2px;
}
.header__inner .menu__link {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 45px;
  text-wrap: nowrap;
  color: #3D4B64;
}
.header__inner .menu__item:last-child > .submenu__list {
  width: 885px;
  top: 100%;
  left: -440px;
  padding: 50px 70px;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  background-color: #ebf1f7;
  border: none;
  border-radius: 20px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item {
  display: none;
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1), .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) {
  width: 40%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  gap: 26px;
  left: 0;
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1)::after, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2)::after {
  display: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1):hover, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2):hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__link, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__link {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  left: 0;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item {
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item:hover, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item:hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item > .submenu__link, .header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item > .submenu__link {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  left: 0;
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3)::after {
  display: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3):hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__link {
  display: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  left: 0;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item {
  border: none;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item:hover {
  background-color: #ebf1f7;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link span,
.header__inner .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link sup {
  margin-left: 4px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  background-color: #ffb830;
  color: #3D4B64;
  vertical-align: text-bottom;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
}
.header__inner .menu__item:last-child > .submenu__list .submenu__link:hover {
  color: #4b8dcc;
}
.header__inner .menu__item:last-child:hover > .submenu__list {
  display: flex;
}
.header__inner .header__icon {
  display: flex;
  align-items: center;
}
.header__inner .header__login-logout .icon__link--login {
  display: inline-block;
}
.header__inner .header__login-logout .icon__link--logout {
  display: none;
}
.header__inner .header__login-logout.auth .icon__link--login {
  display: none;
}
.header__inner .header__login-logout.auth .icon__link--logout {
  display: inline-block;
}
.header__inner .icon__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__inner .icon__link--heart {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.header__inner .icon__link--heart svg {
  color: #95b9db;
}
.header__inner .icon__link--heart svg.heart-outline {
  fill: #95b9db;
}
.header__inner .icon__link--heart svg.heart-full {
  display: none;
  fill: #ffb830;
}
.header__inner .icon__link--heart .number {
  display: none;
}
.header__inner .icon__link--heart.active svg {
  fill: #ffb830;
  color: #ffb830;
}
.header__inner .icon__link--heart.active svg.heart-outline {
  display: none;
}
.header__inner .icon__link--heart.active svg.heart-full {
  display: inline-flex;
}
.header__inner .icon__link--heart.active .number {
  width: 34px;
  height: 34px;
  margin-left: -34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3D4B64;
  font-weight: 500;
  font-size: 10px;
  line-height: 34px;
}
.header__inner .icon__link--login, .header__inner .icon__link--logout {
  padding: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
}
.header__inner .icon__link .icon__name {
  display: none;
}
.header__inner .header__phones {
  position: relative;
  display: flex;
  align-items: center;
}
.header__inner .header__phones .header__phone > .phone__link {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  line-height: 14px;
  text-wrap: nowrap;
  color: #3D4B64;
}
.header__inner .header__phones .header__phone > .phone__link:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%233D4B64'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.header__inner .header__phones .header__phone > .phones__list {
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: -30px;
  border: none;
  list-style: none;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dce8f4;
  background-color: #ebf1f7;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:first-child {
  border-radius: 20px 20px 0 0;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:last-child {
  border-radius: 0 0 20px 20px;
  border-bottom: none;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:hover {
  background-color: #deebf8;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item .phone__link {
  padding: 16px 30px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  text-wrap: nowrap;
  color: #3D4B64;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item .phone__link img {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.header__inner .header__phones .header__phone > .phones__list > .phone__item:last-child {
  border-bottom: none;
}
.header__inner .header__phones .header__phone:hover > .phones__list {
  display: flex;
}
.header__inner .header__lang {
  display: flex;
  align-items: center;
}
.header__inner .lang__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 7px;
}
.header__inner .lang__link {
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
  color: #3D4B64;
}
.header__inner .lang__link:hover, .header__inner .lang__link:focus, .header__inner .lang__link.active {
  color: #4289CC;
}
.header__inner .header__button {
  display: flex;
  align-items: center;
}
.header__inner .header__ribbons {
  margin-top: -5px;
  margin-right: -20px;
  position: relative;
  width: 0;
  height: 60px;
}
.header__inner .header__ribbons .ribbons__inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}
.header__inner .header__ribbons .ribbons__inner img {
  width: 50px;
  height: auto;
}

@media (max-width: 500px) {
  .header .header__ribbons {
    display: none;
  }
  .header .header__inner {
    height: 70px;
  }
  .header .header__left {
    width: 100%;
    justify-content: space-between;
  }
  .header .header__left .header__logo {
    height: 50px;
    display: flex;
    margin-right: 0;
  }
  .header .header__left .header__logo img {
    height: 50px;
    width: auto;
  }
  .header .header__menu-btn {
    display: block;
  }
  .header .header__right {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ebf1f7;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 70px 0 100px;
    transition: all 0.3s ease;
  }
  .header .header__right .header__menu-btn--close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .header .header__right .header__menu {
    margin: 0;
  }
  .header .header__right .header__menu .menu__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .header .header__right .header__menu .menu__list .menu__item {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: #ebf1f7;
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item:first-child {
    border-top: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item .menu__link {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .menu__link:hover {
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .menu__link svg {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children > .menu__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3D4B64;
    border-bottom: 2px solid #3D4B64;
    transform: rotate(-45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background: none;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children.open > .menu__link {
    background-color: #deebf8;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children.open > .menu__link::after {
    transform: rotate(45deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__menu .menu__list .menu__item.has-children.open .has-children.open > .submenu__link {
    background-color: #ebf1f7 !important;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list {
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    margin: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item:first-child {
    border-top: 1px solid #dce8f4;
    border-radius: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item:last-child {
    border-bottom: none;
    border-radius: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item > .submenu__link {
    display: block;
    padding: 10px 24px 10px 36px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item > .submenu__link:hover {
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item > .submenu__link::before {
    position: absolute;
    top: 10px;
    left: 20px;
    content: "•";
    display: block;
    color: #3d4b64;
    opacity: 0.7;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3d4b64;
    border-bottom: 2px solid #3d4b64;
    transform: rotate(-45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background-image: none;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children.open > .submenu__link {
    background-color: #deebf8;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children.open > .submenu__link::after {
    transform: rotate(45deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link {
    padding-left: 48px;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link::before {
    content: "••";
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link {
    padding-left: 60px;
  }
  .header .header__right .header__menu .menu__list .menu__item .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item.has-children > .submenu__list > .submenu__item > .submenu__link::before {
    content: "•••";
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: #ebf1f7;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .menu__link {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    display: block !important;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item {
    background-color: transparent;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item > .submenu__link {
    padding-left: 24px;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item > .submenu__link::before {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list {
    display: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item {
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item > .submenu__link, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item > .submenu__link {
    display: block;
    padding: 10px 24px 10px 36px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(1) > .submenu__list > .submenu__item > .submenu__link:before, .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(2) > .submenu__list > .submenu__item > .submenu__link:before {
    content: "•";
    left: 20px;
    opacity: 0.7;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__link {
    display: none;
    border: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    margin: 0;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-bottom: 1px solid #dce8f4;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item:first-child {
    border-top: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item:last-child {
    border-bottom: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link {
    display: block;
    padding: 10px 24px 10px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link sup {
    position: absolute;
    right: 16px;
    margin-left: 4px;
    display: inline-block;
    padding: 1px 7px 0;
    border-radius: 10px;
    background-color: #ffb830;
    color: #3d4b64;
    vertical-align: text-bottom;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link:hover {
    color: #3d4b64;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link::before {
    position: absolute;
    top: 10px;
    left: 24px;
    content: "•";
    display: none;
    color: #3d4b64;
    opacity: 0.3;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item > .submenu__link span {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item.has-children > .submenu__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3d4b64;
    border-bottom: 2px solid #3d4b64;
    transform: rotate(45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background-image: none;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item.has-children.open > .submenu__link {
    background-color: #deebf8;
  }
  .header .header__right .header__menu .menu__list .menu__item:last-child > .submenu__list > .submenu__item:nth-child(3) > .submenu__list > .submenu__item.has-children.open > .submenu__link::after {
    transform: rotate(-135deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__menu .has-children::after {
    display: none !important;
  }
  .header .header__right .header__menu .has-children:not(.open):hover > .submenu__list {
    display: none;
  }
  .header .header__right .header__icon {
    position: relative;
    display: block;
    padding: 10px 24px;
    border-bottom: 1px solid #dce8f4;
    text-decoration: none;
  }
  .header .header__right .header__icon .icon__link--heart svg.heart-outline {
    display: inline-block;
    width: 18px;
    height: 16px;
  }
  .header .header__right .header__icon .icon__link--telegram svg {
    display: inline-block;
    width: 18px;
    height: 16px;
  }
  .header .header__right .header__icon .icon__link--heart.active svg.heart-full {
    display: none;
  }
  .header .header__right .header__icon .number {
    display: none;
  }
  .header .header__right .header__icon .icon__name {
    display: inline-block;
    margin-left: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
  }
  .header .header__right .header__icon .icon__link--heart.active .number {
    position: absolute;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    background-color: #ffb830;
    color: #3d4b64;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    line-height: 20px;
    font-weight: 500;
    top: 8px;
    right: 16px;
  }
  .header .header__right .header__phones {
    width: 100%;
  }
  .header .header__right .header__phones .header__phone {
    width: 100%;
  }
  .header .header__right .header__phones .header__phone .phone__link {
    position: relative;
    display: block;
    padding: 10px 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d4b64;
    border-bottom: 1px solid #dce8f4;
    text-decoration: none;
  }
  .header .header__right .header__phones .header__phone .phone__link svg {
    display: none;
  }
  .header .header__right .header__phones .header__phone > .phone__link::after {
    position: absolute;
    top: 16px;
    right: 4px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3D4B64;
    border-bottom: 2px solid #3D4B64;
    transform: rotate(-45deg);
    margin-right: 16px;
    transition: all 0.2s ease;
    opacity: 0.3;
    background: none;
  }
  .header .header__right .header__phones .header__phone.open > .phone__link {
    background-color: #deebf8;
  }
  .header .header__right .header__phones .header__phone.open > .phone__link::after {
    transform: rotate(45deg);
    transition: all 0.2s ease;
  }
  .header .header__right .header__phones .header__phone .phones__list {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
  }
  .header .header__right .header__phones .header__phone .phones__list .phone__item {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dce8f4;
    border-radius: 0;
  }
  .header .header__right .header__phones .header__phone .phones__list .phone__item .phone__link {
    padding: 10px 24px;
    text-decoration: none;
  }
  .header .header__right .header__lang {
    width: 100%;
  }
  .header .header__right .header__lang .lang__list {
    width: 100%;
    position: relative;
    padding: 10px 24px;
    gap: 20px;
  }
  .header .header__right .header__button {
    width: 100%;
    padding: 10px 24px;
  }
  .header .header__right .header__button .button {
    width: 100%;
  }
  body.menu__open {
    overflow: hidden;
  }
  body.menu__open .header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(63, 65, 102, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    transition: all 0.5s ease;
  }
  body.menu__open .header .header__inner .header__right {
    right: 0;
    transition: all 0.5s ease;
  }
}
.section__gallery {
  padding-top: 90px;
  padding-bottom: 50px;
  background-color: #EBF1F7;
}
.section__gallery .swiper-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}
.section__gallery .swiper-slide {
  width: auto;
}
.section__gallery .swiper .swiper-pagination {
  margin-top: 10px;
  position: relative;
}
.section__gallery .swiper .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background-color: #FFFFFF;
  opacity: 1;
}
.section__gallery .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #95B9DB;
  opacity: 1;
}
.section__gallery .swiper .swiper-pagination-bullet:hover {
  background-color: #65AFF5;
  opacity: 1;
}
.section__gallery .gallery__item {
  position: relative;
  display: block;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
}
.section__gallery .gallery__item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}
.section__gallery .gallery__item img {
  height: 460px;
  width: auto;
}
.section__gallery .gallery__item svg {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 0.6;
  color: #ffffff;
}

@media (max-width: 500px) {
  .section__gallery {
    min-height: auto;
    padding-bottom: 0;
  }
  .section__gallery .gallery__item {
    height: 214px;
    border-radius: 16px;
  }
  .section__gallery .gallery__item img {
    height: 214px;
    width: auto;
  }
  .section__gallery .gallery__item svg {
    top: 6px;
    right: 6px;
    transform: scale(0.75);
  }
  .section__gallery .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    margin: 0 2px;
  }
}
.page-breadcrumbs > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #333F56;
  margin-bottom: 32px;
}
.page-breadcrumbs > span a {
  color: #3575B1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.page-breadcrumbs > span a:hover {
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.page-breadcrumbs > span .breadcrumb_last {
  opacity: 0.7;
}

@media (max-width: 500px) {
  .page-breadcrumbs > span {
    margin-bottom: 14px;
  }
  .page-breadcrumbs > span .breadcrumb_last {
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
:root {
  --object-color-black: #333f56;
  --object-color-white: #ffffff;
  --object-color-blue: #4d7295;
  --object-color-blue2: #3575b1;
  --object-color-orange: #ffb830;
  --object-color-red: #e67987;
  --object-color-gray: #ebf1f7;
}

header.header {
  border-bottom: #ebecf7 1px solid;
  background-color: #ebecf7;
}

hr.hr__dotted {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  height: 4px;
  opacity: 0.4;
}
hr.hr__dotted::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-image: radial-gradient(circle, var(--object-color-blue) 1px, transparent 0px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
}
hr.hr__dotted.mobile {
  display: none;
}

.section__object {
  padding: 0 0 80px;
  background-color: var(--object-color-gray);
}
.section__object .section__inner {
  display: flex;
  justify-content: space-between;
}
.section__object .section__inner--left {
  width: 778px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 1;
}
.section__object .section__inner--right {
  width: 340px;
  flex-shrink: 1;
}
.section__object .page-breadcrumbs > span {
  margin: 0;
}
.section__object h1 {
  margin: -10px 0 0;
  padding: 0;
  font-family: "Geologica", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 110%;
  color: var(--object-color-black);
}
.section__object .object__like {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 16px;
  color: var(--object-color-black);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 105%;
}
.section__object .object__like--mobile {
  display: none;
  height: 17px;
  padding: 0;
}
.section__object .object__like--desktop {
  display: flex;
  height: 40px;
  border-radius: 10px;
  border: #c9d8e7 1px solid;
}
.section__object .object__social {
  margin: 0 0 -14px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.section__object .object__social--left {
  display: flex;
  gap: 12px;
}
.section__object .object__social--right {
  display: flex;
  gap: 4px;
}
.section__object .object__social .property-card__favorite {
  position: relative;
  top: 0;
  right: 0;
}
.section__object .object__social .object__share {
  position: relative;
}
.section__object .object__social .object__share .share__button {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 14px 14px;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 10px;
}
.section__object .object__social .object__share .share__button span {
  color: var(--object-color-blue);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-wrap: nowrap;
}
.section__object .object__social .object__share .share__button::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%233D4B64'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.section__object .object__social .object__share .share__list {
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  border: none;
  border-radius: 10px;
  list-style: none;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}
.section__object .object__social .object__share .share__list .share__item {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dce8f4;
  background-color: #f6f9fa;
  height: 55px;
}
.section__object .object__social .object__share .share__list .share__item:hover {
  background-color: #dce8f4;
}
.section__object .object__social .object__share .share__list .share__item:last-child {
  border-bottom: none;
}
.section__object .object__social .object__share .share__list .share__item .share__link {
  padding: 8px 30px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  text-wrap: nowrap;
  color: #3d4b64;
}
.section__object .object__social .object__share:hover .share__list {
  display: flex;
}
.section__object .object__social .object__pdf {
  position: relative;
}
.section__object .object__social .object__pdf .pdf__button {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 14px 14px;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 10px;
  color: var(--object-color-blue);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.section__object .object__social .object__pdf .pdf__button::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 4'%3E%3Cpath d='M2.74327 3.43587C2.62353 3.60179 2.37648 3.60179 2.25673 3.43587L0.678144 1.24851C0.534954 1.0501 0.676727 0.772949 0.921409 0.772949L4.07859 0.772949C4.32327 0.772949 4.46505 1.0501 4.32186 1.24851L2.74327 3.43587Z' fill='%233D4B64'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.section__object .object__social .object__pdf .pdf__list {
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  border: none;
  border-radius: 10px;
  list-style: none;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}
.section__object .object__social .object__pdf .pdf__list .pdf__item {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dce8f4;
  background-color: #f6f9fa;
  height: 55px;
}
.section__object .object__social .object__pdf .pdf__list .pdf__item:hover {
  background-color: #dce8f4;
}
.section__object .object__social .object__pdf .pdf__list .pdf__item:last-child {
  border-bottom: none;
}
.section__object .object__social .object__pdf .pdf__list .pdf__item .pdf__link {
  padding: 8px 30px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  text-wrap: nowrap;
  color: #3d4b64;
}
.section__object .object__social .object__pdf:hover .pdf__list {
  display: flex;
}
.section__object .object__price {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section__object .object__price--left .price__value > span {
  display: none;
  font-family: "Geologica", sans-serif;
  font-weight: 200;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--object-color-black);
}
.section__object .object__price--left .price__value > span strong {
  font-weight: 700;
}
.section__object .object__price--left .price__value > span .separator {
  font-weight: 200;
}
.section__object .object__price--left .price__value > span.active {
  display: inline-block;
}
.section__object .object__price--right {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.section__object .object__price--right .price__currencies {
  display: flex;
  gap: 2px;
}
.section__object .object__price--right .price__currencies button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--object-color-blue);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.section__object .object__price--right .price__currencies button.active {
  background-color: var(--object-color-blue);
  color: var(--object-color-white);
}
.section__object .object__price--right .price__download a {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 14px;
  border: #6f91b1 solid 1px;
  border-radius: 10px;
  background-color: transparent;
  color: var(--object-color-blue);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
}
.section__object .object__price--right .price__download a:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.section__object .object__info {
  margin: 0;
  display: flex;
  gap: 4px;
}
.section__object .object__info .info__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  flex-shrink: 1;
  padding: 16px;
  width: 150px;
  height: 110px;
  border-radius: 16px;
  background-color: var(--object-color-white);
}
.section__object .object__info .info__item .info__title {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--object-color-blue);
}
.section__object .object__info .info__item .info__value {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--object-color-black);
}
.section__object .object__info .info__item:last-child {
  width: auto;
  flex-grow: 1;
}
.section__object .object__info .info__item:last-child .info__value {
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  white-space: wrap;
}
.section__object .object__location {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__object .object__location .location__title {
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: var(--object-color-black);
}
.section__object .object__location .location__info {
  display: flex;
  flex-direction: row;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.section__object .object__location .location__info .info__item {
  width: 157px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 1;
  padding: 12px;
  margin: 0;
  border: var(--object-color-black) solid 1.6px;
  border-radius: 16px;
}
.section__object .object__location .location__info .info__item:first-child {
  width: auto;
  flex-grow: 1;
  max-width: 300px;
}
.section__object .object__location .location__info .info__item .info__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--object-color-black);
}
.section__object .object__location .location__info .info__item .info__value {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2px;
}
.section__object .object__location .location__info .info__item .info__value span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: right;
}
.section__object .object__location .location__info .info__item .info__value span.spacer {
  flex-grow: 1;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  height: 2px;
}
.section__object .object__location .location__info .info__item .info__value span.spacer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 4px;
  background-image: radial-gradient(circle, rgb(67, 78, 100) 1px, transparent 0px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
}
.section__object .object__location .location__map {
  width: 778px;
  height: 431px;
  border-radius: 24px;
  overflow: hidden;
}
.section__object .object__location .location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.section__object .object__options {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__object .object__options .options__title {
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: var(--object-color-black);
}
.section__object .object__options .options__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.section__object .object__options .options__list .options__item {
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 1;
  padding: 12px 16px 14px;
  margin: 0;
  border-radius: 16px;
  background-color: var(--object-color-white);
}
.section__object .object__options .options__list .options__item span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--object-color-blue);
}
.section__object .object__options .options__list .options__item:hover {
  background-color: #4d7295;
}
.section__object .object__options .options__list .options__item:hover img {
  filter: brightness(0) invert(1);
}
.section__object .object__options .options__list .options__item:hover span {
  color: var(--object-color-white);
}
.section__object .object__video {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__object .object__video .video__title {
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: var(--object-color-black);
}
.section__object .object__video .video__wrapper {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}
.section__object .object__video .video__wrapper a {
  position: relative;
  display: block;
  line-height: 0;
}
.section__object .object__video .video__wrapper .video__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #383850 0%, rgba(56, 56, 80, 0.6) 34%, rgba(56, 56, 80, 0.6) 65%, #383850 100%);
  opacity: 0.5;
  z-index: 5;
}
.section__object .object__video .video__wrapper .video__thumb img {
  position: relative;
  width: 100%;
  height: auto;
}
.section__object .object__video .video__wrapper svg {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 0.4;
  color: var(--object-color-white);
  z-index: 10;
}
.section__object .object__video .video__wrapper .video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.section__object .object__additional-gallery {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__object .object__additional-gallery .additional-gallery__title {
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: var(--object-color-black);
}
.section__object .object__additional-gallery .swiper {
  width: 100%;
}
.section__object .object__additional-gallery .swiper-wrapper {
  padding: 0;
}
.section__object .object__additional-gallery .swiper-slide {
  width: auto;
}
.section__object .object__additional-gallery .swiper-pagination {
  margin-top: -12px;
  position: relative;
  line-height: 0;
  top: 0;
  bottom: 0;
  height: 3px;
}
.section__object .object__additional-gallery .swiper-pagination-bullet {
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
  opacity: 1;
}
.section__object .object__additional-gallery .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #95b9db;
  opacity: 1;
}
.section__object .object__additional-gallery .swiper-pagination-bullet:hover {
  background-color: #65aff5;
  opacity: 1;
}
.section__object .object__additional-gallery .additional-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  height: 206px;
  border-radius: 16px;
  overflow: hidden;
}
.section__object .object__additional-gallery .additional-gallery__item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}
.section__object .object__additional-gallery .additional-gallery__item img {
  width: 100%;
  height: 206px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__object .object__additional-gallery .additional-gallery__item svg {
  position: absolute;
  top: 6px;
  right: 6px;
  opacity: 1;
  color: var(--object-color-white);
  transform: scale(0.75);
}
.section__object .object__additional-gallery .additional-gallery__item .additional-gallery__title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--object-color-blue);
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 4px 6px;
  margin: 0;
  border-radius: 24px;
}
.section__object .object__description {
  margin: 0;
}
.section__object .object__description .description__title {
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: var(--object-color-black);
  margin-bottom: 24px;
}
.section__object .object__description .description__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--object-color-black);
}
.section__object .object__description .description__text p {
  margin-bottom: 16px;
}
.section__object .object__description .description__text ul,
.section__object .object__description .description__text ol {
  margin-bottom: 16px;
}
.section__object .object__description .description__text ul li,
.section__object .object__description .description__text ol li {
  margin-bottom: 0px;
}
.section__object .object__description .description__text h1,
.section__object .object__description .description__text h2,
.section__object .object__description .description__text h3,
.section__object .object__description .description__text h4,
.section__object .object__description .description__text h5,
.section__object .object__description .description__text h6 {
  margin-bottom: 16px;
  font-family: "Geologica", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
}
.section__object .object__description .description__text strong {
  font-weight: 700;
}
.section__object .object__description .description__text blockquote {
  position: relative;
  margin: 30px 0;
  padding: 12px 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: var(--object-color-blue);
}
.section__object .object__description .description__text blockquote::before, .section__object .object__description .description__text blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background-image: radial-gradient(circle, var(--object-color-blue) 1px, transparent 0px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
}
.section__object .object__description .description__text blockquote::after {
  top: auto;
  bottom: 0;
}
.section__object .object__updated-date {
  margin: 0;
}
.section__object .object__updated-date span {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 12px;
  border: var(--object-color-black) 1px solid;
  border-radius: 44px;
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: var(--object-color-black);
}
.section__object .outer-container {
  position: relative;
}
.section__object .outer-container .inner-container {
  position: relative;
  top: 0;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

@media (max-width: 500px) {
  .container {
    max-width: 335px;
  }
  .section__object {
    padding-top: 24px;
  }
  .section__object .hr__dotted.mobile {
    display: block;
  }
  .section__object .section__inner {
    padding: 0;
  }
  .section__object .section__inner--left {
    width: 100%;
    gap: 24px;
  }
  .section__object .section__inner--right {
    display: none;
  }
  .section__object .page-breadcrumbs > span {
    flex-wrap: wrap;
  }
  .section__object .page-breadcrumbs > span .breadcrumb_last {
    text-wrap: wrap;
    overflow: visible;
  }
  .section__object .object__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.02em;
  }
  .section__object .object__like--mobile {
    display: flex;
  }
  .section__object .object__like--desktop {
    display: none;
  }
  .section__object .object__social {
    margin: 0;
  }
  .section__object .object__share .share__button span {
    display: none;
  }
  .section__object .object__share .share__link span {
    display: none;
  }
  .section__object .object__price {
    flex-direction: column;
    align-items: stretch;
  }
  .section__object .object__price .price__currencies {
    flex-grow: 1;
  }
  .section__object .object__price .price__currencies button {
    width: 100%;
  }
  .section__object .object__price .object__price--left .price__value > span {
    font-size: 32px;
  }
  .section__object .object__info {
    flex-wrap: wrap;
  }
  .section__object .object__info .info__item {
    width: calc(50% - 2px);
    height: auto;
    min-height: 84px;
  }
  .section__object .object__info .info__item:first-child, .section__object .object__info .info__item:last-child {
    width: 100%;
  }
  .section__object .object__location .location__title {
    font-size: 24px;
  }
  .section__object .object__location .location__info {
    flex-direction: column;
  }
  .section__object .object__location .location__info .info__item {
    width: 100% !important;
    max-width: 100% !important;
    height: 80px;
  }
  .section__object .object__location .location__info .info__item:first-child .info__value span {
    font-size: 16px;
  }
  .section__object .object__location .location__map {
    width: 100%;
    height: 311px;
  }
  .section__object .object__options .options__title {
    font-size: 24px;
  }
  .section__object .object__options .options__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .section__object .object__options .options__list .options__item span {
    font-size: 14px;
  }
  .section__object .object__video .video__title {
    font-size: 24px;
  }
  .section__object .object__additional-gallery .additional-gallery__title {
    font-size: 24px;
  }
  .section__object .object__additional-gallery .swiper {
    overflow: visible;
  }
  .section__object .object__additional-gallery .swiper-pagination-bullet {
    width: 50px;
  }
  .section__object .object__description .description__title {
    font-size: 24px;
  }
  .section__object .object__description .description__text {
    font-size: 14px;
  }
  #feedbackModal .custom-modal-content {
    padding: 40px 30px 30px;
    background-color: rgba(2, 12, 47, 0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 20px;
  }
  #feedbackModal .custom-modal-content .custom-modal-header {
    margin-bottom: 20px;
    max-width: 185px;
  }
  #feedbackModal .custom-modal-content .custom-modal-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0;
    color: #fff;
  }
  #feedbackModal .custom-modal-content .custom-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 0.5;
  }
  #feedbackModal .custom-modal-content .custom-modal-close svg {
    width: 30px;
    height: 30px;
    color: #fff;
  }
  #feedbackModal .custom-modal-content .custom-modal-close:hover {
    opacity: 0.8;
  }
  #feedbackModal .custom-modal-content form .input-group input,
  #feedbackModal .custom-modal-content form .input-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    line-height: 20px;
    border-radius: 16px;
    max-height: 105px;
  }
  #feedbackModal .custom-modal-content form .input-submit input,
  #feedbackModal .custom-modal-content form .input-submit button {
    padding: 24px 16px;
    font-size: 18px;
    line-height: 20px;
  }
  #feedbackModal .custom-modal-content .form__notice {
    margin-top: 10px;
    font-family: "Geologica", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--object-color-white);
    opacity: 0.7;
  }
  #feedbackModal .custom-modal-content .form__notice a {
    color: var(--object-color-white);
    text-decoration: underline;
  }
}
:root {
  --object-color-black: #333F56;
  --object-color-white: #FFFFFF;
  --object-color-blue: #4D7295;
  --object-color-blue2: #3575B1;
  --object-color-orange: #FFB830;
  --object-color-red: #E67987;
  --object-color-gray: #EBF1F7;
}

.object__sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 24px 24px;
  background-color: var(--object-color-white);
  border-radius: 30px;
  overflow: hidden;
}
.object__sidebar .sidebar__title {
  font-family: "Geologica", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: var(--object-color-black);
}
.object__sidebar .sidebar__person {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.object__sidebar .sidebar__person .person__avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 1;
  border-radius: 80px;
  overflow: hidden;
}
.object__sidebar .sidebar__person .person__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.object__sidebar .sidebar__person .person__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.object__sidebar .sidebar__person .person__info .person__name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--object-color-black);
}
.object__sidebar .sidebar__person .person__info .person__position {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--object-color-blue);
}
.object__sidebar .button--sidebar {
  width: 100%;
  height: 48px;
  font-weight: 500;
  font-size: 16px;
  color: var(--object-color-black);
}
.object__sidebar .sidebar__phone {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  color: var(--object-color-black);
  text-decoration: none;
}
.object__sidebar .sidebar__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.object__sidebar .sidebar__socials .social__item {
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
}
.object__sidebar .sidebar__socials .social__item .social__link {
  width: 100%;
  height: 100%;
}
.object__sidebar .sidebar__calc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #EBF1F7;
  border-radius: 18px;
  padding: 20px 16px 16px;
}
.object__sidebar .sidebar__calc .calc__title {
  font-family: "Geologica", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 105%;
  color: var(--object-color-black);
}
.object__sidebar .sidebar__calc .calc__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #4D7295;
}
.object__sidebar .sidebar__calc .calc__link {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: transparent;
  border: #6F91B1 1px solid;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: var(--object-color-blue);
  cursor: pointer;
  text-decoration: none;
}

:root {
  --object-color-black: #333F56;
  --object-color-white: #FFFFFF;
  --object-color-blue: #4D7295;
  --object-color-blue2: #3575B1;
  --object-color-orange: #FFB830;
  --object-color-red: #E67987;
  --object-color-gray: #EBF1F7;
}

.section__object-cta {
  min-height: 407px;
  background: #2d6eac url("../images/section-object-cta-bg.png") center bottom no-repeat;
}
.section__object-cta .section__inner {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 40px 0;
}
.section__object-cta .section__inner .cta__title {
  max-width: 673px;
  font-family: "Geologica", sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--object-color-white);
}
.section__object-cta .section__inner .button--cta {
  max-width: 292px;
  height: 60px;
  font-weight: 500;
  font-size: 18px;
  color: #333F56;
}

@media (max-width: 500px) {
  .section__object-cta {
    min-height: 605px;
    background: #2d6eac url(../images/section-object-cta-mobile-bg.png) center bottom no-repeat;
    align-items: start;
  }
  .section__object-cta .section__inner {
    padding-top: 80px;
    gap: 40px;
  }
  .section__object-cta .section__inner .cta__title {
    font-size: 36px;
  }
  .section__object-cta .section__inner .button--cta {
    max-width: 100%;
  }
}
:root {
  --object-color-black: #333F56;
  --object-color-white: #FFFFFF;
  --object-color-blue: #4D7295;
  --object-color-blue2: #3575B1;
  --object-color-orange: #FFB830;
  --object-color-red: #E67987;
  --object-color-gray: #EBF1F7;
}

.section__related-objects {
  margin-top: 80px;
  margin-bottom: 70px;
}
.section__related-objects .related-objects__title {
  font-family: "Geologica", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 60px;
  color: var(--object-color-black);
  margin-bottom: 50px;
  text-align: center;
}
.section__related-objects .swiper-wrapper {
  padding: 0;
}
.section__related-objects .swiper-slide {
  padding: 1px;
  width: auto;
  height: auto;
}
.section__related-objects .swiper-slide .property-card:hover {
  box-shadow: 0 0 0 1px #C5D2DF;
}
.section__related-objects .swiper .swiper-pagination {
  margin-top: 10px;
  position: relative;
}
.section__related-objects .swiper .swiper-pagination-bullet {
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background-color: #EBF1F7;
  opacity: 1;
}
.section__related-objects .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4D7295;
  opacity: 1;
}
.section__related-objects .swiper .swiper-pagination-bullet:hover {
  background-color: #65AFF5;
  opacity: 1;
}

@media (max-width: 500px) {
  .section__related-objects .section__inner {
    padding: 40px 0;
  }
  .section__related-objects .related-objects__title {
    font-size: 32px;
    text-align: center;
  }
  .section__related-objects .swiper .swiper-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
:root {
  --property-color-black: #333f56;
  --property-color-white: #ffffff;
  --property-color-blue: #4d7295;
  --property-color-blue2: #3575b1;
  --property-color-orange: #ffb830;
  --property-color-red: #e67987;
  --property-color-gray: #ebf1f7;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.property-card {
  position: relative;
  width: 288px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px;
  background-color: #f6f9fa;
  border-radius: 20px;
  overflow: hidden;
}
.property-card--sell .property-card__img a img {
  opacity: 0.5;
}
.property-card--sell .property-card__img a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.property-card--sell .property-card__body {
  opacity: 0.7;
}
.property-card:hover {
  background-color: var(--property-color-white);
  box-shadow: none;
}
.property-card:hover .property-card__title {
  text-decoration: underline;
}
.property-card__img {
  position: relative;
  width: 281px;
  height: 283px;
  border-radius: 16px;
  overflow: hidden;
}
.property-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.property-card__img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 69px;
  background: linear-gradient(0deg, rgba(51, 63, 86, 0.8) 0%, transparent 100%);
  content: "";
  z-index: 5;
}
.property-card__location {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 6px;
}
.property-card__location img {
  width: 16px;
  height: 16px;
}
.property-card__location span {
  flex-grow: 1;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 100%;
  color: var(--property-color-white);
}
.property-card__hayat-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10px;
}
.property-card__delete {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background-color: transparent;
  z-index: 10;
}
.property-card__delete:hover img {
  filter: brightness(0) invert(1);
}
.property-card__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background-color: transparent;
  z-index: 10;
}
.property-card__favorite svg {
  fill: #4d7295;
  fill-opacity: 0.2;
  stroke: #ffffff;
  stroke-opacity: 0.6;
}
.property-card__favorite svg:hover {
  fill: #ffd057;
  fill-opacity: 1;
  stroke: #ffd057;
  stroke-opacity: 1;
}
.property-card__favorite.active svg {
  fill: #ffd057;
  fill-opacity: 1;
  stroke: #ffd057;
  stroke-opacity: 1;
}
.property-card__body {
  padding: 0 12px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.property-card__price {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 100%;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: var(--property-color-black);
}
.property-card__price strong {
  font-weight: 600;
}
.property-card__diagram {
  margin-left: auto;
}
.property-card__title {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #688098;
  text-decoration: none;
  margin-bottom: auto;
}
.property-card__type {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.property-card__type svg {
  flex-shrink: 0;
}
.property-card__value {
  flex-grow: 1;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--property-color-black);
}
.property-card__value span {
  color: #bbc9d8;
}
.property-card__room {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.property-card__room svg {
  flex-shrink: 0;
}
.property-card__area-year {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.property-card__area-value {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--property-color-black);
}
.property-card__year-value {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #4d7295;
}

@media (max-width: 500px) {
  .properties-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .property-card {
    width: 100%;
  }
  .property-card__img {
    width: 100%;
    height: 222px;
  }
}
.section__cta {
  min-height: 696px;
  background-image: url("../images/section-cta-bg.jpg");
}
.section__cta .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.section__cta .section__inner .section__title {
  max-width: 550px;
  font-size: 54px;
  line-height: 54px;
  color: #ffffff;
  margin-bottom: 40px;
  z-index: 1;
}
.section__cta .section__inner .section__title span {
  color: #FFB830;
}
.section__cta .section__inner .section__text {
  position: relative;
  max-width: 475px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 50px;
  z-index: 1;
}
.section__cta .section__inner .cta__catalog {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(175px, -50%);
  z-index: auto;
}
.section__cta .section__inner .cta__catalog img.desktop {
  max-width: 1013px;
  height: auto;
}
.section__cta .section__inner .cta__catalog img.mobile {
  display: none;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow,
.section__cta .section__inner .cta__catalog .cta__ribbon_white {
  width: 136px;
  height: 136px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Geologica", sans-serif;
  top: 43px;
  left: 553px;
  color: #333F56;
  text-align: center;
  gap: 5px;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow span,
.section__cta .section__inner .cta__catalog .cta__ribbon_white span {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  line-height: 100%;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow span:nth-child(2),
.section__cta .section__inner .cta__catalog .cta__ribbon_white span:nth-child(2) {
  font-size: 24px;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_yellow span:nth-child(3),
.section__cta .section__inner .cta__catalog .cta__ribbon_white span:nth-child(3) {
  font-size: 13px;
  font-weight: 900;
}
.section__cta .section__inner .cta__catalog .cta__ribbon_white {
  top: 43px;
  left: 697px;
}
.section__cta .section__inner .cta__catalog .cta__month {
  width: 160px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-65px, 207px) rotate(-9deg);
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.section__cta .section__inner .cta__catalog .cta__price {
  width: 245px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(100px, 177px) skew(12deg, -7deg);
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #333F56;
}
.section__cta .section__inner .cta__form {
  position: relative;
  max-width: 585px;
  margin-bottom: 30px;
  z-index: 1;
}
.section__cta .section__inner .cta__form .form__inner {
  padding: 2px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #EBF1F7;
}
.section__cta .section__inner .cta__form .form__inner .input-group {
  margin-bottom: 0;
}
.section__cta .section__inner .cta__form .form__inner .input-group input {
  border-radius: 0;
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #212C40;
  background-color: transparent;
}
.section__cta .section__inner .cta__form .form__inner .input-group:nth-child(1) {
  width: 40%;
  border-right: 1px solid #C8D4E5;
}
.section__cta .section__inner .cta__form .form__inner .input-group:nth-child(2) {
  width: 60%;
}
.section__cta .section__inner .cta__form .form__inner .input-submit input {
  width: 100%;
  padding: 21px 25px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.3s ease;
}
.section__cta .section__inner .cta__form-notice {
  max-width: 475px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.section__cta .section__inner .cta__form-notice a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .section__cta {
    min-height: auto;
    background-image: url("../images/section-cta-mob-bg.jpg");
  }
  .section__cta .section__inner {
    padding: 80px 0;
  }
  .section__cta .section__inner .section__title {
    font-size: 30px;
    line-height: 110%;
  }
  .section__cta .section__inner .section__content .section__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }
  .section__cta .section__inner .section__content .cta__catalog {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0 calc((100% - 100vw) / 2);
    display: block;
  }
  .section__cta .section__inner .section__content .cta__catalog img.desktop {
    display: none;
  }
  .section__cta .section__inner .section__content .cta__catalog img.mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__month {
    top: auto;
    left: 0;
    bottom: 0;
    width: 24%;
    height: 7%;
    transform: translate(149%, -192%) rotate(-9deg);
    font-size: 11px;
    line-height: 13px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow,
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white {
    width: 20.5%;
    height: 18.5%;
    top: 7%;
    left: 53%;
    gap: 2px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow span,
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white span {
    font-size: 9px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow span:nth-child(2),
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white span:nth-child(2) {
    font-size: 14px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_yellow span:nth-child(3),
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white span:nth-child(3) {
    font-size: 7px;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__ribbon_white {
    top: 7%;
    left: 75.5%;
  }
  .section__cta .section__inner .section__content .cta__catalog .cta__price {
    top: auto;
    left: 0;
    bottom: 0;
    width: 39%;
    height: 7%;
    transform: translate(156%, -257%) skew(12deg, -7deg);
    font-size: 11px;
  }
  .section__cta .section__inner .section__content .cta__form .form__inner {
    flex-direction: column;
    background-color: transparent;
    gap: 10px;
  }
  .section__cta .section__inner .section__content .cta__form .form__inner .input-group {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #EBF1F7;
    border-radius: 16px;
  }
  .section__cta .section__inner .section__content .cta__form .form__inner .input-submit {
    width: 100%;
  }
}
.section__reviews {
  position: relative;
  width: 100%;
  min-height: 1052px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.section__reviews .section__inner {
  padding: 120px 0;
  position: relative;
  width: 100%;
  z-index: auto;
}
.section__reviews .section__title {
  text-align: center;
  margin-bottom: 60px;
}
.section__reviews .reviews__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section__reviews .review__item {
  position: relative;
  width: 375px;
  height: 221px;
  min-height: 221px;
  max-height: 221px;
  padding: 30px 20px;
  background-color: #F6F9FA;
  border-radius: 24px;
  overflow: hidden;
}
.section__reviews .review__item .review__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.section__reviews .review__item .review__author .review__avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.section__reviews .review__item .review__author .review__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__reviews .review__item .review__author .review__name {
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 700;
  list-style: 120%;
  color: #333F56;
}
.section__reviews .review__item .review__rating {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Geologica", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: #5F97CC;
}
.section__reviews .review__item .review__rating .rating__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.section__reviews .review__item .review__rating .rating__stars img {
  width: 19px;
  height: 17px;
}
.section__reviews .review__item .review__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #333F56;
}
.section__reviews .review__item .more__icon {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: auto;
  background-color: transparent;
  width: 30px;
  height: 30px;
  border: 1px solid #837D8D;
  border-radius: 50%;
  color: #837D8D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__reviews .review__item.review__item--video {
  padding: 0;
}
.section__reviews .review__item.review__item--video .video__thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.section__reviews .review__item.review__item--video .video__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__reviews .review__item.review__item--video .video__thumb .video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  opacity: 0.8;
}
.section__reviews .review__item.review__item--video .video__thumb:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}
.section__reviews .review__item.review__item--video .video__thumb:hover .video__play {
  opacity: 1;
}
.section__reviews .review__item:hover {
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #D7E3EE;
}
.section__reviews .review__item:hover > .review__author {
  text-decoration: underline;
}
.section__reviews .custom-modal .custom-modal-content {
  padding: 20px 80px 60px;
}
.section__reviews .custom-modal .custom-modal-content .review__author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.section__reviews .custom-modal .custom-modal-content .review__author .review__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.section__reviews .custom-modal .custom-modal-content .review__author .review__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__reviews .custom-modal .custom-modal-content .review__author .review__name {
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #333F56;
}
.section__reviews .custom-modal .custom-modal-content .review__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Geologica", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: #5F97CC;
}
.section__reviews .custom-modal .custom-modal-content .review__rating .rating__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.section__reviews .custom-modal .custom-modal-content .review__rating .rating__stars img {
  width: 34px;
  height: 30px;
}
.section__reviews .custom-modal .custom-modal-content .review__text {
  font-size: 18px;
  line-height: 130%;
}
.section__reviews .custom-modal .custom-modal-content .review__text p {
  margin-bottom: 20px;
}
.section__reviews .custom-modal .custom-modal-content .review__text p:last-child {
  margin-bottom: 0;
}
.section__reviews .review__item:nth-child(4) {
  width: 275px;
}
.section__reviews .review__item:nth-child(5) {
  width: 375px;
}
.section__reviews .review__item:nth-child(6) {
  width: 475px;
}
.section__reviews .review__item:nth-child(7) {
  width: 275px;
}
.section__reviews .review__item:nth-child(8) {
  width: 275px;
}
.section__reviews .review__item:nth-child(9) {
  width: 375px;
}
.section__reviews .review__more {
  position: relative;
  width: 180px;
  padding: 20px 40px 40px 20px;
  border-radius: 24px;
  overflow: hidden;
  font-family: "Geologica", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 105%;
  background-color: #FFC14B;
  color: #333F56;
  text-decoration: none;
}
.section__reviews .review__more:hover {
  background-color: #FFD057;
}
.section__reviews .review__more .more__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: auto;
  width: 36px;
  height: 36px;
  border: 1px solid #333F56;
  border-radius: 50%;
  color: #333F56;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__reviews .swiper {
  overflow: visible;
}
.section__reviews .swiper .swiper-wrapper {
  transform: none;
}
.section__reviews .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.section__reviews .swiper .swiper-pagination {
  display: none;
}
.section__reviews .reviews__more {
  display: none;
}

@media (max-width: 500px) {
  .section__reviews {
    min-height: auto;
  }
  .section__reviews .section__title {
    margin-bottom: 40px;
  }
  .section__reviews .reviews__list {
    flex-wrap: nowrap;
    gap: 0;
  }
  .section__reviews .reviews__list .review__item {
    width: 100% !important;
    height: 240px;
  }
  .section__reviews .reviews__list .review__more {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden;
  }
  .section__reviews .swiper .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
  }
  .section__reviews .swiper .swiper-wrapper .swiper-slide {
    height: auto;
  }
  .section__reviews .swiper .swiper-pagination {
    display: block;
    margin-top: 10px;
    position: relative;
  }
  .section__reviews .swiper .swiper-pagination-bullet {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #EBF1F7;
    opacity: 1;
  }
  .section__reviews .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #95B9DB;
    opacity: 1;
  }
  .section__reviews .swiper .swiper-pagination-bullet:hover {
    background-color: #65AFF5;
    opacity: 1;
  }
  .section__reviews .reviews__more {
    position: relative;
    margin: 20px 0;
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
    border: none;
    background-color: #FFC14B;
    text-decoration: none;
  }
  .section__reviews .reviews__more .more__text {
    font-size: 25px;
    font-weight: 700;
    line-height: 105%;
    letter-spacing: 0;
    color: #333F56;
  }
  .section__reviews .reviews__more .more__icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-color: transparent;
    width: 30px;
    height: 30px;
    border: 1px solid #333F56;
    border-radius: 50%;
    color: #333F56;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section__reviews .reviews__more .more__icon svg {
    width: 16px;
    height: 16px;
  }
  .section__reviews .custom-modal .custom-modal-content {
    padding: 10px 30px 40px;
  }
  .section__reviews .custom-modal .custom-modal-content .review__author .review__avatar {
    flex-shrink: 0;
  }
  .section__reviews .custom-modal .custom-modal-content .review__author .review__name {
    font-size: 30px;
  }
  .section__reviews .custom-modal .custom-modal-content .review__rating {
    font-size: 30px;
  }
  .section__reviews .custom-modal .custom-modal-content .review__rating .rating__stars img {
    width: 30px;
    height: auto;
  }
  .section__reviews .custom-modal .custom-modal-content .review__text {
    font-size: 14px;
  }
}
.section__reviews {
  background-color: #EBF1F7;
}

.section__faq {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #EBF1F7;
  display: flex;
  align-items: center;
}
.section__faq .section__inner {
  padding: 120px 0 120px;
  position: relative;
  width: 970px;
  margin: 0 auto;
  z-index: auto;
}
.section__faq .section__title {
  text-align: center;
  margin-bottom: 70px;
}
.section__faq .faq__accordion {
  width: 100%;
}
.section__faq .accordion__item {
  position: relative;
  width: 100%;
  padding: 30px 0;
}
.section__faq .accordion__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px; /* Толщина линии */
  background-image: radial-gradient(circle, rgba(51, 63, 86, 0.2) 1px, transparent 1px);
  background-size: 6px 2px; /* Интервалы между точками */
  background-repeat: repeat-x;
}
.section__faq .accordion__item:first-child {
  padding-top: 0;
}
.section__faq .accordion__item:last-child::after {
  display: none;
}
.section__faq .accordion__item .accordion__title {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  font-family: "Geologica", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  background-color: transparent;
  color: #333F56;
  cursor: pointer;
}
.section__faq .accordion__item .accordion__title .accordion__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #333F56;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333F56;
  transition: 300ms transform;
}
.section__faq .accordion__item .accordion__title:hover {
  color: #1C568D;
}
.section__faq .accordion__item .accordion__title:hover .accordion__arrow {
  color: #1C568D;
  border: 1px solid #1C568D;
}
.section__faq .accordion__item .accordion__content {
  width: 900px;
  max-height: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #333F56;
  transition: max-height 0.2s ease-in-out;
  overflow: hidden;
}
.section__faq .accordion__item .accordion__content p {
  margin-bottom: 20px;
}
.section__faq .accordion__item .accordion__content p:first-child {
  padding-top: 20px;
}
.section__faq .accordion__item .accordion__content p:last-child {
  margin-bottom: 0;
}
.section__faq .accordion__item.active .accordion__title {
  color: #3575B1;
}
.section__faq .accordion__item.active .accordion__title .accordion__arrow {
  color: #3575B1;
  border: 1px solid #3575B1;
  transform: rotate(180deg);
  transition: 300ms transform;
}
.section__faq .accordion__item.active .accordion__content {
  max-height: 1000px;
  transition: max-height 0.2s ease-in-out;
}

@media (max-width: 500px) {
  .section__faq {
    min-height: auto;
  }
  .section__faq .section__inner {
    width: auto;
  }
  .section__faq .section__title {
    text-align: left;
    margin-bottom: 60px;
  }
  .section__faq .faq__accordion .accordion__item .accordion__title {
    font-size: 20px;
    line-height: 100%;
    gap: 10px;
    text-align: left;
  }
  .section__faq .faq__accordion .accordion__item .accordion__title .accordion__arrow {
    flex-shrink: 0;
  }
  .section__faq .faq__accordion .accordion__item .accordion__content {
    width: 100%;
    font-size: 14px;
    line-height: 150%;
  }
  .section__faq .faq__accordion .accordion__item .accordion__content img {
    width: 100%;
  }
}
.section__faq {
  background-color: #D1DCE7;
}

.footer {
  position: relative;
  padding: 25px 0;
  width: 100%;
  background-image: url("../images/footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer__inner {
  position: relative;
  width: 100%;
}
.footer .footer__menu {
  padding: 45px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__menu .footer__logo img {
  width: 120px;
  height: auto;
}
.footer .footer__menu .menu__list {
  grid-column: 2/-1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.footer .footer__menu .menu__list > .menu__item > .menu__link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFC876;
  text-decoration: none;
}
.footer .footer__menu .menu__list > .menu__item > .menu__link:hover {
  text-decoration: underline;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item {
  margin-bottom: 10px;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item:last-child {
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item > .submenu__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
}
.footer .footer__menu .menu__list > .menu__item.has-children > .submenu__list > .submenu__item > .submenu__link:hover {
  text-decoration: underline;
}
.footer .footer__menu .menu__list > .menu__item:last-child > .menu__link {
  display: none;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list {
  margin-top: 0;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item {
  margin-bottom: 20px;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item:last-child {
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFC876;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__link sup {
  margin-left: 4px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  background-color: #FFB830;
  color: #3D4B64;
  vertical-align: text-bottom;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item {
  margin-bottom: 10px;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item:last-child {
  margin-bottom: 30px;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item > .submenu__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
}
.footer .footer__menu .menu__list > .menu__item:last-child.has-children > .submenu__list > .submenu__item > .submenu__list > .submenu__item > .submenu__link:hover {
  text-decoration: underline;
}
.footer .footer__address {
  padding: 45px 0;
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__address .address {
  width: 100%;
}
.footer .footer__address .address .address__title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
}
.footer .footer__address .address .address__location {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0.7;
}
.footer .footer__address .address .address__phones {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__address .address .address__phones .address__phone a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
}
.footer .footer__address .address .address__email {
  margin-top: 20px;
}
.footer .footer__address .address .address__email a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
}
.footer .footer__address .address .address__socials {
  margin-top: 20px;
  display: flex;
  gap: 5px;
}
.footer .footer__seo-block {
  padding: 45px 0;
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__seo-block .shield__footers_module_block__wrapper {
  padding: 0;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__card-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__top {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__bottom {
  width: 80%;
}
.footer .footer__seo-block button {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFC876;
  text-decoration: none;
  border: none;
  background-color: transparent;
}
.footer .footer__seo-block button:hover {
  text-decoration: underline;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
  gap: 20px;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row > div {
  width: 100%;
  line-height: 200%;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}
.footer .footer__seo-block .shield__footers_module_block__wrapper__row li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.footer .footer__forms {
  padding: 45px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer .footer__forms .footer__form .form__title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer .footer__forms .footer__form form .form__inner {
  position: relative;
}
.footer .footer__forms .footer__form form .input-group {
  width: 100%;
  position: relative;
  background-color: transparent;
}
.footer .footer__forms .footer__form form .input-group input {
  height: 70px;
  padding: 10px 90px 10px 20px;
  border-radius: 20px !important;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  background-color: rgba(235, 241, 247, 0.7);
  color: #333F56;
}
.footer .footer__forms .footer__form form .input-group input::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  color: #212C40;
  opacity: 0.7;
}
.footer .footer__forms .footer__form form .input-group input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  color: #212C40;
  opacity: 0.7;
}
.footer .footer__forms .footer__form form .input-group input:not(:-moz-placeholder) {
  background-color: rgb(235, 241, 247);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form form .input-group input:hover, .footer .footer__forms .footer__form form .input-group input:focus, .footer .footer__forms .footer__form form .input-group input:active, .footer .footer__forms .footer__form form .input-group input:not(:placeholder-shown) {
  background-color: rgb(235, 241, 247);
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form form .input-group:hover input {
  background-color: rgb(235, 241, 247);
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form form .input-submit {
  position: absolute;
  top: 0;
  right: 0;
}
.footer .footer__forms .footer__form form .input-submit input, .footer .footer__forms .footer__form form .input-submit button {
  padding: 0;
  position: absolute;
  top: 2px;
  right: 2px;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 18px !important;
  background-color: #679ACB;
  color: #333F56;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer .footer__forms .footer__form form .input-submit input:hover input, .footer .footer__forms .footer__form form .input-submit input:hover button, .footer .footer__forms .footer__form form .input-submit button:hover input, .footer .footer__forms .footer__form form .input-submit button:hover button {
  background-color: #84BBEF;
}
.footer .footer__forms .footer__form.footer__form--subscribe form .input-group input {
  padding-right: 150px;
}
.footer .footer__forms .footer__form.footer__form--subscribe form .input-submit input, .footer .footer__forms .footer__form.footer__form--subscribe form .input-submit button {
  padding: 10px 20px;
  width: auto;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: #333F56;
  background-color: #FFB830;
  transition: all 0.3s ease;
}
.footer .footer__socials {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 45px;
}
.footer .footer__socials::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 400px;
  height: 1px;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__socials::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 400px;
  height: 1px;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
}
.footer .footer__socials .footer__social {
  color: #ffffff;
  fill: #ffffff;
}
.footer .footer__socials .footer__social:hover.footer__social--facebook {
  color: #1877F2;
}
.footer .footer__socials .footer__social:hover.footer__social--tiktok {
  color: #FF004F;
}
.footer .footer__socials .footer__social:hover.footer__social--youtube {
  color: #FF0302;
}
.footer .footer__socials .footer__social:hover.footer__social--instagram {
  color: #E1306C;
}
.footer .footer__socials .footer__social:hover.footer__social--telegram {
  fill: #229ED9;
}
.footer .footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.footer .footer__copyright a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer__copyright a:hover {
  text-decoration: underline;
  color: rgb(255, 255, 255);
}

@media (max-width: 500px) {
  .footer {
    min-height: auto;
    background-image: url("../images/footer-mob-bg.jpg");
  }
  .footer .footer__menu {
    display: block;
  }
  .footer .footer__menu .footer__logo {
    margin-bottom: 30px;
  }
  .footer .footer__menu .footer__logo img {
    width: 80px;
  }
  .footer .footer__menu .menu__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 40px 20px;
  }
  .footer .footer__menu .menu__list .menu__item {
    margin-bottom: 0;
  }
  .footer .footer__menu .menu__list .menu__item .menu__link {
    font-size: 14px;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(1) {
    grid-area: 1/1/3/2;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(3) {
    grid-area: 3/1/5/2;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(4) {
    grid-area: 2/2/4/3;
  }
  .footer .footer__menu .menu__list .menu__item:nth-child(5) {
    grid-area: 4/2/5/3;
  }
  .footer .footer__menu .menu__list .menu__item.has-children .submenu__list .submenu__item {
    margin-bottom: 8px;
  }
  .footer .footer__menu .menu__list .menu__item.has-children .submenu__list .submenu__item .submenu__link {
    font-size: 12px;
  }
  .footer .footer__menu .menu__list .menu__item:last-child.has-children .submenu__list .submenu__item {
    margin-bottom: 8px;
  }
  .footer .footer__menu .menu__list .menu__item:last-child.has-children .submenu__list .submenu__item .submenu__link {
    font-size: 14px;
  }
  .footer .footer__address {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .footer .footer__address .address {
    margin-bottom: 0;
  }
  .footer .footer__address .address .address__title {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer .footer__address .address .address__location,
  .footer .footer__address .address .address__phones .address__phone a,
  .footer .footer__address .address .address__email a {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 10px;
  }
  .footer .footer__address .address .address__email {
    margin-top: 10px;
  }
  .footer .footer__forms {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer__forms .footer__form form .input-group input {
    height: 60px;
  }
  .footer .footer__forms .footer__form form .input-group input::-moz-placeholder {
    font-size: 14px;
  }
  .footer .footer__forms .footer__form form .input-group input::placeholder {
    font-size: 14px;
  }
  .footer .footer__forms .footer__form form .input-submit input, .footer .footer__forms .footer__form form .input-submit button {
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
  }
  .footer .footer__forms .footer__form.footer__form--subscribe form .input-submit button {
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .footer .footer__socials {
    margin-bottom: 50px;
  }
  .footer .footer__socials::before, .footer .footer__socials::after {
    display: none;
  }
  .footer .footer__copyright {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__top {
    width: 30%;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__card-body .shield__footers_module_block__wrapper__bottom {
    width: 70%;
  }
  .footer .footer__seo-block button {
    font-size: 14px;
    text-align: left;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row > div {
    width: 100%;
    line-height: 200%;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
  }
  .footer .footer__seo-block .shield__footers_module_block__wrapper__row li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
  }
}
.searchwp-live-search-results {
  opacity: 0;
  background-color: #fff;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  height: 0;
  overflow: hidden;
  z-index: 9999995;
  /* Exceed SearchWP Modal Search Form overlay. */
  position: absolute;
  display: none;
}

.searchwp-live-search-results-showing {
  display: block;
  opacity: 1;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.searchwp-live-search-no-results {
  padding: 3em 2em 0;
  text-align: center;
}

.searchwp-live-search-no-min-chars:after {
  display: block;
  text-align: center;
  padding: 2em 2em 0;
}

.searchwp-live-search-results {
  border-radius: 20px;
  padding: 10px;
  width: 100%;
  max-width: 375px;
  min-height: 120px;
  max-height: 200px;
}
.searchwp-live-search-results p {
  padding: 5px 10px;
}

.searchwp-live-search-result {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.searchwp-live-search-result .searchwp-live-search-result--img {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
}
.searchwp-live-search-result .searchwp-live-search-result--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.searchwp-live-search-result .searchwp-live-search-result--info a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #333F56;
}

.fancybox__container {
  padding: 10px;
}

.fancybox__backdrop {
  background: rgba(29, 30, 40, 0.9);
  opacity: 1;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.fancybox__content {
  border-radius: 0;
}
.fancybox__content .fancybox-image {
  display: flex;
  border-radius: 30px;
}

.has-html5video .fancybox__content {
  border: none;
  border-radius: 0;
  background: transparent;
  outline: none;
}

.fancybox__html5video {
  border: none;
  border-radius: 30px;
  outline: none;
}

.f-button {
  --f-button-border: none;
  --f-button-bg: transparent;
  outline: none;
}/*# sourceMappingURL=page-object.css.map */