@charset "UTF-8";

@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"),
    url("../fonts/Satoshi-Regular.woff") format("woff"),
    url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("../fonts/Satoshi-Italic.woff2") format("woff2"),
    url("../fonts/Satoshi-Italic.woff") format("woff"),
    url("../fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"),
    url("../fonts/Satoshi-Medium.woff") format("woff"),
    url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

body {
  font-family: "Satoshi-Regular", var(--default-font-family);
}
.carousel-title small,
.review_text {
  font-family: "Satoshi-Italic", var(--default-font-family);
}
.bold-text,
.slider-map-link a,
.slider-reservation-link a,
.accommodation-link,
.footer h3,
a.footer-reservation-link {
  font-family: "Satoshi-Medium", var(--default-font-family);
}

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --size: 15px;
  --radius: 30px;
  --headings-font-family: "the-seasons", var(--default-font-family);
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --white: #fff;
  --black: #000;
  --main-color: #fff; /* text */
  --main-color-hover: #d6b469; /* text hover */
  --main-bg-color: #000; /* bg */
  --main-bg-color-grey: #171717; /* tmava siva */
  --main-bg-color-grey-light: #343434; /* svetla siva */
  --main-bg-color-custom: #d6b469; /* zlata */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
}

html {
  font-size: 18px;
}
body {
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color);
}
h1,
h2,
h3,
h4 {
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: var(--main-color);
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
.nav-button-custom {
  isolation: isolate;
}
.nav-button-custom a {
  font-size: 1rem;
  color: var(--main-color);
  margin-top: 25px;
  margin-bottom: 25px;
  border-bottom: 0;
}
.nav-button-custom a i {
  color: var(--main-bg-color-custom);
  -webkit-transform: translateY(8px);
  transform: translateX(8px);
  transition: all 0.3s ease;
}
.nav-button-custom a:hover i {
  -webkit-transform: translateY(12px);
  transform: translateX(12px);
}
.nav-button-custom:before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 62px;
  height: 62px;
  content: "";
  background: url("../images/icon-nav-button-custom.svg") right 50% no-repeat;
  background-size: contain;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  filter: invert(84%) sepia(13%) saturate(1337%) hue-rotate(355deg)
    brightness(88%) contrast(90%);
  z-index: -1;
}
.button-gap {
  gap: 1rem;
}
.btn.btn-custom {
  padding: 1rem 3.5rem;
  font-size: 1rem;
  color: var(--white);
  border: 1.5px solid var(--main-bg-color-custom);
}
.btn.btn-custom:hover {
  color: var(--black);
  background-color: var(--main-bg-color-custom);
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.box_margin {
  margin-bottom: calc(var(--size) * 2);
}
.box_margin2 {
  margin-bottom: var(--size);
}
.box_margin3 {
  margin-bottom: calc(var(--size) * 4);
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 6);
  padding-bottom: calc(var(--size) * 6);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.radius-default {
  border-radius: var(--radius);
}
.radius-xl {
  border-radius: calc(var(--radius) * 1.33);
}
.color-custom {
  color: var(--main-bg-color-custom);
}
.row-smaller-gutters {
  margin-left: -7px;
  margin-right: -7px;
}
.row-smaller-gutters > [class^="col-"],
.row-smaller-gutters > [class*=" col-"] {
  padding-left: 7px;
  padding-right: 7px;
}
.container_bg__light {
  background-color: var(--main-bg-color-grey-light);
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}
.container_bg__custom {
  background-color: var(--main-bg-color-custom);
}
.container_bg_img {
  top: 0;
  left: var(--size);
  width: calc(100% - var(--size));
  height: 100%;
}

.title_box {
  position: relative;
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-regular);
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(26px + (34 - 26) * ((100vw - 320px) / (1920 - 320)));
}
.title_box__md :is(h1, h2) {
  font-size: calc(36px + (54 - 36) * ((100vw - 320px) / (1920 - 320)));
}
.title_box__xl :is(h1, h2) {
  font-size: calc(55px + (150 - 55) * ((100vw - 320px) / (1920 - 320)));
  font-weight: var(--font-weight-light);
}
.title_box small {
  font-size: inherit;
  color: var(--main-bg-color-custom);
}
.title__border {
  padding-top: 2rem;
}
.title__border:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 165px;
  height: 1.5px;
  content: "";
  background-color: var(--main-bg-color-custom);
}

/* Animate */

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.zoomOut {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1s;
}

/* Header ............................................................... */

.header-section {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1000;
}
.header-section.scroll {
  position: fixed;
  background-color: var(--main-bg-color-grey);
  -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main_logo {
  z-index: 100;
}
.main_logo img {
  width: 120px;
}
.main_logo.scroll img {
  width: 70px;
}

.header-button a {
  font-size: 1.16rem;
  color: var(--main-color);
  text-align: center;
  background-color: transparent;
  padding: 0.5rem 3rem;
  border: 1.5px solid var(--main-bg-color-custom);
}
.header-button a:hover {
  color: var(--black);
  background-color: var(--main-bg-color-custom);
}

.language-picker {
  display: flex;
  align-items: center;
  position: relative;
  border-left: 1px solid var(--main-bg-color-custom);
}
.language-picker-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.language-picker select {
  border: none;
  font-size: 1rem;
  background: transparent;
  color: var(--white);
  padding-right: 25px;
  appearance: none;
}
.language-picker select:focus {
  outline: none;
}
.language-picker option {
  color: var(--black);
  background-color: var(--white);
}
.language-picker-wrapper i {
  position: absolute;
  right: 0;
  font-size: 1rem;
  color: var(--white);
  pointer-events: none;
}

.navigation_wrapper {
  padding-left: 250px;
}
.mainNavigation {
  padding: 0;
}
.mainNavigation .navbar-nav {
  margin: 0;
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: 1.16rem;
  color: var(--main-color) !important;
  line-height: 40px;
  margin-right: 40px;
  padding: 0 !important;
  border-bottom: 0;
}
.mainNavigation a.nav-link:hover {
  color: var(--main-color-hover) !important;
}
.mainNavigation .nav-item:last-child a.nav-link {
  margin-right: 0 !important;
}
.mainNavigation a.nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation a.nav-link span:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--main-bg-color-custom);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}
.mainNavigation li.dropdown a.nav-link:hover span:after {
  display: none;
}

.mainNavigation .dropdown-menu {
  min-width: 480px;
  background-color: var(--white);
  margin-top: 0;
  padding: 2.5rem;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.mainNavigation .dropdown-menu h3 {
  font-family: var(--headings-font-family);
  /* font-size: 1.66rem; */
  font-size: 1.36rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #d6b469;
}
.mainNavigation .dropdown-menu a.dropdown-item {
  position: relative;
  font-size: 1.33rem !important;
  color: var(--black);
  line-height: 30px !important;
  background-color: transparent;
  margin-left: 0 !important;
  padding-left: 24px;
  border-bottom: 0;
  z-index: 1100;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover {
  color: var(--main-color-hover);
}
.mainNavigation .dropdown-menu a.dropdown-item:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background-color: var(--main-bg-color-custom);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Dropdown Transition */

.mainNavigation .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.mainNavigation .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: 0.5s ease all;
}

/* Rslider ............................................................... */

.slider-wrapper .owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.slider-wrapper .owl-carousel .owl-animated-in {
  z-index: 0;
}
.slider-wrapper .owl-carousel .owl-animated-out {
  z-index: 1;
}
.fadeOutScale {
  animation-name: fadeOutScale;
}
@keyframes fadeOutScale {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeInScale {
  animation-name: fadeInScale;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slider-wrapper {
  width: 100%;
  height: 85vh;
}
.slider-wrapper .owl-carousel,
.slider-wrapper .item {
  height: 85vh;
}
.slider-wrapper-in {
  height: 40vh;
}
.slider-wrapper-in .owl-carousel,
.slider-wrapper-in .item {
  height: 40vh;
}
.carousel-content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.5);
}
.carousel-title {
  font-family: var(--headings-font-family);
  font-size: calc(30px + (54 - 30) * ((100vw - 320px) / (1920 - 320)));
  font-weight: var(--font-weight-regular);
  color: var(--white);
  line-height: 1.2;
}
.carousel-title small {
  font-size: inherit;
  color: var(--main-bg-color-custom);
}
.tripadvisor-logo img {
  width: 110px !important;
}
.slider-image {
  position: absolute;
  top: 0;
  left: 0;
}
.slider-image img {
  position: relative;
  z-index: -5;
}
.black-gradient {
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, var(--black), rgba(0, 0, 0, 0));
  z-index: 1;
}
.slider-map-link,
.slider-reservation-link {
  bottom: 2rem;
  line-height: 1.2;
  z-index: 700;
}
.slider-map-link {
  left: calc(var(--size) * 6);
}
.slider-map-link a {
  font-size: 1rem;
  color: var(--white);
  width: 125px;
  height: 125px;
  border-width: 2px !important;
  border-style: solid;
  border-color: var(--white);
}
.slider-map-link a:hover {
  border-color: var(--main-bg-color-custom);
}
.slider-map-link a img {
  width: 28%;
  filter: invert(84%) sepia(13%) saturate(1337%) hue-rotate(355deg)
    brightness(88%) contrast(90%);
}
.slider-reservation-link {
  right: calc(var(--size) * 6);
}
.slider-reservation-link a {
  font-size: 1rem;
  color: var(--black);
  width: 200px;
  height: 200px;
  background-color: var(--main-bg-color-custom);
  border: 0;
}
.slider-reservation-link a img {
  width: 28%;
}
.slider-map-link:hover,
.slider-reservation-link:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* Main-Content ............................................................... */

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
.background-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)) fill 1;
}

/* Video */

.video_container {
  height: 800px;
}
.video_container a.img-nav {
  isolation: isolate;
}
.video_container a.img-nav:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0);
}
.video_container a.img-nav:hover:before {
  background: rgba(0, 0, 0, 0.3);
}
.video_container a.img-nav > img {
  z-index: -1;
}
.video_container a.img-nav .img-nav-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video_container a.img-nav .img-nav-icon img {
  width: 120px;
  opacity: 0.75;
}
.video_container a.img-nav:hover .img-nav-icon img {
  opacity: 1;
}

/* Accommodation */

.accommodationWrapper {
  position: relative;
}
.accommodationWrapper .owl-carousel {
  padding-left: calc(var(--size) * 7.33);
  padding-right: calc(var(--size) * 7.33);
}
.accommodationWrapper .owl-stage {
  display: flex;
}
.accommodationWrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.accommodationWrapper .owl-prev,
.accommodationWrapper .owl-next {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.66rem;
  color: var(--main-bg-color-custom);
  border: 1.5px solid var(--white) !important;
  border-radius: 50% !important;
  cursor: pointer;
}
.accommodationWrapper .owl-prev:hover,
.accommodationWrapper .owl-next:hover {
  background-color: var(--main-bg-color-custom) !important;
  border-color: var(--main-bg-color-custom) !important;
}
.accommodationWrapper .owl-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.accommodationWrapper .owl-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
a.accommodation-container {
  height: auto;
  isolation: isolate;
}
a.accommodation-container .offer__image {
  position: relative;
  width: 100%;
  z-index: -10;
}
a.accommodation-container:hover .offer__image {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.accommodation-content {
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 6rem 1.5rem 6rem;
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1)
    )
    fill 1;
}
.accommodation-title {
  font-family: var(--headings-font-family);
  font-size: 3rem;
  font-weight: var(--font-weight-regular);
  color: var(--white);
  margin-left: 1.5rem;
}
.accommodation-number {
  font-family: var(--headings-font-family);
  font-size: 5rem;
  font-weight: var(--font-weight-light);
  color: var(--main-bg-color-custom);
}
.accommodation-details {
  border-left: 1px solid var(--main-bg-color-custom);
  margin-left: 3rem;
  padding-left: 3rem;
}
.accommodation-description {
  margin-bottom: 1rem;
}
.accommodation-link {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.accommodation-link i {
  color: var(--main-bg-color-custom);
}

/* Offer */

a.offer-card {
  border-bottom: 0;
}
a.offer-card:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.offer-heading {
  top: 0;
  left: 0;
  width: 100%;
  border-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.9)
    )
    fill 1;
}
.offer-heading h3 {
  font-size: 1.33rem;
  color: var(--white);
}
.offer-group .col-md-4:nth-child(2) {
  margin-top: 6rem;
}

/* Reviews */

.reviewsWrapper {
  position: relative;
}
.reviewsWrapper .owl-carousel {
  padding-left: calc(var(--size) * 7.33);
  padding-right: calc(var(--size) * 7.33);
}
.reviewsWrapper .owl-stage {
  display: flex;
}
.reviewsWrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.reviewsWrapper .owl-prev,
.reviewsWrapper .owl-next {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.66rem;
  color: var(--main-bg-color-custom);
  border: 1.5px solid var(--white) !important;
  border-radius: 50% !important;
  cursor: pointer;
}
.reviewsWrapper .owl-prev:hover,
.reviewsWrapper .owl-next:hover {
  background-color: var(--main-bg-color-custom) !important;
  border-color: var(--main-bg-color-custom) !important;
}
.reviewsWrapper .owl-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.reviewsWrapper .owl-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.reviewsWrapper .item {
  padding-left: 5%;
  padding-right: 5%;
}
.review_text {
  font-size: 1.44rem;
  line-height: 1.2;

  display: -webkit-box;
    -webkit-line-clamp: 9;  /* limit to 5 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review_name {
  font-size: 0.89rem;
  color: var(--main-bg-color-custom);
}

/* Gallery */

.gallery-section:before {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 38%;
  max-width: 740px;
  height: 460px;
  background: url("../images/branch-overlay.jpg") right top no-repeat;
  background-size: contain;
  z-index: -1;
}
.gallery_container {
  margin-bottom: 14px;
}
a.gallery_nav:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* Room-Icons */

.col-xl-1-8 {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}
.icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-img {
  height: 60px;
  margin-bottom: 1rem;
}
.icon-container p {
  font-size: 1rem;
  color: var(--main-color-hover);
  margin: 0;
}

/* Gallery-Carousel */

.room-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.room-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.room-features li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--main-bg-color-custom);
}
a.booking-link {
  background-color: var(--main-bg-color-custom);
  color: var(--white);
  padding: 1.15rem 1rem 0.75rem 1rem;
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-regular);
  font-size: 2rem;
  text-transform: uppercase;
  border: none;
}
a.booking-link:hover {
  background-color: var(--white);
  color: var(--main-bg-color);
}

.galleryWrapper {
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
}
.galleryWrapper .owl-carousel {
  position: relative;
  height: 100%;
}
.galleryWrapper .owl-carousel div:not(.owl-controls) {
  height: auto !important;
}
.galleryWrapper .owl-stage {
  display: flex;
}
.galleryWrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.galleryWrapper .owl-carousel .owl-nav {
  height: 0;
  margin: 0;
}
.galleryWrapper .owl-prev,
.galleryWrapper .owl-next {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.66rem;
  color: var(--main-bg-color-custom);
  background-color: rgba(0, 0, 0, 0.5) !important;
  border: 1.5px solid var(--white) !important;
  border-radius: 50% !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.galleryWrapper .owl-prev:hover,
.galleryWrapper .owl-next:hover {
  background-color: var(--main-bg-color-custom) !important;
  border-color: var(--main-bg-color-custom) !important;
}
.galleryWrapper .owl-prev {
  left: 40px;
}
.galleryWrapper .owl-next {
  right: 40px;
}
.galleryWrapper .item > a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* Wellness-Types */

.wellness-section {
  position: relative;
}
.wellness-section:before {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 0;
  width: 38%;
  max-width: 740px;
  height: 460px;
  background: url("../images/branch-overlay.jpg") right top no-repeat;
  background-size: contain;
  z-index: -1;
}
.custom-card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.custom-card a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.custom-card .card-body {
  display: flex;
  flex-direction: column;
}
.custom-card .title-link {
  font-family: var(--headings-font-family);
  font-size: calc(22px + (32 - 22) * ((100vw - 320px) / (1920 - 320)));
  font-weight: var(--font-weight-regular);
  color: var(--main-color-hover);
  text-decoration: none;
  border-bottom: 0;
  transition: color 0.3s ease;
}
.custom-card .title-link:hover {
  color: var(--white);
}
.custom-card .card-text {
  color: var(--main-color);
}

/* Gift-Card */

a.gift-card-link {
  background-color: var(--main-bg-color-custom);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  padding: 3rem;
  border-bottom: 0;
}
a.gift-card-link:hover {
  color: var(--main-bg-color);
  background-color: var(--white);
}
a.gift-card-link div {
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-regular);
  font-size: calc(22px + (32 - 22) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.2;
}
a.gift-card-link i {
  font-size: calc(70px + (190 - 70) * ((100vw - 320px) / (1920 - 320)));
}

/* Footer ............................................................... */

.footer {
  font-size: 0.89rem;
}
.footer a {
  border-bottom: 0;
}
.footer h3 {
  font-size: inherit;
  color: var(--main-bg-color-custom);
  line-height: inherit;
}
.footer_top_logo img {
  width: 130px;
}
a.footer-reservation-link {
  font-size: 1.33rem;
  color: var(--black);
  background-color: var(--main-bg-color-custom);
  padding: 1rem 2rem;
  border-bottom: 0;
}
a.footer-reservation-link:hover {
  background-color: var(--white);
}
a.footer-reservation-link img {
  width: 30px;
}
.footer .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--main-color);
}

/* Effects ............................. */

a,
.btn.btn-custom,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.header-button a,
.slider-map-link,
.slider-reservation-link,
.video_container a.img-nav:before,
.video_container a.img-nav .img-nav-icon img,
a.accommodation-container .offer__image,
a.offer-card img,
.reviewsWrapper .owl-prev,
.reviewsWrapper .owl-next,
a.gallery_nav img,
a.booking-link,
.galleryWrapper .owl-prev,
.galleryWrapper .owl-next,
.galleryWrapper .item > a img,
.custom-card a img,
a.gift-card-link,
a.footer-reservation-link {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 17px;
  }
  .navigation_wrapper {
    padding-left: 120px;
  }
  .header-button a {
    font-size: 1.06rem;
  }
  .mainNavigation a.nav-link {
    font-size: 1.06rem;
  }
}

@media screen and (max-width: 1366px) {
  :root {
    --radius: 21px;
  }
  html {
    font-size: 16px;
  }
  .nav-button-custom a {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .nav-button-custom a i {
    -webkit-transform: translateY(4px);
    transform: translateX(4px);
  }
  .nav-button-custom a:hover i {
    -webkit-transform: translateY(8px);
    transform: translateX(8px);
  }
  .nav-button-custom:before {
    width: 44px;
    height: 44px;
  }
  .box_margin {
    margin-bottom: var(--size);
  }
  .box_margin3 {
    margin-bottom: calc(var(--size) * 2);
  }
  .box_padding {
    padding-left: calc(var(--size) * 4.66);
    padding-right: calc(var(--size) * 4.66);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .row-smaller-gutters {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row-smaller-gutters > [class^="col-"],
  .row-smaller-gutters > [class*=" col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
  .title__border:before {
    width: 120px;
  }
  .header-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main_logo img {
    width: 100px;
  }
  .main_logo.scroll img {
    width: 60px;
  }
  .header-button a {
    font-size: 1rem;
    padding: 0.35rem 1.5rem;
  }
  .navigation_wrapper {
    padding-left: 90px;
  }
  .mainNavigation a.nav-link {
    font-size: 1rem;
    line-height: 36px;
    margin-right: 30px;
  }
  .mainNavigation .dropdown-menu {
    min-width: 380px;
    padding: 2rem;
  }
  .mainNavigation .dropdown-menu h3 {
    font-size: 1.31rem;
    margin-bottom: 1.5rem;
  }
  .mainNavigation .dropdown-menu a.dropdown-item {
    font-size: 1.06rem !important;
    line-height: 20px !important;
    padding-left: 20px;
  }
  .mainNavigation .dropdown-menu a.dropdown-item:before {
    width: 8px;
    height: 8px;
  }
  .tripadvisor-logo img {
    width: 90px !important;
  }
  .slider-map-link {
    left: calc(var(--size) * 4.66);
  }
  .slider-map-link a {
    font-size: 0.8rem;
    width: 90px;
    height: 90px;
  }
  .slider-reservation-link {
    right: calc(var(--size) * 4.66);
  }
  .slider-reservation-link a {
    font-size: 0.87rem;
    width: 140px;
    height: 140px;
  }
  .video_container {
    height: 580px;
  }
  .video_container a.img-nav .img-nav-icon img {
    width: 90px;
  }
  .accommodationWrapper .owl-carousel {
    padding-left: calc(var(--size) * 5);
    padding-right: calc(var(--size) * 5);
  }
  .accommodationWrapper .owl-prev,
  .accommodationWrapper .owl-next {
    width: 60px;
    height: 60px;
  }
  a.accommodation-container {
    height: auto;
  }
  .accommodation-content {
    padding: 0 3rem 1.5rem 3rem;
  }
  .accommodation-title {
    font-size: 2.37rem;
  }
  .accommodation-number {
    font-size: 3.75rem;
  }
  .offer-heading h3 {
    font-size: 1.06rem;
  }
  .offer-group .col-md-4:nth-child(2) {
    margin-top: 5rem;
  }
  .reviewsWrapper .owl-carousel {
    padding-left: calc(var(--size) * 5);
    padding-right: calc(var(--size) * 5);
  }
  .reviewsWrapper .owl-prev,
  .reviewsWrapper .owl-next {
    width: 60px;
    height: 60px;
  }
  .review_text {
    font-size: 1.12rem;
  }
  .icon-img {
    height: 45px;
  }
  a.booking-link {
    padding: 0.85rem 1rem 0.55rem 1rem;
    font-size: 1.56rem;
  }
  .galleryWrapper .owl-prev,
  .galleryWrapper .owl-next {
    width: 60px;
    height: 60px;
  }
  .galleryWrapper .owl-prev {
    left: 30px;
  }
  .galleryWrapper .owl-next {
    right: 30px;
  }
  a.gift-card-link {
    padding: 2rem;
  }
  .footer_top_logo img {
    width: 90px;
  }
  a.footer-reservation-link {
    font-size: 1.09rem;
    padding: 0.5rem 1.5rem;
  }
  a.footer-reservation-link img {
    width: 22px;
  }
}

@media screen and (max-width: 1200px) {
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .navigation_wrapper {
    padding-left: 45px;
  }
  .mainNavigation a.nav-link {
    margin-right: 15px;
  }
  .slider-map-link {
    left: calc(var(--size) * 2);
  }
  .slider-reservation-link {
    right: calc(var(--size) * 1);
  }
  .video_container {
    height: 400px;
  }
  .video_container a.img-nav .img-nav-icon img {
    width: 60px;
  }
  .accommodationWrapper .owl-carousel {
    padding-left: calc(var(--size) * 4);
    padding-right: calc(var(--size) * 4);
  }
  .accommodationWrapper .owl-prev,
  .accommodationWrapper .owl-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .accommodationWrapper .owl-prev {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .accommodationWrapper .owl-next {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  a.accommodation-container {
    height: auto;
  }
  .accommodation-details {
    margin-left: 2rem;
    padding-left: 2rem;
  }
  .offer-group .col-md-4:nth-child(2) {
    margin-top: 3rem;
  }
  .reviewsWrapper .owl-carousel {
    padding-left: calc(var(--size) * 4);
    padding-right: calc(var(--size) * 4);
  }
  .reviewsWrapper .owl-prev,
  .reviewsWrapper .owl-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .reviewsWrapper .owl-prev {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .reviewsWrapper .owl-next {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .reviewsWrapper .item {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
  .col-xl-1-8 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .galleryWrapper .owl-prev,
  .galleryWrapper .owl-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .galleryWrapper .owl-prev {
    left: 15px;
  }
  .galleryWrapper .owl-next {
    right: 15px;
  }
}

@media screen and (max-width: 991px) {
  .btn.btn-custom {
    padding: 0.5rem 1.5rem;
  }
  .box_margin3 {
    margin-bottom: var(--size);
  }
  .box_padding {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 2);
    padding-bottom: calc(var(--size) * 2);
  }
  .header-section {
    position: fixed !important;
    background-color: var(--main-bg-color-grey);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    animation: none !important;
  }
  .header-section + div,
  .header-section + section {
    margin-top: 70px;
  }
  .main_logo img {
    width: 80px !important;
  }
  .slider-wrapper {
    height: 500px;
    margin-top: 65px;
  }
  .slider-wrapper .owl-carousel,
  .slider-wrapper .item {
    height: 500px;
  }
  .slider-wrapper-in {
    height: 250px;
  }
  .slider-wrapper-in .owl-carousel,
  .slider-wrapper-in .item {
    height: 250px;
  }
  .slider-map-link {
    left: var(--size);
  }
  .slider-reservation-link {
    right: var(--size);
  }
  .reviewsWrapper .owl-carousel {
    padding-left: 0;
    padding-right: 0;
  }
  .accommodationWrapper .owl-carousel {
    padding-left: 0;
    padding-right: 0;
  }
  .accommodationWrapper .owl-prev,
  .accommodationWrapper .owl-next {
    position: static;
    display: inline-block;
  }
  .accommodationWrapper .owl-prev {
    margin-right: 1rem;
  }
  .accommodationWrapper .owl-next {
    margin-left: 1rem;
  }
  .reviewsWrapper .owl-carousel {
    padding-left: 0;
    padding-right: 0;
  }
  .reviewsWrapper .owl-prev,
  .reviewsWrapper .owl-next {
    position: static;
    display: inline-block;
  }
  .reviewsWrapper .owl-prev {
    margin-right: 1rem;
  }
  .reviewsWrapper .owl-next {
    margin-left: 1rem;
  }
  .reviewsWrapper .item {
    padding-left: 0;
    padding-right: 0;
  }
  .col-xl-1-8 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --radius: 16px;
  }
  .custom-relative {
    position: relative;
  }
  .container_bg_img {
    left: 0;
    width: 100%;
    height: auto;
  }
  .accommodation-details {
    margin-left: 1rem;
    padding-left: 1rem;
  }
  .offer-group .col-md-4:nth-child(2) {
    margin-top: 0;
  }
  .gallery-section:before {
    display: none;
  }
  .icon-container p {
    font-size: 0.9rem;
  }
  .galleryWrapper {
    left: 0;
    width: 100%;
    height: auto;
  }
  .wellness-section:before {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .carousel-content {
    padding-top: 2rem;
  }
  .slider-reservation-link a {
    font-size: 0.6rem;
    width: 90px;
    height: 90px;
  }
  .accommodation-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)) fill 1;
  }
  .accommodation-details {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
  }
  .col-xl-1-8 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  a.gift-card-link {
    text-align: center;
    padding: 1.5rem;
  }
  a.gift-card-link i {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .video_container {
    height: 300px;
  }
}

.we_footbutton {
    color: #222222 !important;
}

.wellness-info .we_button[data-original-title="Kliknite pre pridanie, úpravu, odstránenie fotografii a videí."],
.room-info .we_button[data-original-title="Kliknite pre pridanie, úpravu, odstránenie fotografii a videí."] {
    position: absolute !important;
}

.roomdetails .pager {
    display: none;
}

/* custom */
@media screen and (min-width: 991px) and (max-width: 1700px) {
  .mainNavigation a.nav-link {
    font-size: 0.86rem;
  }

  .main_logo img {
    width: 80px;
 }

 .header-button a {
        font-size: 0.86rem;
    }
}

.wellness-info {
  height: auto !important;
}