/** START OF GENERAL SETTINGS  **/
:root {
  --fontMain: "Ysabeau Infant", sans-serif;
  --fontSecondary: "Ysabeau", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --blue-color:#285A79; /*BLUE*/
  --blue-dark:#1E3F5A;
  --blue-bg:#3E7D91;
  --blue-light:#84C3C2; /*BLUE*/
  --grey-light:#F5F4F2;

  --grey-dark:#8d8d8d;
  --green-light:#b5baae;
  --gold:#ad916b;
  --silver:#d0cdca;
  --bronze:#a7775e;
  --brown:#CBB291;
  
  interpolate-size: allow-keywords;
}
.grey-bg {
    background-color:var(--grey-light);
}
.blue-color {
	color: var(--blue-color);
}

.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(--blue-color);
}
.text a {
    color: var(--blue-color); 
}
.text a:hover {
  text-decoration: underline; 
}

/** 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(--fontMain);
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    background: var(--white);
    text-align: left;
}
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(--blue-color);
}



/**START OF HEADINGS
=====================================**/
h1, .h1,
h2, .h2,
h3, .h3 {
  font-family: var(--fontMain);
  margin-bottom: 30px;
  line-height: 1;
  color: var(--blue-color);
  font-weight: 500;
}
h1, .h1 {
  font-size: 58px;
}
h2, .h2 {
  font-size: 42px;
}

h3, .h3 {
  font-size: 40px;
}
h1 .subtitle, .h1 .subtitle,
h2 .subtitle, .h2 .subtitle{
    padding-top: 16px;
    display: block;
    font-size: 22px;
    color: var(--blue-color);
    line-height: 1.5;
}
@media screen and (max-width: 1399px) {
    h1, .h1 {
      font-size: 48px;
    }
    h2, .h2 {
      font-size: 38px;
    }
    h3, .h3 {
      font-size: 34px;
    }
}
@media screen and (max-width: 1199px) {
    h1, .h1 {
      font-size: 44px;
    }
    h2, .h2 {
      font-size: 34px;
    }
    h3, .h3 {
      font-size: 30px;
    }
}
@media screen and (max-width: 991px) {
     h1, .h1 {
        font-size: 42px;
      }
    h2, .h2 {
      font-size: 32px;
    }
    h3, .h3 {
      font-size: 28px;
    }
}
@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 40px;
  }
}


/** START OF MARGIN  
============================== **/
.mt-offset{
    margin-top:120px;
}
.mt-offset-half{
    margin-top:60px;
}
.pt-offset {
    padding-top: 80px;
}
.py-offset {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media screen and (max-width: 991px) {
   .mt-offset{
        margin-top:100px;
    } 
}
@media screen and (max-width: 575px) {
    .mt-offset{
        margin-top: 80px;
    }
    .mt-offset-half{
        margin-top:40px;
    }
    .pt-offset {
        padding-top: 60px;
    }
    .py-offset {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.container-spacing {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
/*@media (min-width: 768px) {
    .container-spacing {
        padding-left:40px;  
        padding-right:40px;  
    } 
}*/
@media (min-width: 1200px) {
    .container-spacing {
        padding-left:3rem!important;  
        padding-right:3rem!important;  
    }  
}
/*@media (min-width: 1481px) {
    .container-spacing {
        padding-left:100px;  
        padding-right:100px;  
    }  
}*/

/* START OF BUTTONS  
====================================*/
.button,
.button-bg,
.btn-more{
    font-family: var(--fontMain);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: var(--letterSpacingBtn);
    line-height: 1;
    position: relative;
    cursor: pointer;
    display:inline-block;
    padding: 12px 0px;
}

.button,
.button-bg{  
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
  text-decoration: none;
   padding: 12px 24px;
  border-radius: 25px;
   font-weight:800;
  -webkit-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  z-index:0;
}
.button::after,
.button::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
        border-radius: 25px;
    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(--blue-color);
  transition: width 0.5s ease;
}
.button-bg {
    color:#fff;
    border:0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.button-bg.gold {
    background-color:var(--gold);
}
.button-bg.silver {
    background-color:var(--silver);
}
.button-bg.bronze {
    background-color:var(--bronze);
}

.button.white {
  color: var(--white);
  border: 1px solid var(--white);
}
.button.white:hover{
    color: var(--blue-color)!important;
}
.button.white:hover:after,
.button.white:hover:after{
    background: var(--white);
}

.button.calendar {
    background: url(/images/calendar.svg) no-repeat 12px center;
    background-size: 20px 20px;
    padding-left: 40px;
}
.button.calendar:not(:hover) {
    filter: brightness(0) saturate(100%) invert(27%) sepia(71%) saturate(434%) hue-rotate(158deg) brightness(96%) contrast(90%);
}
.button.calendar:after {
    background: var(--blue-color) url(/images/calendar.svg) no-repeat;
    background-position: 12px center;
    background-size: 20px 20px;
}

/*
.btn-more{
    color: var(--blue-color);
    transition: var(--transition3s);
    padding-right: 38px;
}
.btn-more:before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 10px;
    position: relative;
    top: -5px;
    background-color: var(--blue-color);
    transition: var(--transition3s);
}
.btn-more:hover {
  color: var(--black);
}
.btn-more:hover:before {
    width: 38px;
    background-color: var(--black);
}
*/        
        
        /* 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;
}

.headerScroll,
/*.header:hover,*/
.no-slider header {
  background-color: var(--white);
}
.header-container {
    display:flex;
    justify-content: space-between !important;
    align-items: center !important; 
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
@media (max-width:1199px) {
    .header-container .left-col,
    .header-container .right-col,
    .header-container .center-col {
         width:33.333%;
    }    
}
@media (min-width:1200px) {
    .header-container .left-col,
    .header-container .right-col {
        width:150px;
    }
    .header-container .center-col {
         width:calc(100% - 300px);
    }
}
.header .img-logo {
  height: 90px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  filter: brightness(0) saturate(100%) invert(21%) sepia(12%) saturate(2256%) hue-rotate(165deg) brightness(100%) contrast(95%);
}
body:not(.no-slider) .header:not(.headerScroll) .img-logo {
    filter: brightness(0) invert(1); 
}
.header.headerScroll .img-logo {
    height: 70px;
}
.header.headerScroll .img-logo.visible-on-scroll {
    height: 40px;
}
@media (max-width:1199px) {
    .header .img-logo {
       height: 70px;
    }
   .header.headerScroll .img-logo {
        height: 55px;
    }
    .header.headerScroll .img-logo.visible-on-scroll {
        height: 40px;
    }

}
@media (max-width: 575px) {
   .header .img-logo {
       height: 60px;
   }
   .header.headerScroll .img-logo {
        height: 45px;
    }
}
.header.headerScroll .hidden-on-scroll {
    display:none;
}
/*body.no-slider .header:not(.headerScroll) .visible-on-scroll,
body:not(.no-slider) .header:not(.headerScroll) .visible-on-scroll {*/
.header:not(.headerScroll) .visible-on-scroll {
    display:none;
}
.header .button{
    color: var(--blue-dark);
    border: 1px solid var(--blue-dark);  
}
.header .button:hover{
    color: var(--white)!important;
}
.header .button:hover:after,
.header .button:hover:after{
    background: var(--blue-dark);
}

body:not(.no-slider):not(.scrolled) .header .button{
    color: var(--white);
    border: 1px solid var(--white); 
    margin-top: 30px;
}
@media (max-width: 1199px) {
    body:not(.no-slider):not(.scrolled) .header .button{
        margin-top: 20px;
    }   
}
body:not(.no-slider):not(.scrolled) .header .button:hover{
    color: var(--black)!important;
}
body:not(.no-slider):not(.scrolled) .header .button:hover:after,
body:not(.no-slider):not(.scrolled) .header .button:hover:after{
    background: var(--white);
}
@media (max-width:1199px) {
    .header .button{
        padding: 10px 22px;
        font-size: 14px;    
    }
}
@media (max-width: 480px) {
    .header .button{
        padding: 10px 12px;
        font-size: 12px;    
    }
}

/* LANGUAGES  
-----------------------*/
.languagesDrop {
    position:relative;
}
.languagesDrop .dropdown-toggle {
    color: var(--blue-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition3s);
}
.languagesDrop .dropdown-menu {
    min-width: 40px;
    border-radius: 0;
    padding: 5px 0px;
    font-size: 15px;
    left: -10px !important;
    top:30px!important;
    background-color: var(--white);
    border: 0;
}
.languagesDrop .dropdown-menu a{
    color: var(--blue-color);
    text-align: left;
}
.languagesDrop .dropdown-menu a:hover{
    background: none;
    color: var(--bgBurgerMenu);
}
body:not(.no-slider):not(.scrolled) .languagesDrop .dropdown-toggle {
    color:var(--white);
    margin-top: 30px;
}
@media (max-width: 1199px) {
    body:not(.no-slider):not(.scrolled) .languagesDrop .dropdown-toggle{
        margin-top: 20px;
    }   
}

@media (max-width:1199px) {
    .languagesDrop {
        margin-left:45px;    
    }
}
/* END OF HEADER  */

/*=== NAVIGATION DESKTOP OPEN
=====================================*/
.header-menu {
    list-style:none;
    margin:0px 80px 0 0;
    display:flex;
    font-size:16px;
    font-weight:600;
    width:calc(50% - 100px);
    justify-content:end;
}
.header-menu.right {
    order:3;
    margin:0px 0 0 80px;
        justify-content:start;
}
.header-menu li{
    margin:0 15px;
    position:relative;
}
@media (max-width: 1399px) {
   .header-menu {
          width:calc(50% - 70px);
              margin: 0px 40px 0 0;
   }
   .header-menu.right {
    margin:0px 0 0 40px;
   }
   .header-menu li{
    margin:0 8px;
    }
}
.header-menu a {
    color:var(--blue-dark);
}

body:not(.no-slider):not(.scrolled) .header .header-menu{
    margin-top: 30px;
}    

body:not(.no-slider):not(.scrolled) .header .header-menu a {
    color:var(--white);
}
@media (max-width:1199px) {
   .header-menu {
       display:none;
   }
}
.submenu-drop {
    list-style:none;
    margin:0px;   
    display:none;
    width: 360px;
}
.submenu-drop.hotels-width {
width: 760px;
}

.header-menu li:hover .submenu-drop {
    display:block;
    position:absolute;
    top:20px;
    padding-top:50px;
    border-left:solid 1px var(--white);
}
.submenu-drop li{
    background:var(--green-light);
    display:inline-block;
   /* width: 50%;*/
    margin:0 10px 10px 0;
}
.submenu-drop li:hover{
    background:var(--blue-light);
}
    
.submenu-drop li a{
    display:block;
    padding:10px;
    color:var(--white);
}

/*=== NAVIGATION
=====================================*/

body.menu-open,
.site__body--noscroll {
    overflow:hidden;
}

/*NAV Button
====================== */
.nav_burger {
    position: fixed;
    top: 60px;
    left: 3rem;
    z-index:1050;
    transition: 0.15s ease-in-out;
}
.scrolled .nav_burger {
    top: 25px;
}
@media (min-width:1200px) {
    .nav_burger {
        display:none;
    }
}
@media (max-width:1199px) {
    .nav_burger {
        top: 45px;
        left: 1rem !important;
    }
    .scrolled .nav_burger {
        top: 20px;
    }
}
@media (max-width:575px) {
    .nav_burger {
        top: 40px;
    }
    .scrolled .nav_burger {
        top: 20px;
    }
}
.nav_burger_inner {
    transition: all .2s ease-in-out;
}
.nav_burger_inner:hover {
    cursor: pointer; 
}
.nav_burger_icon {
    position: relative;
    display: block;
    vertical-align: middle;
}
.nav_burger_icon .bar {
    height: 4px;
    width: 30px;
    display: block;
    margin: 5px auto;
    position: relative;
    background: var(--black);
    transition: .5s cubic-bezier(.5, .2, .2, 1);
    -webkit-transform: skew(-45deg);
    -moz-transform: skew(-45deg);
    transform: skew(-45deg);
}
.nav_burger_icon .bar:nth-of-type(2) {
    -webkit-transform: skew(45deg);
    -moz-transform: skew(45deg);
    transform: skew(45deg); 
}
body:not(.no-slider):not(.scrolled):not(.menu-open) .nav_burger_icon .bar {
    background: var(--white);
}
.menu-open .nav_burger_icon .bar {
    -webkit-transform: skew(0deg);
    -moz-transform: skew(0deg);
    transform: skew(0deg);
     background: var(--blue-color);
}
.menu-open .nav_burger_icon .bar:first-of-type {
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}
.menu-open .nav_burger_icon .bar:nth-of-type(2) {
    opacity: 0;
}
.menu-open .nav_burger_icon .bar:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}
/*NAV OVERALY
=============================== */
.overlay-menu {
    display:none;
}

.main_navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1040!important;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
html:lang(el) .main_navigation {}  

.menu-button {
    position:absolute;
    top: calc(1rem + 27px);
    right: 1rem;
}
.menu-logo {
    position:absolute;
    top:1rem;
    left: 50%;
    transform: translate(-50%, 0);
}
.menu-logo img{
    height:90px; 
    filter: invert(28%) sepia(8%) saturate(4745%) hue-rotate(161deg) brightness(93%) contrast(76%);
    filter: invert(32%) sepia(23%) saturate(1146%) hue-rotate(159deg) brightness(91%) contrast(93%);
}
@media (max-width:1199px) {
    .menu-button {
        padding: 10px 22px;
        font-size: 14px;    
    }
    .menu-logo img{
       height: 70px;
    }
}

@media (max-width: 575px) {
    .menu-button {
        top: calc(1rem + 22px);
    }
   .menu-logo img{
       height: 60px;
   }
}
@media (max-width: 480px) {
    .menu-button{
        padding: 10px 12px;
        font-size: 12px;    
    }
}
.menu-open .main_navigation {
    opacity: 1;
    visibility: visible;
    z-index: 600;
}
.main_navigation_inner {
    height: auto;
    min-height: 100%;
    width: 100%;
    right: 0;
    position: absolute;
    background-color: var(--white);
    padding-top: 150px;
}

@media (min-width:1025px) {
    .main_navigation_inner {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
       /* -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;*/
    }
}
.menu--main {
    position: relative;
    width: calc(100%);
    height: calc(100%);
    padding: 0px 3rem 60px;
}
@media (max-width:420px) {
    .menu--main {
        padding: 0px 1.5rem 60px;
    }
}
.menu-icons {
    width: calc(100%);
}
/*@media (min-width:768px) {
    .menu--main{
        width: calc(60%);
    }
    .menu-icons {
        width: calc(40%);
    }
}*/
/*
@media (min-width:768px) {
    .menu--main {
        padding: 7% 50px; 
        height: calc(100% - 20%);
    }
}
@media (min-width:1025px) {
    .menu--main {
        padding: 7% 100px;
    }
}
@media (min-width:1200px) {
    .menu--main {
        padding: 7% 90px;
    }
}
@media (min-width:1480px) {
    .menu--main {
        padding: 7% 120px;
    }  
}
@media (min-width:1680px) {
    .menu--main {
        padding: 7% 150px;
    }  
}
*/
.menu--main .menu__list--level-0 {
    font-size:26px;
    color: var(--black);
    display: inline-block;
    width: 100%;
}
@media (min-width:1200px) {
    .menu--main .menu__list--level-0 {
        font-size: 30px;
    }
}
.menu--main .menu__list--level-0>.menu__item {
        margin-bottom: 30px;
}

@media (min-width:1025px) {
    .menu--main .menu__list--level-0>.menu__item {
        overflow: hidden;
    }
}
.menu--main .menu__link {
    text-decoration:none;
    display: inline-block;
}
@media (hover: hover) {   /* when hover is supported */
    .menu--main .menu__list--level-0:hover > .menu__item,
    .menu--main .menu__list--level-0:hover > .menu__item a{
        color: var(--grey-dark)!important;
        transition: all 1s ease;
    }
    .menu--main .menu__list--level-0 > .menu__item.active:not(.toggled) .menu__list--submenu{
        opacity: 1;
        visibility: visible;
        transform: translate(0, -50%);
        transition: 0.3s 0.2s;
    }
}

/*.menu--main .menu__list--level-0>.menu__item>.menu__link:hover.hovered {*/
.menu--main .menu__list--level-0 > .menu__item.active,
.menu--main .menu__list--level-0 > .menu__item.active a{
   color: var(--black)!important;
}
@media (hover: none) {
    .menu--main .tabbed-mob .menu__list--level-0:hover > .menu__item:not(.toggled),
    .menu--main .tabbed-mob .menu__list--level-0:hover > .menu__item:not(.toggled) a{
        color: var(--grey-dark)!important;
        transition: all 1s ease;
    }
}
/*
.menu--main .menu__list--level-0 > .menu__item a {
    display:block;
}
*/

/*SUBMENU 
============================= */

.menu--main .menu__list--level-1 {
    font-family: var(--fontSyne);
    font-size: 18px;
    font-weight:600; /*Semibold*/
    letter-spacing: var(--letter-spacing);
}
html:lang(he) .menu--main .menu__list--level-1 {
    font-family: var(--fontArimo);
    font-weight: 400;
}
html:lang(bg) .menu--main .menu__list--level-1 {
    font-family: var(--fontMontserrat);
}

.menu--main .menu__list--level-1>.menu__item {
    padding: 8px 15px 8px 10px;
}
@media (min-width:1200px) {
    .menu--main .menu__list--level-1 {
        font-size: 24px;
    }
    .menu--main .menu__list--level-1>.menu__item {
        padding: 10px 0 10px 40px;
        transition: .5s;
    }
}
@media (min-width:1480px) {
    .menu--main .menu__list--level-1 {
        font-size: 26px;
        font-weight:700; /*bold*/
    }
    .menu--main .menu__list--level-1>.menu__item {
        padding: 10px 0 10px 50px;
        transition: .5s;
    }
}

@media (min-width:1025px) {
    .menu__list__wrapper {
        width: 48%;
        min-width: 48%;
    }
}

@media (min-width:1680px) {
    .menu__list__wrapper {
        width: 44%;
        min-width: 44%;
    }    
}
@media (min-width:1025px) {

    .menu--main .menu__list {
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
    }
    .menu--main > .menu__list:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(100% - 1px);
        height: 100%;
        width: 100%;
    }

    .menu--main .menu__list--level-1 {
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translate(0px,-50%);
        padding-left: 82px;
        opacity: 0;
        min-width: 570px;
        visibility: hidden;
        transition: 0.3s;
        height: 100%;
        align-items: start;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .menu--main .menu__list--level-1 > li {
        position:relative;
    }
    .menu--main .menu__list--level-1 > li:before {
        content: '';
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0;
        background: var(--black);
        width: 1px;
        opacity: 0.1;
    }
    .menu--main .menu__list--level-0 > .menu__item.active .menu__list--submenu{
        opacity: 1;
        visibility: visible;
        transform: translate(0, -50%);
        transition: 0.3s 0.2s;
    }
}


/*
.menu--main .menu__list--level-1>.menu__item.menu__item--ancestor>.menu__link, 
.menu--main .menu__list--level-1>.menu__item.menu__item--current>.menu__link {
  color: var(--black);  
}*/

.menu--main .menu__list--level-1>.menu__item>.menu__link {
    display: block;
     transition: .4s;
    text-transform:uppercase;
    color: var(--black);
}
/*
@media (min-width:1025px) {
    .menu--main .menu__list--level-1>.menu__item>.menu__link {
        display: block;
        color: var(--black);
    }
}*/
.menu--main .menu__list--level-1>.menu__item>.menu__link:hover,
.menu--main .menu__list--level-1>.menu__item>.menu__link.active{
    color: var(--grey-dark)!important;
}

  .menu--main .arrow {
        position:relative;
        font-size: inherit;
        height: 20px;
        width: 40px;    
        display:inline-block;
        cursor: pointer;
        text-indent: -9999px;
        overflow: hidden;
        /*vertical-align: middle;*/
        background:url(/images/arrow-right.svg) no-repeat center center;
        background-size: auto 20px;
        line-height: 1;
    }


@media (max-width:1024px) {
    .menu__list__wrapper ul{
        list-style:none;    
    }
    .menu__item.menu__item--has-children>a{
        display:inline-block;
    }
  
    .menu__item.menu__item--has-children ul{
        position: relative;
        left: 0%;
        top: 0%;
        transform: translate(0px, 0%);
        padding-left: 0px;
        opacity: 1;
        visibility: visible;
        transition: 0s;
        display: none;
        margin-left: 0;
        padding-top: 16px;
        padding-bottom: 10px;
        display: none;
    }
    .menu__item.menu__item--has-children.toggled ul{
        display: block;
        animation: fade_in_show 0.5s
    }
    .menu__item.menu__item--has-children.toggled .menu__link{
       color: var(--black)!important;
    }
        .menu__item.menu__item--has-children.toggled .arrow {
        transform: translateY(3px) rotate(90deg);
    }
}

@keyframes fade_in_show {
     0% {
          opacity: 0;
          transform: scaleY(0)
     }

     100% {
          opacity: 1;
          transform: scaleY(1)
     }
}
/*
@media (min-width:1025px) {
    .menu--main .arrow{
        display:none;
    }
    
}*/

.menu-icons {
    font-size: 20px;
    font-family: var(--fontSyne);
    color: var(--black);
}
html:lang(he) .menu-icons {
    font-family: var(--fontArimo);
    font-weight: 400;
}
html:lang(bg) .menu-icons {
    font-family: var(--fontMontserrat);
}
  

@media (min-width:1025px) {
   /* .menu-icons {
        position:absolute;
        right:52px;
        top:80px;
        bottom:20px;
        height:calc(100vh - 120px);
    }*/
    .menu-icons .social{
        position:absolute;
        bottom:0px;
    }
    .menu-icons .social a {
        display: block;
        margin-right: 0px;
        margin-top:12px;
    }
    .menu-icons .social img {
        width:25px;
        height:auto;
    }
}
@media (max-width:1024px) {
   /* .menu-icons {
        padding:0 30px;
    }*/
    .menu-icons .languages a{
        display:inline-block;
        padding:0px 8px 0 0;
    }
    .menu-icons .languages:after,
    .menu-icons .tel-icon:after{
        content:"";
        width:52px;
        border-bottom:solid 1px var(--black);
        display:block;
        margin:20px 0;
    } 
    .tel-icon {
        margin:0;
    }
    .tel-icon img{
        width:42px;
    }
}


/*=== Carousel Slider
=====================================*/
.noSlider-holder {
    height:116px;
}
@media (max-width: 575px) {
    .noSlider-holder {
        height: 77px;
    }
}
#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: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0px 20px;
    background:rgba(0,0,0,0.001);
    font-size: 54px;
    color: var(--white);
    font-weight: 100;
    line-height: 1.2;
    text-shadow: 1px 1px 2px #000000;
}
@media screen and (max-width: 1399px) {
  .contentOverSlider {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .contentOverSlider {
    font-size: 32px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 575px) {
  .contentOverSlider {
    font-size: 26px;
  }
}
/*
.videoModal .modal-dialog {
  max-width: 900px;
}

.videoModal .btn-close {
  font-size: var(--fontGeologica);
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--white);
  background: var(--blue-color);
  width: 20px;
  height: 20px;
  border-radius: 0px;
  z-index: 3;
  display: flex;
  font-size: 20px;
  font-weight: 300;
  justify-content: center;
  align-items: center;
}
*/

/**START OF  WIDGET OVER SLIDER
==========================*/
.sections-ribbon-hotels {
    background:var(--blue-dark);
    position: absolute;
    bottom: 0px;
    z-index: 9;
    width:100%;
}
.hotels-names {
    display:flex;
    justify-content: space-between;
    font-size:14px;
    font-weight:600;
    padding-top:10px;
    padding-bottom:10px;
}
.hotels-names a{
    color:var(--white)!important;  
    display: inline-block;
}
.hotels-names div a{
    padding: 0 6px;  
}
@media screen and (max-width: 1199px) {
    .hotels-names div a{
        padding: 2px 10px;  
    }
}
@media screen and (max-width: 767px) {
    .hotels-names {
        flex-wrap:wrap;
        justify-content:center;
    }
}
@media screen and (max-width: 575px) {
    .sections-ribbon-hotels {
        position:relative;
    }
    .hotels-names .column{
        width: 100%;
    }
    .hotels-names div a{
         padding: 2px 0px;  
    }
}

.arrow-down {
  position: absolute;
  bottom: 60px;
  width: 100%;
  text-align: center;
  z-index: 8;
}
.arrow-down.bounce {
    animation: bounce 1s ease infinite alternate;
}
.arrow-down.bounce img {
  width: 60px;
   height: 60px;
}
@media (max-width:767px){   
  .arrow-down.bounce img {
        width: 45px;
        height: 45px;
    }
}
@keyframes bounce {
  0% {
  }
  100% {
    transform: translateY(-10px);
  }
}

.fixed-buttons {
    position:absolute;
    left:3rem;
    bottom:60px;
    z-index: 8;
}
.fixed-buttons a{
    background-color: var(--brown);
    border-radius: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: start;
    color:var(--white);
    font-size:14px;
    font-weight:800;
}
.fixed-buttons a:not(:last-child){
    margin-bottom:5px;
}
.icon-tel img,
.icon-calendar img{
      width:23px;
}
.fixed-buttons a span{
    margin-left: 15px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
    height:0px;
}
.fixed-buttons a:hover {
    width:215px;
}
.fixed-buttons a:hover span{
    visibility: visible;
    opacity: 1;
    height:auto
}
.fixed-button-loyalty {
    position:absolute;
    right:3rem;
    bottom:60px;
    z-index: 8;
    background:rgba(0,0,0,.005);
}
@media screen and (max-width: 1399px) {
    .arrow-down,
    .fixed-buttons,
    .fixed-button-loyalty {
        bottom: 70px;
    }
}
@media screen and (max-width: 992px) {
    .arrow-down,
    .fixed-buttons,
    .fixed-button-loyalty {
        bottom: 90px;
    }
}
@media screen and (max-width: 767px) {
    .arrow-down,
    .fixed-buttons,
    .fixed-button-loyalty {
        bottom: 100px;
    }
    .fixed-buttons {
        left:1rem;
    }
    .fixed-button-loyalty {
        right:1rem;
    }
    .fixed-button-loyalty .button {
        font-size:14px;
        width: 110px;
        text-align: center;
    }
}
@media screen and (max-width: 575px) {
    .arrow-down,
    .fixed-buttons,
    .fixed-button-loyalty {
        bottom: 150px;
    }
      /*.arrow-down{
          display:none;
      }*/

}

.heading-overSlider {
    position:absolute;
    padding-right:1rem;
    right:0px;
    bottom:1rem;
    z-index: 8;
    /*  right:3rem;
    width:70%;
    color:var(--blue-dark)!important;*/
    background:var(--blue-color)!important;
    text-align:right;
    
}
@media (min-width:1200px){ 
    .heading-overSlider {
        padding-right:3rem;
    }
     /*.heading-overSlider h1 {
     max-width: 520px;   
     }*/
}
.heading-overSlider h1{
    color: var(--white) !important;
    margin: 0;
    padding: 8px 0 8px 25px;
}

.heading-overSlider.center {
    right:unset;
    left: 50%;
    transform: translateX(-50%);
    text-align:center;
    padding:0;
    background:none!important;
}

/*
@media (min-width:768px){ 
    .heading-overSlider {
       width:50%; 
    }
}
@media (min-width:1200px){ 
    .heading-overSlider {
        width:40%;
    }
}
@media (min-width:1680px){ 
    .heading-overSlider {
        width:30%;
    }
}*/

/*FOOTER
=====================*/
.footer {
    background-color:var(--blue-bg);
    color:var(--white);
    font-size: 16px;
    font-weight: 400;
    text-align:center;
}
.footer .h3 {
    color:var(--white); 
    font-weight:300;
}
.footer a{
    color:var(--white);
}
.section-app {
    
}
@media (min-width: 768px) { 
    .section-app {
        width:50%;
        margin:auto;
    }
}
@media (min-width: 1400px) { 
    .section-app {
        width:33.33%;
    }
}
.footer-nav {
    margin-top:60px;
    font-size:14px;
    font-weight:600;
}
.footer-nav a{
    text-decoration: none;
    padding: 10px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-nav a:hover,
.footer-nav a:focus{
    text-decoration: none;
}
.seperate-border {
    border-top:solid 1px var(--white);
    margin-top:30px;
    padding-top:30px;
}
.footer .contact {
    padding-bottom:30px;
}
@media (min-width: 768px) { 
    .social .heading{
        margin-right:30px;
    }
}
.social a {
    display: inline-block;
    padding: 12px 12px 12px 0;
    margin:0 10px;
    transition: all 0.5s linear;
}
.social img{
  width: 30px;
  height: 30px;
    filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
    .social {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.copyright {
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 14px;
}
.copyright a {
    text-decoration: none;
}
.copyright a:hover {
    text-decoration:underline;
}

/*CONTENT
=====================*/
/*
@media screen and (min-width: 768px) {
    .intro-text {
       padding-top: 3rem !important;
    }
}
@media screen and (max-width: 767px) {
    .intro-text .text{
        padding-bottom: 3rem !important;   
    }    
}*/
 .intro-text:after {
    content: "";
    position: relative;
    background: url(/images/pattern.svg) repeat-x;
    background-position: left bottom;
    height: 50px;
    width: 91.66666667%;
    margin:50px auto 0 auto;
    display: block;
 }
@media screen and (min-width: 1200px) {
    .intro-text {
       padding-top: 3rem !important;
    }
}

.intro-text img {
    border-top-right-radius:35px 35px;
    border-bottom-right-radius:35px 35px;
    transform-origin: right;
}
@media screen and (max-width: 991px) {
    .intro-text picture {
        display:block;
        margin-right:50px;
    }
}
.intro-text .place-text {
    padding:0px 3rem 3rem;
}
@media (min-width: 992px) { 
    .intro-text .place-text {
        padding:0px 3rem;
    }
}
@media (min-width: 1400px) { 
    /*.intro-text .place-text {
        padding:0px 50px 0px 80px;
    }*/
    .intro-text .text {
        width:75%;
    }
}

.text-animation .lineChild p{
    margin:0;
}
.hotels-carousel {
    background:var(--grey-light);
}
.hotels-carousel .heading {
    background:url(/images/z.svg) no-repeat bottom center;
    background-size:auto 20px;
    padding-bottom:50px;
}
/* START OF SWIPER CAROUSELS 
====================================*/
.swiper-button-next,
.swiper-button-prev {
    top: 50% !important;
    color: var(--black);
    /*border: 1px solid var(--white);
    padding: 35px;
    border-radius: 50%;*/
    background:url(/images/arrow-line-right.svg) no-repeat center center; /*#2d2d2d52 */
    background-size: 100%;
    /* filter: brightness(1) invert(1); */
    width: 30px;
    margin: 10px;
}
@media screen and (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        padding: 28px;
    }
}
.swiper-button-prev {
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;
}
.swiper-pagination {
  bottom: 0px !important;
  display: flex;
    align-items: center;
    justify-content:center;
}

.swiper.bullets-below .swiper-pagination {
        padding-top:20px; 
    position:relative;  
}
.swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 0;
    margin: 0 !important;
}
.swiper-pagination-bullet-active {
    background-color: var(--black);
    height: 16px;
    border-radius:8px;
    width:16px;
}

.simpleGallerySwiper .swiper-button-next,
.simpleGallerySwiper .swiper-button-prev,
.galleryRowSwiper .swiper-button-next,
.galleryRowSwiper .swiper-button-prev{
    /*display:none;*/
}

.simpleGallerySwiper .swiper-pagination,
.galleryRowSwiper .swiper-pagination{
    bottom: 10px !important;
    display:none;
}
.simpleGallerySwiper .swiper-pagination .swiper-pagination-bullet {
    padding-bottom:5px;
       background-color: var(--white); 
}
.simpleGallerySwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
     background-color: var(--blue-bg); 
}

.fromLeft .simpleGallerySwiper{
  direction: rtl;
}
/*RESORTS CAROUSEL - SLIDER
===================================*/
.carousel-box .text-over {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
}
.box-link-above {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.text-over .box-link-above {
    top: -25px;
    bottom: -25px;
    left: -25px;
    right: -25px;
}
.box-link-above span{
    display:none;
}
.swiperThumbs .carousel-box .text-over h3{
    width:50%;
    color:var(--white);
    font-weight:300;
}
.carousel-box .text-over .more-txt{
    text-align:center;
    color:var(--white);
    font-size:16px;
}
@media screen and (min-width: 1025px) {
    .swiperThumbs{
          height: 80vh;
    }
    .swiperThumbs .swiper-wrapper{
         height: 100%!important;
    }
    .swiperThumbs .carousel-box {
          flex: 1;
          -ms-flex: 1;
          -webkit-flex: 1;
          height: 100%;
          transition: flex 0.8s ease;
    }
    /*.swiperThumbs .carousel-box:hover,*/
    .swiperThumbs .carousel-box.active{
        flex: 5;
        -ms-flex: 5;
        -webkit-flex: 5;
    }
    .swiperThumbs .carousel-box:first-child{
        margin-left:0;
    }
    .swiperThumbs .carousel-box:last-child{
        margin-right:0;
    }
    .swiperThumbs .carousel-box .box-holder{
        height: 100%;
    }
    .swiperThumbs .carousel-box picture{
        height: 100%;
        display:block;
    }
    .swiperThumbs .carousel-box img{
        height: 100%;
        object-fit: cover;
    }
    .swiperThumbs .carousel-box .text-over {
        opacity:0;
        background:rgba(0,0,0,.005);
    }
    .swiperThumbs .carousel-box.active .text-over {
        opacity:1;
    }

    .swiperThumbs .swiper-pagination {
        display:none;
    }
     .swiper-slider-nav {
        background:var(--blue-light);
        display:flex;
        align-items: center;
     }
    .swiper-slider-nav .caption{
        width:20%;
        font-size:16px;
        text-transform:uppercase;
        color:var(--white);
        padding: 10px;
        text-align: center;
        cursor:pointer;
        background:rgba(0,0,0,.005);
    }
}
@media screen and (max-width: 1024px) {
    .swiper-slider-nav {
        display:none;
    }
    .swiperThumbs .swiper-pagination {
        background:var(--blue-light);
        position:relative;
        padding:12px 0;
    }
}

/*SWIPER SLIDER - INTRO Collection Section
======================================*/
.swiperThumbs-container {
    
}
.swiperThumbsNav {
    margin-top:-20px;
}
.swiperThumbsNav:before {
    content:"";
    position:absolute;
    top:20px;
    bottom:20px;
    left:0;
    right:0;
    background:var(--black);
}
.swiperThumbsNav .swiper-slide {
    text-align:center;
		opacity: 0.4;
     transition: .1s linear;
}
.swiperThumbsNav .swiper-slide-active, 
.swiperThumbsNav .swiper-slide-thumb-active {
    background-color: var(--blue-color);
    color: var(--white);
    	opacity: 1;
}
.swiperThumbsNav .thumb-box {
    margin:20px 0;
}
.swiperThumbsNav .title{
    font-size:24px;
    padding:16px 16px;
    color:var(--white);
    margin:0px;
}
@media screen and (max-width: 767px) {
  .swiperThumbsNav .title{
    font-size:20px;
  }
}
@media screen and (max-width: 991px) {
  .swiperThumbsNav .title{
    font-size:22px;
  }
}
/*BODY SECTIONS
======================*/
.mask {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.section-body-text {
    background:var(--blue-bg);
    color:var(--white);
}
.section-body-text h2,
.section-body-text h2 .subtitle{
    color:var(--white);
}
.section-body-text img {
    border-top-right-radius: 30% 30%;
        transform-origin: left;
}
.section-body-text.revert img {
    border-top-right-radius:unset;
    border-bottom-left-radius: 30% 30%;
        transform-origin: right;
}
.section-body-text .row{
    align-items:end;
}
.section-body-text.revert .row{
    align-items:stretch;
}

.section-body-text .place-text {
    padding:50px 3rem;
}
@media (min-width: 992px) { 
    .section-body-text .place-text {
        padding:70px 3rem;
    }
    .section-body-text .place-text .place-text-width{
        width:65%;
    }
}
@media (min-width: 1200px) { 
    .section-body-text .place-text {
        padding:80px 3rem;
    } 
    .section-body-text .place-text .place-text-width{
        width:55%;
    }
}
.section-body-text .place-text.bg-pattern {
    position:relative;
}
.section-body-text .place-text.bg-pattern:before {
    content:"";
    height:115px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
/*      background: url(/images/pattern-blue.svg) repeat-x right bottom;
    background-size: auto 35.3%;*/
    background: url(/media/l2mlt1su/pattern.svg) no-repeat left -22px top;
        background-size: 100%;
}
@media (max-width: 767px) { 
   .section-body-text .place-text.bg-pattern:before {
        height: 70px;
        width: 75%;
        background-position:left -22px top;
   }
}

/*BODY SECTIONS simple
======================*/
.section-body-text-simple {
    background: var(--grey-light);
}
.section-body-text-simple .row {
    align-items: center;
}
.section-body-text-simple .place-text {
    padding:40px 3rem;
}
@media (min-width: 992px) { 
    .section-body-text-simple .place-text {
        padding:0px 3rem 0px 3rem;
    }
}
@media (min-width: 1400px) { 
    .section-body-text-simple .text {
        width:75%;
    }
}
.section-body-text-simple:not(.revert) .sliderContainer,
.section-body-text-simple:not(.revert) img {
    border-top-right-radius: 35px 35px;
    border-bottom-right-radius: 35px 35px;
    transform-origin: right;
}  
.section-body-text-simple.revert .sliderContainer,
.section-body-text-simple.revert img {
    border-top-left-radius: 35px 35px;
    border-bottom-left-radius: 35px 35px;
    transform-origin: left;
}    
.section-body-text-simple .swiper .swiper-slide img{
    border-radius:0;
}
.section-body-text-simple:not(.revert) .sliderContainer,
.section-body-text-simple.revert .sliderContainer {
    overflow: hidden;
}

/*LOYALTY SECTIONS
----------------------------*/
.btns-list {
    display:flex;
    flex-direction:column;
    align-items: end;
    margin-top:30px;
}
.section-loyalty .button-bg {
    padding: 18px 42px 22px 120px;
    border-radius: 46px;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 90px;
}
.section-loyalty .button-bg:hover {
    justify-content: space-between;
}
.section-loyalty .button-bg span{
    font-size:18px;
    font-style: italic;
    margin-left: auto;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
    height:0px;
            
}
.section-loyalty .button-bg:hover span{
    visibility: visible;
    opacity: 1;
    height:auto
}
.section-loyalty .button-bg:before {
    content: "";
    width: 55px;
    background: url(/images/logo-icon.svg) no-repeat left center;
    filter: brightness(0) invert(1);
    background-size: 100%;
    display: inline-block;
    height: 50px;
    position: absolute;
    left: 36px;
    top: 18px;
}
.section-loyalty .button-bg div {
    background: rgba(0, 0, 0, .005);
}
@media (min-width: 768px) { 
    .section-loyalty .button-bg span{
        height:unset; 
    }
    .section-loyalty .button-bg {
        padding: 32px 42px 32px 120px;
        flex-direction: row;
        align-items: center;
        width: 580px;
    }
    .section-loyalty .button-bg:hover {
        justify-content: center;
        width: 100%; 
    }
}
@media (min-width: 992px) { 
    .section-loyalty .button-bg {
        padding: 32px 42px 32px 120px;
        border-radius: 46px;
        font-weight: 300;
        font-size: 20px;
        margin-bottom: 20px;
        display: flex;
        width: 580px;
    }
    .section-loyalty .button-bg:hover {
        width: 95%; 
    }
}
@media (min-width: 1400px) { 
     .section-loyalty .button-bg:hover {
        width: 80%; 
    } 
}
@media (min-width: 1600px) { 
    .section-loyalty .button-bg {
        margin-right: 15%;
    }
    .section-loyalty .button-bg:hover {
        width: 75%; 
    }
}


/*NEWS SECTIONS
----------------------------*/
.section-news h2{
    text-align:center;
    background: url(/images/leaf.svg) no-repeat top center;
    background-size: auto 20px;
    padding-top: 40px;
}
.section-news img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}
.rounded-box img{
    border-top-right-radius: 80px 80px;
    border-top-left-radius: 80px 80px;
}
.rounded-box .text{
    background:var(--white);
    border-bottom-right-radius: 80px 80px;
    border-bottom-left-radius: 80px 80px;
    padding:20px 20px 30px 20px;
    text-align:center;
}
.rounded-box h3,
.rounded-box .h3{
    font-size:24px;
    text-transform:uppercase;
    text-align:center;
}
.rounded-box .button {
    margin-top:10px;
}

/*INSTAGRAM SECTIONS
----------------------------*/
.section-instagram,
.section-instagram h2{
    text-align:center;
}
.section-instagram h2:before{
    content:"";
    background: url(/images/v.svg) no-repeat left 12px;
    background-size: auto 40px;
    padding-left: 40px;
}
.section-instagram h2:after{
     content:"";
    background: url(/images/v.svg) no-repeat right 12px;
    background-size: auto 40px;
    padding-right: 40px;
}
    
.insta-imgs {
   /* padding-top:30px;*/
    padding-bottom:30px;
    margin-right:-20px;
    margin-left: -20px;
}
.insta-imgs>* {
    padding-right: 20px;
    padding-left: 20px;
    position:relative;
}
@media (max-width: 1399px) { 
    .insta-imgs {
        margin-right:-15px;
        margin-left: -15px;
    }
    .insta-imgs>* {
        padding-right: 15px;
        padding-left: 15px;
    }  
}
@media (max-width: 991px) { 
    .insta-imgs {
        margin-right:-10px;
        margin-left: -10px;
    }
    .insta-imgs>* {
        padding-right: 10px;
        padding-left: 10px;
    }  
    .insta-imgs > div{
        margin-bottom:20px;
    }
}
.insta-imgs a:after{
    content:"";
    position:absolute;
    bottom:15px;
    right:40px;
    background:url(/images/social/instagram.svg) no-repeat right bottom;
    filter: brightness(0) invert(1); 
    z-index:1;
    width:40px;
    height:40px;
}
/*HOTELS LOGO
----------------------------*/
.sections-hotels-logo .h2{
    text-align:center;
    font-weight:300;
}
.hotels-logo {
  justify-content:center;  
}
.hotels-logo .column {
    width:14%;
    text-align:center;
}
.hotels-logo img{
    height: 120px;
    
}
@media (max-width: 1199px) { 
    .hotels-logo .column {
        width:20%;
    }
    .hotels-logo img{
        height: 100px;
    }
}
@media (max-width: 767px) { 
    .hotels-logo .column {
        width:33.333%;
    }
    .hotels-logo img{
        height: 80px;
        margin: 15px;
    }
}
@media (max-width: 480px) { 
    .hotels-logo .column {
        width:50%;
    }
}
/*NEWSLETTER
----------------------------*/
.section-newsletter{
    background-color:var(--blue-color);
    color:var(--white);
    font-size: 22px;
    font-weight: 400;
    text-align:center;
}
.newsletter .h3{
        font-weight:300;
        color:#fff;
}
.newsletter a{
    color:#fff;
}
@media (min-width: 768px) { 
    .newsletter {
        width:50%;
    }
}
@media (min-width: 1400px) { 
    .newsletter {
        width:33.33%;
    }
}
@media (max-width: 767px) { 
    .newsletter {
        width: 70%;
        margin-top:60px; 
    }
}
.newsletterform  {
    text-align:center;
}
/*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;
}

.contactForm select:has(option[value=""]:checked) {
    color: var(--blue-color);
}
/*
.contactForm select option:not([value]) {
    color:red;
}
.contactForm select option[selected=selected][value] {
    color: var(--blue-color);
}
*/
.contactForm label,
.contactForm .form-control::placeholder{
    color: var(--blue-color);
   /* text-transform:uppercase;*/
}
.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;
	color: var(--black);
    text-transform:unset;
}
.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;
}

.newsletterform  {
  color: var(--white);
   font-size: 16px;
}
.newsletterform .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  padding: 12px 15px;
  color: var(--white);
  font-size: 16px;
  font-weight:200;
}
.newsletterform .form-agree label,
.newsletterform  .form-control::placeholder {
  color: var(--white);
}

/*ICONS
====================*/

.z-top-bg{
    background:url(/images/z.svg) no-repeat top center;
    background-size:auto 20px;
    padding-top:50px;
}
.icon-top-bg {
    background:url(/images/hotel-heading-bg.svg) no-repeat top center;
    background-size:auto 80px;
    padding-top:100px;
}

/*INNER PAGES*/
@media (min-width: 992px) {
    .main-text {
        max-width:70%;
        margin:auto;
    }
}
@media (min-width: 1200px) {
    .main-text {
        max-width:50%;
    }
}

/*HOTELS LISTING
=======================*/
@media (min-width: 768px) {
    .section-collage .z-top-bg{
        padding-bottom:70px;
    }
}
@media (min-width: 1200px) {
    .section-collage .center-img{
        width: 100%;
        margin: auto;
        position: absolute;
        text-align: center;
        margin-top: -10%;
        margin-bottom: -10%;
        z-index:1;
    }
    .section-collage .center-img img{
        width:40%; 
        border:solid 15px var(--grey-light);
    }
    .section-collage .right-img {
        text-align:right;
        margin-top: -8%;
    }
    .section-collage .right-img img{
        margin-left:auto;
        max-width:70%;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .section-collage .place-text{
        margin-bottom:30px;
    }
    .section-collage .left-img{
        width: 45%;
    }
    .section-collage .center-img{
        width: 50%;
    }
    .section-collage .right-img{
        width: 30%;
        margin-top: 6%;
    }
    .section-collage .center-img{
        margin: 8% auto 0 auto;
        text-align: center;
        margin-left: -15%;
        margin-right: -15%;
        z-index:1;
    }
    .section-collage .center-img img{
        width:80%; 
        border:solid 10px var(--grey-light);
    }
}
@media (max-width: 767px) {
    .section-collage .place-text.extra-text{
        margin-bottom:30px;
    }
    .section-collage .left-img{
        width: 45%;
        margin-right: 5%;
    }
    .section-collage .right-img{
        width: 45%;
        margin-top: 10%;
        margin-left: 5%;
    }
    .section-collage .center-img{
        margin: 2% auto 0 auto;
        text-align: center;
        margin-left: -15%;
        margin-right: -15%;
        z-index:1;
        position: absolute !important;
        bottom: 6%;
        left: 50%;
    }
    .section-collage .center-img img{
        width:80%; 
        border:solid 10px var(--grey-light);
    }
}
.section-collage .place-text {
    z-index:2;
}
.section-collage .extra-text {
    align-self: end;
}

@media (min-width: 992px) {
    .section-collage .place-text:not(.extra-text) .text {
        padding-left: 50px;
    }
}
@media (min-width: 768px) {
    .section-collage .place-text:not(.extra-text) {
        padding: 0px 3rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-collage .place-text {
        padding: 0px 1.5rem!important;
    }
}    
@media (min-width: 992px) and (max-width: 1199px) {
    .section-collage .place-text {
        padding: 0px 3rem!important;
    }
}
@media (min-width: 1400px) {
    .section-collage .place-text-width  {
        width: 75%;
    }
    .section-collage .extra-text {
         padding-bottom:50px;
    }
}
@media (max-width: 767px) {
    .section-collage .place-text {
        text-align:center;
    }
}
    
.hotel-row {
    background: url(/images/leaf.svg) no-repeat top center;
    background-size: auto 20px;
}
.hotel-row .text{
    padding-left:50px;
}
@media (min-width: 1400px) { 
    .hotel-row h2{
        width:75%;
    }
}
.hotel-row .button {
    margin-top:15px;
}

/*SECTION OVER BG
===========================*/

.section-imgAsBg picture {
    display:block;
    height: 80vh;
    width: 100%;
}

.section-imgAsBg picture img{ 
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.section-imgAsBg .text-over-img {
    background:rgba(0,0,0,.005);
    color:var(--white);
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-100%, -50%);
    width: 80%;
}
@media screen and (min-width: 768px) {
    .section-imgAsBg .text-over-img {
        width: 50%;
    }
}
@media screen and (min-width: 1200px) {
    .section-imgAsBg .text-over-img {
        width: 40%;
    }
}
.section-imgAsBg .text-over-img h2,
.section-imgAsBg .text-over-img .subtitle{
    color:var(--white);
}


.timeline .container-spacing:after {
    content: "";
    position: relative;
    background: url(/images/pattern.svg) repeat-x;
    background-position: left bottom;
    height: 50px;
    width: 100%;
    margin: 30px auto -50px auto;
    display: block;
    filter: brightness(0) invert(1); 
}
.timeline .row {    
    align-items: stretch;
}
.section-body-text .timeline .place-text {
    padding-top:0;
}

.timeline-point {  
    padding-bottom:58px; 
    position:relative;
}
.timeline .timeline-point.in-view:not(:last-child) { 
    background:url(/images/timeline2.svg) no-repeat left top;
    background-size: 30px auto;
    animation: fadeIn 2s; 
}
.timeline .timeline-point.in-view:last-child { 
    background:url(/images/timeline2z.svg) no-repeat left top;
    background-size: 30px auto;
    animation: fadeIn 2s; 
}

.timeline .timeline-point > div {
  padding-left:100px;
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
  transform: translate3d(25%, 0, 0);
}
.timeline .timeline-point.in-view > div {
  transform: none;
  visibility: visible;
  opacity: 1;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.timeline .timeline-point h2{
    margin-bottom:20px;
}
.timeline .timeline-point .subtitle{
    padding-top: 10px;
}
.timeline .timeline-point .spacing {
    padding-left:20px;
}
@media screen and (max-width: 991px) {
    .timeline .timeline-point > div {
        padding-left:60px;
    }
}
@media screen and (min-width: 768px) {
    .timeline-holder {
        padding-top:60px;
    }
}
@media screen and (max-width: 767px) {
    .timeline-holder {
            padding: 40px 3rem;
    }
}

.awards-section {
    background:var(--white);
}
.awards-section h2{
    text-align:center;
    background: url(/images/leaf.svg) no-repeat bottom center;
    background-size: auto 20px;
    padding-bottom: 60px;
}
.awards-section .awards{
    padding-top:30px;
    padding-bottom:30px;
}
.awards .img-svg {
    height:120px;
}


/*Hotel Page
=======================================*/
.hotel-page .main-text .h1 {
    text-transform:uppercase;
}
.hotel-page .main-text-imgs {
    align-items:end;
}
@media screen and (min-width: 1200px) {
    .hotel-page .main-text-imgs .thumb {
        width: 58.33333333%!important;
    }
    .hotel-page .main-text-imgs .thumb:nth-child(1){
        text-align: left;
    }
    .hotel-page .main-text-imgs .thumb:nth-child(2){
        position: absolute !important;
        right: 0;
        bottom: 0;  
    }
    .hotel-page .main-text-imgs .thumb:nth-child(1) img{
        margin: 30px 0 60px auto;
        width: 90%;
    }
    .hotel-page .main-text-imgs .thumb:nth-child(2) img{    
        border: solid 15px var(--grey-light);
        width: 100%;
    }
}
@media screen and (max-width: 1199px) {
    .hotel-page .main-text-imgs .thumb:nth-child(1) img{
        margin: 30px -25% 50px auto;
        width: 100%;
    }
    .hotel-page .main-text-imgs .thumb:nth-child(2) img{
        border:solid 15px var(--grey-light);
        margin-left:-25%;
    }
}
@media screen and (max-width: 767px) {
    .hotel-page .main-text-imgs .thumb:nth-child(1) img{
        width: 95%;
        margin: 30px -60px 50px auto;
    }  
    .hotel-page .main-text-imgs .thumb:nth-child(2) img{
        margin-left:-60px;
    }
}

.hotel-page .section-body-text-simple {
    background:var(--white);
    color:var(--blue-dark);
}
.hotel-page .section-body-text-simple h2{
    color:var(--blue-dark);
}

/*Gastronomy Section
============================================*/
.section-gastronomy .container-spacing{
    background:var(--blue-bg);
    color:var(--white);
}
.section-gastronomy h2,
.section-gastronomy .subtitle{
    color:var(--white);
}
.section-gastronomy .place-text  {
    padding-bottom:30px;
}
.leaf-bg {
    background: var(--grey-light) url(/images/leaf.svg) no-repeat center center;
    background-size: auto 20px;
    height: 80px;
}
.hotel-page .section-body-text-simple {
    background: var(--grey-light);
}

/*Gallery
============================================*/
.gal-box {
  opacity: 0;  
}

/*  Filters GALLERY
====================================*/
.photoColumn img{
    margin-bottom:22px;
}

.filters {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;

}
.filter {
  padding: 10px 20px;
    color: var(--black);
  line-height: 1.5;
    border: 1px solid var(--black);
        font-weight: 400;
    font-size: 16px;
    margin:0 15px;
}
.filter:hover {
  cursor: pointer;
}
.filter.active {
    font-weight:600;
    background: var(--grey);
}


.hide { /* You can play with the seconds to change the "animation" */
  animation: hide .3s ease 0s 1 normal forwards;
  transform-origin: center;
  padding:0px;
}
.show:not(.collapse) { /* You can play with the seconds to change the "animation" */
    animation: show .3s ease 0s 1 normal forwards;    
    transform-origin: center;
}

@keyframes hide {
  0%{
    transform: scale(1);        
  }
  100% {
    transform: scale(0);        
    width: 0;
    height: 0;
    margin: 0;
  }
}
@keyframes show {
  0%{
    transform: scale(0);     
    width: 0;
    height: 0;
    margin: 0;   
  }
  100% {
    transform: scale(1);    
  }
}


/*Career Positions Details -
=============================*/
.careers-list {}
.accordion_page .accordion-item:first-of-type,
.accordion_page .accordion-item:first-of-type .accordion-button,
.accordion_page .accordion-item:last-of-type,
.accordion_page .accordion-item:last-of-type .accordion-button{
    border-radius:0;
}
.accordion-header .accordion-button {
    background: var(--white);
    padding:0px;
    text-decoration:none;
}  
.accordion-header .accordion-button:hover {
    background: var(--grey-light);
}
.accordion-button:not(.collapsed) {
    color: var(--blue-color);
    background: var(--grey-light);
}
.accordion-header h3{ 
    margin:0;
    padding: 4px;
}
.accordion_page h3 span {
    font-size: 22px;
    line-height: normal;
    margin-top:0px;
    padding:10px 15px;
    display:block;
}
.accordion-header a:hover{
    text-decoration:none;
}
.accordion_page .accordion-button::after {
    margin-right:15px;
}
.accordion_page .accordion-body {
      padding:15px;  
}
@media (max-width:1199px){
    .accordion_page .accordion-body {
          padding:20px;  
    }
}
.accordion_page .accordion-body ul{
    margin: 0 0 15px 30px;
}
.accordion_page .accordion-body .note {
    font-style: italic;
    font-size: 15px;
    color: var(--blue-color);
    font-weight: 600;
    padding-top: 15px;
}


/*PRESS ROOM
====================================*/
.press-item {
    display:flex;
    justify-content:center;
    padding:8px 10px;
    border-bottom:solid 1px var(--green-light);
    margin-bottom:10px;
}
.press-item:hover {
    border-bottom:solid 1px var(--blue-light);
}
.press-item .pDate {
    padding-right:20px;
    color: var(--blue-color);
}


/*404 page
============================================*/
.sitemap a{
    text-decoration:none;
        color: var(--dark-color);
}
.sitemap a:hover{
    text-decoration:underline;
}

/*LISTS
=======================*/
.u-list,
.body-content ul{
    list-style-type:none;
    margin-bottom:30px;
}
.u-list li,
.body-content ul li{
    background: url(/images/bullet.svg) no-repeat left 8px;
    padding-left: 30px;
    margin-bottom: 15px;
    background-size: 14px;
}
.text ul,
.place-text ul{
    list-style-type:none;
    margin-bottom:30px;
}
.text ul li:before,
.place-text ul li:before{
    content:"- ";
}


/*listing-subpages
==========================*/
.grey-bg .section-body-text-simple.listing-subpages:nth-of-type(2){
    padding-top:0px!important;
}
.listing-subpages .button {
    margin-top:15px;
}

/*CONCIERGE
===================================*/
.concierge-row > div > div {
     margin-bottom:30px;   
}
.concierge-row .rounded-box{
    height:100%;
    background:var(--white);
    border-top-right-radius: 80px 80px;
    border-top-left-radius: 80px 80px;
    border-bottom-right-radius: 80px 80px;
    border-bottom-left-radius: 80px 80px;
    padding-bottom:50px;
    position:relative;
}
.concierge-row img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}
.concierge-row .selection{
    position:absolute;
    bottom:20px;
        left: 50%;
    transform: translateX(-50%);
}


/*CURSOR
============================================*/
.cursor-outline, .cursor-dot {
    opacity: 0;
}
/*.cursor {
  border-radius: 50px;
  position: absolute;
  width: 20px;
  height: 20px;
  border: solid 1px #fff;
  z-index:1000;
}*/
.cursor-outline {
    border-radius: 50px;
    position: absolute;
    width: 100px;
    height: 100px;
    border: solid 1px #fff;
    background:#fff;
    pointer-events: none;
    font-size:16px;
    text-transform:uppercase;
}
.circleText {
  position: absolute;
  top:12px;
  left:12px;
  width: 76px;
  height: 76px;  
  max-height: 80vh;
  max-width: 80vw;
  overflow: visible;
  transform-origin: center center;
  stroke-opacity: 0.5;
  
  animation: ckw 3s linear infinite;
    transform-origin: 50% 50%;
    display: inline-block;
}
.circleText text {
  fill: var(--blank);
  font-weight: 600;
  font-size: 80px;
  letter-spacing: 2.5px;
}
@keyframes ckw {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Visible when running fancy.js */
.cursor-dot {
    border-radius: 50px;
    position: absolute;
     width: 80px;
    height: 80px;
    background-color: white;
    border: solid 1px #fff;
    pointer-events: none;
      z-index:1000;
}

/*.target,*/
.cursor-outline, 
.cursor-dot {
    /* needed for target (shared) */
    top: 50%;
    left: 10%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.5);

}
.target {
      display: inline-block;
}
/*
.target {
    border-radius: 0;
    border-radius: 50%;
    position: relative;
    width: 80px;
    height: 80px;
    border: solid 1px #07b0da;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 50px;
}*/
.target * {
  pointer-events: none
}