/* VARIABLES */
:root {
  --font-Montserrat: "Montserrat", sans-serif;;
  --body-color: #f2f2f2; /*body bg color*/
  --color-gold:#b9955a;
  --color-black:#1d1d1b;
  
  --white-color: #fff;
  --light-white: #f3f3f1;
  --white-minOpacity: rgba(241,241,242, 0.7);
  --rotate90degLeft: rotate(-90deg);
    interpolate-size: allow-keywords;
}

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:active{
outline: none;
border: none;
box-shadow: none !important;

}
button:focus {
  outline:none;
  box-shadow: none !important;
}
b, strong {
    font-weight: 700;
}
a, a:hover {
  text-decoration: none;
  opacity: .9;
  color: var(--color-gold);
}
.BGWhite{
  background-color: #fff;
}
.BGBlack{
  padding: 50px 70px;
  background-color:var(--color-gold); /* #242424;*/
}

.Spacer,
 .mt-offset{
  margin-top: 120px;
}
.Spacer-pt{
     padding-top: 120px;
}
.SpacePadding{
  padding: 50px;
}
@media (max-width: 1199px){
    .Spacer-pt{
        padding-top: 80px;
    }    
}
@media (max-width: 767px){
    .Spacer,
    .mt-offset{
      margin-top: 50px;
    }
    .Spacer-pt{
        padding-top: 50px;
    }
    .BGBlack {
        padding: 30px 10px;
    }
    .SpacePadding {
        padding: 30px;
    }
}
@media (max-width: 320px){
    .Spacer,
    .mt-offset{
      margin-top: 30px;
    }
    .SpacePadding {
        padding: 20px;
    }
    .Spacer-pt{
        padding-top: 30px;
    }
}

.img-fit{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*=== MAX-width 
============================*/

.max-width {
  padding-left: 100px;
  padding-right: 100px;
}
@media (max-width: 1479px) {
	.max-width {
		padding-left: 70px;
        padding-right: 70px;
	} 
}
@media (max-width: 767px) {
	.max-width {
        padding-left: 15px;
        padding-right: 15px; 
  	}
}

body {
    font-family: var(--font-Montserrat);
    color: var(--color-black);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    text-align: left;
    background-color: var(--body-color);
}
.fontPlus{
  font-family: var(--font-Montserrat);
  font-weight: 200;    
}
h1, .h1,
h2, .h2,
h3 {
    font-family: var(--font-Montserrat);
    font-weight: 500;
     color: var(--color-black);
    letter-spacing: 1px;
    /*word-wrap: break-word;*/
    line-height: 1.2;
    margin: 0px 0 30px;
}
h1 span,
h2 span{
    display: block;
    font-weight: 400;
}
h1, .h1 {
    font-size: 52px;
}
h1 span, .h1 span{
    font-size: 38px;
}
h2, .h2{
    font-size: 48px;
    margin-bottom: 10px;
} 
h2 span, .h2 span{
    font-size: 34px;
}
h3 .h3{
    font-size: 30px;
    margin-bottom: 0px;
}

@media (max-width: 1480px){ /*(min-width: 1200px) and */
    h1, .h1 {
        font-size: 42px;
    }
    h1 span, .h1 span{
        font-size: 34px;
    }
    h2, .h2 {
        font-size: 38px;
    }
    h2 span, .h2 span{
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    h1, .h1 {
        font-size: 38px;
    }
    h1 span, .h1 span{
        font-size: 30px;
    }
    h2, .h2 {
        font-size: 34px;
    }
    h2 span, .h2 span{
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    h1, .h1 {
        font-size: 34px;
    }
    h1 span, .h1 span{
        font-size: 24px;
    }
    h2, .h2 {
        font-size: 30px;
    }
    h2 span, .h2 span{
        font-size: 24px;
    }
}

/*Button
=============================*/
.button,
.MoreLink {
    font-family: var(--font-Montserrat);
    border-radius: 0px;
    font-weight: 500;
}
.button {
    display: inline-block;
    padding: 10px 16px;
    color: var(--color-black)!important;
    font-size: 16px!important;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
.button:after,
.button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
}
.button:after {
    width: 100%;
    background-color: #efefef;
    z-index: -2;
}
.button:before {
    width: 0%;
    background-color: #d2cbc0;
    transition: all 0.3s;
    z-index: -1;
}
.button:hover {
    color: #fff!important;
}
.button:hover:before {
    width: 100%;
}
@media (max-width: 767px){
    .button {
        padding: 8px 14px;
        font-size: 14px!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: 12px!important;
    }
}
@media (max-width: 1199px){
    header .button {
        padding: 10px 14px;
        font-size: 16px !important;
    }
}
@media (max-width: 991px){
    header .button {
        padding: 8px 14px;
        width: 160px;
        text-align: center;
        line-height: 1.4;
    }
}
@media (max-width: 767px){
    header .button {
        padding: 8px 14px;
        font-size: 14px !important;
        letter-spacing: .8px;
        width: 130px;
        text-align: center;
        line-height: 1.2;
    }
}
@media (max-width: 575px){
    header .button {
        padding: 8px 6px;
        font-size: 11px !important;
        letter-spacing: .5px;
        width: 100px;
        text-align: center;
        line-height: 1.2;
    }
}

.MoreLink {
    line-height: 2;
    position: relative;
    display: inline-block;
    transition: .3s linear;;
    letter-spacing: 1.4px;
    padding: 0px;
    margin-right: 20px;
    font-size: 17px;
}
.MoreLink::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    z-index: 0;
    bottom: 2px;
    transition: .3s linear;
}
.MoreLink:hover {
    color: inherit;
}
.MoreLink:hover::before {
    height: 5px;
}
@media (max-width: 767px){
    .MoreLink { 
        font-size: 14px;
    }
}


/*PAGE HEADER - H1
============================================*/
/*@media (min-width: 1200px){*/
    .header-container{
        padding-left:70px; 
        margin-bottom:70px; 
        position:relative;
    }

    .header-container h1,
    .header-container h2,
    .header-container h3 {
        margin-bottom:0px;
    }
    .header-container .left-hr {
        position: absolute;
        z-index: 2;
        width: 150px;
        border: none;
        opacity: .8;
        left: 0px;
        bottom: -30px;
        overflow: visible;
        margin: 0;
        border-bottom: 2px solid rgba(0, 0, 0, 1);
        display:block!important;
    }
    .header-container.vertical-center {
         padding-left:100px; 
    }
    .header-container.vertical-center .left-hr {
        bottom: 30px;
        width: 70px;
    }
    .header-container.revert .left-hr {
         border-bottom: 2px solid rgba(255, 255, 255, 1);
    }
/*}*/
@media (max-width: 1600px){
    .header-container{
        padding-left:50px; 
    }
    .header-container .left-hr {
        width: 140px;
    }
}

@media (max-width: 1199px){
    .header-container{
        padding-left:15px; 
        margin-bottom:50px; 
        position:relative;
    }
    .header-container .left-hr {
        bottom: -20px;
    }
}
@media (max-width: 767px){
    .header-container{
        padding-left:10px; 
    }
    .header-container .left-hr {
        bottom: -20px;
        width: 100px;
    }
}

 .header-container.centered{
     position:relative;
     padding-left:140px;
     padding-right:140px;
 }
 .header-container.centered hr {
    position: absolute;
    z-index: 1;
    width: calc(100% - 280px);
    border: none;
    opacity: .8;
    margin: 0px;
    bottom: calc(100% / 2);
    overflow: visible;
    background: transparent;
}
.header-container.centered hr:before,
.header-container.centered hr:after {
    position: absolute;
    width: 140px;
    content: '';
    height: 2px;
    top: 0px;
    background: black;
}
.header-container.centered hr:before {
    left: -140px;
}
.header-container.centered hr:after {
    right: -140px;
}
@media (max-width: 991px) {
    .header-container.centered{
        padding-left:70px;
        padding-right:70px;
    } 
    .header-container.centered hr {
        width: calc(100% - 140px);
    }
    .header-container.centered hr:before,
    .header-container.centered hr:after {
        width: 70px;
    }
    .header-container.centered hr:before {
        left: -70px;
    }
    .header-container.centered hr:after {
        right: -70px;
    }
}
@media (max-width: 480px) {
    .header-container.centered{
        padding-left:40px;
        padding-right:40px;
    } 
    .header-container.centered hr {
        width: calc(100% - 80px);
    }
    .header-container.centered hr:before,
    .header-container.centered hr:after {
        width: 40px;
    }
    .header-container.centered hr:before {
        left: -40px;
    }
    .header-container.centered hr:after {
        right: -40px;
    }
}


/*SLIDER
=============================== */
.noTopMedia {
    height: 120px;
}
@media (max-width: 767px){
    .noTopMedia {
        height: 100px;
    }
}
@media (max-width: 480px){
    .noTopMedia {
        height: 80px;
    }
}


#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
     height: calc(100vh);
}

#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.carousel-control-next, 
.carousel-control-prev {
    opacity:1;
    width:10%;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/right-arrow.svg)!important;

}
#bigCarousel .carousel-control-prev-icon {
      background-image: url(../images/right-arrow.svg)!important;
      transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);

}
#bigCarousel .carousel-control-next-icon, 
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
   height: 85px!important;
  width: 40px!important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 767px) {
    #bigCarousel .carousel-control-next-icon, 
    #bigCarousel .carousel-control-prev-icon {
        height: 55px!important;
        width: 25px!important;
    }
}
@media screen and (max-width: 575px) {
    #bigCarousel .carousel-control-next-icon, 
    #bigCarousel .carousel-control-prev-icon {
        height: 45px!important;
        width: 22.5px!important;
    }
}
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: 500px !important;
      }
}
@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 380px!important;
  }
}


.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    font-size: 30px;
    line-height: 60px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-Montserrat);
}
    @media (max-width: 575px) {
      .contentOverSlider {
        display: none !important; } 
    }
    .contentOverSlider span {
      font-family: 'Open Sans', sans-serif;
      font-size: 50px;
      color: #fff; 
      line-height: 60px;
  }
/*== HEADER
============================================*/
header{
    padding: 15px 50px;
    z-index: 1020 !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;
}
.headerBg,
.dark{
    background-color: rgba(34,34,34,1);
}

.logo img{
    height: 90px;
}

@media (min-width: 768px){
    header:not(.dark) .logo img{
        opacity:0;    
    }
    header.headerBg .logo img{
          opacity:1;
    }
}
@media (max-width: 991px) { /*and (orientation: landscape)*/
    header{
        padding: 15px 30px;
    }
      .logo img{
        height: 70px;
    }  
}
@media (max-width: 767px){
    header{
        padding: 15px 30px;
        background-color: rgba(34,34,34,.7);
    }
    .logo img{
        height: 70px;
    }
}
@media (max-width:480px){
    header {
        padding: 10px;
    }
    .logo img{
        height: 60px;
    }
}
@media (max-width:320px){
    .logo img{
        height: 50px;
    }
}



/* Slider Logo
=============================== */ 
.LogoOverSlider{
    position: absolute;
    left: 0%;
    top: 0;
    bottom: unset;
    right: 0%;
    z-index: 2;
    background: rgba(34,34,34,1); /*rgba(34,34,34,.5);*/
    width: 260px !important;
    height: 150px !important;
    margin: 0 auto;
}
.LogoOverSlider img{
    margin:auto;
    height:90px;
}
.noTopMedia .LogoOverSlider{
    width: 220px !important;
    height: 120px !important;
}
 .LogoOverSlider a{
    display: flex;
    height: 100%; 
 }
@media (max-width: 1199px){
   /* .LogoOverSlider {
        width: 200px !important;
        height: 120px !important;
    }
    .LogoOverSlider img{
        padding: 12px;
    }*/
}
@media (max-width: 991px){
    .LogoOverSlider {
        width: 180px !important;
        height: 130px !important;
    }
    .LogoOverSlider img{
        height:70px;
    }
}
@media (max-width: 767px){
    .LogoOverSlider {
        display:none;
    }
    /*.LogoOverSlider {
        width: 140px !important;
        height: 100px!important;
    }
    .LogoOverSlider img{
        padding: 10px;
    }*/
}
/*
@media (max-width: 575px){
    .LogoOverSlider {
        width: 100px !important;
        height: 80px!important;
    }
    .LogoOverSlider img{
        padding: 5px;
    }
}*/


.topSmallMenu {
    padding-bottom:6px;
    line-height: 1;
}
.topSmallMenu a {
    font-size: 16px; 
    color: white;
    text-align: center;
    display:inline-block;
    font-family: var(--font-Montserrat);
    font-weight: 400;
}
.topSmallMenu a:hover{
      text-decoration: underline;
}
@media (max-width: 767px){
    .topSmallMenu a {
        font-size: 14px;
    }
}
@media (max-width: 565px){
    .topSmallMenu a {
        font-size: 12px;
    }
}
@media (max-width: 480px){
    .topSmallMenu a {
        font-size: 11px;
    }
}
@media (max-width: 420px){
    .topSmallMenu a {
        font-size: 9px;
    }
}
@media (max-width: 320px){
    .topSmallMenu a {
        font-size: 8px;
    }
}
/* LANGUAGES 
=============================== */ 
.languagesDrop {
    font-size: 18px;
    margin-left: 60px;
}
@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;
 }

/*=== MENU 
========================================*/
.menu-btn input[type="checkbox"] {
    display: none;
}
.overlay-menu.opened .aside-left, 
.menu-btn input[type="checkbox"]:checked ~ aside .aside-left {
    transform: translateY(0%);
    transition: transform 0.4s ease-in-out;
}
.overlay-menu.opened .aside-right, 
.menu-btn input[type="checkbox"]:checked ~ aside .aside-right {
    transform: translateX(0%);
    transition: transform 0.4s ease-in-out;
}
.menu-btn input[type="checkbox"]:checked ~ label .bar {
    background-color: #fff;
}
.menu-btn input[type="checkbox"]:checked ~ label .top {
    -webkit-transform: translateY(10px) rotateZ(45deg);
    -moz-transform: translateY(10px) rotateZ(45deg);
    -ms-transform: translateY(10px) rotateZ(45deg);
    -o-transform: translateY(10px) rotateZ(45deg);
    transform: translateY(10px) rotateZ(45deg);
}

.menu-btn input[type="checkbox"]:checked ~ label .bottom {
    -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg);
    transform: translateY(-15px) rotateZ(-45deg);
}
.menu-btn input[type="checkbox"]:checked ~ label .middle {
  width: 0;
}
.middle {
    margin: 0 auto;
}
.overlay-menu label {
    top: 35px;
    left: 50px;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    z-index: 3;
    position: fixed;
}
@media (max-width: 991px)  { /*and (orientation: landscape)*/
      .overlay-menu label {
        top: 25px;
        left: 30px;
    }  
}
@media (max-width: 767px){
    .overlay-menu label {
        top: 25px;
        left: 30px;
    }
}
@media (max-width:480px){
    .overlay-menu label {
        top: 15px;
        left: 10px;
    }
}
@media (max-width:320px){
    .overlay-menu label {
        top: 10px;
    }
}
.menu-btn .bar {
  display: block;
  background-color: #ffffff;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  margin: 11px auto;
  transition: background-color 0.4s ease-in, transform 0.4s ease-in,
    width 0.4s ease-in;
}
@media (max-width: 767px){
    .menu-btn .bar {
        width: 35px;
    }
}
.menu-btn.active .bar.top {
  -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.active .bar.middle {
  opacity: 0;
}
.menu-btn.active .bar.bottom {
  -webkit-transform: translateY(-16px) rotate(-45deg);
    -ms-transform: translateY(-16px) rotate(-45deg);
    transform: translateY(-16px) rotate(-45deg);
}
.overlay-menu  {
    height: 0%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    transition: 0.5s linear;
    overflow: hidden;
    overflow-y: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.aside-section {
    top: 0;
    bottom: 0;
    position: absolute;
}
.aside-left {
    display: none;
    width: 30%;
    left: 0;
    background: url(/images/menu2.jpg) no-repeat left center #242424;
    /*background: url(../images/aqua-circle.svg) no-repeat left center #242424;*/
    background-size: auto 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
@media (min-width: 992px) {
    .aside-left {
        display: block;
    }
}
.aside-right {
    width: 70%;
    right: 0;
    background-color: #242424;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
@media (max-width: 991px){
  .aside-right {
    width: 100%;
  }
}

@media (min-width: 768px){
      .aside-right .row:first-child {
          height:100%;
      }
}
@media (max-width: 991px) and (orientation: landscape) {
   .aside-right .row:first-child {
       align-content: flex-start !important;
   }
}
.aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 60px;
    text-align: left;
    padding-left: 50px;
    font-family: var(--font-Montserrat);
    font-weight: 500;
}
.aside-list li {
    margin-bottom: 20px;
}
@media (max-width: 991px){
    .aside-right .row{
        margin:0;
    }
    .aside-section {
        position: fixed; 
        overflow-y: scroll;
    }
}
@media (max-width: 991px) and (orientation: landscape) {
   .aside-list {
       padding-left: 80px;
   }
}

@media (max-width: 767px){
    .aside-list {
        margin-top: 100px;
        padding-left: 40px;
    }
    .aside-list li {
        margin-bottom: 12px;
    }
}
/*menu links*/
.aside-anchor {
    padding: 10px 16px;
    border-radius: 0rem;
    color: #d2cbc0;
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width: 1199px) {
    .aside-anchor{
        padding: 8px 16px;
        font-size: 26px;
    }
}
@media (max-width: 320px){
    .aside-list {
        padding-left: 20px;
    }
    .aside-anchor{
        padding: 5px 16px;
        font-size: 18px;
    }
}

@media screen and (max-height: 900px) {
   /* .aside-list {
        margin-top: 110px;
    }*/
    .aside-list li {
        margin-bottom: 10px;
    }
    .aside-anchor{
        padding: 8px 16px;
        font-size: 26px;
    }
}
@media screen and (min-height: 901px) and (max-width: 1199px){ 
    .aside-list li {
        margin-bottom: 10px;
    }
    .aside-anchor{
        padding: 8px 16px;
        font-size: 24px;
    }
}
@media screen and (max-height: 800px) {
    .aside-list li {
        margin-bottom: 8px;
    }
    .aside-anchor{
        font-size: 20px;
    }
}
@media screen and (max-height: 600px) {
    .aside-list li {
        margin-bottom: 7px;
    }
    .aside-anchor{
        padding: 5px 16px;
        font-size: 18px;
    }
    .menuContact {
        font-size: 14px;
    }
}

.aside-anchor:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 0rem;
    z-index: -2;
    border-left: 2px solid #d2cbc0;
}
.aside-anchor:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #d2cbc0;
    transition: all 0.3s;
    border-radius: 0rem;
    z-index: -1;
}
.aside-anchor:hover {
    color: #242424!important;
}
.aside-anchor:hover:before {
    width: 100%;
}
.menuContact{
    color: white;
    margin: 20px 20px 0 0;
}
.menuContact img{
    width: 24px;
    margin: 0 6px;
}

@media (max-width: 767px){
    .menuContact {
        margin: 20px 0px 0 40px;
        font-size: 14px;
    }
    .menuContact img{
        margin: 10px 6px 0;
    }
}



/*CONTENT
============================== */
.Image-Behind{
  position: relative;
}
.text-over{
/*  right: -240px;*/
    right: -120px;
  padding: 50px 50px;
  text-align: left;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}
.textBody{
  margin-left: 170px;
}
.text-over.distance{
     /*top: 100px;*/
    margin-top: 100px;
}
.text-over.rev{
  right: 120px;
}
@media (max-width: 1600px){
    .textBody{
      margin-left: 140px;
    }
}
@media (max-width: 1400px) {
  .text-over {
    right: -90px;
  }
  .text-over.rev{
      right: 90px;
    }
}
@media (max-width: 1199px) {
  .text-over{
    right: -50px;
    padding: 40px 30px;
  }
    .text-over.rev{
      right: 50px;
    }
  .textBody{
    margin-left: 50px;
  }
}
@media (max-width: 991px){
  .text-over{
    right: 0px;
  }
  .textBody{
    margin-left: 40px;
  }
  .text-over.rev{
   /* top: 0px;*/
    margin-top:0;
    right: 0px;
  }
}

@media (max-width: 767px){
  .textBody {
    /*margin-left: 80px;*/
    margin-left: 40px;
}
  .text-over{
    right: 0px;
  }
  .Image-Behind {
    position: relative;
}
.text-over.rev{
   /* top: 0px;*/
    margin-top:0;
  right: 0px;
}
}

@media (max-width: 565px){
  /*.textBody{
    margin-left: 40px;
  }*/
}
@media (max-width: 480px){
  .text-over {
    padding: 10px 20px;
  }
 /* .textBody {
    margin-left: 60px;
}*/
}
@media (max-width: 320px){
  /*.text-over {
    padding: 10px 20px;
  }
  .textBody {
    margin-left: 40px;
}*/

}

/*=== Accommodation ===*/
.LadyBg{
  background-size: 32%!important;
  background: url(../images/logo-icon-opacity.svg) no-repeat -15px top;
}
.CarouselBg{
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.swiper {
    width: 100%;
    height: 100%;
}
@media (min-width: 1399px) {
    .swiper.roomsSwiper {
        width:calc(100% - 200px);
        margin-left:200px;
    }
}
.swiper-slide {
    text-align: center;
}
.roomsSwiper .swiper-slide {
    width:75%;
    margin-right:200px;   
}
.roomsSwiper .swiper-slide:last-child {
    margin-right:400px;   
}
.roomsSwiper .swiper-content {
   margin:0 0 0 160px;
   text-align:left;
}
@media (max-width: 1199px) {
    .roomsSwiper .swiper-content {
        margin: 0 0 0 170px;
    }
}
@media (max-width: 991px){
    .roomsSwiper .swiper-content {
        max-width: 640px;
        margin: 0 auto;
        padding-bottom:80px!important;
    }
    .roomsSwiper .swiper-slide {
        width:100%;
        margin-right:0px;   
    }
    .roomsSwiper .swiper-slide:last-child {
        margin-right:0px;   
    }
}
@media (max-width: 767px){
    .roomsSwiper .swiper-content {
        max-width: 460px;
        margin: 0 auto;
    }
}
@media (max-width: 575px){
    .roomsSwiper .swiper-content {
         max-width: 100%;
        margin: 0 30px;
    }
}
.roomsSwiper h3{
    font-size: 40px;
    line-height: 1.2;
}
@media (max-width: 1480px){
     .roomsSwiper h3{
        font-size: 38px;
    }   
}
@media (max-width: 767px){
    .roomsSwiper h3{
        font-size: 30px;
    }
}

.details {
    font-size:20px;
}
.details span:not(:last-child):after{
    content:" / ";
}
@media (max-width: 992px){
    .details {
        font-size:26px;
    }
}
@media (max-width: 767px){
    .details {
        font-size:22px;
    }
}
.swiper-button-next,
.swiper-button-prev {
    background: url(../images/right-arrow.svg) no-repeat center center !important;
    width:40px;
    height:40px;
    top:calc(100% - 20px);
}
.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: calc(50% - 50px);
}
.swiper-button-prev {
     left: calc(50% - 50px);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}       
@media (min-width: 992px){
    .swiper-button-next,
    .swiper-button-prev {
        position:absolute;
        position: absolute;
        top: 40%;
        left: auto;
        right: calc(20% - 80px);
        width:80px;
        height:80px;
    }
    
    .swiper-button-prev {
        top:calc(40% - 100px);
    }
}

/*SUBMENU
==============================*/
.TextSubmenu ul{
    margin: 20px 0 20px 70px;
    padding: 0;
    font-family: var(--font-Montserrat);
}
.TextSubmenu li{
    display: block;
    margin-bottom: 20px;
    list-style-type: none;
}
/*
.TextSubmenu li::before{
  content: "";
  display: block;
  width: 50px;
  background-color: #131313;
  height: 1px;
  margin: 0px 0px -23px -70px;
}*/
.TextSubmenu li a{
    color: #131313;
    font-size: 24px;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}
.TextSubmenu li a:hover,
.TextSubmenu li.active a{
    color: #d2cbc0;
    transition: all 0.3s ease 0s;
}
/*REASONS
================================== */
.BGBlack.BGLady{
    background-size: 12%!important;
    background: url(../images/logo-icon.svg) no-repeat 1220px center #242424;
    background-position: right 10px bottom 10px;
    text-align:center;
    font-family: var(--font-Montserrat);
    font-weight: 300;
    color: #ffffff;
}
/*
@media (max-width: 1200px){
    .BGBlack.BGLady{
        background-size: 120%!important;
    }
}
@media (max-width: 991px){
    .BGBlack.BGLady {
        background-size: 150%!important;
    }
}
@media (max-width: 767px){
    .BGBlack.BGLady {
        background: none;
        background-color: #242424;
    }
}*/
.BGBlack .smalltitle{
    font-size: 30px;
}
.Boxes {
    line-height:1.2;
    font-style: italic;
    padding: 20px 10px;
    min-height: 120px;
    margin-bottom: 10px;
}
@media (min-width: 576px){
  .Boxes {
      height:100%;
  }
}
.Boxes.Bdr{
    font-size: 18px;
    border: 1px solid #6E6E6E;
}
.Boxes img{
    width:50px;
    display: block;
    margin: 0 auto 10px auto;
}
@media (max-width: 1199px){
    .Boxes{
        font-size: 17px;
        min-height: 110px
    }
}
@media (max-width: 991px){
    .BGBlack .smalltitle {
        font-size: 30px;
    }
    .Boxes {
        min-height: 120px;
        padding: 8px 8px;  
    }
}
@media (max-width: 767px){
    .BGBlack .smalltitle {
        font-size: 26px;
    }
}

/*BOXES IMAGES - text over
=====================================*/
.ImageBox .content-over::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: '';
    opacity: 1;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
    display: block;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;    
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.ImageBox:hover .content-over::before{
    opacity: 1;
    background-color: #d2cbc0;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
.ImageBox .content-over .imageBoxTitle {
    position: absolute;
    top: 5%;
    left: 0px;
    right: 0px;
    padding: 0px 20px;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    line-height: 24px;
    -webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
    -webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}
.ImageBox .content-over:hover .imageBoxTitle {
    color: #242424;
    -webkit-transform: translate3d(0,70px,0);
	transform: translate3d(0,70px,0);
}
.imageBoxText{
    position: absolute;
    top: 40%;
    left:0;
    right:0;
    z-index: 1;
    margin: 0 30px;
    text-align: center;
    opacity: 0;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
.ImageBox .content-over:hover .imageBoxText{
    opacity: 1;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
}
@media (max-width: 1199px){
    .ImageBox .content-over .imageBoxTitle {
        font-size: 26px;
        top: 80px;
    }
    .ImageBox .content-over:hover .imageBoxTitle {
        -webkit-transform: translate3d(0,50px,0);
    	transform: translate3d(0,50px,0);
    }
    .imageBoxText {
        margin: 0 10px;
    }
}
@media (max-width: 767px){
    .ImageBox .content-over .imageBoxTitle {
        font-size: 20px;
          top:10px;
    }
    .imageBoxText {
        margin: 0 10px;
    }
}

.swiper-pb {
    padding-bottom:40px;
}
.swiper-pagination {
    bottom: 0px !important;
}
.swiper-pagination-bullet {
    background-color:#000;
    height:12px;
    width:12px;
    opacity:.8;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color:#d2cbc0;
       opacity:1;
}






/*concierge
========================*/

/*
.BodyBackground{
  position: relative;
  padding-top: 50px;
}
.BodyBackground::before{
    position: absolute;
    width: 100%;
    content: '';
    height: 60vh;
    top: 160px;
    background: white;
     z-index: 0;
}
.rowSpace{
    padding:0 60px 0 150px;
}
.CarouselText{
  padding: 50px 50px 50px 0px;
}

#concierge-owl .owl-dots .owl-dot span {
  width: 20px;
  height: 5px;
  margin: 5px 7px;
  background: #BCBCBC;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 0px;
  border: 1px solid #BCBCBC;
}

#concierge-owl .owl-dots .owl-dot.active span,
#concierge-owl .owl-dots .owl-dot:hover span {
  border: 1px solid #84754E;
  background: #84754E;
  box-shadow: none;
}

@media (max-width: 1400px) and (min-width: 1200px){
  .BodyBackground::before {
    top: 200px;
  }
}


@media (max-width: 1199px) and (min-width: 992px){
  .BodyBackground::before {
    top: 100px;
  }
  .rowSpace {
    padding: 0 60px 0 100px;
}
.CarouselText {
  padding: 30px 50px 0px 0px;
}
}

@media (max-width: 991px) and (min-width: 768px){
  .BodyBackground::before {
    height: 50vh;
    top: 100px;
  }
  .rowSpace {
    padding: 0 20px 0 20px;
}
.CarouselText {
  padding: 30px 20px 0px 0px;
  line-height: 25px;
}
}

@media (max-width: 767px){
  .rowSpace {
    padding: 0 40px;
}
.CarouselText {
  padding: 50px 30px  0px 30px;
}
.BodyBackground::before {
  height: 70vh;
}
}
@media (max-width: 565px){
  .BodyBackground {
    padding-top: 0px;
}
.BodyBackground::before {
  height: 75vh;
}
}
@media (max-width: 480px){
  .BodyBackground {
    padding-top: 0px;
}
  .BodyBackground::before {
    height: 58vh;
  }
  }


@media (max-width: 320px){
    .BodyBackground::before {
      height: 39vh;
    }
    .rowSpace {
      padding: 0 0px;
  }
  .CarouselText {
    padding: 30px 10px 0px 10px;
}
}

*/


/*News Carousel Intro 
============================ */
.color-white {
    color: white;
}
.BoxTitle{
  font-size: 16px;
  font-family: var(--font-Montserrat);
  text-transform: uppercase;
}
.BoxDate{
    background:url(/images/calendar.svg) no-repeat center left;
    padding:5px 0 0 35px;
    color: #8B8888;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-Montserrat);
}
.BoxText{
  color: #8B8888;
}
.BoxTitle a{
    color: var(--color-black);   
}
.BoxTitle a:hover{
     color: #d2cbc0;  
}
.BoxTitle.color-white a{
    color: white;
}
.BoxTitle.color-white a:hover{
    color: #8B8888;
}
/*News Page 
============================ */
@media (min-width: 768px){
    .boxTextBelow {
        padding: 0 40px 40px;
    }
}
.boxTextBelow .BoxTitle{
    font-size: 16px;
}
.date-sm {
    font-size: .5em;
    margin-top:10px;
}
.backBtn a {
    background: url(../images/left-arrow.svg) no-repeat center left !important;
    background-size:40px;
    padding: 8px 0 8px 50px;
}


/*INSTAGRAM 
============================ */
.InstaThumb {
 /* width: 120px;*/
  margin:15px 0 15px 0;
}
@media (max-width:767px){
    .InstaThumb {
        margin:15px 0 0 0;
    }  
    .InstaThumb:nth-child(2n) {
        margin:15px 15px 0px 15px;
    }  
}
@media (min-width:768px){
    .InstaThumb:nth-child(2n) {
        align-self: flex-end!important;
    }
}
@media (min-width: 992px){
    .InstaRow{
        position: relative;
        left: -70px;
    }
    /*.InstaThumb {
        width: 170px;
    }*/
}
@media (min-width: 1199px){
    .InstaRow{
        left: -80px;
    }
  /*  .InstaThumb {
        width: 210px;
    }*/
}
@media (min-width: 1480px) {
    .InstaRow {
        left: -150px;
    }
  /*  .InstaThumb{
      width: 240px;
    }*/
}

/*REVIEWS
======================== */
.section_reviews .quotesText,
.testimonials .quotesText {
    font-style: italic;
    position:relative;
    padding-left:48px;
    padding-bottom:30px;
    text-align: justify;
}

.section_reviews .quotesText:before,
.testimonials .quotesText:before{
    content:"“";
    display:inline-block;
    position:absolute;
    top:0;
    left:0;
    width:20px;
    font-size: 76px;
    line-height: .8;
} 
.section_reviews .swiper-pagination {
     text-align: right;   
}
.section_reviews .swiper-pagination-bullet {
    background-color:#BCBCBC;
    width: 20px;
    height: 5px;
    margin: 5px 7px;
    opacity:.8;
    border-radius:0;
}
.section_reviews .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color:#d2cbc0;
       opacity:1;
}

.testimonials .quotesText {
    padding-bottom:0px
}
.testimonials .by {
    font-style:italic;
}


/*Section NEWSLETTER
======================== */
.section-newsletter {
    position:relative;
}
@media (min-width: 992px) {
    .section-newsletter {
        position:relative;
        padding-top:80px;
        padding-bottom:80px;
    }
    .section-newsletter:before {
        content: "";
        width: 45%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #fff;
        display: block;
        z-index: -1;
    }
}
.section-newsletter .bg {
    background:url(/images/newsletter.jpg) no-repeat center center;
    position:relative;
    /*background-size: auto 100%;*/
}
.section-newsletter .bg:before {
    content: "";
    background:rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    z-index: 0;
}
 .section-newsletter #theFormNewsletter {
    z-index: 10;
    position: relative;
    color: #fff;
 } 
@media (min-width: 1200px) {
 .section-newsletter #theFormNewsletter {
    padding-left:100px; 
    padding-right:100px; 
 }
}
.newsletterform .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0px;
    padding: 7px 15px 2px;
    font-size: 18px;
    color:#fff;
    font-weight: 300;
}
.newsletterform ::-webkit-input-placeholder {
 	color:#fff;
}
.newsletterform :-moz-placeholder { 
   color:#fff;
}
.newsletterform ::-moz-placeholder {  
   color:#fff;
}
.newsletterform :-ms-input-placeholder { 
   color:#fff;
}
.newsletterform .form-agree label {
    color: #ffffff;
    font-size:14px;
    font-weight: 300;
}
.newsletterform .form-agree label a {
    color: #ffffff;
    text-align:underline;
}

.newsletterform .submitBtn{
    background-color: #efefef; 
    padding: 10px 25px;
    min-width:135px;
}

/* 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;
}
.contactform .radio-btns {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom:20px;
}
.contactform .radio-btns input{
    margin-left:10px;
    margin-right:4px;
}

.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 14px;
  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:14px;
}
.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;
  color: #131313!important;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--font-Montserrat);
}
.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: #d2cbc0;
  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"] {
    visibility:hidden;
    height:0;
    line-height:0;
    width:0;
} 
.attachment-field{
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 18px 6px 45px;
    cursor: pointer;
    background: url(/images/upload-icon.svg) no-repeat 8px center;
    background-size: 30px;
}
*/
input[type="file"] {
/*    padding:6px;*/

}
.attachment-field{
    min-width: 100px;
    background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;  
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.map_link {
	display:block;
	z-index: 11;
    position: relative;
}

.map_link.inner {
	background:url(/images/map.jpg) no-repeat center center;	
	/*background-size: cover;*/
	min-height:450px;
	width:100%;
}
@media screen and (max-width: 767px) {
    .map_link.inner {
        min-height:350px;
        margin-bottom:30px;
    }   
}




/*GROUP LOGOS -footer
=====================*/
.group-logos a {
    padding:15px;
    display:block;
}
.group-logos img{
    height:140px;
}
@media (max-width: 992px){
    .group-logos img{
        height:100px;
    }  
}
.footer{
  text-align: left;
  margin: 30px 0;
  border-top: 2px solid #969696;
  border-bottom: 2px solid #969696;
}
.footer img{
  width: 220px;
  margin: 30px 0;
  /*  filter: brightness(0%) saturate(0%); */
}
.footer-col {
    text-align: center;
    margin-bottom: 30px;
}
.footer-col h3 {
    text-align: center;
}
@media (min-width: 768px){
    .footer-col{
      text-align: left;
     padding: 0 20px;
     margin-bottom: 30px;
    }
    .footer-col h3 {
        text-align: left;
    }
    .footer-col:nth-child(1){
      border-right: 2px solid #969696;
    }
}
@media (min-width: 992px){
    .footer-col {
        padding: 0 30px;
    }   
}
@media (min-width: 1200px){
    .footer-col {
        padding: 0 60px;
    }   
}
@media (min-width: 1400px){
    .footer-col {
        padding: 0 80px;
    }   
}
.social img{
  width: 24px;
  margin: 0 6px;
  filter: brightness(0%) saturate(0%); 
}


.copyright{
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}
.footerMenu ul{
  text-align: right;
  margin: 0px;
  padding: 0px;
}
.footerMenu li{
  font-size: 14px;
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  text-align: right;
  font-weight: 500;
}
.footerMenu a{
  color: var(--color-black);
  text-transform: uppercase;
  text-decoration: none;
}
.footerMenu a:hover{
  color: var(--color-gold);
  text-decoration: none;
}
@media (max-width: 767px){
    .footerMenu ul {
      text-align: center;
    }
    .copyright{
      text-align: center;
    }
}

/*=== Accommodation Page
====================================*/
@media (min-width: 1200px){
    .rowListItem .content{
        margin: 0 110px;    
    }
    .rowListItem picture{
        position:relative;
        left:-110px;
        
    }
    .rowListItem .revert picture{
        position:relative;
        left:unset;
        right:-110px;
    }
}
@media (min-width: 768px){
    .rowListItem .content{
        margin: 0 100px;    
    }
}
.details.BGBlack {
    padding: 30px 20px;
}
.details.withIcons .col {
    font-size: 20px;
    font-family: var(--font-Montserrat);
    text-align:left;
    line-height:1.2;
}
.details.withIcons .col .icon{
    width:50px;
    margin-right:15px;
}
.details.withIcons .col .size{
    background:url(/images/icons/size.svg) no-repeat left center;
}
.details.withIcons .col .capacity{
    background:url(/images/icons/bed.svg) no-repeat left center;
}
.details.withIcons .col .view{
    background:url(/images/icons/view.svg) no-repeat left center;
}
.details.withIcons .col span{
  text-align: left;
  display: block;
  font-size: 26px;
  font-weight: 300;
  font-family: var(--font-Montserrat);
}
@media (max-width: 767px){
  .details.withIcons .col span{
    font-size: 26px;
  }
}

.room-amenities li{
  list-style-type: none;
  line-height: 22px;
  margin-bottom: 20px;
}
.room-amenities li img{
  width: 20px!important;
  margin-right: 8px;
}

.gallerySwiper .swiper-button-next, 
.gallerySwiper .swiper-button-prev {
    top:unset;
    bottom:40px;
    right:40px;
}

.gallerySwiper  .swiper-button-prev {
    bottom:calc(40px + 100px);
    left: auto;
}
@media (max-width: 991px){
   .gallerySwiper  .swiper-button-prev {
       bottom: calc(40px + 60px);
   }
}

/*DINING PAGE
================================ */
/* container main section :left margin*/
.white-half-bg:before {
    content:"";
    width:45%;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    background:#fff;
    display:block;
    z-index:-1;
}
@media (max-width: 991px){
    .white-half-bg:before {
        width:100%;
    }
}
.text-padding {
    padding: 10px 20px;
}
@media (min-width: 992px){
    .spaceFromLeft{
        margin-left:50px;
    }
    .text-padding {
        padding: 40px 30px;
    }
}
@media (min-width: 1200px){
    .spaceFromLeft{
        margin-left:90px;
    }
    .text-padding {
        padding: 50px 50px;
    }
}
@media (min-width: 1400px){
    .spaceFromLeft{
        margin-left:240px;
    }
}
/* MENU CAROUSEL
======================= */
@media (min-width: 992px){
    .swiper.menuSwiper {
        width: calc(100% - 160px);
        margin-left: 80px;
        margin-right: 80px;
    }
}
@media (min-width: 1200px){
    .swiper.menuSwiper {
        width: calc(100% - 200px);
        margin-left: 100px;
        margin-right: 100px;
    }
}
@media (min-width: 1400px){
    .swiper.menuSwiper {
        width: calc(100% - 240px);
        margin-left: 120px;
        margin-right: 120px;
    }
}
@media (min-width: 575px) and (max-width: 991px){
    .swiper.menuSwiper {
        width:480px;
    }
}
.menuSwiper .bannerBgColor{
    position: absolute;
    top: 0;
    left: 0;
    bottom:0;
    right:0;
    background-color: rgba(0, 0, 0, 0.5);
} 
.menuSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menuSwiper .bannerBgColor .BannerBgTitle{
  padding: 0px 20px;
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  line-height:1.4;
}
.menuSwiper .bannerBgColor .BannerBgTitle a{
    color: #ffffff;
}
.menuSwiper .bannerBgColor .BannerBgTitle span {
  display: block;
  font-size: 18px;
}
@media (min-width: 992px){
    .menuSwiperContainer .swiper-button-next,
    .menuSwiperContainer .swiper-button-prev {
        top:unset;
        bottom:0;
        left: 0px;
        right: auto;
        width:80px;
        height:80px;
    }
    .menuSwiperContainer .swiper-button-prev {
        bottom:calc( 100px);
    }

}
@media (min-width: 992px) and (max-width: 1199px){
    .menuSwiperContainer .swiper-button-next,
    .menuSwiperContainer .swiper-button-prev {
        width:60px;
        height:60px;
    }
    .menuSwiperContainer .swiper-button-prev {
        bottom:calc( 80px);
    }

}


/*
.SmallBoxes{
  margin-top: 150px;
}
.SmallBoxes .text-over{
  top: 100px;
  right: -120px;
}
.SmallBoxes .text-over.rev{
  top: 100px;
  right: 120px;
}

@media (max-width: 1400px) and (min-width: 1200px){
  .SmallBoxes .text-over .textBody ,
  .SmallBoxes .text-over.rev .textBody {
    margin-left: 134px;
  }

.SmallBoxes .text-over,
.SmallBoxes .text-over.rev{
  padding: 30px 20px;
}
}
@media (max-width: 1199px) and (min-width: 992px){
  .SmallBoxes {
    margin-top: 50px;
    margin-bottom: 150px;
}
.SmallBoxes .text-over{
  right: -80px;
}
.SmallBoxes .text-over.rev{
  right: 80px;
}
}

@media (max-width: 991px) and (min-width: 768px){
  .SmallBoxes {
    margin-top: 50px;
}
.SmallBoxes .text-over,
.SmallBoxes .text-over .rev {
  top: 0px!important;
}
.SmallBoxes .text-over{
  right: 0px;
}
.SmallBoxes .text-over.rev{
  right:0px;
}
}

@media (max-width: 767px){
  .SmallBoxes {
    margin-top: 50px;
}
.SmallBoxes .text-over,
.SmallBoxes .text-over .rev {
  top: 0px!important;
}
.SmallBoxes .text-over{
  right: 0px;
}
.SmallBoxes .text-over.rev{
  right:0px;
}
}
*/

/*=========== To Top =========== */
.toTop {
  text-align: right; }
      
a.scrollup {
    background: url(/images/top.svg) no-repeat center center;
    bottom: 10px;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 33px;
    height: 70px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
 }
.scrollup.is-visible {
	display: inline;
  	opacity: 1;
}

 /*GALLERY
======================*/
.gallery-box > div{
	height: 420px;
    position:relative;
        color: #fff;
}
 @media screen and (max-width: 575px) {
    .gallery-box > div{
        height: 350px;
    }
 }
.gallery-box > div:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    opacity: 1;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
    display: block;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.gallery-box:hover > div:before {
    background-color: rgba(121, 136, 149,1);
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
.gallery-box a {
    text-align:center;
      color: #fff;
      font-size:26px;
}
.gallery-box span {
    display:block; 
    font-size:16px;
}
.gallery-page img{
    margin-bottom:25px;
}


.smallTitle{
    font-family: var(--font-Montserrat);
    font-size: 19px;
    font-weight: 500;
}


 


 ul.TextList{
  margin: 40px 0 0 40px;
  padding: 0;
}
.TextList li{
  display: block;
  margin-bottom: 20px;
  list-style-type: none;
}
.TextList li::before{
  content: "";
  display: block;
  width: 30px;
  background-color: #131313;
  height: 1px;
  margin: 0px 0px -20px -40px;
}
.textBody ol{
     margin: 30px 0px 30px 30px; 
}

/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
    max-width:640px;
  }
.modal .modal-content {
  border-radius: 0px;
}
.modal .btn-close {
  /*background-color: var(--gold-main);*/
  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;
  }
}

.hotel-awards img {
    max-height: 100px;
}

/*VIDEOS GALLERY
============================ */
.lazy-yt-wrapper {
   /* margin: 0px 10px 20px 10px;*/
    padding: 0px;
}
.lazy-youtube {
    background-color: #000;
    margin-bottom: 25px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}
.lazy-youtube img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 1;
}
.lazy-youtube .lazy-play-btn {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.lazy-youtube .lazy-play-btn:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}
.lazy-youtube img,
.lazy-youtube .lazy-play-btn {
    cursor: pointer;
}
.lazy-youtube img,
.lazy-youtube iframe,
.lazy-youtube .lazy-play-btn,
.lazy-youtube .lazy-play-btn:before {
    position: absolute;
}
.lazy-youtube .lazy-play-btn,
.lazy-youtube .lazy-play-btn:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.lazy-youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
@media screen and (max-width: 991px) {
    .lazy-youtube .lazy-play-btn {
        width: 45px;
        height: 40px;
    }
    .lazy-youtube .lazy-play-btn:before {
        border-width: 10px 0 10px 15px;
    }
}

#userNotice .modal-body .spinner{
    background:url(/images/spinner.svg); 
    transform-origin: center;
    animation: spin 1s linear infinite;
    width: 60px;
    height: 60px;
}
.spinner {
    display:block;
    margin:auto;

}
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
