/** START OF GENERIC RULES **/
:root {
  --fontMain: "Syne", sans-serif;
  --fontHeadings: "Ysabeau", sans-serif;
  --black: #404040;
  --white: #fff;
  --grey: #dedfe0;
  --color-blue: #143f90;
  --color-blue-light:#3b61a7; /* #2355a0;*/
  --color-salmon-light: #fab49b; 
  --color-salmon-dark: #d67e61; /*not-used*/

  --transition3s: all 0.3s linear;
  --transitionColor: background 0.2s linear, padding 0.2s linear,
    color 0.05s linear 0.1s;
  --backDropFilter: blur(2px);
    interpolate-size: allow-keywords;
  
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:focus,
a:focus {
  box-shadow: none !important;
  outline: none;
}

button:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

a {
  text-decoration: none;
  background-color: transparent;
  outline: 0;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

.bluebg {
  background-color: var(--color-blue);
  color: var(--white);
}
.text-blueDark {
  color: var(--color-blue);
}
.greyBg {
  background-color: rgba(222, 223, 224, 0.5);
}

.form-control:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

picture {
  display: block;
}
picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/*
.bg-img {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}*/

/** END OF GENERIC RULES **/

/**START OF BODY AND HEADINGS **/
body {
  font-family: var(--fontMain);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: var(--black);
}
body.overlay-menu-opened {
    overflow:hidden;
}

h1, .h1,
h2, .h2,
h3, .h3{
  font-family: var(--fontHeadings);
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: normal;
}
h1, .h1 {
  font-size: 50px;
  color: var(--black);
}

h1 span,
.h1 span {
  font-size: 20px;
  display: block;
  color: var(--color-blue-light);
  margin-bottom: 10px;
  line-height: 1;
 /* text-transform: uppercase;*/
}
.bluebg .h1,
.bluebg .h1 span {
  color: var(--white);
}
h2, .h2 {
  font-size: 40px;
}
h3, .h3 {
  font-size: 32px;
}

@media screen and (max-width: 1399px) {
  h1, .h1 {
    font-size: 45px;
  }
    h2, .h2 {
    font-size: 38px;
  }
    h3, .h3 {
        font-size: 30px;
    }
}
@media screen and (max-width: 1199px) {
  h1, .h1 {
    font-size: 40px;
  }
    h2, .h2 {
    font-size: 34px;
  }
    h3, .h3 {
        font-size: 28px;
    }
}
@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 30px;
  }
    h2, .h2 {
    font-size: 26px;
  }
     h3, .h3 {
        font-size: 24px;
    }
}
/**END OF BODY AND HEADINGS **/

/** START OF BUTTONS 
=========================================**/
a,
a:hover {
  text-decoration: none;
  color: inherit;
}
.cta {
  position: relative;
  margin: auto;
  padding: 19px 22px;
  transition: var(--transition3s);
  display: inline-flex;
  font-size: 16px;
  line-height: 18px;
 /* font-weight: 700;*/
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index:1;
}
.cta:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  z-index:-1;
  display: block;
  border-radius: 28px;
  background: rgba(35, 85, 160, 0.2); 
  backdrop-filter: var(--backDropFilter);
  width: 56px;
  height: 56px;
  transition: var(--transition3s);
}
.cta:after {
    content: "";
    position: relative;
    width: 25px;
    height: unset;
    background: url(/images/arrow-line-right.svg) no-repeat center right;
    display: inline-block;
    background-size: 100%;
    height: 16px;
    margin-left: .5rem;
}
.cta:hover:before {
  width: 100%;
  background: rgba(35, 85, 160, 0.2);
  backdrop-filter: var(--backDropFilter);
}
.cta.white:after {
  filter: brightness(0) invert(1);
}
.cta.white:before {
  background: rgba(35, 85, 160, 0.9);
}
.cta.white:hover:before {
  background: rgba(35, 85, 160, 0.9);
}
.cta:hover svg {
  transform: translateX(0);
}
.cta:active {
  transform: scale(0.96);
}
.btn-book {
  padding: 19px 22px;
  transition: var(--transition3s);
  display: inline-flex;
  font-size: 16px;
  line-height: 18px;
  /*font-weight: 700;*/
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn-book:hover {
  letter-spacing: 3.5px;
}
.btn-book.filled {
    background: var(--color-blue);
    color: var(--white);
      padding: 16px 22px;
}
@media screen and (max-width: 575px) {
  .cta span,
  .btn-book {
    font-size: 14px;
  }
}
.buttons-holder {
    padding-top:30px;
}


/** START OF MARGIN AND PADDING  
=========================================*/
.marginTop {
  margin-top: 100px;
}
.paddings {
  padding: 100px 0px 100px;
}
@media screen and (max-width: 991px) {
  .marginTop {
    margin-top: 80px;
  }
  .paddingBG {
    padding: 45px 0px;
  }
  .paddings {
    padding: 80px 0px 80px;
  }
}
@media screen and (max-width: 575px) {
  .marginTop {
    margin-top: 60px;
  }
  .paddingTop {
    padding-top: 60px;
  }
  .paddings {
    padding: 60px 0px 60px;
  }
}


/* HEADER  
================================= */
.main-header {
  background: var(--white);
  position:relative;
}
.main-header .header-logo {
  width: 220px;
}

@media screen and (max-width: 1199px) {
  .main-header .header-logo {
    width: 160px;
  }
}
@media screen and (max-width: 340px) {
  .main-header .header-logo {
    width: 130px;
  }
}
.main-header .header-logo a {
  display: block;
}
.right-col{
    display:flex;
    align-items:center;
}
.right-col > div:not(:last-child){
    margin-right:30px;
}
.hotel-menu {
    display:none;
}
@media (min-width: 768px) {
    .hotel-menu {
      background-color: var(--color-blue);
      padding: 10px 0px;
      transition: all 2s ease;
      text-align:right;
      display:block;
    }
    .hotel-menu ul {
        list-style: none;
        display: inline-flex !important;
        flex-wrap: wrap !important;
        margin-left:auto;
    }
    .hotel-menu ul > li:not(:last-child){
        margin-right:30px;
    }
    .hotel-menu a {
      color: var(--white);
      font-size: 16px;
      display: flex;
      align-items: center;
      transition: var(--transition3s);
    }
    .hotel-menu a:hover,
    .hotel-menu a.active{
      color: var(--color-salmon-light);
    }
}
@media screen and (min-width: 1480px) {
  .hotel-menu li a {
    font-size: 18px;
  }
}


.bookHeader {
  position: relative;
  text-align: center;
}
.bookHeader > a {
  background: var(--color-blue);
  color: var(--white);
  display: block;
  padding: 0px 20px;
  display: flex;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  height: 80px;
  transition: var(--transition3s);
}
.bookHeader .dropdown-toggle::after {
    display:none;
}
.bookHeader > a.show,
.bookHeader a:hover {
  background-color: var(--color-salmon-dark);
}
.bookHeader img {
  height: 25px;
  width: 25px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1199px) {
  .bookHeader a {
    padding: 0px 10px;
    font-size: 15px;
  }
}
.bookHeader:hover .dropdown-menu{
    display:block;
}
.bookHeader .dropdown-menu{
    padding: 0;
    background-color: var(--white);
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
}
.bookHeader .dropdown-menu a {
     color: var(--color-blue);
      display: block;
      padding: 15px 20px;
      display: flex;
      font-size: 16px; 
}
.bookHeader .dropdown-menu a:hover {
    color: var(--white);
}
/**LANGUAGES**/
.languagesDrop .dropdown-toggle {
  color: #ffffff;
  border: none;
  background: transparent;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 14px;
  transition: 0.3s linear;
}

.languagesDrop .dropdown-toggle::after {
  margin-left: 0;
}

.languagesDrop a {
  color: #ffffff;
  text-decoration: none;
}

.languagesDrop .dropdown-menu {
  min-width: 40px;
  border-radius: 0;
  background: transparent;
  border: none;
  left: 0px !important;
  top: 22px !important;
}

.languagesDrop .dropdown-item {
  display: block;
  padding: 0px;
  text-align: center;
  padding: 0 5px;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--black);
}

.languagesDrop .dropdown-item:hover {
  background: none;
  color: #000000;
}
.languagesDrop.dropdown.active .dropdown-menu,
.languagesDrop.dropdown:hover .dropdown-menu {
  position: absolute !important;
  display: block;
  border: 0px solid rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 0;
  padding: 8px 10px;
  font-size: inherit;
  z-index: 1030;
  left: 20px;
  top: calc(100% - 2px);
  margin: 0;
  line-height: 1.4;
}

.languagesDrop.dropdown .dropdown-menu li {
  display: block;
  padding: 10px 5px 0px 5px;
}

.languagesDrop.dropdown .dropdown-menu a.active,
.languagesDrop.dropdown .dropdown-menu a:hover {
  color: var(--color-salmon-dark);
}

@media screen and (max-width: 1199px) {
  .languagesDrop .dropdown-toggle {
    font-size: 16px;
  }
}

/**END OF LANGUAGES**/


/* MOBILE MENU  
========================================*/
/*.mobile-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}*/
.menu-open {
    cursor: pointer;
}
.menu-open img {
    width:38px;   
}
/*
.overlay-menu-opened .mobile-menu {
    height:100vh;
}*/
.menu_overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  color: var(--white);
  top: 0px;
  right: 0px;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
.mobile-menu .close-menu {
    text-align:right;
    padding-top: 1.5rem;
}
.mobile-menu .close-menu img {
    width: 38px;
    position:relative;
    z-index: 100;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.menu_overlay-logo {
    margin: 0px 1.35rem 0;
    filter: brightness(0) invert(1);
    text-align: center;
}
.menu_overlay-logo img{
    width:180px;
}
.menu_overlay ul.main-menu {
    list-style: none;
    overflow-y: scroll;
    scrollbar-width: none;
    list-style: none; 
    font-size: 24px;
}
.menu_overlay .main-menu a {
    color: var(--white);
    /*text-transform: uppercase;*/
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 8px 15px;
    transition: var(--transition3s);
}
.menu_overlay .main-menu a:hover {
    letter-spacing: 2.1px;
}
.main-menu .hotelslist ul{
    list-style: none; 
    font-size: 18px;
}
.main-menu .hotelslist .hotel-logo {
    display:none;
}
@media screen and (max-width: 767px) {
    .menu_overlay {
        z-index: 1;
        overflow-y: scroll;
        background: var(--color-blue);
    }
    .side1,
    .side2 {
        background: var(--color-blue);
    }
    .menu_overlay ul.main-menu {
        position: relative;
        margin: 5rem auto;
    }
    .main-menu > li:not(.hotelslist),
    .main-menu .hotelslist ul{
        margin-bottom: 30px; 
    }
    .menu_overlay .main-menu > li:not(.hotelslist):after,
    .main-menu .hotelslist ul:after {
        content: "";
        width: 100px;
        height: 1px;
        display: block;
        background: #fff;
        margin: auto;
    }
}
@media (min-width: 768px){
    .side {
      height: 100vh;
      position: absolute;
      top: 0;
      width: 80%;
      z-index: 10;
    }
    .side2 {
       width: 20%;
      background-color: var(--color-blue-light);
      left: 0;
      transform: translateX(-100%);
      color: white;
      transition: transform 0.5s ease;
    }
    .side1 {
        height: 100%;
        right: 0;
        background: var(--color-blue);
        overflow-y: scroll;
    }
    .menu_overlay-logo {
        margin:130px 15px 30px;
    }
    .inner-space {
        margin: 120px 10px 30px;
        height: calc(100% - 150px);
    }
    .main-menu {
        position: relative;
        height: 100%;
    }
    .menu_overlay .main-menu a {
        text-align: left;
    }
    .main-menu > li {
        width: 33.333%;
    }
    .main-menu li.hotelslist{
        position: absolute;
        left: 33.333%;
        z-index: 10;
        top: 0;
        width: 33.333%;
    }
    .main-menu li[data-count="2"]{
         left: 66.666%;
     }
     .main-menu .hotelslist .hotel-logo {
         width:160px;
         filter: brightness(0) invert(1);
         display:block;
        margin-bottom: 20px;
     }
     .main-menu .hotelslist .hotel-name span{
        display:none;   
     }
}
@media (min-width: 992px){
    .inner-space {
        margin: 120px 50px 30px;
        height: calc(100% - 150px);
    }
}
@media (min-width: 1200px){
    .inner-space {
        margin: 120px;
        height: calc(100% - 240px);
    }
    .menu_overlay-logo img {
        width: 80%;
    }
}



/** SLIDER CAROUSEL
=================================== **/
/*.firstScreen {
  height: 100vh;
}*/
.noSlider-holder {
    height:80px;
}
@media (max-width: 575px) {
    .noSlider-holder {
        height: 77px;
    }
}
@media (min-width: 768px) {
    .hotel-page .noSlider-holder {
        height:124px;
    }
}
@media (min-width: 1480px) {
    .hotel-page .noSlider-holder {
        height:127px;
    }
}
@media screen and (min-width: 992px) {
    #genericCarousel .carousel-item,
    #genericCarousel {
      height: 100vh;
    } 
    #genericCarousel .carousel-item picture{    
        display: initial;
    }
    #genericCarousel img {
    height: 100% !important;
        width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 991px) {
     #genericCarousel img {
        width: 100%;
        height: auto;
     }
}

#genericCarousel::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}
#genericCarousel .carousel-control-prev,
#genericCarousel .carousel-control-next {
    visibility: hidden; }
#genericCarousel:hover .carousel-control-prev,
#genericCarousel:hover .carousel-control-next {
    visibility: visible; }
.carousel-control-next, 
.carousel-control-prev {
    width:8%;
}
#genericCarousel .carousel-control-next-icon {
  background-image: url(../images/arrow-right.svg)!important;
    filter: brightness(0) invert(1);

}
#genericCarousel .carousel-control-prev-icon {
  background-image: url(../images/arrow-right.svg)!important;
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);
    filter: brightness(0) invert(1);

}
#genericCarousel .carousel-control-next-icon, 
#genericCarousel .carousel-control-prev-icon {
  display: inline-block;
  width: 40px!important;
  height: 40px!important;
  background: no-repeat 50%/100% 100%;
}
.carousel-indicators {
  justify-content: start;
  margin-bottom: 32px;
  margin-left: 5%;
}

.carousel-indicators button {
  width: 13px !important;
  height: 13px !important;
  border: none !important;
  border-radius: 30px;
  margin: 0px 5px !important;
}

.carousel-indicators .active {
  background: var(--white);
}

.contentOverSlider {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
    padding: 10px 40px 30px 40px;
  transform: translate(-50%, -50%);
  color: var(--white);
  background: rgba(214, 126, 97, 0.65);
  backdrop-filter: var(--backDropFilter);
  text-align:center;
      font-family: var(--fontHeadings);
      font-size:20px;
}
.contentOverSlider .title {
    font-size: 60px;
    line-height: normal;
    margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
  .contentOverSlider .title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
    .contentOverSlider {
        padding: 20px 20px;
    }
    .contentOverSlider .title {
        font-size: 30px;
    }
}
/** END SLIDER CAROUSEL 
===================================**/



/* WELCOME SECTION  
======================================*/
.twoImagesSection .imageCol img {
  border-radius: 3px;
}
@media (min-width: 1480px) {
    .twoImagesSection .imageCol img {
        min-height: 500px;
    }
}
.twoImagesSection picture:not(:last-child){
    margin-right: .5rem !important;
}
.twoImagesSection picture:first-child {
  margin-top: 50px;
}
.twoImagesSection.revert picture:first-child {
  margin-top: 0px;
}
.twoImagesSection.revert picture:last-child {
  margin-top: 50px;
}
.twoImagesSection:not(.no-images) .textCol {
  padding-right: 20%;
}
.twoImagesSection:not(.no-images).revert .textCol {
  padding-left: 20%;
  padding-right: 0;
}
@media screen and (max-width: 1199px) {
  .twoImagesSection .textCol {
    padding-right: 0%;
  }
  .twoImagesSection.revert .textCol {
    padding-left: 0%;
  }
}

.twoImagesSection.bluebg .cta:after {
  filter: brightness(0) invert(1);
}
.twoImagesSection.bluebg .cta:before {
  background: rgba(35, 85, 160, 0.9);
}
.twoImagesSection.bluebg .cta:hover:before {
  background: rgba(35, 85, 160, 0.9);
}


/* WELCOME SECTION  */
.hotels-list-text {
    text-align:center;
}

/* Hotel List && Boxes with slide text on hover - swiper
====================================*/
.text-over{
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display:flex;
}
.hotel-box .text-over picture{
    width:260px;
    margin:40px auto 0;
    filter: brightness(0) invert(1);
}
.text-hover-effect {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 100;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 800ms;
  -o-transition-duration: 800ms;
  transition-duration: 800ms;
  padding:30px;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.7);
}
.text-over:hover .text-hover-effect {
   -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;   
}

.box-text-hovered .text-hover-effect {
    background-color: rgba(0, 0, 0, 1);
}
.text-over .title {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin:0px;
}

.box-link-above {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.box-link-above span{
    display:none;
}

/* WHY US  
====================================*/
.section-why h2 {
    text-align:center;
}
.section-why ul{
    display:flex;
    flex-wrap:wrap;
    text-align:center;
   justify-content: center;
}
.section-why ul li {
  background: var(--white);
  border-radius: 3px;
  width: calc(20% - 20px);
  padding: 24px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 14px 5px rgb(20 20 20 / 5%);
}
.section-why ul li strong {
  display: block;
  font-weight: 500;
  font-size: 20px;
  margin-top: 20px;
  /*text-transform: uppercase;*/
}
@media screen and (max-width: 1199px) {
    .section-why ul li{
        width: calc(33.333% - 20px);
    }
}
@media screen and (max-width: 991px) {
  .section-why ul li{
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 575px) {
  .section-why ul li {
    width: calc(100% - 20px);
  }
}


/* REVIEWS  
====================================*/
.testimonial-box {
  background: var(--white);
  padding: 20px;
  border-radius: 3px;
  text-align: center;
  border: 1px solid var(--color-blue);
  cursor: pointer;
  font-size: 15px;
}
.testimonial-box .rTitle{
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}
.testimonial-brand {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: var(--grey);
  padding: 9px 35px;
  border-radius: 3px;
  text-align: center;
  /* color: var(--white);
 text-transform: uppercase;*/
}
.testimonials {
  padding-bottom: 70px;
}
.testimonials .swiper-slide {
  padding: 5px;
}
.testimonials .swiper-pagination-bullet {
  background: var(--black);
  display: inline-block;
  height: 14px;
   width: 14px;
  margin: 0 2px 5px;
  border-radius: 3px;
  opacity:.4;
  cursor:pointer;
}
.testimonials .swiper-pagination-bullet-active {
     opacity:.6;
}



/* SECTION TEXT - List
====================================*/
.section-text {}
ul.list-columns {
    margin-bottom:24px;
}
@media screen and (max-width: 767px) {
    ul.list-columns {
        text-align:center; 
        list-style-position: inside;
    }   
}
@media screen and (min-width: 768px) {
    ul.list-columns{
        column-count: 2;
        text-align:left;  
        padding: 0 0 0 24px;
    }  
    .list-columns li{
        margin:0px 15px;
    }  
}
@media screen and (min-width: 1200px) {
    ul.list-columns{
        column-count: 3;
    }
}


/* ROOM PAGE -
====================================*/
.room-page .section-text.greyBg{
    margin-top:80px;
    margin-bottom:80px;
}

.room-page .section-text ul{
    list-style:none;
}

.room-gallery img:hover {
  filter: brightness(70%);
}
.room-details{ 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--color-blue-light);
}
.room-details div{ 
    margin:0 10px;
}
.room-details div:first-child{ 
    margin-left:0px;
}
.room-details div:last-child{ 
    margin-right:0px;
}

.rooms-carousel .room-details{
    color: var(--white);
    justify-content: start;
}
.roomsListing .room-details{
    justify-content: start;
    color: var(--black);
}
.roomsListing .bluebg .room-details{
    color: var(--white);
}

.othersSwiper {
    padding:30px 0;
}


/* SWIPER CAROUSELS  
======================================= */
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}
.swiper-button-next,
.swiper-button-prev {
  padding: 15px !important;
  width: 60px;
  height: 60px;
  top: 40px;
      top: 50%;
    transform: translateY(-50%);
  color: var(--white);
  opacity: 1 !important;
  transition: var(--transition3s);
      z-index: 10;
}
.swiper-button-next {
  background: var(--color-blue);
}
.swiper-button-prev {
  background: var(--color-blue);
  left: unset;
  right: 100px;
}
.swiper-button-disabled {
    opacity: .5!important;
}

.boxes-carousel .h1,
.rooms-carousel .h1{
    text-align:center;
}


/* HOTEL BOOKING FORM  
================================*/
.bookingForm-container{
    position: fixed;  
    z-index: 100;
    left: 0px;
    right: 0px;  
    bottom: 0px;
}
.bookingForm {
    padding: 14px 40px 20px 40px;
    background: rgba(90, 119, 180, 0.95);
    border-radius: 4px;
}
.bookingForm .column {
    width:19%;
    margin-right:2%;
}
.bookingForm .column:last-child{
    align-self: end;
      width:16%;
      margin-right:0;
      text-align: center;
}
.bookingForm .btn--book {
  color: var(--white);
    height: 38px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}
.bookingForm .btn--book:hover {
    letter-spacing: 3.5px;
}
.bookingForm .form-label {
  color: var(--white);
  font-family: var(--fontMain);
  font-weight: 500;
  font-size: 14px;
  line-height:1;
  margin:0px;
}
.bookingForm .form-control {
  border-radius: 0px;
  background-color: var(--white);
  padding-left: 11px;
  position: relative;
    /* height: 46px; */
    font-family: var(--fontMain);
    font-size: 14px;
    padding: 8px 10px;
  border: 1px solid var(--color-blue);
  border-width: 0px 0px 1px 0px;
  cursor: pointer;
}

.bookingForm-btn a{
    margin-bottom:10px;
    background: var(--color-blue);
    color: var(--white);
    display:inline-block;
    padding:16px 14px;
    border-radius:8px;
    filter: drop-shadow(30px 10px 4px #4444dd);
}
.bookingForm-btn a span{
    background:url(/images/calendar.svg) no-repeat left center;
    padding-left:32px;
    font-weight:700;
    display:block;
}
/* END BOOKING FORM  
==================================*/






/* BOX SLIDING EFFECT
=================================*/
figure.effect-lily {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  text-align: center;
  background: rgba(12, 34, 76, 0.9);
  margin-bottom: 0;
}

figure.effect-lily picture img {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-width: none;
  width: -webkit-calc(100% + 50px);
  width: calc(100% + 50px);
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}

figure.effect-lily figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index:1;
  padding: 35px 30px 35px;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.7);
 /* text-transform: uppercase;*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: left;
}
figure.effect-lily figcaption::before,
figure.effect-lily figcaption::after {
  pointer-events: none;
}
figure.effect-lily h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  margin-bottom: 30px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.effect-lily:hover img {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 992px) {
    figure.effect-lily h2 {
        margin-bottom: 20px;
    }
    figure.effect-lily figcaption {
        padding: 20px 20px 15px;
    }
}







/* START OF BOTTOM MENU  
=======================================*/
footer {
    background-color: var(--color-blue);
    color: var(--white);
}
@media (min-width: 768px) {
    .hotel-page footer {
        padding-bottom:95px;
    }
}
.bottomMenu {
  border: 2px solid var(--white);
  border-width: 1px 0px;
  text-align:center;
}
.bottomMenu a {
  color: var(--white);
  margin: 5px 10px;
}
.bottomMenu a:hover {
  text-decoration: underline;
}
footer .contact-details .pin{
    display: flex;
    align-items: center;
}
footer .contact-details .pin:before {
    content: "";
    background: url(/images/map-pin-white.svg) no-repeat center left;
    background-size: contain;
    background-position: top 0px left 0px;
    height: inherit;
    width: inherit;
    position: absolute;
    top: 0;
    width: 22px;
    height: 20px;
    position: relative;
    line-height: 1;
}
footer .contact-details img,
footer .social-details img{
  height: 22px;
  filter: brightness(0) invert(1);
}
footer .social-details a:not(:last-child) {
  margin-right: 20px;
}

.copyright {
  font-size: 14px;
  text-align: center;
  border: 2px solid var(--white);
  border-width: 1px 0px;
}
.copyright a {
  text-decoration: underline;
}
.copyright a:hover {
  text-decoration: none;
}

/* NEWSLETTER FORM 
=======================================*/
.newsletterform .form-control {
  border-radius: 0px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  padding: 15px 20px;
  font-size: 16px;
}
.newsletterform .form-control::placeholder,
input[type="email"]::-webkit-input-placeholder {
  color: var(--white);
}
.newsletterform .field-validation-error {
    color:#FFD1D1;
}
.newsletterform .submit {
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 0px;
  padding: 15px 22px;
}
.newsletterform .submit:hover {
  background: var(--color-salmon-dark);
}

/* CONTACT FORM & PAGE
=======================================*/
.map-holder{
    max-width:950px;
    margin:50px auto;
    position:relative;
}
.map-holder .pin {
    width: 170px;
    height: 40px;
    position:absolute;
    z-index:10;
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 1));
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 1));
    background: #000;
    transition: .3s;
    text-align: left;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.map-holder .pin:before {
    content: "";
    background: url(/images/map-pin-white.svg) no-repeat center left;
    background-size: auto 40px;
    background-position: bottom 0px left 3px;
    height: inherit;
    width: inherit;
    position: absolute;
    bottom: -5px;
}
.map-holder .pin a {
    margin-left: 40px;
    position:relative;
    color:#fff;
}
.map-holder .pin.pin1{
    bottom: 19%;
    left: 65.5%;
}
.map-holder .pin.pin2{
    bottom: 46.5%;
    left: 61.5%;
}
@media screen and (max-width: 1199px) {
     .map-holder .pin.pin1{
        bottom: 20%;
        left: 65%;
    }  
}
@media screen and (max-width: 767px) {
    .map-holder .pin {
        width: 100px;
        font-size:12px;
    }
    .map-holder .pin.pin1{
        bottom: 20%;
        left: 64%;
    }
}
@media screen and (max-width: 575px) {
        .map-holder .pin {
        font-size:11px;
    }
     .map-holder .pin.pin1{
        bottom: 20%;
        left: 63%;
    }   
}

.map-link {
  display: block;
  border: 2px solid var(--color-blue);
  height: 500px;
  transition: var(--transition3s);
}
.map-link:hover {
  filter: drop-shadow(2px 4px 6px var(--black));
}

.contactForm label {
    display:block;
    text-align:left;
    padding-bottom: 3px;
}
.contactForm .form-control {
  border-radius: 0px;
  padding: 10px;
  border: none;
  background: transparent;
  border: 2px solid var(--black);
  transition: var(--transition3s);
}

.contactForm .form-control:focus {
  border: 2px solid var(--color-salmon-light);
}
.contactForm .submit {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: 0px;
  padding: 15px 22px;
}
.contactForm .submit:hover {
  background: var(--color-blue);
  color: var(--white);
}



.contactPage .social-details img,
.contactPage .contact-details img {
  height: 25px;
  filter: brightness(0);
}

@media screen and (max-width: 767px) {
  .map-link {
    height: 350px !important;
  }
}

.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: 14px;
}
.form-agree label {
	display:inline;
}
.form-agree .field-validation-error {
	display: inline-block;
}

.form-agree a {
    text-decoration:underline;
    padding-bottom: 0px;
}
.form-agree a:hover {
    text-decoration:none;
}

input[type="date"]:not(.has-value):before{
  content: attr(placeholder);
}

#json-msg {
    padding-top:20px;
}
.status-failure,
.status-busy {
    margin:6px 0 0 0;
}
.status-busy img{
   height: 10px;
}

/* CONTACT PAGE  */

/* GALLERY PAGE  
======================================*/
.filters {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.filter {
    padding: 10px 18px;
    color: var(--black);
    line-height: 1.5;
    border: 1px solid var(--black);
    font-weight: 600;
    /*font-size: 16px;
        text-transform:uppercase;*/
    margin:0 5px;
    transition: var(--transition3s);
}
.filter:hover,
.filter.active {
      cursor: pointer;
    color: var(--color-salmon-dark);
    letter-spacing: 3.5px;
}
.hide-items { /* You can play with the seconds to change the "animation" */
  animation: hide-items .3s ease 0s 1 normal forwards;
  transform-origin: center;
  padding:0px;
}
.show-items:not(.collapse) { /* You can play with the seconds to change the "animation" */
    animation: show-items .3s ease 0s 1 normal forwards;    
    transform-origin: center;
}

@keyframes hide-items {
  0%{
    transform: scale(1);        
  }
  100% {
    transform: scale(0);        
    width: 0;
    height: 0;
    margin: 0;
  }
}
@keyframes show-items {
  0%{
    transform: scale(0);     
    width: 0;
    height: 0;
    margin: 0;   
  }
  100% {
    transform: scale(1);    
  }
}
.photoColumn img{
    margin-bottom:22px;
}
.photoColumn a {
  transition: var(--transition3s);
  filter: brightness(0.8);
}
.photoColumn a:hover {
  filter: brightness(1);
}


/* SCROLL TO TOP  
==============================*/
.toTop {
  text-align: right;
}
a.scrollup {
  position: fixed;
  right: 20px;
  bottom: 10px;
  background: var(--white) url("../images/arrow-up-top.svg") no-repeat center
    center;
  background-size: 28px;
  width: 48px;
  height: 48px;
  z-index: 3;
  border: 2px solid var(--color-blue);
  display: none;
}
.scrollup.is-visible {
  display: inline;
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  a.scrollup {
    right: 5%;
  }
}




