@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* Custom Reset */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, fieldset, form, label,
article, aside, figure, figcaption, footer, header,
menu, nav section {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
  line-height: 0;
}

/* BREAKPOINTS */
/* TEXTS */
body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #071d49;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h5, h6, .h6 {
  font-weight: bold;
}

h1, .h1 {
  font-size: 38px;
  letter-spacing: 1.3px;
}
@media only screen and (min-width: 1024px) {
  h1, .h1 {
    font-size: 50px;
  }
}

h2, .h2 {
  font-size: 34px;
  letter-spacing: 1.3px;
}
@media only screen and (min-width: 1024px) {
  h2, .h2 {
    font-size: 42px;
  }
}

h3, .h3 {
  font-size: 28px;
  letter-spacing: 1.3px;
}
@media only screen and (min-width: 1024px) {
  h3, .h3 {
    font-size: 34px;
  }
}

h4, .h4 {
  font-size: 20px;
  letter-spacing: 1.3px;
}
@media only screen and (min-width: 1024px) {
  h4, .h4 {
    font-size: 22px;
  }
}

h5, .h5 {
  font-size: 18px;
}
@media only screen and (min-width: 1024px) {
  h5, .h5 {
    font-size: 20px;
  }
}

h6, .h6 {
  font-size: 14px;
}
@media only screen and (min-width: 1024px) {
  h6, .h6 {
    font-size: 16px;
  }
}

p {
  padding-bottom: 15px;
}
p:last-child {
  padding-bottom: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.button {
  position: relative;
  letter-spacing: .8px;
  color: #071d49;
  text-transform: uppercase;
}
.button:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #071d49;
}
@media only screen and (min-width: 1024px) {
  .button:after {
    display: block;
    position: static;
    width: 20px;
    height: 20px;
    background: url("../images/star.svg") center center/contain no-repeat;
    margin-left: 18px;
    transition: transform .3s ease;
  }
}
@media only screen and (min-width: 1024px) {
  .button {
    display: flex;
  }
  .button:hover:after {
    transform: rotate(90deg);
  }
}

/*
* General styles
*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.ease {
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
@media screen and (min-width: 601px) {
  body.logged-in {
    padding-top: 46px;
  }
}
@media screen and (min-width: 783px) {
  body.logged-in {
    padding-top: 32px;
  }
}
@media screen and (max-width: 600px) {
  body.logged-in #header {
    padding-top: 46px;
  }
}
@media screen and (max-width: 600px) {
  body.logged-in #nav-trigger {
    top: 99px;
  }
}
@media screen and (min-width: 783px) {
  body.logged-in #nav-trigger {
    top: 97px;
  }
}
body.logged-in #nav-trigger.active {
  top: 97px;
}
@media screen and (min-width: 768px) {
  body.logged-in #nav-trigger.active {
    top: 143px;
  }
}
@media screen and (min-width: 783px) {
  body.logged-in #nav-trigger.active {
    top: 129px;
  }
}
body:not(.home) {
  padding-top: 90px;
}
body.page-template-features-amenities {
  padding-top: 82px;
}
@media only screen and (min-width: 1024px) {
  body.page-template-features-amenities {
    padding-top: 155px;
  }
}
body.no-scrolling {
  overflow: hidden;
}

main {
  overflow-x: hidden;
  flex: 1;
}

#home .gallery-section .gallery-section__pattern {
  display: none;
}
#home .cta-section .cta-section__item-title_style1 {
  max-width: 164px;
}

.container {
  margin: 0 auto;
  max-width: 1124px;
  padding: 0 23px;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.slick-dots {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
}
@media only screen and (min-width: 1024px) {
  .slick-dots {
    justify-content: flex-end;
  }
}
.slick-dots li button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  width: 20px;
  height: 20px;
  font-size: 0;
  line-height: 0;
}
.slick-dots li button svg path {
  transition: fill .3s ease-in-out;
  fill: #05122b;
}
.slick-dots li button:hover {
  cursor: pointer;
}
.slick-dots li button:hover svg path {
  fill: #9a4b22;
}
.slick-dots li.slick-active button svg path {
  fill: #9a4b22;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials__item-link {
  display: block;
  font-size: 18px;
  color: #fff;
  margin: 0 10px;
  transition: color .2s ease;
}
.socials__item-link:hover {
  color: #c29560;
}

.grecaptcha-badge {
  z-index: 999;
}

.ui-selectmenu-button {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  background: #fff;
  cursor: pointer;
  border: 1px solid #c29560;
  border-radius: 22px;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 15px;
  color: #081D49;
}
.ui-selectmenu-button .ui-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin-top: 0;
  transition: transform .3s ease;
}
.ui-selectmenu-button .ui-icon::before {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.ui-selectmenu-button[aria-expanded="true"] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.ui-selectmenu-button[aria-expanded="true"] .ui-icon {
  transform: translateY(-50%) rotate(180deg);
}

.ui-selectmenu-text {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}

.ui-selectmenu-menu {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
  margin: 0;
  padding: 0;
}
.ui-selectmenu-menu .ui-menu {
  max-width: 272px;
  border: 1px solid #c29560;
  border-top: 0;
  background: #fff;
  padding-bottom: 0;
  overflow: auto;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item {
  flex: 0 1 100%;
  border: none;
  background-color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 15px;
  color: #081D49;
  cursor: pointer;
  transition: background .3s ease;
  border-bottom: 1px solid #c29560;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item:last-child {
  border-bottom: 0;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item:hover {
  background: rgba(154, 75, 34, 0.5);
}
.ui-selectmenu-menu .ui-menu .ui-menu-item:before {
  display: none;
}

.ui-selectmenu-open {
  display: block;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

#map {
  height: 400px;
}

.active-marker {
  border-radius: 50%;
}

#home .gallery-filter__button {
  color: #fff;
}
#home .gallery-filter__button svg path {
  fill: #fff;
}

.frm_style_formidable-style.with_frm_style .frm_form_field.form-field {
  margin-bottom: 30px;
}
.frm_style_formidable-style.with_frm_style .frm_form_field.form-field input:not([type=file]):focus, .frm_style_formidable-style.with_frm_style .frm_form_field.form-field textarea:not([type=file]):focus {
  color: #fff;
  background: transparent;
  outline: none;
  box-shadow: none;
}
.frm_style_formidable-style.with_frm_style .frm_form_field:not(.frm_none_container, .frm_inline_container, .vertical_radio) {
  background: #05122b;
  border: 1px solid #c29560;
  border-radius: 30px;
  padding: 12px 20px;
}
.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container {
  display: flex;
  align-items: center;
}
.frm_style_formidable-style.with_frm_style .frm_form_field.frm_top_container .frm_primary_label {
  padding-bottom: 11px;
}
@media only screen and (min-width: 1024px) {
  .frm_style_formidable-style.with_frm_style .frm_form_field.phone-field {
    max-width: 317px;
    width: 100%;
  }
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_primary_label {
  flex: 0 0 90px;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: #c29560;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_primary_label .frm_required {
  font-size: 10px;
  vertical-align: top;
}
.frm_style_formidable-style.with_frm_style .frm_form_field input, .frm_style_formidable-style.with_frm_style .frm_form_field textarea {
  background: transparent;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: #fff;
}
.frm_style_formidable-style.with_frm_style .frm_form_field textarea {
  resize: none;
  padding: 0;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox,
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio {
  padding-bottom: 7px;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox:last-child,
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio:last-child {
  padding-bottom: 0;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox label,
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio label {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: #fff;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox input[type='checkbox'],
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox input[type="radio"],
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio input[type='checkbox'],
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio input[type="radio"] {
  background: #05122b;
  border: 1px solid #c29560;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox input[type='checkbox']:focus,
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox input[type="radio"]:focus,
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio input[type='checkbox']:focus,
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio input[type="radio"]:focus {
  box-shadow: none;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox input[type='checkbox'] {
  border-radius: 4px;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_checkbox input[type='checkbox']:before {
  box-shadow: inset 10px 10px #fff;
  clip-path: polygon(5% 34%, 0 55%, 40% 90%, 100% 6%, 90% 0%, 38% 72%);
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio input[type="radio"] {
  border-radius: 50%;
}
.frm_style_formidable-style.with_frm_style .frm_form_field .frm_opt_container .frm_radio input[type="radio"]:before {
  box-shadow: inset 10px 10px #c29560;
}
.frm_style_formidable-style.with_frm_style .frm_submit {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .frm_style_formidable-style.with_frm_style .frm_submit {
    text-align: initial;
  }
}
.frm_style_formidable-style.with_frm_style .frm_submit .frm_button_submit {
  background: #fff;
  border: 1px solid #c29560;
  border-radius: 30px;
  outline: none;
  box-shadow: none;
  padding: 10px 40px;
  transition: background .3s ease;
  font-family: "Jost", sans-serif;
  font-size: 22px;
  color: #071d49;
}
.frm_style_formidable-style.with_frm_style .frm_submit .frm_button_submit:hover {
  background: #c29560;
  border-color: #c29560;
  color: #071d49;
}

.header {
  padding: 44px 0;
  position: relative;
  z-index: 999;
  background: #fff;
}
.header .container {
  max-width: 1306px;
  position: relative;
}
.header__menu_right {
  padding-left: 60px;
}
.header__row {
  display: flex;
  align-items: center;
}
.header__phone {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__phone {
    display: block;
  }
}
.header__phone .phone {
  padding-right: 65px;
}
.header__phone .phone a {
  letter-spacing: .8px;
  color: #071d49;
  text-transform: uppercase;
  transition: color .3s ease;
}
@media only screen and (min-width: 1024px) {
  .header__phone .phone a:hover {
    color: #c29560;
  }
}
.header .logo {
  flex: 1;
  text-align: center;
  margin: 0 15px;
}
.header .logo a {
  display: inline-block;
  max-width: 234px;
  width: 100%;
  margin: 0 auto;
}
.header .logo svg {
  display: block;
  width: 100%;
  height: auto;
}
.header .logo svg .st0 {
  fill: #071d49;
}
.header .logo svg path:not(.logo-dot),
.header .logo svg rect:not(.logo-dot) {
  fill: #071d49;
}
.header__menu {
  display: none;
}
.header__menu_left {
  padding-right: 15px;
}
@media only screen and (min-width: 1024px) {
  .header__menu {
    display: flex;
  }
}
.header__menu .menu-item {
  padding-right: 60px;
}
.header__menu .menu-item a {
  letter-spacing: .8px;
  color: #071d49;
  text-transform: uppercase;
  transition: color .3s ease;
}
@media only screen and (min-width: 1024px) {
  .header__menu .menu-item a:hover {
    color: #c29560;
  }
}
.header__main-menu-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 0;
  height: 668px;
  background: url(../images/main_menu_pattern.svg) -774px center/auto 100% repeat-x;
  border-top: 2px solid #c29560;
  border-bottom: 2px solid #c29560;
}
@media only screen and (min-width: 1024px) {
  .header__main-menu-wrapper {
    justify-content: center;
    background-position: center center;
  }
}
.header__main-menu {
  background: #071d49;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  overflow: auto;
  transition: transform .3s ease;
}
.header__main-menu.active {
  transform: translateX(0);
}
.header__main-menu .main-menu {
  background: #071d49;
  border-radius: 50%;
  flex: 0 0 497px;
  height: 496px;
  overflow-y: auto;
  transform: translateX(-190px);
  padding: 75px 15px 75px 247px;
  scrollbar-width: none;
}
.header__main-menu .main-menu::-webkit-scrollbar {
  width: 0;
}
@media only screen and (min-width: 1024px) {
  .header__main-menu .main-menu {
    transform: translate(1px, 0);
    text-align: center;
    padding: 75px;
  }
}
.header__main-menu .menu-item {
  padding-bottom: 20px;
}
.header__main-menu .menu-item:last-child {
  padding-bottom: 0;
}
.header__main-menu .menu-item a {
  letter-spacing: .8px;
  color: #c29560;
  text-transform: uppercase;
  position: relative;
}
.header__main-menu .menu-item a:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c29560;
  transition: width .3s ease;
}
@media only screen and (min-width: 1024px) {
  .header__main-menu .menu-item a:hover:before {
    width: 100%;
  }
}
.header .nav-trigger {
  display: none;
  width: 50px;
  height: 30px;
}
.header .nav-trigger .trigger-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.header .nav-trigger .line {
  display: block;
  width: 100%;
  height: 2px;
  background: #c29560;
  transition: all .3s ease;
}
@media only screen and (min-width: 1024px) {
  .header .nav-trigger {
    display: block;
  }
  .header .nav-trigger:hover {
    cursor: pointer;
  }
  .header .nav-trigger:hover .line {
    background: #93714a;
  }
}
.header__cross {
  display: block;
  width: 22px;
  height: 22px;
  margin: 15px 0 20px auto;
  position: relative;
  transition: transform .3s ease;
}
.header__cross:before, .header__cross:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #c29560;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all .3s ease;
}
.header__cross:before {
  transform: rotate(45deg);
}
.header__cross:after {
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .header__cross {
    width: 29px;
    height: 29px;
  }
  .header__cross:hover {
    cursor: pointer;
    transform: scale(0.8);
  }
}
.header_sticky {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  background: #071d49;
  border-bottom: 2px solid #c29560;
}
.header_sticky .logo {
  text-align: initial;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .header_sticky .logo {
    text-align: center;
  }
}
.header_sticky .logo a {
  display: inline-block;
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}
.header_sticky .logo svg {
  display: block;
  width: 100%;
  height: auto;
}
.header_sticky .logo svg .st0 {
  fill: #fff;
}
.header_sticky .logo svg path:not(.logo-dot),
.header_sticky .logo svg rect:not(.logo-dot) {
  fill: #fff;
}
.header_sticky .header__phone .phone a {
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .header_sticky .header__phone .phone a:hover {
    color: #c29560;
  }
}
.header_sticky .nav-trigger {
  display: block;
}
.header_sticky .header__menu .menu-item a {
  letter-spacing: .8px;
  color: #fff;
  transition: color .3s ease;
}
@media only screen and (min-width: 1024px) {
  .header_sticky .header__menu .menu-item a:hover {
    color: #c29560;
  }
}

.footer {
  padding: 80px 0 30px;
  background: #05122b;
  position: relative;
  z-index: 2;
}
.footer .container {
  width: 100%;
  max-width: 1306px;
  margin: 0 auto;
  padding: 0 22px;
}
@media only screen and (min-width: 1024px) {
  .footer .container {
    padding: 0 25px;
  }
}
.footer__logo {
  max-width: 80px;
  margin: 0 auto 45px;
}
.footer__address {
  margin: 0 0 20px;
}
.footer__address .address {
  width: fit-content;
  margin: 0 auto;
}
.footer__address .address a {
  font-size: 17px;
  line-height: 25.5px;
  letter-spacing: .8px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  transition: color .3s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .footer__address .address a {
    display: flex;
    align-items: center;
    column-gap: 7px;
    width: 100%;
  }
}
.footer__address .address a:hover {
  color: #c29560;
}
.footer__address .address .address-line1, .footer__address .address .address-line2 {
  padding-bottom: 0;
}
.footer__phone {
  margin: 0 0 12px;
}
.footer__phone .phone {
  text-align: center;
}
.footer__phone .phone a {
  font-size: 17px;
  line-height: 25.5px;
  color: #fff;
  text-transform: uppercase;
  transition: color .3s ease-in-out;
}
.footer__phone .phone a:hover {
  color: #c29560;
}
.footer__socials {
  margin: 0 0 36px;
}
.footer__explore-link-box {
  text-align: center;
  margin: 0 0 125px;
}
.footer__explore-link {
  font-size: 17px;
  line-height: 25.5px;
  letter-spacing: 1.7px;
  color: #c29560;
  text-transform: uppercase;
  transition: color .3s ease-in-out;
}
.footer__explore-link:hover {
  color: #fff;
}
.footer__bottom-wrapper {
  display: grid;
  gap: 16px 0;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1024px) {
  .footer__bottom-wrapper {
    grid-template-columns: 2fr 1fr 2fr;
  }
}
.footer__saul-center-logo {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .footer__saul-center-logo {
    order: 2;
  }
}
.footer__saul-center-logo svg {
  max-width: 195px;
}
.footer__ada-logo svg {
  display: block;
}
.footer__copyright-box {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .footer__copyright-box {
    justify-content: start;
  }
}
.footer__copyright {
  font-size: 14px;
  color: #fff;
  line-height: 21px;
}
.footer__privacy-box {
  display: flex;
  align-items: center;
  column-gap: 20px;
  align-self: end;
}
@media only screen and (min-width: 1024px) {
  .footer__privacy-box {
    order: 3;
  }
}
.footer__privacy-link {
  font-size: 14px;
  color: #fff;
  line-height: 21px;
  transition: color .3s ease-in-out;
}
.footer__privacy-link:hover {
  color: #c29560;
}
.footer__privacy-link-box {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .footer__privacy-link-box {
    text-align: right;
  }
}

.sticky-footer {
  padding: 18px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  background: #05122b;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-footer svg {
  max-height: 32px;
}

.milton-popup {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background: rgba(5, 18, 43, 0.8);
}
.milton-popup.hidden {
  display: none;
}
.milton-popup__wrapper {
  position: relative;
  padding: 124px 20px 80px;
  margin: 0 15px;
  color: #071D49;
  text-align: center;
  background: #fff;
  border: 1px solid #c29560;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .milton-popup__wrapper {
    min-width: 560px;
    padding: 124px 80px 80px;
  }
}
.milton-popup__wrapper:before {
  content: '';
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  height: 116px;
  background: url(../images/top-pattern.svg) center center/auto 100% repeat-x;
}
.milton-popup__wrapper:after {
  content: '';
  position: absolute;
  top: 20px;
  left: 25px;
  right: 25px;
  height: 65px;
}
.milton-popup__pattern {
  display: block;
  position: absolute;
  top: 20px;
  left: 25px;
  right: 25px;
  width: 100%;
  height: auto;
}
.milton-popup__cross {
  position: absolute;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50px;
  top: 90px;
  width: 30px;
  height: 30px;
  background: transparent;
}
.milton-popup__cross span {
  position: relative;
  transition: transform .3s ease-in-out;
}
.milton-popup__cross span:before, .milton-popup__cross span:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21px;
  height: 2px;
  background: #c29560;
  transform-origin: center;
}
.milton-popup__cross span:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.milton-popup__cross span:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.milton-popup__cross:hover {
  cursor: pointer;
}
.milton-popup__cross:hover span {
  transform: scale(0.8);
}
.milton-popup__logo {
  display: block;
  max-width: 70px;
  width: 100%;
  height: 100%;
  margin: 0 auto 28px;
}
.milton-popup__logo img {
  width: 100%;
  height: 100%;
  display: block;
}
.milton-popup__title {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.milton-popup__copy {
  font-size: 17px;
  line-height: 26px;
  max-width: 400px;
  margin: 0 auto 32px;
}
.milton-popup__link {
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 1px;
  color: #071D49;
  text-transform: uppercase;
  padding-bottom: 5px;
  position: relative;
  transition: all .3s ease-in-out;
}
.milton-popup__link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #071D49;
  transition: all .3s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .milton-popup__link:hover {
    color: #c29560;
  }
  .milton-popup__link:hover:after {
    background: #c29560;
  }
}

.osano-cm-window .osano-cm-window__dialog {
  background: #071d49 !important;
  border-top: 1px solid #c29560 !important;
}
.osano-cm-window .osano-cm-link {
  color: #fff !important;
}
.osano-cm-window .osano-cm-content__message {
  line-height: 1.7;
}
.osano-cm-window .osano-cm-button--type_accept, .osano-cm-window .osano-cm-button--type_manage {
  background-color: #071d49 !important;
  border: 1px solid #c29560 !important;
  color: #c29560 !important;
}
.osano-cm-window .osano-cm-button--type_accept:hover, .osano-cm-window .osano-cm-button--type_manage:hover {
  background-color: #c29560 !important;
  border: 1px solid #c29560 !important;
  color: #071d49 !important;
}
.osano-cm-window .osano-cm-button--type_deny {
  background-color: #c29560;
  border: 1px solid #c29560;
  color: #071d49;
}
.osano-cm-window .osano-cm-button--type_deny:hover {
  background-color: #071d49 !important;
  border: 1px solid #c29560 !important;
  color: #c29560 !important;
}

/* Use sections within sections
<section>
	<section>

	</section>
</section>
*/
.page-template-thank-you #wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-template-thank-you #wrapper main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.thank-you-page {
  flex: 1;
  padding: 190px 0 310px;
  background-color: #071d49;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .thank-you-page {
    padding: 270px 0 110px;
  }
}
.thank-you-page__wrapper {
  max-width: 470px;
  width: 100%;
}
.thank-you-page__content {
  color: #fff;
  padding-bottom: 40px;
}
.thank-you-page__content h1, .thank-you-page__content .h1, .thank-you-page__content h2, .thank-you-page__content .h2, .thank-you-page__content h3, .thank-you-page__content .h3, .thank-you-page__content h4, .thank-you-page__content .h5, .thank-you-page__content h6, .thank-you-page__content .h6 {
  padding-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .thank-you-page__content h1, .thank-you-page__content .h1, .thank-you-page__content h2, .thank-you-page__content .h2, .thank-you-page__content h3, .thank-you-page__content .h3, .thank-you-page__content h4, .thank-you-page__content .h5, .thank-you-page__content h6, .thank-you-page__content .h6 {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .thank-you-page__content {
    padding-bottom: 75px;
  }
}
.thank-you-page__socials-title {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.thank-you-page .socials {
  justify-content: flex-start;
}
.thank-you-page__pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url(../images/pattern_1.svg) calc(50% - 140px) bottom/auto 100% repeat-x;
}
@media only screen and (min-width: 1024px) {
  .thank-you-page__pattern {
    height: 440px;
    top: 0;
    left: auto;
    right: 0;
    transform: translateX(calc(50% + 5px)) rotate(-90deg);
    transform-origin: bottom;
  }
}

.content-section {
  background: var(--bg-color-cs);
  padding: 55px 0 80px;
}
@media only screen and (min-width: 1024px) {
  .content-section {
    padding: 150px 0 175px;
  }
}
.content-section_neighborhood {
  padding: 90px 0 165px;
  margin-bottom: 75px;
  position: relative;
}
.content-section_neighborhood:after {
  content: '';
  position: absolute;
  bottom: -75px;
  left: 0;
  width: 100%;
  height: 185px;
  background: url(../images/pattern_4.svg) center center/auto 100% repeat-x;
}
@media only screen and (min-width: 1024px) {
  .content-section_neighborhood:after {
    height: 240px;
    bottom: -105px;
  }
}
@media only screen and (min-width: 1024px) {
  .content-section_neighborhood {
    padding: 90px 0 240px;
    margin-bottom: 105px;
  }
}
@media only screen and (min-width: 1024px) {
  .content-section_features-amenities {
    padding: 110px 0;
    margin-top: -38px;
  }
}
.content-section__img-box {
  padding-bottom: 36px;
}
.content-section__img {
  display: block;
  margin: 0 auto;
}
.content-section__title-box {
  text-align: center;
  padding-bottom: 30px;
}
.content-section__title-box_features-amenities {
  padding-bottom: 47px;
}
.content-section__title {
  font-weight: bold;
  letter-spacing: 1.3px;
  color: var(--text-color-cs);
  line-height: 45px;
  text-transform: uppercase;
}
.content-section__title_features-amenities {
  font-size: 34px;
  line-height: 40px;
}
@media only screen and (min-width: 1024px) {
  .content-section__title_features-amenities {
    font-size: 42px;
  }
}
.content-section__subtitle {
  color: var(--subtitle_color_cs);
  padding-top: 12px;
  font-weight: 500;
}
@media only screen and (min-width: 1024px) {
  .content-section__subtitle {
    padding-top: 12px;
  }
}
.content-section__content-box {
  color: var(--text-color-cs);
  max-width: 600px;
  margin: 0 auto;
}
.content-section__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}
@media only screen and (min-width: 768px) {
  .content-section__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
@media only screen and (min-width: 1024px) {
  .content-section__buttons {
    padding-top: 85px;
  }
}
.content-section__button {
  margin-bottom: 30px;
}
.content-section__button:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .content-section__button {
    margin: 0 37px;
  }
}

.pre-gallery-section {
  position: relative;
}
.pre-gallery-section__img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  .pre-gallery-section__img {
    height: 620px;
  }
}
.pre-gallery-section__pattern {
  display: block;
  height: 175px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
@media only screen and (min-width: 1024px) {
  .pre-gallery-section__pattern {
    height: 250px;
  }
}

.gallery-section {
  position: relative;
}
.gallery-section_style1 {
  padding: 155px 0 80px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section_style1 {
    padding: 230px 0 90px;
  }
}
.gallery-section_style1:before {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  max-height: 200px;
  background: #05122b;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .gallery-section_style1:before {
    max-height: 720px;
  }
}
.gallery-section_style2 {
  padding: 45px 0 90px;
  background: var(--background_color-gs);
}
@media only screen and (min-width: 1024px) {
  .gallery-section_style2 {
    padding: 85px 0 185px;
  }
}
.gallery-section__slider-arrow-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 30px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__slider-arrow-box {
    display: none;
  }
}
.gallery-section__slider-arrow {
  display: block;
}
.gallery-section__slider-arrow_next {
  transform: scale(-1, 1);
}
.gallery-section__slider {
  width: calc(100% + 46px);
  margin: 0 -23px 45px;
}
.gallery-section__slider .slick-dots {
  display: none;
}
.gallery-section__slider .slick-dots li button svg path {
  fill: var(--slider-dots-color-gs);
}
.gallery-section__slider .slick-dots li button:hover svg path {
  fill: #9a4b22;
}
.gallery-section__slider .slick-dots li.slick-active button svg path {
  fill: #9a4b22;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__slider .slick-dots {
    display: flex;
    position: relative;
    z-index: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-section__slider {
    width: 100%;
    margin: 0 0 40px;
  }
}
.gallery-section__slider-item-img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media only screen and (min-width: 580px) {
  .gallery-section__slider-item-img {
    height: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-section__content-box {
    display: flex;
    align-items: center;
    column-gap: 164px;
    padding: 80px 0;
    margin-top: -80px;
  }
}
.gallery-section__content-box_style2 {
  align-items: flex-start;
  padding: 40px 0;
  margin-top: -70px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__content-box_style2 {
    margin-top: -110px;
  }
}
.gallery-section__content-wrapper_style2 {
  padding-top: 100px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__content-wrapper_style2 {
    padding-top: 80px;
    flex: 1;
  }
}
.gallery-section__title {
  letter-spacing: 1.3px;
  color: #9a4b22;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__title {
    text-align: initial;
  }
}
.gallery-section__title_style2 {
  font-size: 22px;
  color: var(--accent-color-gs);
  text-align: initial;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__title_style2 {
    padding-bottom: 14px;
  }
}
.gallery-section__title_style2:after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--accent-color-gs);
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__title_style2:after {
    max-width: 400px;
    left: -80px;
  }
}
.gallery-section__text {
  max-width: 540px;
  text-align: center;
  margin: 0 auto;
}
.gallery-section__text_style2 {
  color: var(--text-color-gs);
  text-align: initial;
  padding-top: 35px;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__text_style2 {
    max-width: 300px;
    padding-top: 45px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-section__text {
    text-align: initial;
  }
}
.gallery-section__img-box {
  position: relative;
  width: fit-content;
  margin-left: 15px;
  margin-top: -2px;
}
@media only screen and (min-width: 480px) {
  .gallery-section__img-box {
    margin-left: 89px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img-box {
    display: block;
    margin-top: 0;
  }
}
.gallery-section__img-box_style1 {
  display: none;
}
.gallery-section__img-box_style1 svg {
  display: none;
}
.gallery-section__img-box_style1:before, .gallery-section__img-box_style1:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 50%;
  border: 2px solid #c29560;
}
.gallery-section__img-box_style1:before {
  width: 360px;
  height: 360px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img-box_style1:before {
    width: 400px;
    height: 400px;
  }
}
.gallery-section__img-box_style1:after {
  width: 440px;
  height: 440px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img-box_style1:after {
    width: 480px;
    height: 480px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img-box_style1 {
    display: block;
  }
}
.gallery-section__img-box_style2 svg {
  height: 340px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img-box_style2 svg {
    height: 340px;
    z-index: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img-box_style2 {
    margin-left: 90px;
  }
}
.gallery-section__pattern {
  position: absolute;
  top: -3px;
  height: 340px;
  background-color: var(--accent-color-gs);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='423' height='340' viewBox='0 0 423 340'%3E%3Cpath d='M620.3,476.3A42.3,42.3,0,0,0,578,434' transform='translate(-365.779 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E %3Cpath d='M518.592,374.592A84.592,84.592,0,0,0,434,290' transform='translate(-221.779 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M416.889,272.889A126.889,126.889,0,0,0,290,146' transform='translate(-77.779 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,476.3A42.3,42.3,0,0,1,44.3,434' transform='translate(379.405 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,374.592A84.592,84.592,0,0,1,86.592,290' transform='translate(337.109 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,272.889A126.889,126.889,0,0,1,128.889,146' transform='translate(294.813 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M44.3,171.185A169.185,169.185,0,0,1,213.481,2V171.185H2V2A169.185,169.185,0,0,1,171.185,171.185' transform='translate(210.221 -1.696)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1340.3,476.3A42.3,42.3,0,0,0,1298,434' transform='translate(-1297.26 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1238.592,374.592A84.593,84.593,0,0,0,1154,290' transform='translate(-1153.26 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1136.889,272.889A126.889,126.889,0,0,0,1010,146' transform='translate(-1009.261 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,476.3A42.3,42.3,0,0,1,764.3,434' transform='translate(-552.076 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,374.592A84.592,84.592,0,0,1,806.592,290' transform='translate(-594.372 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,272.889A126.889,126.889,0,0,1,848.888,146' transform='translate(-636.668 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M764.3,171.185A169.185,169.185,0,0,1,933.481,2V171.185H722V2A169.185,169.185,0,0,1,891.185,171.185' transform='translate(-721.26 -1.696)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578a42.3,42.3,0,0,0,42.3,42.3' transform='translate(379.405 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578a84.592,84.592,0,0,0,84.592,84.592' transform='translate(337.109 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578A126.889,126.889,0,0,0,128.889,704.889' transform='translate(294.813 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M620.3,578A42.3,42.3,0,0,1,578,620.3' transform='translate(-365.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M518.592,578A84.592,84.592,0,0,1,434,662.592' transform='translate(-221.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M416.889,578A126.889,126.889,0,0,1,290,704.889' transform='translate(-77.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M171.185,578A169.185,169.185,0,0,1,2,747.185V578H213.481V747.185A169.185,169.185,0,0,1,44.3,578' transform='translate(210.221 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1340.3,1052.3A42.3,42.3,0,0,0,1298,1010' transform='translate(-1297.26 -713.623)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1238.592,950.593A84.593,84.593,0,0,0,1154,866' transform='translate(-1153.26 -611.919)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1136.889,848.889A126.889,126.889,0,0,0,1010,722' transform='translate(-1009.261 -510.215)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,1052.3a42.3,42.3,0,0,1,42.3-42.3' transform='translate(-552.076 -713.623)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,950.593A84.592,84.592,0,0,1,806.592,866' transform='translate(-594.372 -611.919)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,848.889A126.889,126.889,0,0,1,848.889,722' transform='translate(-636.668 -510.215)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M764.3,747.185A169.185,169.185,0,0,1,933.481,578V747.185H722V578A169.185,169.185,0,0,1,891.185,747.185' transform='translate(-721.26 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E %3C/svg%3E");
  mask-position: calc(100% + 1px);
  mask-repeat: repeat-x;
  display: none;
}
@media only screen and (min-width: 480px) {
  .gallery-section__pattern {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-section__pattern {
    height: 340px;
  }
}
.gallery-section__pattern_left {
  transform: translateX(7px) translateY(1px);
  right: 100%;
}
.gallery-section__pattern_right {
  transform: translateX(-5px) rotate(180deg);
  right: unset;
  left: 100%;
}
.gallery-section__img {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  border-radius: 100%;
  border: 1px solid #c29560;
}
.gallery-section__img_style1 {
  width: 280px;
  height: 280px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img_style1 {
    width: 320px;
    height: 320px;
  }
}
.gallery-section__img_style2 {
  width: 260px;
  height: 260px;
  object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__img_style2 {
    width: 255px;
    height: 255px;
  }
}
.gallery-section__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 35px;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 50px;
  }
}
.gallery-section__button {
  margin-bottom: 35px;
}
.gallery-section__button:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .gallery-section__button {
    margin-bottom: 10px;
  }
}

.gallery-filter {
  overflow: hidden;
  padding: 22px 22px 0;
}
@media only screen and (min-width: 580px) {
  .gallery-filter {
    padding: 10px 10px 0;
  }
}
.gallery-filter__container {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
}
.gallery-filter__buttons {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media only screen and (min-width: 580px) {
  .gallery-filter__buttons {
    display: flex;
  }
}
.gallery-filter__select {
  display: flex;
  margin-bottom: 40px;
}
@media only screen and (min-width: 580px) {
  .gallery-filter__select {
    display: none;
  }
}
.gallery-filter__filter-btn {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #081D49;
  transition: 0.3s ease-in-out all;
}
.gallery-filter__filter-btn:before {
  content: '';
  position: absolute;
  transition: 0.3s ease-in-out all;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #081D49;
  opacity: 0;
}
.gallery-filter__filter-btn:hover, .gallery-filter__filter-btn.active {
  color: #9a4b22;
  cursor: pointer;
}
.gallery-filter__filter-btn:hover:before, .gallery-filter__filter-btn.active:before {
  opacity: 1;
  background-color: #9a4b22;
}
.gallery-filter__box {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
@media only screen and (min-width: 580px) {
  .gallery-filter__box {
    gap: 25px;
  }
}
.gallery-filter__item {
  width: 100%;
}
@media only screen and (min-width: 580px) {
  .gallery-filter__item {
    width: calc(33.33% - 16.66px);
  }
}
.gallery-filter__item img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
}
.gallery-filter .ajax-overlay--active img {
  transform: scale(0.9);
}
.gallery-filter .posts-list-box {
  margin-bottom: 30px;
}
.gallery-filter__back-to-top {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 150px;
  font-size: 15px;
  color: #081D49;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s ease-in-out all;
}
.gallery-filter__back-to-top:before {
  content: '';
  position: absolute;
  transition: 0.3s ease-in-out all;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #081D49;
}
.gallery-filter__back-to-top:hover {
  cursor: pointer;
  color: #9a4b22;
}
.gallery-filter__back-to-top:hover:before {
  background-color: #9a4b22;
}
.gallery-filter__row_style2, .gallery-filter__row_style3 {
  padding-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  .gallery-filter__row_style2, .gallery-filter__row_style3 {
    column-gap: 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery-filter__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
}
.gallery-filter__schedule-box {
  display: flex;
  justify-content: center;
}
.gallery-filter__schedule-btn-box {
  position: relative;
}
.gallery-filter__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--link-color);
  line-height: 1;
  letter-spacing: .85px;
  text-transform: uppercase;
  padding: 25px 34px;
  border: 1px solid #c29560;
  transition: background .3s ease, color .3s ease;
}
.gallery-filter__button svg path {
  fill: var(--link-color);
}
@media only screen and (min-width: 1024px) {
  .gallery-filter__button:hover {
    background: #c29560;
    color: #fff;
  }
  .gallery-filter__button:hover svg path {
    fill: #fff;
  }
}
.gallery-filter__button svg {
  transform: scale(-1, 1);
  margin-left: 15px;
}
.gallery-filter__button svg path {
  transition: fill .3s ease;
}
.gallery-filter__pattern {
  position: absolute;
  top: 0;
  height: 74px;
  background-image: url(../images/pattern_3.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.gallery-filter__pattern_left {
  right: 100%;
  background-position-x: right;
  transform: translateX(2px);
}
.gallery-filter__pattern_right {
  left: 100%;
}

.lb-nav a.lb-next {
  background: none !important;
}
.lb-nav a.lb-prev {
  background: none !important;
}

.lb-arrow-box {
  position: absolute;
  padding-bottom: 20px;
  top: 115%;
}
@media only screen and (min-width: 1260px) {
  .lb-arrow-box {
    top: 50%;
  }
  .lb-arrow-box:hover {
    cursor: pointer;
  }
}

.lb-prev-arrow-box {
  left: 20px;
  transform: translateY(-50%) rotate(90deg);
}
@media only screen and (min-width: 1260px) {
  .lb-prev-arrow-box {
    left: -110px;
  }
}

.lb-next-arrow-box {
  right: 20px;
  transform: translateY(-50%) rotate(-90deg);
}
@media only screen and (min-width: 1260px) {
  .lb-next-arrow-box {
    right: -110px;
  }
}

#lightboxOverlay {
  background-color: #fff;
  opacity: 1;
}

.lb-dataContainer {
  width: 0;
  height: 0;
  visibility: hidden;
}

.lb-close-btn {
  position: absolute;
  top: 1%;
  right: 1.1%;
}
@media only screen and (min-width: 1260px) {
  .lb-close-btn {
    right: 15%;
  }
}

.lightbox {
  padding-top: 40px;
  margin-top: 100px;
}
@media only screen and (min-width: 680px) {
  .lightbox {
    margin-top: 0;
    padding-top: 40px;
  }
}
.lightbox__pattern {
  position: absolute;
  top: -3px;
  height: 588px;
  background-color: #c29560;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='942.8' height='590' viewBox='0 0 942.8 590'%3E%3Cg id='Group_9799' data-name='Group 9799' transform='translate(727.343 -1185.954)'%3E%3Cg id='Group_9640' data-name='Group 9640' transform='translate(-748.409 1185.888)'%3E%3Cg id='Group_9175' data-name='Group 9175' transform='translate(22.066 1.066)'%3E%3Cpath id='Path_180' data-name='Path 180' d='M448,118.6A117.6,117.6,0,0,1,330.4,1' transform='translate(22.4 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_181' data-name='Path 181' d='M455.8,236.2C325.9,236.2,220.6,130.9,220.6,1' transform='translate(14.6 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_182' data-name='Path 182' d='M463.6,353.8C268.753,353.8,110.8,195.846,110.8,1' transform='translate(6.8 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_183' data-name='Path 183' d='M448,440.2A117.6,117.6,0,0,0,330.4,557.8' transform='translate(22.4 30.2)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_184' data-name='Path 184' d='M455.8,330.4c-129.9,0-235.2,105.3-235.2,235.2' transform='translate(14.6 22.4)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_185' data-name='Path 185' d='M463.6,220.6c-194.846,0-352.8,157.953-352.8,352.8' transform='translate(6.8 14.6)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_186' data-name='Path 186' d='M471.4,118.6C211.606,118.6,1,329.206,1,589H471.4V1H1C1,260.794,211.606,471.4,471.4,471.4' transform='translate(-1 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_9176' data-name='Group 9176' transform='translate(-255.943 1186.954)'%3E%3Cg id='Group_9175-2' data-name='Group 9175' transform='translate(0 0)'%3E%3Cpath id='Path_180-2' data-name='Path 180' d='M330.4,118.6A117.6,117.6,0,0,0,448,1' transform='translate(-330.4 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_181-2' data-name='Path 181' d='M220.6,236.2C350.5,236.2,455.8,130.9,455.8,1' transform='translate(-220.6 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_182-2' data-name='Path 182' d='M110.8,353.8C305.646,353.8,463.6,195.846,463.6,1' transform='translate(-110.8 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_183-2' data-name='Path 183' d='M330.4,440.2A117.6,117.6,0,0,1,448,557.8' transform='translate(-330.4 30.2)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_184-2' data-name='Path 184' d='M220.6,330.4c129.9,0,235.2,105.3,235.2,235.2' transform='translate(-220.6 22.4)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_185-2' data-name='Path 185' d='M110.8,220.6c194.846,0,352.8,157.953,352.8,352.8' transform='translate(-110.8 14.6)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_186-2' data-name='Path 186' d='M1,118.6c259.794,0,470.4,210.606,470.4,470.4H1V1H471.4C471.4,260.794,260.794,471.4,1,471.4' transform='translate(-1 -1)' fill='none' stroke='%23c29560' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  mask-position: calc(100% + 1px);
  mask-repeat: repeat-x;
  display: none;
}
@media only screen and (min-width: 1260px) {
  .lightbox__pattern {
    display: block;
  }
}
.lightbox__pattern_left {
  transform: translateX(0) translateY(6px);
  right: 92%;
}
.lightbox__pattern_right {
  transform: translateX(0) rotate(180deg) translateY(-7px);
  right: unset;
  left: 92%;
}
.lightbox .lb-image {
  object-fit: contain;
}
@media only screen and (min-width: 1260px) {
  .lightbox .lb-image {
    min-height: 595px;
    min-width: 1095px;
    object-fit: contain;
  }
}

.list-section {
  background: var(--background-color-ls);
  padding: 90px 0 60px;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .list-section {
    text-align: initial;
  }
}
@media only screen and (min-width: 1024px) {
  .list-section {
    padding: 132px 0 105px;
  }
}
@media only screen and (min-width: 1024px) {
  .list-section_style2 {
    padding: 132px 0 227px;
  }
}
.list-section__title-box {
  display: inline-flex;
  align-items: stretch;
  position: relative;
}
.list-section__title {
  letter-spacing: 1.3px;
  color: var(--title-color-ls);
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid #c29560;
  border-left: none;
}
.list-section__wrapper {
  max-width: 865px;
  margin: 0 auto;
}
.list-section__wrapper_style2 {
  max-width: 745px;
}
.list-section__list {
  list-style: none;
  padding-top: 65px;
  text-align: initial;
}
@media only screen and (min-width: 1024px) {
  .list-section__list_style2 {
    columns: 2;
    column-gap: 48px;
  }
}
.list-section__list-item {
  display: flex;
}
.list-section__list-item_style2 {
  display: block;
  break-inside: avoid-column;
}
.list-section__list-item_style2:before {
  content: '';
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-color-ls);
  border-radius: 50%;
  background: transparent;
  margin-right: 37px;
  box-sizing: border-box;
  transform: translateY(4px);
}
.list-section__list-item_style1 {
  padding-bottom: 36px;
}
@media only screen and (min-width: 1024px) {
  .list-section__list-item_style1 {
    padding-bottom: 42px;
  }
}
.list-section__list-item_style2 {
  display: flex;
  margin-top: 20px;
}
.list-section__list-item_style2:first-child {
  margin-top: 0;
}
.list-section__list-item-title {
  color: var(--accent-color-ls);
  margin-right: 16px;
  max-width: 100px;
  width: 100%;
  padding-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .list-section__list-item-title {
    max-width: unset;
    width: unset;
  }
}
.list-section__list-item-text {
  color: var(--text-color-ls);
}
.list-section__pattern {
  position: absolute;
  top: 0;
  height: 100%;
  background-image: url(../images/pattern_3.svg);
  background-size: auto calc(100% + 1px);
  background-repeat: repeat-x;
  border: 1px solid #c29560;
  border-left: none;
  border-right: none;
}
.list-section__pattern_left {
  right: 100%;
  background-position-x: right;
}
.list-section__pattern_right {
  left: 100%;
}

.tiwp {
  padding-bottom: 65px;
}
@media only screen and (min-width: 1024px) {
  .tiwp {
    padding-bottom: 135px;
  }
}
.tiwp__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .tiwp__row {
    flex-direction: row;
  }
}
.tiwp__img-box {
  max-width: 380px;
  height: 225px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .tiwp__img-box {
    height: 260px;
  }
}
.tiwp__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tiwp__pattern {
  position: absolute;
  top: 0;
  height: 225px;
  background-image: url(../images/pattern_2.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
@media only screen and (min-width: 1024px) {
  .tiwp__pattern {
    height: 260px;
  }
}
.tiwp__pattern_left {
  right: 100%;
  background-position-x: right;
}
.tiwp__pattern_right {
  left: 100%;
}

.cta-section {
  overflow: hidden;
}
.cta-section_style1 {
  background: var(--bg-ctas);
  border-top: 1px solid #c29560;
}
.cta-section .container {
  padding: 0;
}
.cta-section__section-img-box {
  position: relative;
}
.cta-section__section-img-box:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--bg-ctas);
}
.cta-section__section-img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .cta-section__section-img {
    height: 500px;
  }
}
@media only screen and (min-width: 1024px) {
  .cta-section__section-img {
    height: 620px;
  }
}
.cta-section__section-pattern-box {
  background: url("../images/pattern_4.svg") center center/auto 100% repeat-x;
  height: 172px;
  position: relative;
}
.cta-section__section-pattern-box:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 187px;
  background: var(--bg-ctas);
}
@media only screen and (min-width: 1024px) {
  .cta-section__section-pattern-box {
    height: 240px;
    margin-bottom: 40px;
  }
  .cta-section__section-pattern-box:after {
    height: 260px;
  }
}
.cta-section__row_style2, .cta-section__row_style3 {
  padding-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  .cta-section__row_style2, .cta-section__row_style3 {
    column-gap: 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .cta-section__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
}
.cta-section__item {
  display: flex;
  align-items: center;
  color: #9a4b22;
  padding: 60px 15px 15px;
  justify-content: center;
  margin-left: 0;
  flex-direction: column;
}
@media only screen and (min-width: 480px) {
  .cta-section__item {
    align-items: flex-end;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .cta-section__item {
    padding-top: 80px;
    justify-content: flex-start;
  }
}
.cta-section__item_style1 {
  display: block;
  color: #fff;
  text-align: center;
  padding: 65px 15px;
  border-top: 1px solid #c29560;
  margin-left: 0;
}
.cta-section__item_style1:first-child {
  border-top: none;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item_style1 {
    flex: 1 0 50%;
    padding: 107px 0 87px;
    border-top: none;
  }
  .cta-section__item_style1:nth-child(even) {
    border-left: 1px solid #c29560;
  }
}
.cta-section__item-text-box {
  padding-top: 50px;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .cta-section__item-text-box {
    padding-left: 43px;
    text-align: left;
  }
}
.cta-section__item-text-box_style1 {
  padding-top: 0;
  padding-left: 0;
}
.cta-section__item-img-box {
  position: relative;
}
.cta-section__item-img-box:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -17px;
  left: -17px;
  bottom: -17px;
  right: -17px;
  width: 171px;
  height: 171px;
  border: 2px solid #c29560;
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item-img-box:before {
    width: 199px;
    height: 199px;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
  }
}
.cta-section__item-img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 2px solid #c29560;
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item-img {
    width: 163px;
    height: 163px;
  }
}
.cta-section__item-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 27.5px;
  letter-spacing: normal;
  max-width: 190px;
  width: 100%;
  padding-bottom: 18px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item-title {
    text-align: left;
  }
}
.cta-section__item-title_style1 {
  max-width: 184px;
  margin: 0 auto;
  padding-bottom: 16px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item-title_style1 {
    padding-bottom: 27px;
  }
}
.cta-section__item-button {
  font-size: 15px;
  letter-spacing: .75px;
  color: #9a4b22;
  text-transform: uppercase;
  padding-bottom: 3px;
  transition: color .3s ease;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item-button {
    margin: 0;
  }
}
.cta-section__item-button:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #9a4b22;
  transition: background .3s ease;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item-button:hover {
    color: #220D02;
  }
  .cta-section__item-button:hover:after {
    background: #220D02;
  }
}
.cta-section__item-button_style1 {
  color: #fff;
  margin: 0 auto;
}
.cta-section__item-button_style1:after {
  background: #fff;
}
@media only screen and (min-width: 1024px) {
  .cta-section__item-button_style1:hover {
    color: #85AAAF;
  }
  .cta-section__item-button_style1:hover:after {
    background: #85AAAF;
  }
}
.cta-section__schedule-box {
  display: flex;
  justify-content: center;
}
.cta-section__schedule-btn-box {
  position: relative;
}
.cta-section__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #9a4b22;
  line-height: 1;
  letter-spacing: .85px;
  text-transform: uppercase;
  padding: 25px 34px;
  border: 1px solid #c29560;
  transition: background .3s ease, color .3s ease;
}
.cta-section__button_style1 {
  color: #fff;
}
.cta-section__button_style1 svg path {
  fill: #fff;
}
@media only screen and (min-width: 1024px) {
  .cta-section__button:hover {
    background: #c29560;
    color: #fff;
  }
  .cta-section__button:hover svg path {
    fill: #fff;
  }
}
.cta-section__button svg {
  transform: scale(-1, 1);
  margin-left: 15px;
}
.cta-section__button svg path {
  transition: fill .3s ease;
}
.cta-section__pattern {
  position: absolute;
  top: 0;
  height: 74px;
  background-image: url(../images/pattern_3.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.cta-section__pattern_left {
  right: 100%;
  background-position-x: right;
  transform: translateX(2px);
}
.cta-section__pattern_right {
  left: 100%;
}

.hero-section {
  background: var(--bg-hero-section);
}
@media only screen and (min-width: 1024px) {
  .hero-section {
    margin-bottom: 50px;
  }
}
.hero-section_style3 {
  padding: 140px 0 53px;
  position: relative;
}
.hero-section_style3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  height: 74px;
  background: url(../images/pattern-schedule.svg) center center/auto 100% repeat-x;
}
@media only screen and (min-width: 1024px) {
  .hero-section_style3 {
    padding: 220px 0 130px;
  }
}
.hero-section .container {
  padding: 0 12px;
}
@media only screen and (min-width: 1024px) {
  .hero-section .container {
    padding: 0 23px;
  }
}
.hero-section__box {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .hero-section__box {
    max-width: 870px;
    width: 100%;
    margin: 0 auto;
  }
}
.hero-section__box_mob {
  display: block;
  height: 290px;
  overflow: hidden;
}
.hero-section__box_mob img {
  height: 101%;
}
@media only screen and (min-width: 1024px) {
  .hero-section__box_mob {
    display: none;
  }
}
.hero-section__box_desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .hero-section__box_desktop {
    display: block;
  }
}
.hero-section__box_reversed .hero-section__pattern {
  position: absolute;
  z-index: 0;
  top: 0;
  height: 100%;
}
.hero-section__box_reversed .hero-section__pattern_right {
  background-image: url(../images/pattern_4.svg);
  z-index: 2;
  left: auto;
  right: 100%;
  transform: scale(-1, 1) translateX(78px);
}
.hero-section__box_reversed .hero-section__pattern_right:before {
  content: '';
  background: url(../images/hero_pattern_1.svg) center center/contain no-repeat;
  display: block;
  width: 313px;
  height: 313px;
  position: absolute;
  top: 0;
  left: -312px;
}
.hero-section__box_reversed .hero-section__pattern_left {
  left: 100%;
  transform: unset;
}
.hero-section__box svg {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-section__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section__img_style2 {
  height: 275px;
}
@media only screen and (min-width: 1024px) {
  .hero-section__img_style2 {
    position: absolute;
    top: 0;
    left: 96px;
    height: 101%;
    object-position: left;
  }
}
.hero-section__pattern {
  position: absolute;
  z-index: 0;
  top: 0;
  height: 100%;
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.hero-section__pattern_right {
  background-image: url(../images/pattern_4.svg);
  z-index: 2;
  left: 100%;
  transform: translateX(78px);
}
.hero-section__pattern_right:before {
  content: '';
  background: url(../images/hero_pattern_1.svg) center center/contain no-repeat;
  display: block;
  width: 313px;
  height: 313px;
  position: absolute;
  top: 0;
  left: -312px;
}
.hero-section__pattern_left {
  background-image: url(../images/pattern_4.svg);
  background-position-x: right;
  right: 100%;
  transform: scale(1, -1) translateX(160px);
}
@media only screen and (min-width: 1024px) {
  .hero-section__row {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-section__col {
    flex: 0 1 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-section__text-wrapper {
    max-width: 650px;
    width: 100%;
    margin-left: auto;
  }
}
.hero-section__text-box {
  padding: 114px 0 69px;
  font-size: 17px;
  font-weight: 500;
}
.hero-section__text-box h1 {
  line-height: 1.3;
  font-size: 34px;
}
@media only screen and (min-width: 680px) {
  .hero-section__text-box h1 {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-section__text-box h1 {
    font-size: 42px;
  }
}
.hero-section__text-box h2 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .hero-section__text-box {
    padding: 0;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}
.hero-section__text-box_style3 {
  max-width: 680px;
  width: 100%;
  font-weight: 400;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .hero-section__text-box_style3 {
    max-width: 680px;
  }
}
.hero-section__img-box {
  padding-top: 120px;
  overflow: hidden;
  position: relative;
}
.hero-section__img-box:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  background: url(../images/pattern_2.svg) 0 0/auto 100% repeat-x;
}
@media only screen and (min-width: 1024px) {
  .hero-section__img-box:before {
    height: 143px;
    top: -6px;
    transform: rotate(90deg) translateY(-100%);
    transform-origin: 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-section__img-box {
    padding-top: 0;
    padding-left: 96px;
    min-height: 350px;
  }
}
.hero-section__large-decor:before {
  height: 139px;
}

.page-template-virtual-tour .hero-section_style3:before {
  transform: rotate(0);
}

@media only screen and (min-width: 1024px) {
  #features-amenities .hero-section {
    margin-bottom: 0;
  }
}
#features-amenities .hero-section .container {
  padding: 0;
}

.home-hero {
  background: #071d49;
  padding: 107px 0 50px;
}
@media only screen and (min-width: 1024px) {
  .home-hero {
    padding: 90px 0 108px;
  }
}
.home-hero__img-box {
  height: 450px;
  background: url(../images/home-hero-pattern.svg) center center/auto calc(100% + 2px) repeat-x;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .home-hero__img-box {
    height: 550px;
  }
}
.home-hero__img-wrapper {
  margin: 0 auto;
  width: 667px;
  height: 667px;
  overflow: hidden;
  position: relative;
  top: 114px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 672px) {
  .home-hero__img-wrapper {
    left: 0;
    transform: translateX(0);
  }
}
@media only screen and (min-width: 1024px) {
  .home-hero__img-wrapper {
    width: 820px;
    height: 820px;
    top: 140px;
  }
}
.home-hero__img {
  display: block;
  width: 100%;
  height: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home-hero__text-box {
  border-bottom: 2px solid #c29560;
  position: relative;
  margin-top: -2px;
}
.home-hero__text-box:before {
  content: '';
  display: block;
  width: 100%;
  height: 70px;
  background: url(../images/pattern_5.svg) center center/auto calc(100% + 4px) repeat-x;
  border-top: 2px solid #c29560;
  border-bottom: 2px solid #c29560;
}
@media only screen and (min-width: 1024px) {
  .home-hero__text-box:before {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .home-hero__text-box {
    max-width: 824px;
    width: 100%;
    margin: 0 auto;
    border-top: 0;
    border-bottom: 0;
  }
}
.home-hero__title {
  font-size: 22px;
  letter-spacing: 1.3px;
  color: #c29560;
  text-align: center;
  text-transform: uppercase;
  padding: 30px 23px;
}
@media only screen and (min-width: 1024px) {
  .home-hero__title {
    border-left: 1px solid #c29560;
    padding: 15px 23px;
    border-top: 2px solid #c29560;
    border-bottom: 2px solid #c29560;
  }
}
.home-hero__pattern {
  position: absolute;
  z-index: 0;
  top: 0;
  height: 67px;
  background-image: url(../images/pattern_5.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.home-hero__pattern_left {
  right: 100%;
  background-position-x: right;
}
.home-hero__pattern_right {
  left: 100%;
}
.home-hero__pattern:before, .home-hero__pattern:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c29560;
}
.home-hero__pattern:before {
  top: 0;
}
.home-hero__pattern:after {
  bottom: 0;
}

.home-hero.full-image {
  padding-top: 0;
}
.home-hero.full-image .home-hero__img {
  height: 100%;
}
.home-hero.full-image .home-hero__img-wrapper {
  width: 100%;
  height: 100%;
  top: 0;
}

.section-404 {
  padding: 182px 0 100px;
}
@media only screen and (min-width: 1024px) {
  .section-404 {
    padding: 300px 0 125px;
  }
}
.section-404__content {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}
.section-404__content h1, .section-404__content .h1, .section-404__content h2, .section-404__content .h2, .section-404__content h3, .section-404__content .h3, .section-404__content h4, .section-404__content .h5, .section-404__content h6, .section-404__content .h6 {
  padding-bottom: 12px;
}
.section-404__content a {
  color: inherit;
  position: relative;
  transition: color .3s ease;
}
.section-404__content a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: background .3s ease;
}
@media only screen and (min-width: 1024px) {
  .section-404__content a:hover {
    color: #9a4b22;
  }
}

.hero-contact {
  padding: 96px 0 136px;
}
@media only screen and (min-width: 1024px) {
  .hero-contact {
    padding: 117px 0 88px;
  }
}
.hero-contact__wrapper {
  max-width: 915px;
  width: 100%;
  margin-left: auto;
  padding-left: 45px;
  position: relative;
}
@media only screen and (min-width: 375px) {
  .hero-contact__wrapper {
    width: 88%;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-contact__wrapper {
    max-width: 962px;
    padding-left: 92px;
  }
}
.hero-contact__title {
  letter-spacing: 1.3px;
  color: #9a4b22;
  text-transform: uppercase;
  padding-bottom: 24px;
  margin-bottom: 28px;
  position: relative;
}
.hero-contact__title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -45px;
  max-width: calc(100% + 45px);
  width: 100%;
  height: 1px;
  background: #9a4b22;
}
@media only screen and (min-width: 1024px) {
  .hero-contact__title:after {
    max-width: 420px;
    width: 100%;
    left: -92px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-contact__title {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-contact__info-row {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .hero-contact__info-col {
    flex: 0 1 50%;
  }
}
.hero-contact .address {
  padding-bottom: 37px;
}
.hero-contact .address__title {
  flex: 0 0 82px;
  font-weight: bold;
  color: #071d49;
  text-transform: uppercase;
  padding-bottom: 11px;
}
@media only screen and (min-width: 1024px) {
  .hero-contact .address__title {
    padding-bottom: 0;
    margin-right: 32px;
  }
}
.hero-contact .address a {
  color: #071d49;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: color .3s ease;
}
@media only screen and (min-width: 1024px) {
  .hero-contact .address a:hover {
    color: #9a4b22;
  }
}
.hero-contact .address .address-line1,
.hero-contact .address .address-line2 {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .hero-contact .address {
    display: flex;
  }
}
.hero-contact .phone {
  padding-bottom: 37px;
}
.hero-contact .phone__title {
  flex: 0 0 82px;
  font-weight: bold;
  color: #071d49;
  text-transform: uppercase;
  padding-bottom: 11px;
}
@media only screen and (min-width: 1024px) {
  .hero-contact .phone__title {
    padding-bottom: 0;
    margin-right: 32px;
  }
}
.hero-contact .phone .phone-number {
  color: #071d49;
  letter-spacing: .8px;
  transition: color .3s ease;
}
@media only screen and (min-width: 1024px) {
  .hero-contact .phone .phone-number:hover {
    color: #9a4b22;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-contact .phone {
    display: flex;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-contact .office-hours {
    display: flex;
  }
}
.hero-contact .office-hours__title {
  font-weight: bold;
  color: #071d49;
  text-transform: uppercase;
  padding-bottom: 11px;
}
@media only screen and (min-width: 1024px) {
  .hero-contact .office-hours__title {
    flex: 0 0 128px;
    padding-bottom: 0;
    margin-right: 32px;
  }
}
.hero-contact .office-hours__wrapper {
  flex: 1;
}
.hero-contact .office-hours__item {
  display: flex;
  column-gap: 20px;
  padding-bottom: 7px;
}
.hero-contact .office-hours__item:last-child {
  padding-bottom: 0;
}
@media only screen and (min-width: 375px) {
  .hero-contact .office-hours__item {
    column-gap: 38px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero-contact .office-hours__item {
    column-gap: 48px;
  }
}
.hero-contact .office-hours .day,
.hero-contact .office-hours .hour {
  display: block;
  color: #071d49;
  text-transform: uppercase;
}
.hero-contact .office-hours .day {
  flex: 0 0 108px;
}
.hero-contact__pattern {
  height: 260px;
  position: absolute;
  top: -55px;
  background-color: #9a4b22;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='423' height='340' viewBox='0 0 423 340'%3E%3Cpath d='M620.3,476.3A42.3,42.3,0,0,0,578,434' transform='translate(-365.779 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E %3Cpath d='M518.592,374.592A84.592,84.592,0,0,0,434,290' transform='translate(-221.779 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M416.889,272.889A126.889,126.889,0,0,0,290,146' transform='translate(-77.779 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,476.3A42.3,42.3,0,0,1,44.3,434' transform='translate(379.405 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,374.592A84.592,84.592,0,0,1,86.592,290' transform='translate(337.109 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,272.889A126.889,126.889,0,0,1,128.889,146' transform='translate(294.813 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M44.3,171.185A169.185,169.185,0,0,1,213.481,2V171.185H2V2A169.185,169.185,0,0,1,171.185,171.185' transform='translate(210.221 -1.696)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1340.3,476.3A42.3,42.3,0,0,0,1298,434' transform='translate(-1297.26 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1238.592,374.592A84.593,84.593,0,0,0,1154,290' transform='translate(-1153.26 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1136.889,272.889A126.889,126.889,0,0,0,1010,146' transform='translate(-1009.261 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,476.3A42.3,42.3,0,0,1,764.3,434' transform='translate(-552.076 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,374.592A84.592,84.592,0,0,1,806.592,290' transform='translate(-594.372 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,272.889A126.889,126.889,0,0,1,848.888,146' transform='translate(-636.668 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M764.3,171.185A169.185,169.185,0,0,1,933.481,2V171.185H722V2A169.185,169.185,0,0,1,891.185,171.185' transform='translate(-721.26 -1.696)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578a42.3,42.3,0,0,0,42.3,42.3' transform='translate(379.405 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578a84.592,84.592,0,0,0,84.592,84.592' transform='translate(337.109 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578A126.889,126.889,0,0,0,128.889,704.889' transform='translate(294.813 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M620.3,578A42.3,42.3,0,0,1,578,620.3' transform='translate(-365.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M518.592,578A84.592,84.592,0,0,1,434,662.592' transform='translate(-221.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M416.889,578A126.889,126.889,0,0,1,290,704.889' transform='translate(-77.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M171.185,578A169.185,169.185,0,0,1,2,747.185V578H213.481V747.185A169.185,169.185,0,0,1,44.3,578' transform='translate(210.221 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1340.3,1052.3A42.3,42.3,0,0,0,1298,1010' transform='translate(-1297.26 -713.623)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1238.592,950.593A84.593,84.593,0,0,0,1154,866' transform='translate(-1153.26 -611.919)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1136.889,848.889A126.889,126.889,0,0,0,1010,722' transform='translate(-1009.261 -510.215)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,1052.3a42.3,42.3,0,0,1,42.3-42.3' transform='translate(-552.076 -713.623)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,950.593A84.592,84.592,0,0,1,806.592,866' transform='translate(-594.372 -611.919)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,848.889A126.889,126.889,0,0,1,848.889,722' transform='translate(-636.668 -510.215)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M764.3,747.185A169.185,169.185,0,0,1,933.481,578V747.185H722V578A169.185,169.185,0,0,1,891.185,747.185' transform='translate(-721.26 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E %3C/svg%3E");
  mask-size: auto 100%;
  mask-position: calc(100% - 1px);
  mask-repeat: repeat-x;
}
@media only screen and (min-width: 1024px) {
  .hero-contact__pattern {
    height: 340px;
    top: -77px;
  }
}
.hero-contact__pattern_left {
  right: 100%;
}

.form-section {
  background: #071d49;
  padding: 57px 0 244px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .form-section {
    padding: 188px 0 118px;
  }
}
.form-section__wrapper {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .form-section__wrapper {
    margin: 0;
  }
}
.form-section__title {
  color: #c29560;
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 30px;
}
@media only screen and (min-width: 1024px) {
  .form-section__title {
    padding-bottom: 33px;
  }
}
.form-section__text {
  color: #fff;
  padding-bottom: 52px;
}
.form-section__pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 153px;
  background: url(../images/pattern_1.svg) 50% bottom/auto 100% repeat-x;
}
@media only screen and (min-width: 1024px) {
  .form-section__pattern {
    width: 100%;
    height: 101%;
    top: -1px;
    left: auto;
    right: 0;
    background: url(../images/pattern-contact.svg);
    transform-origin: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
  }
}
.form-section__form-box {
  color: #fff;
}
.form-section__form-box h1, .form-section__form-box .h1, .form-section__form-box h2, .form-section__form-box .h2, .form-section__form-box h3, .form-section__form-box .h3, .form-section__form-box h4, .form-section__form-box .h5, .form-section__form-box h6, .form-section__form-box .h6 {
  color: #c29560;
}
.form-section__field-box {
  margin-bottom: 30px;
  background: #05122b;
  border: 1px solid #c29560;
  border-radius: 30px;
  padding: 12px 20px;
}
.form-section__field-box:not(.form-section__field-box_textarea) {
  display: flex;
  align-items: center;
}
.form-section__field-box label {
  display: block;
  flex: 0 0 90px;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: #c29560;
}
.form-section__field-box label .required {
  font-size: 10px;
  color: #B94A48;
  vertical-align: top;
  padding-left: 3px;
}
@media only screen and (min-width: 1024px) {
  .form-section__field-box_phone {
    max-width: 317px;
    width: 100%;
  }
}
.form-section__field-box_textarea label {
  padding-bottom: 11px;
}
.form-section__field-box input, .form-section__field-box textarea {
  background: transparent;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: #fff;
}
.form-section__field-box input:focus, .form-section__field-box textarea:focus {
  color: #fff;
  background-color: transparent !important;
  outline: none;
  box-shadow: none;
}
.form-section__field-box textarea {
  display: block;
  width: 100%;
  resize: none;
  padding: 0;
}
.form-section__field-box input {
  flex: 1;
  padding-left: 10px;
}
@media only screen and (min-width: 1024px) {
  .form-section__field-box input[name="phone_number"] {
    max-width: 317px;
    width: 100%;
  }
}
.form-section__submit-field-box {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .form-section__submit-field-box {
    text-align: initial;
  }
}
.form-section__submit-field-box input[type='submit'] {
  background: #fff;
  border: 1px solid #c29560;
  border-radius: 30px;
  outline: none;
  box-shadow: none;
  padding: 10px 40px;
  transition: background .3s ease;
  font-family: "Jost", sans-serif;
  font-size: 22px;
  color: #071d49;
}
.form-section__submit-field-box input[type='submit']:hover {
  background: #c29560;
  border-color: #c29560;
  color: #071d49;
  cursor: pointer;
}

.booking-form {
  display: flex;
  flex-direction: column;
  padding: 40px 30px 150px;
  max-width: 1156px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .booking-form {
    flex-direction: row;
    padding: 70px 50px 190px;
  }
}

#booking-tour-form-box {
  width: 100%;
  background: #fff;
}
#booking-tour-form-box .cross {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 25px;
  height: 25px;
}
#booking-tour-form-box .cross:before, #booking-tour-form-box .cross:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: background-color .3s ease-in-out;
}
#booking-tour-form-box .cross:before {
  transform: rotate(45deg);
}
#booking-tour-form-box .cross:after {
  transform: rotate(135deg);
}
#booking-tour-form-box .cross:hover {
  cursor: pointer;
}
#booking-tour-form-box .cross:hover:before, #booking-tour-form-box .cross:hover:after {
  background: green;
}
#booking-tour-form-box .message {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
#booking-tour-form-box .select-another-date {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 16px;
  border-bottom: 1px solid green;
  color: green;
  transition: border-bottom-color .3s ease-in-out;
}
#booking-tour-form-box .select-another-date:hover {
  border-bottom-color: transparent;
}
#booking-tour-form-box .booking-tour-datepicker {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker {
  width: 100%;
  max-width: 460px;
  height: 100%;
  border: none;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: transparent;
  padding-bottom: 45px;
}
@media only screen and (min-width: 1024px) {
  #booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-header {
    padding-bottom: 54px;
  }
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar {
  border-collapse: separate;
  border-spacing: 5px;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar thead th {
  text-align: center;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar thead span {
  font-size: 13px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #071d49;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  #booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar thead span {
    font-size: 17px;
  }
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar tbody td {
  width: 60px;
  height: 45px;
  border: none;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-unselectable.ui-state-disabled {
  opacity: .5;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar tbody span.ui-state-default {
  background: transparent;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar tbody .ui-state-default {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 5px 0 0 5px;
  border: 1px solid #071d49;
  background: #FAE8D4;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: #000;
  transition: background-color .3s ease-in-out;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar tbody .ui-state-default.ui-state-active {
  background: #c29560;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-calendar tbody .ui-state-default.ui-state-hover {
  background: #c29560;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-title {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  color: #071d49;
  text-transform: uppercase;
  order: 2;
}
@media only screen and (min-width: 1024px) {
  #booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-title {
    font-size: 22px;
    line-height: 25px;
  }
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-prev, #booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-next {
  display: block;
  flex: 0 0 40px;
  height: 26px;
  background: url(../images/arrow.svg) center center/contain no-repeat;
  transition: filter .3s ease;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-prev.ui-state-hover, #booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-next.ui-state-hover {
  filter: brightness(0.8);
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-prev .ui-icon, #booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-next .ui-icon {
  font-size: 0;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-prev {
  order: 1;
}
#booking-tour-form-box .booking-tour-datepicker .ui-datepicker .ui-datepicker-next {
  order: 3;
  transform: scale(-1, 1);
}
#booking-tour-form-box .booking-tour-form {
  flex-direction: column;
  justify-content: center;
  display: none;
}
#booking-tour-form-box .booking-tour-form__main {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  margin: 0 0 30px;
}
#booking-tour-form-box .booking-tour-form__main label.half-width {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #booking-tour-form-box .booking-tour-form__main label.half-width {
    width: calc(50% - 10px);
  }
}
#booking-tour-form-box .booking-tour-form__main label.full-width {
  width: 100%;
}
#booking-tour-form-box .booking-tour-form__main label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #071d49;
  padding-bottom: 8px;
}
#booking-tour-form-box .booking-tour-form__main input, #booking-tour-form-box .booking-tour-form__main select {
  width: 100%;
  font-family: "adelle-sans", sans-serif;
  font-size: 16px;
  display: block !important;
  color: #000;
  padding: 0 0 6px 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #071d49;
  border-radius: 0;
  box-shadow: none;
}
#booking-tour-form-box .booking-tour-form__main input.input-error, #booking-tour-form-box .booking-tour-form__main select.input-error {
  border-bottom: 2px solid red;
}
#booking-tour-form-box .booking-tour-form__main #bedroom {
  display: block;
}
#booking-tour-form-box .booking-tour-form__main #bedroom-button {
  display: none !important;
}
#booking-tour-form-box .booking-tour-form__button button[type="submit"] {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "adelle-sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #c29560;
  text-transform: lowercase;
  background: transparent;
  padding: 14px 80px;
  border-radius: 44px;
  border: 2px solid #c29560;
  outline: none;
  box-shadow: none;
  transition: background .3s ease, color .3s ease;
}
#booking-tour-form-box .booking-tour-form__button button[type="submit"]:hover {
  background: #c29560;
  color: #fff;
  cursor: pointer;
}
#booking-tour-form-box .booking-tour-form__button button[type="submit"]:hover span {
  border-bottom-color: #fff;
}
#booking-tour-form-box .booking-tour-form__button button[type="submit"] span {
  border-bottom: 1px solid transparent;
  transition: border-bottom-color .3s ease-in-out;
}

#preloader {
  width: 100px;
  margin: 0 auto;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #D1DFFF;
  border-top: 8px solid #05122b;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  50% {
    border-top-width: 5px;
  }
  100% {
    transform: rotate(360deg);
  }
}
.booking-form.load {
  margin-top: 100px;
}

.decor-section {
  position: relative;
  padding: 45px 0 40px;
  background: var(--background_color-gs);
}
@media only screen and (min-width: 1024px) {
  .decor-section {
    padding: 45px 0 90px;
  }
}
.decor-section:before {
  content: '';
  position: absolute;
  top: 42%;
  width: 100%;
  height: 58%;
  z-index: 0;
  left: 0;
  background-color: #fff;
}
@media only screen and (min-width: 940px) {
  .decor-section:before {
    top: 506px;
    height: 674px;
  }
}
@media only screen and (min-width: 1024px) {
  .decor-section:before {
    top: 313px;
    height: 435px;
  }
}
.decor-section__content-box {
  display: flex;
  column-gap: 152px;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px 0;
  margin-top: -70px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .decor-section__content-box {
    flex-direction: row;
  }
}
.decor-section__content-wrapper {
  padding-top: 80px;
  max-width: 100%;
  width: 100%;
  padding-bottom: 80px;
}
@media only screen and (min-width: 1024px) {
  .decor-section__content-wrapper {
    max-width: 415px;
    padding-bottom: 0;
  }
}
.decor-section__title {
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding-bottom: 20px;
  color: #9a4b22;
  text-align: initial;
  font-size: 22px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .decor-section__title {
    padding-bottom: 14px;
  }
}
.decor-section__title:after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--accent-color-gs);
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .decor-section__title:after {
    left: -70px;
  }
}
.decor-section__text {
  max-width: 100%;
  color: var(--text-color-gs);
  text-align: initial;
  padding-top: 35px;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .decor-section__text {
    max-width: 330px;
  }
}
.decor-section__img-box {
  position: relative;
  display: block;
  margin-left: 10px;
  margin-top: -2px;
}
@media only screen and (min-width: 375px) {
  .decor-section__img-box {
    margin-left: 90px;
  }
}
.decor-section__img-box svg {
  height: 340px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.decor-section__img-box svg path {
  fill: var(--accent-color-gs);
}
.decor-section__pattern {
  position: absolute;
  top: -3px;
  height: 340px;
  background-color: var(--accent-color-gs);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='423' height='340' viewBox='0 0 423 340'%3E%3Cpath d='M620.3,476.3A42.3,42.3,0,0,0,578,434' transform='translate(-365.779 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E %3Cpath d='M518.592,374.592A84.592,84.592,0,0,0,434,290' transform='translate(-221.779 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M416.889,272.889A126.889,126.889,0,0,0,290,146' transform='translate(-77.779 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,476.3A42.3,42.3,0,0,1,44.3,434' transform='translate(379.405 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,374.592A84.592,84.592,0,0,1,86.592,290' transform='translate(337.109 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,272.889A126.889,126.889,0,0,1,128.889,146' transform='translate(294.813 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M44.3,171.185A169.185,169.185,0,0,1,213.481,2V171.185H2V2A169.185,169.185,0,0,1,171.185,171.185' transform='translate(210.221 -1.696)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1340.3,476.3A42.3,42.3,0,0,0,1298,434' transform='translate(-1297.26 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1238.592,374.592A84.593,84.593,0,0,0,1154,290' transform='translate(-1153.26 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1136.889,272.889A126.889,126.889,0,0,0,1010,146' transform='translate(-1009.261 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,476.3A42.3,42.3,0,0,1,764.3,434' transform='translate(-552.076 -306.807)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,374.592A84.592,84.592,0,0,1,806.592,290' transform='translate(-594.372 -205.104)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,272.889A126.889,126.889,0,0,1,848.888,146' transform='translate(-636.668 -103.4)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M764.3,171.185A169.185,169.185,0,0,1,933.481,2V171.185H722V2A169.185,169.185,0,0,1,891.185,171.185' transform='translate(-721.26 -1.696)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578a42.3,42.3,0,0,0,42.3,42.3' transform='translate(379.405 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578a84.592,84.592,0,0,0,84.592,84.592' transform='translate(337.109 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M2,578A126.889,126.889,0,0,0,128.889,704.889' transform='translate(294.813 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M620.3,578A42.3,42.3,0,0,1,578,620.3' transform='translate(-365.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M518.592,578A84.592,84.592,0,0,1,434,662.592' transform='translate(-221.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M416.889,578A126.889,126.889,0,0,1,290,704.889' transform='translate(-77.779 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M171.185,578A169.185,169.185,0,0,1,2,747.185V578H213.481V747.185A169.185,169.185,0,0,1,44.3,578' transform='translate(210.221 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1340.3,1052.3A42.3,42.3,0,0,0,1298,1010' transform='translate(-1297.26 -713.623)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1238.592,950.593A84.593,84.593,0,0,0,1154,866' transform='translate(-1153.26 -611.919)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M1136.889,848.889A126.889,126.889,0,0,0,1010,722' transform='translate(-1009.261 -510.215)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,1052.3a42.3,42.3,0,0,1,42.3-42.3' transform='translate(-552.076 -713.623)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,950.593A84.592,84.592,0,0,1,806.592,866' transform='translate(-594.372 -611.919)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M722,848.889A126.889,126.889,0,0,1,848.889,722' transform='translate(-636.668 -510.215)' fill='none' stroke='black' stroke-width='1'/%3E%3Cpath d='M764.3,747.185A169.185,169.185,0,0,1,933.481,578V747.185H722V578A169.185,169.185,0,0,1,891.185,747.185' transform='translate(-721.26 -408.511)' fill='none' stroke='black' stroke-width='1'/%3E %3C/svg%3E");
  mask-position: calc(100% + 1px);
  mask-repeat: repeat-x;
  display: none;
}
@media only screen and (min-width: 375px) {
  .decor-section__pattern {
    display: block;
  }
}
.decor-section__pattern_left {
  transform: translateX(7px) translateY(1px);
  right: 100%;
}
.decor-section__pattern_right {
  transform: translateX(6px) rotate(180deg) translateY(0px);
  right: unset;
  left: 100%;
}
.decor-section__img {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  border-radius: 100%;
  border: 1px solid var(--accent-color-gs);
  width: 260px;
  height: 260px;
  object-fit: cover;
}
.decor-section__content-box:nth-child(even) {
  margin-top: 2px;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  background: #fff;
  gap: 40px;
}
@media only screen and (min-width: 1024px) {
  .decor-section__content-box:nth-child(even) {
    align-items: center;
    max-width: 849px;
    flex-direction: row-reverse;
  }
}
.decor-section__content-box:nth-child(even) .decor-section__img-box {
  margin-right: 10px;
  margin-left: 0;
  margin-top: -3px;
}
@media only screen and (min-width: 375px) {
  .decor-section__content-box:nth-child(even) .decor-section__img-box {
    margin-right: 77px;
  }
}
@media only screen and (min-width: 1024px) {
  .decor-section__content-box:nth-child(even) .decor-section__img-box {
    margin-top: -8px;
  }
}
.decor-section__content-box:nth-child(even) .decor-section__img-box svg path {
  fill: #c29560;
}
.decor-section__content-box:nth-child(even) .decor-section__img {
  border-color: #c29560;
}
.decor-section__content-box:nth-child(even) .decor-section__pattern {
  background-color: #c29560;
}
@media only screen and (min-width: 1024px) {
  .decor-section__content-box:nth-child(even) .decor-section__title {
    padding-left: 90px;
  }
}
.decor-section__content-box:nth-child(even) .decor-section__title:after {
  max-width: 100%;
  background-color: #c29560;
  left: unset;
  right: 0;
}
@media only screen and (min-width: 1024px) {
  .decor-section__content-box:nth-child(even) .decor-section__title:after {
    right: -15px;
  }
}
.decor-section__content-box:nth-child(even) .decor-section__text {
  color: #05122b;
}
@media only screen and (min-width: 1024px) {
  .decor-section__content-box:nth-child(even) .decor-section__text {
    padding-left: 90px;
    max-width: 415px;
  }
}

.tours__container {
  max-width: 1120px;
  padding: 0 10px;
  margin: 0 auto 105px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 16px;
  justify-content: center;
}
.tours__item {
  width: 100%;
  max-width: 540px;
}
.tours__item:first-child {
  max-width: 100%;
}
.tours__title {
  font-size: 19px;
  color: #9a4b22;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1.3px;
}
.tours__content {
  color: #071d49;
  font-size: 17px;
  margin-bottom: 30px;
}
.tours__iframe-box {
  position: relative;
  height: auto;
  width: 100%;
  padding-top: 56.25%;
}
.tours__iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-section-nh {
  padding: 80px 0 170px 0;
}
.map-section-nh__row {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 680px) {
  .map-section-nh__row {
    flex-direction: row;
  }
}
.map-section-nh__reset-btn {
  width: fit-content;
  display: block;
  margin-top: auto;
  margin-left: auto;
  font-size: 17px;
  padding: 17px 35px;
  transition: all 0.3s ease-in-out;
}
.map-section-nh__reset-btn:hover {
  color: #c29560;
}
.map-section-nh__filter-box {
  background-color: #05122b;
  width: 100%;
  max-width: 100%;
  border: 2px solid #c29560;
  overflow-y: auto;
  max-height: 588px;
  scrollbar-width: thin;
  scrollbar-color: #c29560 rgba(194, 149, 96, 0.33);
}
@media only screen and (min-width: 680px) {
  .map-section-nh__filter-box {
    max-width: 340px;
  }
}
.map-section-nh__filter-box .filter-category {
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.map-section-nh__filter-box .parent.active .box-name {
  color: #c29560;
}
.map-section-nh__filter-box .box-name {
  border-bottom: 1px solid #c29560;
  padding: 17px 40px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.map-section-nh__filter-box .box-name:hover {
  cursor: pointer;
  color: #c29560;
}
.map-section-nh__filter-box .box-name .decor-plus {
  position: relative;
  width: 13px;
  height: 13px;
  min-width: 13px;
  cursor: pointer;
}
.map-section-nh__filter-box .box-name .decor-plus.active:before {
  transform: translatey(-50%) rotate(-90deg);
  opacity: 0;
}
.map-section-nh__filter-box .box-name .decor-plus.active:after {
  transform: translatey(-50%) rotate(0);
}
.map-section-nh__filter-box .box-name .decor-plus:before, .map-section-nh__filter-box .box-name .decor-plus:after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: .35s;
  width: 100%;
  height: 2px;
}
.map-section-nh__filter-box .box-name .decor-plus:before {
  transform: translatey(-50%);
}
.map-section-nh__filter-box .box-name .decor-plus:after {
  transform: translatey(-50%) rotate(90deg);
}
.map-section-nh__filter-box .children {
  display: none;
  border-bottom: 1px solid #c29560;
  font-size: 17px;
  padding: 17px 40px;
  max-height: 190px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c29560 rgba(194, 149, 96, 0.33);
}
.map-section-nh__filter-box .children .poi {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.map-section-nh__filter-box .children .poi:hover {
  color: #c29560;
  cursor: pointer;
}
.map-section-nh__filter-box .children .poi.active {
  color: #c29560;
}
.map-section-nh__filter-box .children .poi:last-child {
  margin-bottom: 0;
}
.map-section-nh__map-box {
  width: 100%;
}
.map-section-nh__map-box #map {
  min-height: 400px;
}
@media only screen and (min-width: 1024px) {
  .map-section-nh__map-box #map {
    min-height: 588px;
  }
}

.gm-style-iw button:focus-visible {
  outline: none !important;
}

.floor-hero {
  text-align: center;
  background-color: #05122b;
  padding: 130px 20px 0;
}
.floor-hero__title {
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}
@media only screen and (min-width: 480px) {
  .floor-hero__title {
    font-size: 34px;
  }
}
.floor-hero__subtitle {
  font-size: 17px;
  color: #c29560;
  margin-bottom: 40px;
  display: block;
}
@media only screen and (min-width: 480px) {
  .floor-hero__subtitle {
    font-size: 20px;
  }
}
.floor-hero__content {
  max-width: 482px;
  color: #fff;
  margin: 0 auto 70px;
}
.floor-hero__view-box {
  display: flex;
  justify-content: center;
}
.floor-hero__view-btn-box {
  position: relative;
}
.floor-hero__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--link-color-floor);
  line-height: 1;
  letter-spacing: .85px;
  text-transform: uppercase;
  padding: 25px 34px;
  border: 1px solid #c29560;
  transition: background .3s ease, color .3s ease;
}
.floor-hero__button svg path {
  fill: var(--link-color-floor);
}
@media only screen and (min-width: 1024px) {
  .floor-hero__button:hover {
    background: #c29560;
    color: #fff;
  }
  .floor-hero__button:hover svg path {
    fill: #fff;
  }
}
.floor-hero__button svg {
  transform: scale(-1, 1);
  margin-left: 15px;
}
.floor-hero__button svg path {
  transition: fill .3s ease;
}
.floor-hero__pattern {
  position: absolute;
  top: 0;
  height: 74px;
  background-image: url(../images/pattern_3.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.floor-hero__pattern_left {
  right: 100%;
  background-position-x: right;
  transform: translateX(2px);
}
.floor-hero__pattern_right {
  left: 100%;
}

#floor-plans {
  padding: 50px 0 145px;
  display: none;
}
@media only screen and (min-width: 1024px) {
  #floor-plans {
    padding: 100px 0 300px;
  }
}
#floor-plans.active {
  display: block;
}
#floor-plans .content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
#floor-plans .filters-section {
  margin-bottom: 60px;
}
#floor-plans .filters-row {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width: 1024px) {
  #floor-plans .filters-row {
    justify-content: center;
  }
}
#floor-plans #units-container {
  display: flex;
  flex-wrap: wrap;
  gap: 96px 28px;
}
#floor-plans .unit-template {
  width: 100%;
  border: 2px solid #c29560;
}
@media only screen and (min-width: 680px) {
  #floor-plans .unit-template {
    width: calc(50% - 14px);
  }
}
@media only screen and (min-width: 1024px) {
  #floor-plans .unit-template {
    width: calc(33% - 18.7px);
  }
}
#floor-plans .details {
  padding-bottom: 15px;
}
#floor-plans .units-result-section__count {
  display: none;
}
#floor-plans .unit-header {
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid #c29560;
}
#floor-plans .unit-header__content {
  font-size: 30px;
  font-weight: bold;
}
#floor-plans .unit-body {
  text-align: center;
  padding-top: 15px;
}
#floor-plans .unit-body .from {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 8px;
}
#floor-plans .unit-body img {
  width: 100%;
  margin: 10px 0 45px;
  height: 260px;
  padding: 0 15px;
  object-fit: contain;
}
#floor-plans .unit-body .button-container {
  border-top: 2px solid #c29560;
  margin-top: 24px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}
#floor-plans .unit-body .button-container .btn {
  transition: 0.3s all ease-in-out;
  background-color: #fff;
  padding: 11px 0;
  line-height: 50.5px;
  margin: 0 91px;
}
#floor-plans .unit-body .button-container .btn:hover {
  background-color: #c29560;
  cursor: pointer;
}
#floor-plans .unit-body .button-container .btn:hover .btn-link {
  color: #fff;
}
#floor-plans .unit-body .button-container .btn .btn-link {
  display: block;
  width: 100%;
  height: 100%;
  color: #c29560;
}
#floor-plans .unit-body .button-container:before, #floor-plans .unit-body .button-container:after {
  content: '';
  position: absolute;
  z-index: 10;
  bottom: -3px;
  height: 105%;
  width: 95px;
}
#floor-plans .unit-body .button-container:before {
  background: url(../images/unit-bg-l.svg);
  left: -2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
}
#floor-plans .unit-body .button-container:after {
  background: url(../images/unit-bg-l.svg);
  right: -2px;
  background-size: contain;
  transform: rotate(180deg);
  background-repeat: no-repeat;
  background-position-x: left;
  bottom: -2px;
}
#floor-plans .unit-body .button-container .btn {
  position: relative;
  z-index: 2;
}
#floor-plans .dropdown-list-wrapper {
  outline: 0;
  min-width: 100px;
  cursor: pointer;
  display: inline-block;
}
#floor-plans .dropdown-list-wrapper .dropdown-list {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: 15px;
  color: #fff;
  background-color: #fff;
}
#floor-plans .dropdown-list-wrapper .dropdown-list .dropdown-options {
  padding: 0 0 6px;
  position: absolute;
  display: block;
  width: 100%;
  top: calc(100% - 1px);
  opacity: 0;
  border: 2px solid #c29560;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  right: 0;
  background: #fff;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
#floor-plans .dropdown-list-wrapper .dropdown-list .dropdown-options .option {
  position: relative;
  display: block;
  cursor: pointer;
  border-bottom: 2px solid #c29560;
}
#floor-plans .dropdown-list-wrapper .dropdown-list .dropdown-options .option a {
  color: #000;
  display: block;
  padding: 3px 10px 6px 10px;
}
#floor-plans .dropdown-list-wrapper .dropdown-list .dropdown-options .option:last-child {
  border-bottom: none;
}
#floor-plans .dropdown-list-wrapper .dropdown-list.open .dropdown-list__trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#floor-plans .dropdown-list-wrapper .dropdown-list.open .arrow::before {
  transform: scaleY(-1);
  top: 13px;
}
#floor-plans .dropdown-list-wrapper .dropdown-list.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
#floor-plans .dropdown-list-wrapper .dropdown-list__trigger {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 5px;
  color: #081D49;
  border: 2px solid #c29560;
  border-radius: 30px;
  outline: none;
  padding: 13px 19px;
  transition: all 0.1s ease-in-out;
}
#floor-plans .dropdown-list-wrapper .dropdown-list__trigger.trigger-wide {
  min-width: 160px;
}
#floor-plans .dropdown-list-wrapper .dropdown-list__trigger .arrow {
  position: relative;
  height: 10px;
  width: 13px;
}
#floor-plans .dropdown-list-wrapper .dropdown-list__trigger .arrow:before {
  content: url(../images/select-arrow.svg);
  width: 10px;
  height: 5px;
  transition: 0.3s all ease-in-out;
  position: absolute;
  right: 0;
  top: -7px;
}
#floor-plans .filter-label {
  font-size: 13px;
  line-height: 50px;
  color: #081D49;
}
#floor-plans .submit-group {
  align-self: end;
  order: 3;
}
@media only screen and (min-width: 680px) {
  #floor-plans .submit-group {
    order: unset;
  }
}
#floor-plans .order-2 {
  order: 2;
}
@media only screen and (min-width: 680px) {
  #floor-plans .order-2 {
    order: unset;
  }
}
#floor-plans #submit-search-btn {
  font-size: 22px;
  background-color: #c29560;
  border: 2px solid #c29560;
  cursor: pointer;
  border-radius: 30px;
  padding: 7px 33px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
#floor-plans #submit-search-btn:hover {
  background-color: #071d49;
}
#floor-plans .price-divider {
  display: inline-block;
  padding: 0 10px;
}

#map-section {
  display: none;
  padding: 50px 0 145px;
}
@media only screen and (min-width: 1024px) {
  #map-section {
    padding: 100px 0 300px;
  }
}
#map-section.active {
  display: block;
}
#map-section iframe {
  width: 100%;
  height: 430px;
}
@media only screen and (min-width: 1024px) {
  #map-section iframe {
    height: 686px;
  }
}

.page-template-floor-plans .lightbox-template .container {
  max-width: 1306px;
}
.page-template-floor-plans .lightbox-template .lightbox-header {
  background: #05122b;
  padding: 33px 0 43px;
}
.page-template-floor-plans .lightbox-template .lightbox-header .fp-close-icon {
  padding-bottom: 80px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-header .fp-close-icon {
    padding-bottom: 20px;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-header .close-link {
  display: flex;
  align-items: center;
  padding-left: 42px;
  position: relative;
  font-size: 17px;
  letter-spacing: 0.8px;
  color: #fff;
  text-transform: uppercase;
}
.page-template-floor-plans .lightbox-template .lightbox-header .close-link svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform .3s ease;
}
.page-template-floor-plans .lightbox-template .lightbox-header .close-link svg path {
  fill: #fff;
}
.page-template-floor-plans .lightbox-template .lightbox-header .close-link:after {
  content: '';
  display: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-header .close-link:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: #fff;
    width: 32px;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-header .close-link:hover svg {
    transform: translateX(-20px) translateY(-50%);
  }
}
.page-template-floor-plans .lightbox-template .lightbox-header .title {
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.8px;
  color: #c29560;
  text-align: center;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-header .title {
    font-size: 42px;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-header__content-info {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.page-template-floor-plans .lightbox-template .lightbox-header__content-info p {
  border-right: 1px solid #fff;
  padding: 0 5px 0;
}
.page-template-floor-plans .lightbox-template .lightbox-header__content-info p:last-child {
  border-right: 0;
}
.page-template-floor-plans .lightbox-template .lightbox-body {
  padding: 65px 0 130px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body {
    padding: 50px 0 185px;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .container {
  max-width: 1080px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body__content {
    display: flex;
    column-gap: 100px;
  }
}
@media only screen and (min-width: 1366px) {
  .page-template-floor-plans .lightbox-template .lightbox-body__content {
    column-gap: 60px;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .left-col {
  padding-bottom: 115px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .left-col {
    flex: 0 1 440px;
    padding-bottom: 0;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .left-col img {
  display: block;
  max-width: 75%;
  width: 100%;
  margin: 0 auto;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .left-col img {
    max-width: unset;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col {
    flex: 1;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col table {
  width: 100%;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col thead {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col thead {
    display: table-header-group;
    border-bottom: 2px solid #c29560;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col thead th {
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding-bottom: 12px;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col .info-table-wrapper {
  padding-bottom: 75px;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr {
  display: flex;
  flex-direction: column;
  border: 2px solid #c29560;
  margin-bottom: 30px;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr {
    display: table-row;
    border: 0;
    border-bottom: 1px solid #c29560;
  }
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr:last-child {
    border-bottom: 0;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 25px;
  padding: 25px 15px;
  border-bottom: 1px solid #c29560;
}
@media only screen and (min-width: 360px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td {
    display: table-cell;
    border-bottom: 0;
    padding: 30px 0;
  }
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td:first-child {
    padding-left: 17px;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td span {
  letter-spacing: .8px;
  text-transform: uppercase;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td span:first-child {
  flex: 0 0 85px;
  font-size: 13px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td span:first-child {
    display: none;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td span:nth-child(2) {
  flex: 0 0 105px;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td:last-child {
  border-bottom: 0;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td .btn-simple {
  display: flex;
  gap: 38px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td .btn-simple {
    justify-content: flex-end;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td .map-link-wrapper {
  display: flex;
  justify-content: end;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td .link {
  font-size: 15px;
  letter-spacing: .8px;
  color: #9a4b22;
  text-transform: uppercase;
  transition: color .3s ease;
  position: relative;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td .link:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #9a4b22;
  position: absolute;
  left: 0;
  bottom: -3px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td .link:hover {
    color: #220D02;
  }
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col tbody tr td .link:hover:after {
    background: #220D02;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col .buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col .buttons-container {
    gap: 50px;
  }
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col .buttons-container .link {
  font-size: 15px;
  letter-spacing: .8px;
  color: #05122b;
  text-transform: uppercase;
  transition: color .3s ease;
  position: relative;
}
.page-template-floor-plans .lightbox-template .lightbox-body .right-col .buttons-container .link:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #05122b;
  position: absolute;
  bottom: -3px;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col .buttons-container .link:hover {
    color: #7281A0;
  }
  .page-template-floor-plans .lightbox-template .lightbox-body .right-col .buttons-container .link:hover:after {
    background: #7281A0;
  }
}
.page-template-floor-plans .lightbox-map {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 18, 43, 0.85);
}
.page-template-floor-plans .lightbox-map.hidden {
  display: none;
}
.page-template-floor-plans .lightbox-map .lightbox-map-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-floor-plans .lightbox-map .iframe-wrapper {
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .page-template-floor-plans .lightbox-map .iframe-wrapper {
    width: 80vw;
    height: 80vh;
  }
}
.page-template-floor-plans .lightbox-map .iframe-wrapper .map-close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  display: block;
  background: #000;
  color: #fff;
  padding: 7px 7px 4px 8px;
  font-weight: 600;
}
.page-template-floor-plans .lightbox-map .iframe-wrapper iframe {
  border: none;
  background-color: #fff;
  width: 100%;
  height: 100%;
  max-height: 900px;
}
