/* FONTS  */
/*@font-face {
  font-family: 'Zeitung Pro Light';
  src: url("../fonts/ZeitungPro-Light.eot");
  src: url("../fonts/ZeitungPro-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ZeitungPro-Light.woff2") format("woff2"), url("../fonts/ZeitungPro-Light.woff") format("woff"), url("../fonts/ZeitungPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}*/

@font-face {
  font-family: 'Zeitung Pro Regular';
  src: url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.eot");
  src: url("/fonts/ZeitungPro-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.woff2") format("woff2"), url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.woff") format("woff"), url("/fonts/Zeitung_Pro_Regular/ZeitungPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zeitung Pro Bold';
  src: url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.eot");
  src: url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.woff2") format("woff2"), url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.woff") format("woff"), url("/fonts/Zeitung_Pro_Bold/ZeitungPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*
@font-face {
  font-family: 'Zeitung Pro Black';
  src: url("../fonts/ZeitungPro-Black.eot");
  src: url("../fonts/ZeitungPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/ZeitungPro-Black.woff2") format("woff2"), url("../fonts/ZeitungPro-Black.woff") format("woff"), url("../fonts/ZeitungPro-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}*/

/* VARIABLES */
:root {
  --fontGR: "Inter", sans-serif;
  --fontRegular: 'Zeitung Pro Regular';
  --fontBold: 'Zeitung Pro Bold';
 /* --fontBlack: 'Zeitung Pro Black';
  --fontLight: 'Zeitung Pro Light';*/
  --blue-color: #29256a;
  --white-color: #fff;
  --light-white: #f1f1f2;
  --white-minOpacity: rgba(241,241,242, 0.5);
  --rotate90degLeft: rotate(-90deg);
}

/* BASIC SETTINGS  */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

button:focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

ul li {
  list-style: none;
}
h1, h2, h3, .h1, .h2 {
  text-transform: uppercase;
  font-family: var(--fontRegular);
  font-weight: 400;
  color: var(--blue-color);
  letter-spacing: 5px;
    line-height: 1.27;
}
.el h1, .el h2, .el h3, .el .h1, .el .h2 {
    font-family: var(--fontGR);
}
h1, .h1 {
  font-size: 64px;
  margin-bottom: 70px;
}
h2, .h2 {
  font-size: 54px;
  margin-bottom: 40px;
}
h3 {
  font-family: var(--fontBold);
  font-size: 25px;
  margin-bottom: 25px;
}

.el h3 {
    font-weight: 700;
}

@media screen and (max-width: 1199px) {
  h1, .h1 {
    margin-bottom: 38px;
    font-size: 46px;
  } 
  h2, .h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
  h3, .h3 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 35px;
    margin-bottom: 1.5rem;
  }
  h2, .h2 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 480px) { 
    h1, h2, h3, .h1, .h2 {
      letter-spacing: 0px;
    }
}

@media screen and (max-width: 320px) {
    h1, .h1 {
    font-size: 28px;
  }
  h2, .h2 {
    font-size: 24px;
  }
}


body {
  font-family: var(--fontRegular);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.85;
  color: var(--blue-color);
  text-align: left;
  letter-spacing: 1.5px;

}

body.el {
    font-family: var(--fontGR);
    font-size: 20px;
}

body.intro {
  background: #fff url(../images/background-big.png) no-repeat;
  background-position-x: 700px;
  background-position-y: 0px;
}
@media screen and (max-width: 1199px) {
  body.intro {
    background-position-x: 500px;
    background-position-y: -140px;
  }
}

@media screen and (max-width: 991px) {
  body.intro {
    background-position-x: 300px;
    background-position-y: -700px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
    line-height: 1.5;
  }
  body.intro {
    background-size: 800px;
    background-position-x: 300px;
    background-position-y: 0px;
  }
}

@media screen and (max-width: 480px) {
  body.intro {
    background-position-x: 20px;
  }
}
@media (prefers-color-scheme: light) {
  body {
    background: var(--white-color);
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: var(--white-color);
  }

}


.white-color {
          color: var(--white-color);
}
a {
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}

.bookBtn {
  font-family: var(--fontBold);
  font-size: 16px;
  color: var(--blue-color);
 /* text-transform: lowercase;*/
  letter-spacing: 1px;
}

.el .bookBtn {
    font-family: var(--fontGR);
    font-weight: 700;
}

.discover {
  position: absolute;
  bottom: 45px;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--blue-color);
  margin: 0px -40px;
  -webkit-transform: var(--rotate90degLeft);
          transform: var(--rotate90degLeft);
          
background-color: var(--blue-color);
color: var(--white-color);
line-height: 1.2;
padding: 6px 10px;
margin: 10px -49px;
}
.discover:hover {
    color: var(--white-color);
}
@media screen and (max-width: 1199px) {
  .discover {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .discover {
    bottom: -40px !important;
    right: 20px;
    margin: 0px 0px;
    -webkit-transform: none;
            transform: none;
  }
}
/*
@media screen and (max-width: 575px) {
    .discover {
        position: relative;
        text-align: right;
        bottom: unset!important;
        right: unset!important;    
        display:block;
    }
}*/

.btnlink{
    background-color: var(--blue-color);
    border: 0px;
    padding: 8px 22px;
    vertical-align: inherit;
    transition: all 0.3s ease 0s;
    margin-top: 0!important;
    color: var(--white-color);
    border-radius: 0;
    line-height: normal;
    font-size: 18px;
}
.btnlink:hover,
.btnlink:focus{
        color: var(--white-color);
}
.marginTop-offset {
  margin-top: 120px;
}
.paddingTop-offset {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .marginTop-offset {
    margin-top: 80px;
  }
  .paddingTop-offset {
    padding-top: 80px;
  }
}

.rightHeading {
  padding-right: 100px;
}

.leftHeading {
  padding-left: 100px;
}

@media screen and (max-width: 1199px) {
  .rightHeading {
    padding-right: 80px;
  }
  .leftHeading {
    padding-left: 80px;
  }
}

@media screen and (max-width: 991px) {
  .rightHeading {
    padding-right: 60px;
  }
  .leftHeading {
    padding-left: 60px;
  }
}

@media screen and (max-width: 575px) {
  .rightHeading {
    padding-right: 10px;
  }
  .leftHeading {
    padding-left: 10px;
  }
}

.main-navbar {
   padding: 15px 30px;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
    .main-navbar {
        padding: 15px 15px;
    }
}



.main-navbar.displayNav {
  opacity: 1;
  visibility: visible;
}

.main-navbar .hamburger {
  width: 35px;
  height: 15px;
  background: none;
  position: relative;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  z-index: 100;
}

.main-navbar .hamburger::after,
.main-navbar .hamburger::before {
  content: "";
  width: 100%;
  height: inherit;
  background: url(../images/menu-wave.png) no-repeat;
  display: block;
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

.main-navbar .close.hamburger::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.main-navbar .close.hamburger::after {
  -webkit-transform: translate(6px, -15px) rotate(-45deg);
  transform: translate(6px, -15px) rotate(-45deg);
}

.main-navbar .hamburger.close {
  opacity: 1 !important;
}

.overlay-nav {
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: var(--light-white);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.4s ease-in, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.4s ease-in;
  transition: transform 0.5s ease-in-out, opacity 0.4s ease-in, -webkit-transform 0.5s ease-in-out;
}

.overlay-nav.reveal-nav {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}

.overlay-nav .menu {
  list-style: none;
}

.overlay-nav .menu-item {
  color: var(--blue-color);
  text-decoration: none;
  font-size: 25px;
  opacity: 0;
  -webkit-transform: translate(-20em);
  transform: translate(-20em);
  display: block;
  text-transform: uppercase;
  -webkit-transition: opacity 0.5s ease-in, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.5s ease-in, -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in;
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in, -webkit-transform 0.8s ease-in-out;
}

.overlay-nav .menu li + li {
  margin-top: 1em;
}

.overlay-nav .reveal-items .menu-item {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.overlay-nav .reveal-items li:nth-child(1) .menu-item {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.overlay-nav.reveal-items li:nth-child(2) .menu-item {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.overlay-nav .reveal-items li:nth-child(3) .menu-item {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.overlay-nav .reveal-items li:nth-child(4) .menu-item {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.overlay-nav .reveal-items li:nth-child(5) .menu-item {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}


.header {
    padding: 15px 30px;
    position:absolute;
    width:100%;
    top:0px;
}
@media screen and (max-width: 767px) {
    .header {
        padding: 15px 15px;
    }
}
.languages {
    font-family: var(--fontRegular);
    position: absolute;
    top: 35px;
    left: 50px;  
}
.languages a {
  font-size: 18px;
  color: var(--blue-color);
}

.header .header_btn {
  position: relative;
      position: absolute;
    right: 110px;
    top: 32px;
    padding:0px 20px;
    display: flex;
}
.header_btn .bookBtn {
    /*line-height:normal;*/
    display: block;
    margin: 20px;
}
@media screen and (max-width: 767px) {
    .header .header_btn {
        top: 30px;
        right: 80px;
        line-height: 1.55; /*1.85*/
    } 
    .header_btn .bookBtn {
      font-size: 14px;
    }
}
@media screen and (max-width: 575px) {
    .header .header_btn {
        flex-direction: column;
        top: 20px;
    }
    .header_btn .bookBtn {
    margin: 7px ;
    }
}
/*
.header .header_btn::after, 
.header .header_btn::before {
  position: absolute;
  content: '';
  height: 10px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 36px;
  text-align: center;
  background: url(../images/menu-wave.png) no-repeat;
  -webkit-transition: .5s;
  transition: .5s;
}

.header .header_btn::before {
  top: 0px;
}
.header .header_btn::after {
  bottom: -10px;
}
*/

.dropBookingHotels .dropdown-menu{
    right: 0px!important;
    float: right!important;
    left: -12px!important;
    border: 0px;
    min-width: 170px;
    width: 170px;
    border-radius:0;
}
.dropBookingHotels .dropdown-menu .dropdown-item {
        white-space: unset;
    line-height: 1.5em;
    padding: .5rem .5rem;
    text-align: left;
    color: var(--blue-color);

}
.dropBookingHotels .dropdown-menu .dropdown-item:focus,
.dropBookingHotels .dropdown-menu .dropdown-item:active{
    background:none;   
}

.header .bigLogo {
    width: 85px;
}
.miniLogo {
    width: 74px;
}
@media screen and (max-width: 767px) {
  .header .bigLogo {
    width: 65px;
  }
}


/* INTRO CAROUSEL SLIDER
============================== */
/*
.introSection .item {
    padding: 0px 40px;
}
.introSection .intro-box {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: var(--white-color);
}
.introSection .title {
    font-size: 115px;
    text-transform: uppercase;
    font-family: var(--fontRegular);
    font-weight: 400;
    color: var(--blue-color);
    letter-spacing: 5px;
     line-height:1;
    line-height: 65px;
    height: 85px;
    margin-bottom: -1px;
}
.introSection .title a{
    display:inline-block;
    color: var(--blue-color);
}
.introSection .title a::first-letter { margin-left:-5px;}

.introCarousel.owl-carousel .owl-nav .owl-prev,
.introCarousel.owl-carousel .owl-nav .owl-next {
    background-size: 100% !important;
    height: 75px;
    width: 35px;
    position: absolute;
    top: 45%;
}
.introCarousel.owl-carousel .owl-nav .owl-prev {
    background: url(../images/white-arrow.png) no-repeat;
    left: -2%;
}
.introCarousel.owl-carousel .owl-nav .owl-next {
    background: url(../images/white-right-arrow.png) no-repeat;
    right: -2%;
}

@media screen and (min-width: 1400px) {
    .introSection {
        margin-top: -50px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev,
    .introCarousel.owl-carousel .owl-nav .owl-next {
        height: 85px;
        width: 40px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev {
        left: -10%;
    }
    .introCarousel.owl-carousel .owl-nav .owl-next {
        right: -10%;
    }  
}
@media screen and (max-width: 1199px) {
    .introSection .item {
      padding: 0px 30px;
    }
    .introSection .title {
        font-size: 82px;
        line-height: 47px;
        height: 61px;
    }
}
@media screen and (max-width: 767px) {
    .introSection .item {
      padding: 0px 25px;
    }
    .introSection .title {
        font-size: 60px;
        line-height: 36px;
        height: 46px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev {
        left: -25px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-next {
        right: -25px;
    }    
}
@media screen and (max-width: 575px) {
    .introSection .title {
        font-size: 35px;
        line-height: 20px;
        height: 26px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev,
    .introCarousel.owl-carousel .owl-nav .owl-next {
        height: 55px;
        width: 25px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-prev {
        left: -10px;
    }
    .introCarousel.owl-carousel .owl-nav .owl-next {
        right: -10px;
    } 
}
*/

/*BOOKING FORM
================================= */
.bookingRow form {
  color: var(--blue-color);
  font-family: var(--fontBold);
  font-size: 22px;
  border: none;
}

.el .bookingRow form {
    font-family: var(--fontGR);
    font-weight: 700;
}

.bookingRow form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none !important;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0 !important;
  background: transparent;
  color: var(--blue-color);
  font-size: 22px;
  padding-left: 10px;
  display: none !important;
  border: none;
  cursor: pointer;
}

.bookingRow .field {
  cursor: pointer;
}

.bookingRow label {
  cursor: pointer;
}

.bookingRow .rotated-field {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.bookingRow .rotated-field input {
  display: none;
}

.bookingRow .hover-removeRotation select {
  display: inline-block !important;
}

.bookingRow .hover-removeRotation input {
  display: inline-block !important;
}

.bookingRow .hover-removeRotation {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* EXPERIENCE INTRO SECTION
================================ */
.experience {
  background: url(../images/background-waves.png) no-repeat;
/*  background-position-x: right;*/
  background-position-x: left;
  background-position-y: 80%;
}
.experience .experienceText {
  background-color: var(--white-color);
  width: 400px;
  padding-bottom: 10px;
  position: absolute;
  text-align: left;
  top: -10%;
  right: 0%;
  z-index:1;
padding: 0 20px 12px 20px;
}
.experience .experienceText p:last-child {
    margin-bottom:0px;
}
.experience .discover {
  bottom: 45px;
  right:-30px;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .experience {
      background-size:120px;
    /*background-position-y: 0%;*/
  }
  .experience .discover {
       /* right:-15px;*/
           right: -14px;
    bottom: 37px;
  }
}

@media screen and (max-width: 991px) {
  .experience .experienceText {
    top: -3%;
  }
}
@media screen and (max-width: 767px) {
    .experience .discover {
        right:15px;
    }
 }

@media screen and (max-width: 575px) {
  .experience .experienceText {
    position: relative;
    padding: 10px;
    left: 0;
    top: 0;
    width: auto;
  }
  .experience .container {
    text-align: left !important;
  }
  .experience {
    background-size: 80px;
    background-position-y: 25%;
  }
}

.joinHospitality {
  background: url(../images/background-waves.png) no-repeat;
  background-position-x: left;
  background-position-y: 60%;
}

.joinHospitality .joinHospitality-box {
  background-color: var(--white-minOpacity);
  color: var(--blue-color);
  padding: 20px 15px;
  position: absolute;
  bottom: 30px;
  left: -45px;
  width: 300px;
  -webkit-transition: .5s linear;
  transition: .5s linear;
  text-align: left;
}

.joinHospitality .item {
  position: relative;
  cursor: pointer;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}

.joinHospitality .item:hover .joinHospitality-box {
  background-color: var(--blue-color);
  color: var(--white-color);
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.joinHospitality .joinHospitality-box .title {
  font-family: var(--fontBold);
  font-size: 22px;
  line-height: 30px;
}
.el .joinHospitality .joinHospitality-box .title {
    font-family: var(--fontGR);
}
.joinHospitality .joinHospitality-box h3{
  text-transform: capitalize;
  letter-spacing: 1.5px;
}

.joinHospitality .item:hover,
.joinHospitality a:hover .joinHospitality-box h3{
      color: var(--white-color);
}
@media screen and (max-width: 1199px) {
    .joinHospitality {
    background-size: 120px;
  }
}
@media screen and (max-width: 991px) {
  .joinHospitality .joinHospitality-box .title {
    font-family: var(--fontBold);
    font-size: 18px;
    line-height: 26px;
  }
  .joinHospitality .joinHospitality-box {
    padding: 20px 10px;
    left: -25px;
    width: 235px;
  }
  .joinHospitality {
  /*  background-position-y: 5%;
    background-position-x: right;*/
  }
}

@media screen and (max-width: 575px) {
  .joinHospitality {
    /*background-position-y: 0%;*/
    background-size: 80px;
  }
  .joinHospitality .col-12 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .joinHospitality .item {
    margin: 0 !important;
    margin-bottom: 3rem !important;
  }
  .joinHospitality .joinHospitality-box {
    left: 0px;
    width: 280px;
  }
}
@media screen and (max-width: 320px) {
   .joinHospitality .joinHospitality-box {
       width: 95%;
   }
}
.hospitalityCategories {
  padding-top: 120px;
  background: url(../images/background-gold.png) no-repeat;
  background-position-x: right;
  background-position-y: top;
}

.hospitalityCategories .hospitalityCategoriesLogo {
  width: 160px;
}
@media screen and (max-width: 1199px) {
    .hospitalityCategories {
         background-size: 160px;
    }
    .hospitalityCategories .hospitalityCategoriesLogo {
      width: 140px;
    }
}
@media screen and (max-width: 991px) {
  .hospitalityCategories {
        padding-top: 80px;
        background-size: 120px;
        background-position-y: 60px;
  }
  .hospitalityCategories .hospitalityCategoriesLogo {
    width: 120px;
  }
}

@media screen and (max-width: 575px) {
  .hospitalityCategories {
    background-size: 80px;
  }
}

/* INTRO Destination Tabs
================================= */
.discoverCrete {
  padding-top: 120px;
  overflow-x: hidden;
  background: url(../images/backgroundWaves-White.png) no-repeat right top;
}
.discoverCrete .container {
  padding-top: 60px;
}

#tabs .nav-tabs .nav-link {
  color: var(--blue-color);
  font-size: 20px;
  position: relative;
  z-index: 10;
  border: none;
  padding: 10px 20px;
  -webkit-transform: var(--rotate90degLeft);
          transform: var(--rotate90degLeft);
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}
#tabs .nav-tabs {
  border: none;
}
#tabs .nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
    background: none;
    border: none;    
}
#tabs .fade {
  -webkit-transition: opacity .45s linear;
  transition: opacity .45s linear;
}
.tab-content .discoverCrete-box {
      position: absolute;
      text-align: left;
      background: white;
      z-index: 2;
      padding:15px 20px;
}
.discoverCrete .discover {
  bottom: 61px;
  right: -45px;
}

@media screen and (min-width:992px) {
    #tabs .nav-tabs .nav-item.show .nav-link, 
    .nav-tabs .nav-link.active {
        opacity: 0;
        visibility: hidden;
    }
    .tab-content .discoverCrete-box {
      top: 0px;
      width: 320px;
      font-size: 18px;
    }
    .tab-content .discoverCrete-box p:last-child {
      margin: 0;
    }

    .tab-content .tab-pane:nth-child(1) .discoverCrete-box {
        left: calc(0% - 20px);
    }
    .tab-content .tab-pane:nth-child(2) .discoverCrete-box {
        left: calc(25% - 2px);
    }
    .tab-content .tab-pane:nth-child(3) .discoverCrete-box {
        right: calc(25% - 20px);
    }
    .tab-content .tab-pane:nth-child(4) .discoverCrete-box {
        right: calc(0% - 20px);
    }  
}
@media screen and (min-width: 1400px) {
  .tab-content .discoverCrete-box {
    top: 0px;
    width: 420px;
  }
  .tab-content .tab-pane:nth-child(1) .discoverCrete-box {
    left: calc(0% - 80px);
  }
    .tab-content .tab-pane:nth-child(2) .discoverCrete-box {
        left: calc(25% - 80px);
    }
  .tab-content .tab-pane:nth-child(3) .discoverCrete-box {
    right: calc(25% - 80px);
  }
  .tab-content .tab-pane:nth-child(4) .discoverCrete-box {
    right: calc(0% - 80px);
  }  
}

@media screen and (max-width: 1199px) {
  .discoverCrete .discover {
    bottom: 52px;
    right:-25px;
  }
  .discoverCrete {
    background-size: 400px;
  }
}
@media screen and (max-width: 767px) {
    .discoverCrete .discover {
    right:0px;
    bottom:0px!important;
  } 
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #tabs .discoverCrete-box {
    width: 270px;
    font-size: 16px;
    line-height: 30px;
  }
  .tab-content .tab-pane:nth-child(1) .discoverCrete-box {
    left: calc(0%);
  }
    .tab-content .tab-pane:nth-child(2) .discoverCrete-box {
        left: calc(25%);
    }
  .tab-content .tab-pane:nth-child(3) .discoverCrete-box {
    right: calc(25%);
  }
  .tab-content .tab-pane:nth-child(4) .discoverCrete-box {
    right: calc(0%);
  } 
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  #tabs .discoverCrete-box {
    width: 280px;
    font-size: 14px;
    line-height: 24px;
    bottom: 0px;
    top: auto;
     left: 0;
  }
  #tabs .nav-tabs .nav-link {
    font-size: 18px;
    padding: 10px 12px;
  }
  #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    opacity: 1;
    visibility: visible;
  }
  #tabs .discoverCrete-box {
    width: auto;
    font-size: 16px;
    line-height: 32px;
    position: static;
    padding: 10px;
  }
  #tabs .nav-tabs .nav-link {
    font-size: 16px;
    padding: 0px;
  }
}

@media screen and (max-width: 575px) {
  .discoverCrete {
    padding-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  #tabs .nav-tabs .nav-link {
    font-size: 14px;
    line-height: 16px;
    width: 25%;
  }
  #tabs .nav {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

/* END INTRO Destination Tabs
================================= */


.ourHotels {
  background: url(../images/background-waves.png) no-repeat top right;
}

.ourHotels .container {
  padding-top: 30px;
}

.ourHotels .ourHotelsLogo {
  width: 300px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1199px) {
    .ourHotels {
    background-size: 120px;
  }
}
@media screen and (max-width: 991px) {
  .ourHotels .ourHotelsLogo {
    width: 250px;
  }
}

@media screen and (max-width: 575px) {
  .ourHotels {
    background-size: 80px;
  }
}

.magazine .magazine-box {
  background-color: var(--blue-color);
  padding: 12px 20px;
  position: absolute;
  bottom: 30px;
  left: -20px;
  width: 85%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.magazine .item {
  position: relative;
  cursor: pointer;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}

.magazine .item:hover .magazine-box {
  opacity: 1;
  visibility: visible;
  background-color: var(--blue-color);
  padding: 12px 20px;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.magazine .magazine-box .title {
  font-family: var(--fontRegular);
  color: var(--white-color);
  font-size: 32px;
}

.el .magazine .magazine-box .title {
    font-family: var(--fontGR);
}

.magazine .magazine-box .title span {
  display: block;
  font-size: 21px;
  line-height: 32px;
  margin-top: 10px;
}

@media screen and (max-width: 1199px) {
  .magazine .magazine-box {
    padding: 10px 18px;
  }
  .magazine .magazine-box .title {
    font-size: 24px;
  }
  .magazine .magazine-box .title span {
    font-size: 18px;
    line-height: 28px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .magazine .magazine-box {
    padding: 10px 15px;
  }
  .magazine .magazine-box .title {
    font-size: 20px;
  }
  .magazine .magazine-box .title span {
    font-size: 16px;
    line-height: 24px;
  }
}

/* NEWSLETTER 
================================ */
.newsletter #theFormNewsletter {
  background: url(/images/images_sections/pool-newsletter.jpg) no-repeat center center;
  color: var(--white-color);
}
.newsletterform {
    padding-top:100px;
    padding-bottom:20px;
    position:relative;
}
.newsletter .form-group {
  background-color: var(--white-minOpacity);
  padding: 10px 15px;
  color: var(--white-color);

}
.newsletter .form-control {
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--white-color);
  color: var(--white-color);
  font-size:18px;
}
.newsletter .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.newsletter label {
  font-family: var(--fontBold);
  line-height: unset;
  padding-right:10px;
  min-width:110px;
  font-weight: bold;
  margin-bottom:0;
}
.el .newsletter label {
    font-family: var(--fontGR);
    font-weight: 700;
}
@media screen and (min-width: 576px) {
    .newsletter .form-group {
        width: 450px;
    }
    .newsletter .submit {
        position: absolute;
        bottom: 50px;
        right:2px;
    }
}
.newsletter .submit .sendBtn{
    background-color: var(--blue-color);
    padding: 12px 15px;
    color: var(--white-color);
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius:0;
}
.newsletter .form-agree,
.newsletter .form-agree a{
    color: var(--white-color);
}
@media screen and (max-width: 767px) {
  .newsletter label,
  .newsletter .sendBtn {
    font-size: 16px!important;
  }
  .newsletter .form-group {
    width: 300px;
  }
}

@media screen and (max-width: 575px) {
  .newsletter .form-group {
    padding: 10px 8px;
    width: 100%;
  }
  .newsletter .sendBtn {
    top: 10px;
    font-size: 14px;
    margin-top:10px;
    margin-left:10px;
  }
  .newsletter label{
    font-size: 14px!important;
  }
}


.footer .footerLogo {
    width:110px;
}

.footer .footerRightSide {
  padding-top: 80px;
  border-top: 10px solid var(--blue-color);
}

.footer .footerContactDetails p {
  font-family: var(--fontRegular);
  font-size: 17px;
  line-height: 26px;
  color: var(--blue-color);
  margin-bottom: 20px;
}

.el .footer .footerContactDetails p {
    font-family: var(--fontGR);
}

.footer .footerContactDetails span {
  font-family: var(--fontBold);
  line-height: 24px;
}

.el .footer .footerContactDetails span {
    font-family: var(--fontGR);
    font-weight: 700;
}

.footer .footerContactDetails a{
  color: var(--blue-color);
}

.footer .footerSocial img {
  width: 30px;
}

.footer .bottomMenu li {
  line-height: 26px;
  margin-bottom: 15px;
}

.footer .bottomMenu a {
  color: var(--blue-color);
  font-family: var(--fontRegular);
  font-size: 17px;
  text-transform: uppercase;
}

.el .footer .bottomMenu a {
    font-family: var(--fontGR);
}

@media screen and (max-width: 991px) {
  .footer .bottomMenu li {
    line-height: 20px;
    margin-bottom: 12px;
  }
  .footer .bottomMenu a {
    font-size: 14px;
  }
  .footer .footerContactDetails p {
    font-size: 14px;
    line-height: 24px;
  }
  .footer .footerSocial img {
    width: 28px;
  }
  .footer .footerRightSide {
    padding-top: 50px;
  }
  .footer .footerLogo {
    width: 90px;
  }
}
.copyright {
  font-family: var(--fontRegular);
  font-size: 14px;
  line-height: 26px;
  color: var(--blue-color);
  margin-bottom: 20px;  
}
.el .copyright {
    font-family: var(--fontGR);
}
.copyright a{
  color: var(--blue-color);
}


.magazineCarousel.owl-carousel.owl-drag .owl-item {
  padding: 0px 10px;
}

.magazineCarousel.owl-carousel .owl-nav .owl-prev {
  background: url(../images/left-arrow.png) no-repeat;
  left: -3%;
}

.magazineCarousel.owl-carousel .owl-nav .owl-next {
  background: url(../images/right-arrow.png) no-repeat;
  right: -4%;
}

.magazineCarousel.owl-carousel .owl-nav .owl-prev,
.magazineCarousel.owl-carousel .owl-nav .owl-next {
  background-size: 35px;
  height: 75px;
  width: 35px;
  position: absolute;
  top: 40%;
}

@media screen and (min-width: 1400px) {
  .magazineCarousel.owl-carousel .owl-nav .owl-prev,
  .magazineCarousel.owl-carousel .owl-nav .owl-next {
    background-size: 40px;
    height: 90px;
    width: 45px;
  }
  .magazineCarousel.owl-carousel .owl-nav .owl-prev {
    left: -10%;
  }
  .magazineCarousel.owl-carousel .owl-nav .owl-next {
    right: -10%;
  }
}

@media screen and (max-width: 1199px) {
  .magazineCarousel.owl-carousel .owl-nav .owl-prev {
    left: -2%;
  }
  .magazineCarousel.owl-carousel .owl-nav .owl-next {
    right: -4%;
  }
}

@media screen and (max-width: 991px) {
  .magazineCarousel.owl-carousel .owl-nav .owl-next {
    right: -4%;
  }
  .magazineCarousel.owl-carousel .owl-nav .owl-prev {
    left: -4%;
  }
}

@media screen and (max-width: 767px) {
  .magazineCarousel.owl-carousel .owl-nav {
    text-align: center;
  }
  .magazineCarousel.owl-carousel .owl-nav .owl-prev,
  .magazineCarousel.owl-carousel .owl-nav .owl-next {
 /*   position: relative;
    top: 20px;*/
    background-size: 25px;
    height: 60px;
    width: 30px;
  }
  .magazineCarousel.owl-carousel .owl-nav .owl-prev {
    left: -30px;
  }
  .magazineCarousel.owl-carousel .owl-nav .owl-next {
    right: -30px;
  }
}
@media screen and (max-width: 575px) {
    .magazineCarousel {
        padding-left:30px;
        padding-right:30px;
    }
      .magazineCarousel.owl-carousel .owl-nav .owl-prev {
        left: 0px;
      }
      .magazineCarousel.owl-carousel .owl-nav .owl-next {
        right: 0px;
      }
    
}




/*SCROLL UP */
.toTop {
  text-align: right;
}

a.scrollup, a:hover.scrollup, a.scrollup::before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background: url(../images/scrollup.png) no-repeat center center !important;
  bottom: 25px;
  position: fixed;
  right: 25px;
  text-indent: -9999px;
  text-decoration: none;
  padding: 0px 0px;
  color: var(--blue-color);
  z-index: 10;
}


/*Top Media - Inner Page
============================ */
/* TOP CAROUSEL 
========================= */



.noTopMedia {
    height:75px;
}
.topmedia-carousel {
  margin-top: 155px;
}
@media (max-width: 767px) {
    .topmedia-carousel {
      margin-top: 125px;
    }
}
.topmedia-carousel .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity .75s ease-in-out;  
}
.topmedia-carousel .carousel-fade .carousel-item.active {
    opacity: 1;
}
.topmedia-carousel .carousel-item img{
  display: block;
  min-width: 100%;
  width: auto;
  height: auto;
}
.topmedia-carousel .owl-carousel .owl-nav .owl-prev,
.topmedia-carousel .owl-carousel .owl-nav .owl-next {
    background-size: 100% !important;
    height: 75px;
    width: 35px;
    position: absolute;
    top: 45%;
}
.topmedia-carousel .owl-carousel .owl-nav .owl-prev {
    background: url(../images/white-arrow.png) no-repeat;
    left: 2%;
}
.topmedia-carousel .owl-carousel .owl-nav .owl-next {
    background: url(../images/white-right-arrow.png) no-repeat;
    right: 2%;
}

@media screen and (min-width: 1400px) {
    .topmedia-carousel .owl-carousel .owl-nav .owl-prev,
    .topmedia-carousel .owl-carousel .owl-nav .owl-next {
        height: 85px;
        width: 40px;
    }
}

@media screen and (max-width: 575px) {
    .topmedia-carousel .owl-carousel .owl-nav .owl-prev,
    .topmedia-carousel .owl-carousel .owl-nav .owl-next {
        height: 55px;
        width: 25px;
    }

}


/*
.topMedia {
  height: calc(100vh - 155px);
  position: relative;
  margin-top: 155px;
}
@media (max-width: 767px) {
	.topMedia {
		height:350px;
		margin-top: 125px;
	}
}
@media (max-width: 575px) {
	.topMedia {
		height:250px;
		margin-top: 125px;
	}
}
.topMedia .carousel-fade .carousel-item {
  display: block;
  position: absolute;
  opacity: 0;
  transition: opacity .75s ease-in-out;
  background-position: center center !important; 
}
.topMedia .carousel-fade .carousel-item.active {
    opacity: 1;
}
.topMedia .carousel .carousel-control-prev,
.topMedia .carousel .carousel-control-next {
    visibility: hidden;
    width: 100px;
    z-index:2;
     background:none;
     border:0;
}
.topMedia .carousel:hover .carousel-control-prev,
.topMedia .carousel:hover .carousel-control-next {
  visibility: visible; 
}
.topMedia .carousel-control-next-icon, 
.topMedia .carousel-control-prev-icon {
   background: url(/images/white-right-arrow.png) no-repeat;
  background-size: 100% !important;
  height: 75px;
  width: 35px;
}
.topMedia .carousel-control-prev-icon {
  background: url(/images/white-arrow.png) no-repeat;
}
@media (max-width: 767px) {
 .topMedia .carousel-control-next-icon, 
.topMedia .carousel-control-prev-icon {
  height: 40px;
  width: 20px;
}   
}

*/
/*Intro Carousel*/

/*
.topMediaIntro.narrow {
    margin-left:100px;
    margin-right:100px;
    padding-left:120px;
    padding-right:120px;
    margin-top: 155px;
}
@media (max-width: 767px) {
	.topMediaIntro.narrow {
		margin-top: 125px;
	}
}
.topMediaIntro.narrow .carousel-item img{
    width:100%;
}
.topMediaIntro.narrow .carousel .carousel-control-prev,
.topMediaIntro.narrow .carousel .carousel-control-next {
    visibility: visible;
        width: auto;
} 
.topMediaIntro.narrow .carousel .carousel-control-prev{
    left: -120px;
}
.topMediaIntro.narrow .carousel .carousel-control-next {
    right: -120px;
}
.topMediaIntro.narrow .carousel-control-next-icon, 
.topMediaIntro.narrow .carousel-control-prev-icon {   
    background:none;
            height: 85px;
    width: 40px;
            background-size: 100% !important;
}
.topMediaIntro.narrow .carousel-control-prev-icon{
    background: url(/images/left-arrow.png) no-repeat;
}
.topMediaIntro.narrow  .carousel-control-next-icon {
    background: url(/images/right-arrow.png) no-repeat;
}
@media (max-width: 1480px) {
    .topMediaIntro.narrow {
        margin-left:80px;
        margin-right:80px;
        padding-left:100px;
        padding-right:100px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-prev{
        left: -100px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-next {
        right: -100px;
    }
}
@media (max-width: 1199px) {
    .topMediaIntro.narrow {
        margin-left:60px;
        margin-right:60px;
        padding-left:80px;
        padding-right:80px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-prev{
        left: -80px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-next {
        right: -80px;
    }
}
@media (max-width: 991px) {
    .topMediaIntro.narrow {
        margin-left:30px;
        margin-right:30px;
        padding-left:30px;
        padding-right:30px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-prev{
        left: -50px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-next {
        right: -50px;
    }
    .topMediaIntro.narrow .carousel-control-next-icon, 
    .topMediaIntro.narrow .carousel-control-prev-icon {   
        height: 60px;
        width: 30px;
    }
}
@media (max-width: 575px) {
    .topMediaIntro.narrow {
        margin-left:0px;
        margin-right:0px;
        padding-left:0px;
        padding-right:0px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-prev{
       left:10px;
    }
    .topMediaIntro.narrow .carousel .carousel-control-next {
        right:10px;
    }
    .topMediaIntro.narrow .carousel-control-next-icon, 
    .topMediaIntro.narrow .carousel-control-prev-icon {   
        height: 40px;
        width: 20px;
    }
    
}
.topMedia .carousel,
.topMedia .carousel-inner,
.topMedia .carousel-item {
  width: 100%;
  height: 100%; 
}
@media (max-width: 767px) {
	.topMedia .carousel,
	.topMedia .carousel-inner,
	.topMedia .carousel-item {
	  height: inherit;
	}
}
.full-screen {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}*/
.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 80%;
    text-align:center;
    left:0;
    right:0;
    margin:auto;
}
/*
@media (max-width: 767px) {
     .topMediaIntro.narrow .contentOverSlider {
         width:100%;
    }
}*/
/*
.grayscale .overlay {
    background-size: cover;
    -webkit-filter: grayscale(1);
        filter: grayscale(1);
}
.no-grayscale .overlay {
  -webkit-filter: grayscale(0) !important;
        filter: none !important;
}*/

.contentOverSlider .h1{
    margin:0;
    font-size:40px;
}
.contentOverSlider .smallText {
    display:block;
}


.genericCarousel.owl-carousel .item {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  height: 80vh;
}

.genericCarousel.owl-carousel .owl-nav .owl-prev {
  background: url(../images/white-arrow.png) no-repeat;
  left: 50px;
}

.genericCarousel.owl-carousel .owl-nav .owl-next {
  background: url(../images/white-right-arrow.png) no-repeat;
  right: 50px;
}

.genericCarousel.owl-carousel .owl-nav .owl-prev,
.genericCarousel.owl-carousel .owl-nav .owl-next {
  background-size: 35px;
  height: 75px;
  width: 35px;
  position: absolute;
  top: 45%;
}
@media screen and (max-width: 1199px) {
    .contentOverSlider .h1{
        font-size:36px;
    }
}
@media screen and (max-width: 991px) {
    .contentOverSlider .h1{
        font-size:36px;
    }
  .genericCarousel .item img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
     .contentOverSlider .h1{
        font-size:20px;
    }   
}
@media screen and (max-width: 575px) {
     .contentOverSlider .h1{
        font-size:16px;
    }   
}
@media screen and (max-width: 575px) {
  .genericCarousel .item img {
    height: 400px;
  }
  .genericCarousel.owl-carousel .owl-nav .owl-prev,
  .genericCarousel.owl-carousel .owl-nav .owl-next {
    background-size: 25px;
  }
  .genericCarousel.owl-carousel .owl-nav .owl-prev {
    left: 20px;
  }
  .genericCarousel.owl-carousel .owl-nav .owl-next {
    right: 20px;
  }
}

/*Bg textpages
=========================== */
.backgroundBig {
 /* background: url(../images/background-big.png) no-repeat;*/
  background: url(../images/curve-bg.svg) no-repeat;
  
  background-size: 80%;
  background-position: bottom 0 right 0!important;
      /*background-position: bottom 0 right -20vw!important;
      
    background-size: contain;*/
}
@media screen and (max-width: 767px) {
   .backgroundBig {
    background-size: 100%;
    background-position: top 0px left 100px!important;
  }   
}

/*VIEW MORE PAGES - submenu
=========================== */

.viewAlsoSection {
  background: url(/images/background-waves.png) no-repeat;
  background-size: 100px;
  padding-bottom: 50px;
  background-position: top 0 right 0;
}
.viewAlsoSection .title {
  font-size: 40px;
  line-height: 50px;
}
.viewAlsoSection ul {
    margin-top: 100px;
  /*  padding-bottom: 60px;*/
}
@media screen and (min-width: 768px) {
    .viewAlsoSection ul {
      margin-top: 100px;
    /*  padding-bottom: 60px;*/
     /* display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 100%;*/
    }
    .viewAlsoSection ul li {
      cursor: pointer;
      /*-webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
      -webkit-transition: .3s linear;
      transition: .3s linear;*/
     /* flex-basis: 100%;*/
          /* flex: 1;*/
        width: 200px;
      -webkit-transition: 1s;
      transition: 1s;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
              -webkit-transform-origin:center center; 
transform-origin: center center;

    }
    .viewAlsoSection ul li:hover {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
}


.viewAlsoSection ul li a {
  color: var(--blue-color);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
}
.viewAlsoSection ul li a:hover {
  text-decoration: none;
}


@media screen and (max-width: 767px) {
  .viewAlsoSection {
    background-size: 50px;
  }
  .viewAlsoSection ul {
    margin-top: 40px;
        /*padding-bottom: 10px;*/
  }
 .viewAlsoSection ul li {
     padding: 10px 0px;
    /* padding: 50px 0px;
    width: 50%;*/
  }
}
@media screen and (max-width: 480px) {
  .viewAlsoSection .title {
    font-size: 28px;
    line-height: 40px;
  }
}

/*LISTING BOXES - Services Page
==============================*/
.bgWaves {
  background: url(/images/background-waves.png) no-repeat;
    background-position: bottom 10% right 0 !important;
  background-size: 100px;
}
.bgWaves:nth-child(odd) {
    background-position: bottom 10% left 0 !important;
}
.box-listing-item .discover {
  right: -44px;
}
.box-listing-item .title {
  font-family: var(--fontBold);
  font-size: 22px;
  line-height: 30px;
  background: var(--white-minOpacity);
  padding: 20px 10px;
  letter-spacing: 1.5px;
  text-transform: initial;
  cursor: pointer;
  -webkit-transition: .3s linear;
  transition: .3s linear;  
  width: 70%;
  position: absolute;
  left: -45px;
  top:50px;
}
.el .box-listing-item .title {
    font-family: var(--fontGR);
    font-weight: 700;
}
.box-listing-item .title:hover {
  background-color: var(--blue-color);
  color: var(--white-color);
  -webkit-transition: .3s linear;
  transition: .3s linear;
}
.box-listing-item .text-over {
    background: var(--white-color);
    width: 80%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 10px 10px 0 0;
}
.box-listing-item a{
    color: var(--blue-color);
}

@media screen and (max-width: 1199px) {
    .box-listing-item .discover {
      /*right: -26px;*/
      right: -31px;
    bottom: 37px;
    }
  .box-listing-item .title {
    width: 80%;
  }
  .bgWaves {
        background-size: 70px;
    }
}
@media screen and (max-width: 991px) {
    .box-listing-item .discover {
        /*right: 45px;*/
        right: 41px;
    }
}
@media screen and (max-width: 767px) {
    .box-listing-item {
        padding-bottom:40px;
    }
    .box-listing-item .discover {
        bottom: -40px !important;
        right: 0;
    }
}
@media screen and (max-width: 575px) {
    .bgWaves{
        background-position: top 0px right 0 !important;
        padding-top:1px;
    }
    .bgWaves:nth-child(odd) {
        background-position: top 0px left 0 !important;
    }
    .box-listing-item .title {
        left:0px;
          top:15px;
    }
    .box-listing-item .text-over {
       /* font-size: 16px;*/
    }
}

/*HOTELS LISTING
=========================== */
  
.hotelsPage .hotel.i {
  background: url(/images/Logos/I.svg) no-repeat;
}

.hotelsPage .hotel.v {
  background: url(/images/Logos/V.svg) no-repeat;
}

.hotelsPage .hotel.k {
  background: url(/images/Logos/K.svg) no-repeat;
}

.hotelsPage .hotel.l {
  background: url(/images/Logos/L.svg) no-repeat;
}
.hotel {
    background-position: top 0 left -2%!important;
    padding-bottom: 100px;
    background-size: 300px!important;
}  
.hotel.revert {
    background-position: top 0 right -2%!important;
}
@media screen and (min-width: 768px) {
    .hotel .img-holder {
      position:relative;
    }
}
@media screen and (min-width: 992px) {
    .hotel .img-holder {
        padding:0 50px;
    }
}
.hotel .hotel-box {
    background: var(--white-color);
    width: 45%;
  /*position: absolute;
    right: -2%;
    bottom: -25%;*/
    margin-top: -180px;
    position: relative;
    margin-left:auto; 
    padding:0 20px;
    z-index:1;
}
.hotel .hotel-box p:last-child {
    margin-bottom:0px;
}
.hotel.revert .hotel-box {
    margin-left: unset; 
}
.hotel h2 {
  margin-bottom: 0;
  font-size:66px;

}
.hotel.revert h2 {
    text-align:right;
}
.hotel .discover {
 /* right: 15px;*/
  bottom: calc(180px + 44px);
}

.hotel.revert .discover {
  bottom: 44px;
}

@media screen and (max-width: 1199px) {
  .hotel h2  {
    font-size: 60px;
    }
}

@media screen and (max-width: 991px) {
   .hotel .hotel-box {
       width:55%;
   }
   .hotel h2 {
        font-size: 54px;
    }
}
@media screen and (max-width: 767px) {
    .hotel {
            padding-top: 100px;
        background-position: top 0 left 0%!important;
        padding-bottom: 50px;
        background-size: 50px!important;
    }  
    .hotel.revert {
        background-position: top 0 right 0%!important;
    }

  .hotel .hotel-box {
    position: relative;
    padding: 10px;
    margin-top: 0;
    width: auto;
  }
    .hotel h2 {
    font-size: 40px;
  }
  .hotel-box,
  .hotel.revert h2{
    text-align: left !important;
  }
    .hotel .discover {
        bottom: -30px!important;
        right: 20px!important;
        -webkit-transform: none;
        transform: none;
        position: absolute;
    }
}
@media screen and (max-width: 320px) {
    .hotel h2 {
        font-size: 28px;
      }
}

/* FORMS
====================================== */
.contactform .form-control {
    font-family: var(--fontRegular);
  	border-radius: 0px;
  	height: 40px;
  	font-size: 18px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	outline: none;
	color: #565656;
	padding: .375rem .375rem;
}
.el .contactform .form-control {
    font-family: var(--fontGR);
}
.contactform .form-control:focus {
	outline: 0;
	border: 1px solid rgba(97, 97, 97, 1);		
	box-shadow: 0 1px 3px transparent;
}
.contactform select.form-control {
	color:#989898;
}

.contactform textarea.form-control {
  height: auto;
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 12px;
  text-align: left; }
.control-label {
  font-weight: normal;
  text-align: left;
  display: block; }
label span {
  color: red; }
label.required:after {
  content: " *";
  color: #FF0000; }
.asterisk {
	text-align:left;
	font-size:13px;
}
.form-agree label {
	display:inline;
	font-size:18px;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
}
.form-agree a:hover {
    text-decoration:none;
}
.submitBtn{
    background-color: var(--blue-color);
    border: 0px;
    padding: 12px 30px;
    vertical-align: inherit;
    transition: all 0.3s ease 0s;
    margin-top: 0!important;
    color: var(--white-color);
  border-radius:0;
    
}
.submitBtn:hover,
.submitBtn:focus {
	outline: 0 !important;
    background-color: #f1f1f1;
    border: 0px;
    color: var(--blue-color);
}

.signup .field-validation-error {
  text-align: center; }
  
  /*WAVE ON SLIDER
==============================*/ 
 .wave {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height:auto;
    width: auto;
    z-index: 1;
    background:url(/media/jczi1qlz/wave.svg) no-repeat;
    background-size: 100%;
    color: white;
    font-size: 38px;
    text-align: right;
    padding: 4%;
}
.wave span {
    display:block;
    font-size: 16px;
}
@media (max-width: 1500px) and (min-width: 1480px){
    .wave {
        padding: 4%;
        font-size: 40px;
    }
    .wave span {
        font-size: 16px;
    }
}
@media (max-width: 1440px) and (min-width: 1200px){
    .wave {
        padding: 4%;
        font-size: 38px;
    }
    .wave span {
        display:block;
        font-size: 14px;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .wave {
        padding: 4%;
        font-size: 26px;
    }
    .wave span {
        display:block;
        font-size: 14px;
     }
}
@media (max-width: 991px) and (min-width: 768px){
    .wave {
        padding: 4%;
        font-size: 22px;
    }
    .wave span {
        display:block;
        font-size: 11px;
    }
}
@media (max-width: 767px){
    .wave {
        padding: 4%;
        font-size: 20px;
    }
    .wave span {
        display:block;
        font-size: 11px;
    }
}
@media (max-width: 480px){
    .wave {
        padding: 4%;
        font-size: 14px;
    }
    .wave span {
        font-size: 10px;
    }
}
@media (max-width: 360px){
    .wave {
        padding: 3%;
        font-size: 11px;
    }
    .wave span {
        font-size: 7px;
    }
}


.list,
.umb-block-list ul{
    margin-bottom:15px;
}

.list li,
.umb-block-list ul li{
    list-style: circle;
    text-align:left;
    margin: 0px 25px;
}



/*==== Responsive Table 
====================================*/
.TableContainer thead{
    font-family: var(--fontRegular);
    color: var(--blue1F);
    font-weight: 400;
    font-size:18px;
    word-wrap: break-word;
    line-height: 1.1;
    margin: 0px 0 30px;
    text-transform: uppercase;
}
.el .TableContainer thead {
    font-family: var(--fontGR);
}
.TableContainer td, .TableContainer th {
    text-align:center;
    padding:15px 0 15px 0;
    border-bottom: 1px solid var(--blue-color);
}
.TableContainer tr td:first-child,
.TableContainer tr th:first-child{
    text-align:left;
}
.TableContainer td a {
    text-decoration: underline;
    color: var(--black1C);
    transition: transform 0.25s ease-out;
}
/*
@media only screen and (max-width: 767px), (min-device-width: 768px) and (max-device-width: 1024px)  {*/
        
@media (max-width: 991px){       
    /* Force table to not be like tables anymore */
    .TableContainer thead,
    .TableContainer tbody,
    .TableContainer th,
    .TableContainer td,
    .TableContainer tr {
	    width:100%;
		display: block;
	}
    /* Hide table headers (but not display: none;, for accessibility) */
	.TableContainer thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
    .TableContainer tr:nth-child(odd) {
        background: #f1f1f1;
    }
    .TableContainer td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid var(--blue1F);
		position: relative;
		padding-left: 70%;
		text-align:left;
	}
	.TableContainer td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 0;
		left: 6px;
		width: 45%;
		padding: 15px 10px 15px 0;
		white-space: nowrap;
		font-family: var(--fontRegular);
        color: var(--blue-color);
        font-weight: 400;
        font-size:18px;
        word-wrap: break-word;
        line-height: 1.1;
        margin: 0px 0 30px;
        text-transform: uppercase;
	}
	.el .TableContainer td:before {
	    font-family: var(--fontGR);
	}
	.TableContainer td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

}
@media (max-width: 575px){    
    .TableContainer td {
		padding-left: 60%;
    }		
}
   
  
/*# sourceMappingURL=style.css.map */