:root {
    --fontGaramond: "EB Garamond", serif;
    --fontInter: "Inter", sans-serif;
    
    --white: #fff;
    --black: #000;
    --mainColor: #13332b; /*#B69561*/
    --black33: #333333;
    /*--blue28: #28225C;*/
    --greyDB: #DBDBDB;
    --grey70: #707070;
    --mainColor-opacity: rgba(19,51,43,.75);
    --mainColor-opacity-bg: rgba(19,51,43,.1);
}

.bgGold {
    background-color: var(--mainColor);
    color: var(--white);
}
.bgBlue {
   /* background-color: var(--blue28);*/
   background-color: var(--mainColor);
    color: var(--white);
}
.color-blue{
    color: var(--mainColor);
}

.goldBorder {
    border-top: 1px solid var(--mainColor);
    border-bottom: 1px solid var(--mainColor);
}

.goldBorderBottom {
    border-bottom: 1px solid var(--mainColor);
}
.text-white {
    color: var(--white)!important;
}


html,
body,
ul,
ol {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto;
}

body {
    font-family: var(--fontGaramond);
    font-size: 20px;
    line-height:1.4;
    font-weight: 400;
    color: var(--black33);
    text-align: left;
    transition: background-color .5s;
    cursor: auto;
    background-color: #ffffff;
}
@media (max-width: 991px) {
    body {
         font-size: 18px;
    }
}

button,
.btn {
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

button:focus,
.btn.focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0;
    box-shadow: none !important;
}

a {
    text-decoration: none;
    color: var(--mainColor);
    transition: transform 0.25s ease-out;
}

a:hover {
    text-decoration: underline;
    color: var(--mainColor) !important;
    transition: transform 0.25s ease-out;
}

/*a:link,*/
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    /* display: none;
    -webkit-appearance: none;*/
    opacity: 0;
}

.fit-img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}


/*Button
=============================*/
.btns-row{
    padding-top:30px;
}
.button,
.btn {
    border-radius: 0px;
    font-family: var(--fontInter);
    font-weight: 300;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    padding: 12px 22px;
    transition: all 0.3s;
    z-index: 1;
    position: relative;
    -webkit-transition: border-color 0.4s, color 0.4s;
    transition: border-color 0.4s, color 0.4s;
    text-align: center;
    letter-spacing: 0px !important;
    text-decoration:none;
    font-size: 15px;
}

@media (max-width: 991px) {
    .button,
    .btn {
        font-size: 14px;
    }
}
/*
@media (max-width: 1199px) {
    html:lang(ru) .button {
    }
}*/
.btn--book {
    border: 1px solid var(--mainColor)!important;
    color: var(--mainColor) !important;
    border-radius: 23px;
    font-weight:600;

}
.btn--book:hover {
    background-color: var(--mainColor)!important;
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.btn--more {
    color: var(--mainColor) !important;
    display: inline-block;
    position: relative;
    transition: 0.3s ease-out;
    padding:0px;
    min-width: 110px;
    text-align:left;
}
@media (max-width: 991px) {
    .btn--more {
        font-size: 16px;
    }
}

.btn--more:hover {
    letter-spacing: 3.6px !important;
    transition: 0.3s ease-out;
    text-decoration: none;
}
.btn.white{
    color:var(--white)!important;
}
.nsl-btn{
    padding: 12px 0 6px;
}


/*HEADERS
===================== */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
    font-family: var(--fontInter);
    color: var(--mainColor);
    font-weight: 100;
    word-wrap: break-word;
    line-height: 1.1;
    margin: 0px 0 30px;
    text-transform: uppercase;
}

h1, .h1 {
    font-size: 42px;
}
h2, .h2 {
    font-size: 40px;
}
h1 span,
h2 span,
h3 span {
    display: block;
    font-size: 20px;
    font-weight: 200;
    line-height:1.4;
}
h3, .h3 {
    font-size: 34px;
}
.h3.smaller {
    font-size: 24px;
}
h4, .h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}
.light {
    font-weight: 300;
}
/*
@media (max-width: 1480px) {
    h1, .h1 {
        font-size: 48px;
    }
    h2, .h2 {
        font-size: 40px;
    }
    h3, .h3 {
        font-size: 32px;
    }
    h1 span, 
    h2 span{
        font-size: 20px;
    }
}
*/
@media (max-width: 1199px) {
    h1, .h1 {
        font-size: 38px;
    }
    h2, .h2 {
        font-size: 34px;
    }
    h3, .h3 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    h1 span,
    h2 span{
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    h1, .h1 {
        font-size: 36px;
    }
    h2, .h2 {
        font-size: 32px;
    }
    h3, .h3 {
        font-size: 28px;
    }
}

.h-title {
    font-family: var(--fontInter);
    font-weight: 200;
}
@media (min-width: 1481px) {
    .main-body-text h2,
    .main-body-text h3{
       /* font-size: 3rem;*/
        padding-top: 30px;
        margin-bottom: 13px;
    }
}
.main-body-text h2{
    font-size:2.2rem;
}
.main-body-text h3{
     font-size:2rem;
}


/*SPACING
===================== */
.mt-offset {
    margin-top: 90px;
}
/*
.padding-x {
    padding: 0 130px;
}

.padding-bottom-holder {
    padding: 100px;
}
*/

@media (max-width: 1199px) {
    .mt-offset {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .mt-offset {
        margin-top: 60px;
    }
/*
    .padding-x {
        padding: 0 3rem;
    }*/
}



/*HEADER
=================================*/
header {
    z-index: 1020 !important;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
    font-size: 16px;
    font-family: var(--fontInter);
    background-color: #FFFFFF;
}
header .ribbon {
    background-color: var(--mainColor);
    padding-top:8px;
    padding-bottom:8px;
    /*font-size:14px;*/
    font-size:13px;
}
@media (max-width: 575px) {
    header .ribbon {
        font-size:12px;
    }
}
header .ribbon a {
    text-decoration: none;
    color: var(--white) !important;
}
header .ribbon a:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

.tel-icon img{
    width:18px;
}
@media (min-width: 768px) {
   .tel-icon img{
       display:none;
   }
}
@media (max-width: 575px) {
    .tel-icon span{
        display:none;
    }
}

/* LANGUAGES
=============================== */
.ribbon .languagesDrop {
    margin-right:20px;
}
.languagesDrop .dropdown-toggle {
    color: var(--white);
}
.languagesDrop .dropdown-toggle::after {
    border: none !important;
    background: url(../images/arrow-down.svg) no-repeat;
    width: 10px;
    height: 5px;
    vertical-align: middle;
    margin-left: 2px;
}
.languagesDrop .dropdown-menu {
    top: 0px !important;
    min-width: 40px;
    border-radius: 0;
    border: 0;
    background-color: var(--mainColor);
    padding: 5px 10px;
    text-align: left;
    /*z-index: 1032;*/
}
.languagesDrop a {
    color: var(--white) !important;
    text-decoration: none;
    font-size:13px;
}
.languagesDrop .dropdown-item {
    display: block;
    padding: 0px;
}

.languagesDrop .dropdown-item:hover {
    background:none;
    text-decoration: underline;
}
.ribbon-sm-nav{
    
}

/*Overlay - burger menu lang
=================================*/
.main_navigation .languagesDrop  {
    margin-left:20px;
}
.main_navigation .dropdown-toggle {
    color: var(--mainColor) !important;
    font-size: 18px;
    position: relative;
    top: 20px;
}
.main_navigation .dropdown-toggle .languagesDrop a {
    font-size: 25px;
}
.main_navigation .dropdown-toggle::after {
    filter: invert(64%) sepia(9%) saturate(1658%) hue-rotate(358deg) brightness(94%) contrast(89%);
}

@media (max-width: 575px) {
   .main_navigation .dropdown-toggle,
   .main_navigation .dropdown-toggle .languagesDrop a  {
       font-size: 18px;
   }
}
/* HEADER WHITE AREA 
=============================== */
header .main-header {
    padding-top:4px;
    padding-bottom:4px;
}
@media (max-width: 767px) {
    header .main-header {
        padding-top:6px;
        padding-bottom:6px;
    }    
}

/* DESKTOP NAVIGATION
=============================== */
.SmallTopMenu {
    /*font-size: 16px;*/
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0px;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}
.SmallTopMenu a {
    color: var(--mainColor) !important;
    margin-right: 12px;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.SmallTopMenu a:hover,
.SmallTopMenu a.active{
    color: var(--mainColor) !important;
    font-weight: bold;
    transition: 0.2s linear;
}
@media (max-width: 1199px) {
    .main-header .left-col {
        display: none !important;
    }
}
.logo img {
    height: 62px;
    margin:10px auto;
}
@media (max-width: 1199px) {
    .logo img {
        height: 44px;
    }
}
@media (max-width: 767px) {
    .logo img {
        height: 34px;
    }
}

/*SLIDER
=============================== */
.noSlider-holder {
    height: 125px;
}
@media (max-width: 1199px) {
    .noSlider-holder {
        height: 108px;
    }
}
@media (max-width: 767px) {
    .noSlider-holder {
        height: 102px;
    }
}
@media (max-width: 575px) {
    .noSlider-holder {
        height: 102px;
    }
}

/*
.topMedia {
    height: 100%;
    position: relative; 
}*/
/*=== Carousel Slider
=====================================*/
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
    height: 100vh;
}
#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
    visibility: hidden; }
#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
    visibility: visible; }
    
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.carousel-control-next, .carousel-control-prev {
    width:10%;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/arrow-right.svg)!important;
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);
}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/arrow-right.svg)!important;

}
#bigCarousel .carousel-control-next-icon, 
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
  width: 50px!important;
  height: 50px!important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: 500px !important;
      }
}
@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 350px;
  }
}

.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:100%;
    font-family: var(--fontGaramond);
    font-weight: 300;
    color: var(--white);
    font-size: 50px;
    line-height:1;
    text-align: center;
    background:rgba(0,0,0,0.001);
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .contentOverSlider {
        font-size: 48px;
    }
}
@media (max-width: 991px){
    .contentOverSlider {
        font-size: 48px;
    }
}
@media (max-width: 575px) {
    .contentOverSlider {
        font-size: 30px;
    }
}


/*BOOKING FORM
========================================*/
.bookingForm {
    font-weight: 300;
}
.bookingForm .column {
    width: calc(20% - 40px);
    padding: 0px 10px;
    margin: 0 30px;
}
.bookingForm .column:nth-child(1),
.bookingForm .column:nth-child(2){
    width:230px;  
}
.bookingForm .column:nth-child(3),
.bookingForm .column:nth-child(4){
    width:180px; 
}
.bookingForm .form-label {
    color: var(--mainColor);
    /*font-size: 20px;*/
    font-size: 14px;
    letter-spacing: 1.95px;
    font-weight: 300;
    margin-bottom: 0;
    font-family: var(--fontInter);
    display:block;
}
.bookingForm .column:nth-child(3) .form-label,
.bookingForm .column:nth-child(4) .form-label{
   text-align:center; 
}

.bookingForm .form-control {
    font-family: var(--fontInter);
    color: var(--mainColor);
  border: none;
  background: transparent;
  border-radius: 0px;
  cursor: pointer;
  background-color: transparent;
 /* font-size: 28px;*/
  font-size: 22px;
  box-shadow: none;
  outline:none;
    padding: 10px 0 0 0;
    line-height: 1;
}
.bookingForm .form-control:hover,
.bookingForm .form-control:focus {
    font-weight: 700;
    transition: 0.2s linear;
}
.bookingForm select {
    border-radius:0;
     font-size: 30px;
     text-align:center;
}
.bookingForm option {
    font-size: 18px;
    color: var(--mainColor);
}
.bookingForm select:focus {
    background: transparent;
}
.bookingForm .column-btn {
    width: 14%;
    margin-left: 20px;
}
@media (max-width: 1199px) {
    .bookingForm .form-label {
        font-size: 18px;
    }
    .bookingForm .form-control,
    .bookingForm select{
          font-size: 26px;
    }
    .bookingForm .column {
        padding:0;
    }
    .bookingForm .column:nth-child(1), .bookingForm .column:nth-child(2) {
        width: 180px;
    }
    .bookingForm .column:nth-child(3), .bookingForm .column:nth-child(4) {
        width: 110px;
    }
}
@media (max-width: 991px) {
    .bookingForm .column {
        margin: 0 20px;
    }

    .bookingForm .form-label {
        font-size: 16px;
    }
    .bookingForm .form-control,
    .bookingForm select{
          font-size: 22px;
    }
    .bookingForm .column:nth-child(1), .bookingForm .column:nth-child(2) {
        width: 155px;
    }
    .bookingForm .column:nth-child(3){
        width: 90px;
    }
    .bookingForm .column:nth-child(4) {
        width: 100px;
    }
    .bookingForm .column-btn{
        margin-left:0;
    }
    
}
@media (max-width: 992px) {
    .column-btn .btn--book {
        font-size: 18px;
    }
}


/*BREADCRUMB
========================================*/
.breadcrumb {
    font-family: var(--font-familyGeologica);
    text-transform: uppercase;
    color: var(--mainColor);
    font-weight: 400;
}

.breadcrumb li+li:before {
    padding: 8px;
    color: var(--mainColor);
    content: "\2022";
}

.breadcrumb a {
    color: var(--grey92);
    font-weight: 300;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--mainColor);
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .breadcrumb {
        margin-top: 20px;
    }
}





/* HOME INTRO TEXT
=================================== */

.shadeBefore::before {
    content: '';
    background-color:var(--mainColor);
    opacity:.1;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: calc(58.33333333% + 3rem);
    height: 80%;
}
.intro-text-section {
    padding-right: 50px;
}
@media (min-width: 1200px) {
    .intro-text-section h1{
        width:400px;
        margin-left:auto;
    }
}
@media (max-width: 1199px) {
    .shadeBefore::before {
        width: calc(50% + 3rem);
        height: 70%;
    }
    .intro-text-section {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
   .intro-text-section {
        padding-right: 0;
    }
    /* .shadeBefore::before {
        display: none;
    }*/
    .shadeBefore {
        position: relative;
        padding: 1.5rem;
    }
    /*.shadeBefore::before {
        width:100%;
    }*/
}



/* SWIPERS GEN
=============================== */
.slider-arrows-bottom .swiper-wrapper {
    padding-bottom:80px;
}
.swiper-button-next,
.swiper-button-prev {
    background: url(../images/arrow-right.svg) no-repeat center center;
    width: 44px;
    height: 34px;
    top: calc(100% - 30px);
    border: 1px solid var(--mainColor);
    border-radius: 26px;
    opacity: 1;
    transition:all .5s;
}
.swiper-button-next {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.swiper-button-next {
     right: calc(17% - 40px);
}
.swiper-button-prev {
     left: calc(79% - 40px);
}

.swiper-button-next:hover {
     width: 64px;
     right: calc(17% - 60px);
     transition:all .5s;
}
.swiper-button-prev:hover {
     width: 64px;
     left: calc(79% - 60px);
     transition:all .5s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}       

@media (min-width: 992px){
    .swiper-button-next,
    .swiper-button-prev {
        width: 56px;
        height: 40px;
    }
}
@media (min-width: 1200px){
    .swiper-button-next,
    .swiper-button-prev {
        width: 67px;
        height: 43px;
    }
    .swiper-button-next {
     right: calc(16% - 40px);
    }
    .swiper-button-prev {
         left: calc(78% - 40px);
    }
    .swiper-button-next:hover {
        width: 87px;
     right: calc(16% - 60px);
    }
    .swiper-button-prev:hover {
        width: 87px;
        left: calc(78% - 60px);
    }
}
/*
@media (min-width: 1480px){
    .swiper-button-next {
        right: calc(17% - 40px);
    }
    .swiper-button-prev {
         left: calc(79% - 40px);
    }
}*/

.slider-arrows-bottom.centered .swiper-button-next {
         right: calc(47.5% - 40px);
    }
.slider-arrows-bottom.centered .swiper-button-prev {
         left: calc(47.5% - 40px);
}
.slider-arrows-bottom.centered .swiper-button-next:hover {
         right: calc(47.5% - 60px);
    }
.slider-arrows-bottom.centered .swiper-button-prev:hover {
         left: calc(47.5% - 60px);
}

/*GALLERY SECTION CAROUSEL
========================================= */
.gallery-section-carousel .horizontal {
    width:calc(38.75%);
}
.gallery-section-carousel .vertical {
    width:calc(22.5%);
}
.gallery-section-carousel .swiper-slide a,
.gallery-section-carousel .swiper-slide .p-around{
    display:block;
    padding:0 5px;
}
@media (max-width: 991px){
    .gallery-section-carousel .horizontal {
        width:calc(38%);
    }
    .gallery-section-carousel .vertical {
        width:calc(23%);
    }  
}
@media (max-width: 575px){
    .gallery-section-carousel .horizontal {
        width:calc(80%);
    }
    .gallery-section-carousel .vertical {
                width: calc(48.2%);
    }  
}

.gallery-section-upoTotwo-imgs .horizontal {
    width:calc(67%);
    margin-right:1%;
}
.gallery-section-upoTotwo-imgs .vertical {
    width:calc(32%);
}
.gallery-section-upoTotwo-imgs img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}




/*ACCOM SECTION - INTRO  && Categories Carousel
=================================================*/

.section-rooms-carousel h2,
.section-categories-carousel h2{
    text-align:center;
}
.text-holder {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .img-holder {
        padding-left:10%;
        padding-right:10%;
    }
    .text-holder {
        position: absolute;
        left: 20px;
        right: 0;
        z-index: 1000;
        padding: 50px;
        background: #FFFFFF 0% 0% no-repeat padding-box;
        opacity: 0.92;
        text-align: left;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        display:none;
    }
    .section-rooms-carousel .swiper-slide-active .text-holder,
    .section-categories-carousel .swiper-slide-active .text-holder{
        display:block;
    }
    .section-rooms-carousel .swiper-slide-active .img-holder,
    .section-categories-carousel .swiper-slide-active .img-holder{
        padding-left:20%;
        padding-right:0%;
    }
    .section-rooms-carousel .swiper-slide-next {
        opacity:.5;
    }
    .section-categories-carousel .text-holder {
        min-height:70%;
        display: flex!important;
        flex-direction: column;
        justify-content: center;
    }
}
.text-holder h3{
    font-weight:200;
}

.room-details {
    font-size:20px;
    margin-bottom:30px;
    margin-right:50px;
}
/*
@media (min-width: 992px) {
    .room-details {
        font-size:22px;
    }
}*/
.room-details .value{
    font-family:var(--fontInter);
    font-weight:300;
    letter-spacing: 0.5px;
    color: var(--mainColor);
    font-size: 18px;
}  



        
/*Reasons To Book
==========================*/
.reasons-section {
    font-family: var(--fontInter);
    letter-spacing: 1.25px;
    font-size:18px;
    font-weight: 300;
} 
.reasons-section.blue .heading h2 {
    color: var(--mainColor)!important;
}
@media (min-width: 576px) {
    .reasons-section .heading h2{
        padding-left: 20% !important;
    }
}
/*
@media (min-width: 992px) {
    .reasons-section .heading h2{
        font-size:80px;
    }
}
@media (min-width: 1200px) {
    .reasons-section .heading h2{
        font-size:100px;
    }
}*/
.reasons-section ol{
    margin-left: 35px;
}
.reasons-section li:not(:last-child){
    margin-bottom:20px; 
}
.reasons-section li span{
    display:block;
    font-size:16px;
}
/*
@media (max-width: 1199px) {
    .reasons-section {
        font-size:20px;
    }
}*/
@media (max-width: 991px) {
  /*  .reasons-section {
        font-size:18px;
    }*/
    .reasons-section ol{
        margin-left: 25px;
    }
}
@media (max-width: 575px) {
    .reasons-section {
        font-size:16px;
    }
   .reasons-section .heading h2 span{
       display:inline-block;
       font-weight:300;
       margin:0 5px;
        font-size: 20px!important;
   }
    .reasons-section .heading h2{
        font-size: 20px!important;
        font-weight: 700;
        margin-left:22px;
   }
}

/* BLOCK LISTS - Bg Grey 
=============================== */
.greyBg {
    position:relative;
}
.greyBg:before {
    top:10%;
    bottom:10%;
    left:0;
    right:0;
    content:"";
    position:absolute;
    background: var(--mainColor-opacity-bg);
}
@media (max-width: 767px) {
    .greyBg:before {
        top:0;
    }
    .greyBg.mt-offset {
        margin-top:0px;
    }
    .greyBg .place-text {
        padding-top:5rem;
        padding-bottom:1.5rem;
    }
}


/* REVIEWS 
=============================== */
.reviews-section .h-title {
    color: var(--mainColor);
    /*font-size: 25px;*/
    font-size: 20px;
}
.reviews-section .rName{
    font-style:italic;
}
@media (min-width: 768px) {
    .reviews-section .review{
        width:80%;
        margin:auto;
    }
}

/* FOOTER  NAV
=============================== */

.bottom-nav {
    font-family: var(--fontInter);
    font-size: 18px;
    font-weight: 300;
}
.bottom-nav a {
    position:relative;
    text-decoration:none;
    margin: 0 25px;
}
.bottom-nav a:first-child {
  margin-left: 0px;
}
.bottom-nav a:last-child {
  margin-right: 0px;
}
.bottom-nav a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .bottom-nav a:not(:last-child) {
        margin-right: 40px;
    }
    .bottom-nav a:first-child {
      margin-left: 40px;
    }
}

@media (max-width: 767px) {
    .bottom-nav a {
        font-size: 16px;
    }
    .bottom-nav a:not(:last-child) {
        margin-right: 20px;
    }
    .bottom-nav a:first-child {
      margin-left: 20px;
    }
}


/* FOOTER 
=============================== */
.footerMenu a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 10px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footerMenu a:hover,
.footerMenu a:focus,
.footerMenu button:hover {
    color: var(--grey92) !important;
    text-decoration: none;
}


footer {
    font-size: 18px;
    letter-spacing: .5px;
    color: var(--white);
}
@media (max-width: 575px) {
    footer {
        font-size: 16px;
    }
}
footer a {
    color: var(--white);
    text-decoration: none;
    transition: all 200ms ease-out;
}
footer a:hover {
    text-decoration: underline;
    color: var(--white) !important;
}

footer .h-title{
    font-size: 24px;
    margin-bottom: 8px;
}
.social a{
    display: inline-block;
}

.social img {
    width: 26px;
    height: 26px;
}
.social a:hover {
    opacity: 0.6;
    transition: all 0.5s linear;
}

.extra-footer {
    margin-top:50px;
}
.extra-footer img{
    filter:brightness(0) invert(1);
    height:50px;
}
@media (max-width: 767px) {
     .extra-footer {
        margin-top:30px;
        margin-bottom:30px;
    }   
}
.extra-footer .sister-hotel {
    margin-top:40px;
}
.extra-footer .sister-hotel img {
     height:56px;
}
@media (min-width: 1480px) {
    .extra-footer .d-asflex {
        display:flex;
    }
    .extra-footer .sister-hotel {
        margin-top:0px;
        border-left: 1px solid #355a50;
        padding-left: 1.5rem !important;
    }
}

.copyright {
    font-size: 16px;
    color: var(--black33);
    padding-top:10px;
    padding-bottom:10px;
}
.copyright a {
    text-decoration: none;
    color: var(--black33);
}
.copyright a:hover {
    text-decoration: underline;
}
@media (max-width: 575px) {
    .copyright {
        font-size: 14px;
        padding-bottom:50px;
    }
}

.f-logos{
    padding-top:30px;
    padding-bottom:30px;
}
.f-logos h3{
    font-size:28px;
    margin-bottom:15px;
}
@media (max-width: 575px) {
    .f-logos h3{
      font-size:24px;  
    }
}
.f-logos .umb-block-list{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    
}
.f-logos a {
    margin:0 10px;
}
.f-logos a img{
     height:45px;      
}
.f-logos a:nth-child(2) img{
    height:20px;   
}
.f-logos a:nth-child(3) img{
    height:45px;   
}
@media (max-width: 575px) {
    .f-logos{
        padding-bottom:10px;
    }
    .f-logos a {
        margin:5px;
    }
    .f-logos a img{
         height:30px;      
    }
    .f-logos a:nth-child(2) img{
        height:30px;   
    }
    .f-logos a:nth-child(2) img{
        height:15px;   
    }
    .f-logos a:nth-child(3) img{
        height:35px;   
    }  
}
/*=========== To Top =========== */
.toTop {
    text-align: right;
}

a.scrollup {
    background: url(../images/arrow-right.svg) no-repeat center center;
    background-size: 50%;
    bottom: 0;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 43px;
    height: 100px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.scrollup.is-visible {
    display: inline;
    opacity: 1;
}

.cookie-icon {
    position:fixed;
    left:20px;
    bottom:50px;
    opacity: 1;
    width:46px;
    height:46px;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    padding:6px;
    font-size:8px;
    z-index: 10;
}

/*FORMS
======================*/
input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}
input[data-autocompleted] {
    background-color: transparent !important;
}
.newsletterform .form-control {
    background: transparent;
    border-radius: 0px;
    padding: 30px 0 0px 0;
    font-size: 20px;
    border: none;
    border-bottom: 1px solid;
    color: var(--white);
    font-family: var(--fontInter);
    font-weight: 300;
    letter-spacing: 0.32px;
    font-weight: 100;
}
.newsletterform label {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    font-family: var(--fontInter);
    opacity: 1;
}
.newsletterform .form-floating>.form-control-plaintext~label, 
.newsletterform .form-floating>.form-control:focus~label, 
.newsletterform .form-floating>.form-control:not(:placeholder-shown)~label, 
.newsletterform .form-floating>.form-select~label {
    color: var(--white);
}

.newsletterform label:after {
    background-color:transparent!important;
}
.newsletterform ::-webkit-input-placeholder {
    color: var(--grey92);
}

.newsletterform :-moz-placeholder {
    color: var(--grey92);
}

.newsletterform ::-moz-placeholder {
    color: var(--grey92);
}

.newsletterform :-ms-input-placeholder {
    color: var(--grey92);
}

.newsletterform .form-agree label {
    color: var(--white);
    font-size: 14px;
    text-transform: none;
}

.newsletterform .form-agree label a {
    color: var(--white);
    text-decoration: underline;
    transition: all 200ms ease-out;
}

.newsletterform .form-agree label a:hover {
    text-decoration: none;
    color: var(--white) !important;
}

@media (max-width: 767px) {
    .newsletter-holder.border-left-blue {
        border-top: 0;
    }

    .newsletterform {
        max-width: 420px;
    }
}

/* FORMS
====================================== */
.form-placement {
    font-size: 14px;
    padding: 60px 70px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .form-placement {
        padding: 20px;
    }
}
.contactform {
    font-size: 16px;
}
.contactform label {
    color: var(--black33);
    font-weight: 300;
    font-size: 18px;
    font-family: var(--fontInter);
    opacity: 1;
}

.contactform .form-control {
    background: transparent;
    border:0;
    border-radius: 0px;
    padding: 30px 0 0px 0!important;
    border-bottom: 1px solid rgba(193, 192, 192, 1);
    outline: none;
    color: var(--black33);
    font-size: 20px;
}

::-webkit-input-placeholder {
    color: var(--black33);
}
:-moz-placeholder {
    color: var(--black33);
}
::-moz-placeholder {
    color: var(--black33);
}
:-ms-input-placeholder {
    color: var(--black33);
}
.contactform select.form-control {
    color: var(--black33);
}
.contactform textarea.form-control {
    height: auto;
}
.field-validation-valid {
    display: none;
    color: red;
}
.field-validation-error {
    display: block;
    color: red;
    text-align: left;
    font-size: 12px;
}
.field-validation-error:empty {
    display: none;
}
.asterisk span {
    display: inline;
    font-size: 14px;
}
.form-agree label {
    display: inline;
    font-size:16px;
}
.form-agree .field-validation-error {
    display: inline-block;
}
.form-agree a {
    text-decoration: underline;
}
.form-agree a:hover {
    text-decoration: none;
}
.grecaptcha-badge {
    display: none !important;
}

input[type="file"] {
    padding: 6px;
}

.attachment-field {
    min-width: 140px;
    background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 8px;
    padding-left: 30px;
}






/*====================================================================*/
@media (min-width: 1200px){
    .max-width{
        max-width:1200px;
        margin:auto;
    }
}
@media (min-width: 1920px){
    .max-width-container{
        max-width:1920px;
        margin:auto;
    }
}



/*ACCOMM PAGE
================*/
.all-rooms h2 a{
    text-decoration:none;
}
.all-rooms .place-text {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}
@media (min-width: 768px){
    .all-rooms .place-img {
        padding-right:30px;
        position:relative;
    }
    .all-rooms .place-img:before {
        content: "";
        background: var(--mainColor);
        position: absolute;
        right: 15px;
        top: 10%;
        z-index: -1;
        width: calc(100% - 15px);
        bottom: 10%;
    }
    .all-rooms .place-img.revert {
         padding-left:30px;
         padding-right:0px;
    }
    .all-rooms .place-img.revert:before {
        right: unset;
        left: 15px;
    }
    .all-rooms .place-text {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

}
@media (min-width: 1200px){
      .all-rooms .place-text {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }  
}
@media (max-width: 767px){
    .all-rooms .place-img {
        margin-bottom:30px;
    }
}
.facilities-section{
     padding: 3rem !important;
     /*font-size: 23px;*/
}
@media (min-width: 768px){
    .facilities-section{
         margin-bottom:80px;
    }
}
@media (min-width: 1200px){
    .facilities-section{
         padding: 5rem !important;
    }
}


.facilities-section ul {
    margin-left:25px;
}
@media (min-width: 576px){
    .facilities-section ul {
        columns: 2;
        list-style-type: disc;
    }
    .facilities-section ul li{
        padding-right:15px;
    }
}
@media (min-width: 992px){
    .facilities-section ul {
      /*  columns: 3;*/
        list-style-type: disc;
    }
}
/*
@media (max-width: 1199px) {
    .facilities-section {
        font-size: 20px;
    }
}*/

/*OTHER ROOMS - BOXES LISTING
=====================================*/
@media (min-width: 768px) {
    .otherRoomsSwiper .swiper-slide-active .img-holder,
    .otherRoomsSwiper .swiper-slide-active .opacity-text-bg div{
        padding:0 30px 0 0 ;
    }
    .otherRoomsSwiper .swiper-slide-next .img-holder,
    .otherRoomsSwiper .swiper-slide-next .opacity-text-bg div{
        padding:0 0 0 30px;
    } 
    .box-text-over {
        position:relative;
        padding-bottom:30px;
    }
}
@media (min-width: 1199px) {
    .otherRoomsSwiper .swiper-slide-active .img-holder,
    .otherRoomsSwiper .swiper-slide-active .opacity-text-bg div{
        padding:0 50px 0 0 ;
    }
    .otherRoomsSwiper .swiper-slide-next .img-holder,
    .otherRoomsSwiper .swiper-slide-next .opacity-text-bg div{
        padding:0 0 0 50px;
    }
}
.box-text-over {
    position:relative;
    padding-bottom:50px;
}


.opacity-text-bg {
    background:var(--mainColor-opacity);
    position:absolute;
    bottom:0px;
    width:100%;
    color:var(--white);
    padding:15px 0 50px;
   /* font-size: 23px;*/
}
.opacity-text-bg h3{
        color:var(--white);
        margin-bottom:10px;
}
/*DINING BOXES
=-=====================*/
.listing-box.box-text-over {
    padding-bottom:0px;
    margin-bottom:30px;
    overflow:hidden;
}
.listing-box.box-text-over .opacity-text-bg {
    padding:15px 0 30px;
    min-height: 140px;
}
.listing-box.box-text-over .img-holder{
    padding: 30px 20px;
    transition: all .5s;
}
.listing-box.box-text-over:hover .img-holder{
    padding: 0 0px;
     transition: all .5s;
    /* transform: scale(1.1);  fix for the glitch?? */
}
.listing-box.box-text-over .hover-expand {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    height:0;
}
.listing-box.box-text-over:hover .hover-expand {
    visibility: visible;
    opacity: 1;
    height:auto;
    padding-top: 70px;
    position: relative;
}
.listing-box.box-text-over .hover-expand:before {
    content: "";
    position: absolute;
    height: 50px;
    width: 1px;
    background: var(--white);
    top: 15px;
}
.listing-box.box-text-over:hover .opacity-text-bg  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    transition: all 0.3s ease-out;
    text-align: center;
}
.listing-box.box-text-over h2 {
    margin-bottom:0px;
}
@media (max-width: 767px) {
    .listing-box.box-text-over {
        margin-bottom: 10px;
    }
    .listing-box.box-text-over:not(:hover) .opacity-text-bg {
        width:calc(100% - 40px);
        left:20px;
        bottom: 30px;
        min-height: unset;
    }

}   

/*SUBPAGES AS ROWS
=====================================*/
.listing-row.box-text-over {
    border-top:var(--mainColor-opacity) 30px solid;
    padding-bottom: 30px;
    margin-bottom:80px;
}
.listing-row.box-text-over .opacity-text-bg{
    text-align:center;
}

@media (max-width: 767px) {
    .listing-row.box-text-over {
        margin-bottom:50px;
    }   
}


.link-as-box {
    display:block;
    position:absolute;
    top:0;
    right:0;
    height:100%;
    width:100%;
    z-index:5;
}
.link-as-box span{
    display:none;
}

/*Text below section - listing restaurants
=====================================*/

    @media (min-width: 1481px) {
    .section-body-text h2,
    .section-body-text h3{
       /* font-size: 2.8rem;*/
       font-size:2.2rem;
    }
}
@media (min-width: 1200px) {
    .only-img-holder {
        width:70%;
        margin:auto;
    }
}
.section-body-text .shadeBefore::before {
    top: -25px;
    right: -15px;
    width: calc(80%);

}
.section-body-text .shadeBefore.revert::before {
    right: unset;
    left:-15px;
}
@media (max-width: 767px) {
    .section-body-text .shadeBefore::before {
        top: -15px;
    }
}
@media (max-width: 575px) {
    .section-body-text .shadeBefore::before {
        top: 0px;
        right: 0px;
    }
    .section-body-text .shadeBefore.revert::before {
        left:0px;
    }
}
.section-body-text .shadeBefore .slider-arrows-bottom.centered .swiper-button-next,
.section-body-text .shadeBefore .slider-arrows-bottom.centered .swiper-button-prev {
    top: calc(100% - 40px);    
}
@media (min-width: 1200px) {
    .section-body-text .shadeBefore .slider-arrows-bottom.centered .swiper-button-next {
        right: calc(47.5% - 60px);
    }
    .section-body-text .shadeBefore .slider-arrows-bottom.centered .swiper-button-prev {
        left: calc(47.5% - 60px);
    }
    .section-body-text .shadeBefore .slider-arrows-bottom.centered .swiper-button-next:hover {
        right: calc(47.5% - 80px);
    }
    .section-body-text .shadeBefore .slider-arrows-bottom.centered .swiper-button-prev:hover {
        left: calc(47.5% - 80px);
    }
}

/*HOTEL AWARDS PAGE
=====================================*/
.hotel-awards ul{
    margin:0px;
    list-style:none;
}
.hotel-awards ul li{
    padding:0px 30px 30px;
}
@media (max-width: 767px) {
    .hotel-awards ul li{
        padding:0px 15px 15px;
    }
   .hotel-awards img{
       height:80px;
   } 
}


.wordbreak a{
     word-break: break-word;  
}
/*LISTS
==============================*/
.privacyList ul {
    margin:0 0 15px 30px;
    list-style-type: disc;
}
ul.TextList {
    margin:0 0 15px 30px;
    list-style-type: disc;
    text-align:left;
}

   
ul.TextListCenter{
    margin: 30px 0;
    padding: 0;
}
ul.TextListCenter li{
    list-style-type: disc;
    list-style-position: inside;
}
/*
ul.TextListCenter li:before{
    position: absolute;
    content: "";
    background: url(../images/check.jpg) no-repeat 2px 5px;
    margin-left: -30px;
    width: 10px;
    height: 20px;
    padding-left: 23px;
}*/

@media (min-width: 768px) {
    .TwoCols {
        columns: 2;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .TwoCols {
        text-align: left;
    }
}

.sitemap {
    text-transform: uppercase;
}

.sitemap a {
    text-decoration: none;
}

.sitemap a:hover {
    text-decoration: underline;
}

/** START OF MODAL 
=======================*/
.modal {
    z-index: 20000;
}

.modal .modal-dialog {
    max-width: 720px;
}

.modal .modal-content {
    border-radius: 0px;
    font-size:20px;
    text-align:center;
}
.modal  .h3{
    font-size: 2.2rem;
}

.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;
    }
}



/*iFrame
===========================================*/
/*
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}*/
