/* FONTS  */
@font-face {
  font-family: 'Zeitung Pro Regular';
  src: url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.eot");
  src: url("/fonts/ZeitungPro-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.woff2") format("woff2"), url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.woff") format("woff"), url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zeitung Pro Bold';
  src: url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.eot");
  src: url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.woff2") format("woff2"), url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.woff") format("woff"), url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*
@font-face {
  font-family: 'Zeitung Pro Black';
  src: url("../fonts/ZeitungPro-Black.eot");
  src: url("../fonts/ZeitungPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/ZeitungPro-Black.woff2") format("woff2"), url("../fonts/ZeitungPro-Black.woff") format("woff"), url("../fonts/ZeitungPro-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}*/

/* VARIABLES */
:root {
  --fontRegular: 'Zeitung Pro Regular';
  --fontBold: 'Zeitung Pro Bold';
  --fontComfortaa: "Comfortaa", sans-serif;
 /* --fontBlack: 'Zeitung Pro Black';
  --fontLight: 'Zeitung Pro Light';*/
  
  --gray-main-color: #3d3d3d; /*main color -header*/
  --page-bg-color: #EDEEEE; 
  --gray-text-color:#3d3d3d; /*787878*/
  --gray-lines:#E4E4E4;
  --gray-light:#868686;
  --white-color: #fff;
  --header-hover-bg:#fff;
  --elements-bg:#CECFCF;
  
 
  --light-white: #f3f3f1;
  --white-minOpacity: rgba(241,241,242, 0.7);
  interpolate-size: allow-keywords;
}

/* BASIC SETTINGS  */
html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
html {
  scroll-behavior: smooth;
}*/

body {
  background: var(--page-bg-color);
  font-family: var(--fontComfortaa);
  /*font-weight: 400;*/
  font-size: 18px;
  line-height:1.8;
  color: var(--gray-text-color);
  text-align: left;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

button:focus,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}
/*
.row:after {
  content: "";
  display: table;
  clear: both;
}*/

ul li {
  list-style: none;
}

.white-color {
          color: var(--white-color)!important;
}
a {
    color: var(--gray-main-color);
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
    .hidden-mobile {
        display:none!important;
    }
}
@media screen and (max-width: 991px) {
    .hidden-md {
        display:none!important;
    }
}

/*HEADINGS
==================================*/
h1, h2, h3, h4, 
.h1, .h2, .h3, .h4 {
  text-transform: uppercase;
  font-family: var(--fontRegular);
  color: var(--gray-main-color);
  margin-bottom: 30px;
}

h1, .h1 {
  font-size: 40px;
  letter-spacing: 4.8px;
}
h2, .h2 {
  font-size: 30px;
  letter-spacing: 3.6px;
}
h3, .h3 {  
   font-family: var(--fontBold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
h4, .h4 {
  font-family: var(--fontBold);
  font-size: 16px;
  letter-spacing: 1.6px;
  margin-bottom: 25px;
}
.subtitle {
    font-family: var(--fontComfortaa);
    font-size:20px;
    color:var(--gray-light);
    display:block;
    text-transform: none;
    padding-top: 15px;
}

@media screen and (max-width: 1199px) {
  h1, .h1 {
    font-size: 36px;
  } 
  h2, .h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 30px;
  }
  h2, .h2 {
    font-size: 24px;
  }
  h3, .h3 {
      font-size: 18px;
    }
}

/*BUTTONS
====================================*/
.bookBtn {
  font-family: var(--fontRegular);
  font-size: 16px;
  color: var(--gray-text-color);
  letter-spacing: 1.6px;
  line-height:1;
  border: 1px solid var(--gray-text-color);
  border-radius: 40px;
  padding: 14px 24px;
  text-transform:uppercase;
  background:transparent;
}
.bookBtn:hover,
.bookBtn:focus,
.bookBtn:active{
    color: var(--white-color);
    background:var(--gray-text-color);
   border: 1px solid var(--gray-text-color);
}
.bookBtn.filled {
    color: var(--white-color);
    background:var(--gray-text-color);
    border: 1px solid var(--gray-text-color);
}
.bookBtn.filled:hover {
    color: var(--gray-text-color);
    background:var(--white-color);
    border: 1px solid var(--gray-text-color);
}

.btn-more {
    font-family: var(--fontBold);
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height:1.8;
    color: var(--gray-main-color);
    position: relative;
    display: inline-block;
    transition: .3s linear;
    text-transform: uppercase;
}
.btn-more::before {
    content: "";
    position: absolute;
    margin:0 auto;
    display: block;
    width:0%;
    height: 2px;
    background-color: var(--gray-text-color);
    z-index: 0;
    bottom: 2px;
    left:0;
    transition: .3s linear;
}
.btn-more.white {
    font-family: var(--fontRegular);
    color: var(--white-color);
}
.btn-more.white::before  {
    background-color: var(--white-color);
}
.btn-more.active::before,
.btn-more:hover::before {
    width:100%;
}
.btn-more.arrow{
    padding-left:50px;
}
.btn-more.arrow:after {
    width: 50px;
    background: url(/images/curve-menu.svg) no-repeat;
    background-size: 34px;
    height: 6px;
    position: absolute;
    left: 0px;
    top: calc(50% - 3px);
    content:"";
}
.btn-more.arrow:hover:after {
    filter: brightness(0) saturate(100%) invert(50%) sepia(3%) saturate(24%) hue-rotate(317deg) brightness(93%) contrast(90%);
}
.btn-more.menu {
    padding-left:26px;
}
.btn-more.menu:after {
    width: 50px;
    background: url(/images/book.svg) no-repeat;
    background-size: 18px;
    height: 32px;
    position: absolute;
    left: 0px;
    top: 5px;
    content:"";
}
@media screen and (max-width: 767px) {
    .btn-more {
        font-size: 16px;
    }
}

/*SPACING
===============================*/
.mt-offset {
  margin-top: 120px;
}
/*.paddingTop-offset {
  padding-top: 120px;
}*/
.py-offset {
    padding-top:60px;
    padding-bottom:60px;
}
@media screen and (max-width: 767px) {
    .mt-offset {
        margin-top: 80px;
    }
  /*.paddingTop-offset {
    padding-top: 80px;
  }*/
}
/*
.rightHeading {
  padding-right: 60px;
}
.leftHeading {
  padding-left: 60px;
}
@media screen and (min-width: 1400px) {
    .rightHeading {
      padding-right: 120px;
    }
    .leftHeading {
      padding-left: 120px;
    }
}*/

.mx-offset{
    margin-left: 100px; 
    margin-right: 100px; 
}
.marginXl-offset{
     margin-left: 100px; 
}
@media screen and (max-width: 1199px) {
    .marginXl-offset{
         margin-left: 80px; 
    }
    .mx-offset{
        margin-left: 80px; 
        margin-right: 80px; 
    }
 /* .rightHeading {
    padding-right: 60px;
  }
  .leftHeading {
    padding-left: 60px;
  }*/
}

@media screen and (max-width: 991px) {
      .marginXl-offset{
         margin-left: 60px; 
    }
    .mx-offset{
        margin-left: 60px; 
        margin-right: 60px; 
    }
 /* .rightHeading {
    padding-right: 40px;
  }
  .leftHeading {
    padding-left: 40px;
  }*/
}

@media screen and (max-width: 575px) {
    .marginXl-offset{
         margin-left: 20px; 
    }
    .mx-offset{
        margin-left: 15px; 
        margin-right: 15px; 
    }
  /*.rightHeading {
    padding-right: 10px;
  }
  .leftHeading {
    padding-left: 10px;
  }*/
}




/*
.main-navbar {
   padding: 15px 30px;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
    .main-navbar.displayNav {
      opacity: 1;
      visibility: visible;
    }
}
@media screen and (max-width: 767px) {
    .main-navbar {
        padding: 15px 15px;
        display:none;
    }
}
.main-navbar .hamburger {
  width: 35px;
  height: 15px;
  background: none;
  position: relative;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  z-index: 100;
}

.main-navbar .hamburger::after,
.main-navbar .hamburger::before {
  content: "";
  width: 100%;
  height: inherit;
  background: url(../images/menu-wave.png) no-repeat;
  display: block;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

.main-navbar .close.hamburger::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.main-navbar .close.hamburger::after {
  -webkit-transform: translate(6px, -15px) rotate(-45deg);
  transform: translate(6px, -15px) rotate(-45deg);
}

.main-navbar .hamburger.close {
  opacity: 1 !important;
}

.overlay-nav {
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: var(--light-white);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.4s ease-in, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.4s ease-in;
  transition: transform 0.5s ease-in-out, opacity 0.4s ease-in, -webkit-transform 0.5s ease-in-out;
}

.overlay-nav.reveal-nav {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}

.overlay-nav .menu {
  list-style: none;
}

.overlay-nav .menu-item {
  color: var(--gray-main-color);
  text-decoration: none;
  font-size: 25px;
  opacity: 0;
  -webkit-transform: translate(-20em);
  transform: translate(-20em);
  display: block;
  text-transform: uppercase;
  -webkit-transition: opacity 0.5s ease-in, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.5s ease-in, -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in;
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in, -webkit-transform 0.8s ease-in-out;
}

.overlay-nav .menu li + li {
  margin-top: 1em;
}

.overlay-nav .reveal-items .menu-item {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.overlay-nav .reveal-items li:nth-child(1) .menu-item {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.overlay-nav.reveal-items li:nth-child(2) .menu-item {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.overlay-nav .reveal-items li:nth-child(3) .menu-item {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.overlay-nav .reveal-items li:nth-child(4) .menu-item {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.overlay-nav .reveal-items li:nth-child(5) .menu-item {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
*/



/*HEADER
=================================*/
.header {
    padding: 15px 30px;
    font-size: 16px;
    font-family: var(--fontRegular);
    letter-spacing:1.6px;
    line-height:1.2;
}
@media screen and (max-width: 767px) {
    .header {
        padding: 15px 15px;
    }
}
.header_nav a:not(.bookBtn),
body:not(.noSlider):not(.scrolled):not(.hover-header) .header_nav:hover a:not(.bookBtn){
    color:var(--gray-main-color)!important;
    text-decoration: none!important;
    transition: all 200ms ease-out;
}
body:not(.noSlider):not(.scrolled):not(.hover-header) .header_nav a{
    color:var(--white-color)!important;
}
body:not(.noSlider):not(.scrolled):not(.hover-header) .header_nav:not(:hover) .logo img,
body:not(.noSlider):not(.scrolled):not(.hover-header) .header_nav:not(:hover) img{
    filter: brightness(0) invert(1);
    transition: all 200ms ease-out;
}
body.hover-header .header_nav,
.noSlider .header_nav,
body.scrolled .header_nav {
    background: var(--header-hover-bg);
}
.left-column,
.right-column {
    width:calc(50% - 150px);
    display: flex;  
    align-items: center;
}
.center-column {
    width:300px;
}
.left-column {
    padding-left:80px;
}
.right-column {
   text-align:right; 
}
.header .logo img {
    width: 260px;
}
@media screen and (max-width: 767px) {
    .left-column {
        padding-left:50px;
    }
    .left-column,
    .right-column {
        width:calc(50% - 100px);
    }
    .center-column {
        width:200px;
    }
    .header .logo img {
       /* width: 240px;*/
       width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .left-column,
    .right-column {
        width:calc(50% - 65px);
    }
    .center-column {
        width:130px;
    }
}


/*lang on burger menu*/
.languages {
    font-family: var(--fontRegular);
    padding-top: 10px;
    text-align: right;
    padding-right: 30px;  
}
.languages a {
  font-size: 18px;
  color: var(--gray-main-color);
}
/**LANGUAGES
=======================*/
.languagesDrop {
    margin-right: 15px;
}
@media screen and (max-width: 767px) {
    .languagesDrop {
        display:none;
    } 
}
.languagesDrop .dropdown-toggle::after {
  margin-left: 0;
}
.languagesDrop .dropdown-menu {
  min-width: 35px;
  border-radius: 0;
  background: transparent;
  border: none;
  background: rgba(255,255,255,.5);
  left:0px;
}
.languagesDrop .dropdown-item {
  display: block;
  padding: 0px 4px;
  text-align: left;
}
.languagesDrop .dropdown-item:hover {
  background: none;
  color: var(--gray-main-color);
  opacity:.7;
}
/*
.languagesDrop.active .dropdown-menu,
.languagesDrop:hover .dropdown-menu {
  display: block;
  border-radius: 0;
  font-size: inherit;
  z-index: 1030;
  margin: 0;
}
*/


.header .header_btn {
    display:flex;
    margin-left:auto;
    align-items: center;
}

body:not(.noSlider):not(.scrolled):not(.hover-header) .header_nav .bookBtn{
    border-color:var(--white-color);
    background:transparent;
}

.header_nav .bookBtn:hover{
    color:var(--white-color)!important;
    border-color: var(--gray-main-color);
    background:var(--gray-main-color);
}
@media screen and (max-width: 767px) {
    .header_nav .bookBtn{
        text-align: center;
        padding: 14px 18px;
    }
}
@media screen and (max-width: 575px) {
    .header_nav .bookBtn{
        padding: 11px 14px;
        display: inline-block;
        font-size: 12px;
        width: 90px;
        line-height: 1.2em;
    }
}
.checkin-btn { text-align: center;}
@media screen and (max-width: 991px) {
      .checkin-btn {
        display: none!important;
    }  
}




.user-btn{
    display:flex;
    margin-right:15px;
}
.menu-contact .user-btn img,
.user-btn img {
    width:30px;
    height:30px;
}
@media screen and (max-width: 575px) {
    .menu-contact .user-btn img,
    .user-btn img {
        width:24px;
        height:24px;
    }
}


.header-main-row{
    display: none;
}
@media (min-width: 992px){
    .header-main-row{
        display: block;
    }
    .header .MainMenu{
        border-top: 1px solid var(--gray-text-color);  
        padding-top:10px;
        margin-top:18px;
    }
    body:not(.noSlider):not(.scrolled):not(.hover-header) .MainMenu {
        border-top: 1px solid var(--white-color);
    }
    .MainMenu li{
        display: inline-block;
        padding: 0 10px;
    }
}


/*Top Media - Inner Page
============================ */
/* TOP CAROUSEL 
========================= */
/* Video
=================================== */
.mainVideoSlider {
        position: relative;
        height: 100vh;
    }
.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}

/*YOUTUBE
------------------------------*/
.intro-video-bg-margin {
 /* height: 125px;*/
  background: white;
    position: relative;
    z-index: 1;
}
.intro-video-bg{
	height:auto;
/*	margin-top: -125px;*/
	position:relative;
	z-index:0;
}
/*
@media screen and (max-width: 991px) {
     .intro-video-bg{
        margin-top: -60px;
    }
}
@media (max-width: 767px) {
    .intro-video-bg-margin {
      height: 105px;
    }
    .intro-video-bg{
        margin-top: 0px;
    }
}
*/
/*
.background-video {
    background-position: bottom center;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top:  0px;
	z-index:0;
}
 .embed-responsive-21by9 {
    padding-bottom:42.85%;
}
.video-buttons {
	position:absolute;
	left:0;
	right:0;
	bottom:50px;
	z-index:2;
}
.video-buttons div{
	display:inline-block;
	cursor:pointer;
	width:65px;
	height:65px;
}
#mute-toggle,
#play-toggle {
    border: solid 3px #fff;
    border-radius: 50%;
    background-size: 30px 30px !important;
	background-repeat: no-repeat!important;
	background-position:center!important;
}
#mute-toggle {
	  background: url(/media/1186/mute.svg);
}
#mute-toggle.muted {
	background: url(/media/1185/unmute.svg);
}
#play-toggle{
		background: url(/media/1187/play.svg);
}
#play-toggle.playing{
	  background: url(/media/1188/pause.svg);
}
@media screen and (max-width: 991px) {
	.background-video {
	    top: 0px;
	}
	.video-buttons {
		display:none;
	}
}*/

/*TOP MEDIA
-------------------------------*/
.noTopMedia {
    height:160px;
}
@media (max-width: 991px) {
    .noTopMedia {
        height: 110px;
    }
}
@media (max-width: 767px) {
    .noTopMedia {
        height: 91px;
    }
}
/*=== Carousel Slider
=====================================*/
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
     height: calc(100vh - 115px);
}
@media (max-width: 767px) {
    #bigCarousel .carousel-item,
    #bigCarousel {
       height: calc(100vh - 103px);
    }
}
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.carousel-control-next, 
.carousel-control-prev {
    opacity:1;
    width:10%;
}
#bigCarousel .carousel-control-next-icon {
 /* background-image: url(../images/right.svg)!important;*/
  background-image: url(../images/white-right-arrow.png)!important;

}
#bigCarousel .carousel-control-prev-icon {
 /* background-image: url(../images/right.svg)!important;*/
      background-image: url(../images/white-right-arrow.png)!important;
      transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);

}
#bigCarousel .carousel-control-next-icon, 
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
   height: 85px!important;
  width: 40px!important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 767px) {
    #bigCarousel .carousel-control-next-icon, 
    #bigCarousel .carousel-control-prev-icon {
        height: 55px!important;
        width: 25px!important;
    }
}
@media screen and (max-width: 575px) {
    #bigCarousel .carousel-control-next-icon, 
    #bigCarousel .carousel-control-prev-icon {
        height: 45px!important;
        width: 22.5px!important;
    }
}
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: 500px !important;
      }
}
@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 380px!important;
  }
}
.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 80%;
    text-align:center;
    left:0;
    right:0;
    margin:auto;
}
.contentOverSlider .h1{
    margin:0;
    font-size:40px;
}
.contentOverSlider .smallText {
    display:block;
}
@media screen and (max-width: 991px) {
    .contentOverSlider .h1{
        font-size:36px;
    }
}
@media screen and (max-width: 767px) {
     .contentOverSlider .h1{
        font-size:22px;
    }   
}
/*WAVE ON SLIDER
==============================*/ 
 .wave {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height:auto;
    width: auto;
    z-index: 1;
   /* background:url(/images/wave.svg) no-repeat;
    background-size: 100%;*/
    color: white;
    font-size: 38px;
    text-align: right;
    padding: 4%;
}
.wave span {
    display:block;
    font-size: 16px;
}
@media (max-width: 1500px) and (min-width: 1480px){
    .wave {
        padding: 4%;
        font-size: 40px;
    }
    .wave span {
        font-size: 16px;
    }
}
@media (max-width: 1440px) and (min-width: 1200px){
    .wave {
        padding: 4%;
        font-size: 38px;
    }
    .wave span {
        display:block;
        font-size: 14px;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .wave {
        padding: 4%;
        font-size: 26px;
    }
    .wave span {
        display:block;
        font-size: 14px;
     }
}
@media (max-width: 991px) and (min-width: 768px){
    .wave {
        padding: 4%;
        font-size: 22px;
    }
    .wave span {
        display:block;
        font-size: 11px;
    }
}
@media (max-width: 767px){
    .wave {
        padding: 4%;
        font-size: 20px;
    }
    .wave span {
        display:block;
        font-size: 11px;
    }
}
@media (max-width: 480px){
    .wave {
        padding: 4%;
        font-size: 14px;
    }
    .wave span {
        font-size: 10px;
    }
}
@media (max-width: 360px){
    .wave {
        padding: 3%;
        font-size: 11px;
    }
    .wave span {
        font-size: 7px;
    }
}














/*
.dropBookingHotels .dropdown-menu{
    right: 0px!important;
    float: right!important;
    left: -12px!important;
    border: 0px;
    min-width: 170px;
    width: 170px;
    border-radius:0;
}
.dropBookingHotels .dropdown-menu .dropdown-item {
        white-space: unset;
    line-height: 1.5em;
    padding: .5rem .5rem;
    text-align: left;
    color: var(--gray-main-color);

}
.dropBookingHotels .dropdown-menu .dropdown-item:focus,
.dropBookingHotels .dropdown-menu .dropdown-item:active{
    background:none;   
}
*/





/* INTRO CAROUSEL SLIDER
============================== */
/*
.introSection .item {
    padding: 0px 40px;
}
.introSection .intro-box {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: var(--white-color);
}
.introSection .title {
    font-size: 115px;
    text-transform: uppercase;
    font-family: var(--fontRegular);
    font-weight: 400;
    color: var(--gray-main-color);
    letter-spacing: 5px;
     line-height:1;
    line-height: 65px;
    height: 85px;
    margin-bottom: -1px;
}
.introSection .title a{
    display:inline-block;
    color: var(--gray-main-color);
}
.introSection .title a::first-letter { margin-left:-5px;}

.introCarousel.owl-carousel .owl-nav .owl-prev,
.introCarousel.owl-carousel .owl-nav .owl-next {
    background-size: 100% !important;
    height: 75px;
    width: 35px;
    position: absolute;
    top: 45%;
}
.introCarousel.owl-carousel .owl-nav .owl-prev {
    background: url(../images/white-arrow.png) no-repeat;
    left: -2%;
}
.introCarousel.owl-carousel .owl-nav .owl-next {
    background: url(../images/white-right-arrow.png) no-repeat;
    right: -2%;
}

@media screen and (min-width: 1400px) {
    .introSection {
        margin-top: -50px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev,
    .introCarousel.owl-carousel .owl-nav .owl-next {
        height: 85px;
        width: 40px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev {
        left: -10%;
    }
    .introCarousel.owl-carousel .owl-nav .owl-next {
        right: -10%;
    }  
}
@media screen and (max-width: 1199px) {
    .introSection .item {
      padding: 0px 30px;
    }
    .introSection .title {
        font-size: 82px;
        line-height: 47px;
        height: 61px;
    }
}
@media screen and (max-width: 767px) {
    .introSection .item {
      padding: 0px 25px;
    }
    .introSection .title {
        font-size: 60px;
        line-height: 36px;
        height: 46px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev {
        left: -25px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-next {
        right: -25px;
    }    
}
@media screen and (max-width: 575px) {
    .introSection .title {
        font-size: 35px;
        line-height: 20px;
        height: 26px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev,
    .introCarousel.owl-carousel .owl-nav .owl-next {
        height: 55px;
        width: 25px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev {
        left: -10px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-next {
        right: -10px;
    } 
}
*/
/*BOOKING FORM
================================= */
.bookingRow {
  background-color:var(--elements-bg);
  padding-top:20px;
  padding-bottom:20px;
}
@media screen and (max-width: 991px) {
    .bookingRow {
        display:none;
    }
}
.bookingRow form,
.bookingRow label,
.bookingRow form select,
.bookingRow form input {
  color: var(--gray-text-color);
  font-family: var(--fontBold);
  font-size: 16px;
  letter-spacing: 1.6px;
}
.bookingRow label {
    cursor: pointer;
    text-transform:uppercase;
    margin-bottom:5px;
}
.bookingRow form select,
.bookingRow form input,
.bookingRow form select:focus,
.bookingRow form input:focus{
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0 !important;
  background-color: transparent;
  font-family: var(--fontRegular);
}
.bookingRow .form-control {
    padding:4px 2px;
} 
.bookingRow form .form-group:last-child{
    align-self:center;
}





/*SWIPER
============================= */
.swiper-button-next,
.swiper-button-prev {   
    height: 20px;
    width: 35px;
}
.swiper-button-next svg,
.swiper-button-prev svg{   
    display: none;
}
.swiper-button-next{
    right:3%;
    left:unset;
}
.swiper-button-prev {  
    left:3%; 
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}
.swiper-button-next:before,
.swiper-button-prev:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    filter: unset;
    background: url(../images/arrow.svg) no-repeat center center;
    background-size: 100%;
}
.swiper-button-prev:before {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
/*gal swiper
-------------------------------------*/
.swiper-button-next.circle-arrows,
.swiper-button-prev.circle-arrows {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
}
.swiper-button-next.circle-arrows:before,
.swiper-button-prev.circle-arrows:before {
    background: url(../images/right.svg) no-repeat center center;
    filter: invert(1);
    background-size: 22px;
}
@media screen and (max-width: 767px) {
    .swiper-button-next.circle-arrows,
    .swiper-button-prev.circle-arrows {
        height: 38px;
        width: 38px;
    }
    .swiper-button-next.circle-arrows:before,
    .swiper-button-prev.circle-arrows:before {
        background-size: 18px;
    }
}
/*Section row - gallery 
--------------------------- */
.simpleGallerySwiper .swiper-button-next,
.simpleGallerySwiper .swiper-button-prev {
    height: 34px;
    width: 34px;
}
.simpleGallerySwiper .swiper-button-next:before,
.simpleGallerySwiper .swiper-button-prev:before {
    background: url(../images/right.svg) no-repeat center center;
    background-size: 34px;
}
/*ARROWS BELLOW
--------------------------- */
.swiper.arrows-bottom {
    padding-bottom:60px;
}
@media screen and (min-width: 1200px) {
    .swiper.arrows-bottom.arrow-hide-1200 {
        padding-bottom:0px;
    }
    .swiper.arrows-bottom.arrow-hide-1200 .swiper-button-prev,
    .swiper.arrows-bottom.arrow-hide-1200 .swiper-button-next {
      display:none;
    }
}
.swiper.arrows-bottom .swiper-button-next,
.swiper.arrows-bottom .swiper-button-prev {
    bottom:0px;
    height:30px;
    top: unset;
    width:50px;
}
.swiper.arrows-bottom .swiper-button-next {
    right: calc(50% - 60px);
}
.swiper.arrows-bottom .swiper-button-prev {
    left: calc(50% - 60px)!important;
}
.swiper-button-next:before,
.swiper-button-prev:before{
    background-position: center left;
}
@media screen and (max-width: 767px) {
    .swiper.arrows-bottom .swiper-button-next,
    .swiper.arrows-bottom .swiper-button-prev {
        height:25px;
        width:40px;
    }
    .swiper.arrows-bottom .swiper-button-next {
        right: calc(50% - 50px);
    }
    .swiper.arrows-bottom .swiper-button-prev {
        left: calc(50% - 50px)!important;
    }
}

/*ARROWS BELLOW small - Reviews
--------------------------- */
.swiper.arrows-bottom-small .swiper-button-next,
.swiper.arrows-bottom-small .swiper-button-prev {
    height:25px;
    bottom:30px;
    top:unset;
    width:40px;
}
.swiper.arrows-bottom-small .swiper-button-next {
    right: calc(50% - 50px);
}
.swiper.arrows-bottom-small .swiper-button-prev {
    left: calc(50% - 50px)!important;
}
/*BULLETS BELLOW small
--------------------------- */
.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 26px;
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-light);
    opacity: 0.3;
    margin: 0 5px !important;
    background: none !important;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    color: var(--gray-main-color);
}
.offersCarousel.bullets-below  {
    padding-bottom:60px;
}
.offersCarousel .swiper-pagination {
    z-index:10;  
    margin-top:20px;
}
.offersCarousel .swiper-pagination-bullet {
    background:  var(--gray-light) !important;
    opacity:1;
}
.offersCarousel .swiper-pagination-bullet-active {
    background:  var(--gray-main-color) !important;
}


/* Main Text SECTION
================================ */
.bg-v{
  background: url(/images/Logos/K.svg) no-repeat;
  background-position-x: right;
    background-position-y: 0;
    background-size: 80%;
}
.bg-letter{
   background: url(/images/Logos/K.svg) no-repeat;
    background-position-x: right;
    background-position-y: 0;
    background-size: 180px;
}
@media screen and (max-width: 991px) {
    .bg-letter{
        background-size: 20%; 
    }
}

.main-text {
    text-align:center;
}
@media screen and (min-width: 992px) {
    .main-text .container{
        max-width:920px!important;
    }
}
/*
.main-text .bg{
  background: url(/images/Logos/K.svg) no-repeat;
    background-position-x: right;
    background-position-y: 0;
    background-size: 180px;
}
@media screen and (max-width: 1199px) {
  .main-text{
      background-size:120px;
  }
}

@media screen and (max-width: 767px) {
  .main-text {
    background-size: 80px;
    background-position-y: 25%;
  }
}
*/


/*Accommodation -Carousel Intro
================================= */

.bg-grey {
    background:#dcdddd;
}
.accommodation-intro {
    text-align:left;
     margin-right: 0px; 
}
@media screen and (min-width: 1200px) {
    .accommodation-intro {
        display:flex;
        /*margin-right: 0px;*/ 
    }
    .tabs-container {
        width:25%;
    }
    .tab-content {
        width:75%;
    }
}
#tabNavigation {
    padding-top:20px;
    padding-bottom:30px;
}
#tabNavigation li button{
    text-transform: uppercase;
    color: var(--gray-text-color);  
    position: relative;
    overflow: hidden;
    margin: 0 20px;
    font-family:var(--fontRegular);
    font-size:16px;
    letter-spacing:1.6px;
}
#tabNavigation li button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--gray-main-color);
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
#tabNavigation li button.active,
#tabNavigation li button:hover{
    color: var(--gray-main-color); 
}
#tabNavigation li button:hover::after, 
#tabNavigation li button.active::after {
    transform: scaleX(1);
}

@media screen and (min-width: 1200px) {
    #tabNavigation li button{
        padding:15px 0;
        width: 100%;
        text-align: left;
        margin:0;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    } 
    #tabNavigation li button:hover:before,
    #tabNavigation li button.active:before{
        content:"";
        display:block;
        width:50px;
        background:url(/images/curve-menu.svg) no-repeat;
        background-size:34px;
        height: 6px;
    }
}
.tab-pane {
    overflow:hidden;
}
.text-over-img {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background: linear-gradient(180deg, rgba(79,83,84,0) 0%, rgba(80,83,83,1) 100%);
    color:var(--white-color);
    padding:30px;
}
.text-over-img h3{
     color:var(--white-color);
}
.box-link-above {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/*ROOM DETAILS
---------------------*/
.details {
    display:flex;
    color: var(--gray-main-color);
    font-weight:700;
    line-height: 1.4;
}
.details > div:not(:last-child){
    margin-right:10px;
    padding-right:10px;
    border-right:solid 1px var(--gray-main-color);
}
.details sup {
    line-height:1;
}
.accommodation-intro .details { 
    color:var(--white-color);
}
.accommodation-intro .details > div:not(:last-child){
    border-right:solid 1px var(--white-color);
}
.room-page .details {
    justify-content:center!important;
}

/*
@media screen and (max-width: 991px) {
     .marginXl-offset.mobile-carousel{
         margin-right: 40px; 
    }
}
@media screen and (max-width: 767px) {
    .marginXl-offset.mobile-carousel{
         margin-right: 40px; 
    }
}  
@media screen and (max-width: 575px) {
    .marginXl-offset.mobile-carousel{
         margin-right: 20px; 
    }
}    
 

*/
/* DININH SECTION
=============================== */
.diningCarousel .carousel-box .h2{
    color:var(--white-color);  
}
@media screen and (max-width: 1024px) {
    .diningCarousel .swiper-wrapper-bg {
        display:none;
    }
}
@media screen and (min-width: 1025px) {
    .diningCarousel{
          height: 70vh;
    }
    .diningCarousel .swiper-wrapper-bg {
        position:absolute;
        z-index:-1;
        width: 100%;
        transition: all 0.5s ease-out;
        overflow: hidden;
        height: inherit;
    }
    .diningCarousel .swiper-wrapper-bg:not(.active) {
        display:none;
    }
    .diningCarousel .swiper-wrapper-bg img{
        width: auto;
        max-width: unset;
        height: 100%;
        object-fit: cover;
        transition: all 0.1s ease-out;
    }
    .diningCarousel .swiper-wrapper-bg.active img{
        transition: all 0.1s ease-out;
    }
    .diningCarousel:not(.asRow) .carousel-box {
          flex: 1;
          -ms-flex: 1;
          -webkit-flex: 1;
          height: 100%;
          /*transition: flex 0.8s ease;*/
          background: rgba(0,0,0,.3);
    }
    .diningCarousel .carousel-box:not(:last-child) {
        border-right:solid 1px #fff;
    }
    .diningCarousel .carousel-box:hover {
        background: rgba(0,0,0,.5);
    }
    .diningCarousel .carousel-box .box-holder{
        height: 100%;
    }
    .diningCarousel .carousel-box picture{
        height: 100%;
        display:none;
    }
    .diningCarousel.asRows.arrows-bottom {
        padding-bottom: 0px;
    }
    .diningCarousel .swiper-pagination,
    .diningCarousel .swiper-button-next,
    .diningCarousel .swiper-button-prev {
        display:none;
    }
    .diningCarousel .carousel-box .text-over div:last-child{
        position:absolute;
        bottom:0px;
        left:0;
        right:0;
    }
    .diningCarousel .carousel-box .text-over .btn-more{
        display:none;  
        opacity: 0;
        transition: all 1s ease-out;
    }
    .diningCarousel .carousel-box:hover .text-over .btn-more{
         opacity: 1;
        display: inline-block;
        
    }
    
    /*Desktop: fullscreen & rows
    =====================================*/
    .text-inside-carousel {
        position:absolute;
        top:50px;
        left:0;
        right:0;
        z-index: 10;
        text-align:center;
        color:var(--white-color);
    }
    .text-inside-carousel > div{
        margin:auto;
    }
    .text-inside-carousel .h1{
        text-align:center;
        color:var(--white-color);
        margin-bottom:20px;
    }

    .diningCarousel.asRows .swiper-wrapper{
        flex-direction:column;
    }
    .diningCarousel.asRows .swiper-wrapper:before{
        content: "";
        background: rgba(0, 0, 0, .3);
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        display: block;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .diningCarousel.asRows .carousel-box .box-holder {
        height:auto;
    }
    .diningCarousel.asRows .carousel-box {
        height: 70px;
        width: 100%;
        flex:unset;
        border-right:none;
        background:transparent;
    }
    .diningCarousel.asRows div.carousel-box:nth-of-type(2) {
        margin-top:auto;
    }
    .diningCarousel.asRows .carousel-box:last-child{
        margin-bottom:auto;
    }
    .diningCarousel.asRows .carousel-box .text-over div:last-child{
        display:none!important;
    }
    .diningCarousel.asRows .carousel-box .text-over {
        position:relative;
        display: block !important;
        width: 28%;
        margin:auto;
        left:auto;
        right:auto;
    }
    .diningCarousel.asRows .carousel-box .text-over h3{
        margin-bottom: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
        color:var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .diningCarousel.asRows .carousel-box:not(:last-child) .text-over h3{
          border-bottom: 1px solid var(--white-color); 
        /*  width: max-content;         */
    }
    .diningCarousel.asRows .carousel-box:hover .text-over h3:before{
        content: "";
        display: block;
        width: 50px;
        background: url(/images/curve-menu.svg) no-repeat;
        background-size: 34px;
        height: 6px;
        filter: brightness(0) invert(1);
    }
}

@media screen and (min-width: 1600px) {
    .diningCarousel .carousel-box .h2{
        font-size:26px;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1599px) {
    .diningCarousel .carousel-box .h2{
        font-size: 70%;
        letter-spacing: 3px;
    }
    .diningCarousel .carousel-box .text-over .btn-more {
        font-size:14px;
    }
}
@media screen and (min-width: 1680px) {
    .diningCarousel .swiper-wrapper-bg img{
        max-width: 100%;
        height: auto;
        width: 100%;
    }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
    .diningCarousel .carousel-box .h2{
        font-size:22px;
    }
}
.carousel-box {
    position: relative;
    background-color:  black;
    overflow:hidden;
} 
.carousel-box img{
    opacity: 1;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transition:all .35s linear;
    transition:all .35s linear;
    width: 100%;
}
.carousel-box:hover img{
    opacity: 0.7;
    transition: opacity 0.35s, transform 0.35s;
    -ms-transform:scale(1.1);
    -webkit-transform:scale(1.1);
    transform:scale(1.1);
}
.carousel-box .text-over {
  position: absolute;
  top:15px;
  bottom:15px;
  left:15px;
  right:15px;
}

@media screen and (min-width: 1024px) {
    .button-holder.right {
        position:absolute;
        right:0px;
        bottom: 0px;
    }
    .button-holder.bottom {
        position:absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index:2;
        margin:0px;
    }
    .button-holder.bottom .btn-more{
        color: var(--white-color);  
        padding-left:0px;  
    }
    .button-holder.bottom .btn-more::before{
        background-color: var(--white-color);    
    }
    .button-holder.bottom .btn-more.arrow:after {
        display:none;
    }
}


/* WHY BOOK
=============================== 
.whybook .bg{
    background-color: var(--browm-color);
    position:relative;
    min-height:300px;
    overflow:hidden;
    text-align:left;
}
.whybook .bg.transparent picture:after{
    background:rgba(243,243,241,.8);
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
}
.whybook .bg.transparent {
    color: var(--gray-main-color);
}
.whybook picture{
    position:absolute;
    left:0;
    right:0;
    z-index:0;
    height:100%;
}
.whybook picture.asBg img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.whybook h2{
    text-align:left;
}
.whybook .why-box .text-holder {
    height:100%;
    z-index:2;
    padding: 3rem !important;
}
@media (max-width: 991px) {
 .whybook .why-box .text-holder {   
         padding: 1.5rem !important;
 }
}
.whybook .why-box:nth-child(2){
    margin-top: 3rem !important;
}
.whybook .bg p{
    position:relative;
    margin-bottom:0;
}
@media screen and (max-width: 480px) {
    .whybook .bg {
        min-height:215px;       
    }
}
.whybook .text-holder img {
    width:42px;
    margin-right:12px;
}
.whybook .text-holder li:not(:last-child) {
    margin-bottom:20px;
}
.whybook .text-holder li {
    display: flex;
    line-height: 1.2;
    align-items: center;
}

*/

/* Experiences Intro
====================================== */
.expCarousel .item {
  position: relative;
  cursor: pointer;
  -webkit-transition: .3s linear;
  transition: .3s linear;
  /*padding:0 30px;*/
}
.expCarousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.84);
  }
.expCarousel .swiper-slide.swiper-slide-active {
    transform: scale(1.1);
  }
 .expCarousel .title-over {
    margin-top: -60px;
    margin-left: 40px;
    background: var(--page-bg-color);
    position: relative;
    width: 52%;
    padding: 20px;
 }
 .expCarousel .title-over .description {
    margin-bottom:15px; 
 }
 @media screen and (max-width: 1480px) {
    .expCarousel .title-over {
        width: 80%;
    }
 }
  @media screen and (max-width: 991px) {
    .expCarousel .title-over .description {
        display:none;    
    }
}


/*NEWS
===================================*/
.news-recent-container {
    margin-right: 0px; 
}
.news-recent .text-holder{
    margin-top:20px;
}
.news-recent .text-holder h3{
    margin-bottom:10px;
}
.new-date{
    color:var(--gray-light);
    font-size:16px;
    margin-bottom:20px;
}
.news-releases .item{
    margin-bottom: 50px;
}
.news-releases .item h2{
    margin-bottom:5px;
}
.news-releases .pagination ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    margin-top: 15px;
    margin: auto;
}
.news-releases .pagination li {
    padding: 5px;
    background: none;
    font-weight: 600;
}
.news-releases .pagination li a {
    text-decoration: none;
    color: var(--gray-main-color);
}
.news-releases .pagination li a:hover {
    text-decoration: underline;
}
.news-releases .pagination li.active a {
    color: var(--gray-light) !important;
    text-decoration: underline;
}
.prevNextWrap {
    display: flex;
    padding-top: 30px;
    font-weight: 600;
    justify-content: center;
}
.prevNextWrap a {
    color: var(--gray-main-color);
    text-decoration: none;
    text-transform: uppercase;
}
.prevNextWrap .next {
    margin-left: 15px;
}
@media (min-width: 576px) {
    .prevNextWrap .next {
        margin-left: 30px;
    }
}
.prevNextWrap .disabled {
 color: var(--gray-light);
 cursor: auto;
}


/*OFFERS INTRO
===================================*/
.offersCarouselContainer .swiperBgs:before,
.offersCarouselContainer .swiperBgs:after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
}

.offersCarouselContainer .swiperBgs:before {
    background: rgba(0, 0, 0, .5);
    z-index:1;
}
.offersCarouselContainer .swiperBgs:after {
    background: url(../images/curve-right.svg) no-repeat;
    z-index:1;
            background-size: 35%;
        background-position: top 50px right 120px;
        filter: brightness(0) invert(1);
}

.offersCarouselContainer .swiper-wrapper-offers-bg {
    width: 100%;
    transition: all 0.5s ease-out;
}
.offersCarouselContainer .swiper-wrapper-offers-bg:not(.active) {
    display: none;
}
.offersCarouselContainer .swiper-wrapper-offers-bg img{
    width:100%;
    object-fit: cover;
    transition: all 0.1s ease-out;
}
.offersCarouselContainer .swiper-wrapper-offers-bg.active img{
    transition: all 0.1s ease-out;
}
.offersCarousel  {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index:5;  
    width: 100%;
    transition: all 0.5s ease-out;
}
.offersCarousel .box-holder {
    max-width:90%;
    margin:auto;
    color: var(--white-color);
}
.offersCarousel h3{
    color: var(--white-color);
}

@media screen and (min-width: 992px) {
 .offersCarousel .box-holder {
    max-width:50%;
 }
}
.offersCarousel .swiper-slide.swiper-slide-prev,
.offersCarousel .swiper-slide.swiper-slide-next {
    opacity:.5;
}

/* REVIEWS 
========================= */
.reviews {
    text-align: center;
      background: #dcdddd;
      position:relative;
      z-index:1;
}
.reviews .quot{
}
.reviewsSwiper {
    padding-bottom:50px;
}
.reviewsSwiper .reviewsBox {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
/*
.reviews .swiper.arrows-bottom-small .swiper-button-prev,
.reviews .swiper.arrows-bottom-small .swiper-button-next {
    bottom:0px;
    width:90px;
}
.reviews .swiper.arrows-bottom-small .swiper-button-prev {
    left: 0px !important;
}
.reviews .swiper.arrows-bottom-small .swiper-button-next {
    left: 100px;
}
@media screen and (min-width: 767px) {
    .reviews .swiper.arrows-bottom-small .swiper-button-prev,
    .reviews .swiper.arrows-bottom-small .swiper-button-next {
        width:80px;
    }
   .reviews .swiper.arrows-bottom-small .swiper-button-next {
        left: 90px;
    } 
}*/
/*
.instafeed {
     word-break: break-word;
}
@media screen and (max-width: 767px) {
    .instafeed .holder:before {
        content: "";
        position: absolute;
        top: 50px;
        bottom: 50px;
        left: 0;
        right: 0;
        background: url(/images/instaBg.jpg) no-repeat center center;
        background-size: 100%;
        z-index:-1;
    }
}*/
.instafeed .h3,
.reviews .h3{
    margin-bottom:5px;   
}
.instafeed h2 span{ 
    font-size: .7em;
    font-weight: 600;
    text-align: center;
    display: block;
    padding-bottom: 10px;
}
.instafeed h2 {
    position:relative;
    z-index: 1;
}
.instafeed picture {
    margin-top: -40px;
    display: block; 
    text-align: center;
}
@media screen and (min-width: 576px) and  (max-width: 991px){
    .instafeed h2 {
        text-align: center;
    }
    .instafeed h2 img {
        width:80%
    }
    .instafeed picture img{
        max-width: 480px;
    }
}
@media screen and (max-width: 767px) {
    .instafeed .holder {
        width: 80%;   
        margin: auto; 
    }
}
@media screen and (max-width: 575px) {
    .instafeed picture img{
        max-width: 80%;
    }
}
@media screen and (min-width: 576px) {
      .instafeed picture img{
        max-width: 80%;
    }  
}
.instafeed-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 10px;
}
.instafeed-social img {
    height: 22px;
}
.instafeed-social a {
    display: none;
}
.instafeed-social a.fb,
.instafeed-social a.in {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
}
@media (max-width: 991px){
    .instafeed {
        margin-top:80px;
    }
}




.bg-curve {
    background: url(../images/curve-line.svg) no-repeat;
    background-position-x: right;
    background-size: 25%;
}
              
.bg-curve-line.right {
    background: url(../images/curve-right.svg) no-repeat;
    background-size: 50%;
    background-position: top 28% right 0px;
}
@media (min-width: 1680px){
    .bg-curve-line.right {
        background-size: 35%;
        background-position: top 50px right 120px;
    } 
    .bg-curve-line.right.end {
        background-position: top 50px right 0px;
    }    
}
@media (max-width: 575px){
    .bg-curve-line.right {
        background-size: 70%;
}
}
.bg-curve-line.left {
    background: url(../images/curve-left.svg) no-repeat;
    background-size: 20%;
    background-position: top 50px left 0px;
}
@media (max-width: 575px){
    bg-curve-line.left {
   background-size: 50%;
}
}
.bg-curve-vertical {
  background: url(../images/curve-bg.svg) no-repeat;
  background-position-x: right;
}
/*
.bottom-bg {
      background-position-y: bottom!important;
}
.center-bg {
      background-position-y: center!important;
}
*/

/*FOOTER
=========================== */
.footer .footerLogo {
    width:280px;
}

.footer .footerRightSide {
  padding-top: 80px;
  border-top: 10px solid var(--gray-main-color);
}

.footer .footerContactDetails p,
.footer .member{
  font-family: var(--fontRegular);
  font-size: 17px;
  line-height: 26px;
  color: var(--gray-main-color);
  margin-bottom: 20px;
}

.footer .footerContactDetails span {
  font-family: var(--fontBold);
  line-height: 24px;
}

.footer .footerContactDetails a{
  color: var(--gray-main-color);
}
.footer .pin {
    background:url(/images/pin.svg) no-repeat left center;
    background-size: 20px;
    padding-left:28px;
    text-decoration: underline;
}
.footer .footerSocial {
    display:inline-block;
}
.footer .footerSocial img {
  height: 30px;
}
.footer .footerSocial span {
    display:none;
}
.footer .bottomMenu li {
  line-height: 26px;
  margin-bottom: 15px;
}

.footer .bottomMenu a {
  color: var(--gray-main-color);
  font-family: var(--fontRegular);
  font-size: 17px;
  text-transform: uppercase;
}
.footer .member img{
      width:100px;
}
@media screen and (max-width: 991px) {
  .footer .bottomMenu li {
    line-height: 20px;
    margin-bottom: 12px;
  }
  .footer .bottomMenu a {
    font-size: 14px;
  }
  .footer .footerContactDetails p,
  .footer .member{
    font-size: 14px;
    line-height: 24px;
  }
  .footer .footerSocial img {
    height: 28px;
  }
  .footer .footerRightSide {
    padding-top: 50px;
  }
  .footer .footerLogo {
    width: 180px;
  }
    .footer .member img{
          width:80px;
    }
}
@media screen and (max-width: 575px) {
    .footer .footerContactDetails a {
        font-size: 12px;
    }
}

.copyright {
  font-family: var(--fontRegular);
  font-size: 14px;
  line-height: 26px;
  color: var(--gray-main-color);
  margin-bottom: 20px;  
}
.copyright a{
  color: var(--gray-main-color);
}


.cookie-icon {
    position:fixed;
    left:20px;
    bottom:50px;
    opacity: 1;
    width:46px;
    height:46px;
    border-radius: 50%;
    background: rgba(80,83,83,.15);
    padding:6px;
    font-size:8px;
    z-index: 10;
}


/*SCROLL UP */
.toTop {
  text-align: right;
}

a.scrollup, a:hover.scrollup, a.scrollup::before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 34px;
  height: 34px;
  background: url(../images/scrollup.svg) no-repeat center center !important;
  bottom: 5px;
  position: fixed;
  right: 5px;
  text-indent: -9999px;
  text-decoration: none;
  padding: 0px 0px;
  color: var(--gray-main-color);
  z-index: 10;
}


/* NEWSLETTER 
================================ */
.newsletter #theFormNewsletter {
  background: url(/images/images_sections/newsletter.jpg) no-repeat center center;
  color: var(--white-color);
}
.newsletterform {
    padding-top:100px;
    padding-bottom:20px;
    position:relative;
}
.newsletter .form-group {
  background-color: var(--white-minOpacity);
  padding: 10px 15px;
  color: var(--white-color);

}
.newsletter .form-control {
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--white-color);
  color: var(--white-color);
  font-size:18px;
}
.newsletter .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.newsletter label {
  font-family: var(--fontBold);
  line-height: unset;
  padding-right:10px;
  min-width:110px;
  font-weight: bold;
  margin-bottom:0;
}
@media screen and (min-width: 576px) {
    .newsletter .form-group {
        width: 450px;
    }
    .newsletter .submit {
        position: absolute;
        bottom: 50px;
        right:2px;
    }
}
.newsletter .submit .sendBtn{
    background-color: var(--gray-main-color);
    padding: 12px 15px;
    color: var(--white-color);
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius:0;
}
.newsletter .form-agree,
.newsletter .form-agree a{
    color: var(--white-color);
}
@media screen and (max-width: 767px) {
  .newsletter label,
  .newsletter .sendBtn {
    font-size: 16px!important;
  }
  .newsletter .form-group {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  .newsletter .form-group {
    padding: 10px 8px;
    width: 100%;
  }
  .newsletter .sendBtn {
    top: 10px;
    font-size: 14px;
    margin-top:10px;
    margin-left:10px;
  }
  .newsletter label{
    font-size: 14px!important;
  }
}










/*ALL BOXES LISTING Content : Rooms
====================================*/
.content-holder{
    padding-top:20px;
    font-size:16px;
    line-height:1.5;
    display:flex;
    flex-direction:column;
    height: -webkit-fill-available;
}
.content-holder .btns,
.room-box .btns {
    margin-top:auto;
}
/*LISTING BOXES - ACCOMMODATION all rooms
=========================================*/
.room-box {
    padding-bottom:60px; 
    display: flex;
    flex-direction: column;
    height: auto;
}

/*OTHER PAGES CAROUSEL
==========================================*/
.boxesCarousel .swiper-slide {
    display:flex;
    flex-direction:column;
    justify-content: stretch;
    height: initial;
}
.boxesCarousel .nav-holder{
    padding-top: 50px;
}
.boxesCarousel .swiper-pagination {
    width: 50px;
    position: relative;
    top: unset;
    bottom: unset;
    left: unset;
    margin:auto;
}
.boxesCarousel .swiper-pagination .paginationborder:before {
    content: '/';
    position: relative;
    width: 10px;
    display: inline-block;
    vertical-align: bottom;
    margin: 0 4px;
}
.boxesCarousel .swiper-button-next, 
.boxesCarousel .swiper-button-prev {
    height: 20px;
    width: 35px;
    top: unset;
    bottom:5px;
}
.boxesCarousel .swiper-button-prev {
    left: 0px;
}
.boxesCarousel .swiper-button-next {
    right: 0px;
}
.nav-holder .arrows-holder{
    width:140px;
    margin-bottom:20px;
}
@media screen and (min-width: 768px) {
    .nav-holder {
        display:flex;
    }
    .nav-holder .arrows-holder{
        margin-right:20px;
        margin-bottom:unset;
    }
    .nav-holder .scroll-holder {
        width:calc(100% - 160px);
    }
    .nav-holder .swiper-scrollbar {
        bottom:13px;
            height: 1px;
            background:var(--gray-main-color);
    }
    .swiper-scrollbar-drag {
        border-radius:0;
        height: 3px;
        top: -1px;
    }

}
/*OTHER PAGES - ONLY 1 ITEM
==========================================*/
.otherPages-onebox {
    position: relative;
}
.otherPages-onebox::before {
    content:"";
    background: #dcdddd;
    position: absolute;
    top: 15%;
    bottom: 15%;
    width: 100%;
    z-index: -1;
}
.otherPages-onebox .item{
    width:70%;
    margin: auto;
    position: relative;
}
@media screen and (max-width: 991px) {
    .otherPages-onebox .item{
        width:90%;
    }
}
.otherPages-onebox .item .content-above-img{
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    color:var(--white-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.otherPages-onebox .item .content-above-img:before{
    content:"";
    background: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
        height: 100%;
    z-index: 0;
}
.otherPages-onebox .item .content-above-img h3 {
    font-weight:100;
}
.otherPages-onebox .item .content-above-img h2,
.otherPages-onebox .item .content-above-img a{
 color:var(--white-color);
 z-index: 2;
 position: relative;
}
/*LISTING BOXES - Experiences Page
==============================*/

.box-listing-container > div {
    padding-bottom:80px;
}
@media screen and (min-width: 992px) {
    .box-listing-container > div:nth-of-type(odd) .box-listing-item{
        margin-right:20px;
    }
    .box-listing-container > div:nth-of-type(even) .box-listing-item{
        margin-left:20px;
    }
}
@media (min-width: 992px) {
.experiences-listing {
        --bs-gutter-x: 2.5rem;
    }
}





















/* ACCOMM page - rooms && Listing Subpages - extend room class
============================================================== 
.room {
    position:relative;
    color:var(--white-color);
}
.room:before {
    content:"";
    position:absolute;
    top:50px;
    left: 0;
    right: 0;
    bottom: -40px;   
    background:var(--gray-main-color);
    z-index:-1;
}
@media screen and (max-width: 991px) {
    .room:before {
        top:0px;
        bottom: -50px; 
    }
}
@media screen and (min-width: 768px) {
    .room .img-holder {
      margin:0 20px;
    }
}
@media screen and (min-width: 992px) {
    .room .img-holder {
        position:relative;
        margin:0 50px;
    }
}
.room .box-overImg {
    background:var(--gray-main-color);
    width: 46%;
    margin-top: -180px;
    position: relative;
    margin-left:auto; 
    padding:0 20px;
}
.room .box-overImg p:last-child {
    margin-bottom:0px;
}
.room.revert .box-overImg {
    margin-left: unset; 
}
.room .bookBtn,
.room h2,
.room h3 {
     color:var(--white-color);  
}
.room h2 {
  font-size:36px;  
  margin-bottom: 20px;
}
.fr .room h2,
.de .room h2 {
  font-size:32px;  
}
@media screen and (min-width: 992px) {
    .room h2 {
      margin-top: 40px;
    }
}
.room h3 {
    font-family: var(--fontRegular);
    font-size: 22px;
}
@media screen and (max-width: 1199px) {
  .room h2  {
    font-size: 34px;
    }
}

@media screen and (max-width: 991px) {
    .room .box-overImg {
        position: relative;
        padding: 10px 20px;
        margin-top: 0;
        width: auto;
    }
   .room h2 {
        font-size: 32px;
    }
    .box-overImg,
    .room.revert h2{
        text-align: left !important;
    }
}
@media screen and (max-width: 767px) {
    .room h2 {
        font-size: 32px;
      }

}
@media screen and (max-width: 320px) {
    .room h2 {
        font-size: 28px;
      }
}
@media screen and (min-width: 992px) {
    .room .box-overImg.placement {
        margin-left:auto;
        margin-right:30px;
    }
    .room.revert .box-overImg.placement {
        margin-left: unset; 
        margin-left:30px;
    }
}
*/
/* LIsting Subpages - extend room class
========================================= */
.room.position-bg:before {
    top:-40px;
    left: 100px;
    right: 0;
    bottom: -40px;   
}
.room.position-bg.revert:before {
      left: 0px;
    right: 100px;  
}
@media screen and (max-width: 991px) {
    .room.position-bg:before,
    .room.position-bg.revert:before{
        top:100px;
        left:0;
         right: 0;
          bottom: -50px; 
    }
}
.room.position-bg .h2{
    margin-top:0px;
}
.room.white-bg{
     color:var(--gray-main-color);
}
.room.white-bg:before {
    display:none;
}
.room.white-bg .box-overImg {
    background: var(--white-color);
}




/*ACCOMMODATION INTRO - GROUPS
=================================
@media screen and (min-width: 992px) {
  .grouped-rooms .group-room:first-child .rooms-per-group {
      margin-right:12px;
  }  
    .grouped-rooms .group-room:nth-child(2) .rooms-per-group {
      margin-left:12px;
  }  
}
.rooms-per-group {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.rooms-per-group:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}
.items-hover-displayed {
    position: absolute;
    z-index:1;
}
.items-hover-displayed .rooms-list {
    transition: opacity 800ms, display 800ms;
    display: none;
    opacity: 0;
}
.items-hover-displayed a,
.items-hover-displayed h2
{
    color:var(--white-color);
}
.items-hover-displayed a:hover{
    color:var(--light-white);
    text-decoration:underline;
}
.rooms-per-group:hover .items-hover-displayed .rooms-list{
    opacity: 1;
    display: block;
}
@media screen and (max-width: 1280px) {
    .items-hover-displayed h2{
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 767px) {
    .items-hover-displayed h2{
        font-size: 2rem;
    }
}
*/

/*ACCOMMODATION 
========================*/
/*.px-box {
    padding-left:10px;
    padding-right:10px;
}
.room-box h2 {
  font-size:36px;  
  margin-top:15px;
  margin-bottom: 25px;
  text-align: left !important;
}
.fr .room-box h2,
.de .room-box h2 {
  font-size:32px;  
}
@media screen and (max-width: 1199px) {
    .room-box h2  {
      font-size: 34px;
    }
}
@media screen and (max-width: 991px) {
    .room-box h2 {
        font-size: 32px;
    }
}
@media screen and (max-width: 767px) {
    .room-box h2 {
        font-size: 32px;
      }
}
@media screen and (max-width: 320px) {
    .room-box h2 {
        font-size: 28px;
      }
}
*/




/*  Filters Accommodation - Experiences
==========================================*/
.filters {
  margin-bottom: 50px;
  padding-top:10px;
  padding-bottom:10px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--elements-bg); /*--gray-lines*/
    border-bottom: 1px solid var(--elements-bg);
}
.filter {
  padding: 4px 0px;
  margin:0 20px;
  letter-spacing: 1.5px;
  font-family:var(--fontBold);
  position:relative;

}
.filter::before {
    content: "";
    position: absolute;
    margin:0 auto;
    display: block;
    width:0%;
    height: 2px;
    background-color: var(--gray-main-color);
    z-index: 0;
    bottom: 2px;
    left:0;
    transition: .3s linear;
}
.filter:hover,
.filter.active {
    cursor: pointer;
    color: var(--gray-main-color);
}
.filter.active::before,
.filter:hover::before {
    width:100%;
}
.hide-item { /* You can play with the seconds to change the "animation" */
  animation: hide-item .3s ease 0s 1 normal forwards;
  transform-origin: center;
  padding:0px;
}
.show-item { /* You can play with the seconds to change the "animation" */
    animation: show-item .3s ease 0s 1 normal forwards;    
    transform-origin: center;
}

@keyframes hide-item {
  0%{
    transform: scale(1);        
  }
  100% {
    transform: scale(0);        
    width: 0;
    height: 0;
    margin: 0;
  }
}
@keyframes show-item {
  0%{
    transform: scale(0);     
    width: 0;
    height: 0;
    margin: 0;   
  }
  100% {
    transform: scale(1);    
  }
}

@media screen and (max-width: 575px) {
    .filter {
        padding: 4px 0px;
        margin:0 8px;
        letter-spacing: 1px;
        font-size: 14px;
    }
}

/* END LIsting Subpages - extend room class
========================================= */
.main-text ul,
.list,
.umb-block-list ul,
.offer-page ul{
    margin-bottom:15px;
}

.list li,
.umb-block-list ul li,
.offer-page ul li{
    list-style: circle;
    list-style-position: inside;
   /* margin: 0px 25px; */
}
.umb-block-list ul li p {
    margin-bottom:0;
    display: inline;
}

/* BLOCK LISTS
========================================= */
@media screen and (min-width: 1200px) {
    .section-row .text-container{
        max-width:70%;
        margin-left:10%;
        margin-right:20%;
    }
}
/*secgtion Image & Text Bg
----------------------------*/
.section-row .img-bg .img-bg-container{
    position:relative;
}
.section-row .img-bg:not(.order-lg-2) .img-bg-container{
    padding:30px 30px 0 0;
}
.section-row .img-bg.order-lg-2 .img-bg-container{
       padding:30px 0 0 30px;
}
.section-row .img-bg .img-bg-container:after {
    content:"";
    position: absolute;
    background-color: #d6d6d6;
    width:80%;
    height: 80%;
    top: 0;
    z-index: -1;
}
.section-row .img-bg:not(.order-lg-2) .img-bg-container:after {
    right:0;
}
.section-row .img-bg.order-lg-2 .img-bg-container:after{
     left:0;
}
@media screen and (min-width: 1200px) {
    .section-row .img-bg:not(.order-lg-2) .img-bg-container{
        padding:50px 50px 0 0;
    }
    .section-row .img-bg.order-lg-2 .img-bg-container{
        padding:50px 0 0 50px;
    }
}

.section-facilities-columns h2,
.section-facilities-columns .text {
    text-align: center;
}
.section-facilities-columns .row{
    padding-top:60px;
}


/* FORMS
====================================== */
.contactform {
    text-align: left;
    padding-top:30px;
}
.contactform .form-control {
    font-family: var(--fontRegular);
  	border-radius: 0px;
  	height: 40px;
  	font-size: 18px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	outline: none;
	color: #565656;
	padding: .375rem .375rem;
}
.contactform .form-control:focus {
	outline: 0;
	border: 1px solid rgba(97, 97, 97, 1);		
	box-shadow: 0 1px 3px transparent;
}
.contactform select.form-control {
	color:#989898;
}

.contactform textarea.form-control {
  height: auto;
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 12px;
  text-align: left; }
.control-label {
  font-weight: normal;
  text-align: left;
  display: block; }
label span {
  color: red; }
label.required:after {
  content: " *";
  color: #FF0000; }
.asterisk {
	text-align:left;
	font-size:13px;
}
.form-agree label {
	display:inline;
	font-size:18px;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
}
.form-agree a:hover {
    text-decoration:none;
}
.submitBtn{
    background-color: var(--gray-main-color);
    border: 0px;
    padding: 12px 30px;
    vertical-align: inherit;
    transition: all 0.3s ease 0s;
    margin-top: 0!important;
    color: var(--white-color);
  border-radius:0;
    
}
.submitBtn:hover,
.submitBtn:focus {
	outline: 0 !important;
    background-color: #f1f1f1;
    border: 0px;
    color: var(--gray-main-color);
}

.signup .field-validation-error {
  text-align: center; }
  

#json-msg {
    padding-top: 20px;
}
.status-failure,
.status-busy {
    margin: 6px 0 0 0;
}
.status-busy img {
    height: 10px;
}
/*SITEMAP
----------------------------*/
.sitemap {
    text-transform: uppercase;
}
.sitemap a {
    text-decoration: none;
}
.sitemap a:hover {
    text-decoration: underline;
}

.sitemap a{
    color: var(--gray-main-color);
}
.sitemap a:hover{
    text-decoration:underline;
}


















.wordbreak a{
     word-break: break-word;  
}
.error {
    color: #f1cdc9;
    font-size: 12px;
    padding-left: 15px;
}

/* Calendar
====================== */
/*
.ui-datepicker {
    font-size:16px;
    letter-spacing:0px!important;
        border-radius: 0;
    font-family: var(--fontRegular);    
}
.ui-datepicker-header {
    background:none!important;
    background-color: var(--light-white)!important;
	border:none;
	color:#333;
	font-size:18px;
	font-weight:bold;
	letter-spacing:0px!important;
	border-radius: 0;
}
.ui-datepicker .ui-icon {
      background:none!important;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    background: url(/images/gallery-arrow.svg) no-repeat center !important;
        border:none;
}
.ui-datepicker .ui-datepicker-prev:hover, 
.ui-datepicker .ui-datepicker-next:hover {
    border:none;
}
.ui-datepicker .ui-datepicker-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ui-datepicker .ui-state-active {
    background-color:var(--gray-main-color);
    border-color:var(--gray-main-color);
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-next:hover {
    right: 2px;
    top: 2px;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-prev:hover {
    left: 2px;
    top: 2px;
}*/

/* Popups
====================== */
.modal {
  z-index: 10500;
}
.modal .modal-dialog {
    max-width: 720px;
}
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  border-radius: 0px;
  border: none;
  text-align: left;
  font: normal normal 300 19px/30px var(--fontRegular);
  letter-spacing: 0px;
    background: var(--white-color);
  color: var(--gray-main-color); 
}
.modal  .h3{
    font-size: 2.2rem;
}
.modal .btn-close {
    position: absolute;
    width: 2em;
    height: 2em;
    right: 0px;
    top: 0px;
    opacity: .8;
    border-radius: 0px;
}
.modal .btn-close:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--gray-main-color);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .5;
}
@media screen and (max-width: 767px) {
    .modal .modal-body .imgCol {
        height: 300px !important;
    }
    .modal .modal-content {
        font: normal normal 300 16px/27px var(--fontRegular);
    }
    .modal .modal-dialog {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}





/* CUSTOM CURSOR
================================ */
.sliderContainer{
    overflow:hidden;
}
.cursor {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 5;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.cursor-dot {
    position: relative;
    display: flex;
    width: 6.25rem;
    height: 6.25rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(237, 238, 238, .8);
    opacity: 0;
    transition: height 300ms ease, width 300ms ease, opacity 300ms ease;
}
.text-wrapper {
    overflow: hidden;
    height: 1rem;
}
.cursor-text {
    transition: transform 300ms ease;
    font-size: 1rem;
    line-height: 1;
    color:var(--gray-main-color);
    font-size:12px;
    font-weight:300;
    letter-spacing:2px;
}
.cursor-dot-accent {
    position: absolute;
    transition: opacity 300ms ease;
}

.cursor-dot-accent.left {
    left:5px;
    /*background: url(../images/arrow-left.svg) no-repeat;*/
    background: url(../images/arrow.svg) no-repeat;
    transform: scaleX(-1);
    width: 15px;
    height: 13px;
        background-size: contain;
}
.cursor-dot-accent.right {
    width: 15px;
    height: 13px;
    right:5px;
    background: url(../images/arrow.svg) no-repeat;    background-size: contain;
}
.no-click{
    pointer-events: none;
    touch-action: none;
}
.can-click{
    pointer-events: auto;
    touch-action: auto;
}
.cursor-dot.show{
 	opacity: 1;
}
.cursor-dot.active{
  	width: 4rem;
    height: 4rem;
}
.cursor-dot.active .cursor-text{
  	transform: translateY(-100%)
}
.cursor-dot.active .cursor-dot-accent{
  	opacity: 1;
}


 
/*# sourceMappingURL=style.css.map */