@import url(https://fonts.googleapis.com/css?family=Lora|Montserrat:300,400);@charset "UTF-8";
body.active {
  overflow: hidden;
}

.navigation-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: fixed;
  z-index: 3;
  top: 0;
  height: 0;
  transition: 0.4s ease;
}
.navigation-wrapper.active {
  height: 100vh;
}
.navigation-wrapper.hover-white:hover .navigation {
  background: white;
}
.navigation-wrapper.hover-white:hover .navigation .nav-item {
  color: #C8C8C8 !important;
}

.navigation {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
  padding: 0 10%;
  color: #9A9A9A;
  background-color: transparent;
  justify-content: space-between;
  font-size: 15px;
  transition: background-color 0.4s ease, top 0.4s ease;
}
.navigation .divider {
  display: none;
}
.navigation .gold-button {
  color: #ffffff;
  background-color: #D2AB67;
  display: none;
  margin: 25px auto;
}
.navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.navigation ul li {
  display: inline-block;
}

#mobile-menu {
  display: none;
}

#navigation-backdrop {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
  background-color: #ffffff;
  height: 45px;
  transition: box-shadow 0.4s ease, top 0.4s ease;
}
#navigation-backdrop .gold-button {
  display: none;
  background: #D2AB67;
  color: white;
  position: absolute;
  right: 24px;
  top: calc(50% - 28px);
}

#contact, #social {
  height: 45px;
  line-height: 45px;
  display: flex;
}

#contact .items {
  height: 100%;
}
#contact .items .info {
  vertical-align: middle;
}
#contact .items img {
  position: relative;
  top: 0.1rem;
}
#contact .items:not(:first-child) img {
  padding-left: 30px;
  padding-right: 10px;
}

#social .social-icon {
  vertical-align: middle;
}
#social .social-icon:not(:last-child) {
  padding-right: 25px;
}
#social .social-icon > a > svg {
  fill: #C8C8C8;
  vertical-align: middle;
}

#language {
  margin-left: 50px;
  position: relative;
  text-transform: uppercase;
}
#language:after {
  position: absolute;
  left: 50%;
  bottom: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  content: " ";
  background-image: url("/assets/arrow-down.svg");
  height: 4px;
  width: 12px;
}
#language .language-picker {
  position: absolute;
  line-height: 2em;
  background-color: transparent;
  padding: 1em 2em 0 !important;
  left: -3em;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: 0.4s ease;
}
#language .language-picker li {
  text-align: center;
  padding: 1em;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
}
#language:hover .language-picker {
  background-color: #ffffff;
  opacity: 1;
  height: auto;
}

#pages {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  height: 120px;
  line-height: 120px;
  width: 100%;
  transition: height 0.4s ease;
}
#pages .items {
  flex-grow: 1;
}
#pages .items > ul {
  display: flex;
  justify-content: flex-end;
}
#pages .items .nav-item {
  display: inline-block;
  color: #ffffff;
  padding: 0 16px;
  line-height: 120px;
  transition: line-height 0.4s ease;
}
#pages .items .nav-item .nav-item-inner {
  transition: color 0.4s ease;
}
#pages .items .nav-item .nav-item-inner:hover, #pages .items .nav-item.active {
  color: #0066B3;
}
#pages .items .nav-item .nav-item-inner:hover .nav-item-inner, #pages .items .nav-item.active .nav-item-inner {
  position: relative;
}
#pages .items .nav-item .nav-item-inner:hover .nav-item-inner:after, #pages .items .nav-item.active .nav-item-inner:after {
  position: absolute;
  top: 0;
  right: 50%;
  display: block;
  content: " ";
  border-top: 25px solid #ffffff;
  width: 1px;
}
#pages .items .nav-item:first-child {
  padding-left: 0;
}
#pages .items .nav-item:last-child {
  padding-right: 0;
}

.logo {
  transition: 0.4s ease;
}
.logo img {
  height: 65px;
  vertical-align: middle;
}

@media screen and (max-width: 1366px) {
  .navigation {
    font-size: 13px;
  }

  #contact .items:not(:first-child) img {
    padding-left: 30px;
  }

  #pages .items .nav-item {
    padding: 0 8px;
  }
}
@media screen and (min-width: 1240px) {
  .navigation.scrolled {
    background-color: #ffffff;
  }
  .navigation.scrolled #pages {
    height: 85px;
    line-height: 85px;
  }
  .navigation.scrolled #pages .items .nav-item {
    line-height: 85px;
  }
  .navigation.scrolled #pages .items .nav-item:not(.active) {
    color: #C8C8C8;
  }
  .navigation.scrolled #pages .items .nav-item.active .nav-item-inner:after {
    border-color: #D2AB67;
  }
}
@media screen and (min-width: calc(1240px + 1px)) {
  .navigation-wrapper.scrolled:not(.page-home) + .main-container {
    margin-top: 130px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#mobile-menu .gold-button {
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
}
@media (max-width: 339px) {
  #mobile-menu .gold-button {
    padding: 18px 16px;
  }
}
#mobile-menu .scrolled-only {
  display: none;
  flex: 0 0 auto;
  opacity: 0;
  margin: auto 8px;
  width: 56px;
  height: 56px;
  background: #D2AB67;
  cursor: pointer;
}
#mobile-menu .scrolled-only img {
  width: 24px;
  height: 24px;
  margin: 16px;
}
#mobile-menu .scrolled-only.active {
  background: #5698D2;
}
#mobile-menu.scrolled {
  transition: 0.4s ease-in-out;
}
#mobile-menu.scrolled > * {
  transition: 0.4s ease-in-out;
}
#mobile-menu.scrolled > a, #mobile-menu.scrolled #hamburger {
  display: none;
}
#mobile-menu.scrolled .scrolled-only {
  display: block;
  -webkit-animation: fadeIn 0.4s forwards;
          animation: fadeIn 0.4s forwards;
}
#mobile-menu.scrolled .gold-button {
  flex-grow: 1;
  margin-right: 8px;
}

@media screen and (max-width: 1240px) {
  .navigation {
    min-height: 100vh;
  }

  #navigation-backdrop {
    height: auto;
    padding: 0 24px;
    z-index: 4;
  }
  #navigation-backdrop.active {
    box-shadow: none;
  }
  #navigation-backdrop .small-footer {
    height: 0;
    text-align: right;
    overflow: hidden;
    transition: 0.4s ease-in-out;
  }
  #navigation-backdrop .collapsible-section {
    height: 0;
    background: #EEF4F9;
    margin-right: -24px;
    padding: 0 24px;
    margin-left: -24px;
    overflow: hidden;
    transition: 0.4s ease-in-out;
  }
  #navigation-backdrop .collapsible-section .content {
    padding: 16px 0;
    text-align: center;
    line-height: 1.8em;
  }
  #navigation-backdrop .collapsible-section .content a {
    color: #5698D2;
  }
  #navigation-backdrop.scrolled .small-footer {
    color: #5698D2;
    line-height: 16px;
    height: 24px;
    padding-bottom: 8px;
  }
  #navigation-backdrop.scrolled .small-footer img {
    margin-right: 8px;
  }

  #mobile-menu {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 85px;
    position: relative;
  }
  #mobile-menu img {
    height: 55px;
    vertical-align: middle;
  }

  #hamburger {
    cursor: pointer;
    margin-left: auto;
    height: 25px;
    width: 25px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  #hamburger > div {
    position: absolute;
    width: 100%;
    border-top: 1px solid #C8C8C8;
    transition: 0.4s ease;
  }
  #hamburger > div:nth-child(2) {
    bottom: 50%;
  }
  #hamburger > div:nth-child(3) {
    bottom: 0;
  }
  #hamburger.active > div:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #hamburger.active > div:nth-child(2) {
    opacity: 0;
  }
  #hamburger.active > div:nth-child(3) {
    bottom: 12px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .navigation {
    position: relative;
    top: 85px;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    transition: height 0.4s ease;
    min-height: 100vh;
    height: auto;
  }
  .navigation .gold-button {
    display: block;
    order: 3;
  }
  .navigation #contact, .navigation #social, .navigation #pages {
    width: 100%;
  }
  .navigation .divider {
    display: block;
    width: 100%;
    border-top: 1px solid #C8C8C8;
  }
  #contact, #social, #pages {
    width: 100%;
  }

  #contact {
    flex-wrap: wrap;
    height: auto;
  }
  #contact .items {
    width: 100%;
    line-height: 25px;
    height: auto;
    text-align: center;
  }
  #contact .items > img {
    padding-left: 0 !important;
  }

  #social {
    order: 0;
    justify-content: center;
    margin: 25px 0;
    height: auto;
    position: relative;
  }
  #social .social-icon > a {
    line-height: 15px;
  }
  #social .social-icon .a {
    fill: #5698D2;
  }
  #social #language {
    position: absolute;
    right: 0;
  }
  #social #language:after {
    width: 12px;
  }

  #pages {
    order: 1;
    height: auto;
    flex-wrap: wrap;
  }
  #pages .logo {
    display: none;
  }
  #pages .items > ul {
    flex-wrap: wrap;
  }
  #pages .items > ul .nav-item {
    padding: 0;
    width: 100%;
    text-align: center;
    color: #9A9A9A;
    line-height: 19px;
  }
  #pages .items > ul .nav-item:not(:last-child) {
    margin-bottom: 4%;
  }
  #pages .items > ul .nav-item .nav-item-inner:after {
    display: none !important;
  }

  #contact {
    order: 4;
  }
}
@media (min-width: 1024px) {
  .top-bar-button, .small-footer, .collapsible-section {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  #mobile-menu {
    justify-content: space-between;
  }

  #hamburger {
    right: auto;
    left: 0;
    margin-left: 0;
    position: relative;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }

  #navigation-backdrop .gold-button {
    display: block;
    position: relative;
    top: auto;
    right: auto;
  }

  #main-book-button {
    display: none;
  }

  #language .language-picker {
    left: -2em;
  }
  #language .language-picker a {
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
  }
  #language .language-picker li {
    padding: 0;
    border-bottom: 1px solid #D2AB67;
  }

  .navigation {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  #pages .items > ul .nav-item:not(:last-child) {
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 360px) {
  #navigation-backdrop {
    padding: 0 8px;
  }
}
footer {
  position: relative;
}

.hamag {
  font-size: 0;
  padding: 24px 0 12px;
  text-align: center;
  background: white;
}
.hamag img {
  max-width: 100%;
  margin: 0 auto;
}

#contact-section .title {
  padding: 2em 0;
}
#contact-section .title:after {
  bottom: 1.75em;
}
#contact-section .wrapper {
  position: relative;
}
#contact-section .backdrop {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #EEF4F9;
}

#contact-container {
  position: relative;
  background-color: #ffffff;
}
#contact-container .gold-button {
  position: absolute;
  bottom: 0;
  right: 30%;
  width: 30%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  background-color: #ffffff;
  margin-bottom: 14px;
}
#contact-container .gold-button .lds-facebook {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#contact-container .gold-button > span {
  transition: opacity 0.4s ease;
}
#contact-container .gold-button.sending > span {
  opacity: 0;
}
#contact-container .gold-button.sending .lds-facebook {
  opacity: 1;
}
#contact-container .wrapper {
  padding: 14px;
  height: 100%;
  background-color: #ffffff;
}
#contact-container .inner {
  border: 1px solid #9A9A9A;
  height: 100%;
  padding: 6% 0 6% 0;
  display: flex;
  flex-wrap: wrap;
}
#contact-container .inner .item:nth-child(1), #contact-container .inner .item:nth-child(3) {
  width: 40%;
  padding: 0 5% 0 6%;
  border-right: 1px solid #C8C8C8;
}
#contact-container .inner .item:nth-child(2) {
  width: 60%;
  padding: 0 6% 0 5%;
}
#contact-container .inner .item:nth-child(3) {
  padding-top: 2em;
}
#contact-container label {
  display: block;
  color: #D2AB67;
}
#contact-container .input-wrapper {
  position: relative;
  font-size: 17px;
  color: #9A9A9A;
}
#contact-container .input-wrapper input, #contact-container .input-wrapper textarea, #contact-container .input-wrapper select {
  font-size: 17px;
}
#contact-container .input-wrapper ::-webkit-input-placeholder {
  color: #9A9A9A;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
}
#contact-container .input-wrapper :-ms-input-placeholder {
  color: #9A9A9A;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
}
#contact-container .input-wrapper ::-ms-input-placeholder {
  color: #9A9A9A;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
}
#contact-container .input-wrapper ::placeholder {
  color: #9A9A9A;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
}
#contact-container .input-wrapper.textarea {
  height: 100%;
}
#contact-container .input-wrapper.textarea > textarea {
  height: 100%;
}
#contact-container .input-wrapper.checkbox {
  padding-top: 1em;
}
#contact-container .input-wrapper:not(:last-child) {
  margin-bottom: 2em;
}
#contact-container .input-wrapper > input:not([type=checkbox]), #contact-container .input-wrapper textarea, #contact-container .input-wrapper select {
  padding: 1em 1em 0.7em 1em;
  display: block;
  width: 100%;
  position: relative;
}
#contact-container .input-wrapper > textarea {
  border: none;
}
#contact-container .input-wrapper > input:not([type=checkbox]), #contact-container .input-wrapper select {
  border-color: #C8C8C8;
  border-width: 0 0 1px;
}
#contact-container .input-wrapper:not(.checkbox):before {
  position: absolute;
  left: 0.5em;
  display: block;
  content: " ";
  height: 0.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 1.6em;
  z-index: 1;
  border-right: 1px solid #C8C8C8;
}

#footer-section {
  background-color: #EEF4F9;
}
#footer-section .bottom {
  margin: 50px 0 25px;
  font-size: 18px;
  line-height: 22px;
  color: #0066B3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#footer-section .bottom .bar {
  flex-grow: 1;
  height: 1px;
  border-top: 1px solid #C8C8C8;
  margin-right: 20px;
}
#footer-section .bottom .controls {
  position: relative;
  cursor: pointer;
}
#footer-section .bottom .controls > span {
  line-height: 22px;
}
#footer-section .bottom .controls .scroll-top {
  display: inline-block;
  width: 1em;
  background-image: url(/assets/arrow-up.svg);
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  margin-left: 1em;
  vertical-align: middle;
  float: right;
  height: 22px;
}
#footer-section .bottom .bottom-text {
  width: 100%;
  text-align: center;
  line-height: 42px;
  color: #C8C8C8;
  margin: 25px 0 10px;
}
#footer-section .bottom .bottom-text > a {
  color: #5698D2;
}

#footer-container {
  height: 100%;
  color: #9A9A9A;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer-container .logo {
  width: 100%;
  margin-bottom: 65px;
  margin-top: 130px;
}
#footer-container .logo img {
  height: 130px;
}
#footer-container .multiple {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
#footer-container .item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#footer-container .item li {
  line-height: 45px;
}
#footer-container .item li img, #footer-container .item li svg {
  margin-right: 1em;
  height: 1em;
  width: 2em;
  vertical-align: middle;
}
#footer-container .item li span {
  vertical-align: middle;
}
#footer-container .map > img {
  width: 230px;
  margin-top: -54px;
}

@media screen and (max-width: 1366px) {
  #contact-container .wrapper {
    padding: 10px;
  }
  #contact-container .gold-button {
    margin-bottom: 10px;
  }
  #contact-container .input-wrapper {
    font-size: 13px;
  }
  #contact-container .input-wrapper input, #contact-container .input-wrapper textarea {
    font-size: 13px;
  }
  #contact-container .input-wrapper:not(.checkbox):before {
    top: 1.5em;
  }

  #footer-section .bottom {
    margin-top: 35px;
    font-size: 13px;
    line-height: 16px;
  }
  #footer-section .bottom .bottom-text {
    margin: 17px 0 27px 0;
    line-height: 30px;
  }

  #footer-container .logo {
    margin-bottom: 50px;
    margin-top: 100px;
  }
  #footer-container .logo img {
    height: 100px;
  }
  #footer-container .item li {
    line-height: 32px;
  }
  #footer-container .map > img {
    width: 165px;
    margin-top: -31px;
  }
}
@media screen and (max-width: 1024px) {
  #contact-container .inner {
    padding: 30px;
  }
  #contact-container .inner .item {
    width: 100% !important;
    padding: 0 !important;
    border-right: none !important;
  }
  #contact-container .inner .input-wrapper {
    margin-bottom: 2em !important;
  }
  #contact-container .inner .input-wrapper.textarea {
    height: auto;
  }
  #contact-container .gold-button {
    width: calc(100% - 80px);
    right: 50%;
  }

  #footer-container .logo {
    margin-top: 75px;
  }
  #footer-container .multiple {
    flex-wrap: wrap;
  }
  #footer-container .multiple > .item {
    margin-bottom: 2em;
    width: 30%;
  }
  #footer-container .multiple > .item:nth-child(odd) {
    width: 70%;
    padding-right: 2em;
  }
  #footer-container .item {
    width: 100%;
  }
  #footer-container .map > img {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .multiple .item {
    width: 100% !important;
  }

  .map > img {
    margin-top: 0;
    width: 100% !important;
    max-width: 360px;
  }

  #footer-section .bottom {
    justify-content: center;
    font-size: 10px;
    line-height: 13px;
  }
  #footer-section .bottom .bar {
    display: none;
  }
  #footer-section .bottom .controls {
    margin-bottom: 1em;
  }
  #footer-section .bottom .controls > span {
    line-height: normal;
  }
  #footer-section .bottom .controls .scroll-top {
    float: none;
    display: block;
    margin: 0 auto;
  }
  #footer-section .bottom .bottom-text {
    border-top: 1px solid #C8C8C8;
    margin: 0;
    padding: 19px 0;
    line-height: 14px;
  }
}
/* Slider */
.segment-image {
  /* Slider */
  /* Icons */
  /* Arrows */
  /* Dots */
}
.segment-image .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.segment-image .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.segment-image .slick-list:focus {
  outline: none;
}
.segment-image .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.segment-image .slick-slider .slick-track,
.segment-image .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.segment-image .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.segment-image .slick-track:before,
.segment-image .slick-track:after {
  display: table;
  content: "";
}
.segment-image .slick-track:after {
  clear: both;
}
.segment-image .slick-loading .slick-track {
  visibility: hidden;
}
.segment-image .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding-right: 25px;
}
.segment-image .slick-slide:last-child {
  padding-right: 0;
}
.segment-image [dir=rtl] .slick-slide {
  float: right;
}
.segment-image .slick-slide img {
  display: block;
}
.segment-image .slick-slide.slick-loading img {
  display: none;
}
.segment-image .slick-slide.dragging img {
  pointer-events: none;
}
.segment-image .slick-initialized .slick-slide {
  display: block;
}
.segment-image .slick-loading .slick-slide {
  visibility: hidden;
}
.segment-image .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.segment-image .slick-arrow.slick-hidden {
  display: none;
}
.segment-image .slick-loading .slick-list {
  background: #fff url("/ajax-loader.gif") center center no-repeat;
}
.segment-image .slick-prev,
.segment-image .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: calc(50% - 32px);
  display: block;
  width: 64px;
  height: 64px;
  border: transparent;
  border-top: 3px solid #0066B3;
  border-right: 3px solid #0066B3;
  padding: 0;
  cursor: pointer;
  color: #1D374F;
  outline: none;
  background: transparent;
}
.segment-image .slick-prev:hover,
.segment-image .slick-prev:focus,
.segment-image .slick-next:hover,
.segment-image .slick-next:focus {
  color: #1D374F;
  outline: none;
  background: transparent;
}
.segment-image .slick-prev:hover:before,
.segment-image .slick-prev:focus:before,
.segment-image .slick-next:hover:before,
.segment-image .slick-next:focus:before {
  opacity: 1;
}
.segment-image .slick-prev.slick-disabled:before,
.segment-image .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.segment-image .slick-prev:before,
.segment-image .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.segment-image .slick-prev {
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=-0.7071067811865476, M12=0.7071067811865475, M21=-0.7071067811865475, M22=-0.7071067811865476)";
  left: -64px;
}
.segment-image [dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.segment-image .slick-prev:before {
  content: "";
}
.segment-image [dir=rtl] .slick-prev:before {
  content: "";
}
.segment-image .slick-next {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
  right: -64px;
}
.segment-image [dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
.segment-image .slick-next:before {
  content: "";
}
.segment-image [dir=rtl] .slick-next:before {
  content: "";
}
.segment-image .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.segment-image .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.segment-image .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.segment-image .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.segment-image .slick-dots li button:hover,
.segment-image .slick-dots li button:focus {
  outline: none;
}
.segment-image .slick-dots li button:hover:before,
.segment-image .slick-dots li button:focus:before {
  opacity: 1;
}
.segment-image .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "\2022";
  text-align: center;
  opacity: 0.25;
  color: #1D374F;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.segment-image .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.vr-container {
  position: relative;
  height: 0;
  padding-top: 40%;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .vr-container {
    padding-top: 56.25%;
  }
}
.vr-container iframe {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 599px) {
  .vr-container {
    padding-top: 0;
    height: calc(100vh - 85px);
    max-height: 500px;
  }
}

.main-slider-container {
  position: relative;
  background: #EEF4F9;
}
.main-slider-container .stay-safe-logo {
  position: absolute;
  font-size: 0;
  left: 16px;
  top: 16px;
  width: 25%;
  max-width: 200px;
  min-width: 100px;
}
@media (min-width: 1240px) {
  .main-slider-container .stay-safe-logo {
    top: 100px;
  }
}
.main-slider-container .stay-safe-logo img {
  width: 100%;
  z-index: 2;
  position: relative;
}
.main-slider-container #welcome {
  color: #ffffff;
  text-shadow: black 1px 1px 1px;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.main-slider-container #welcome > p {
  margin-top: 37px;
  margin-bottom: 135px;
}
@media (max-width: 640px) {
  .main-slider-container .vr-button {
    position: relative;
    z-index: 2;
  }
  .main-slider-container .vr-button img {
    width: 100px;
  }
}
@media (max-width: 520px) {
  .main-slider-container #welcome {
    margin-top: 8px !important;
  }
}
@media (max-width: 459px) {
  .main-slider-container #welcome {
    position: static;
    z-index: 999;
    margin-top: -87px !important;
    margin-left: 0;
    width: 100% !important;
    margin-right: 0;
  }
  .main-slider-container #welcome h1, .main-slider-container #welcome p {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    background: #0066B3;
    margin-top: 0 !important;
  }
  .main-slider-container .stay-safe-logo {
    top: 8px;
    right: auto;
    left: 8px;
    bottom: auto;
    z-index: 999;
  }
}

#main-book-button {
  color: #fff;
  background-color: #d2ab67;
  height: 72px;
  width: 232px;
  position: fixed;
  border: 4px solid #fff;
  font-size: 17px;
  line-height: 64px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-200%) rotate(-90deg);
  transform: translateY(-200%) rotate(-90deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  z-index: 10;
}

.main-slider {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.main-slider .slick-track, .main-slider .slick-list, .main-slider .slick-item {
  height: 100%;
}
.main-slider .slider-item {
  background-size: cover !important;
  background-position: 50% !important;
}

#reservation-section {
  background-color: #EEF4F9;
}
#reservation-section .slick-dots {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  top: 35%;
  left: 0;
  -webkit-transform: translate(-100%, 50%);
          transform: translate(-100%, 50%);
}
#reservation-section .slick-dots > li {
  line-height: 0;
  font-size: 0;
  display: inline;
}
#reservation-section .slick-dots > li.slick-active > button {
  background-color: #0066B3;
}
#reservation-section .slick-dots > li > button {
  cursor: pointer;
  font-size: 0;
  border: 0;
  padding: 5px;
  border-radius: 5px;
  background-color: #C8C8C8;
  outline: none;
  margin-right: 36px;
}

.main-slider-indicators {
  padding-left: 63px;
  position: absolute;
  top: 35%;
  right: 0;
  -webkit-transform: translate(100%, 50%);
          transform: translate(100%, 50%);
  font-size: 14px;
  line-height: 18px;
  color: #0066B3;
}
.main-slider-indicators .main-slider-counter {
  vertical-align: middle;
}
.main-slider-indicators .main-slider-counter > span {
  width: 1em;
  text-align: center;
  display: inline-block;
}
.main-slider-indicators .main-slider-next, .main-slider-indicators .main-slider-prev {
  display: inline-block;
  cursor: pointer;
  border: 0;
  outline: none;
  width: 1.5em;
  height: 1.5em;
  background-size: contain !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  vertical-align: middle;
}
.main-slider-indicators .main-slider-next {
  background: url("/assets/arrow-right.svg");
}
.main-slider-indicators .main-slider-prev {
  background: url("/assets/arrow-left.svg");
}

#reservation-bar {
  position: relative;
  margin: 0 auto;
  width: 70%;
  z-index: 1;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  padding: 14px;
  background-color: #ffffff;
}
#reservation-bar .inner {
  height: 100%;
  border: 1px solid #C8C8C8;
  padding: 42px 25px 16px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#reservation-bar #reservation-text {
  width: 10%;
  font-size: 22px;
  line-height: 28px;
  color: #D2AB67;
  font-family: "Lora", serif;
}
#reservation-bar .separator {
  padding: 0 22px 0 22px;
}
#reservation-bar #book-button {
  width: 10%;
  background-color: #ffffff;
  font-size: 17px;
  height: 50px;
  line-height: 50px;
  min-width: 100px;
  text-align: center;
}
#reservation-bar .bottom-text {
  width: 66%;
  height: 66px;
  flex-grow: 1;
  text-align: center;
  line-height: 66px;
  position: relative;
  left: 0;
  font-size: 14px;
  color: black;
  text-transform: uppercase;
  top: -0.6rem;
}
#reservation-bar .and svg {
  width: 68px;
  height: 55px;
  position: relative;
  top: 1.1rem;
}
#reservation-bar .help-button-cont {
  flex-shrink: 1;
}
#reservation-bar .help-button {
  height: 40px;
  line-height: 40px;
  padding: 0 24px;
  font-size: 14px;
}
#reservation-bar .help-button svg {
  margin-right: 12px;
  position: relative;
  top: 0.1rem;
  width: 22px;
  height: 18px;
}
#reservation-bar .help-button svg * {
  fill: #D2AB67;
}
#reservation-bar .persons-container, #reservation-bar .promo-container {
  width: calc(15% - 44px);
  height: 50px;
  flex-grow: 1;
  font-size: 20px;
  border: 1px solid #C8C8C8;
  color: #0066B3;
  position: relative;
  cursor: pointer;
}
#reservation-bar .persons-container .label-head, #reservation-bar .promo-container .label-head {
  position: absolute;
  top: -36px;
  color: #9A9A9A;
  width: 100%;
  text-align: center;
  font-size: 16px;
}
#reservation-bar .promo-container input {
  height: 100%;
  width: 100%;
  text-align: center;
  border: none;
  font-size: 20px;
}
#reservation-bar .input-container {
  font-size: 16px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#reservation-bar .input-container .plus {
  color: #9A9A9A;
  font-size: 40px;
  padding-right: 8px;
  position: absolute;
  right: 0;
}
#reservation-bar .input-container .total_person_val {
  margin-left: 4px;
}
#reservation-bar .child-2-container {
  margin-top: 8px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: height 0.3s ease;
}
#reservation-bar .child-2-container.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: height 0.3s ease;
}
#reservation-bar .check-date {
  width: calc(25% - 88px);
  height: 50px;
  flex-grow: 1;
  font-size: 15px;
  border: 1px solid #C8C8C8;
  color: #0066B3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
}
#reservation-bar .check-date input {
  font-size: 1em;
  color: #5698D2;
  background-color: #ffffff !important;
  width: 100%;
  height: 100%;
  border: none;
  text-align: center !important;
}
#reservation-bar .check-date input::-webkit-input-placeholder {
  color: #5698D2;
}
#reservation-bar .check-date input:-ms-input-placeholder {
  color: #5698D2;
}
#reservation-bar .check-date input::-ms-input-placeholder {
  color: #5698D2;
}
#reservation-bar .check-date input::placeholder {
  color: #5698D2;
}
#reservation-bar .check-date > img {
  cursor: pointer;
}
#reservation-bar .check-date > img:not(.arrow) {
  height: 1.7em;
  vertical-align: middle;
  padding-left: 1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
#reservation-bar .check-date > .arrow {
  padding-right: 1em;
  position: absolute;
  right: 0;
}
#reservation-bar .check-date:before {
  position: absolute;
  font-size: 1em;
  text-align: center;
  right: 0;
  width: 100%;
  line-height: 1em;
  color: #9A9A9A;
  top: -21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  content: "Check-out";
}
#reservation-bar .check-date.from:before {
  content: "Check-in";
}

#gallery-section {
  background-color: #EEF4F9;
}

#gallery-container h2, #special-offer-container h2 {
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 1.25em;
  font-weight: 400;
}
#gallery-container h3, #special-offer-container h3 {
  text-align: center;
  font-size: 1em;
  line-height: 1em;
  color: #9A9A9A;
  padding-bottom: 3em;
}
#gallery-container h3 img, #special-offer-container h3 img {
  height: calc(1em + 5px);
  width: 1em;
  vertical-align: middle;
}
#gallery-container #gallery-wrapper, #gallery-container #special-offer-wrapper, #special-offer-container #gallery-wrapper, #special-offer-container #special-offer-wrapper {
  position: relative;
}
#gallery-container #gallery-wrapper .slick-prev, #gallery-container #gallery-wrapper .slick-next, #gallery-container #special-offer-wrapper .slick-prev, #gallery-container #special-offer-wrapper .slick-next, #special-offer-container #gallery-wrapper .slick-prev, #special-offer-container #gallery-wrapper .slick-next, #special-offer-container #special-offer-wrapper .slick-prev, #special-offer-container #special-offer-wrapper .slick-next {
  z-index: 1;
  position: absolute;
  top: 50%;
  height: 10%;
  width: 5%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  cursor: pointer;
}
#gallery-container #gallery-wrapper .slick-next, #gallery-container #special-offer-wrapper .slick-next, #special-offer-container #gallery-wrapper .slick-next, #special-offer-container #special-offer-wrapper .slick-next {
  right: 5%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-image: url("/assets/arrow-right.svg");
}
#gallery-container #gallery-wrapper .slick-prev, #gallery-container #special-offer-wrapper .slick-prev, #special-offer-container #gallery-wrapper .slick-prev, #special-offer-container #special-offer-wrapper .slick-prev {
  left: 5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("/assets/arrow-left.svg");
}
#gallery-container #gallery-box, #special-offer-container #gallery-box {
  padding: 2.4%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
#gallery-container #gallery-box .slick-list, #gallery-container #gallery-box .slick-track, #special-offer-container #gallery-box .slick-list, #special-offer-container #gallery-box .slick-track {
  height: 32vw;
}
#gallery-container #gallery-box .item, #special-offer-container #gallery-box .item {
  height: 100%;
  width: 33.33%;
  background-position: 50%;
  background-size: cover;
  background-image: url("/assets/home-slider/home-slider-1.jpg");
  position: relative;
}
#gallery-container #gallery-box .item .overlay, #special-offer-container #gallery-box .item .overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
}
#gallery-container #gallery-box .item .open, #special-offer-container #gallery-box .item .open {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  height: 2.5em;
  -webkit-transform: translate(-80%, -80%);
          transform: translate(-80%, -80%);
}
#gallery-container #gallery-box .item .open > img, #special-offer-container #gallery-box .item .open > img {
  height: 100%;
}
#gallery-container #gallery-box .item .title, #special-offer-container #gallery-box .item .title {
  position: relative;
  z-index: 1;
  margin-left: 9%;
  padding-top: 9%;
  font-size: 40px;
  font-family: "Lora", serif;
  color: #D2AB67;
}
#gallery-container #special-offer-box, #special-offer-container #special-offer-box {
  padding: 2.4%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#gallery-container #special-offer-box .slick-list, #special-offer-container #special-offer-box .slick-list {
  margin: 0 -20px;
}
#gallery-container #special-offer-box .slick-list, #gallery-container #special-offer-box .slick-track, #special-offer-container #special-offer-box .slick-list, #special-offer-container #special-offer-box .slick-track {
  height: 100%;
}
#gallery-container #special-offer-box .item, #special-offer-container #special-offer-box .item {
  height: 100%;
  margin: 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 100px;
}
#gallery-container #special-offer-box .item .img-container, #special-offer-container #special-offer-box .item .img-container {
  flex-grow: 0;
  flex-shrink: 1;
}
#gallery-container #special-offer-box .item .img-container > img, #special-offer-container #special-offer-box .item .img-container > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#gallery-container #special-offer-box .item .title, #special-offer-container #special-offer-box .item .title {
  position: relative;
  z-index: 1;
  padding-top: 9%;
  padding-bottom: 6%;
  font-size: 28px;
  line-height: 32px;
  font-family: "Lora", serif;
  color: #D2AB67;
}
#gallery-container #special-offer-box .item .title:after, #special-offer-container #special-offer-box .item .title:after {
  display: none;
}
#gallery-container #special-offer-box .item .text, #special-offer-container #special-offer-box .item .text {
  font-weight: normal;
  color: black;
  font-size: 16px;
}
#gallery-container #special-offer-box .item .see-more, #special-offer-container #special-offer-box .item .see-more {
  color: black;
  border: 1px solid #D2AB67;
  font-family: "Lora", serif;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #ffffff;
  font-size: 17px;
  height: 66px;
  line-height: 66px;
  margin-top: 16px;
  width: 250px;
  padding: 0;
  max-width: 100%;
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: 0;
  bottom: 0;
}

#location-section {
  height: 50vw;
  position: relative;
}
#location-section #map {
  background: #5698D2;
  height: 100%;
  position: relative;
  top: -14%;
  z-index: 0;
}
#location-section #location-details {
  display: inline-block;
  width: 525px;
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 1;
  background: #ffffff;
  color: #9A9A9A;
}
#location-section #location-details .inner {
  padding: 3em;
}
#location-section #location-details .title {
  padding-bottom: 1.25em;
}
#location-section #location-details .location_text {
  padding-bottom: 0.5em;
  line-height: 28px;
}
#location-section #location-details .location_text > div {
  position: relative;
  margin-left: 60px;
}
#location-section #location-details .location_text > div svg {
  position: absolute;
  height: 40px;
  width: 40px;
  left: -60px;
  top: 0.25em;
}
#location-section #location-details .location_text > div svg.directions {
  top: -0.2em;
}
#location-section #location-details .location_text > div svg.dot {
  top: 0.4em;
  height: 12px;
}
#location-section #location-details .location_text.directions_text {
  color: #0066B3;
}
#location-section #location-details .location_small_text {
  font-size: 16px;
  line-height: 28px;
}
@media (max-width: 1366px) {
  #location-section #location-details {
    font-size: 18px;
    line-height: 24px;
  }
  #location-section #location-details .location_text > div {
    margin-left: 40px;
  }
  #location-section #location-details .location_text > div svg {
    height: 32px;
    width: 32px;
    left: -40px;
    top: 0.5em;
  }
  #location-section #location-details .location_text > div svg.directions {
    top: -0.1em;
  }
  #location-section #location-details .location_text > div svg.dot {
    top: 0.5em;
    height: 10px;
  }
  #location-section #location-details .location_text.directions_text {
    font-size: 20px;
  }
  #location-section #location-details .location_small_text {
    font-size: 15px;
    line-height: 24px;
  }
}

#transfer-section {
  padding: 89px 0 76px 0;
  color: #9A9A9A;
}
#transfer-section .title {
  padding-bottom: 64px;
}

.bullets {
  padding-top: 2em;
}

.bullet:before {
  content: " ";
  display: inline-block;
  height: 0.33em;
  width: 0.33em;
  border-radius: 0.33em;
  background: #0066B3;
  margin-right: 1em;
  margin-bottom: 0.165em;
}

#transfers-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}
#transfers-container .backdrop {
  width: 73%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: all 0.8s ease;
  background-position: 50% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
#transfers-container .backdrop:nth-child(3) {
  left: 0;
  background: url("/assets/transfer/transfer-car.jpg");
  -webkit-transform: translateX(15%);
          transform: translateX(15%);
}
#transfers-container .backdrop:nth-child(5) {
  background: url("/assets/transfer/transfer-van.jpg");
  right: 0;
  -webkit-transform: translateX(-15%);
          transform: translateX(-15%);
}
#transfers-container .item {
  width: 277px;
  min-width: 215px;
  margin: 0 1.5% 0 1.5%;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
#transfers-container .item .inner {
  height: 100%;
  padding: 14px;
  background-color: #ffffff;
}
#transfers-container .item .content {
  font-size: 20px;
  height: 100%;
  padding: 10%;
  border: 1px solid #C8C8C8;
  position: relative;
}
#transfers-container .item .content .type {
  font-size: 35px;
  line-height: 42px;
  color: #D2AB67;
}
#transfers-container .item .content .capacity {
  padding: 0.5em 0 1em 0;
  position: relative;
}
#transfers-container .item .content .capacity:after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: " ";
  height: 1px;
  width: 40px;
  border-top: 1px solid #D2AB67;
}
#transfers-container .item .content .price {
  padding: 1em 0 1em 0;
}
#transfers-container .item .content .price:nth-last-of-type(2) {
  padding-bottom: 3em;
}
#transfers-container .item .content .price .amount {
  font-size: 50px;
  color: #0066B3;
}
#transfers-container .item .content .price .amount small {
  font-size: 24px;
}
#transfers-container .item .content .gold-button {
  padding: 1em 0 1em 0;
  line-height: 24px;
  position: absolute;
  width: 80%;
  background-color: #ffffff;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
#transfers-container .item:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
#transfers-container .item:hover + .backdrop {
  opacity: 1;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}
#transfers-container .transfer-tabs {
  display: none;
}
@media (max-width: 767px) {
  #transfers-container {
    display: block;
    margin: 16px auto;
    padding-bottom: 24px;
  }
  #transfers-container .transfer-tabs {
    overflow: hidden;
    display: block;
  }
  #transfers-container .transfer-tabs .transfer-tab {
    padding: 12px 0;
    float: left;
    width: calc(50% - 2px);
    text-align: center;
    background: white;
    border: 1px solid #D2AB67;
    color: #D2AB67;
    font-size: 24px;
    font-family: "Lora", serif;
    transition: 0.4s ease;
    cursor: pointer;
    margin: 0 1px;
  }
  #transfers-container .transfer-tabs .transfer-tab small {
    font-size: 16px;
  }
  #transfers-container .transfer-tabs .transfer-tab:hover, #transfers-container .transfer-tabs .transfer-tab.active {
    color: white;
    background: #D2AB67;
  }
  #transfers-container .item, #transfers-container .transfer-tabs {
    width: 90% !important;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    margin-bottom: 0 !important;
  }
  #transfers-container .item {
    transition: 0.4s ease-in-out height;
  }
  #transfers-container .item .content {
    padding-bottom: 12px;
  }
  #transfers-container .item .content .gold-button {
    margin-top: 12px;
    -webkit-transform: none;
            transform: none;
    position: static;
    margin-left: 10%;
  }
  #transfers-container .item:not(.active) {
    height: 0;
  }
  #transfers-container .backdrop {
    display: none;
  }
}

#offer-section {
  background-color: #EEF4F9;
  padding: 5em 0 5em 0;
}

#offer-container {
  width: 52%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #ffffff;
}
#offer-container .offer {
  font-size: 50px;
  color: #0066B3;
  padding: 1.5em 0 1.5em 0;
}
#offer-container .gold-button {
  padding: 1em 2em 1em 2em;
}

.image-slider .slick-dots {
  margin-top: 0 !important;
  bottom: 30px !important;
}

.persons-modal {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  background: white;
  border: 1px solid #9A9A9A;
  position: absolute;
  width: 320px;
  left: -48px;
  top: 72px;
  padding: 48px 20px 24px;
  color: black;
  cursor: auto;
  font-size: 16px;
}
.persons-modal.active {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.persons-modal .close-btn {
  position: absolute;
  right: 24px;
  top: 4px;
  font-size: 30px;
  color: #D2AB67;
  cursor: pointer;
}
.persons-modal .person-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.persons-modal .person-container .number-container {
  display: flex;
  width: 50%;
  justify-content: space-between;
}
.persons-modal .person-container .minus, .persons-modal .person-container .plus {
  width: 24px;
  height: 24px;
  font-size: 30px;
  line-height: 22px;
  text-align: center;
  color: #D2AB67;
  border: 2px solid #D2AB67;
  border-radius: 50%;
  position: relative;
  top: 0.125rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.persons-modal .person-container .minus {
  line-height: 18px;
}
.persons-modal .children-container {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.persons-modal .children-container.active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}
.persons-modal .button-container .button {
  width: 100%;
  height: 40px;
  text-align: center;
  display: block;
  color: white;
  font-weight: bold;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: #D2AB67;
  line-height: 40px;
  margin-top: 14px;
}
.persons-modal .hor-seperator {
  margin: 12px 0;
  border: 1px solid #D2AB67;
}

@media screen and (max-width: 1600px) {
  .main-slider-indicators {
    padding-left: 20px;
  }

  #reservation-section .slick-dots > li > button {
    margin-right: 18px;
  }

  #reservation-bar .separator {
    padding: 0 8px;
  }
  #reservation-bar #reservation-text {
    width: auto;
  }
  #reservation-bar .persons-container {
    width: 90px;
    flex-grow: 0;
  }
}
@media (max-width: 1550px) {
  #reservation-bar .bottom-text {
    height: 55px;
    line-height: 55px;
    margin-top: 16px !important;
    font-size: 16px !important;
  }
  #reservation-bar .help-button-cont {
    margin-top: 24px !important;
  }
  #reservation-bar .help-button {
    padding: 0 8px;
    font-size: 16px;
  }
  #reservation-bar .help-button svg {
    margin-right: 12px;
    width: 16px;
    height: 13px;
  }
}
@media (max-width: 1200px) and (min-width: 1024px) {
  #reservation-section #reservation-bar {
    width: 85%;
  }
  #reservation-section #reservation-bar .main-slider-indicators {
    display: none;
  }
}
@media screen and (max-width: 1366px) {
  .main-slider-container #welcome > p {
    margin-top: 23px;
    margin-bottom: 96px;
  }

  #main-book-button {
    width: 165px;
    height: 51px;
    line-height: 43px;
    font-size: 15px;
  }

  .slick-dots > li > button {
    padding: 3.5px;
    border-radius: 3.5px;
    margin-right: 29px;
  }

  .main-slider-indicators {
    font-size: 13px;
    line-height: 16px;
  }

  #reservation-bar {
    padding: 10px;
  }
  #reservation-bar .inner {
    padding: 32px;
  }
  #reservation-bar .separator {
    padding: 0 8px;
  }
  #reservation-bar #reservation-text {
    font-size: 20px;
    line-height: 24px;
  }
  #reservation-bar .check-date, #reservation-bar .person-container, #reservation-bar .promo-container {
    font-size: 13px;
    height: 47px;
  }
  #reservation-bar .check-date:before, #reservation-bar .person-container:before, #reservation-bar .promo-container:before {
    top: -16px;
  }
  #reservation-bar #book-button {
    font-size: 15px;
    height: 47px;
    line-height: 47px;
  }
  #reservation-bar .and svg {
    width: 50px;
    height: 39px;
  }
  #reservation-bar .persons-container, #reservation-bar .promo-container {
    height: 47px;
    line-height: 47px;
  }
  #reservation-bar .persons-modal {
    top: 60px;
  }
  #reservation-bar .bottom-text {
    height: 47px;
    line-height: 47px;
    margin-top: 8px !important;
    font-size: 12px !important;
  }
  #reservation-bar .help-button-cont {
    margin-top: 8px !important;
  }
  #reservation-bar .help-button {
    padding: 0 8px;
    font-size: 13px;
  }
  #reservation-bar .help-button svg {
    margin-right: 12px;
    width: 16px;
    height: 13px;
  }

  #gallery-container h2, #special-offer-container h2 {
    padding: 1.25em 0 1em 0;
  }
  #gallery-container #gallery-box .item .title, #gallery-container #special-offer-box .item .title, #special-offer-container #gallery-box .item .title, #special-offer-container #special-offer-box .item .title {
    font-size: 24px;
    line-height: 28px;
  }

  #location-section #location-details {
    width: 449px;
  }
  #location-section #location-details .inner {
    padding: 2.5em;
  }
  #location-section #location-details .title {
    padding-bottom: 1em;
  }

  #transfers-container .item {
    width: 197px;
  }
  #transfers-container .item .inner {
    padding: 10px;
  }
  #transfers-container .item .content {
    font-size: 13px;
  }
  #transfers-container .item .content .type {
    font-size: 25px;
    line-height: 30px;
  }
  #transfers-container .item .content .price .amount {
    font-size: 35px;
    line-height: 42px;
  }
  #transfers-container .item .content .gold-button {
    font-size: 15px;
    line-height: 18px;
  }

  #transfer-section {
    padding: 60px 0 50px 0;
  }
  #transfer-section .title {
    padding-bottom: 44px;
  }

  #offer-container .offer {
    font-size: 35px;
  }
}
@media screen and (max-width: 1024px) {
  #reservation-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
  }

  .main-slider-container #welcome {
    bottom: unset;
    width: 80%;
    top: 0;
    margin-top: 44px;
  }
  .main-slider-container #welcome > p {
    margin-bottom: 0;
  }
  .main-slider-container #main-book-button {
    position: absolute;
    bottom: 15px;
    right: 6%;
    -webkit-transform: none;
            transform: none;
    top: auto;
  }

  .slick-dots {
    top: -72px !important;
    bottom: auto !important;
    left: calc(50% - 56px) !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .slick-dots > li > button {
    border-radius: 5px;
    padding: 5px;
  }

  .main-slider-indicators {
    display: none;
  }

  #reservation-bar {
    margin-top: 45px;
    margin-bottom: 45px;
    width: 88%;
    -webkit-transform: none;
            transform: none;
  }
  #reservation-bar #reservation-text {
    font-size: 25px;
    line-height: 31px;
    text-align: center;
    margin-bottom: 1em;
    margin-right: 0;
  }
  #reservation-bar #book-button {
    margin: 1em 0 1em 0;
    width: 60%;
  }
  #reservation-bar .inner {
    padding: 22px 7% 22px 7%;
    flex-direction: column;
  }
  #reservation-bar .check-date {
    margin: 2.3em;
    width: 85%;
    justify-content: space-between;
  }
  #reservation-bar .check-date .arrow {
    margin-left: 0;
  }

  #gallery-container h3 {
    font-size: 11px;
    padding-bottom: 2em;
  }
  #gallery-container #gallery-box .slick-list, #gallery-container #gallery-box .slick-track {
    height: 64vw;
  }
  #gallery-container #gallery-box .item .title {
    font-size: 25px;
  }

  #special-offer-container #special-offer-box .item {
    align-items: center;
    text-align: center;
    position: relative;
  }
  #special-offer-container #special-offer-box .item .title {
    padding-top: 36px;
    padding-bottom: 20px;
  }
  #special-offer-container #special-offer-box .item .text {
    font-size: 18px;
  }
  #special-offer-container #special-offer-box .item .see-more {
    margin-top: 32px;
  }

  #location-section {
    margin-bottom: -33.6vw;
    height: auto;
  }
  #location-section #map {
    height: 80vw;
    top: -11.2vw;
  }
  #location-section #location-details {
    position: relative;
    width: 88%;
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 33.6vw;
  }
  #location-section #location-details .inner {
    padding: 2.5em;
  }
  #location-section #location-details .title {
    padding-bottom: 1em;
  }

  #transfer-section .title, #transfer-section .text-center {
    margin: 0 6%;
  }

  #transfers-container {
    height: auto;
    flex-wrap: wrap;
    position: relative;
  }
  #transfers-container .item {
    text-align: center;
    width: 60%;
    margin-bottom: 54px;
  }
  #transfers-container .item:hover {
    -webkit-transform: none;
            transform: none;
  }
  #transfers-container .item:first-child {
    order: 2;
  }
  #transfers-container .item:nth-child(3) {
    order: 4;
  }
  #transfers-container .item .content .price {
    padding-bottom: 8px !important;
  }
  #transfers-container .item .content .price .amount {
    font-size: 24px;
    line-height: 26px;
  }
  #transfers-container .item .content .price .amount small {
    font-size: 16px;
    line-height: 20px;
  }
  #transfers-container .item .content .gold-button {
    font-size: 13px;
    line-height: 15px;
    padding: 1.5em 0 1.5em 0;
  }
  #transfers-container .item .content .capacity:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #transfers-container .backdrop {
    width: 100%;
    height: 59vw;
    position: relative;
    right: 0;
    left: 0;
    opacity: 1;
    margin-bottom: -20vw;
  }
  #transfers-container .backdrop:nth-child(2) {
    order: 1;
    -webkit-transform: none;
            transform: none;
  }
  #transfers-container .backdrop:nth-child(4) {
    order: 3;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 768px) {
  #reservation-bar .persons-modal {
    position: fixed;
    left: 0;
    top: 85px;
    width: 100vw;
    right: 0;
    bottom: 0;
  }

  .slick-dots > li > button {
    margin-right: 21px;
  }

  #gallery-container #gallery-wrapper .slick-next {
    right: 3%;
  }
  #gallery-container #gallery-wrapper .slick-prev {
    left: 3%;
  }

  #special-offer-container #special-offer-wrapper .slick-next {
    bottom: 160px;
    top: unset;
    z-index: 2;
    height: 40px;
    right: 3%;
  }
  #special-offer-container #special-offer-wrapper .slick-prev {
    bottom: 160px;
    top: unset;
    z-index: 2;
    height: 40px;
    left: 3%;
  }
  #special-offer-container #special-offer-wrapper .slick-list {
    margin: 0;
  }
  #special-offer-container #special-offer-wrapper #special-offer-box {
    padding: 16px 0;
    margin: 0;
  }
  #special-offer-container #special-offer-wrapper #special-offer-box .item {
    margin: 0;
  }
  #special-offer-container #special-offer-wrapper #special-offer-box .item .title {
    font-size: 26px;
    line-height: 32px;
  }
  #special-offer-container #special-offer-wrapper #special-offer-box .item .text {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
  }
  #special-offer-container #special-offer-wrapper #special-offer-box .item > a {
    padding-left: 16px;
    padding-right: 16px;
  }

  #transfers-container .item .content .type {
    font-size: 25px;
    line-height: 30px;
  }

  #location-section #location-details .inner {
    padding: 1.5em;
  }
  #location-section #location-details .location_text > div {
    margin-left: 30px;
  }
  #location-section #location-details .location_text > div svg {
    width: 24px;
    height: 24px;
    left: -30px;
  }
  #location-section #location-details .location_text > div svg.directions {
    top: 0.1em;
  }
}
.header-image {
  background-image: url("/assets/gallery/rooms/rooms-1.jpg");
}

#rooms-description {
  margin: 0;
  text-align: center;
}

.segment-container {
  position: relative;
}
.segment-container:not(:last-child) {
  margin-bottom: 20px;
}

.segment {
  padding-top: 2.2em;
  padding-bottom: 1.1em;
  display: flex;
}
.segment.single {
  padding: 0;
}
.segment > div {
  display: inline-block;
}
.segment .segment-image {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  min-width: 55%;
}
.segment .segment-image .image-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.segment .segment-image .backdrop {
  z-index: -1;
  position: absolute;
  height: 75%;
  padding-left: 50%;
  top: -40px;
  left: -40px;
  background-color: #EEF4F9;
}
.segment .segment-image .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.segment .segment-image .slick-slide {
  padding-right: 0;
  z-index: 0;
  cursor: zoom-in;
}
.segment .segment-image .slick-next {
  right: 16px;
  z-index: 2;
  cursor: pointer;
  background: url("/images/next.png") no-repeat center;
  background-size: contain;
  -webkit-transform: none;
          transform: none;
  border: none;
}
.segment .segment-image .slick-prev {
  left: 16px;
  z-index: 2;
  cursor: pointer;
  background: url("/images/prev.png") no-repeat center;
  background-size: contain;
  -webkit-transform: none;
          transform: none;
  border: none;
}
.segment .segment-image .button-background {
  width: 32px;
  height: 50px;
  position: absolute;
  top: calc(50% - 52px);
  z-index: 1;
  cursor: pointer;
}
.segment .segment-image .button-background-next {
  right: 6px;
}
.segment .segment-image .button-background-prev {
  left: 6px;
}
.segment .segment-description {
  padding-left: 65px;
  flex-grow: 1;
  min-width: 45%;
}
.segment .segment-description > a .gold-button {
  display: none;
}
.segment .segment-description .title {
  transition: 0.4s ease-in-out;
  padding-bottom: 30px;
}
.segment .segment-description .title:after {
  display: none;
}
.segment .segment-description .segment-text {
  padding-top: 30px;
}
.segment .segment-description .row {
  font-size: 16px;
  color: #414141;
}
.segment .segment-description .segment-icon {
  position: relative;
  top: 0.125rem;
  margin-right: 8px;
}
.segment .segment-text {
  margin-bottom: 50px;
}
.segment .gold-button {
  padding: 0.5em 2em 0.5em 2em;
  display: inline-block;
  margin-bottom: 16px;
}
.segment.vertical {
  display: block;
  padding-bottom: 0;
  padding-top: 0;
}
.segment.vertical > div {
  width: 100%;
}
.segment.vertical .segment-description {
  padding: 60px 0 0 0;
}

.active-overlay {
  display: none;
  height: 80px;
  width: 100%;
  background: white;
  border: 1px solid rgba(0, 102, 179, 0.3);
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  cursor: row-resize;
  -ms-user-select: none;
      user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  transition: border 0.4s ease-in-out;
}
.active-overlay h3 {
  padding: 0;
}
.active-overlay h3:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .active-overlay {
    display: flex;
  }
}

@media screen and (max-width: 1366px) {
  .segment .segment-image .backdrop {
    top: -30px;
    left: -30px;
  }
  .segment .segment-description {
    padding-left: 50px;
  }
  .segment .segment-text {
    margin-bottom: 35px;
  }
  .segment.vertical .segment-description {
    padding: 44px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .full-height.room-height {
    height: auto;
  }
  .full-height.room-height .header-image {
    flex-grow: 0;
  }

  .room-page #main-book-button {
    -webkit-transform: none;
            transform: none;
    position: static;
    margin: 0 auto;
    margin-top: 1em;
  }

  .segment {
    flex-wrap: wrap;
    padding-bottom: 2.2em;
  }
  .segment > div {
    width: 100%;
  }
  .segment .segment-image {
    height: 300px;
    margin-right: 15px;
    margin-bottom: 15px;
    bottom: -15px;
    right: -15px;
  }
  .segment .segment-image .slick-prev, .segment .segment-image .slick-next {
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
  }
  .segment .segment-image .button-background {
    width: 24px;
    height: 48px;
    top: calc(50% - 24px);
  }
  .segment .segment-image .slick-prev {
    left: 14px;
  }
  .segment .segment-image .slick-next {
    right: 14px;
  }
  .segment .segment-image .slide img {
    height: 300px;
  }
  .segment .segment-image .backdrop {
    top: -15px;
    left: -15px;
  }
  .segment .segment-description {
    padding: 50px 0 0 0;
  }
  .segment .segment-description > a .gold-button {
    margin-top: 16px;
    display: inline-block;
  }
  .segment .segment-text {
    padding-top: 0 !important;
    margin-bottom: 15px;
  }
  .segment .gold-button {
    padding: 0.75em 2em 0.75em 2em;
  }
  .segment.vertical {
    display: flex;
  }
  .segment-container {
    overflow: hidden;
    transition: height 0.3s ease-out;
    height: auto;
  }
  .segment-container.active .active-overlay {
    border-color: white;
  }
  .segment-container.active .active-overlay .title {
    color: #D2AB67;
  }
}
.segment-details.grid svg {
  width: 14px;
  height: 14px;
  vertical-align: top;
}
@media (min-width: 1024px) {
  .segment-details.grid svg {
    margin-top: 8px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .segment-details.grid .col-6 {
    width: 96%;
  }
}
@media screen and (max-width: 500px) {
  .active-overlay h3 {
    font-size: 18px;
  }
}
.header-gallery {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  bottom: 50px;
}
.header-gallery .item {
  height: 125px;
  width: 125px;
  background-size: cover;
  background-position: 50%;
  display: inline-block;
  vertical-align: top;
}
.header-gallery .item:not(.gold-button) {
  border: 1px solid #ffffff;
}
.header-gallery > a {
  margin-left: 35px;
}
.header-gallery .gold-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

#room-description-section {
  background-color: #EEF4F9;
  padding-top: 65px;
  padding-bottom: 210px;
}

.room-description-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 40px;
}
.room-description-container .label {
  width: 100%;
  text-align: center;
  color: #D2AB67;
}
.room-description-container .label > span {
  color: #9A9A9A;
}
.room-description-container #facilities {
  margin-top: 80px;
  margin-bottom: 50px;
}
.room-description-container .list-group {
  width: 50%;
  display: flex;
}
.room-description-container ul {
  width: 50%;
}
.room-description-container ul li {
  color: #9A9A9A;
}

#all-rooms-section .slick-list {
  padding-top: 40px;
  padding-left: 40px;
}
#all-rooms-section .indicators {
  margin-top: 65px;
  margin-bottom: 135px;
  font-size: 23px;
  color: #0066B3;
  line-height: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}
#all-rooms-section .indicators .bar {
  flex-grow: 1;
  height: 1px;
  border-top: 1px solid #C8C8C8;
  margin-right: 40px;
}
#all-rooms-section .indicators .controls {
  height: 100%;
  display: inline-block;
}
#all-rooms-section .indicators > span, #all-rooms-section .indicators button {
  vertical-align: middle;
}
#all-rooms-section .indicators .slider-next, #all-rooms-section .indicators .slider-prev {
  margin: 0 2em;
  height: 100%;
  width: 1em;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
}
#all-rooms-section .indicators .slider-next {
  background-image: url("/assets/arrow-right.svg");
}
#all-rooms-section .indicators .slider-prev {
  background-image: url("/assets/arrow-left.svg");
}
#all-rooms-section .segment {
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 1366px) {
  .header-gallery .item {
    height: 100px;
    width: 100px;
  }

  > a {
    margin-left: 20px;
  }

  #room-description-section {
    padding-top: 50px;
    padding-bottom: 160px;
  }

  .room-description-container {
    line-height: 30px;
  }
  .room-description-container #facilities {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  #all-rooms-section .slick-list {
    padding-top: 30px;
    padding-left: 30px;
  }
  #all-rooms-section .indicators {
    margin-top: 50px;
    margin-bottom: 120px;
    font-size: 18px;
    line-height: 30px;
    height: 30px;
  }
  #all-rooms-section .bar {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #room-description-section {
    padding-bottom: 100px;
    padding-top: 60px;
  }

  .room-description-container .list-group {
    width: 100%;
    text-align: center;
  }
  .room-description-container .label {
    display: none;
  }

  #all-rooms-section .indicators {
    margin-top: 0;
    height: 25px;
    margin-bottom: 50px;
  }

  #reservation-section.room-page #reservation-bar {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    top: -50px;
  }
}
@media screen and (max-width: 768px) {
  .intro-section.room-page {
    padding-top: 70px;
  }

  .header-gallery {
    bottom: -70px;
  }
  .header-gallery > a {
    margin-left: 15px;
  }
  .header-gallery .gold-button {
    font-size: 7px;
    line-height: 9px;
  }
  .header-gallery .item {
    height: 50px;
    width: 50px;
  }

  #all-rooms-section .slick-list {
    padding: 0;
  }
  #all-rooms-section .bar {
    display: none;
  }
  #all-rooms-section .indicators {
    font-size: 13px;
    line-height: 25px;
    height: 25px;
    justify-content: center;
  }
  #all-rooms-section .indicators .slider-prev, #all-rooms-section .indicators .slider-next {
    margin: 0 1em 0 1em;
  }
}
#main-gallery-section {
  display: flex;
  align-items: stretch;
}
#main-gallery-section .sidebar {
  width: 487px;
  color: #9A9A9A;
  padding-top: 78px;
  font-size: 25px;
  line-height: 31px;
  font-family: "Lora", serif;
  font-weight: 400;
  padding-left: 10%;
}
#main-gallery-section .sidebar .sidebar-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 208px;
}
#main-gallery-section .sidebar li {
  position: relative;
  transition: color 0.4s ease;
}
#main-gallery-section .sidebar li.active {
  color: #0066B3;
}
#main-gallery-section .sidebar li.active:before {
  content: " ";
  display: block;
  height: 1px;
  border-top: 1px solid #D2AB67;
  position: absolute;
  left: -10vw;
  width: calc(10vw - 48px);
  top: 50%;
}
#main-gallery-section .sidebar li:not(:last-child) {
  margin-bottom: 48px;
}
#main-gallery-section .sidebar li:hover {
  color: #0066B3;
}
#main-gallery-section .main-gallery-container {
  flex-grow: 1;
}
#main-gallery-section .full-height {
  height: calc(100vh - 130px - 18vw + 97.4px - 32px);
  margin-bottom: 35px;
}
#main-gallery-section .main-gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-right: 10vw;
}
#main-gallery-section .main-gallery-wrapper .item-wrapper {
  position: relative;
  width: 20%;
}
#main-gallery-section .main-gallery-wrapper .item-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#main-gallery-section .main-gallery-wrapper .item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: 50%;
  margin-bottom: 35px;
  margin-right: 35px;
}
#main-gallery-section .main-gallery-wrapper .item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: background-color 0.4s ease;
  background-color: transparent;
}
#main-gallery-section .main-gallery-wrapper .item .overlay:after {
  height: 100%;
  width: 100%;
  display: block;
  content: " ";
  background-image: url("/assets/open.svg");
  opacity: 0;
  transition: opacity 0.4s ease;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
}
#main-gallery-section .main-gallery-wrapper .item:hover .overlay {
  background-color: rgba(52, 144, 220, 0.5);
}
#main-gallery-section .main-gallery-wrapper .item:hover .overlay:after {
  opacity: 1;
}

@media screen and (max-width: 1366px) {
  #main-gallery-section .full-height {
    height: calc(100vh - 130px - 18vw + 75px - 24px);
    margin-bottom: 25px;
  }
  #main-gallery-section .sidebar {
    width: 375px;
    padding-top: 59px;
    font-size: 20px;
    line-height: 24px;
  }
  #main-gallery-section .sidebar .sidebar-wrapper {
    top: 189px;
  }
  #main-gallery-section .sidebar li.active:before {
    width: calc(10vw - 37px);
  }
  #main-gallery-section .sidebar li:not(:last-child) {
    margin-bottom: 37px;
  }
  #main-gallery-section .main-gallery-wrapper .item {
    margin-bottom: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 1240px) {
  #main-gallery-section .full-height {
    height: calc(100vh - 85px - 18vw + 75px - 24px);
    margin-bottom: 25px;
  }
  #main-gallery-section .sidebar .sidebar-wrapper {
    top: 144px;
  }
}
@media screen and (max-width: 1024px) {
  #main-gallery-section {
    flex-direction: column;
  }
  #main-gallery-section .sidebar {
    width: 100%;
    padding: 0;
    font-size: 15px;
    position: fixed !important;
    z-index: 1;
  }
  #main-gallery-section .sidebar .sidebar-wrapper {
    background-color: white;
    height: 90px;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
  }
  #main-gallery-section .sidebar .sidebar-wrapper .slick-arrow {
    outline: none;
    background-color: transparent;
    border: none;
    height: 30px;
    width: 15px;
    font-size: 0;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
  }
  #main-gallery-section .sidebar .sidebar-wrapper .slick-track {
    display: flex;
    align-items: center;
  }
  #main-gallery-section .sidebar .sidebar-wrapper .slick-prev {
    background-image: url("/assets/arrow-left.svg");
    margin-left: 6%;
  }
  #main-gallery-section .sidebar .sidebar-wrapper .slick-next {
    background-image: url("/assets/arrow-right.svg");
    margin-right: 6%;
  }
  #main-gallery-section .sidebar li {
    width: 30%;
    display: inline-block;
    text-align: center;
    margin-bottom: 0 !important;
  }
  #main-gallery-section .sidebar li.active:before {
    display: none;
  }
  #main-gallery-section .full-height {
    height: auto;
    margin-bottom: 20px;
  }
  #main-gallery-section .full-height .header-image {
    height: 33vh;
  }
  #main-gallery-section .main-gallery-container {
    margin-top: 90px;
  }
  #main-gallery-section .main-gallery-wrapper {
    margin: 0 6% 0 6%;
    justify-content: center;
  }
  #main-gallery-section .main-gallery-wrapper .item-wrapper {
    width: 50%;
    max-width: 310px;
  }
  #main-gallery-section .main-gallery-wrapper .item-wrapper .item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  #main-gallery-section .main-gallery-wrapper .item-wrapper:nth-child(odd) .item {
    margin-right: 10px;
  }
  #main-gallery-section .main-gallery-wrapper .item-wrapper:nth-child(2n) .item {
    margin-left: 10px;
  }
}
@media screen and (max-width: 360px) {
  #main-gallery-section .sidebar {
    font-size: 13px;
  }
}
#restaurant-image {
  background-image: url("/assets/gallery/interiors/interiors-8.jpg");
}

.tab-picker {
  display: flex;
  justify-content: center;
  gap: 0px;
  align-items: flex-end;
}
.tab-picker h1 {
  padding: 8px 24px;
  margin-left: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #C8C8C8;
}
.tab-picker h1:after {
  transition: inherit !important;
  width: auto !important;
  -webkit-transform: none !important;
          transform: none !important;
  height: 3px !important;
  left: 50%;
  right: 50%;
  bottom: -3px;
}
.tab-picker h1.active, .tab-picker h1:hover {
  background: white;
  color: #0066B3;
}
.tab-picker h1.active:after, .tab-picker h1:hover:after {
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .tab-picker h1 {
    font-size: 24px !important;
    flex: 0 0 50%;
    padding: 4px 8px;
  }
}

.tab-content {
  height: 0;
  overflow: hidden;
  transition: height 0.6s ease-in-out;
}
.tab-content.active {
  height: auto;
}

.veggies-section h2 {
  font-size: 30px;
  color: #0066B3;
}
.veggies-section > b {
  display: block;
  margin-top: 16px;
}
.veggies-section ul {
  list-style: disc;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.veggies-section p {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .veggies-section h2 {
    font-size: 20px;
  }
}

#weddings-image {
  background-image: url("/assets/gallery/wedding/wedding-1.jpg");
}

.small-gallery.weddings-page {
  margin-top: 140px;
}

.wedding-contact > img {
  height: 1em;
  width: 2em;
}

.wedding-contact > .info, .wedding-contact > img {
  vertical-align: middle;
}

@media screen and (max-width: 1366px) {
  .small-gallery.weddings-page {
    margin-top: 110px;
  }
}
@media screen and (max-width: 768px) {
  .small-gallery.weddings-page {
    margin-top: 65px;
  }
}
#spa-image {
  background-image: url("/assets/gallery/adria-spa-and-swimming-pool/adria-spa-and-swimming-pool-1.jpg");
}

#pool-wellness {
  color: #9A9A9A;
  margin-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  #pool-wellness {
    margin-bottom: 40px;
  }
}
#pool-wellness {
  margin-bottom: 30px;
}

#mice-image {
  background-image: url("/assets/gallery/conference-and-meetings/conference-and-meetings-1.jpg");
}

.seating-plan-container {
  background-color: #ffffff;
  padding: 2.5em;
}
.seating-plan-container .title {
  padding-bottom: 50px;
}

.rtable {
  display: flex;
  flex-wrap: wrap;
}
.rtable .rtable-cell {
  width: 10%;
  text-align: center;
  padding: 15px 0;
}
.rtable .rtable-cell:not(.rtable-header) {
  border-bottom: 1px solid #C8C8C8;
}
.rtable .collapse {
  display: flex;
  width: 80%;
}
.rtable .collapse .rtable-cell {
  width: 12.5%;
}
.rtable .rtable-header {
  line-height: 16px;
  font-size: 13px;
  color: #D2AB67;
}
.rtable .mobile-rtable-header {
  display: none;
}
.rtable .mobile-header-image {
  display: none;
}
.rtable .rtable-main-cell {
  width: 20%;
  color: #0066B3;
  text-align: left;
}

.expand {
  display: none;
  width: 1em;
  height: 5px;
  margin: 9px 0;
  float: right;
  background-image: url(/assets/arrow-down.svg);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.expand.active {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

@media screen and (max-width: 1366px) {
  .seating-plan-container .title {
    padding-bottom: 40px;
  }

  .rtable .rtable-cell {
    padding: 10px;
  }
  .rtable .rtable-header {
    line-height: 14px;
    font-size: 11px;
  }
}
@media screen and (max-width: 1024px) {
  .seating-plan-container .title {
    padding-bottom: 40px;
  }

  .expand {
    display: inline-block;
  }

  .rtable {
    flex-direction: column;
  }
  .rtable .rtable-header {
    display: none;
  }
  .rtable .mobile-rtable-header {
    display: inline-block;
    color: #D2AB67;
    font-weight: 400;
  }
  .rtable .mobile-header-image {
    display: inline-block;
    height: 25px;
    margin: 5px 0;
    width: 50px;
    vertical-align: middle;
    float: right;
  }
  .rtable .rtable-cell {
    width: 100%;
    padding: 20px 0;
    text-align: left;
  }
  .rtable .rtable-main-cell {
    border-bottom: none !important;
  }
  .rtable .collapse {
    flex-direction: column;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }
  .rtable .collapse .rtable-cell {
    width: 100%;
    font-size: 13px;
    padding: 0;
    line-height: 35px;
    height: 35px;
    border-bottom: none;
  }
  .rtable .collapse .rtable-cell:last-child {
    margin-bottom: 20px;
  }
  .rtable .collapse:not(:first-child) + .rtable-main-cell {
    border-top: 1px solid #C8C8C8;
  }
}
#contact-image {
  background-image: url("/assets/gallery/interiors/interiors-1.jpg");
}

.contact-page #footer-container .item {
  width: 50%;
}
.contact-page #contact-section {
  margin: 140px 0;
}
.contact-page #contact-section .title, .contact-page #contact-section .backdrop {
  display: none;
}
.contact-page#map {
  height: 60vh;
  width: 100%;
}

@media screen and (max-width: 1366px) {
  .contact-page#contact-section {
    margin: 100px 0;
  }
}
@media screen and (max-width: 1024px) {
  .contact-page #footer-container .item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact-page#contact-section {
    margin: 65px 0;
  }
}
.offer-page {
  text-align: left;
}
.offer-page h5 {
  color: #0066B3;
  margin: 32px 0;
  font-size: 24px;
}
.offer-page p {
  margin: 16px 0;
}
.offer-page ul {
  list-style: initial;
}

.special-offer-page .grid .row .col-4 {
  width: 33%;
  margin: 0;
}
.special-offer-page .card {
  padding: 30px;
  margin: 16px;
}
.special-offer-page .card .card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-height: 250px;
}
.special-offer-page .card .card-title {
  color: #D2AB67;
  font-size: 24px;
}
.special-offer-page .card .card-text {
  color: #414141;
  font-size: 18px;
}
.special-offer-page .card .card-title, .special-offer-page .card .card-text, .special-offer-page .card .gold-button {
  margin-top: 16px;
}
.special-offer-page .card .gold-button {
  display: inline-block;
  width: 160px;
  height: 60px;
  line-height: 60px;
}

@media screen and (max-width: 1366px) {
  .special-offer-page .grid .row .col-4 {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .special-offer-page {
    margin: 0 !important;
  }
  .special-offer-page .grid .row .col-4 {
    width: 100%;
  }
  .special-offer-page .card .card-body {
    text-align: center;
  }
  .special-offer-page .card .gold-button {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .special-offer-page .card {
    padding: 0 16px 16px;
    margin: 0 0 24px;
  }
  .special-offer-page .card .card-img-container {
    margin: 0 -16px;
  }
}
#transfers-image {
  background-image: url("/assets/gallery/exterior/exterior-6.jpg");
}

.transfers-page .bullets {
  padding-top: 0;
  padding-bottom: 2em;
}
.transfers-page .transfers-info {
  max-width: 800px;
  margin: 0 auto;
}
.transfers-page .transfers-header {
  text-align: center;
  border-bottom: 1px solid #D2AB67;
  padding-bottom: 0.5em;
}
.transfers-page .transfers-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #C8C8C8;
  padding: 0.5em 0;
}
.transfers-page .transfers-wrapper .transfers-vehicle {
  width: 15%;
}
.transfers-page .transfers-wrapper .transfers-price {
  width: 55%;
}
.transfers-page .transfers-wrapper .transfers-capacity {
  width: 30%;
}
.transfers-page #contact-container {
  margin-top: 3em;
  margin-bottom: 4em;
}
.transfers-page #contact-container .inner .item:nth-child(1), .transfers-page #contact-container .inner .item:nth-child(2) {
  width: 50%;
}
.transfers-page #contact-container .inner .item:nth-child(3) {
  width: 100%;
}
.transfers-page #contact-container .inner .item:nth-child(4) {
  width: 100%;
  padding: 2em 5% 0 6%;
}

.lds-facebook {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 100%;
}

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #D2AB67;
  -webkit-animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
  left: 6px;
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
  left: 26px;
  -webkit-animation-delay: -0.12s;
          animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
  left: 45px;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

@-webkit-keyframes lds-facebook {
  0% {
    height: 100%;
  }
  50%, 100% {
    height: 50%;
  }
}

@keyframes lds-facebook {
  0% {
    height: 100%;
  }
  50%, 100% {
    height: 50%;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.no-bottom-margin {
  margin-bottom: 0 !important;
}

.book-form-page h3 {
  font-size: 32px;
}
.book-form-page .room-title {
  display: none;
  flex-basis: 100%;
  padding-left: 16px;
  margin-top: 16px;
  position: relative;
  font-size: 20px;
  padding-bottom: 8px;
}
.book-form-page .room-title:after {
  position: absolute;
  left: 16px;
  bottom: -2px;
  height: 2px;
  background: #999;
  display: block;
  content: "";
  width: 30px;
}
.book-form-page .room-title.active {
  display: block;
}
.book-form-page .travel-cont, .book-form-page .contact-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: flex-start;
}
@media (max-width: 950px) {
  .book-form-page .travel-cont, .book-form-page .contact-cont {
    justify-content: center;
  }
}
.book-form-page.hm10 {
  margin: 0 calc(10% - 64px);
}
.book-form-page form {
  padding: 64px;
  background: white;
  border: 1px solid #D2AB67;
}
.book-form-page .form-cont {
  width: 30%;
  margin: 16px 16px 0;
  position: relative;
  max-width: 320px;
}
.book-form-page .form-cont .selectric, .book-form-page .form-cont .selectric .label, .book-form-page .form-cont input, .book-form-page .form-cont textarea {
  width: 100%;
  height: 48px;
  line-height: 48px;
  min-height: 48px;
}
.book-form-page .form-cont textarea {
  min-height: 160px;
}
.book-form-page .contact-cont input, .book-form-page .contact-cont textarea {
  padding-left: 10px;
}
.book-form-page .date-from, .book-form-page .date-to {
  font-size: 1em;
  color: #5698D2;
  background-color: #ffffff !important;
  width: 100%;
  height: 100%;
  border: 1px solid #9A9A9A;
  text-align: center !important;
}
.book-form-page .date-from::-webkit-input-placeholder, .book-form-page .date-to::-webkit-input-placeholder {
  color: #5698D2;
}
.book-form-page .date-from:-ms-input-placeholder, .book-form-page .date-to:-ms-input-placeholder {
  color: #5698D2;
}
.book-form-page .date-from::-ms-input-placeholder, .book-form-page .date-to::-ms-input-placeholder {
  color: #5698D2;
}
.book-form-page .date-from::placeholder, .book-form-page .date-to::placeholder {
  color: #5698D2;
}
.book-form-page .adult-cont, .book-form-page .child-cont {
  display: none;
}
.book-form-page .adult-cont.active, .book-form-page .child-cont.active {
  display: block;
}
.book-form-page .contact-title {
  margin-top: 24px;
}
.book-form-page .form-title {
  margin-bottom: 24px;
  padding-bottom: 24px;
  position: relative;
  text-transform: uppercase;
}
.book-form-page .form-title:after {
  content: " ";
  width: 48px;
  border-top: 2px solid #0066B3;
  position: absolute;
  bottom: 0;
  left: 0;
}
.book-form-page .form-title h3 {
  color: #0066B3;
}
.book-form-page .form-label {
  font-size: 14px;
  color: black;
}
.book-form-page .star {
  color: #D2AB67;
  font-size: 18px;
}
.book-form-page .not-member-text {
  position: absolute;
  font-size: 14px;
  width: 320px;
  left: 0;
  bottom: -52px;
  line-height: 24px;
  color: black;
  font-weight: 500;
}
.book-form-page .not-member-text a {
  cursor: pointer;
  color: #D2AB67;
  font-weight: bold;
}
.book-form-page .gold-button {
  display: inline-block;
  padding: 0 24px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto;
}
.book-form-page .required-notice {
  margin-top: 16px;
  font-size: 16px;
  text-align: left;
}
.book-form-page .button-container {
  margin-top: 16px;
  text-align: center;
}
.book-form-page.send-booking {
  margin-bottom: 64px;
  padding: 64px;
  border: 1px solid #0066B3;
  color: black;
  background: transparent;
  font-weight: 500;
  text-align: center;
}
.book-form-page.send-booking .form-title:after {
  left: calc(50% - 24px);
}
.book-form-page.send-booking .text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
}
@media screen and (max-width: 1500px) {
  .book-form-page .form-cont {
    width: 48%;
    text-align: center;
  }
  .book-form-page .form-cont .selectric, .book-form-page .form-cont input, .book-form-page .form-cont textarea {
    margin-left: auto;
    margin-right: auto;
  }
  .book-form-page .not-member-text {
    left: calc(50% - 160px);
  }
  .book-form-page .form-title {
    text-align: center;
  }
  .book-form-page .form-title:after {
    left: calc(50% - 24px);
  }
  .book-form-page .contact-title {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .book-form-page.hm10 {
    margin: 0 calc(10% - 32px);
  }
  .book-form-page .room-title {
    text-align: center;
  }
  .book-form-page .room-title:after {
    left: calc(50% - 15px);
  }
  .book-form-page form {
    padding: 32px;
    background: white;
  }
  .book-form-page .form-cont {
    width: 100%;
  }
  .book-form-page .not-member-text {
    position: relative;
    left: auto;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    top: auto;
    bottom: auto;
  }
  .book-form-page .required-notice {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
  .book-form-page.send-booking {
    padding: 32px;
    margin-bottom: 64px;
  }
  .book-form-page.send-booking .text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 360px) {
  .book-form-page.hm10 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .book-form-page form, .book-form-page.send-booking {
    padding: 16px;
  }
}

body, html {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 35px;
  color: #9A9A9A;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Lora", serif;
  font-weight: 400;
}

h1, h2 {
  font-size: 50px;
  line-height: 60px;
  font-family: "Lora", serif;
}

h3 {
  font-size: 40px;
  line-height: 49px;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

.hm10 {
  margin: 0 10%;
}

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

.img-cover {
  background-size: cover;
  background-position: 50%;
}

.shadow {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.15);
}

.blue {
  color: #0066B3;
}

.gold {
  color: #D2AB67;
}

.regular {
  font-weight: 400;
}

.main-container {
  margin-top: 80px;
}

.main-section {
  margin-top: 68px;
  margin-bottom: 68px;
}

#notif-holder {
  display: none;
  position: fixed;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid white;
  background: #0066B3;
  padding: 1em 1.5em;
  z-index: 10001;
}
#notif-holder.show {
  display: block;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
          animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.full-height {
  height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
}
.full-height .header-image {
  flex-grow: 1;
}

.info-box {
  margin: 0 auto;
  width: 850px;
  padding: 3em 3em 3em 6em;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-box .gold-button {
  display: inline-block;
}

.header-image {
  width: 100%;
  height: 33vw;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.title {
  color: #0066B3;
  font-family: "Lora", serif;
  position: relative;
  padding-bottom: 65px;
}
.title:after {
  position: absolute;
  left: 0;
  display: block;
  content: " ";
  height: 1px;
  bottom: 32.5px;
  width: 40px;
  border-top: 1px solid #D2AB67;
}
.title.center {
  text-align: center;
}
.title.center:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.button-responsive {
  line-height: 24px;
  display: inline-block;
  padding: 24px 48px;
}

.gold-button {
  color: #D2AB67;
  border: 1px solid #D2AB67;
  font-family: "Lora", serif;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}

.segments-container {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.segments-container .segment {
  width: calc(50% - 55px);
}

.cc-window {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5) !important;
}
.cc-window .cc-window-inner {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  background: #0066B3;
  padding: 20px;
}
.cc-window .cc-window-inner .cc-compliance {
  flex-shrink: 0;
}

.segment.single {
  margin-top: 40px;
}

#special-offer {
  padding: 140px 0;
}

.see-more {
  padding-top: 140px;
  text-align: center;
}

.small-gallery {
  padding: 0 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.small-gallery .item {
  height: 200px;
  width: 200px;
  margin: 20px;
  position: relative;
}
.small-gallery .item a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media screen and (max-width: 1240px) {
  .full-height {
    height: calc(100vh - 85px);
  }

  .main-container {
    margin-top: 85px !important;
  }
}
@media screen and (max-width: 1366px) {
  body, html {
    font-size: 15px;
    line-height: 25px;
  }

  .title {
    padding-bottom: 50px;
  }
  .title:after {
    bottom: 25px;
  }

  .main-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  h1, h2 {
    font-size: 40px;
    line-height: 49px;
  }

  h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .info-box {
    width: 600px;
  }

  .segments-container {
    margin-top: 30px;
  }
  .segments-container .segment {
    width: calc(50% - 40px);
  }

  .segment.single {
    margin-top: 30px;
  }

  #special-offer {
    padding: 110px 0;
  }

  .see-more {
    padding-top: 110px;
  }

  .small-gallery {
    padding: 0 40px;
  }
  .small-gallery .item {
    width: 150px;
    height: 150px;
  }

  .button-responsive {
    line-height: 18px;
    padding: 18px 36px;
  }
}
@media screen and (max-width: 1024px) {
  .small-gallery {
    display: block;
    overflow: hidden;
  }
  .small-gallery .item {
    display: block;
    float: left;
    height: 200px;
    width: 200px;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  .small-gallery .item:nth-child(odd) {
    margin-left: calc(50% - 215px);
    margin-right: 1em;
  }
  .small-gallery .item:nth-child(even) {
    margin-right: calc(50% - 215px);
    margin-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  body, html {
    font-size: 13px;
    line-height: 23px;
  }

  .hm10 {
    margin: 0 6%;
  }

  h1, h2 {
    font-size: 30px;
    line-height: 36px;
  }

  h3 {
    font-size: 25px;
    line-height: 31px;
  }

  .title {
    padding-bottom: 1.5em;
  }
  .title:after {
    bottom: 0.75em;
  }

  .main-section {
    margin-top: 26px;
    margin-bottom: 26px;
  }

  .segments-container {
    margin-top: 0;
  }
  .segments-container .segment {
    width: 100%;
  }

  .segment.single {
    margin-top: 15px;
  }

  .info-box {
    padding: 2.5em;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .info-box .gold-button {
    margin-top: 2.5em;
  }

  #special-offer {
    padding: 65px 0;
  }

  .see-more {
    padding-top: 65px;
  }

  .small-gallery .item {
    height: 150px;
    width: 150px;
  }
  .small-gallery .item:nth-child(odd) {
    margin-left: calc(50% - 165px);
  }
  .small-gallery .item:nth-child(even) {
    margin-right: calc(50% - 165px);
  }

  .g-recaptcha {
    -webkit-transform: scale(0.77);
            transform: scale(0.77);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@media screen and (max-width: 360px) {
  body, html {
    font-size: 13px;
    line-height: 23px;
  }

  .title {
    padding-bottom: 1.5em;
  }
  .title:after {
    bottom: 0.75em;
  }

  .hm10 {
    margin: 0 6%;
  }

  h1, h2 {
    font-size: 30px;
    line-height: 36px;
  }

  h3 {
    font-size: 25px;
    line-height: 31px;
  }

  .main-section {
    margin-top: 26px;
    margin-bottom: 26px;
  }

  .flatpickr-calendar {
    right: 0 !important;
    left: 0 !important;
    margin: 0 auto !important;
  }
}
.grid {
  /* ==== GRID SYSTEM ==== */
}
.grid .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.grid .row {
  position: relative;
  width: 100%;
}
.grid .row [class^=col] {
  float: left;
  margin: 0.5rem 0;
  min-height: 0.125rem;
}
.grid .col-1,
.grid .col-2,
.grid .col-3,
.grid .col-4,
.grid .col-5,
.grid .col-6,
.grid .col-7,
.grid .col-8,
.grid .col-9,
.grid .col-10,
.grid .col-11,
.grid .col-12 {
  width: 96%;
}
.grid .col-1-sm {
  width: 4.33%;
}
.grid .col-2-sm {
  width: 12.66%;
}
.grid .col-3-sm {
  width: 21%;
}
.grid .col-4-sm {
  width: 29.33%;
}
.grid .col-5-sm {
  width: 37.66%;
}
.grid .col-6-sm {
  width: 46%;
}
.grid .col-7-sm {
  width: 54.33%;
}
.grid .col-8-sm {
  width: 62.66%;
}
.grid .col-9-sm {
  width: 71%;
}
.grid .col-10-sm {
  width: 79.33%;
}
.grid .col-11-sm {
  width: 87.66%;
}
.grid .col-12-sm {
  width: 96%;
}
.grid .row::after {
  content: "";
  display: table;
  clear: both;
}
.grid .hidden-sm {
  display: none;
}
@media only screen and (min-width: 33.75em) {
  .grid {
    /* 540px */
  }
  .grid .container {
    width: 80%;
  }
}
@media only screen and (min-width: 45em) {
  .grid {
    /* 720px */
  }
  .grid .col-1 {
    width: 4.33%;
  }
  .grid .col-2 {
    width: 12.66%;
  }
  .grid .col-3 {
    width: 21%;
  }
  .grid .col-4 {
    width: 29.33%;
  }
  .grid .col-5 {
    width: 37.66%;
  }
  .grid .col-6 {
    width: 46%;
  }
  .grid .col-7 {
    width: 54.33%;
  }
  .grid .col-8 {
    width: 62.66%;
  }
  .grid .col-9 {
    width: 71%;
  }
  .grid .col-10 {
    width: 79.33%;
  }
  .grid .col-11 {
    width: 87.66%;
  }
  .grid .col-12 {
    width: 96%;
  }
  .grid .hidden-sm {
    display: block;
  }
}
@media only screen and (min-width: 60em) {
  .grid {
    /* 960px */
  }
  .grid .container {
    width: 75%;
    max-width: 60rem;
  }
}

.image-slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.image-slider .slick-list,
.image-slider .slick-track,
.image-slider .slick-slide div {
  height: 100%;
}
.image-slider .slick-dots {
  position: relative;
  margin-top: -35px;
  z-index: 1;
  bottom: 0;
  display: inline-block;
  left: calc(50% - 36px);
  width: auto;
}
.image-slider .slick-dots li {
  width: 8px;
}
.image-slider .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  content: " ";
  border-radius: 50%;
  opacity: 1;
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.image-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  width: 8px;
  height: 8px;
  background: #0066b3;
}
.image-slider .slick-slide {
  padding-right: 0;
}

#modal-booking-form {
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: right 0.4s ease;
  background: #1A272F;
}
#modal-booking-form.active {
  right: 0;
  transition: right 0.4s ease;
}
#modal-booking-form .room-container, #modal-booking-form .persons-container {
  display: inline-block;
  width: calc(50% - 8px);
}
#modal-booking-form .check-date {
  display: none;
}
#modal-booking-form .inner {
  padding: 16px;
}
#modal-booking-form .close-btn {
  text-align: right;
}
#modal-booking-form .close-btn svg {
  cursor: pointer;
}
#modal-booking-form #modal-text {
  width: 100%;
  font-size: 24px;
}
#modal-booking-form .modal-label {
  font-size: 13px;
  margin-top: 4px;
}
#modal-booking-form .date-from-to-label {
  margin-top: 12px;
}
#modal-booking-form .date-from-to-cont {
  position: relative;
  margin-top: 4px;
  width: 100%;
}
#modal-booking-form .date-from-to-cont .flatpickr-calendar {
  top: 0 !important;
}
#modal-booking-form .date-from-to-cont .date-from-to {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: white;
  color: black;
  padding-left: 10px;
}
#modal-booking-form .modal-body {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
}
#modal-booking-form .child-2-container {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: height 0.3s ease;
}
#modal-booking-form .child-2-container.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: height 0.3s ease;
}
#modal-booking-form .persons-container, #modal-booking-form .room-container {
  margin-top: 8px;
}
#modal-booking-form .persons-container {
  margin-left: 16px;
  position: relative;
}
#modal-booking-form .persons.input-container {
  background: white;
  color: black;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
}
#modal-booking-form .selectric {
  height: 40px;
  line-height: 40px;
}
#modal-booking-form .selectric .label {
  font-size: 14px;
}
#modal-booking-form .person-container {
  margin-top: 12px;
}
#modal-booking-form .button-container {
  width: 100%;
  margin-top: 24px;
}
#modal-booking-form .overflow-cont {
  position: relative;
  height: calc(100% - 24px);
  overflow: auto;
  width: calc(100% + 24px);
  padding-right: 24px;
  overflow-y: visible;
}
#modal-booking-form .value {
  line-height: 28px;
}
#modal-booking-form .persons-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  z-index: -1;
  display: none;
}
#modal-booking-form .persons-modal.active {
  z-index: 10;
  display: block;
}
#modal-booking-form .persons-modal .close-btn svg {
  cursor: pointer;
  width: 16px;
  height: 16px;
}
#modal-booking-form .persons-modal .close-btn svg * {
  stroke: #D2AB67;
}
#modal-booking-form .promo-label {
  margin-top: 24px;
}
#modal-booking-form .promo-label a {
  color: #D2AB67;
  text-decoration: underline;
}
#modal-booking-form .promo input {
  height: 0;
  visibility: hidden;
  width: 100%;
  transition: height 0.4s ease;
}
#modal-booking-form .promo input.active {
  height: 40px;
  visibility: visible;
  transition: height 0.4s ease;
}
#modal-booking-form .promo-container {
  width: 100%;
  height: 55px;
}
#modal-booking-form .promo-container.active {
  height: auto;
}
#modal-booking-form .promo.input-container {
  padding-bottom: 20px;
}
#modal-booking-form .more-children {
  margin-top: 12px;
}
#modal-booking-form .more-children .gold-button {
  margin-top: 4px;
  height: 40px;
  line-height: 40px;
}
#modal-booking-form .gold-button {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #D2AB67;
  color: white;
}
#modal-booking-form .per-room-cont {
  display: none;
}
#modal-booking-form .per-room-cont.active {
  display: block;
}
#modal-booking-form .room-title {
  margin-top: 16px;
}
#modal-booking-form .gray-seperator {
  border-color: #9A9A9A;
}
@media screen and (max-width: 360px) {
  #modal-booking-form .room-container, #modal-booking-form .persons-container {
    width: 100%;
    margin-left: 0;
  }
}