/** START OF GENERAL SETTINGS **/
:root {
  --fontPlayfair: "Playfair Display", serif;
  --fontRoboto: "Roboto", sans-serif;
  --white: #ffffff;
  --whiteDark: #595959;
  --black: #2a2a2a;
  --greyDark: #666;
  --gold-main: #ad9e85;
  --blueDark: #133e8c;
  --blueMedium: #0e5195;
  --blueLight: #366dae;
  --redDark: #ef524b;
  --redLight: #d86f73;
  --bgCreamDark: #faf6ef;
  --transition3s: 0.3s linear;
  --plyr-tooltip-background: rgba(255, 255, 255, 0.9);
  --plyr-tooltip-color: #4a5464;
}
.bgBlack {
  background-color: var(--black);
  color: var(--white);
}
.bgBlueDark {
  background-color: var(--blueDark);
  color: var(--white);
}
.bgBlack .section-subtitle,
.bgBlueDark .section-subtitle {
  color: var(--white);
}
.color-black{
    color: var(--black)!important;
}
.color-white{
    color: var(--white)!important;
}
.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:focus,
a:focus {
  box-shadow: none !important;
  outline: none;
}

a,
a:hover {
    color:#055276;
  text-decoration: none;
  display: inline-block;
}

/** FOR MAV IOS **/
input[type="checkbox"],
a[type="submit"] {
  -webkit-appearance: none !important;
  border-radius: 0;
  border: none;
  -webkit-border: none;
  appearance: none;
  outline: none;
}

button:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

picture {
  display: block;
  height: 100%;
  width: 100%;
}

picture img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

/** END OF GENERAL SETTINGS **/
/**START OF BODY AND HEADINGS **/
body {
  font-family: var(--fontRoboto);
  color: var(--black);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  background: var(--bgCreamDark);
  overflow-x: hidden;
  word-wrap: break-word;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--bgCreamDark);
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: var(--blueDark);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--blueDark);
}

h1,
h2,
.h1,
.h2,
h3 {
  font-family: var(--fontPlayfair);
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--black);
  font-weight: 400;
  display: block;
}

.bgBlack h1,
.bgBlack h2,
.bgBlack .h1,
.bgBlack .h2,
.bgBlack h3 {
  color: var(--white);
}

h1,
.h1 {
  font-size: 70px;
  letter-spacing: 1.5px;
}

h2,
.h2 {
  font-size: 60px;
}

h3,
.h3 {
  font-size: 42px;
}

.section-subtitle {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.45em;
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blueDark);
}

@media screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 60px;
  }

  h2,
  .h2 {
    font-size: 50px;
  }

  h3,
  .h3 {
    font-size: 35px;
  }
}

@media screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  h3,
  .h3 {
    font-size: 32px;
  }
}

@media screen and (max-width: 575px) {
  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }
}

/**END OF BODY AND HEADINGS **/

/** START OF MARGIN  **/
.marginTop {
  margin-top: 100px;
}

.paddingTop {
  padding-top: 100px;
}

.noTopMedia .paddingTop {
  padding-top: 150px;
}

.paddings {
    /*padding: 120px 0px 50px;*/
    padding: 120px 0px 100px;
}

@media screen and (max-width: 991px) {
  .marginTop {
    margin-top: 80px;
  }

  .paddingTop {
    padding-top: 80px;
  }

  .paddings {
    padding: 80px 0px 60px;
  }
}

/** END OF MARGIN  **/

/** START OF BUTTONS **/
.btn {
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  font-family: var(--fontRoboto);
  font-weight: 400;
  letter-spacing: 3.6px;
  color: var(--blueDark);
  text-align: center;
  text-transform: uppercase;
  border-radius: 0;
  padding: 10px 25px;
  transition: var(--transition3s);
}

.btn-black {
  border: 1px solid var(--blueDark);
}

.btn-black:hover {
  border: 1px solid var(--blueDark);
  background: var(--blueDark);
  color: var(--white);
}

.btn-blue {
  border: 1px solid var(--blueDark);
  background: var(--blueDark);
  color: var(--white);
}

.btn-blue:hover {
  background: transparent;
  border: 1px solid var(--blueDark);
  color: var(--blueDark);
}

.btn-white{
    border: 1px solid var(--blueDark);
    color: var(--blueDark);
}
.btn-white:hover {
  border: 1px solid var(--blueDark);
  background-color: var(--blueDark);
  color: var(--white);
}

.underline-link {
  margin-bottom: 1em;
  font-weight: 400;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.3em;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: var(--blueDark);
}

.underline-link::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid var(--blueDark);
  transform: scaleX(0);
  transform-origin: 100% center;
  transition: transform 0.3s ease-in-out;
}

.underline-link:hover {
  color: var(--black);
}

.underline-link.active::after {
  transform: scaleX(1);
}

.underline-link:hover::after {
  transform: scaleX(1);
  transform-origin: 0 center;
}
/** END OF BUTTONS 
==============================**/

.noSlider-holder {
   height:150px;
}
@media screen and (max-width: 1199px) {
    .noSlider-holder {
       height:130px;
    }    
}
@media screen and (max-width: 991px) {
    .noSlider-holder {
       height:120px;
    }    
}
@media screen and (max-width: 767px) {
    .noSlider-holder {
       height:100px;
    }    
}
@media screen and (max-width: 575px) {
    .noSlider-holder {
       height:80px;
    }    
}
@media screen and (max-width: 475px) {
    .noSlider-holder {
       height:65px;
    }    
}


/** START OF BIG CAROUSEL 
==================================== **/

#bigCarousel .carousel-item,
#bigCarousel {
  position: relative;
  height: 100vh;
}

#bigCarousel .carousel-item:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.1) 100%
  );
}

#bigCarousel .carousel-indicators {
  position: absolute;
  left: 5%;
  bottom: 3%;
  right: unset;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
}

#bigCarousel .carousel-indicators [data-bs-target] {
    background: var(--black);
  width: 10px;
  height: 10px;
  margin-right: 3px;
  margin-left: 3px;
  vertical-align: middle;
}

#bigCarousel .carousel-indicators .active {
  height: 22px;
}

#bigCarousel .carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  z-index: 2;
  padding: 1.25rem;
}

#bigCarousel .carousel-caption .h2 {
  color: var(--white);
  text-shadow: 0 2px 2px rgb(0 0 0 / 17%);
  background: rgba(0, 0, 0, 0.005);
}

#bigCarousel .carousel-control-next,
#bigCarousel .carousel-control-prev {
  width: 100px;
  z-index:2;
}

@media screen and (max-width: 991px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 500px !important;
  }
}

@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 400px !important;
  }

  #bigCarousel .carousel-control-next,
  #bigCarousel .carousel-control-prev {
    width: 40px;
  }

  #bigCarousel .carousel-caption {
    padding: 0px 10px;
  }
}
#bigCarousel  .carousel-control-next-icon, 
#bigCarousel  .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}
    

/** START OF GENERAL HERO 
========================================= **/

.home-hero.gradient .carousel-inner {
   position: relative;   
}

.home-hero.gradient .carousel-inner::before,
.home-hero.gradient .carousel-inner::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
}

/*.general-hero .general-image-hero::after {*/
.home-hero.gradient .carousel-inner::after {
  transform: rotate(-180deg);
  background: linear-gradient(180deg, #faf6ef 0, rgba(250, 246, 239, 0) 100%);
  height: 500px;
  bottom: -2px;
  z-index: 1;
}
.home-hero.gradient .carousel-inner::before {
/*.general-hero .general-image-hero::before {*/
  background: linear-gradient(180deg, #1e1e1e 0, rgba(30, 30, 30, 0) 100%);
  height: 200px;
  top: -2px;
    z-index: 2;
}
.home-hero.gradient .carousel-indicators [data-bs-target] {
  background: var(--black);
  height: 12px;
}

.home-hero.gradient .carousel-indicators .active {
  height: 20px;
}
.home-hero.gradient #bigCarousel .carousel-caption{
  bottom: 15%;
  transform: translateY(15%);
  z-index: 2;
}

/** END OF GENERAL HERO 
============================================= **/
.home-hero .line {
  position: absolute;
  content: "";
  left: 50%;
  width: 2.5px;
  z-index: 2;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.home-hero .line-bottom,
.home-hero .line-top {
  position: relative;
  display: block;
  width: 2.5px;
  height: 50px;
}

.home-hero .line-top {
  background: var(--white);
}

.home-hero .line-bottom {
  background: var(--blueDark);
}

.plyr__video-embed iframe {
	top: -50%!important;
	height: 200%!important;
}
/** START OF HEADER
============================================= **/
header {
  padding: 25px 30px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 991px) {
    header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
        padding: 15px 15px;
    }
    .headerBg {
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 15px;
    }
}

.header-logo {
  text-align: center;
}
.header-logo img {
  height: 100px;
  transition: var(--transition3s);
   filter: brightness(0) invert(1);
}

.noTopMedia .header-logo img {
    filter: none;
}
header.headerBg .header-logo img {
  height: 90px;
  /*filter: none;*/
}

.header-cta.btn {
  position: relative;
  margin-left: auto;
  font-weight: 600;
  color: var(--blueDark);
  display: block;
  width: 280px;
  background: var(--bgCreamDark);
}

.header-cta.btn:hover {
  background: var(--blueDark);
  color: var(--white);
}

.header-cta.btn svg {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.flight-btn {
    margin-bottom:10px;
    font-size:12px;
    color: var(--white);
    letter-spacing: 3.6px;
}
.noTopMedia header .flight-btn {
    color: var(--white);
}
@media only screen and (max-width: 991px) {
    .flight-btn {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: 1.4px;
    }  
}

@media screen and (max-width: 575px) {
    .flight-btn {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
}
@media screen and (max-width: 480px) {
    .flight-btn {
        font-size: 8px;
        letter-spacing: 0.2px;
    }
}




header .telephone img {
  margin-bottom: 3px;
}
.noTopMedia header .telephone img{
  filter: brightness(0);
}
@media only screen and (max-width: 575px) {
  header .telephone {
    display: none !important;
  }
}

.languagesDrop .dropdown-toggle {
  color: var(--white);
  font-weight: 400;
  background: rgba(0,0,0,0.005);
}
.noTopMedia .languagesDrop .dropdown-toggle {
  color: var(--black);
}

.languagesDrop .dropdown-menu {
  min-width: 55px;
  border-radius: 0;
  padding: 5px 0px;
  font-size: 13px;
  left: -10px !important;
}

@media screen and (max-width: 1199px) {
   .header-cta.btn {
    width: 220px;
  }

  .header-logo img,
  header.headerBg .header-logo img {
    height: 80px;
  }
}

@media screen and (max-width: 991px) {
  .header-cta.btn {
    width: 90px;
    padding: 10px 0;
  }
  .header-cta.btn svg {
    display: none;
  }
  .header-logo img,
  header.headerBg .header-logo img {
    height: 70px;
  }
}


@media screen and (max-width: 767px) {
  header,
  header.headerBg {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 575px) {
  .header-logo img,
  header.headerBg .header-logo img {
    height: 70px;
  }

  .header-cta.btn {
    width: 85%;
    padding: 6px 5px;
    letter-spacing: 0.5px;
  }

  .languagesDrop .dropdown-toggle {
    font-size: 13px;
  }

  header, header.headerBg {
    padding: 5px 10px;
  }
}

@media screen and (max-width: 480px) {
  .header-logo img,
  header.headerBg .header-logo img {
    height: 55px;
  }
}

/** END OF HEADER AND MAIN MENU**/

/** MENU STYLE
====================================**/

.menu-btn {
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}
.pushy .menu-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 12px;
}

.menu-btn span {
  color: var(--white);
  background: rgba(0, 0, 0, 0.005);
}
.hamburger span {
  display: block;
  margin-bottom: 7px;
  width: 40px;
  border: 1px solid var(--white);
  transform-origin: left;
}

.noTopMedia .hamburger span {
  border: 1px solid var(--black);
}
.noTopMedia .menu-btn span {
    color:var(--black);
}
.hamburger span:last-child {
  margin-bottom: 0;
}
.menu-close span{
  color: var(--white)!important;
}
.menu-close .hamburger span {
    border: 1px solid var(--white);
}
.menu-close .hamburger span:last-child {
  transform: rotate(-45deg) translate(-13px, 15px);
}

.menu-close .hamburger span:first-child {
  transform: rotate(45deg);
}
.menuCloseSpan {
  margin-top: 25px;
  margin-left: -10px;
}
/**MENU BUTTONS **/


/** START WELCOME TEXT
=============================== **/
.welcomeHome{
    background: url('/images/logo-icon.svg') no-repeat left 10%; background-size: 300px;
}
.offersHome{
    background: url('/images/logo-icon-revert.svg') no-repeat right top; 
    background-size: 300px;
}
    
.media-content__links {
  margin: auto;
  max-width: 310px;
}

.media-content__link {
  display: block;
  font-weight: 600;
  border-color: var(--black);
}

.media-content__link:hover {
  border-color: var(--blueDark);
  color: var(--white);
  background-color: var(--blueDark);
}

.media-content__link:not(:nth-child(1)) {
  border-top-width: 0;
}

.colImg {
  height: 800px;
}

@media screen and (min-width: 992px) {
  .media-content__links {
    display: grid;
    margin-right: 0;
    grid-template-columns: repeat(2, 1fr);
    max-width: 450px;
  }

  .media-content__link:nth-child(1),
  .media-content__link:nth-child(2) {
    border-top-width: 1px;
  }

  .media-content__link:nth-child(n + 3) {
    border-top-width: 0;
  }

  .media-content__link:hover {
    border-color: var(--blueDark);
    color: var(--white);
    background-color: var(--blueDark);
  }

  .media-content__link:nth-child(even) {
    border-left-width: 0;
  }
}

@media screen and (max-width: 1199px) {
  .btn.media-content__link {
    padding: 10px 12px;
    letter-spacing: 2px;
    width: 100%;
  }
  .welcomeHome {
    background-size: 200px !important;
  }
}

@media screen and (max-width: 991px) {
  .welcomeHome {
    background: none !important;
  }
  .colImg {
    height: 500px !important;
  }
}

@media screen and (max-width: 575px) {
  .colImg {
    height: 400px !important;
  }
}

/** END WELCOME TEXT **/


/** START OF DINING 
==============================**/
.diningSwiper {
  border-top: 1px solid var(--blueDark);
  padding: 10px 5px 0px;
}

.diningSwiper .swiper-button-next,
.diningSwiper .swiper-button-prev {
  top: 50px !important;
  color: var(--white);
  z-index:100;
}

.diningSwiper .swiper-button-prev {
  left: 15px !important;
}

.diningSwiper .swiper-button-next {
  left: 55px !important;
  right: unset !important;
}
.diningSwiper .swiper-pagination-bullet {
  background: var(--blueDark);
}

.box-card {
  height: 600px;
  background-blend-mode: multiply;
}
.box-card a{
    display: initial;
}
.box-card .box-category,
.box-card .box-title {
  color: var(--bgCreamDark);
}

.box-card .box-title {
      font-family: var(--fontPlayfair);
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.005);

  bottom: 0;
    background: var(--blueDark);
   /*   background-color: var(--black);*/

}

.box-card-text {
  text-align: center;
}

.box-card .box-category {
  text-align: end;
  background: var(--blueDark);
  display: inline;
  position: absolute;
  right: 30px;
  top: 25px;
  padding: 10px 15px;
  font-size: 13px;
}

@media screen and (max-width: 991px) {
  .box-card {
    height: 450px !important;
  }
}

@media screen and (max-width: 575px) {
  .box-card {
    height: 350px !important;
  }

  .swiper-button-next:after, .swiper-button-prev:after { 
    font-size: 30px;
  }
}

/** START OF DINING **/

/** WHY BOOK **/
.whyBook {
  color: var(--white);
}
.whyBook .num {
  font-family: var(--fontRoboto);
  font-size: 90px;
  font-weight: 400;
  color: var(--white);
}
.whyBook .underline-link {
  color: var(--white);
}
.whyBook .underline-link::after {
  border-bottom: 1px solid var(--white);
}
@media screen and (max-width: 1199px) {
    .whyBook .num {
        font-size: 64px;
    }
}
@media screen and (max-width: 767px) {
    .whyBook .num {
        font-size: 48px;
    }
}
.whyBook .btn {
  color: var(--white);
  border: 1px solid var(--white);
}
.whyBook .btn:hover {
     border: 1px solid transparent;
}
/** WHY BOOK **/

/** START OF IMAGES BOXES **/
.imageBoxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.imageBoxes:nth-child(2),
.imageBoxes:nth-child(3) {
  margin-top: 70px;
  align-items: center;
}

.imageBoxes:nth-child(1) .imageBox:nth-child(1),
.imageBoxes:nth-child(1) .imageBox:nth-child(3) {
  padding-top: 70px;
}

.imageBoxes:nth-child(2) .imageBox:nth-child(1) {
  display: flex;
  justify-content: start;
}

.imageBoxes:nth-child(2) .imageBox:nth-child(2) {
  padding: 40px;
}

.innerImagesBoxes .imageBoxes:nth-child(2) .imageBox:nth-child(2) {
  padding: 0px;
}

.imageBox .box-card {
  width: 75%;
  transition: var(--transition3s);
}

.innerImagesBoxes .imageBox .box-card {
  width: 85%;
}

.imageBox .box-card:hover {
  box-shadow: rgb(160 129 76 / 80%) 0 0 40px;
}

.imageBoxes:nth-child(1) .imageBox:nth-child(1) .box-card,
.imageBoxes:nth-child(2) .imageBox:nth-child(3) .box-card,
.imageBoxes:nth-child(3) .imageBox:nth-child(1) .box-card,
.imageBoxes:nth-child(3) .imageBox:nth-child(3) .box-card {
  height: 450px;
}

.imageBoxes:nth-child(1) .imageBox:nth-child(2) .box-card,
.imageBoxes:nth-child(1) .imageBox:nth-child(3) .box-card,
.imageBoxes:nth-child(2) .imageBox:nth-child(1) .box-card,
.innerImagesBoxes .imageBoxes:nth-child(2) .imageBox:nth-child(2) .box-card,
.imageBoxes:nth-child(3) .imageBox:nth-child(2) .box-card {
  height: 600px;
}

@media screen and (max-width: 1399px) {
  .innerImagesBoxes .imageBoxes:nth-child(1) .imageBox:nth-child(1),
  .innerImagesBoxes .imageBoxes:nth-child(1) .imageBox:nth-child(3) {
    padding-top: 0px;
  }
}

@media screen and (max-width: 1199px) {
  .imageBox .box-card {
    width: 80%;
  }

  .imageBoxes:nth-child(1) .imageBox:nth-child(1) .box-card,
  .imageBoxes:nth-child(2) .imageBox:nth-child(3) .box-card,
  .imageBoxes:nth-child(3) .imageBox:nth-child(1) .box-card,
  .imageBoxes:nth-child(3) .imageBox:nth-child(3) .box-card {
    height: 350px;
  }

  .imageBoxes:nth-child(1) .imageBox:nth-child(2) .box-card,
  .imageBoxes:nth-child(1) .imageBox:nth-child(3) .box-card,
  .imageBoxes:nth-child(2) .imageBox:nth-child(1) .box-card,
  .imageBoxes:nth-child(3) .imageBox:nth-child(2) .box-card {
    height: 450px;
  }
}

@media screen and (max-width: 991px) {
  .innerImagesBoxes .imageBoxes:nth-child(2) .imageBox:nth-child(1) {
    display: flex;
    justify-content: center;
  }

  .innerImagesBoxes .imageBoxes:nth-child(2),
  .innerImagesBoxes .imageBoxes:nth-child(3) {
    margin-top: 0px;
  }
}

/** END OF IMAGES BOXES **/

/** START OF PROGRESS SWIPER **/
.progressSwiper.swiper {
  width: 100%;
  height: 100%;
}

.progressSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.progressSwiper .swiper-pagination-progressbar {
  top: unset !important;
  bottom: 0;
}

.progressSwiper
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: var(--redLight);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev {
  left: 30px;
}

/** END OF PROGRESS SWIPER **/

/** START OF TESTIMONIALS **/
.testimonials-section.paddings {
  padding: 70px 0px;
}

.testimonials-section .card {
 /* background: var(--white);*/
 background:transparent;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}

.testimonials-section .card .card-body {
  padding: 30px 20px;
  /*  color: var(--whiteDark);*/
  color: var(--white);
}

.testimonials-section .card .testimonial-title {
 /* color: var(--black);*/
   color: var(--white);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--fontRoboto);
}

.testimonials-section .card p {
  padding-bottom: 15px;
}

.testimonialsSwiper .swiper-pagination {
  bottom: 10px !important;
}

.testimonialsSwiper .swiper-pagination-bullet {
  background: var(--white);
}

/** END OF TESTIMONIALS **/

/** START OF OFFERS **/
.offers .swiper-button-next,
.offers .swiper-button-prev {
  top: 35px !important;
  color: var(--white);
}

.offers .swiper-button-prev {
  left: 10px !important;
}

.offers .swiper-button-next {
  left: 45px !important;
  right: unset !important;
}

.offers .swiper-button-next:after,
.offers .swiper-button-prev:after {
  font-size: 30px;
}

.offers .box-title {
/*  bottom: 0;
  background: var(--blueDark);*/
}

@media screen and (max-width: 991px) {
  .offersHome {
    background: none !important;
  }
}

/** END OF OFFERS **/


/* MEMBER HOTEL HOME PAGE   */
.memberHotelsLogo.group {
    margin-top:20px;
}
.memberHotelsLogo {
    width: 240px;
    height:auto;
}
@media screen and (min-width: 1479px) {
    .memberHotelsLogo {
        width: 280px;
    }
    .memberHotelsLogo.group {
        width: 300px;
    }
}

/**START OF CONTACT HOME **/
.map-link {
  filter: grayscale(1);
  height: 700px;
}

.form-control {
  background: transparent;
  border-radius: 0;
  border: none;
  font-size: 14px;
  border-bottom: 1px solid var(--blueDark);
}

.contactPage .text a {
  color: var(--gold-main);
  font-size: 14px;
}
.form-check-input {
    border: 1px solid var(--blueDark)!important;
}
@media screen and (max-width: 991px) {
  .newsletter .form-check-input {
    float: unset;
    margin-right: 10px;
  }

  .map-link {
    height: 450px !important;
  }
}

/**END OF CONTACT HOME **/

/**START OF INSTAGRAM  **/
.instagram picture {
  height: 20em;
  transition: var(--transition3s);
  filter: brightness(0.5);
}

.instagram picture:hover {
  filter: brightness(1);
}

@media screen and (max-width: 991px) {
  .instagram picture {
    height: 15em;
  }
}

/**END OF INSTAGRAM  **/

/** START OF FOOTER AND COPYRIGHT  **/
footer.paddings {
  padding: 100px 10px;
}

.footer-title {
  margin-bottom: 1em;
  color: var(--black);
  font-size: 18px;
   /*letter-spacing: 1px;*/
  line-height: 14.77px;
  font-family: var(--fontRoboto);
  font-weight: 600;
}

.footer-logo {
  position: relative;
  margin-bottom: 120px;
  text-align: center;
}

.footer-logo img {
  height: 100px;
    filter: brightness(0) saturate(100%);
    /*filter: brightness(0) invert(1);*/
    filter:none;
}

.footer-logo::before,
.footer-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;
  height: 1px;
  background: var(--blueDark);
  display: block;
  z-index: 2;
}

.footer-logo::before {
  left: -10px;
}

.footer-logo::after {
  right: -10px;
}

.bottom-menu ul {
  columns: 2;
      text-transform: uppercase;
}

.contact-details li,
.address-details li{
      font-family: var(--fontRoboto);
  color: var(--blueDark);
    margin-bottom: 1em;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
   /* letter-spacing: 0.3em;*/
    padding-bottom: 3px;
}

.social-details ul li img {
  height: 23px;
  margin-right: 15px;
}

footer .underline-link {
  color: var(--blueDark);
  letter-spacing: 0;
  font-size: 16px;
    font-weight: 400;
}

footer .underline-link::after {
  border-bottom: 1px solid var(--blueDark);
}

footer .underline-link:hover {
  color: var(--blueDark);
}

.awardsSwiper {
  margin-top: 100px;
}
/*
.awardsSwiper img {
  height: 100px;
}*/

.copyright {
  background: var(--blueDark);
  color: var(--white);
  font-size: 12px;
}

.copyright a {
  color: var(--white);
}

.awardsSwiper  {
    padding-left:30px;
    padding-right:30px;
}

.awardsSwiper .swiper-button-next,
.awardsSwiper .swiper-button-prev {
  color: var(--white);
  filter: brightness(1) invert(1);
}
.awardsSwiper .swiper-button-prev {
  left: 0px;
}
.awardsSwiper .swiper-button-next {
  right: 0px;
}

@media screen and (max-width: 1399px) {
  .bottom-menu ul {
    columns: 1;
  }
}

@media screen and (max-width: 991px) {
  .bottom-menu ul {
    columns: 3;
  }

  .awardsSwiper {
    margin-top: 80px;
  }
/*
  .awardsSwiper img {
    height: 80px;
  }
*/
  footer.paddings {
    padding: 60px 10px 60px;
  }

  .footer-logo {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 575px) {
  .bottom-menu ul {
    columns: 1;
  }

  .footer-logo {
    margin-bottom: 60px;
  }
}

/** END OF FOOTER AND COPYRIGHT  **/

/** START OF GALLERY PAGE **/

#galleryBtnContainer .underline-link {
  position: relative;
  display: inline-block;
  margin: 10px 15px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 14px;
}

.galleryFiltering .photoColumn a,
.galleryFiltering .photoColumn picture {
  height: 400px;
  width: 100%;
}

.galleryFiltering .photoColumn a {
  transition: var(--transition3s);
  filter: brightness(0.8);
}

.galleryFiltering .photoColumn a:hover {
  filter: brightness(1);
}

.photoColumn {
  display: none;
  /* Hide all elements by default */
}

.show {
  display: block;
  /* The "show" class is added to the filtered elements */
}

@media screen and (max-width: 1399px) {
  .galleryFiltering .photoColumn a,
  .galleryFiltering .photoColumn picture {
    height: 350px;
  }
}

@media screen and (max-width: 575px) {
  .galleryFiltering .photoColumn a,
  .galleryFiltering .photoColumn picture {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .galleryFiltering .photoColumn a,
  .galleryFiltering .photoColumn picture {
    height: 200px;
  }
}

/** END OF GALLERY PAGE **/


/** START OF ROOM LISTING  **/
.box-room {
  position: absolute;
  width: 100%;
  bottom: 30px;
  left: 0;
  padding: 0px 100px;
  z-index: 2;
  background-blend-mode: multiply;
}
.box-room .left {
  max-width: 400px;
  background-color: var(--black);
  padding: 25px;
}


.box-room .btn {
  box-shadow: 0 2px 2px rgb(0 0 0 / 17%);
  margin-bottom: 10px;
}

.box-room .btn-black {
  border-color: var(--white);
  color: var(--white);
  text-shadow: 0 2px 2px rgb(0 0 0 / 17%);
}

.box-room .btn-black:hover {
  border-color: var(--blueDark);
}

.box-room .btn-blue:hover {
  border-color: var(--white);
  color: var(--white);
}

.box-room h2,
.box-room ul li {
  color: var(--white);
  text-shadow: 0 2px 2px rgb(0 0 0 / 17%);
}
.box-room ul li {
  margin-right: 15px;
}

.roomsListingSwiper .swiper-slide,
.roomGallerySwiper .swiper-slide {
  height: 700px;
}

.rooms .room-listing {
  margin-bottom: 50px;
}

.rooms .room-listing:last-child {
  margin-bottom: 0px;
}

.roomsListingSwiper .swiper-button-next,
.roomGallerySwiper .swiper-button-next,
.roomsListingSwiper .swiper-button-prev,
.roomGallerySwiper .swiper-button-prev {
  top: 10%;
}

.roomsListingSwiper .swiper-button-prev,
.roomGallerySwiper .swiper-button-prev {
  right: 75px;
  left: unset;
}

.roomGallerySwiper {
  padding-bottom: 40px;
}

.roomGallerySwiper .swiper-pagination {
  left: unset !important;
  right: 0;
  width: auto !important;
}

.roomGallerySwiper .swiper-pagination-bullet {
  background: var(--blueDark);
}

.amenities ul{
    padding-left: 0;
    list-style: none;  
}
.amenities li {
  position: relative;
  padding-left: 17px;
}

.amenities li::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background-color: var(--blueDark);
  border-radius: 100px;
}

.roomDescription .col-lg-6:first-child {
  border-right: 1px solid var(--blueDark);
  padding-right: 5%;
}

@media screen and (max-width: 991px) {
  .roomsListingSwiper .swiper-slide,
  .roomGallerySwiper .swiper-slide {
    height: 500px;
  }

  .roomDescription ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .roomDescription .col-lg-6:first-child {
    border-right: 0px;
    border-bottom: 1px solid var(--blueDark);
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 575px) {
  .roomsSwiper .swiper-slide,
  .roomGallerySwiper .swiper-slide {
    height: 450px;
  }
  .box-room {
    padding: 0px 50px;
  }
}

/** END OF ROOM LISTING  **/
/* OTHER ROOM  
============================= */
.roomsSwiper.swiper {
   position: relative;
    width: 100%;
     height: 650px;
    /* height: calc(50% * 33.3% / 100%);
    overflow: hidden;*/
}

.roomsSwiper .swiper-slide {
 text-align: center;

   width: 48%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
 /*   position: relative;
  width: 50%;
  opacity: .5;
  transform: scale(.84);
  transition: all .3s ease-in-out;
  overflow: hidden;
  border-radius: 0.4285rem;*/
}

.roomsSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.roomsSwiper .swiper-slide a {
  display: block;
  height: 100%;
  width: 100%;
}

.roomsSwiper .swiper-slide .swiper-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  backdrop-filter: var(--backdropBlur);
}

.roomsSwiper .swiper-slide .swiper-text .roomsDetails {
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition3s);
  transition-delay: 0.1s;
}

.roomsSwiper .swiper-slide:hover .swiper-text .roomsDetails {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.4s;
}
/*
.roomsSwiper .swiper-button-next,
.roomsSwiper .swiper-button-prev {
  display: none;
}*/

.roomsSwiper .swiper-slide .swiper-text h2 {
  text-align: center;
  color: var(--white);
  position: relative;
  top: 60px;
  transition: var(--transition3s);
  transition-delay: 0.2s;
}

.roomsSwiper .swiper-slide:hover .swiper-text h2 {
  top: 0px;
  transition-delay: 0.2s;
}

@media screen and (max-width: 991px) {
  .roomsSwiper .swiper-slide {
    height: 550px;
  }
}

@media screen and (max-width: 575px) {
  .roomsSwiper .swiper-button-next,
  .roomsSwiper .swiper-button-prev {
    display: block;
  }
}
/* OTHER ROOM  */

/*Dining List
==================================*/

.listing-as-row .colImg a{
        height: 100%;
}

/*GENERAL 
================================ */

.ListLeft,
.ListCenter{
    padding-left: 0;
    list-style: none; 
    text-align:left;
}
.ListLeft li {
  position: relative;
  padding-left: 17px;
}

.ListLeft li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background-color: var(--blueDark);
  border-radius: 100px;
}
.ListCenter{
    text-align:center;
}
.ListCenter li{
    display:flex;
    justify-content: center;
}
.ListCenter li::before {
    content:"";
    width: 6px;
    height: 6px;
    background-color: var(--blueDark);
    border-radius: 100px;
    margin:8px 8px 0 0;
}

/* START SCROLL TO TOP  */
.toTop {
  text-align: right;
}

a.scrollup {
  position: fixed;
  right: 2%;
  bottom: 20px;
  background: url("../images/arrow-up.png") no-repeat top center;
  background-size: 28px;
  filter: brightness(0);
  width: 48px;
  height: 48px;
  z-index: 3;
  display: none;
}

.scrollup.is-visible {
  display: flex;
  opacity: 1;
  align-items: end;
  justify-content: center;
}

@media screen and (max-width: 1199px) {
  a.scrollup {
    right: 5%;
  }
}
/* END SCROLL TO TOP  */


/* FORMS
====================================== */
/*.contactform {
    font-size:15px;
}
.contactform .form-control {
  	border-radius: 0px;
  	height: 40px;
  	background-color:transparent;
	border:none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	outline: none;
	color: #565656;
	padding: .375rem 0rem;
	font-size: 15px;
    font-weight: 400;
	
}
.contactform .form-control:focus {
	outline: 0;
	border-bottom: 1px solid rgba(97, 97, 97, 1);	
	box-shadow: 0 1px 3px transparent;
	background-color:transparent;
}
::-webkit-input-placeholder {
 	color:#565656;
}
:-moz-placeholder { 
   color:#565656;
}
::-moz-placeholder {  
   color:#565656;
}
:-ms-input-placeholder { 
   color:#565656;
}
.contactform select.form-control {
	color:#565656;
}
.contactform textarea.form-control {
  height: auto;
}*/
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 11px;
  text-align: left; }
.field-validation-error:empty {
	display: none;
}  


.contactform label span {
  color: red; }
.contactform label.required:after {
  content: " *";
  color: #FF0000; }

.asterisk {
	text-align:left;
	font-size:12px;
}
.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;
}
.submitBtn {
  padding: 10px 25px;
  border-radius: 0rem;
  text-transform: uppercase;
  transition: all 0.3s;
}
/*.submitBtn:after,
.submitBtn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    border-radius: 0rem;
}
.submitBtn:after {
    width: 100%;
    background-color: #efefef;
    z-index: -2;
}
.submitBtn:before {
  width: 0%;
  background-color: #798895;
  transition: all 0.3s;
  z-index: -1;
}
.submitBtn:hover {
  color: #fff!important;
}
.submitBtn:hover:before {
  width: 100%;
}*/
.grecaptcha-badge {
	display: none !important;
}
/*

input[type="file"] {

}
.attachment-field{
    min-width: 100px;
    background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;  
}*/


/* BOOKING FORM  */
.bookingForm {
  padding: 40px 30px 20px;
  background: var(--blueDark);
  border-radius: 8px;
}

.bookingForm .btn {
  color: var(--white);
}

.bookingForm .form-control {
  border-radius: 0px;
  background-color: var(--white);
  /* box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.25); */
  padding-left: 11px;
  position: relative;
  height: 46px;
  font-family: var(--fontRoboto);
  font-size: 14px;
  padding: 10px;
  border: 1px solid var(--white);
  border-width: 0px 0px 1px 0px;
  cursor: pointer;
}

.bookingForm .form-label {
  color: var(--white);
  font-family: var(--fontRoboto);
  font-weight: 500;
  font-size: 15px;
}
/* BOOKING FORM  */


/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
    max-width:640px;
  }
.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;
    }
}


/* LANGUAGES inside burger menu
================================== */
.pushy .lang.mob li {
  display: inline-block;
  padding: 0px;
}

.pushy .lang.mob a {
  color: #c9c1af;
  margin: 5px 5px 5px 0;
  padding: 0px;
}

.pushy .lang.mob li a.selected,
.pushy .lang.mob li a:hover {
  text-decoration: underline;
}
/* LANGUAGES inside burger menu*/

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-active .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0px;
  z-index: 9999;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  -moz-animation: fade 500ms;
  -ms-animation: fade 500ms;
  -o-animation: fade 500ms;
  animation: fade 500ms;
}
/* Site Overlay */

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-260px, 0, 0);
  -ms-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

#container,
.pushy,
.push {
  transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.3s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}
/* Menu Transitions */

/* Menu Appearance */
.pushy {
  position: fixed;
  top: 0;
  width: 260px;
  height: 100%;
  z-index: 99999;
  font-family: var(--fontRoboto);
  background: var(--black);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
}

.pushy ul {
  list-style: none;
  margin: 0;
  padding: 20px 0 20px 20px;
}

.pushy ul li {
  display: block;
}
.pushy ul li.parent a{
    position: relative;
}


.pushy ul li a,
.pushy ul li span {
  display: block;
  color: var(--bgCreamDark);
  text-decoration: none;
  padding: 14px 40px 6px 0;
  font-size: 16px;
  font-weight: 300;
  /*text-transform: uppercase;*/
}

.pushy ul li a:hover,
.pushy ul li a.selected {
  background-color: transparent;
  color: var(--gold-main);
  text-decoration: none;
}

.pushy ul.submenu {
  padding: 0px;
}

.pushy ul.submenu a,
.pushy li.active ul.submenu a {
  display: block;
  padding: 4px 40px 4px 0px;
  font-size: 14px;
  color: #b1b1b0;
}

.pushy ul.submenu a:hover,
.pushy ul.submenu li.active a {
  color: #fff;
  text-decoration: none;
}

.pushy ul.submenu li:first-child {
  padding-top: 8px;
}

.pushy ul.submenu li:last-child {
  padding-bottom: 5px;
  border-bottom: 0px;
}

.plus {
  cursor: pointer;
  display: block;
  height: 23px;
  line-height: 23px;
  position: absolute;
  text-align: center;
  right: 0;
  top: 9px;
  width: 23px;
  margin: 5px;
  border-radius: 0%;
  -webkit-transition: background-color 250ms;
  transition: background-color 250ms;
  color: #c9c1af;
}

.plus:after {
  content: "+";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 300;
}

.submenu {
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-transition: max-height 1000ms;
  transition: max-height 1000ms;
}

.pushy li.opened > .submenu,
.pushy li.active > .submenu {
  max-height: 640px;
}

.pushy li.opened .plus:after,
.pushy li.active .plus:after {
  content: "-";
  font-weight: 300;
}

/* Menu Appearance */

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 992px) {
  .pushy {
    width: 520px;
  }

  .flex-container {
    width: 100%;
    height: calc(100% - 74px);
  }

  .menu-holder-desktop {
    position: relative;
    width: 100%;
  }

  .main-menu {
    width: 50%;
    padding: 20px 0 20px 20px;
  }

  .main-menu .plus {
    display: none;
  }

  .main-menu li {
    position: unset;
  }

  .main-menu .cat-link {
    padding: 10px 0px 6px 0;
    font-size: 20px;
  }

  .submenu {
    width: 50%;
    position: absolute;
    display: block;
    top: 40px;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    min-height: 100%;
    max-height: 620px;
  }

  .main-menu .opened > .submenu {
    visibility: visible;
    opacity: 1;
  }

  .main-menu ul.submenu a,
  .main-menu li.active ul.submenu a {
    padding: 4px 40px 4px 0px;
  }

  .submenu li {
    border-left: solid 1px #b1b1b0;
    padding-left: 10px;
  }

  .pushy-left {
    -webkit-transform: translate3d(-520px, 0, 0);
    -ms-transform: translate3d(-520px, 0, 0);
    transform: translate3d(-520px, 0, 0);
  }
}

@media screen and (min-width: 1200px) {
  .pushy {
    width: 740px;
  }
  .main-menu .cat-link {
    font-size: 26px;
  }

  ul.submenu a {
    font-size: 20px !important;
  }

  .pushy-left {
    -webkit-transform: translate3d(-740px, 0, 0);
    -ms-transform: translate3d(-740px, 0, 0);
    transform: translate3d(-740px, 0, 0);
  }
}

@media screen and (max-width: 991px) {
        .pushy .parent{
        position:relative;
    }
  .pushy .main-menu.mob {
    margin-top: 70px;
  }
  .pushy .menu-btn {
    top: 25px;
    right: 10px;
  }
}

/** MENU STYLE **/

/*Slide Menu header
=============================== */
.Slidemenu {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  margin: auto;
  width: 100%;
  z-index: 999;
  top: 0px;
  margin-top: -125px;
}

.Slidemenu .reservation a {
  color: var(--white);
  border:1px solid var(--white);
}

.Slidemenu nav {
  margin: 0px auto;
}
.Slidemenu nav ul {
  margin: 0;
  padding: 0px;
    text-transform: uppercase;
}

.Slidemenu nav li a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
}

.Slidemenu nav li a:hover,
.Slidemenu nav li a.active {
  color: #c9c1af;
}

.Slidemenu .logo {
  width: 160px;
}
.Slidemenu .logo a{
    display:block;
    padding:5px 0;
}
.Slidemenu .logo img {
  filter: brightness(0) invert(1);
  height:100%;
}

/*Slide Menu header
=============================== */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .Slidemenu .logo {
    width: 130px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .Slidemenu nav li a {
    padding: 0px 0px;
    font-weight: normal;
  }

  .Slidemenu .logo {
    width: 100px;
  }
}

@media screen and (max-width: 1399px) {
  .Slidemenu nav li a {
    font-size: 12px;
  }
  .Slidemenu .logo {
    width: 140px;
  }
}

@media screen and (max-width: 991px) {
  .Slidemenu .container {
    max-width: 100%;
  }    
}

.espa {
    position:fixed; 
    bottom:0px;
    left:0px;
    z-index:1000;
}
.espa a{
    margin:1px 0;
}

.hide-section,
.newsletter{
    display:none;
}

.plyr__sr-only {
    background: rgba(0,0,0,0.005);
}