@import "../fonts/times-now/stylesheet.css";
@import "../fonts/SuisseIntl/stylesheet.css";
@import "../fonts/fh-total-display-test-cdnfonts/stylesheet.css";
header#header {
  position: relative;
  z-index: 999;
}
header#header .top-header {
  background-color: #08131D;
  padding: 11px 0 8px;
  color: #A59E97;
  text-align: center;
  font-family: "Times Now";
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 21px;
  letter-spacing: 0.28px;
}
header#header .top-header a {
  font: inherit;
  color: inherit;
}
header#header .header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 23px 0;
}
header#header .header .logo {
  font-family: "Suisse-Int'l";
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  color: #CCC3BA;
}
@media screen and (max-width: 767px) {
  header#header .header .logo {
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  header#header .header .logo {
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
  }
}
header#header .header .logo a {
  font: inherit;
  color: inherit;
  text-decoration: inherit;
  letter-spacing: 3.5px;
}
header#header .header nav.main-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  header#header .header nav.main-menu {
    justify-content: center;
  }
}
header#header .header nav.main-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
}
header#header .header nav.main-menu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
header#header .header nav.main-menu ul a {
  font-family: "Suisse-Int'l";
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  color: #CCC3BA;
  letter-spacing: 2px;
}

footer#footer {
  padding: 30px 0 34px;
}
footer#footer > .container > .row {
  align-items: center;
}
footer#footer .logo {
  font-family: "Suisse-Int'l";
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  color: #CCC3BA;
}
@media screen and (max-width: 991px) {
  footer#footer .logo {
    text-align: center;
    margin-bottom: 30px;
  }
}
footer#footer .logo a {
  font: inherit;
  color: inherit;
  text-decoration: inherit;
  letter-spacing: 3.5px;
}
footer#footer nav.footer-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 94px;
}
@media screen and (max-width: 991px) {
  footer#footer nav.footer-menu {
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  footer#footer nav.footer-menu {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  footer#footer nav.footer-menu .item {
    width: 100%;
  }
}
footer#footer nav.footer-menu .label {
  font-family: "Suisse-Int'l";
  font-size: 8px;
  font-weight: 300;
  text-transform: uppercase;
  color: #A59E97;
  letter-spacing: 1.65px;
  margin-bottom: 9px;
}
@media screen and (max-width: 575px) {
  footer#footer nav.footer-menu .label {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  footer#footer nav.footer-menu .item-link {
    text-align: center;
  }
}
footer#footer nav.footer-menu .item-link a {
  font-family: "Suisse-Int'l";
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #CCC3BA;
  letter-spacing: 0.85px;
  text-decoration: none;
}

.horizontal-scrolling-items {
  display: flex;
  align-items: baseline;
  gap: 25px;
  width: 2180px;
  animation-name: infiniteScroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.horizontal-scrolling-items__item {
  display: flex;
  align-items: baseline;
  gap: 25px;
  white-space: nowrap;
  font-family: "Suisse-Int'l";
  font-size: 118px;
  font-weight: 300;
  color: #D6CDC4;
}
@media screen and (max-width: 1024px) {
  .horizontal-scrolling-items__item {
    font-size: 59px;
  }
}
.horizontal-scrolling-items__item .italic {
  font-family: "Times Now";
  font-weight: 600;
  font-style: italic;
  font-size: 150px;
}
@media screen and (max-width: 1024px) {
  .horizontal-scrolling-items__item .italic {
    font-size: 75px;
  }
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
section.about {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  section.about {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  section.about {
    padding-bottom: 60px;
  }
}
section.about .title {
  font-family: "Times Now";
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  color: #D6CDC4;
}
section.about .text {
  font-family: "FHTotalDisplay-Test";
  font-size: 32px;
  font-weight: 100;
  font-style: normal;
  color: #A59E97;
  max-width: 790px;
}
@media screen and (max-width: 991px) {
  section.about .text {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.about .text {
    font-size: 22px;
  }
}

section.accordion-wrap {
  margin-top: 76px;
  margin-bottom: 76px;
}
@media screen and (max-width: 767px) {
  section.accordion-wrap {
    margin-top: 60px;
  }
}
section.accordion-wrap .accordion {
  border-top: 1px solid #A59E97;
}
section.accordion-wrap .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #A59E97;
}
section.accordion-wrap .accordion-button {
  background: transparent;
  border: none;
  font-family: "Suisse-Int'l";
  font-size: 32px;
  font-weight: 200;
  font-style: normal;
  color: #D6CDC4;
  padding: 30px 0;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  section.accordion-wrap .accordion-button {
    font-size: 22px;
  }
}
section.accordion-wrap .accordion-button:hover, section.accordion-wrap .accordion-button:active, section.accordion-wrap .accordion-button:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
section.accordion-wrap .accordion-button:after {
  display: none;
}
section.accordion-wrap .accordion-body {
  padding-top: 15px;
  padding-bottom: 100px;
  font-family: "FHTotalDisplay-Test";
  font-weight: 100;
  font-style: normal;
  font-size: 32px;
  color: #A59E97;
}
@media screen and (max-width: 991px) {
  section.accordion-wrap .accordion-body {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  section.accordion-wrap .accordion-body {
    font-size: 22px;
    padding-bottom: 60px;
  }
}

section.contacts > .container {
  max-width: 100%;
}
section.contacts > .container > .row {
  gap: 52px;
}
section.contacts > .container > .row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 3 - 35px);
  padding-left: 0;
  padding-right: 0;
}
@media all and (min-width: 1025px) {
  section.contacts > .container > .row > div {
    width: calc(50% - 35px);
  }
}
@media print {
  section.contacts > .container > .row > div {
    width: calc(50% - 35px);
  }
}
section.contacts .image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  section.contacts .image.image_1 {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 1024px) {
  section.contacts .image.image_2 {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  section.contacts .image.image_2 {
    display: block !important;
  }
}
section.contacts .image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
section.contacts .contact {
  padding: 72px 0;
}
@media screen and (max-width: 1024px) {
  section.contacts .contact {
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
  }
}
@media screen and (max-width: 575px) {
  section.contacts .contact {
    flex: 0 0 100%;
    padding: 0 calc(var(--bs-gutter-x) * .5) !important;
  }
}
section.contacts .title {
  font-family: "Times Now";
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 46px;
  color: #D6CDC4;
}
@media screen and (max-width: 575px) {
  section.contacts .title {
    margin-bottom: 35px;
  }
}
section.contacts form {
  width: 100%;
}
section.contacts form label {
  font-family: "Suisse-Int'l";
  font-size: 8px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  color: #A59E97;
  margin: 0;
}
section.contacts form .control-item {
  position: relative;
  margin-bottom: 37px;
}
section.contacts form .control_field {
  padding: 14px 40px 19px 0;
  border: none;
  border-bottom: 1px solid #D6CDC4;
  font-family: "Suisse-Int'l";
  font-size: 10px;
  letter-spacing: 3px;
  color: #D6CDC4;
  width: 100%;
  height: auto;
  background: transparent;
  text-transform: uppercase;
}
section.contacts form .control_field::placeholder {
  font: inherit;
  color: inherit;
  opacity: 1;
}
section.contacts form [type=submit] {
  width: 100%;
  height: 50px;
  border: 1px solid #D6CDC4;
  background: transparent;
  color: #D6CDC4;
  font-family: "Suisse-Int'l";
  font-size: 10px;
  font-weight: 300;
}

section.section_header {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 40px);
  background-image: url(../images/room.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 91px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  section.section_header {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 575px) {
  section.section_header {
    padding-top: 110px;
  }
}
section.section_header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, #091520 0%, rgba(9, 21, 32, 0) 100%);
}
section.section_header .container {
  position: relative;
  height: 100%;
  z-index: 1;
}
section.section_header .container .row {
  height: 100%;
}
section.section_header .container .column-item > .inner {
  position: relative;
  height: 100%;
  width: 100%;
}
section.section_header .horizontal-scrolling-items {
  position: absolute;
  top: calc(40% - 225px / 2);
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  section.section_header .horizontal-scrolling-items {
    top: calc(68% - 225px / 2);
    z-index: 2;
  }
}
@media screen and (max-width: 575px) {
  section.section_header .horizontal-scrolling-items__item {
    color: #091520;
  }
}
section.section_header .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section.section_header .image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
section.section_header .get_notified {
  position: absolute;
  bottom: calc(60% - 225px - 129px / 2);
  left: 0;
}
@media screen and (max-width: 1024px) {
  section.section_header .get_notified {
    bottom: unset;
    top: 60%;
  }
}
@media screen and (max-width: 575px) {
  section.section_header .get_notified {
    position: relative;
    top: unset;
    bottom: unset;
    left: 0;
    margin-top: 40px;
  }
}
section.section_header .get_notified .title {
  font-family: "Times Now";
  font-size: 24px;
  color: #D6CDC4;
  margin-bottom: 6px;
  font-weight: 600;
  font-style: italic;
}
section.section_header .get_notified .subtitle {
  font-family: "Suisse-Int'l";
  font-size: 12px;
  color: #A59E97;
  margin-bottom: 15px;
  font-weight: 300;
}
section.section_header .get_notified form {
  display: flex;
  align-items: center;
  max-width: 356px;
  position: relative;
}
@media screen and (max-width: 575px) {
  section.section_header .get_notified form {
    max-width: 100%;
  }
}
section.section_header .get_notified form .control_field {
  padding: 19px 40px 19px 0;
  border: none;
  border-bottom: 1px solid #D6CDC4;
  font-family: "Suisse-Int'l";
  font-size: 10px;
  letter-spacing: 3px;
  color: #D6CDC4;
  width: 100%;
  height: auto;
  background: transparent;
  text-transform: uppercase;
}
section.section_header .get_notified form .control_field::placeholder {
  font: inherit;
  color: inherit;
  opacity: 1;
}
section.section_header .get_notified form [type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
}

section.gallery .owl-carousel .owl-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1.65;
  min-height: 200px;
  max-height: 500px;
  width: 100%;
}
section.gallery .owl-carousel .owl-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.gallery-instagram .container {
  max-width: 100%;
}
section.gallery-instagram .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
}
section.gallery-instagram .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.social {
  background: #060F18;
  padding: 34px 0 34px;
}
section.social .social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
section.social .social-list a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: #D6CDC4;
}
section.social .social-list .item .icon {
  text-align: center;
  margin-bottom: 16px;
}
section.social .social-list .item .icon img, section.social .social-list .item .icon svg {
  width: 20px;
  height: 20px;
}
section.social .social-list .item .name {
  font-family: "Suisse-Int'l";
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2.2px;
}

body {
  padding: 0;
  margin: 0;
  background-color: #091520;
}

.container {
  max-width: 1449px;
}

input, textarea, select, button {
  outline: none;
}

.message-error {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  font-size: 12px;
  font-family: "Suisse-Int'l";
  color: #FF0000;
}

.message-success {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  font-size: 12px;
  font-family: "Suisse-Int'l";
  color: #11a511;
}

/*# sourceMappingURL=styles.css.map */
