@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --font-family:'Roboto', sans-serif;
    --white: #fff;
    --black: #000;
    --black2b: #2b2e34;

    --greyMarl: #C2C7CA; /*Grey Marl*/
    --greyMarlOpacity: rgba(194,199,202, .4); /*Grey Marl*/
    --greyMarlOpacity08: rgba(194,199,202, .8);  /*Grey Marl*/
    
    --blue4C:#4C6577; /*Voyager*/
    --blue2F:#2F444E; /*Deep Dark Sea*/
    --blue81:#819AAB; /*Shallows*/
    --plyr-tooltip-background: rgba(255, 255, 255, 0.9);
    --plyr-tooltip-color: #4a5464;
}
.bgBlue4C {
    background-color: var(--blue4C);
}
.bgBlue2F {
    background-color: var(--blue2F);
}
.bgBlue81 {
    background-color: var(--blue81);
}
.bgGrey {
    background: var(--greyMarlOpacity);
}

.bgWhite{
    background-color: var(--white);
}
.color-white{
    color: var(--white);
}
.color-black{
    color: var(--black);
}
.color-black2B{
    color: var(--black2b);
}


html,
body,
ul,
ol {
  margin: 0;
  padding: 0; }
  
button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
button:focus,
input:focus,
select:focus,
textarea:focus{
  outline: 0;
  box-shadow: none !important;
}

body {
  font-family: var(--font-family);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--black2b);
    text-align: left;
    transition: background-color .5s;
    cursor: auto;
    background-color: #F9F9F9;
  }
  
a{
  text-decoration: underline;
  color: var(--blue4C);
  transition: all 200ms ease-out;
}
a:hover{
  text-decoration: none;
    color: var(--blue4C)!important;
    transition: transform 0.25s ease-out;
}
/*a:link,*/
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
   /* display: none;
    -webkit-appearance: none;*/
    opacity:0;
}  

.fit-img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}


/*Button
=============================*/
.button,
.MoreLink {
    border-radius: 0px;
    font-weight: 400;
    text-decoration:none;
    line-height: 1.6;
    letter-spacing: 1.2px;
}
.button {
    display: inline-block;
    padding: 8px 16px;
    color: var(--blue2F)!important;
    background: none;
    border: 2px solid var(--blue81);
    font-size: 15px!important;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    overflow: hidden;
}
.button.white {
    color: var(--white)!important;  
    border: 2px solid #ffffff;
}
.button:after,
.button:before {
    content: "";
    position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button:after {
    background: var(--blue81);
    /*border: 2px solid var(--blue81);*/
}
.button:before {
	background: var(--blue2F);	
}
.button:hover {
    color: var(--white)!important;
}
.button.white:after {
	background: #ffffff;
}
.button.white:before {
	background: #8fb3cc;
}
.button.white:hover {
    color: var(--blue4C)!important;
}
.button:hover:before,
.button:hover:after  {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.button:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}
/*
@media (max-width: 767px){
    .button {
        padding: 8px 14px;
        font-size: 12px!important;
        letter-spacing: 1.4px;
    }
}
@media (max-width: 565px){
    .button {
        padding: 8px 10px;
        letter-spacing: 1px;
    }
}
@media (max-width: 480px){
    .button {
        padding: 6px 8px;
        letter-spacing: 0px;
    }
}
@media (max-width: 360px){
    .button {
        padding: 5px 6px;
        letter-spacing: 0px;
        font-size: 9px!important;
    }
}*/
.MoreLink {
    line-height: 1.9;
    position: relative;
    display: inline-block;
    transition: .3s linear;;
    letter-spacing: 1.4px;
    padding: 0px;
    font-size: 16px;
    color: var(--blue4C);
}
.MoreLink::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width:100%;
    height: 2px;
    background-color: var(--blue4C);
    z-index: 0;
    bottom: 2px;
    transition: .3s linear;
}
.MoreLink:hover {
    color: inherit;
}
.MoreLink:hover::before {
     width: 0;
}
@media (max-width: 767px){
    .MoreLink { 
        font-size: 14px;
    }
}
.MoreLink.white {
    color: var(--white);
}
.MoreLink.white::before {
     background-color: var(--white);
}
.MoreLink.white:hover{
    color: var(--white)!important;
}

@media (max-width: 1199px){
    html:lang(ru) .button{
        font-size:16px;
        padding: 10px 16px;
    }
    html:lang(ru) header .button {
        padding: 8px 10px;
        width:140px;
        text-align:center;
        font-size:12px!important;
        
    }
}
 
 
/*HEADERS
===================== */
  
h1, .h1,
h2, .h2,
h3, .h3 {
    font-family: var(--font-family);
    font-weight: 300;
    color: var(--blue4C);
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0px 0 30px;
}

h1, .h1 {
    font-size: 42px;
}
h1 img{
    width: 200px;
}
h2, .h2{
    font-size: 40px;;
} 
h3, .h3{
    font-size: 30px;
}
.h3.smaller {
       font-size: 28px;
}
@media (max-width: 1199px) {
    h1, .h1 {
        font-size: 32px;
    }
    h2, .h2 {
        font-size: 36px;
    }
    h3, .h3{
        font-size: 32px;
    }
    .h3.smaller {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    h1, .h1 {
        font-size: 36px;
    }
    h2, .h2 {
        font-size: 30px;
    }
    h3, .h3{
        font-size: 26px;
    }
}
@media (max-width: 575px) {
    h1, .h1 {
        font-size: 34px;
    }
    h2, .h2 {
        font-size: 28px;
    }
    h3, .h3{
        font-size: 24px;
    }
}  

.mt-offset{
    margin-top:90px;
}

@media (max-width: 1199px) {
    .mt-offset{
        margin-top:80px;
    }   
}
@media (max-width: 767px) {
    .mt-offset{
        margin-top:60px;
    }   
}

.paddingY-bg{
    padding-top:100px;
    padding-bottom:70px;
}
.paddingX-bg{
    padding-left:80px;
    padding-right:80px;
}
@media (max-width: 1199px) {
    .paddingY-bg{
        padding-top: 60px;
        padding-bottom: 50px;
    }
}
@media (max-width: 991px) {
    .paddingY-bg{
        padding-top: 40px;
        padding-bottom: 20px;
    }
}
@media (max-width: 767px){
    .paddingX-bg{
        padding-top:60px;
        padding-bottom:60px;
    }  
}

/* SLIDDER
============================== */
.topMedia {
  height: 100vh;
  position: relative; 
}
.topMediaInner {
    height: -moz-calc(100vh - 140px);
    height: -webkit-calc(100vh - 140px);
    height: calc(100vh - 140px);
    position: relative;
    margin-bottom:50px;
}
.noTopMedia {
    height: 110px;
    position: relative;
}
@media (max-width: 767px) {
	.topMedia,
	.topMediaInner{
		height:400px;
	}
}

.topMedia img,
.topMediaInner img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.carousel-fade .carousel-item {
  display: block;
  position: absolute;
  opacity: 0;
  transition: opacity .75s ease-in-out; 
	background-position: center center!important;
}
  .carousel-fade .carousel-item.active {
    opacity: 1; }

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    visibility: hidden;
    width: 50px;
}
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  visibility: visible; 
}
.carousel .carousel-control-prev {
  left: 20px;
}
.carousel .carousel-control-next {
  right: 20px;
}
@media (max-width: 767px) {
  .carousel .carousel-control-prev {
    left: 5px;
  }
  .carousel .carousel-control-next {
    right: 5px;
  }
}
.carousel-control-next-icon, 
.carousel-control-prev-icon {
   background-image:none;
    background:url(/images/right-arrow-white.svg) no-repeat center center;
    background-size:100%;
    width: 30px;
    height: 60px;
}
@media (max-width: 991px) {
    .carousel-control-next-icon, 
    .carousel-control-prev-icon {
        width:20px;
        height:40px;
    }    
}
.carousel-control-prev-icon {
   -moz-transform:rotate(180deg);  
  -webkit-transform:rotate(180deg);  
  -o-transform:rotate(180deg);  
  -ms-transform:rotate(180deg);    
}
.carousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  height: 100%; 
}
  
@media (max-width: 767px) {
	.carousel,
	.carousel-inner,
	.carousel-item {
	  height: inherit;
	}
}
.carousel {
    position: absolute;
    top: 0;
    left: 0;
}
.contentOverSlider {
    position: absolute;
    z-index: 9;
    bottom: 0%;
    left:0;
    right:0;
    height: 100%;
    width: 80%;
    font-family: var(--font-family);
    font-weight: 300;
    color: var(--white);
    font-size: 50px;
    line-height:1;
    text-align: center;
    background:rgba(0,0,0,0.01);
}
@media (max-width: 1199px) {
    .contentOverSlider {
        font-size: 48px;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .contentOverSlider {
        height: 70%;
        font-size: 48px;
    }
}

@media (max-width: 767px){
    .contentOverSlider {
        height: 70%;
        font-size: 48px;
    }
}
@media (max-width: 575px) {
    .contentOverSlider {
        height: 90%;
        font-size: 30px;
    }
}
@media (max-width: 480px){
    .contentOverSlider .button {
        padding: 6px 8px;
        letter-spacing: 0px;
    }
}
.YearAsset{
    position: absolute;
    z-index: 2;
    bottom: 10%;
    left: 0;
    right: 0;
    background: url(../images/1987.svg) no-repeat center center;
    width: 85px;
    height: 85px;
    margin: 0 auto;
}


/* 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;
    }
}
@media screen and (min-width: 1240px) {        
    .YTvideo-placement{
        /*height:calc(100vh - 40px);*/
        margin-top:-60px;
    }  
}
@media screen and (max-width: 1239px) {  
    .YTvideo-placement{
     margin-top:110px;   
    }
}
@media screen and (max-width: 991px) {  
    .YTvideo-placement{
     margin-top:120px;   
    }
}
@media (max-width: 767px) {  
    .YTvideo-placement{
     margin-top:110px;   
    }
}
.plyr__control--overlaid {
    background: #1F497D!important;
}  

 /*.plyr__tooltip {
   display: none !important;
    color: rgba(31,73,125,0.99) !important;
}*/

/*BOOKING FORM
================================ */
.bookingForm{
    position: absolute;
    bottom: -55px;
    z-index: 9;
    left: 0;
    right: 0;
}
.bookingForm .form-label {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--blue2F);
    font-weight: 500;
    line-height:1;
    margin-bottom:0;
    font-family: var(--font-family);
}
.bookingForm .column:not(:nth-child(4)) {
    border-right: 1px solid #CFCFCF;    
}

.bookingForm .column {
    width: 15%;
    padding: 0px 15px;
}
.bookingForm .column:first-child {
   width: 25%;
   background: url("../images/calendar.svg") no-repeat center center;
   background-size: 25px;
   background-position: top 35px right 15px;
}
.bookingForm .column-btn {
    width: 30%
}
.bookingForm .form-control {
  border: none;
  background: transparent;
  border-radius: 0px;
  cursor: pointer;
  background-color: transparent;
  font-size:24px;
  padding-left:5px;
  font-weight: 200;
  letter-spacing: var(--letterSpacing36);
  box-shadow: none;
  outline:none;
  padding:5px 0;
  color: var(--blue4C);
      font-family: var(--font-family);
}
.bookingForm option {
    font-size: 16px;
     color: var(--blue4C);
}
.bookingForm select {
    border-radius:0;
}

.bookingForm .CheckButton {
    position: relative;
	background: #DBDBDB;
	color: var(--blue2F);
    font-weight: 500;
	overflow: hidden;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
    height: 100%;
    width: 100%;    
    vertical-align: middle;
    position: relative;
    z-index: 1;
}
.bookingForm .CheckButton::before,
.bookingForm .CheckButton::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.bookingForm .CheckButton::before {
	background: var(--blue4C);
}/*
.bookingForm .BoCheckButtonokButton::after {
	background: var(--blue2F);
}*/
.bookingForm .CheckButton:hover {
	color: var(--white);
}
.bookingForm .CheckButton:hover::before,
.bookingForm .CheckButton:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.bookingForm .CheckButton:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}




/*== HEADER
============================================*/
header{
    padding: 15px 0;
    z-index: 10 !important;
    width: 100%; 
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}
.wrapper .header_nav{
    position: fixed;
    z-index: 10 !important;
    background-color: transparent!important;
    left:80px;
    right:80px;
}
@media (max-width: 480px){
    .wrapper .header_nav{
        left:40px;
        right:40px;
    }
}
.headerBg,
.noSlider .header_nav{
    background-color: rgba(76, 101, 119, 0.9);
}
#NewsBg .headerBg{
    background-color: rgba(255, 255, 255, 0.9);
}
.header_nav.headerBg {
    padding-top:10px;
    padding-bottom:10px; 
}
.logo img{
    /*filter: brightness(0) invert(1); */
    height: 80px;
}
#NewsBg .logo img{
    filter: brightness(0) saturate(100%) invert(52%) sepia(4%) saturate(2891%) hue-rotate(347deg) brightness(93%) contrast(86%);
     height: 62px;
}
#NewsBg .header_nav a {
    color: var(--black2b)!important;
}
.header_nav.headerBg .logo img{
    height:56px;
}

@media (max-width: 767px){
    .header_nav{
        padding-top:10px;
        padding-bottom:10px;
    }
    .logo img{
        height: 60px;
    }
    .header_nav.headerBg .logo img{
        height:50px;
    }
    .wrapper .header_nav .button,
    header .button {
        padding: 8px 12px;
        font-size: 14px!important;
    }
}
@media (max-width: 575px){
    .wrapper .header_nav .button,
    header .button {
        font-size: 12px!important;
    }
}
@media (max-width: 480px){
    .wrapper .header_nav .button{
        font-size: 12px!important;
        width: 70px;
    text-align: center;
    }
}
/*
@media (max-width: 360px){
    .logo img{
        height: 30px;
    }
    .header_nav.headerBg .logo img{
        height:40px;
    }
}*/
.header_nav a{
    color:var(--white)!important;
}
.header-ribbon{
    line-height:1.2;
}

.SmallTopMenu {
    font-size:13px;
    text-transform:uppercase;
    letter-spacing: 1.2px;
    margin-left: 50px;
}
@media (max-width: 991px){
    .SmallTopMenu {
         letter-spacing: 1.1px;
    }
}
.SmallTopMenu a{
    padding-right:7px;
    color: var(--white);
    text-decoration: none;
    transition: all 200ms ease-out;
}
.SmallTopMenu a:hover{
    color: #a7c2d5!important;
    text-decoration: none;
}

#NewsBg .SmallTopMenu img{
    filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(1047%) hue-rotate(182deg) brightness(96%) contrast(86%);
}
@media (max-width: 767px){
    .SmallTopMenu {
        font-size:10px;
        padding-right:0px;
        padding-bottom:4px;
    }  
}
@media (max-width: 575px){
    .SmallTopMenu {
        font-size:8px;
    }  
}

/*checkin link on right
===============================*/
@media (min-width: 992px){
  .SmallTopMenu a:first-child{
      position:absolute;
      right:200px;
      font-size:14px;
    }  
    :lang(de) .SmallTopMenu a:first-child{
      right:220px;
    }
    :lang(el) .SmallTopMenu a:first-child{
        right: 235px;
        letter-spacing: 0;
    }
    :lang(ru) .SmallTopMenu a:first-child{
        right: 210px;
        letter-spacing: 0;
    }
}
@media (min-width: 1200px){
  .SmallTopMenu a:first-child{
      position:absolute;
      right:230px;
  }  
    :lang(de) .SmallTopMenu a:first-child{
      right:250px;
    }
    :lang(el) .SmallTopMenu a:first-child{
      right:270px;
      letter-spacing: 1.2px;
    }
    :lang(ru) .SmallTopMenu a:first-child{
      right:340px;
      letter-spacing: 1.2px;
    }     
}
@media (max-width: 991px){
    .header_nav {
        padding-top: 40px;
    }
    .SmallTopMenu {
        display: block!important;
        position: absolute;
        top: 0px;
        right: 0px;
        width: 100%;
        text-align: right;
        /* padding: 20px; */
        background-color: var(--black2b);
        padding: 0px;
        -webkit-transition: all ease-out .5s;
        -moz-transition: all ease-out .5s;
        -o-transition: all ease-out .5s;
        transition: all ease-out .5s;
        font-size:11px;
    }
    .headerBg .SmallTopMenu {
        display: none!important;
    }
    .SmallTopMenu a:first-child{
        border-right:1px solid #fff;
        margin-right: 8px;
        padding-right: 3px;    
    }
    
}
/* LANGUAGES 
=============================== */ 
.languagesDrop {
    font-size: 14px;
}
@media (max-width: 767px) {
   .languagesDrop {
        font-size: 14px;
        margin-left:50px;
    }   
}
@media (max-width: 575px) {
   .languagesDrop {
        font-size: 12px;
    }   
}
.languagesDrop .dropdown-toggle {
    color: #fff;
}
.languagesDrop a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px; 
}
@media (max-width: 575px) {
    .languagesDrop a {
        font-size: 12px; 
    }
}
 .languagesDrop .dropdown-menu {
    min-width: 40px;
    border-radius: 0;
    background-color: #232323;
 }
 .languagesDrop .dropdown-item {
    display: block;
    padding: 0px;
    text-align: center;
 }
 .languagesDrop .dropdown-item:hover {
    background:none;
    color:grey;
 }


/*SWIPER 
=============================*/
.swiper-button-next,
.swiper-button-prev {
    background: url(/images/arrow-right-round.svg) no-repeat center center !important;
    width:30px;
    height:30px;
    top:calc(50% - 15px);
    filter: brightness(0) invert(1); 
}
.swiper-button-next.white,
.swiper-button-prev.white {
    filter: brightness(0) invert(1)!important; 
}
.swiper-button-prev {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.swiper-button-next {
    right: 30px;
}
.swiper-button-prev {
    left: 30px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}       
@media (min-width: 992px){
    .swiper-button-next,
    .swiper-button-prev {
        width:50px;
        height:50px;
    }
}

.swiper-container-outside-arrows{
    padding: 0 50px; 
}
.swiper-container-outside-arrows.bigger{     /*intro accom swiper*/
    padding: 0 240px;
}
@media (max-width: 1199px) {
    .swiper-container-outside-arrows{
        padding: 0 40px;
    }
    .swiper-container-outside-arrows.bigger{
        padding: 0 80px;
    }
}
@media (max-width: 767px){
    .swiper-container-outside-arrows,
    .swiper-container-outside-arrows.bigger{
        padding: 0 0px;
    }    
}


/*BoxesSwiper && IntroAccomSwiper (.bigger)
============================*/
.swiper-container-outside-arrows .swiper-button-next,
.swiper-container-outside-arrows .swiper-button-prev,
.swiper-container-outside-arrows.bigger .swiper-button-next,
.swiper-container-outside-arrows.bigger .swiper-button-prev {    
    width: 48px;
    height: 48px;
    top:40%;
    right: 0px;
    filter: none;
}
.swiper-container-outside-arrows.bigger .swiper-button-next,
.swiper-container-outside-arrows.bigger .swiper-button-prev {    
    width: 60px;
    height: 60px;
}
.swiper-container-outside-arrows .swiper-button-next,
.swiper-container-outside-arrows.bigger .swiper-button-next{
    right: 0px;
}
.swiper-container-outside-arrows .swiper-button-prev,
.swiper-container-outside-arrows.bigger .swiper-button-prev{
    left: 0px;
}

@media (min-width: 1200px){
    .BoxesSwiper.swiper,
    .roomsIntroSwiper.swiper{
        font-size:18px;
    }
    .swiper-container-outside-arrows.bigger .swiper-button-next {
        right: 140px;
    }
    .swiper-container-outside-arrows.bigger .swiper-button-prev {
        left: 140px;
    }
}


@media (max-width: 1199px){
    .swiper-container-outside-arrows .swiper-button-next,
    .swiper-container-outside-arrows .swiper-button-prev,
    .swiper-container-outside-arrows.bigger .swiper-button-next,
    .swiper-container-outside-arrows.bigger .swiper-button-prev {  
        width: 38px;
        height: 38px;
    }
}
@media (max-width: 991px){
    .swiper-container-outside-arrows.bigger .swiper-button-next,
    .swiper-container-outside-arrows.bigger .swiper-button-prev {  
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 767px){
    .BoxesSwiper.swiper,
    .roomsIntroSwiper.swiper,
    .reviewsSwiper.swiper {
        padding-bottom: 60px;
    }
    .swiper-container-outside-arrows .swiper-button-next,
    .swiper-container-outside-arrows .swiper-button-prev,
    .swiper-container-outside-arrows.bigger .swiper-button-next,
    .swiper-container-outside-arrows.bigger .swiper-button-prev {  
        width: 40px;
        height: 40px;
        bottom: 10px!important;
        top: unset;
    }
    .swiper-container-outside-arrows .swiper-button-next,
    .swiper-container-outside-arrows.bigger .swiper-button-next {
        right: calc(50% - 50px);
    }
    .swiper-container-outside-arrows .swiper-button-prev,
    .swiper-container-outside-arrows.bigger .swiper-button-prev {
        left: calc(50% - 50px);
    }
    .swiper-container-outside-arrows.mobile-arrow-over-img .swiper-button-next,
    .swiper-container-outside-arrows.mobile-arrow-over-img  .swiper-button-prev{
        top: 45%;
         bottom: unset!important;
    }
    .swiper-container-outside-arrows.mobile-arrow-over-img .swiper-button-next{
        right: 10px;
    }
    .swiper-container-outside-arrows.mobile-arrow-over-img .swiper-button-prev{
        left: 10px;
    }
    
}
.swiper-pagination.asText{
    font-size: 14px;
    bottom: 10px !important;
    text-align: left;
    position: absolute;
    left: 0px;
    width:100px;
}
@media (min-width: 767px) {
    .swiper-pagination.asText{
        left: 40px;
    }
}
@media (min-width: 1200px){
    .swiper-pagination.asText{
        left: 50px;
    }    
}
.swiper-pagination.asText .paginationborder:before {
    content: '';
    position: relative;
    width: 10px;
    border-bottom: 1px solid var(--black);
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.slider-Title{
    position: absolute;
    bottom: -40px;
    left: auto;
    right: 0;
    z-index: 100000;
    padding-bottom: 0px;
    font-size: 14px;
}
@media (max-width: 1199px) and (min-width: 992px){
    .slider-Title {
        bottom: -30px;
    }
}


/*CONTENT
================================*/
@media screen and (min-width: 1481px) {
    .main-section-intro {
        min-height:calc(100vh - 180px);
    }
}
.intro-text-section{
    /*padding: 0 150px;*/
    width: 70%;
    padding:50px 0;
    margin: auto;
}
@media (max-width: 1199px) and (min-width: 992px){
    .intro-text-section{
        /*padding: 0 50px;*/
         width: 80%;
    }
}
@media (max-width: 991px){
    .intro-text-section{
        width:auto;
        padding: 100px 50px;
    }
}
@media (max-width: 767px){
    .intro-text-section{
        padding: 100px 50px;
    }
}
@media (max-width: 575px){
    .intro-text-section{
        padding: 20px 15px;
    }
}
/*WHY BOOK 
=============================*/
.why{
    padding: 30px;
    color: var(--blue4C);
    background: #ECF0F3;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
}
.Why h2{
    font-size: 30px;
}
.why span{
    display: block;
    color: var(--greyMarlOpacity08);
    background: rgba(0,0,0,0.005);
    font-size: 60px;
}
@media (max-width: 1199px) and (min-width: 768px){
    .why {
        padding: 18px;
        font-size: 18px;
    }
    .why span {
        font-size: 60px;
    }
}

.section-dining .BorderBody{
    border-right: 1px solid #707070;
}
@media (max-width: 991px) and (min-width: 768px){
    .section-dining .BorderBody{
        border-right: 0px solid #707070;
    }
}
@media (max-width: 767px){
    .section-dining .BorderBody{
        border-right: 0px solid #707070;
    }
}

.section-offers h3{
    color: var(--black2b);
}
@media (min-width: 576px){
    .section-offers .bordered   {
            border-left: 1px solid #AAAAAA;
    } 
}
@media (max-width: 575px){
    .section-offers .bordered   {
            border-top: 1px solid #AAAAAA;
    } 
}
/*Scrolling Text
==============================*/
.scroll-container {
    padding: 30px 0;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.4;
}
@media (max-width: 991px) {
    .scroll-container {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .scroll-container {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .scroll-container {
        font-size: 22px;
    }
} 
.marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}
.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    list-style-type: none;
    animation: scroll 10s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
  
/*Why Book through website 
================================= */

.why-box{
    width: 20%;
    color: var(--blue4C);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2;
}
.why-box .icon-holder{
    width: 80px;
    height: 80px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--blue81);
}

@media (max-width: 1199px){
   .why-box{
        font-size: 24px;
    }
}
@media (max-width: 767px){
    .why-box .icon-holder{
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .why-box{
        width: 33%;
        font-size: 22px;
        margin: 0 auto;
    }
}
@media (max-width: 575px){
    .why-box{
        width: 50%;
        font-size: 20px;
        text-align: center;
    }
    .why-box .icon-holder {
        margin: 0 auto 10px auto;
    }
}


/*Sticky Boxes
================================= */
.section-StickyBoxes{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.StickyContainer{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.StickyContainer.sticky .StickyBox{
    position: -webkit-sticky;
    position: sticky;
}
.StickyBox{
/*    position: -webkit-sticky;
    position: sticky;*/
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding-bottom: 7vw;
    padding-top: 100px;
}
.StickyText{
    width: 30%;
    max-width: 40.625rem;
}
@media (max-width: 991px) and (min-width: 768px){
    .StickyText {
        width: 70%;
        max-width: 40.625rem;
    }
}
@media (max-width: 767px){
    .StickyText {
        width: 100%;
    }
}
.section-StickyBoxes .Overgradient{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top:0;
    pointer-events: none;
    background: rgb(129,154,171);
    background: linear-gradient(0deg, rgba(129,154,171,1) 0%, rgba(129,154,171,0.8408613445378151) 37%, rgba(129,154,171,0.5803571428571428) 60%, rgba(129,154,171,0.011729691876750659) 100%);
}
.K-S{
    text-align: center;
}
@media (min-width: 992px){
    .VerticalColumn > div:nth-child(2n){
        margin-top: 7%;
    }
}


.ImageContainer{
    position: relative;
    margin: 0 30px;
}
.ImageBackground{
    display: block;
    width: 100%;
    height: auto;
}
.ImageOnHover{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0;
    transition: .5s ease;
    background-color: #4C6577;
    font-weight: 300;
    line-height:1.2;
    padding:30px;
}
@media (min-width: 1481px){
    .ImageOnHover{
        padding:50px;
    }
}
.ImageContainer:hover .ImageOnHover {
    opacity: 1;
  }
@media (max-width: 1199px) and (min-width: 992px){
    .ImageContainer {
        margin: 0 10px;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .ImageContainer {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px){
    .ImageContainer {
        margin: 0 0px 50px 0px;
    }
}



    
/*INNER PAGES 
=============================*/
.breadcrumb {
    color: var(--black);
}
.breadcrumb li+li:before {
    padding: 8px;
    color: var(--black23);
    content: "\002F";
}
.breadcrumb a {
    color: var(--black23);
    font-weight: 300;
    text-decoration: none;
 }
.breadcrumb a:hover {
    color: var(--grey9E);
    font-weight: 300;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .breadcrumb {
        font-size:14px;
    }    
}


/*ACCOMM
=============================*/
.BorderBox{
    border-bottom:1px solid #e4e4e4;
    border-right:1px solid #e4e4e4;
}
.BorderBox:nth-child(1),
.BorderBox:nth-child(2){
    border-top:1px solid #e4e4e4;
}
.BorderBox:nth-child(2n+2) {
    border-right:0px solid #e4e4e4;
}
@media (max-width: 575px){
    .BorderBox{
        border-top:1px solid #e4e4e4;
        border-bottom:0px solid #e4e4e4;
        border-right:0px solid #e4e4e4;
    }
}

.details ul{
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-align: left;
}
.details li{
    display: inline;
    padding: 10px 10px 10px 0;
    margin-right: 10px;
    border-right: 1px solid #B4B4B4;
}
.details li:last-child{
    border-right: 0px solid #B4B4B4;
}
@media (max-width: 767px){
    .details {
        width: 100%!important;
    }
}


.detailsAsRows ul{
    margin: 0;
    padding: 0;
    text-align: center;
}
.detailsAsRows li{
    position: relative;
    display: block;
    list-style-type: none;
    color: var(--blue4C);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 50px;
    padding-bottom: 50px;
}
.detailsAsRows li::after{
    content: '';
    position: absolute;
    background-color: rgb(197, 197, 197);
    width: 50px;
    height: 1px;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.detailsAsRows li:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.detailsAsRows li:last-child::after{
    display: none;
}

@media (max-width: 767px){
    .detailsAsRows ul{
        display: flex;
        justify-content: center;
    }
    .detailsAsRows li{
        font-size: 30px;
        margin-right: 0px;
        margin-bottom: 0;
        min-width: 30%;
        padding:20px 15px;
        vertical-align: middle;
    }
    .detailsAsRows li::after{
        content: '';
        position: absolute;
        background-color: rgb(197, 197, 197);
        width: 1px;
        height: 100%;
        top: 0px;
        right: 0px!important;
        margin: inherit;
        left: auto;
    }
    .detailsAsRows li:last-child {
        margin-bottom: 0px;
        padding-bottom: 20px;
    }
}
@media (max-width: 480px){
    .detailsAsRows li {
        font-size: 20px;
    }
}


/*BackgroundFullImg
==========================*/
.AmenitiesContainer{
    position: absolute;
    bottom: 0;
    right: 0;
}
.BackgroundFullImg{
    position: relative;
    background: url(../images/background-image.jpg) no-repeat center center;
    background-size: cover!important;
    height: 100vh;
}
@media (max-width: 1199px) and (min-width: 992px){
    .BackgroundFullImg{
        height: 110vh;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .BackgroundFullImg{
        height: 120vh;
    }
}
@media (max-width: 767px){
    .BackgroundFullImg{
        background: none;
        height: auto;
    }
    .AmenitiesContainer {
        position: inherit;
    }
}
@media (max-width: 575px){
    
    .AmenitiesContainer {
        position: inherit;
    }
}

/*Amenities
==============================*/
.facilities-list ul{
    margin: 0;
    padding: 0;
}
.facilities-list li{
    position: relative;
    display: block;
    list-style-type: none;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 25px;
    line-height: 20px;
}
.facilities-list li::before{
    content: '\2713';
    position: absolute;
    width: 50px;
    height: 1px;
    top: 0px;
    left: 0;
}

/*CONTENT SECTIONS
==================================*/
.BorderSection{
    border-top:1px solid #e4e4e4;
    border-bottom:1px solid #e4e4e4;
}
@media (min-width: 992px){
    .BorderSection .col-border:nth-child(1){
        border-right:1px solid #e4e4e4;
    }
    .BorderSection .col-border.revert:nth-child(1) {
        border-right:0px;
        border-left:1px solid #e4e4e4;
    }
}
@media (max-width: 991px){
    .BorderSection .col-border:nth-child(1){
        border-bottom:1px solid #e4e4e4;
    }
}
@media (min-width: 992px){
    .borderLine{
        border-right: 1px solid #e4e4e4;
    }
    .borderLine.revert{
        border-right:0;
        border-left: 1px solid #e4e4e4;
    }
}
@media (max-width: 991px){
    .borderLine{
        border-bottom: 1px solid #e4e4e4;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.gallery-page span{
    display:block;
    font-size:14px;
    margin-bottom:25px;
}

/* FOOTER
=============================== */
footer a{
    color: var(--white);
    text-decoration: none;
    transition: all 200ms ease-out;
}
footer a:hover{
    color: #a7c2d5!important;
    text-decoration: none;
}
.footerMenu{
    display: block;
}
.footerMenu a,
.footerMenu button{
    display: block;
    font-size: 16px;  
    /* letter-spacing: var(--letterSpacing36); */
    color: var(--white);
    text-decoration: none;
    font-family: var(--fontRoboto);
    line-height: 20px;
    font-weight: 300;
    padding: 0 0 15px 0;
}
.footerMenu a:hover,
.footerMenu a:focus,
.footerMenu button:hover{
    color: #a7c2d5!important;
    text-decoration: none;
}

@media (max-width: 575px) {
    .footerMenu{
        display: block;
    }
}


.contact-details {
    font-weight: 300;
    line-height: 26px;
}


.HotelsLogo img{
    width: 120px;
}
.KymaLogo img{
    /*filter: brightness(0) invert(1);*/
    width: 160px;
}

@media (max-width: 575px){
.HotelsLogo img {
    width: 90px;
}
.KymaLogo img {
    width: 120px;
}
}

.copyright {
    font-size: 12px;
    /*text-align: left;*/
    color: var(--white);
    line-height: 22px;
}

/*=========== To Top =========== */
.toTop {
  text-align: right; }
      
a.scrollup {
    background-image: url(../images/arrow-right.svg) !important;
    background-repeat: no-repeat;
    background-position: center center;
    /*filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(23%) hue-rotate(35deg) brightness(106%) contrast(103%);*/
    bottom: 10px;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 32px;
    height: 32px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    background-size: 100% auto;
 }
.scrollup.is-visible {
	display: inline;
  	opacity: 1;
}

/*FORMS
======================*/
.newsletterform .form-control {
    background: transparent;
    border-radius: 0px;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--white);
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.32px;
}
.newsletterform ::-webkit-input-placeholder {
 	color: var(--grey9E);
}
.newsletterform :-moz-placeholder { 
   color: var(--grey9E);
}
.newsletterform ::-moz-placeholder {  
   color: var(--grey9E);
}
.newsletterform :-ms-input-placeholder { 
   color: var(--grey9E);
}
.newsletterform .form-agree label {
    font-size:14px;
}
.newsletterform .form-agree label a {
    color: var(--white);
    text-align:underline;
    transition: all 200ms ease-out;
}
.newsletterform .form-agree label a:hover {
    color: #a7c2d5!important;
    text-align:none;
}

footer .h3{
    color: var(--white);
    display: inline-block;
    font-weight: 300;
    font-size: 22px;
    line-height: 20px;
    padding: 0px 0 10px 0;
}

/* FORMS
====================================== */
.form-placement {
    font-size: 14px;
    padding: 60px 70px;
    font-weight: 400;  
}
@media (max-width: 767px){
    .form-placement {
        padding: 20px;
    }    
}
.contactform .form-control {
    border-radius: 0px;
    border: 0;
    border-bottom: 1px solid rgba(193, 192, 192, 1);
    outline: none;
    color: var(--black);
    padding: 20px;
    font-size: 16px;
    line-height:1.4;
    background:transparent;
}
::-webkit-input-placeholder {
 	color: var(--black);
}
:-moz-placeholder { 
    color: var(--black);
}
::-moz-placeholder {  
    color: var(--black);
}
:-ms-input-placeholder { 
    color: var(--black);
}
.contactform select.form-control {
    color: var(--black);
}
.contactform textarea.form-control {
  height: auto;
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  text-align: left; 
font-size:12px;    
}
.field-validation-error:empty {
	display: none;
}  

.asterisk span {
  display: inline;
  font-size: 24px;
  line-height: 22px;
}
.form-agree label {
	display:inline;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
}
.form-agree a:hover {
    text-decoration:none;
}
.grecaptcha-badge {
	display: none !important;
}

input[type="file"] {
/*    padding:6px;*/

}
.attachment-field{
    min-width: 100px;
    background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;  
}
.contactform .button{
    font-size:16px;
}

/* MAP
====================================*/
.map_link {
	display:block;
	z-index: 0;
    position: relative;
}

.map_link.inner {
	background:url(/images/gmap-kyma.jpg) no-repeat center center;	
	background-size: cover;
	min-height:550px;
	width:100%;
}
@media screen and (max-width: 992px) {
    .map_link.inner {
        min-height:450px;
    }   
}
@media screen and (max-width: 767px) {
    .map_link.inner {
        min-height:350px;
        margin-bottom:30px;
    }   
}



.wordbreak a{
     word-break: break-word;  
}
.privacyList ul{
    margin:0 0 15px 0px;
}
.privacyList li{
    list-style: circle;
        list-style-position: inside;
}
.espa-banner {
    position:fixed; 
    bottom:0px;
    left:0px;
    z-index:1000;
}

/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
    max-width:760px;
  }
.modal .modal-content {
  border-radius: 0px;
}
.modal .btn-close {
  position: absolute;
  width: 2em;
  height: 2em;
  right: 0px;
  top: 0px;
  opacity: .8;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .modal .modal-body .imgCol {
    height: 300px !important;
  }
    .modal .modal-dialog {
        max-width:400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*=================================== */
.HoverZoom-Image{
    position: relative;
    overflow: hidden; 
}
.HoverZoom-Image a{
    /*display: inline-block;*/
    display: block;
}
.HoverZoom-Image picture{
    display: block;
    overflow: hidden;
}

.HoverZoom-Image img{
    position: relative;
    width: 100%;
    z-index: 1;
    transform: scale(1);
    transition: transform 1s ease;
}
.HoverZoom-Image img:hover {
    transform: scale(1.1);
}

/* EXTRA */
.prevNextWrap {
margin:30px 0px 50px 0px;
	font-size:18px;
	 vertical-align: middle;
	text-align:center;
}
.prevNextWrap a {
    padding: 25px 0;
    vertical-align: middle;
    display: inline-block;
    color: var(--black2b);
	text-decoration:none;
}
.prevNextWrap a:hover {
    color: var(--black2b);
}
.prevNextWrap a:first-of-types {
	margin-right:20px;
}
.prevNextWrap a:last-of-type {
	margin-left:20px;
}
.prevNextWrap a.disabled{
	opacity:0.4;
	color:#00000;
	 cursor: default;
}

.prevNextWrap a.next {
	background:url(/images/right-arrow.svg)	no-repeat center center;
	padding-right: 90px;
    background-size: 20%;
}
.prevNextWrap a.prev {
	background:url(/images/left-arrow.svg)	no-repeat center center;
	padding-left: 90px;
    background-size: 20%;
}

@media (max-width:300px){
	.prevNextWrap a.next {
		padding-right: 60px;
	}
	.prevNextWrap a.prev {
		padding-left: 60px;
	}
}

.fslightbox-toolbar-button {
    width:35px!important;
}

.fromSite {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--blue4C);
}

.author {
    color: var(--blue4C);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.smallTitle {
    font-style: italic;
    font-size: 28px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
}