@charset "UTF-8";

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1260px;
  --transition: .3s ease;
  --default-font-family: 'Montserrat';
  --heading-font-family: 'Montserrat';
  --sp: 120px;
  --primary: #E6DA91;
  --delete-primary: #FFE094;
  --gold-dark: #A0843E;
  --white: #FFFFFF;
  --secondary: #18280E;
  --black: #070E11;
  --grey-500: #757C80;
  --odange-bg: #F7EEE3;
  --primary: #E6DA91;
  --sand-8: rgba(255, 224, 148, 0.08);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-16: rgba(255, 255, 255, 0.16);
  --red: #FE4141;
  --green: #00E067;
  --fz-default: 16px;
  --h1: 56px;
  --h2: 40px;
  --h3: 28px;
  --h4: 20px;
  --h5: 16px;
  --h6: 14px;
  --h7: 12px;
  --body1-16: 16px;
  --body2-16-B: 16px;
  --body3-14: 14px;
  --body4-14: 14px;
  --body4-14-B: 14px;
  --body5-12: 12px;
  --body6-12-B: 12px;
  --btn-14: 14px;
  --menu-12: 12px;
  --20: 20px;
  --32: 32px;
  --48: 48px;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--odange-bg);
  min-width: 360px;
  color: var(--secondary);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.overflow-hidden,
body._lock {
  overflow: hidden;
  height: 100vh;
}

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

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

[class*=__container] [class*=__container] {
  padding: 0;
}

form input.error {
  border: 1px solid var(--red) !important;
  box-shadow: 0px 0px 6px var(--red) !important;
}

form input.not_error {
  border: 1px solid var(--green) !important;
  box-shadow: 0px 0px 6px var(--green) !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6c715b;
  cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: block;
  font-size: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.60001 12L5.60001 8L9.60001 4' stroke='white' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center no-repeat;
  transition: var(--transition);
  z-index: 2;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary, #e6da91);
  transition: var(--transition);
  z-index: 1;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  transform: rotate(180deg);
  right: 0;
}

.swiper-scrollbar {
  position: relative !important;
  margin-top: 24px;
  background: var(--white-12, rgba(255, 255, 255, 0.12));
}

.swiper-scrollbar-drag {
  background: var(--white, #fff);
}

.glasses {
  position: relative;
  overflow: hidden;
}

.glasses::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  will-change: transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  backdrop-filter: url(../img/mask1.svg#glassFilter);
  -webkit-backdrop-filter: url(../img/mask1.svg#glassFilter);
}

.glasses:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.42), inset 0 -24px 38px rgba(5, 12, 24, 0.12), 0 18px 42px rgba(5, 12, 24, 0.2);
  border-radius: inherit;
}

.glasses > * {
  position: relative;
  z-index: 2;
}

body.macos.safari .glasses::before,
body.firefox .glasses::before,
body.macos.safari .glasses-hero::before,
body.firefox .glasses-hero::before,
body.firefox .single-apartment-booking__mobile-search,
body.macos.safari .single-apartment-booking__mobile-search {
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
}

.wys > * {
  margin: 20px 0;
}

.wys > *:first-child {
  margin-top: 0;
}

.wys > *:last-child {
  margin-bottom: 0;
}

.wys h1,
.wys h2,
.wys h3,
.wys h4,
.wys h5,
.wys h6 {
  margin: 48px 0 20px;
}

.wys .wp-block-image {
  margin: 32px 0;
}

.wys .wp-block-image img {
  border-radius: 20px;
}

.wys p,
.wys a,
.wys li {
  line-height: 190%;
}

.wys ul {
  list-style: disc;
}

.wys ul li::marker {
  font-size: 9px;
}

.wys ol {
  list-style: decimal;
}

.wys ul,
.wys ol {
  padding-left: 24px;
}

.wys p {
  max-width: 660px;
}

.wys strong {
  font-weight: 600;
}

.wys em {
  font-style: italic;
}

.wys a {
  color: var(--secondary, #18280e);
  transition: var(--transition);
  text-decoration: underline;
}

.wys a:hover {
  color: var(--gold-dark);
}

.bg-parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 150/52;
  overflow: hidden;
  margin-top: var(--sp);
}

.bg-parallax__image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
  background: center center/cover no-repeat;
}

h1,
._h1 {
  font: 600 var(--h1)/120% var(--heading-font-family);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2,
._h2 {
  font: 600 var(--h2)/130% var(--heading-font-family);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3,
._h3 {
  font: 600 var(--h3)/120% var(--heading-font-family);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h4,
._h4 {
  font: 600 var(--h4)/125% var(--heading-font-family);
  text-transform: uppercase;
}

h5,
._h5 {
  font: 600 var(--h5)/140% var(--heading-font-family);
  text-transform: uppercase;
}

h6,
._h6 {
  font: 600 var(--h6)/140% var(--heading-font-family);
  text-transform: uppercase;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._primary {
  color: var(--primary);
}

._secondary {
  color: var(--secondary);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

._e {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

._e ul {
  list-style: disc;
  padding-left: 20px;
}

._e strong {
  font-weight: 600;
}

._small {
  font-weight: 400;
  opacity: 0.8;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  color: var(--secondary, #18280e);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  height: 50px;
  width: -moz-fit-content;
  width: fit-content;
}

.btn span,
.btn strong {
  position: relative;
  z-index: 3;
  transition: var(--transition);
}

.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #a0843e 0%, #e6da91 100%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  aspect-ratio: 1/1;
  background: #E6DA91;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 999px;
  transition: 0.5s all ease;
}

.btn.btm-small {
  padding: 12px 16px;
  font-size: 12px;
  height: 40px;
}

.btn.dark-bg {
  backdrop-filter: blur(32px);
  color: var(--primary, #e6da91);
}

.btn.dark-bg:before {
  background: rgba(255, 224, 148, 0.08);
}

.btn.dark-bg::after {
  background: linear-gradient(180deg, #a0843e 0%, #e6da91 100%);
}

.btn.white-bg {
  backdrop-filter: blur(32px);
  color: var(--secondary);
}

.btn.white-bg:before {
  background: rgba(24, 40, 14, 0.08);
}

.btn.white-bg::after {
  background: var(--secondary);
}

.btn.sand-bg {
  backdrop-filter: blur(32px);
  color: var(--primary, #E6DA91);
}

.btn.sand-bg:before {
  background: var(--sand-8, rgba(255, 224, 148, 0.08));
}

.btn.sand-bg::after {
  background: var(--secondary);
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  max-width: 420px;
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.form-inputs {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.form .input {
  background: #fff;
  width: 100%;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 12px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 54px;
  display: block;
  transition: 0.3s border-color ease;
}

.form .input::-moz-placeholder {
  opacity: 0.3;
}

.form .input::placeholder {
  opacity: 0.3;
}

.form .input:hover,
.form .input:focus {
  border-color: var(--primary);
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(1.1);
  background: rgba(24, 40, 14, 0.6) url(../img/loading-white.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.form__submit {
  height: 58px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--default-font-family);
}

.form__submit.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.form .checkbox__wrap input {
  display: none;
}

.form .checkbox__wrap input:checked + .checkbox__label:before {
  border: 1px solid transparent;
  background: var(--primary) url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.45859 1.0603L3.75879 7.0603L1.05859 4.0603' stroke='%2318280E' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A") 50% no-repeat;
}

.form .checkbox__wrap input:hover + .checkbox__label:before,
.form .checkbox__wrap input:focus + .checkbox__label:before {
  box-shadow: 0px 0px 0px 2px rgba(160, 132, 62, 0.4);
}

.form .checkbox__wrap .checkbox__label {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form .checkbox__wrap .checkbox__label span {
  color: var(--white);
  max-width: 224px;
}

.form .checkbox__wrap .checkbox__label a {
  color: var(--primary);
  text-decoration: underline;
  transition: var(--transition);
}

.form .checkbox__wrap .checkbox__label a:hover {
  color: var(--gold-dark);
}

.form .checkbox__wrap .checkbox__label:before {
  margin: 2px;
  transition: var(--transition);
  content: "";
  border: 1px solid var(--primary);
  border-radius: 2px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 111;
  padding: 20px 0;
  transition: var(--transition);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 176px;
  aspect-ratio: 176/28;
  z-index: 4;
}

.header__logo-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__logo--dark {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header .menu__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header .menu a {
  font-size: var(--menu-12);
  line-height: 130%;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.5;
  transition: var(--transition);
  color: var(--white, #fff);
  display: inline-flex;
  padding: 12px 0;
}

.header .menu a:hover {
  opacity: 1;
}

.header .menu .item.has-submenu._active .link {
  opacity: 1;
}

.header .menu .item.has-submenu._active .link::after {
  transform: scale(-1);
}

.header .menu .item.has-submenu._active .link::before {
  pointer-events: all;
}

.header .menu .item.has-submenu._active .submenu {
  pointer-events: initial;
  opacity: 1;
}

.header .menu .item.has-submenu .link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.header .menu .item.has-submenu .link::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12 9.6L8 5.6L4 9.6' stroke='%23fff' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: var(--transition);
}

.header .menu .item.has-submenu .link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 30px;
  pointer-events: none;
}

.header .menu .submenu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 59px;
  background: var(--odange-bg, #f7eee3);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.header .menu .submenu__container {
  height: 100%;
  padding: 32px 10px 48px;
}

.header .menu .submenu__inner {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.header .menu .submenu .sct._active .sct__image {
  opacity: 1;
}

.header .menu .submenu .sct._active a {
  padding-left: 8px;
}

.header .menu .submenu .sct._active a::before {
  width: 100%;
}

.header .menu .submenu .sct__image {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 776/546;
  width: 776px;
  background: center/cover no-repeat;
  opacity: 0;
  transition: var(--transition);
}

.header .menu .submenu .sct a {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 0;
  opacity: 1;
  overflow: hidden;
  color: var(--secondary, #18280e);
  transition: var(--transition);
  text-transform: none;
}

.header .menu .submenu .sct a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 0;
  background: var(--secondary);
  transition: var(--transition);
}

.header__lang .lang-switcher {
  display: flex;
  gap: 8px;
}

.header__lang .current-lang a {
  opacity: 1;
}

.header__lang a {
  font-size: var(--menu-12);
  line-height: 130%;
  font-weight: 600;
  display: inline-flex;
  padding: 12px 0;
  text-transform: uppercase;
  opacity: 0.5;
  transition: var(--transition);
  color: var(--white, #fff);
}

.header__contacts,
.header__socials {
  display: none;
}

.header__contacts {
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.header__contacts-title {
  margin-bottom: 2px;
  line-height: 120%;
  font-size: var(--body5-12);
  color: var(--secondary);
}

.header__contacts-list {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.header__contacts-list li {
  flex: 1 1 45%;
}

.header__contacts-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: var(--menu-12);
  line-height: 130%;
  font-weight: 600;
  text-transform: uppercase;
}

.header__contacts-list a svg {
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: center/contain no-repeat;
}

.header__contacts-list a svg path {
  fill: var(--secondary, #18280e);
}

.header__socials {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.header__socials .item {
  position: relative;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: var(--transition);
  background: transparent;
  border: 1px solid var(--secondary, #18280E);
  color: var(--secondary);
}

.header__socials .item::before,
.header__socials .item svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.header__socials .item::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 0;
  aspect-ratio: 1;
  background: var(--secondary, #18280E);
}

.header__socials .item:hover {
  color: var(--primary);
}

.header__socials .item:hover::before {
  width: 100%;
}

.header__socials .item svg {
  display: block;
  width: 16px;
  aspect-ratio: 1;
  z-index: 2;
}

.header__booking,
.header__burger {
  display: none;
  position: relative;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white-16, rgba(255, 255, 255, 0.16));
  transition: var(--transition);
  z-index: 4;
}

.header__booking::before,
.header__burger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  aspect-ratio: 1;
  transition: var(--transition);
}

.header__booking::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 7.77832V9.22266C15 11.9459 15 13.3086 14.1797 14.1543C13.3593 14.9996 12.0395 15 9.40039 15H6.59961C3.96052 15 2.64 15.0004 1.82031 14.1543C1.00066 13.3079 1 11.9459 1 9.22266V7.77832C1 7.41175 1.00093 7.06931 1.00293 6.75H14.9971C14.9991 7.06929 15 7.41174 15 7.77832ZM2.91602 12.75H6.41602V11.25H2.91602V12.75ZM9.25 12.75H12.75V11.25H9.25V12.75ZM2.91602 9.75H6.41602V8.25H2.91602V9.75ZM9.25 9.75H12.75V8.25H9.25V9.75Z' fill='white'/%3E%3Cpath d='M5.41602 2.00391C5.77816 2.00025 6.17152 2 6.59961 2H9.40039C9.82807 2 10.2211 2.00029 10.583 2.00391V0.916992H12.083V2.0625C13.058 2.14889 13.7034 2.35484 14.1797 2.84668C14.6928 3.3766 14.8851 4.10861 14.957 5.25H1.04297C1.11477 4.10836 1.30678 3.37618 1.82031 2.84668C2.29682 2.35547 2.94184 2.15006 3.91602 2.06348V0.916992H5.41602V2.00391Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header__burger::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.75 7.25V8.75H1.25V7.25H14.75Z' fill='white'/%3E%3Cpath d='M14.75 12.25V13.75H1.25V12.25H14.75Z' fill='white'/%3E%3Cpath d='M14.75 2.25V3.75H1.25V2.25H14.75Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header.scrolling_down {
  transform: translateY(-100%);
}

.header--white,
.header.scrolling_up,
.header._active,
.header._hovered {
  background: var(--odange-bg, #f7eee3);
  border-bottom: 1px solid var(--green-8, rgba(24, 40, 14, 0.08));
}

.header--white .header__logo--white,
.header.scrolling_up .header__logo--white,
.header._active .header__logo--white,
.header._hovered .header__logo--white {
  display: none;
}

.header--white .header__logo--dark,
.header.scrolling_up .header__logo--dark,
.header._active .header__logo--dark,
.header._hovered .header__logo--dark {
  display: block;
}

.header--white .menu a,
.header.scrolling_up .menu a,
.header._active .menu a,
.header._hovered .menu a {
  color: var(--secondary, #18280e);
}

.header--white .menu .item.has-submenu .link::after,
.header.scrolling_up .menu .item.has-submenu .link::after,
.header._active .menu .item.has-submenu .link::after,
.header._hovered .menu .item.has-submenu .link::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12 9.6L8 5.6L4 9.6' stroke='%2318280E' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header--white .header__lang a,
.header.scrolling_up .header__lang a,
.header._active .header__lang a,
.header._hovered .header__lang a {
  color: var(--secondary, #18280e);
}

.header--white .header__booking::before,
.header.scrolling_up .header__booking::before,
.header._active .header__booking::before,
.header._hovered .header__booking::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 7.77832V9.22266C15 11.9459 15 13.3086 14.1797 14.1543C13.3593 14.9996 12.0395 15 9.40039 15H6.59961C3.96052 15 2.64 15.0004 1.82031 14.1543C1.00066 13.3079 1 11.9459 1 9.22266V7.77832C1 7.41175 1.00093 7.06931 1.00293 6.75H14.9971C14.9991 7.06929 15 7.41174 15 7.77832ZM2.91602 12.75H6.41602V11.25H2.91602V12.75ZM9.25 12.75H12.75V11.25H9.25V12.75ZM2.91602 9.75H6.41602V8.25H2.91602V9.75ZM9.25 9.75H12.75V8.25H9.25V9.75Z' fill='%2318280E'/%3E%3Cpath d='M5.41602 2.00391C5.77816 2.00025 6.17152 2 6.59961 2H9.40039C9.82807 2 10.2211 2.00029 10.583 2.00391V0.916992H12.083V2.0625C13.058 2.14889 13.7034 2.35484 14.1797 2.84668C14.6928 3.3766 14.8851 4.10861 14.957 5.25H1.04297C1.11477 4.10836 1.30678 3.37618 1.82031 2.84668C2.29682 2.35547 2.94184 2.15006 3.91602 2.06348V0.916992H5.41602V2.00391Z' fill='%2318280E'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header--white .header__burger::before,
.header.scrolling_up .header__burger::before,
.header._active .header__burger::before,
.header._hovered .header__burger::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M14.0833 7.25V8.75H1.91667V7.25H14.0833Z' fill='%2318280E'/%3E%3Cpath d='M14.0833 11.5V13H1.91667V11.5H14.0833Z' fill='%2318280E'/%3E%3Cpath d='M14.0833 2.8125V4.3125H1.91667V2.8125H14.0833Z' fill='%2318280E'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header._active .header__nav {
  transform: translateX(0);
}

.error404:not(body) {
  padding: 80px 0 var(--sp);
  background: var(--secondary);
}

.error404__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 14px 42px;
  color: var(--white);
}

.error404 .breadcrumbs__block {
  width: 100%;
  padding: 16px 0;
  margin: 0 auto;
  text-align: center;
}

.error404 .breadcrumbs__block a,
.error404 .breadcrumbs__block p {
  color: var(--white, #fff);
  font-size: var(--body5-12);
  line-height: 1.2;
}

.error404 .breadcrumbs__block a {
  transition: var(--transition);
}

.error404 .breadcrumbs__block a:hover {
  color: var(--primary, #e6da91);
}

.error404 .breadcrumbs__block p > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.error404__content {
  max-width: 490px;
}

.error404__text {
  max-width: 420px;
  line-height: 1.9;
  margin: 20px 0 48px;
}

.error404__image {
  max-width: 708px;
  border-radius: 32px;
  overflow: hidden;
}

.error404__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.error404__buttons {
  display: flex;
  flex-flow: wrap;
  gap: 12px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 80px;
}

.section-header__title {
  max-width: 760px;
  margin-right: auto;
}

.section-header__subtitle {
  max-width: 400px;
}

.section-header__btn {
  margin-left: auto;
}

section.awpt-same-bg-prev {
  padding-top: 0 !important;
}

.page-template-page-document .wrapper {
  overflow: visible;
}

.page-template-page-document .breadcrumbs {
  padding: 16px 0;
}

.page-template-page-document .breadcrumbs .container {
  text-align: center;
}

.page-template-page-document .breadcrumbs .container a,
.page-template-page-document .breadcrumbs .container p {
  color: var(--secondary, #fff);
  font-size: var(--body5-12);
  line-height: 1.2;
}

.page-template-page-document .breadcrumbs .container a {
  transition: var(--transition);
}

.page-template-page-document .breadcrumbs .container a:hover {
  opacity: 0.4;
}

.page-template-page-document .breadcrumbs .container p > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.page-template-page-document .breadcrumbs .container p > span > * {
  margin: 0 8px;
}

.page-template-page-document .breadcrumbs .container p > span > *:last-child {
  margin-right: 0;
}

.page-template-page-document .breadcrumbs .container p > span > *:first-child {
  margin-left: 0;
}

.page-template-page-document .content-default {
  margin: var(--sp) 0;
}

.page-template-page-document .content-default__container > * {
  margin: 20px 0;
}

.page-template-page-document .content-default__container > *:first-child {
  margin-top: 0;
}

.page-template-page-document .content-default__container > *:last-child {
  margin-bottom: 0;
}

.page-template-page-document .content-default__container .wp-block-heading {
  margin: 48px 0 20px;
}

.page-template-page-document .content-default__container .wp-block-image {
  margin: 32px 0;
}

.page-template-page-document .content-default__container p,
.page-template-page-document .content-default__container a,
.page-template-page-document .content-default__container li {
  line-height: 190%;
}

.page-template-page-document .content-default__container ul {
  list-style: disc;
}

.page-template-page-document .content-default__container ul li::marker {
  font-size: 9px;
}

.page-template-page-document .content-default__container ol {
  list-style: decimal;
}

.page-template-page-document .content-default__container ul,
.page-template-page-document .content-default__container ol {
  padding-left: 24px;
}

.page-template-page-document .content-default__container p {
  max-width: 660px;
}

.page-template-page-document .content-default__container strong {
  font-weight: 600;
}

.page-template-page-document .content-default__container em {
  font-style: italic;
}

.page-template-page-document .content-default__container a {
  color: var(--secondary, #18280e);
  transition: var(--transition);
  text-decoration: underline;
}

.page-template-page-document .content-default__container a:hover {
  color: var(--gold-dark);
}

.footer {
  margin-top: auto;
  padding-top: 80px;
  background: var(--secondary, #18280E);
  color: var(--white, #FFF);
}

.footer a {
  color: var(--white, #FFF);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--primary, #E6DA91);
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: var(--sp);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 264px;
  margin-right: 160px;
}

.footer__logo {
  display: block;
  aspect-ratio: 264/59;
  width: 100%;
  max-width: 264px;
  margin-bottom: auto;
  background: center/contain no-repeat;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__socials .item {
  position: relative;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--sand-8, rgba(255, 224, 148, 0.08));
  color: var(--primary);
}

.footer__socials .item::before,
.footer__socials .item svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.footer__socials .item::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 0;
  aspect-ratio: 1;
  background: var(--primary, #E6DA91);
}

.footer__socials .item:hover {
  color: var(--secondary);
}

.footer__socials .item:hover::before {
  width: 100%;
}

.footer__socials .item svg {
  display: block;
  width: 16px;
  aspect-ratio: 1;
  z-index: 2;
}

.footer__btn {
  margin-top: auto;
}

.footer__btn.btn.white-bg {
  color: var(--primary, #E6DA91);
}

.footer__btn.btn.white-bg:hover {
  color: var(--white, #FFF);
}

.footer__btn.btn.white-bg:before {
  background: var(--sand-8, rgba(255, 224, 148, 0.08));
}

.footer__btn.btn.white-bg::after {
  background: var(--gold-dark);
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 180px;
}

.footer__menu a {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-size: var(--menu-12);
  line-height: 130%;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contacts-title {
  margin-bottom: 2px;
  line-height: 120%;
  font-size: var(--body5-12);
}

.footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contacts-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: var(--menu-12);
  line-height: 130%;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__contacts-list a svg {
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: center/contain no-repeat;
}

.footer__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 20px 0;
  line-height: 115%;
  font-size: 14px;
}

.footer__copyright {
  margin-right: auto;
}

.footer__dev {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.footer__dev img {
  width: 75px;
  aspect-ratio: 75/30;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: "";
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: "";
  margin-top: -50px;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(45deg);
  transition: 0.2s linear;
}

.modal-overlay .close-button--custom {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6c715b;
  z-index: 11;
}

.modal-overlay .close-button--custom::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform: none;
  margin-top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.6805 11.6786L4.3266 4.32471M11.6735 4.32476L4.31958 11.6787' stroke='white' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
  transition: var(--transition);
  z-index: 2;
}

.modal-overlay .close-button--custom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary, #e6da91);
  transition: var(--transition);
  z-index: 1;
}

#modal-video {
  padding: 16px 0;
}

#modal-video:has(.ratio--standard) {
  padding: 80px 0;
}

#modal-video .modal-content {
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}

#modal-video .close-button {
  z-index: 5;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: brightness(0.7) blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal-video .close-button:after {
  display: none;
}

#modal-video .close-button:before {
  width: 16px;
  height: 16px;
  transform: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.6805 11.6781L4.3266 4.32422M11.6735 4.32427L4.31958 11.6782' stroke='white' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") 50% 50%/contain no-repeat;
}

#modal-video .video {
  position: relative;
  height: calc(100vh - 32px);
  overflow: hidden;
}

#modal-video .video:has(.ratio--vertical) {
  aspect-ratio: 4/7;
  max-height: 714px;
}

#modal-video .video:has(.ratio--standard) {
  width: calc(var(--container-width) - 20px);
  height: auto;
  aspect-ratio: 16/9;
}

#modal-video .video iframe {
  border-radius: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}

#modal-form,
#modal-form-offer {
  padding: 60px 0;
}

#modal-form .modal-form,
#modal-form-offer .modal-form {
  position: relative;
  padding: 60px;
  border-radius: 48px;
  border: 1px solid var(--white, #fff);
  background: var(--secondary, #18280e);
  backdrop-filter: blur(50px);
  max-width: 540px;
  margin: 0 auto;
}

#modal-form .modal-form .close-button,
#modal-form-offer .modal-form .close-button {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal-form .modal-form .close-button:before,
#modal-form .modal-form .close-button:after,
#modal-form-offer .modal-form .close-button:before,
#modal-form-offer .modal-form .close-button:after {
  display: none;
}

#modal-form .modal-form .close-button svg,
#modal-form-offer .modal-form .close-button svg {
  transition: var(--transition);
}

#modal-form .modal-form .close-button:hover svg,
#modal-form-offer .modal-form .close-button:hover svg {
  transform: rotate(90deg);
}

#modal-form .modal-form h2,
#modal-form-offer .modal-form h2 {
  color: var(--white);
}

#modal-form .modal-form .content-sub,
#modal-form-offer .modal-form .content-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 32px;
}

.modal-overlay .modal-event-archive .close-button {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6c715b;
  z-index: 11;
}

.modal-overlay .modal-event-archive .close-button::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform: none;
  margin-top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.6805 11.6786L4.3266 4.32471M11.6735 4.32476L4.31958 11.6787' stroke='white' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
  transition: var(--transition);
  z-index: 2;
}

.modal-overlay .modal-event-archive .close-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary, #e6da91);
  transition: var(--transition);
  z-index: 1;
}

.modal-event-archive__wrap {
  position: relative;
  width: 100%;
  width: 900px;
  padding: 24px;
  border-radius: var(--48, 48px);
  border: 1px solid var(--white, #fff);
  overflow: hidden;
}

.modal-event-archive__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}

.modal-event-archive__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  padding: 24px;
  border-radius: var(--32, 32px);
  color: var(--white, #fff);
}

.modal-event-archive__content::before {
  z-index: 1;
}

.modal-event-archive__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--black-50, rgba(7, 14, 17, 0.5));
}

.modal-event-archive__header,
.modal-event-archive__title,
.modal-event-archive__speaker,
.modal-event-archive__description {
  position: relative;
  z-index: 3;
}

.modal-event-archive__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-event-archive__time {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  padding: 4px 8px;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: 0.5px;
  border-radius: var(--8, 8px);
  background: #6c715b;
}

.modal-event-archive__location {
  max-width: 70%;
}

.modal-event-archive__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder {
  /*Параметры цифр */
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder {
  /*Параметры подложки для секций */
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder {
  /*Параметры секций разделения (:)*/
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder {
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

.single-page {
  padding: 48px 0 var(--sp);
}

.single-page__title {
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.single-page__wrap {
  display: flex;
  gap: 32px;
}

.single-page__content {
  width: calc(100% - 424px);
}

.single-page__sidebar {
  width: 392px;
}

.single-page__info-post {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.single-page__info-post .item__cat {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
}

.single-page__info-post .item__cat .btn {
  padding: 4px 8px;
  font-size: 12px;
  height: 22px;
  border-radius: 48px;
}

.single-page__info-post .item__cat .btn span {
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  display: block;
}

.single-page__info-post .item__cat .btn::before {
  background: var(--secondary, #18280e);
}

.single-page__info-post .item__cat .btn:after {
  background: #a0843e;
}

.single-page__info-post .item__info {
  flex: 0 0 240px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
}

.single-page__info-post .item__info .item__date {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.single-page__info-post .item__info .item__time {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.single-page__info-post .item__info .item__time span {
  font-weight: 600;
}

.single-page__image {
  width: 100%;
  margin-bottom: 48px;
}

.single-page__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 816/480;
  display: block;
}

.single-page__content-wrap > * {
  margin: 20px 0;
}

.single-page__content-wrap > *:first-child {
  margin-top: 0;
}

.single-page__content-wrap > *:last-child {
  margin-bottom: 0;
}

.single-page__content-wrap .wp-block-heading {
  margin: 48px 0 20px;
}

.single-page__content-wrap .wp-block-image {
  margin: 32px 0;
}

.single-page__content-wrap p,
.single-page__content-wrap a,
.single-page__content-wrap li {
  line-height: 190%;
}

.single-page__content-wrap ul {
  list-style: disc;
}

.single-page__content-wrap ul li::marker {
  font-size: 9px;
}

.single-page__content-wrap ol {
  list-style: decimal;
}

.single-page__content-wrap ul,
.single-page__content-wrap ol {
  padding-left: 24px;
}

.single-page__content-wrap p {
  max-width: 660px;
}

.single-page__content-wrap strong {
  font-weight: 600;
}

.single-page__content-wrap em {
  font-style: italic;
}

.single-page__content-wrap a {
  color: var(--secondary, #18280e);
  transition: var(--transition);
  text-decoration: underline;
}

.single-page__content-wrap a:hover {
  color: var(--gold-dark);
}

.single-post .wrapper {
  overflow: visible;
}

.single-post .breadcrumbs {
  padding: 16px 0;
}

.single-post .breadcrumbs .container {
  text-align: center;
}

.single-post .breadcrumbs .container a,
.single-post .breadcrumbs .container p {
  color: var(--secondary, #fff);
  font-size: var(--body5-12);
  line-height: 1.2;
}

.single-post .breadcrumbs .container a {
  transition: var(--transition);
}

.single-post .breadcrumbs .container a:hover {
  opacity: 0.4;
}

.single-post .breadcrumbs .container p > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.single-post .breadcrumbs .container p > span > * {
  margin: 0 8px;
}

.single-post .breadcrumbs .container p > span > *:last-child {
  margin-right: 0;
}

.single-post .breadcrumbs .container p > span > *:first-child {
  margin-left: 0;
}

.sidebar {
  position: sticky;
  top: 82px;
}

.sidebar__title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
  padding: 2px 8px;
  letter-spacing: 0.5px;
  border-radius: 32px;
  color: var(--secondary);
  margin-bottom: 24px;
  background: var(--green-8, rgba(24, 40, 14, 0.08));
}

.sidebar__items {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

.sidebar__items .item {
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.sidebar__items .item__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
}

.sidebar__items .item__info .item__date {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.sidebar__items .item__info .item__time {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.sidebar__items .item__info .item__time span {
  font-weight: 600;
}

.sidebar__items .item__cat .btn {
  padding: 4px 8px;
  height: 22px;
  border-radius: 48px;
  font-size: 12px;
  line-height: 1;
}

.sidebar__items .item__cat .btn span {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.sidebar__items .item__cat .btn::before {
  background: var(--secondary, #18280e);
}

.sidebar__items .item__cat .btn:after {
  background: #a0843e;
}

.sidebar__items .item h4 {
  line-height: 140%;
  /* 28px */
  letter-spacing: 0.5px;
}

.sidebar__items .item h4 a {
  transition: var(--transition);
}

.sidebar__items .item h4 a:hover {
  color: var(--gold-dark);
}

.sidebar__items .item__excerpt {
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.posts-slider {
  padding: var(--sp) 0;
  overflow: hidden;
}

.posts-slider__title {
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.posts-slider__items {
  overflow: visible;
}

.posts-slider .item {
  width: 392px;
}

.posts-slider .item:hover .item__image_link img {
  transform: scale(1.05);
}

.posts-slider .item:hover h4 a {
  color: var(--gold-dark);
}

.posts-slider .item__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.posts-slider .item__image_link:hover img {
  transform: scale(1.05);
}

.posts-slider .item img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 392/294;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
}

.posts-slider .item__category {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  color: var(--white);
  height: 22px;
  font-size: 12px;
  font-weight: 400;
}

.posts-slider .item__category::before {
  background: var(--secondary, #18280e);
}

.posts-slider .item__category:after {
  background: #a0843e;
}

.posts-slider .item__info {
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
}

.posts-slider .item__info .item__date {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.posts-slider .item__info .item__time {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.posts-slider .item__info .item__time span {
  font-weight: 600;
}

.posts-slider .item h4 {
  line-height: 140%;
  /* 28px */
  letter-spacing: 0.5px;
}

.posts-slider .item h4 a {
  transition: var(--transition);
  display: block;
}

.posts-slider .item h4 a:hover {
  color: var(--gold-dark);
}

.posts-slider .item__excerpt {
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.blog .breadcrumbs,
body.archive .breadcrumbs {
  padding: 16px 0;
}

body.blog .breadcrumbs .container,
body.archive .breadcrumbs .container {
  text-align: center;
}

body.blog .breadcrumbs .container a,
body.blog .breadcrumbs .container p,
body.archive .breadcrumbs .container a,
body.archive .breadcrumbs .container p {
  color: var(--secondary, #fff);
  font-size: var(--body5-12);
  line-height: 1.2;
}

body.blog .breadcrumbs .container a,
body.archive .breadcrumbs .container a {
  transition: var(--transition);
}

body.blog .breadcrumbs .container a:hover,
body.archive .breadcrumbs .container a:hover {
  opacity: 0.4;
}

body.blog .breadcrumbs .container p > span,
body.archive .breadcrumbs .container p > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

body.blog .breadcrumbs .container p > span > *,
body.archive .breadcrumbs .container p > span > * {
  margin: 0 8px;
}

body.blog .breadcrumbs .container p > span > *:last-child,
body.archive .breadcrumbs .container p > span > *:last-child {
  margin-right: 0;
}

body.blog .breadcrumbs .container p > span > *:first-child,
body.archive .breadcrumbs .container p > span > *:first-child {
  margin-left: 0;
}

body.blog .blog-posts,
body.archive .blog-posts {
  padding: 48px 0 var(--sp);
}

body.blog .blog-posts__container,
body.archive .blog-posts__container {
  display: flex;
  flex-flow: column;
  gap: 24px;
}

body.blog .blog-posts__header,
body.archive .blog-posts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 32px;
  max-width: 100%;
  margin-bottom: 20px;
}

body.blog .blog-posts__header h1,
body.archive .blog-posts__header h1 {
  max-width: 816px;
}

body.blog .blog-posts__search,
body.archive .blog-posts__search {
  position: relative;
  max-width: 352px;
  width: 100%;
}

body.blog .blog-posts__search input,
body.archive .blog-posts__search input {
  height: 46px;
  background: transparent;
  padding: 8px 60px 8px 20px;
  border-radius: 4px;
  border: 1px solid var(--gray);
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 190%;
  border-radius: var(--24, 24px);
  border: 1px solid var(--secondary, #18280e);
}

body.blog .blog-posts__search input::-moz-placeholder,
body.archive .blog-posts__search input::-moz-placeholder {
  color: #757c80;
}

body.blog .blog-posts__search input::placeholder,
body.archive .blog-posts__search input::placeholder {
  color: #757c80;
}

body.blog .blog-posts__search input:active,
body.blog .blog-posts__search input:focus,
body.archive .blog-posts__search input:active,
body.archive .blog-posts__search input:focus {
  box-shadow: 0px 0px 2px var(--secondary, #18280e);
}

body.blog .blog-posts__search button,
body.blog .blog-posts__search-reset,
body.archive .blog-posts__search button,
body.archive .blog-posts__search-reset {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 16px;
  height: 16px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

body.blog .blog-posts__search button.hide,
body.blog .blog-posts__search-reset.hide,
body.archive .blog-posts__search button.hide,
body.archive .blog-posts__search-reset.hide {
  display: none;
}

body.blog .blog-posts__search button svg,
body.blog .blog-posts__search-reset svg,
body.archive .blog-posts__search button svg,
body.archive .blog-posts__search-reset svg {
  width: 16px;
  height: 16px;
  fill: var(--gray);
  transition: var(--transition);
}

body.blog .blog-posts__search button:hover svg,
body.blog .blog-posts__search-reset:hover svg,
body.archive .blog-posts__search button:hover svg,
body.archive .blog-posts__search-reset:hover svg {
  transform: rotate(90deg);
}

body.blog .blog-posts__search button:before,
body.blog .blog-posts__search-reset:before,
body.archive .blog-posts__search button:before,
body.archive .blog-posts__search-reset:before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(24, 40, 14, 0.08);
}

body.blog .blog-posts__search .blog-posts__search-reset svg,
body.archive .blog-posts__search .blog-posts__search-reset svg {
  width: 8px;
  height: 8px;
}

body.blog .blog-posts__topics-wrap,
body.archive .blog-posts__topics-wrap {
  overflow-x: auto;
  max-width: 100%;
}

body.blog .blog-posts__topics-list,
body.archive .blog-posts__topics-list {
  margin: 0 auto 24px;
  background: rgba(24, 40, 14, 0.04);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 48px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

body.blog .blog-posts__topics-list a,
body.archive .blog-posts__topics-list a {
  position: relative;
  padding-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 48px;
  height: 44px;
  padding: 12px 20px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.6s all ease;
  text-align: center;
  flex: 0 0 auto;
  z-index: 2;
  white-space: nowrap;
}

body.blog .blog-posts__topics-list a:before,
body.archive .blog-posts__topics-list a:before {
  background: var(--secondary);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  z-index: -1;
  transition: 0.6s all ease;
}

body.blog .blog-posts__topics-list a:hover,
body.blog .blog-posts__topics-list a.disabled,
body.blog .blog-posts__topics-list a.active,
body.archive .blog-posts__topics-list a:hover,
body.archive .blog-posts__topics-list a.disabled,
body.archive .blog-posts__topics-list a.active {
  color: var(--primary, #e6da91);
}

body.blog .blog-posts__topics-list a:hover::before,
body.blog .blog-posts__topics-list a.disabled::before,
body.blog .blog-posts__topics-list a.active::before,
body.archive .blog-posts__topics-list a:hover::before,
body.archive .blog-posts__topics-list a.disabled::before,
body.archive .blog-posts__topics-list a.active::before {
  width: 120%;
}

body.blog .blog-posts__list,
body.archive .blog-posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

body.blog .blog-posts__list .item,
body.archive .blog-posts__list .item {
  width: 392px;
}

body.blog .blog-posts__list .item:hover .item__image_link img,
body.archive .blog-posts__list .item:hover .item__image_link img {
  transform: scale(1.05);
}

body.blog .blog-posts__list .item:hover h4 a,
body.archive .blog-posts__list .item:hover h4 a {
  color: var(--gold-dark);
}

body.blog .blog-posts__list .item__image,
body.archive .blog-posts__list .item__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

body.blog .blog-posts__list .item__image_link:hover img,
body.archive .blog-posts__list .item__image_link:hover img {
  transform: scale(1.05);
}

body.blog .blog-posts__list .item img,
body.archive .blog-posts__list .item img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 392/294;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
}

body.blog .blog-posts__list .item__category,
body.archive .blog-posts__list .item__category {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  color: var(--white);
  height: 22px;
  font-size: 12px;
  font-weight: 400;
}

body.blog .blog-posts__list .item__category::before,
body.archive .blog-posts__list .item__category::before {
  background: var(--secondary, #18280e);
}

body.blog .blog-posts__list .item__category:after,
body.archive .blog-posts__list .item__category:after {
  background: #a0843e;
}

body.blog .blog-posts__list .item__info,
body.archive .blog-posts__list .item__info {
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 8px;
}

body.blog .blog-posts__list .item__info .item__date,
body.archive .blog-posts__list .item__info .item__date {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

body.blog .blog-posts__list .item__info .item__time,
body.archive .blog-posts__list .item__info .item__time {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

body.blog .blog-posts__list .item__info .item__time span,
body.archive .blog-posts__list .item__info .item__time span {
  font-weight: 600;
}

body.blog .blog-posts__list .item h4,
body.archive .blog-posts__list .item h4 {
  line-height: 140%;
  /* 28px */
  letter-spacing: 0.5px;
}

body.blog .blog-posts__list .item h4 a,
body.archive .blog-posts__list .item h4 a {
  transition: var(--transition);
  display: block;
}

body.blog .blog-posts__list .item h4 a:hover,
body.archive .blog-posts__list .item h4 a:hover {
  color: var(--gold-dark);
}

body.blog .blog-posts__list .item__excerpt,
body.archive .blog-posts__list .item__excerpt {
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.blog .blog-posts__search-result-message,
body.archive .blog-posts__search-result-message {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
}

body.blog .blog-posts__search-result-message b,
body.archive .blog-posts__search-result-message b {
  font-weight: 600;
}

body.blog .blog-posts .no-results-message,
body.archive .blog-posts .no-results-message {
  text-align: center;
  line-height: 1.9;
  padding: var(--sp) 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
}

body.blog .blog-posts .no-results-message b,
body.archive .blog-posts .no-results-message b {
  font-weight: 600;
}

body.blog .blog-posts__load-more,
body.archive .blog-posts__load-more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 8px;
  max-width: 116px;
  text-align: center;
  margin: 0 auto;
}

body.blog .blog-posts__load-more span,
body.archive .blog-posts__load-more span {
  transition: var(--transition);
  opacity: 0.8;
}

body.blog .blog-posts__load-more .icon,
body.archive .blog-posts__load-more .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(24, 40, 14, 0.08);
}

body.blog .blog-posts__load-more .icon::before,
body.archive .blog-posts__load-more .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  background: var(--secondary, #18280e);
  border-radius: 50%;
  transition: 0.6s all ease;
}

body.blog .blog-posts__load-more svg,
body.archive .blog-posts__load-more svg {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

body.blog .blog-posts__load-more svg path,
body.archive .blog-posts__load-more svg path {
  transition: var(--transition);
}

body.blog .blog-posts__load-more:hover .icon svg path,
body.blog .blog-posts__load-more.is-loading .icon svg path,
body.archive .blog-posts__load-more:hover .icon svg path,
body.archive .blog-posts__load-more.is-loading .icon svg path {
  stroke: var(--white);
}

body.blog .blog-posts__load-more:hover .icon:before,
body.blog .blog-posts__load-more.is-loading .icon:before,
body.archive .blog-posts__load-more:hover .icon:before,
body.archive .blog-posts__load-more.is-loading .icon:before {
  width: 120%;
}

body.blog .blog-posts__load-more:hover span,
body.blog .blog-posts__load-more.is-loading span,
body.archive .blog-posts__load-more:hover span,
body.archive .blog-posts__load-more.is-loading span {
  opacity: 1;
}

body.blog .blog-posts__load-more.is-loading .icon svg,
body.archive .blog-posts__load-more.is-loading .icon svg {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.single-apartments {
  color: var(--white, #fff);
  background: var(--secondary);
}

.single-apartments.room-type-premium {
  background: #070e11;
}

.single-apartments.room-type-premium .apartment__list {
  background: rgba(255, 224, 148, 0.08);
}

.single-apartments.room-type-premium .premium-label {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--primary, #a0843e);
}

.single-apartments.room-type-premium .premium-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold, linear-gradient(180deg, #a0843e 0%, #e6da91 100%));
}

.single-apartments.room-type-premium .apartment-hero::before {
  background: linear-gradient(180deg, rgba(24, 40, 14, 0) 0%, #070e11 100%);
}

.single-apartments .apartment-hero {
  padding: 80px 0 var(--sp);
  position: relative;
  background: 50% 50%/cover no-repeat;
}

.single-apartments .apartment-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(24, 40, 14, 0) 0%, #18280e 100%);
  z-index: 1;
}

.single-apartments .apartment-hero__container {
  min-height: calc(100vh - 80px - var(--sp));
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 48px;
}

.single-apartments .apartment-hero__container .breadcrumbs__block {
  padding: 16px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.single-apartments .apartment-hero__container .breadcrumbs__block a,
.single-apartments .apartment-hero__container .breadcrumbs__block p {
  color: var(--white, #fff);
  font-size: var(--body5-12);
  line-height: 1.2;
}

.single-apartments .apartment-hero__container .breadcrumbs__block a {
  transition: var(--transition);
}

.single-apartments .apartment-hero__container .breadcrumbs__block a:hover {
  color: var(--primary, #e6da91);
}

.single-apartments .apartment-hero__container .breadcrumbs__block p > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.single-apartments .apartment-hero__content {
  display: flex;
  flex-flow: column;
  gap: 32px;
  color: white;
}

.single-apartments .apartment-hero .apartment__title span {
  color: var(--primary, #a0843e);
  display: block;
}

.single-apartments .apartment-hero .apartment__line {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.32);
}

.single-apartments .apartment-hero-info {
  display: flex;
  gap: 48px;
}

.single-apartments .apartment-hero-info .items {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white, #fff);
  font-size: 14px;
  line-height: 1.6;
}

.single-apartments .apartment-hero-info .glasses {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: rgba(7, 14, 17, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -18px;
}

.single-apartments .apartment-hero-info .glasses:first-child {
  margin-left: 0;
}

.single-apartments .apartment-hero-info .icons {
  display: flex;
  align-items: center;
}

.single-apartments .apartment-hero-info .icons .glasses {
  backdrop-filter: blur(6px);
}

.single-apartments .apartment-hero__btn {
  height: 58px;
}

.single-apartments .apartment-slider {
  padding: 48px 0 var(--sp);
}

.single-apartments .apartment-slider__container {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 48px;
}

.single-apartments .apartment-slider__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
}

.single-apartments .apartment-slider__slider .swiper-slide {
  height: 676px;
}

.single-apartments .apartment-slider__slider .swiper-slide img,
.single-apartments .apartment-slider__slider .swiper-slide a {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 48px;
  display: block;
  background: 50% 50%/cover no-repeat;
}

.single-apartments .apartment-slider__slider .swiper-slide .apartment-slider__lightbox {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.single-apartments .apartment-slider__slider .swiper-slide .item.item--video {
  position: relative;
}

.single-apartments .apartment-slider__slider .swiper-slide .item.item--video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 0C37.2548 0 48 10.7452 48 24C48 37.2548 37.2548 48 24 48C10.7452 48 0 37.2548 0 24C1.03081e-06 10.7452 10.7452 1.03088e-06 24 0ZM20.5107 16.2158C19.3949 15.6027 18.0001 16.3692 18 17.5957V30.4043C18.0001 31.6308 19.3949 32.3974 20.5107 31.7842L32.1631 25.3799C33.2789 24.7665 33.2789 23.2335 32.1631 22.6201L20.5107 16.2158Z' fill='white'/%3E%3C/svg%3E") center center/contain no-repeat;
}

.single-apartments .apartment-slider .apartment-slider__thumbs {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  overflow: visible;
}

.single-apartments .apartment-slider .apartment-slider__thumbs .swiper-container .swiper-slide {
  border-radius: 20px;
  border: 2px solid #757c80;
  height: 120px;
  width: 220px;
  overflow: hidden;
  cursor: pointer;
  transition: border 0.3s ease;
}

.single-apartments .apartment-slider .apartment-slider__thumbs .swiper-container .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--white);
}

.single-apartments .apartment-slider .apartment-slider__thumbs .swiper-container .swiper-slide .item {
  width: 100%;
  height: 100%;
  background: 50% 50%/cover no-repeat;
  transition: var(--transition);
}

.single-apartments .apartment-slider .apartment-slider__thumbs .swiper-container .swiper-slide .item.item--video {
  position: relative;
}

.single-apartments .apartment-slider .apartment-slider__thumbs .swiper-container .swiper-slide .item.item--video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 0C37.2548 0 48 10.7452 48 24C48 37.2548 37.2548 48 24 48C10.7452 48 0 37.2548 0 24C1.03081e-06 10.7452 10.7452 1.03088e-06 24 0ZM20.5107 16.2158C19.3949 15.6027 18.0001 16.3692 18 17.5957V30.4043C18.0001 31.6308 19.3949 32.3974 20.5107 31.7842L32.1631 25.3799C33.2789 24.7665 33.2789 23.2335 32.1631 22.6201L20.5107 16.2158Z' fill='white'/%3E%3C/svg%3E") center center/contain no-repeat;
}

.single-apartments .apartment-slider .apartment-slider__thumbs .swiper-container .swiper-slide:hover {
  border-color: var(--white);
}

.single-apartments .apartment-slider .apartment-slider__thumbs .swiper-container .swiper-slide:hover .item {
  transform: scale(1.1);
}

.single-apartments .apartment-slider .swiper-button-next {
  right: -24px;
}

.single-apartments .apartment-slider .swiper-button-prev {
  left: -24px;
}

.single-apartments .apartment-slider .swiper-button-next,
.single-apartments .apartment-slider .swiper-button-prev {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.single-apartments .apartment-slider .apartment__desc {
  max-width: 760px;
  width: 100%;
}

.single-apartments .apartment-slider .apartment__desc p,
.single-apartments .apartment-slider .apartment__desc ul,
.single-apartments .apartment-slider .apartment__desc ol {
  max-width: 604px;
  width: 100%;
}

.single-apartments .apartment-slider__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.single-apartments .apartment__info {
  padding: var(--sp) 0;
}

.single-apartments .apartment__info h2 {
  margin-bottom: 48px;
}

.single-apartments .apartment__info .apartment__list {
  border-radius: 32px;
  background: rgba(7, 14, 17, 0.2);
  box-shadow: inset -5px -5px 20px 0px rgba(255, 255, 255, 0.1);
  padding: 32px;
  overflow: visible;
  display: flex;
  flex-flow: wrap;
  gap: 32px 12px;
}

.single-apartments .apartment__info .apartment__list::before {
  display: none;
}

.single-apartments .apartment__info .apartment__list h4 {
  width: 100%;
}

.single-apartments .apartment__info .apartment__list .item {
  width: calc((100% - 32px) / 2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-apartments .apartment__info .apartment__list .item__icon-wrap {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7, 14, 17, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
}

.single-apartments .apartment__info .apartment__list .item__icon-wrap:before {
  display: none;
}

.single-apartments .apartment__info .apartment__list .item__icon {
  width: 16px;
  height: 16px;
  background: 50% 50%/cover no-repeat;
}

.single-apartments .apartment__info .apartment__list .item__text {
  line-height: 1;
}

.single-apartments .apartment-services {
  padding: var(--sp) 0;
}

.single-apartments .apartment-services__content {
  display: flex;
  flex-flow: wrap;
  gap: 32px;
}

.single-apartments .apartment-services .additional__media {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 24px;
  width: 100%;
}

.single-apartments .apartment-services .additional__media-wrap {
  width: 100%;
  aspect-ratio: 248/123;
}

.single-apartments .apartment-services .additional__media-wrap {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.single-apartments .apartment-services .additional__media-wrap img,
.single-apartments .apartment-services .additional__media-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.single-apartments .apartment-services h2 {
  margin-bottom: 48px;
}

.single-apartments .apartment-services .apartment__info-img-wrap {
  width: 100%;
  aspect-ratio: 248/123;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: 50% 50%/cover no-repeat;
  margin-bottom: 32px;
}

.single-apartments .apartment-services .apartment__info-img-wrap img,
.single-apartments .apartment-services .apartment__info-img-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.single-apartments .apartment-services .apartment__comforts .apartment__list {
  height: 100%;
  border-radius: 32px;
  background: rgba(7, 14, 17, 0.2);
  padding: 32px;
  box-shadow: inset -5px -5px 20px 0px rgba(255, 255, 255, 0.1);
  overflow: visible;
  display: flex;
  flex-flow: wrap;
  gap: 20px 12px;
}

.single-apartments .apartment-services .apartment__comforts .apartment__list::before {
  display: none;
}

.single-apartments .apartment-services .apartment__comforts .apartment__list h4 {
  width: 100%;
  margin-bottom: 22px;
}

.single-apartments .apartment-services .apartment__comforts .apartment__list .item {
  width: calc((100% - 24px) / 3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-apartments .apartment-services .apartment__comforts .apartment__list .item__icon-wrap {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7, 14, 17, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
}

.single-apartments .apartment-services .apartment__comforts .apartment__list .item__icon-wrap:before {
  display: none;
}

.single-apartments .apartment-services .apartment__comforts .apartment__list .item__icon {
  width: 16px;
  height: 16px;
  background: 50% 50%/cover no-repeat;
}

.single-apartments .apartment-services .apartment__comforts .apartment__list .item__text {
  line-height: 1;
}

.single-apartments .apartment-services .apartment__comforts.additional_comforts {
  flex: 0 0 420px;
}

.single-apartments .apartment-services .apartment__comforts.additional_comforts .apartment__list {
  overflow: visible;
  background: rgba(255, 224, 148, 0.04);
}

.single-apartments .apartment-services .apartment__comforts.additional_comforts .item {
  width: calc((100% - 12px) / 2);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.single-apartments .apartment-services .apartment__comforts.premium {
  height: 100%;
}

.single-apartments .apartment-services .apartment__comforts.additional_fee {
  width: calc(100% - 452px);
}

.single-apartments .apartment-services .apartment__comforts.additional_fee .item {
  width: calc((100% - 36px) / 4);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.single-apartments .apartment-services .apartment__comforts.additional_fee .item__text br {
  display: none;
}

.single-apartments .tooltip {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_3740_332)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0.5C12.1421 0.500012 15.5 3.85789 15.5 8C15.5 12.1421 12.1421 15.5 8 15.5C3.85788 15.5 0.5 12.1422 0.5 8C0.500009 3.85788 3.85789 0.5 8 0.5ZM8 7.28027C7.60247 7.28042 7.28027 7.60244 7.28027 8V11C7.28042 11.3974 7.60254 11.7206 8 11.7207C8.39758 11.7207 8.72056 11.3975 8.7207 11V8C8.7207 7.60234 8.39766 7.28027 8 7.28027ZM8 4.2793C7.60254 4.27944 7.28042 4.60255 7.28027 5C7.28041 5.39744 7.60255 5.71958 8 5.71973H8.00781C8.40516 5.71947 8.72741 5.39737 8.72754 5C8.7274 4.60262 8.4051 4.27956 8.00781 4.2793H8Z' fill='url(%23paint0_linear_3740_332)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3740_332' x1='8' y1='0.5' x2='8' y2='15.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23A0843E'/%3E%3Cstop offset='1' stop-color='%23E6DA91'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_3740_332'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center/contain;
  display: inline-block;
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-left: 2px;
  margin-bottom: -2px;
  /*position: relative;*/
}

.single-apartments .tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.single-apartments .tooltip .tooltip-content {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(calc(-50% + var(--tooltip-shift, 0px)));
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity 0.3s ease;
  min-width: 242px;
  max-width: calc(100vw - 32px);
  background: var(--primary);
  border-radius: 12px;
  padding: 12px;
  /* font */
  font-size: 14px;
  line-height: 120%;
  color: #354538;
}

.single-apartments .tooltip .tooltip-content:before {
  background: url("data:image/svg+xml,%3Csvg width='25' height='10' viewBox='0 0 25 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.108988 8.84391e-06C0.114492 8.50203e-06 0.119998 1.82654e-05 0.125505 3.81137e-05C1.90752 0.000149611 22.1069 0.000263715 24.7217 8.6553e-05C24.7312 2.79709e-05 24.7406 -9.14346e-07 24.7501 0C25.106 3.44323e-05 25.0685 6.30547e-05 24.7217 8.6553e-05C19.2507 0.0339656 12.4295 9.99999 12.4295 9.99999C12.4295 9.99999 5.59852 0.0197636 0.125505 3.81137e-05C-0.0318324 2.82694e-05 -0.0455979 1.84453e-05 0.108988 8.84391e-06Z' fill='%23E2D797'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: calc(50% - var(--tooltip-shift, 0px));
  transform: translateX(-50%);
  width: 25px;
  height: 10px;
}

.single-apartments .tooltip .tooltip-content .tooltip-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.single-apartments .tooltip .tooltip-content .tooltip-title {
  font-weight: 600;
}

.single-apartments .tooltip .tooltip-content p {
  font-weight: 400;
  margin-bottom: 2px;
}

.single-apartments .apartment__viewing {
  position: fixed;
  bottom: 54px;
  right: 32px;
  z-index: 20;
}

.single-apartments .apartment__viewing-content {
  border-radius: 32px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 14, 17, 0.5);
  backdrop-filter: blur(6px);
}

.single-apartments .apartment__viewing-content:before {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.single-apartments .apartment__viewing-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-apartments .apartment__viewing-text {
  color: var(--white, #fff);
  font-size: 12px;
  line-height: 1.2;
  max-width: 102px;
}

.single-apartments .apartment__viewing-text span {
  font-weight: 600;
}

.single-apartments .apartment__viewing-close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 3px;
  right: 3px;
  cursor: pointer;
}

.apartments-preview {
  aspect-ratio: 612/363;
}

.apartments-preview.item {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid var(--secondary, #18280e);
  background: rgba(255, 255, 255, 0.32);
}

.apartments-preview.item.premium {
  border-color: #a0843e;
}

.apartments-preview.item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  transition: var(--transition);
  z-index: 0;
  pointer-events: none;
}

.apartments-preview.item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.apartments-preview.item:hover img {
  transform: scale(1.05);
}

.apartments-preview.item .item__content {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  color: var(--white);
  min-height: 100%;
}

.apartments-preview.item .item__content-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.apartments-preview.item .item__content-top .item__title {
  max-width: 450px;
}

.apartments-preview.item .item__content-top .item__title br {
  display: none;
}

.apartments-preview.item .item__content-top .premium-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: var(--gold, linear-gradient(180deg, #a0843e 0%, #e6da91 100%));
}

.apartments-preview.item .item__content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-flow: wrap;
  gap: 10px;
}

.apartments-preview.item .item__content-bottom .item__info {
  display: flex;
  gap: 32px;
}

.apartments-preview.item .item__content-bottom .item__info-row {
  max-width: 112px;
}

.apartments-preview.item .item__content-bottom .item__info-row.item__persons p,
.apartments-preview.item .item__content-bottom .item__info-row.item__area p {
  width: -moz-max-content;
  width: max-content;
}

.apartments-preview.item .item__content-bottom .item__info-row.item__area {
  text-align: center;
}

.apartments-preview.item .item__content-bottom .item__info-row.item__area p {
  width: 100%;
}

.apartments-preview.item .item__content-bottom .item__info-row.item__view {
  max-width: 200px;
}

.apartments-preview.item .item__content-bottom .item__info-row p {
  min-height: 38px;
}

.apartments-preview.item .item__content-bottom .item__info-row span {
  font-weight: 600;
}

.apartments-preview.item .item__content-bottom .item__info-row .glasses {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  margin-bottom: 4px;
  background: rgba(7, 14, 17, 0.2);
  z-index: 1;
}

.apartments-preview.item .item__content-bottom .item__info-row .glasses::before {
  backdrop-filter: blur(6px);
}

.apartments-preview.item .item__content-bottom .item__info-row .icons {
  display: flex;
  align-items: center;
  gap: 2px;
}

.apartments-preview.soon {
  pointer-events: none;
}

.apartments-preview.soon:before {
  backdrop-filter: blur(8px);
}

.apartments-preview.soon .item__status {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black-20, rgba(7, 14, 17, 0.2));
  z-index: 4;
}

.post-type-archive-apartments .apartments {
  padding: 48px 0 var(--sp);
}

.post-type-archive-apartments .apartments__container {
  display: flex;
  flex-flow: column;
  gap: 48px;
}

.post-type-archive-apartments .apartments .breadcrumbs {
  padding: 16px 0;
}

.post-type-archive-apartments .apartments .breadcrumbs .container {
  text-align: center;
}

.post-type-archive-apartments .apartments .breadcrumbs .container a,
.post-type-archive-apartments .apartments .breadcrumbs .container p {
  color: var(--secondary, #fff);
  font-size: var(--body5-12);
  line-height: 1.2;
}

.post-type-archive-apartments .apartments .breadcrumbs .container a {
  transition: var(--transition);
}

.post-type-archive-apartments .apartments .breadcrumbs .container a:hover {
  opacity: 0.4;
}

.post-type-archive-apartments .apartments .breadcrumbs .container p > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.post-type-archive-apartments .apartments .breadcrumbs .container p > span > * {
  margin: 0 8px;
}

.post-type-archive-apartments .apartments .breadcrumbs .container p > span > *:last-child {
  margin-right: 0;
}

.post-type-archive-apartments .apartments .breadcrumbs .container p > span > *:first-child {
  margin-left: 0;
}

.post-type-archive-apartments .apartments__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.post-type-archive-apartments .apartments__top .apartments__title {
  font-size: var(--h2);
}

.post-type-archive-apartments .apartments__top .apartments__description {
  flex: 0 0 400px;
  line-height: 1.9;
}

.post-type-archive-apartments .apartments .apartments__topics-list {
  display: flex;
  align-items: center;
  margin: 0 auto;
  background: rgba(24, 40, 14, 0.04);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 48px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.post-type-archive-apartments .apartments .apartments__topics-list .tab-item {
  position: relative;
  padding-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 48px;
  height: 44px;
  padding: 12px 20px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.6s all ease;
  text-align: center;
  flex: 0 0 auto;
  background: transparent;
  z-index: 2;
  white-space: nowrap;
  border: none;
  min-width: 160px;
}

.post-type-archive-apartments .apartments .apartments__topics-list .tab-item:before {
  background: var(--secondary);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  z-index: -1;
  transition: 0.6s all ease;
}

.post-type-archive-apartments .apartments .apartments__topics-list .tab-item:hover,
.post-type-archive-apartments .apartments .apartments__topics-list .tab-item.disabled,
.post-type-archive-apartments .apartments .apartments__topics-list .tab-item.active {
  color: var(--primary, #e6da91);
}

.post-type-archive-apartments .apartments .apartments__topics-list .tab-item:hover::before,
.post-type-archive-apartments .apartments .apartments__topics-list .tab-item.disabled::before,
.post-type-archive-apartments .apartments .apartments__topics-list .tab-item.active::before {
  width: 120%;
}

.post-type-archive-apartments .apartments__list {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
}

.post-type-archive-apartments .apartments__list.two-column .apartments__list_column {
  width: calc(50% - 8px);
  flex-direction: column;
}

.post-type-archive-apartments .apartments__list.two-column .apartments__list_column .item {
  width: 100%;
}

.post-type-archive-apartments .apartments__list .apartments__list_column {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
}

.post-type-archive-apartments .apartments__list .item {
  width: calc((100% - 16px) / 2);
}

.post-type-archive-apartments .apartments__list .item__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.post-type-archive-apartments .apartments__events {
  padding: 32px 38px;
  border-radius: 32px;
  border: 2px solid var(--white, #fff);
  background: rgba(255, 255, 255, 0.32);
  position: relative;
}

.post-type-archive-apartments .apartments__events-title-block {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.post-type-archive-apartments .apartments__events-desc {
  max-width: 344px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.post-type-archive-apartments .apartments__events .swiper-button-next,
.post-type-archive-apartments .apartments__events .swiper-button-prev {
  background: rgba(24, 40, 14, 0.08);
  backdrop-filter: blur(4px);
}

.post-type-archive-apartments .apartments__events .swiper-button-next:after,
.post-type-archive-apartments .apartments__events .swiper-button-prev:after {
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.60001 12L5.60001 8L9.60001 4' stroke='%2318280E' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center no-repeat;
}

.post-type-archive-apartments .apartments__events .swiper-button-next:before,
.post-type-archive-apartments .apartments__events .swiper-button-prev:before {
  background: var(--secondary);
}

.post-type-archive-apartments .apartments__events-list .swiper-slide:last-child {
  margin-right: 0 !important;
}

.post-type-archive-apartments .apartments__events-list .event-card {
  width: 100%;
}

.post-type-archive-apartments .apartments__events-list .event-card:hover .event-card__image {
  transform: scale(1.05);
}

.post-type-archive-apartments .apartments__events-list .event-card:hover .event-card__image-wrap::before {
  opacity: 0.4;
}

.post-type-archive-apartments .apartments__events-list .event-card:hover .event-card__title {
  color: var(--gold-dark, #a0843e);
}

.post-type-archive-apartments .apartments__events-list .event-card:hover .event-card__icon {
  opacity: 1;
  width: 48px;
}

.post-type-archive-apartments .apartments__events-list .event-card__title {
  transition: var(--transition);
}

.post-type-archive-apartments .apartments__events-list .event-card__link {
  display: block;
  text-align: center;
}

.post-type-archive-apartments .apartments__events-list .event-card__time-event {
  position: absolute;
  top: 16px;
  left: 16px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  line-height: 140%;
  letter-spacing: 0.5px;
  border-radius: var(--8, 8px);
  background: #6c715b;
  z-index: 2;
  color: var(--white, #FFF);
}

.post-type-archive-apartments .apartments__events-list .event-card__location {
  position: absolute;
  z-index: 2;
  top: 48px;
  left: 16px;
  line-height: 160%;
  font-size: var(--body3-14);
  color: var(--white, #FFF);
}

.post-type-archive-apartments .apartments__events-list .event-card__image-wrap {
  display: block;
  width: 100%;
  height: 256px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 32px;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
}

.post-type-archive-apartments .apartments__events-list .event-card__image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #070e11;
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.post-type-archive-apartments .apartments__events-list .event-card__image-wrap .event-card__icon {
  position: absolute;
  width: 0;
  opacity: 0;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  bottom: 12px;
  padding: 5px;
  left: 50%;
  transform: translate(-50%, 0);
  color: var(--white);
  z-index: 2;
}

.post-type-archive-apartments .apartments__events-list .event-card__image-wrap .event-card__icon svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
  z-index: 3;
}

.post-type-archive-apartments .apartments__events-list .event-card__image-wrap .event-card__icon svg path {
  transition: var(--transition);
}

.post-type-archive-apartments .apartments__events-list .event-card__image-wrap .event-card__icon:after {
  background: var(--primary);
}

.post-type-archive-apartments .apartments__events-list .event-card__image-wrap .event-card__icon:hover svg path {
  stroke: var(--secondary);
}

.post-type-archive-apartments .apartments__events-list .event-card__time {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 2px;
}

.post-type-archive-apartments .apartments__events-list .event-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: var(--transition);
}

.breadcrumbs-section,
.breadcrumbs {
  margin-top: 80px;
}

@media (min-width: 761px) {
  body.blog .blog-posts__topics-wrap::-webkit-scrollbar,
  body.archive .blog-posts__topics-wrap::-webkit-scrollbar {
    height: 8px;
    background: rgba(24, 40, 14, 0.08);
    border-radius: 12px;
  }

  body.blog .blog-posts__topics-wrap::-webkit-scrollbar-thumb,
  body.archive .blog-posts__topics-wrap::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 12px;
  }

  body.blog .blog-posts__topics-wrap::-webkit-scrollbar-track,
  body.archive .blog-posts__topics-wrap::-webkit-scrollbar-track {
    border-radius: 12px;
  }
}

@media (max-width: 1260px) {
  :root {
    --sp: 100px;
    --container-width: 760px;
    --h1: 40px;
    --h2: 34px;
    --h3: 26px;
  }

  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__inner::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100px;
    z-index: 3;
    background: var(--odange-bg, #f7eee3);
    z-index: 3;
    display: none;
  }

  .header__logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 125px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    justify-content: flex-start;
    align-items: stretch;
    padding: 108px 20px 48px;
    flex-direction: column;
    width: 100%;
    max-width: 390px;
    background: var(--odange-bg, #f7eee3);
    z-index: 1;
    transform: translateX(100%);
    transition: var(--transition);
    overflow: auto;
  }

  .header__nav-left {
    order: 1;
    width: 100%;
  }

  .header__nav-right {
    display: contents;
  }

  .header__nav-right > .menu {
    order: 2;
    width: 100%;
  }

  .header .menu__inner {
    flex-direction: column;
    gap: 0;
  }

  .header .menu .item {
    width: 100%;
  }

  .header .menu a {
    display: block;
    width: 100%;
  }

  .header .menu .item.has-submenu._active .submenu {
    max-height: 1000px;
  }

  .header .menu .item.has-submenu .link {
    justify-content: space-between;
  }

  .header .menu .submenu {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    max-height: 0;
  }

  .header .menu .submenu__container {
    padding: 0 0 0 12px;
  }

  .header .menu .submenu .sct__image {
    display: none;
  }

  .header .menu .submenu .sct a {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header__lang {
    position: static;
    order: 5;
    margin-top: -34px;
    margin-left: auto;
  }

  .header__lang a {
    display: inline;
  }

  .header__contacts,
  .header__socials {
    display: flex;
  }

  .header__contacts {
    order: 3;
    width: 100%;
  }

  .header__socials {
    order: 4;
    margin-top: 32px;
  }

  .header__booking,
  .header__burger {
    display: block;
  }

  .header--white .header__burger,
  .header--white .header__booking,
  .header.scrolling_up .header__burger,
  .header.scrolling_up .header__booking,
  .header._active .header__burger,
  .header._active .header__booking,
  .header._hovered .header__burger,
  .header._hovered .header__booking {
    background: var(--green-8, rgba(24, 40, 14, 0.08));
  }

  .header._active .header__inner::before {
    display: block;
  }

  .header._active .header__burger::before {
    background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3901_9841' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='12' height='12'%3E%3Cpath d='M8.76093 8.75881L3.2455 3.24338M8.75567 3.24342L3.24023 8.75885' stroke='white' stroke-width='1.125' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3901_9841)'%3E%3Crect width='12' height='12' fill='%2318280E'/%3E%3C/g%3E%3C/svg%3E%0A") center/contain no-repeat;
  }

  .error404__container {
    gap: 24px;
  }

  .error404__content {
    max-width: 100%;
    width: calc((100% - 24px) / 2);
  }

  .error404__image {
    max-width: 100%;
    width: calc((100% - 24px) / 2);
  }

  .section-header {
    gap: 25px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .section-header__title {
    margin-right: 0;
  }

  .section-header__btn {
    margin-right: auto;
  }

  .footer__col {
    max-width: none;
    width: 100%;
    margin-right: 0;
  }

  .modal-event-archive {
    width: 100%;
  }

  .modal-event-archive__wrap {
    width: 100%;
  }

  .single-page__wrap {
    flex-direction: column;
  }

  .single-page__content {
    width: 100%;
  }

  .single-page__sidebar {
    width: 100%;
  }

  .sidebar {
    position: relative;
    top: unset;
    display: none;
  }

  body.blog .blog-posts__list,
  body.archive .blog-posts__list {
    grid-template-columns: repeat(2, 1fr);
  }

  body.blog .blog-posts__list .item,
  body.archive .blog-posts__list .item {
    width: 100%;
    max-width: 392px;
  }

  .single-apartments .apartment-services .apartment__comforts .apartment__list .item {
    width: calc((100% - 12px) / 2);
  }

  .single-apartments .apartment-services .apartment__comforts.additional_comforts {
    width: 100%;
    flex: 0 0 100%;
  }

  .single-apartments .apartment-services .apartment__comforts.additional_comforts .item {
    width: calc((100% - 24px) / 3);
  }

  .single-apartments .apartment-services .apartment__comforts.additional_fee {
    width: 100%;
  }

  .single-apartments .apartment-services .apartment__comforts.additional_fee .item {
    width: calc((100% - 24px) / 3);
  }

  .apartments-preview {
    aspect-ratio: 1/1;
  }

  .apartments-preview.item .item__content-bottom .item__info {
    gap: 24px;
  }

  .apartments-preview.item .item__content-bottom .item__info-row {
    font-size: 12px;
  }

  .apartments-preview.item .item__content-bottom .item__info-row p {
    min-height: 30px;
  }

  .apartments-preview.item .item__content-bottom .btn,
  .apartments-preview.item .item__content-bottom .item__buttons {
    width: 100%;
  }

  .post-type-archive-apartments .apartments__events-desc {
    max-width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 1260px) and (max-width: 760px) {
  .header__inner::before {
    top: -60px;
  }
}

@media (max-width: 760px) {
  :root {
    --sp: 80px;
    --container-width: 360px;
    --h1: 32px;
    --h2: 28px;
    --h3: 22px;
    --h4: 18px;
    --h5: 14px;
    --h6: 12px;
    --32: 20px;
    --48: 32px;
    --body1-16: 14px;
    --body2-16-B: 14px;
    --body3-14: 12px;
    --body4-14: 12px;
    --body4-14-B: 12px;
    --body5-12: 10px;
    --body6-12-B: 10px;
    --fz-default: 14px;
  }

  [class*=__container] {
    flex-direction: column;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .glasses::before {
    backdrop-filter: blur(4px) saturate(140%);
    -webkit-backdrop-filter: blur(4px) saturate(140%);
  }

  .wys > * {
    margin: 8px 0;
  }

  .wys h1,
  .wys h2,
  .wys h3,
  .wys h4,
  .wys h5,
  .wys h6 {
    margin: 24px 0 12px;
  }

  .wys .wp-block-image {
    margin: 24px 0;
  }

  .btn {
    font-size: 12px;
    padding: 16px;
  }

  .header__container {
    flex-direction: row;
  }

  .header__nav {
    max-width: none;
  }

  .error404__container {
    flex-direction: column;
  }

  .error404__content {
    text-align: center;
    order: 2;
    width: 100%;
  }

  .error404__image {
    order: 1;
    width: 100%;
  }

  .error404__buttons {
    justify-content: center;
  }

  .section-header {
    gap: 16px;
  }

  .page-template-page-document .breadcrumbs .container p > span {
    text-align: left;
  }

  .page-template-page-document .content-default__container > * {
    margin: 8px 0;
  }

  .page-template-page-document .content-default__container .wp-block-heading {
    margin: 24px 0 12px;
  }

  .page-template-page-document .content-default__container .wp-block-image {
    margin: 24px 0;
  }

  .footer__content {
    padding-bottom: 40px;
  }

  .footer__menu {
    width: calc((100% - 32px) / 2);
  }

  .footer__bottom {
    justify-content: center;
  }

  .footer__copyright {
    margin-right: 0;
  }

  .footer__dev {
    margin-left: 0;
  }

  .modal-overlay .close-button--custom {
    top: 12px;
    right: 12px;
  }

  #modal-video {
    padding: 50px 0 16px;
  }

  #modal-video .modal-overlay__container {
    max-width: 390px;
  }

  #modal-video .close-button {
    top: 10px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  #modal-video .video {
    height: calc(100vh - 66px);
    max-width: calc(var(--container-width) - 20px);
  }

  #modal-video .video:has(.ratio--standard) {
    width: calc(100vw - 20px);
  }

  #modal-video .video iframe {
    border-radius: 20px;
  }

  #modal-form .modal-form,
  #modal-form-offer .modal-form {
    padding: 40px;
  }

  .modal-overlay .modal-event-archive .close-button {
    top: 12px;
    right: 12px;
  }

  .modal-event-archive__wrap {
    padding: 12px;
  }

  .modal-event-archive__content {
    padding: 12px;
  }

  .modal-event-archive__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .single-page__title {
    text-align: center;
  }

  .single-page__info-post {
    flex-direction: column;
  }

  .single-page__info-post .item__info {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .single-page__image {
    margin-bottom: 24px;
  }

  .single-page__content-wrap > * {
    margin: 8px 0;
  }

  .single-page__content-wrap .wp-block-heading {
    margin: 24px 0 12px;
  }

  .single-page__content-wrap .wp-block-image {
    margin: 24px 0;
  }

  .single-post .breadcrumbs .container p > span {
    text-align: left;
  }

  .posts-slider__title {
    text-align: center;
    margin-bottom: 32px;
  }

  .posts-slider .item {
    width: 320px;
  }

  .posts-slider .item__excerpt {
    -webkit-line-clamp: 3;
  }

  body.blog .breadcrumbs .container p > span,
  body.archive .breadcrumbs .container p > span {
    text-align: left;
  }

  body.blog .blog-posts__topics-wrap::-webkit-scrollbar,
  body.archive .blog-posts__topics-wrap::-webkit-scrollbar {
    height: 4px;
    background: rgba(24, 40, 14, 0.08);
    border-radius: 12px;
  }

  body.blog .blog-posts__topics-wrap::-webkit-scrollbar-thumb,
  body.archive .blog-posts__topics-wrap::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 12px;
  }

  body.blog .blog-posts__topics-list a,
  body.archive .blog-posts__topics-list a {
    width: -moz-fit-content;
    width: fit-content;
    flex: 0 0 auto;
    height: 40px;
    padding: 10px 16px;
    font-size: 12px;
  }

  body.blog .blog-posts__list,
  body.archive .blog-posts__list {
    grid-template-columns: 1fr;
  }

  body.blog .blog-posts__list .item__excerpt,
  body.archive .blog-posts__list .item__excerpt {
    -webkit-line-clamp: 3;
  }

  .single-apartments .apartment-hero .apartment__line {
    width: 100%;
    height: 1px;
  }

  .single-apartments .apartment-hero-info {
    flex-direction: column;
    gap: 16px;
  }

  .single-apartments .apartment-hero__btn {
    height: 40px;
  }

  .single-apartments .apartment-slider__wrap {
    border-radius: 0;
    overflow: visible;
  }

  .single-apartments .apartment-slider__slider {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .single-apartments .apartment-slider__slider .swiper-slide {
    height: 100vw;
  }

  .single-apartments .apartment-slider .apartment-slider__thumbs {
    position: relative !important;
    left: auto;
    right: auto;
    bottom: auto;
    padding-bottom: 52px !important;
    margin-top: 20px;
  }

  .single-apartments .apartment-slider .swiper-button-next {
    right: calc(50% - 40px);
  }

  .single-apartments .apartment-slider .swiper-button-prev {
    left: unset;
    right: calc(50% + 8px);
  }

  .single-apartments .apartment-slider .swiper-button-next,
  .single-apartments .apartment-slider .swiper-button-prev {
    top: auto;
    bottom: 0;
  }

  .single-apartments .apartment__info .apartment__list {
    row-gap: 20px;
    padding: 24px;
  }

  .single-apartments .apartment__info .apartment__list .item {
    width: 100%;
  }

  .single-apartments .apartment-services .additional__media-wrap {
    width: 100vw;
  }

  .single-apartments .apartment-services .apartment__comforts .apartment__list {
    padding: 24px;
  }

  .single-apartments .apartment-services .apartment__comforts .apartment__list .item {
    width: 100%;
    flex-direction: row;
  }

  .single-apartments .tooltip {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }

  .single-apartments .apartment__viewing {
    right: 16px;
    bottom: 16px;
  }

  .post-type-archive-apartments .apartments__container {
    gap: 32px;
  }

  .post-type-archive-apartments .apartments .breadcrumbs .container p > span {
    text-align: left;
  }

  .post-type-archive-apartments .apartments__top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 16px;
  }

  .post-type-archive-apartments .apartments__top .apartments__title {
    text-align: center;
  }

  .post-type-archive-apartments .apartments__top .apartments__description {
    text-align: center;
    flex: 1 1 100%;
  }

  .post-type-archive-apartments .apartments .apartments__topics-list .tab-item {
    width: -moz-fit-content;
    width: fit-content;
    flex: 0 0 auto;
    height: 40px;
    padding: 10px 16px;
    font-size: 12px;
    min-width: 112px;
  }

  .post-type-archive-apartments .apartments__list.two-column .apartments__list_column {
    width: 100%;
  }

  .post-type-archive-apartments .apartments__list .item {
    width: 100%;
  }

  .post-type-archive-apartments .apartments__events {
    padding: 16px 16px 68px;
    overflow: hidden;
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .post-type-archive-apartments .apartments__events-title-block {
    flex-direction: column;
    gap: 12px;
  }

  .post-type-archive-apartments .apartments__events-desc {
    max-width: 100%;
  }

  .post-type-archive-apartments .apartments__events .swiper-button-next,
  .post-type-archive-apartments .apartments__events .swiper-button-prev {
    bottom: 16px;
    top: unset;
  }

  .post-type-archive-apartments .apartments__events .swiper-button-prev {
    left: 50%;
    transform: translateX(calc(-100% - 4px));
  }

  .post-type-archive-apartments .apartments__events .swiper-button-next {
    right: 50%;
    transform: translateX(calc(100% + 4px)) rotate(180deg);
  }

  .post-type-archive-apartments .apartments__events-list {
    overflow: visible;
  }

  .post-type-archive-apartments .apartments__events-list .event-card:hover .event-card__icon {
    bottom: 5px;
    width: 40px;
  }

  .post-type-archive-apartments .apartments__events-list .event-card__image-wrap {
    height: 191px;
  }

  .post-type-archive-apartments .apartments__events-list .event-card__time {
    font-size: 10px;
  }
}

@media (max-width: 389px) {
  #modal-video .video {
    height: calc(100vh - 50px);
  }
}

@media (hover: hover) {
  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.60001 12L5.60001 8L9.60001 4' stroke='%2318280E' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center no-repeat;
  }

  .swiper-button-next:hover::before,
  .swiper-button-prev:hover::before {
    width: 100%;
  }

  .header__lang a:hover {
    opacity: 1;
  }

  .home-event__events .event-card:hover .event-card__image {
    transform: scale(1.12);
  }

  .home-event__events .event-card:hover .event-card__title {
    color: var(--primary, #e6da91);
  }

  .home-event__events .event-card:hover .event-card__icon::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 12 11' fill='none'%3E%3Cpath d='M7.10556 1.06055L11.15 5.06055L7.10556 9.06055M11.15 5.06055H0.75' stroke='%2318280E' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
  }

  .home-event__events .event-card:hover .event-card__icon::before {
    width: 100%;
  }

  .modal-event-archive .close-button:hover::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.6805 11.6786L4.3266 4.32471M11.6735 4.32476L4.31958 11.6787' stroke='%2318280E' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
  }

  .modal-event-archive .close-button:hover::before {
    width: 100%;
  }

  .post-type-archive-apartments .apartments__events .swiper-button-next:hover::after,
  .post-type-archive-apartments .apartments__events .swiper-button-prev:hover::after {
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.60001 12L5.60001 8L9.60001 4' stroke='white' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center no-repeat;
  }

  .post-type-archive-apartments .apartments__events .swiper-button-next:hover::before,
  .post-type-archive-apartments .apartments__events .swiper-button-prev:hover::before {
    width: 100%;
  }
}

@media (any-hover: hover) {
  .btn:hover::after {
    width: 120%;
  }

  .btn.dark-bg:hover {
    color: var(--secondary);
  }

  .btn.white-bg:hover {
    color: var(--primary);
  }

  .btn.sand-bg:hover {
    color: var(--primary);
  }
}