/** START OF GENERAL SETTINGS **/
:root {
  --fontGeologica: "Geologica", sans-serif;

  --white: #ffffff;
  --whiteDark: #adadad;
  --black: #2d2d2d;
  --grey: #ccc;
  --mainColor:#8BA8B6; /*139,168,182*/
  --bgMainOpacity: rgba(139,168,182, .1);
  --bgBurgerMenu:#f3f6f8;

  --transition3s: 0.3s linear;
  --backdropBlur: blur(1px);
  interpolate-size: allow-keywords;
}

.bg-section{
    background:var(--bgMainOpacity);
    padding:40px 0;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:focus,
a:focus {
  box-shadow: none !important;
  outline: none;
}

a,
a:hover {
  color: var(--black);
  text-decoration: none;
}

a:hover {
  color: var(--mainColor);
}

/** FOR MAV IOS **/
input[type="checkbox"],
a[type="submit"] {
  float: none !important;
}

button:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.img-fit{
   height: 100% !important;
    width: 100%;
    object-fit: cover; 
}

/**START OF BODY AND HEADINGS
=====================================**/
body {
    font-family: var(--fontGeologica);
    color: var(--black);
    font-size: 22px;
    font-weight: 200;
    line-height: 1.4;
    background: var(--white);
    text-align: center;
    overflow-x: hidden;
    position: relative;
}
@media screen and (max-width: 480px) {
   body {
        font-size: 20px;
   }
}
.smallText {
  font-size: 16px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--white);
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: var(--white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}

/**START OF HEADINGS
=====================================**/
h1, .h1,
h2, .h2,
h3, .h3 {
  font-family: var(--fontGeologica);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--black);
  font-weight: 500;
  display: block;
  overflow-wrap: break-word;
  text-align: left;
  text-transform: uppercase;
}
h1, .h1 {
  font-size: 60px;
}
h2, .h2 {
  font-size: 54px;
}

h3, .h3 {
  font-size: 40px;
}
@media screen and (max-width: 991px) {
  h1, .h1 {
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 44px;
  }
  h3, .h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 35px;
  }
  h3, .h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  h1, .h1 {
    font-size: 34px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 28px;
  }
}


/** START OF MARGIN  
============================== **/
.mt-offset{
    margin-top:120px;
}
.mt-offset-half{
    margin-top:60px;
}
.pt-offset {
    padding-top: 120px;
}
@media screen and (max-width: 575px) {
    .mt-offset{
        margin-top: 80px;
    }
    .mt-offset-half{
        margin-top:40px;
    }
    .pt-offset {
        padding-top: 80px;
    }
}

/* START OF BUTTONS  
====================================*/
.button {
  font-family: var(--fontGeologica);
  color: var(--black);
  border: 1px solid var(--black);
  padding: 12px 18px 12px;
  text-decoration: none;
  -webkit-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  position:relative;
  display:inline-block;
}
@media screen and (max-width: 575px) {
    .button {
        font-size: 15px;
    }
}

.button::after,
.button::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    transition: all 0.5s ease;
}
.button:before {
    width: 100%;
    background: transparent;
    z-index:-2;
}
.button:after {
  width: 0;
  left: 100%;
  z-index: -1;
}
.button:hover {
    color:var(--white);
     border: 1px solid var(--white);
}
.button:hover:after {
  width: 100%;
  left: 0;
  background: var(--mainColor);
  transition: width 0.5s ease;
}
.button.white {
  color: var(--white);
  border: 1px solid var(--white);
}
.button.white:hover{
    color: var(--mainColor)!important;
}
.button.white:hover:after,
.button.white:hover:after{
    background: var(--white);
}

.header .button {
  color: var(--white);
  border: 1px solid var(--white);
}
.header .button:before {
    background:var(--mainColor)!important;
}
.header .button:hover {
    color: var(--mainColor)!important;
}
.header .button:hover:after,
.header .button:hover:after {
    background: var(--white);
}
.header.headerScroll .button,
.no-slider .header .button {
    color: var(--mainColor)!important;
}
.header.headerScroll .button:before,
.no-slider .header .button:before{
    background:var(--white)!important;
}
.header.headerScroll .button:after,
.no-slider .header .button:after {
    background:var(--mainColor)!important;
}
.header.headerScroll .button:hover,
.no-slider .header .button:hover{
    color: var(--white)!important;
}
@media screen and (max-width: 575px) {
    .header .button {
       /* padding: 12px 14px;*/
        padding: 10px 12px;
    }
}


/* START OF HEADER  
============================*/
.header {
  background-color: transparent;
  color: var(--white);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header:not(.headerScroll):not(:hover):before{
    content:" ";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
        z-index: -1;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 3%, rgba(0, 0, 0, 0.08167016806722693) 19%, rgba(0, 0, 0, 0.28895308123249297) 63%, rgba(0, 0, 0, 0.5606617647058824) 100%);
}
.headerScroll,
.header:hover,
.no-slider header {
  background-color: var(--mainColor);
}
@media (min-width: 1200px) {
    .header .column {
        width:220px;
    }
}
.header .img-logo {
  height: 70px;
  filter: brightness(0) invert(1);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin:5px 0;
}
@media (max-width: 1199px) {
   .header .img-logo {
       margin-left:80px;
   }
}
@media (max-width: 767px) {
   .header .img-logo {
       height: 60px;
       margin-left:60px;
   }
}
.header.headerScroll .img-logo {
    height: 50px;
}
@media (max-width: 575px) {
   .header .img-logo {
       height: 50px;
   }
   .header.headerScroll .img-logo {
        height: 40px;
    }
}
.header-menu {
    display:none;
    padding-left: 0;
    list-style: none;
}
@media (min-width: 1200px) {
    .header-menu {
        display: flex !important;
        align-items: center !important;
        justify-content: center!important;
    }
}
.header-menu li a {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 20px;
}
.header-menu li a:hover,
.header-menu li a.active{
  text-decoration: underline;
}
@media (min-width: 1400px) and (max-width: 1599px){
    .header-menu li a {
        font-size: 16px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px){
    .header-menu li a {
        font-size: 14px;
    }
}
/* LANGUAGES  
-----------------------*/
.languagesDrop .dropdown-toggle {
    color: var(--white);
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition3s);
}
.languagesDrop .dropdown-menu {
    min-width: 40px;
    border-radius: 0;
    padding: 5px 0px;
    font-size: 15px;
    left: -10px !important;
    background-color: var(--mainColor);
    border: 0;
}
.languagesDrop .dropdown-menu a{
    color: var(--white);
    text-align: left;
}
.languagesDrop .dropdown-menu a:hover{
    background: none;
    color: var(--bgBurgerMenu);
}
/* END OF HEADER  */

@media (min-width: 768px) {
    .checkin-btn {
        position:absolute;
        color: var(--white);
        font-size: 14px;
        font-weight: 400;
        top:12px;
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .checkin-btn:hover{
         color: var(--white);
         text-decoration:underline;
    }
    .header .column.right-col {
        margin-top:14px;
    }
    .headerScroll .checkin-btn {
        top:7px;
    }
    .checkin-btn {
        right: 1.5rem !important;
    }
}
@media (max-width: 767px) {
  .header .checkin-btn {
      display:none;
  }
  
    
 /* .checkin-btn {
        top:8px;
   }
   .headerScroll .checkin-btn {
        top:5px;
    }*/
    .overlay-menu .checkin-btn {
        color: var(--black);
        padding: 8px 16px;
        font-size: 18px;
        letter-spacing: 0.15rem;
        background: var(--bgMainOpacity);
    }
}



/*=== MAIN MENU 
========================================*/
@media screen and (min-width: 1200px) {
    .overlay-menu {
        display:none;
    }
}
.menu-btn {
    top: 19px;
    left: 16px;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    z-index: 3;
    position: fixed;
    font-size: 14px;
    margin-right: 8px;
    color: var(--white);
    line-height: 1;
    transition: 0.3s ease-in-out;
}
.menu-btn.active {
    color: var(--black);
}
.scrolled .menu-btn {
    top: 9px;
}
@media (max-width: 767px){
    .menu-btn {
        font-size: 11px;
        left: 10px;
    }
}
.menu-btn .bar {
  background-color: var(--white);
  width: 45px;
  height: 2px;
  margin: 7px auto;
  transition: background-color 0.4s ease-in, transform 0.4s ease-in,
  width 0.4s ease-in;
      cursor: pointer;
}
@media (max-width: 767px){
    .menu-btn .bar {
        width: 35px;
    }
}
.menu-btn.active .bar{
   background-color: var(--black); 
}
.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: 100%;
    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;
}
.overlay-menu.opened  {
    height: 100%;
    width: 100%;
}
.aside-section {
    top: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    right: 0;
    background-color: var(--bgBurgerMenu);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: transform 0.5s linear;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.overlay-menu.opened .aside-section {
    transform: translateX(0%);
    transition: transform 0.4s ease-in-out;
}
@media (min-width: 768px){
    .aside-section .row-container {
        height:calc(100%);
    }
}
@media (max-width: 991px){
    .aside-section .row-container {
        margin:0;
    }
    .aside-section {
        position: fixed; 
        overflow-y: scroll;
    }
}

/*---- menu links ---------*/
.aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 15%;
    text-align: left;
    padding-left: 50px;
    font-weight: 500;
}
.aside-list li {
    margin-bottom: 20px;
}
@media (max-width: 991px){
    .aside-list {
        margin-left: 5%;
    }
}
@media (max-width: 767px){
    .aside-list {
        margin-top: 140px;
        padding-left: 30px;
        margin-left: 0;
    }
    .aside-list li {
        margin-bottom: 12px;
    }
}
.aside-anchor {
    padding: 10px 16px;
    border-radius: 0rem;
    color: var(--black);
    text-transform: uppercase;
    font-size: 32px;
    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;
    }
}
@media (max-width: 320px){
    .aside-list {
        padding-left: 20px;
    }
    .aside-anchor{
        padding: 5px 16px;
        font-size: 18px;
    }
}
@media screen and (min-height: 901px) and (max-width: 1199px){ 
    .aside-list li {
        margin-bottom: 20px;
    }
    .aside-anchor{
        padding: 8px 16px;
        font-size: 26px;
    }
}

@media screen and (max-height: 900px) {
    .aside-list li {
        margin-bottom: 20px;
    }
    .aside-anchor{
        padding: 8px 16px;
        font-size: 28px;
    }
}
@media screen and (max-height: 800px) {
    .aside-list li {
        margin-bottom: 16px;
    }
    .aside-anchor{
        font-size: 26px;
    }
}
@media screen and (max-height: 600px) {
    .aside-list li {
        margin-bottom: 14px;
    }
    .aside-anchor{
        padding: 5px 16px;
        font-size: 22px;
    }
}
@media (max-width: 575px){
   .aside-anchor{
        padding: 5px 16px;
        font-size: 20px;
    } 
}

.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 var(--mainColor);
}
.aside-anchor:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--mainColor);
    transition: all 0.3s;
    border-radius: 0rem;
    z-index: -1;
}
.aside-anchor:hover {
    color: var(--white)!important;
}
.aside-anchor:hover:before {
    width: 100%;
}
.menuContact{
    margin: 20px 20px 20% 0;
    text-align:left;
    font-size:18px;
}
.menuContact img{
    width: 24px;
    margin: 0 6px;
}
@media (max-width: 767px){
    .menuContact {
        margin: 80px 0px 0 30px;
        font-size: 16px;
    }
    .menuContact img{
        margin: 10px 6px 0;
    }
}
/* END OF NAVIOGATION
==========================*/


/*=== Carousel Slider
=====================================*/
.noSlider-holder {
    height:90px;
}
@media (max-width: 575px) {
    .noSlider-holder {
        height: 102px;
    }
}
#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;

}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/arrow-right.svg)!important;
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);

}
#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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0px 20px;
    background:rgba(0,0,0,0.001);
    font-size: 72px;
    font-family: var(--fontRoboto);
    color: var(--white);
    font-weight: 300;
}
@media screen and (max-width: 1399px) {
  .contentOverSlider {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .contentOverSlider {
    font-size: 50px;
  }
}

@media screen and (max-width: 991px) {
  .contentOverSlider {
    font-size: 40px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 575px) {
  .contentOverSlider {
    font-size: 34px;
    display:none;
  }
}
/*
.videoModal .modal-dialog {
  max-width: 900px;
}

.videoModal .btn-close {
  font-size: var(--fontGeologica);
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--white);
  background: var(--mainColor);
  width: 20px;
  height: 20px;
  border-radius: 0px;
  z-index: 3;
  display: flex;
  font-size: 20px;
  font-weight: 300;
  justify-content: center;
  align-items: center;
}
*/


/* END OF FIRST SCREEN  */






/* START OF SWIPER CAROUSELS 
====================================*/
.swiper-button-next,
.swiper-button-prev {
  top: 50% !important;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 25px;
  border-radius: 30px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-pagination {
  bottom: 0px !important;
}
.swiper-pagination-bullet {
    margin-right: 15px !important;
    width: 12px;
    height: 12px;
}
.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}
.swiper .swiper-text,
.box-text{
  width: 95%;
  margin: auto;
  text-align: left;
  font-size: 20px;
}
.swiper .swiper-text .title,
.box-text .title{
  font-size: 28px;
  margin: 20px 0px;
  text-align: left;
  font-weight:300;
}

/* END OF SWIPER CAROUSELS */

/* START OF FOOTER  
========================*/
.footer .h3-sm-header {
    font-size: 22px;
    font-weight: 400;
    padding: 0px 0 10px 0;
    margin:0px;
    text-align:left;
}
.footer {
    border-top: solid 1px var(--grey) !important;
    font-size:18px;
    padding-top: 3rem;
    text-align:left;
}
.row-border {
    border-top: solid 1px var(--grey) !important;
    margin-top: 3rem;
    padding-top: 3rem;
}
.footer-logo img {
  height: 50px;
  filter: brightness(0);
}
@media screen and (max-width: 767px) {
    .footer-logo {
        text-align:center
    }
    .footer-logo img {
       margin:30px auto 0;
       
    }
}

.mhte {
    font-size:16px;
    margin-top:10px;
}
.social a {
    display: inline-block;
    padding: 12px;
    margin:0 4px;
    transition: all 0.5s linear;
}
.social img{
  width: 24px;
  height: 24px;
}
.social a:hover {
  opacity: 0.6;
    transition: all 0.5s linear;
}
.footer-nav {
    text-align:center;
    font-size:16px;
}
.footer-nav a{
    color: var(--black);
    text-decoration: none;
    padding: 10px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-nav a:hover,
.footer-nav a:focus{
    color: var(--mainColor)!important;
    text-decoration: none;
}
.copyright {
    padding-top: 3rem;
    padding-bottom:10px;
    font-size: 14px;
    line-height: 1.2;
}
.copyright a {
    text-decoration: none;
    color: var(--black);
}
.copyright a:hover {
    text-decoration:underline;
}
/* 
====END OF FOOTER =========== */



/* START SCROLL UP  */
#progress {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 5px);
  width: calc(100% - 5px);
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#progress-value img {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(20%) saturate(354%)
    hue-rotate(359deg) brightness(90%) contrast(87%);
}

/* START OF BREADCRUMB 
====================*/
.breadcrumb {
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb {
    color: var(--mainColor);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 300;
}
.breadcrumb li+li:before {
    padding: 8px;
    color:  var(--mainColor);
    content: "/";
    font-size: 12px;
    font-weight: 300;
}
.breadcrumb a {
    color: var(--black);

    text-decoration: none;
    font-weight: 300;
 }
.breadcrumb a:hover {
    color: var(--black);
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .breadcrumb {
        font-size:14px;
    }    
} 
/* END OF BREADCRUMB */


/*CONTENT
======================== */

.intro-text h1{
    text-align:center;
}
.bigText {
  font-size: 34px;
  font-weight: 200;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 991px) {
  .bigText {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
 .bigText {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
 .bigText {
    font-size: 24px;
  }
}
.rooms-carousel h2{
    text-align:center;
}

@media screen and (min-width: 768px) {
     .image-box {
        transform-origin: left; /*bottom left*/
    }
}
@media screen and (max-width: 991px) {
    .image-box {
        margin-bottom:30px;
    }
}
.img-holder {
    position:relative;
    overflow: hidden;
}
.image-box img {
  transition: transform .5s;
}
.image-box:hover img {
  transform: scale(1.09, 1.09);
  filter: brightness(70%);

}
.room-details.inline {
    padding-bottom:15px;
}
@media screen and (min-width: 768px) {
    .room-details.inline {
      display:flex;
      justify-content: center;
    }
    .room-details.inline div {
       padding:0 10px; 
    }
    .room-details.inline div:not(:last-child){
        border-right:solid 1px var(--grey);
    }
}
.section-text-only,
.section-text-only h2{
    text-align:center;
}

/*WHY BOOK
==========================*/
.counter {
    counter-reset: num;
}
.counter div {
    padding-top:15px;
    padding-bottom:15px;
}
.counter div:before{
  color: var(--mainColor);
  content: counter(num)". ";
  counter-increment: num;
  font-size: 26px;
}
@media (min-width: 576px) {
    .counter {
        font-size: 30px;
    }
    .counter div {
        padding-top:10px;
        padding-bottom:10px;
    }
    .counter div:before{
      font-size: 42px;
    }
}
/*REVIEWS & INSTAGRAM
==========================*/
.instagram{
    position:relative;
}
.instagram h2{
    position:absolute;
    top:40px;
    left:40px;
    z-index:2;
    color:10px 0;
}
.instagram h2,
.instagram .section-subtitle{
    color: var(--white)!important;
}
.instagram img{
    filter: brightness(70%);
}

.testimonials h2 {
   text-align:center; 
}
.testimonialsSwiper  {
    padding-top:20px;
    padding-bottom:40px;
}
.review-item .rTitle{
    font-weight:400;
    margin-bottom:15px;
}
.review-item .rText{
    font-style:italic;
}
.review-item .rName{
    font-weight:100;
    text-transform: uppercase;
    font-size:18px;
}

.awardsSwiper {
    padding-bottom:40px;
}
.awards-section h2{
    text-align:center;
}

.room-gallery h2{
    text-align:center;
}

/*LISTS
==========================*/
.TwoColsList {
  column-count: 2;
 list-style: none;
}

.TwoColsList li {
  margin-bottom: 7px;
}

@media screen and (max-width: 575px) {
  .TwoColsList {
    column-count: 1;
  }
}
/*GALLERY
==========================*/
.expand-icon:hover a:after {
    content: "";
    position: absolute;
    background: url(/images/expand.svg) no-repeat center center;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 50px;
}
.gallery-page a {
    transition: var(--transition3s);
    display:block;
    
}
.gallery-page a:hover{
  filter: brightness(0.7);
}

/*FORM
==========================*/
/* START OF NEWSLETTER  
----------------------------*/
.contactForm {
       font-size: 18px;
}
.contactForm .form-control {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--black);
  font-size: 18px;
  font-weight:200;
}
.newsletter {
  color: var(--black);
   font-size: 16px;
}
.newsletter form .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  padding: 12px 15px;
  color: var(--black);
  font-size: 16px;
  font-weight:200;
}
.newsletter form .form-control::placeholder {
  color: var(--black);
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  text-align: left; 
  font-size:12px;    
}
.field-validation-error:empty {
	display: none;
}  

.asterisk span {
  display: inline;
  font-size: 14px;
}
.form-agree label {
	display:inline;
}
.form-agree .field-validation-error {
	display: inline-block;
}

.form-agree a {
    text-decoration:underline;
    padding-bottom: 0px;
}
.form-agree a:hover {
    text-decoration:none;
}

input[type="date"]:not(.has-value):before{
  content: attr(placeholder);
}

#json-msg {
    padding-top:20px;
}
.status-failure,
.status-busy {
    margin:6px 0 0 0;
}
.status-busy img{
   height: 10px;
}

/*Privacy Policy
============================*/

.wordbreak a{
     word-break: break-word;  
}
.privacyList ul{
    margin: 0 0 15px 20px;
}
.privacyList ul ul{
    margin:0 0 15px 40px;
}
.privacyList li{
    list-style: disc;
}
.privacyList ul ul li{
    list-style: circle;
}
@media (min-width: 768px) {
 .wordbreak h2{
     font-size:2rem;
 }   
}


/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
    max-width:740px;
  }
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  padding: 20px;
  border-radius: 0px;
  border: none;
  text-align: left;
}
#popupModal .modal-content.padding{
      padding: 0px;
}
#popupModal .modal-content.padding .modal-body{
      padding: 0px;
}
.modal .btn-close {
  position: absolute;
  width: 2em;
  height: 2em;
  right: 0px;
  top: 0px;
  opacity: .8;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
    .modal .modal-dialog {
        max-width:400px;
        margin-left: auto;
        margin-right: auto;
    }
}
.modal .btn-holder {
    position:relative;
    z-index:2;
}

