
.hr30-widget{height:calc(100vh - var(--header-height,0));min-height:600px;position:relative;background:var(--primary-color);color:var(--inverse-font-color)}.has-transparent-header .hr30-widget{height:100vh}.hr30-widget__media{position:relative;height:100%}.hr30-widget__media>*{width:100%;display:block;height:100%;object-fit:cover;object-position:center}.hr30-widget__content{position:absolute;bottom:120px;left:0;right:0;text-align:center;max-width:820px;margin:auto;padding:0 40px}.hr30-widget .title{color:var(--inverse-font-color)}.hr30-widget__media:after{background:linear-gradient(180deg,rgba(0,0,0,0) 36.1%,rgba(0,0,0,.7) 100%),linear-gradient(360deg,rgba(0,0,0,0) 66.2%,rgba(0,0,0,.7) 100%);content:'';position:absolute;top:0;left:0;width:100%;height:100%}.hr30-widget__title:last-child{margin-bottom:0}.hr30-widget--middle .hr30-widget__content{top:50%;transform:translateY(-50%);bottom:auto}.hr30-widget--middle .hr30-widget__media:after{background:linear-gradient(180deg,rgba(0,0,0,0) 36.1%,rgba(0,0,0,.7) 100%),linear-gradient(360deg,rgba(0,0,0,0) 66.2%,rgba(0,0,0,.7) 100%)}.hr30-widget__content--bigger{max-width:1260px}.hr30-widget--contained{margin-left:auto;margin-right:auto;max-width:1312px}@media(max-width:1399.98px){}@media(max-width:1199.98px){}@media(max-width:1023.98px){}@media(max-width:959.98px){.hr30-widget{height:calc(100vh - var(--header-height,0) - 52px);min-height:400px}.hr30-widget__content{bottom:30px}.has-transparent-header .hr30-widget{}}@media(max-width:767.98px){}@media(max-width:639.98px){}@media(max-width:575px){}
.uk-container-intro{
  width:1260px;
  padding:0 20px;   
}
.home-intro__title {
  max-width: 742px; 
}
.home-intro-section {
  padding: 112px 0;
  position: relative;
} 
.home-intro--item {
  position: relative;  
  z-index: 1;
}
.home-intro-section:after {
  content: '';
  width: 100%;  
  height: 327px;
  position: absolute;  
  bottom: 0;
  background: #1f1f1f;
}
.home-intro__title .tagline{
  padding-bottom: 24px;
  display: block;
}
.home-intro__content .home-intro__description > div {
  padding-left: 205px;
  letter-spacing: 0.7px;
}
.home-intro__item {
  display: flex;
  justify-content: end;
  position: relative;
  padding: 40px 0 0 0;
}
.home-intro__smallimg {
  z-index: 1;
  width: 430px;
  position: absolute;
  left: 0;
  padding-top: 71px;
  
}
/*.home-intro__smallimg:after {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
top: 20px;
border: solid 1px #999999;
left: -20px;
margin-top: 89px;
opacity: 0.5;
z-index: -1;
transition: 2s;
}
.home-intro__smallimg.border-animation:after{
width: 0;
height: 0;
}
*/

.home-intro__smallimg img {
  z-index: 1;
  box-shadow: 20px 4px 20px rgb(0 0 0 / 10%);
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  
  position: relative;
  left: 20px;
  top: -20px;
}
.home-intro__content {
  width: calc(100% - 320px);
}
.home-intro__bigimg {
  height: 514px;
  padding: 90px 0 0 0;  
  overflow: hidden;
}
.home-intro__bigimg img {;
  object-fit: cover;
  object-position: center center;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.home-intro__description .home-intro__btn {
  padding-top: 38px;
}

/*Property Page*/

.property-page.home-intro-section:after {
  height: 243px;
}

.home-intro-section.property-page { background-size: cover;
  background-position: center center;
}
.home-intro-section.property-page:before {
  content: '';
  display: block;
  background: linear-gradient(0deg, var(--Color-Scheme-1-Background, #FFFFFF), var(--Color-Scheme-1-Background, #FFFFFF)),
    linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 56.57%);
  width: 100%;
  height: 100%;  
  position: absolute;
  top: 0;
  opacity: 0.9;
}
.home-intro__item .mobile-show{display:none;}


.box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Horizontal Borders */
.box::before,
.box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #999999;
  left: 50%;
  transform: translateX(-50%);
  opacity: .5;
}

.box::before {
  top: 0;
}

.box::after {
  bottom: 0;
}

/* Vertical Borders */
.box span::before,
.box span::after {
  content: "";
  position: absolute;
  height: 0;
  width: 1px;
  background: #999999;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
}

.box span::before {
  left: 0;
}

.box span::after {
  right: 0;
}

/* Animate on class add */
.border-animation:before {
  animation: expand-horizontal-top 1s forwards;
}

.border-animation:after {
  animation: expand-horizontal-bottom 1s forwards 0.2s;
}

.border-animation span:before {
  animation: expand-vertical-left 1s forwards 0.4s;
}

.border-animation span:after {
  animation: expand-vertical-right 1s forwards 0.6s;
}

@keyframes expand-horizontal-top {
  to { width: 100%; }
}

@keyframes expand-horizontal-bottom {
  to { width: 100%; }
}

@keyframes expand-vertical-left {
  to { height: 100%; }
}

@keyframes expand-vertical-right {
  to { height: 100%; }
}
.home-intro-sectionbg {
    width: 100%;
    bottom: 20%;
    position: absolute;    
}
.home-intro-sectionbg img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: .17;
}
.home-intro-sectionbg:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(255 255 255 / 38%) 56.57%);
    bottom: 0;
    left: 0;
}




@media (max-width: 1260px) {
  .uk-container-intro {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .home-intro__item .desktop-show{display:none}
  .home-intro__item .mobile-show{display:block;}
  .home-intro-section {
    padding: 72px 0 42px;
  }

  .home-intro__title {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
  }

  .home-intro__content .home-intro__description > div {
    padding-left: 0;
    text-align: left;
  }

  .home-intro__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 0 0;
  }

  .home-intro__smallimg {
    left: auto;
    right: 0;
    padding-top: 0;
    align-self: flex-start;
    max-width: 250px;
    height: 180px;
    z-index: 3;
    box-shadow: none;
    overflow: hidden;
    order: 3;
    margin: 20px 32px 0 0;
  }
  .home-intro__smallimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }

  .home-intro__content {
    width: 100%;
    order: 1;
  }

  .home-intro__bigimg {
    padding: 55px 0 0 0;
    height: auto;
    max-height: 450px;
    overflow: hidden;
    width: 100%;
    order: 2;
  }
  .home-intro__bigimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }

  .home-intro__description .home-intro__btn {
    padding-top: 32px;
    text-align: left;
    order: initial;
  }
  .home-intro-section:after{height: 300px;}

  .property-page.home-intro-section:after {
    height: 320px;
  }


}


@media (max-width: 767.98px) {
  .home-intro__smallimg {
    width: 171px;
    height: 143px;
  }

  .property-page.home-intro-section:after {
    height: 280px;
  }
  .home-intro-section:after {
    height: 154px;
  }
  .home-intro__bigimg img {
    height: 282px;
  }
  .home-intro__title h1 {
    margin-bottom: 0;
  }
  .home-intro__btn a.uk-button-primary {
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .home-intro-section {
    padding: 85px 0 30px 0;
  }
  .home-intro__description > div {
    font-size: 0.9em;
  }
  .home-intro__bigimg {
    max-height: 302px;
  }
  .home-intro__bigimg img {
    height: 247px;
  }
  .property-page.home-intro-section:after {
    height: 220px;
  }

}
@media (max-width: 400px) {
  .home-intro__smallimg {
      height: 175px;
  }
}
.home-intro-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 50%;
}
@media (max-width: 767.98px) {
  .home-intro-section {
    background-image: none !important;
  }
  .hero-banner__content .title {
    height: 60px;
  }
  .hero-banner__content .title:before {
    width: 2px;
    height: 57px;
    position: absolute;
    left: 50%;
    bottom: -87px;
    transform: translateX(-50%);
    background-color: #000;
  }
  .hero-banner__content .title:after {
    content: '';
    width: 2px;
    height: 44px;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    background-color: #fff;
  }
}
/* Block: brand-location-section */

.brand-location-section-bg img {
  position: absolute;
  left: 0;
  top: 0;
  filter: grayscale(1);
  opacity: 0.9;
  width: 100%;
  height: 100%;
  transform: translate(-40%, 0px);
}
.brand-location__container {
  max-width: 1210px;
  position: relative; 
}
.brand-location-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(177deg, rgb(225 225 225) 0%, rgb(238 238 238 / 6%) 52%, rgb(238 238 238 / 11%) 100%);
}

/* Element: brand-location-section__intro (Left Column) */
.brand-location-section__intro {

}
.brand-location-section__card {
  padding-left: 30px;
  /*height: 580px;
  overflow-y: auto;*/
  position: relative;
  left: 20px;
}
.brand-location-section_sticky {
  position: sticky;
  top: 160px;
}
/* Element: brand-location-section__intro-heading */
.brand-location-section__intro-heading {
  color: #333;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}
.location-section__description {
  margin-bottom: 24px;
  font-weight: 500;
}
/* Element: brand-location-section__intro-text */
.brand-location-section__intro-text {
  font-size: 18px; /* Body text size */
  line-height: 1.6;
  color: #555; /* Slightly lighter body text */
  margin-bottom: 20px; /* Space between paragraphs */
}
.brand-location-section__intro-text:last-child {
  margin-bottom: 0; /* No bottom margin for the last paragraph */
}

/* Element: brand-location-section__content (Right Column containing cards) */
.brand-location-section__content {
  /* No specific styles needed here, UIkit grid handles layout */
}

.location-section__title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 110%;
}
.brand-location-section__content {
  width: calc(100% - 414px);
}
.brand-location-section__intro {
  width: 414px;
}
.location-section__description {
  margin-bottom: 24px;
}

.brand-location-card_item {
  display: flex;
  column-gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  margin-top: 0;
  z-index: 1;
  position: relative;
  padding-right: 6px;
  align-items: center;
}

.text-mask {
  width: 800px;
  height: 731px;
  left: -100px;
  position: absolute;  
  margin-top: -130px;
}
.text-mask img {
  z-index: 1;
  width: 100%;
  height: 100%;  
  position: relative;
}
.brand-location-section .tagline {
  color: #aaa;
  display: block;
  padding: 0 0 32px 0;
  
}

/*Start Property Brand Location Section*/

.property-brand-loc-section {
  padding: 80px 0;
  position: relative;
  background-size: 72%;
  background-position: -80% 270%;
  background-repeat: no-repeat;
  z-index: 1;
}
.property-brand-loc-section .brand-location__container {
  z-index: 1;
}
.property-brand-loc-section:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: 1;
  bottom: 0;
  background: linear-gradient(0deg, #212121d1, #212121), radial-gradient(35.51% 48.01% at 23.99% 51.99%, rgba(33, 33, 33, 0) 0%, #212121 100%);
}

.brand-location__content{
  z-index: 2;
  position: relative;
}
.brand-location-section_sticky h2 {
  margin-bottom: 32px;
}
@media (max-width: 1400.98px) {
  .text-mask {
    left: -10%;
  }
}

@media (max-width: 1280.98px) {
  .text-mask {
    left: -20px;
  }
  .brand-location-section__card-image-wrapper img {
    height: 250px;
    object-fit: cover;
  }
}
@media (max-width: 1024.98px) {
  .brand-location-section__intro {
    width: 360px;
  }
  .brand-location-section__content {
    width: calc(100% - 360px);
  }
}

@media (min-width: 960.98px) {
  .brand-location-card_bullet {
    display: none;
  }
  .brand-location-section__card .uk-slider-items {
    flex-direction: column;
  }
  .brand-location-card_item{width:100%;}
}

@media (max-width: 960.98px) {
  .brand-location__container{
    padding: 0;   overflow: hidden;
  }
  .brand-location__container .uk-grid{
    margin: 0;
  }

  .brand-location-section__intro {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .brand-location-section__content {
    width: 100%;padding: 0;
  }
  .brand-location-section__card {
    padding-left: 0;
    position: relative;
    left: 0;
  }
  .text-mask {
    display: none;
  }
  .brand-location-card_item{
    flex-direction: column;
  }
  .brand-location-card_item .brand-location-section__card-image-wrapper, 
  .brand-location-card_item .brand-location-section__card-body {
    width: 100%;
  }
  .brand-location-card_item .brand-location-section__card-image-wrapper img{
    height: auto;
    object-fit: cover;
    width: 100%;
  }
  .brand-location-card_item .brand-location-section__card-body{    padding-top: 24px;}
  .brand-location-card_item {
    padding-right: 0;
  }
  .brand-location-card_bullet ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    column-gap: 15px;
    padding-bottom: 10px;
    padding-top: 20px;
  }
  .brand-location-card_bullet ul li {
    list-style: none;
  }
  .brand-location-card_bullet ul li a {
    width: 8px;
    height: 8px;
    display: block;
    border: solid 1px #FFF;
    transform: rotate(45deg);
  }
  .brand-location-card_bullet ul li.uk-active a{
    background: #FFF;
  }
  .brand-location-card_bullet ul li a:hover, .brand-location-card_bullet ul li a:focus{
    background: #FFF;
  }
  .brand-location-card_item{
    opacity: .4;
    margin-bottom: 0;
    padding-bottom: 14px;
  }
  .brand-location-card_item.uk-active {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .brand-location-section {
    padding: 44px 0 34px;
  }
  .brand-location-card_item{padding: 0 12px 15px; width: 85%;}

}

/*End Property Brand Location Section*/

/* PS editor level css start*/
.ng-star-inserted .brand-location-section-bg img{
  transform: translate(0%, 0px);
}

/* PS editor level css end*/

.home-offer-section {
  padding: 75px 0;
}
.home-offer__content {
  max-width: 307px;
}
.home-offer__slider {
  width: calc(100% - 307px);
}
.home-offer__grid {
  display: flex;
  align-items: center;
}
.home-offer__content h2 {
  padding: 16px 0 4px 0;
}
.home-offer__text {
  padding-bottom: 16px;
}

.home-offer__slider .uk-slider-items{
  column-gap: 24px;
  margin-left: 0;
}
.home-offer__slider .uk-width-3-4 {
  width: 53%;    
  padding-left: 0;
}
.home-offer__slider .slider-arrow a {
  background: rgba(234, 234, 234, 1);
  color: var(--primary-cta-font-color);
  box-shadow:0px 1px 8px 0px rgba(0, 0, 0, 0.1);
}

.home-offer__slider .slider-arrow a.uk-slidenav-previous{   margin-left: 28px;}
.home-offer__slider .slider-arrow a.uk-slidenav-next{   margin-right: 28px;}



/*
.home-offer__slider .slider-arrow a:hover, .home-offer__slider .slider-arrow a:focus{
box-shadow: 0px 2px 20px rgba(189, 189, 189, 1);
color: var(--primary-cta-font-color);
}*/


.home-offer_slider_text {
  max-width: 345px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  opacity: 0.8;
  visibility: visible;
}
.home-offer__slider .uk-panel{padding-bottom: 68px;}
.home-offer_slider_text h5{    margin-bottom: 10px;    font: var(--h5-title-fonts);}
.home-offer-slider_btn {
  padding: 16px 0 0 0;
}

.home-offer__slider .uk-active .home-offer_slider_text{  
  opacity: 1;
  visibility: visible;
}
.home-offer__slider .uk-width-3-4{
  opacity:0.5;
  pointer-events: none;
}
.home-offer__slider .uk-width-3-4.uk-active{
  opacity:1;
  pointer-events: all;
}
.home-offer__slider img {
  width: 100%;
  height: 642px;
  object-fit: cover;
  object-position: center center;
}
.home-offer__slider .slider-bullet{display:none}
@media (max-width: 1100px) {
  .home-offer__slider .uk-width-3-4 {
    width: 50%;
  }
}

@media (max-width: 960.98px) {
  .home-offer__grid {
    flex-direction: column;
  }
  .home-offer__content {
    max-width: 100%;
  }
  .home-offer__slider {
    width: 100%;
  }
  .home-offer__slider {
    width: 100%;
    padding: 54px 0px 0 20px;
  }
  .home-offer__slider img{height: 542px;        width: 100%;}
  .home-offer__slider .slider-arrow{display:none}
  .home-offer__slider .slider-bullet{display:block}

  .slider-bullet ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
    column-gap: 15px;
    padding-bottom: 2px;
  }
  .slider-bullet ul li {
    padding: 0;

  }
  .slider-bullet ul li a{
    width: 8px;
    height: 8px;
    display: block;
    border: solid 1px #000;
    transform: rotate(45deg);
    border-radius: 0;
  }
  .home-offer_slider_text{
    bottom: -20px;
  }
  .home-offer__slider .uk-slider-items{
    margin-left: 0;
  }

}

@media (max-width: 767.98px) {
  .home-offer-section .uk-container{
    padding-left: 30px;
    padding-right: 30px;
  }
  .home-offer-section {
    padding: 60px 0 70px;
  }
  .home-offer__slider img {
    height: 300px;
  }
  .home-offer__slider .uk-width-3-4 {
    width: 70%;
  }  
  .home-offer__slider .uk-panel {
    padding-bottom: 0;
  }
  .home-offer_slider_text {
    width: 95%;
    bottom: -21px;
    position: relative;
    margin: -105px auto;
    box-shadow: 0 -10px 10px #0000001A;    
  }
  .slider-bullet ul {
    margin: 25px 0 0 0;
  }
}

@media (max-width: 640.98px) {
  .home-offer__slider .uk-width-3-4 {
    width: 100%;
  }
  .home-offer__slider img {
    width: 100%;
  }
}
.home-award-section {
  padding: 80px 0;
  position: relative;
  /*
  background: linear-gradient(0deg, #000000d1, #000000c2), linear-gradient(180deg, rgb(0 0 0 / 61%) 27.32%, rgb(0 0 0 / 92%) 100%), linear-gradient(180deg, #212121 17.46%, rgb(33 33 33 / 82%) 38.81%);
  */
  overflow: hidden;
}
/*.home-award-section:after {
content: '';
background: url(https://assets.milestoneinternet.com/bh-hoteles-colombia/site-images/place-holder/awards-background.jpg);
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
pointer-events: none;
background-size: cover;
background-position: center center;
filter: opacity(0.1);
}
*/
.home-award-section:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  pointer-events: none;
  opacity: 0.9;
  /* background:linear-gradient(180deg, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.44) 60%); */
}
body.portal-temp-home .home-award-section:after {
   background:linear-gradient(180deg, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.44) 60%);
}
.home-award-section-dark:after {
  background: linear-gradient(222deg, #0000001c, var(--Color-Scheme-1-Background, #00000094)), linear-gradient(279deg, #000000e8, #00000003), linear-gradient(132deg, rgb(0 0 0 / 0%) 41.63%, rgb(0 0 0 / 38%) 89.32%), linear-gradient(4deg, #00000045 0.03%, rgb(0 0 0 / 0%) 45.68%);
}

.home-award-bg {
  width: 100%;
  height: 100%;  
  position: absolute;
  top: 0;
  opacity: 1;  
}

.home-award__content {
  max-width: 550px;
}
.home-award__content h2{
  filter:opacity(1);
}
.home-award__images {
  width: calc(100% - 550px);
  overflow: hidden;
}
.home-award__grid {
  column-gap: 48px;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
.home-award__content .tagline {
  color: rgba(170, 170, 170, 1);
  padding: 0 0 32px 0;
  filter: opacity(1);
}
.inverse-font-color .home-award__text {
  color: var(--primary-cta-color);
  padding: 12px 0 0 80px;
  filter: opacity(1);
}
.home-award__text .home-award__btn {
  padding: 32px 0 0 0;
}
.home-award__images ul {
  list-style: none;
  display: flex;
  column-gap: 48px;
}
.home-award__images ul li {
  position: relative;
}
.home-award__images ul li:before {
  content: '';
  width: 1px;
  height: 100vh;
  display: block;  
  background: #fff;
  position: absolute;
  right: -24px;
}
.home-award-bg img {
  width: 100%;
  height: 100%;  
  opacity: 1;
  object-fit: cover;
  object-position: 0% 30%;
  filter: grayscale(1);
}
.home-award-dark-bg img{ 
  opacity: 1;
}
.home-award__images ul li:last-child:before {
  display: none;
}



@media (max-width: 1200.98px) {
  .home-award__content {
    max-width: 480px;
  }
  .home-award__images {
    width: calc(100% - 480px);
  }
}

@media (max-width: 1100.98px) {
  .inverse-font-color .home-award__text {
    padding: 12px 0 0 30px;
  }
}

@media (max-width: 1050.98px) {
  .home-award__grid {
    column-gap: 20px;
  }
  .home-award__content {
    max-width: 450px;
  }
  .home-award__images {
    width: calc(100% - 450px);
  }

}

@media (max-width: 960.98px) {
  .home-award__grid {
    flex-direction: column;
    row-gap: 48px;
  }
  .home-award__content {
    max-width: 100%;
  }
  .inverse-font-color .home-award__text {
    padding: 12px 0 0 0px;
  }
  .home-award__images {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-award__images ul{    padding: 0;}
  .home-award-section {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .home-award__images ul {
    padding: 0;
    column-count: 2;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 38px;
    row-gap: 38px;
  }
  .home-award__images ul li:before{display:none;}

}
.home-social-section {
  padding: 90px 0;
  position: relative;    
  overflow: hidden;
  
}
.home-social-section:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  opacity: 0.2;
  filter: grayscale(100%);
  background-image: url(https://assets.milestoneinternet.com/bh-hoteles-colombia/site-images/image-noindex/home-social-bg.jpg);
  background-size: cover;
  background-position: center -190%;
  background-repeat: no-repeat;

}
.home-social-container {
  max-width: 1440px;
  position: relative;
}
.home-social-grid {
  display: flex;
  column-gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.home-social-bh-logo {
  position: absolute;
  left: 0;
  padding-top: 70px;
  z-index: 1;
}
.home-social-bh-logo img{width: 100%;}

.home-social__left {
  max-width: 518px;
  row-gap: 24px;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.home-social__right {
  max-width: calc(100% - 518px);
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.home-social__rtimg {
  display: flex;
  column-gap: 60px;
}
.home-social__feed .home-social_feed__text {
  font: var(--tagline-fonts);
  color: rgba(102, 102, 102, 1);
  letter-spacing: 4.3px;
  padding: 0 0 24px 0;
  text-transform: uppercase;
}
.home-social_btn {
  padding-top: 4px;
}
.home-social__ltimg{width:494px;}
.home-social__lbimg{width:341px;margin: 0 0 0 auto;}
.home-social__rtimage{width:252px;margin-top: 99px;}
.home-social__feed {
    max-width: 303px;
}
.home-social__rbimg{width:394px;}



.home-social__ltimg, .home-social__rtimage, .home-social__lbimg, .home-social__rbimg {
  overflow: hidden;
}
.home-social__ltimg img, .home-social__rtimg img, .home-social__lbimg img, .home-social__rbimg img {
  width: 100%;
  transform: scale(1);
  transition: 1s;
}
.home-social__ltimg img:hover, .home-social__ltimg img:focus-within,
.home-social__rtimg img:hover, .home-social__rtimg img:focus-within,
.home-social__lbimg img:hover, .home-social__lbimg img:focus-within,
.home-social__rbimg img:hover, .home-social__rbimg img:focus-within{
  transform: scale(1.2);
}


.home-social-section:after{
  content: '';
  background: linear-gradient(180deg, #FFFFFF 50.05%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.home-social-bg {
  position: absolute;
  top: 0;
  filter: grayscale(1);
  opacity: .2;
}
.home-social-bg img {
  width: 100%;
  transform: translate(0px, 160px);
}




@media (max-width:960px) {
  .home-social__rbimg, .home-social__rtimage, .home-social__lbimg{display:none;}
  .home-social-grid{grid-row-gap:40px;flex-direction: column;}
  .home-social__right, .home-social__left{max-width:100%;}
  .home-social__ltimg, .home-social__ltimg img{width:100%}
  .home-social-section{padding:80px 0px;}
  .home-social__feed {padding: 0px 10px;}
  .home-social__feed h2{font-size:36px;}
  .home-social__feed {
    max-width: 100%;
  }
}
@media (max-width:767px) {
  
  .home-social-section:before {
    background-position: 80%;
  }
}
.property-location-map {
  height: 100%;
  background: #212121;
  position: relative;  
}
.property-location_grid {
  display: flex;
}
.property-location_lside {
  z-index: 1;
  max-width: 600px;
  padding-right: 35px;  
  position: relative;
}
.property_rside_img img {
  width: 55%;
  height: 813px;
  position: absolute;
  opacity: 1;
  right: 0;
  background-size: cover;  
  object-fit: cover;
  bottom: 0;
}
.property_rside_img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background:radial-gradient(46.71% 60.18% at 60% 46.38%, rgba(33, 33, 33, 0) 50%, #212121 100%); 
}
.property-location_lside .tagline {
  color: #aaa;
  padding-bottom: 32px;
}
.property-location_lside h2 {
  padding-bottom: 12px;
}
.property-location_tpimg {
  padding: 50px 0 150px;
}
.property-location_tbimg {
  position: absolute;
  bottom: -50px;
  right: 0;
  margin-right: -190px;
}
.mobile__map{
  display:none
}

@media (max-width: 1399.98px) {
  .property-location_lside {
    max-width: 480px;
    padding-right: 25px;
  }
  .property_rside_img img {
    width: 60%;
  }


}



@media (max-width: 1199.98px) {
  .property-location-map {
    padding: 30px 0;
  }
  .property-location_grid {
    min-height: auto;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .property-location_lside {
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
    order: 2;
  }
  .property_rside_img {
    position: relative;
    width: 100%;
    height: 450px;
    order: 1;
    top: auto;
    left: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .property_rside_img img {
    position: relative;
    width: 100%;
    height: 100%;
    right: auto;
    top: auto;
    object-position: center;
  }
  .property_rside_img:after {
    background: linear-gradient(to top, rgba(33, 33, 33, 0.9) 0%, rgba(33, 33, 33, 0) 100%);
  }

  .property-location_lside .tagline {
    padding-bottom: 15px;
  }
  .property-location_lside h2 {
    padding-bottom: 15px;
  }
  .property-location_tpimg {
    padding: 30px 0;
    text-align: start;
  }
  .property-location_tbimg {
    position: absolute;
    margin-right: 20px;
  }


}



@media (max-width: 1023.98px) {  
  .property_rside_img:after{
    background:none;
  }
}

@media (max-width: 959.98px) {
  .property-location_tbimg {
    margin-top: -30px;
  }
  .property-location_tpimg img{
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .property_rside_img {
    height: auto;
  }
  .property_rside_img img {
    height: 437px;
    object-position: 37%;
  }
  .property-location-map .uk-container {
    padding: 0;
  }

  .desktop__map{
    display:none;
  }

  .mobile__map{
    display:block;
  }

  .property-location_lside {
    padding: 0 20px; 
    margin-top: -100px;
  }
  .property-location_tpimg {
    height: 230px;
    padding: 30px 0;
    position: relative;
    padding-top: 50px;

  }
  .property-location_tbimg {
    margin-top: -20px;
  }
  .property-location_tpimg img { 
    width: 70%;  
    height: 230px;        
    object-fit: cover;
  }
  .property-location_tbimg img {
    width: 153px;
    position: relative;
    top: 20px;
  }

}


/* PS editor level css start*/

.ng-star-inserted .property_rside_img img{
  height: 600px;
}
.ng-star-inserted .property-location_tbimg{
  bottom: 0px;
}

/* PS editor level css end*/
.property-hm-zizzag-snippet {
  background: linear-gradient(180deg, rgba(238, 238, 238, 0.933333) 74.94%, rgba(255, 255, 255, 0.933333) 100%);
}
.hm-zigzag-container {
  max-width: 1440px;
  margin: 0 auto;
  padding:208px 20px 72px 30px;
}
.hm_zigzagsnippet_item {
  display: flex;
  column-gap: 55px;
}
.hm_zigzagsnippet_item:nth-child(odd) {
  padding-right:165px;
}
.hm_zigzagsnippet_content {
  width: calc(100% - 600px);
}
.hm_zigzagsnippet_content h2 {
  padding: 32px 0;
  margin-bottom: 0;
}
.hm_zigzagsnippet_item:nth-child(odd)  .desc {
  padding-right: 30px;
}
.hm_zigzagsnippet_btn {
  padding: 40px 0 0 0;
}
.hm_zigzagsnippet_item:nth-child(even) {
  flex-direction: row-reverse;
  padding: 0 70px 0 123px;
  align-items: end;
  margin: -145px 0 0 0;
}
.hm_zigzagsnippet_item:nth-child(even) .desc {

}
.hm_zigzagsnippet_item:nth-child(even) .hm_zigzagsnippet_content {
  width: calc(100% - 630px);

}

@media (min-width: 1250px) and (max-width:1349.98px){
  .hm_zigzagsnippet_item:nth-child(odd) {
    padding-right: 120px;
    column-gap: 100px;
  }
  .hm_zigzagsnippet_item:nth-child(even){
    padding: 0 50px 0 70px;
    column-gap: 100px;
  }

}

@media screen and (min-width:1024px) and (max-width: 1249.98px) {
  .hm_zigzagsnippet_img img{
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  .hm_zigzagsnippet_item:nth-child(odd) {
    padding: 0px 20px 0px 20px;
    column-gap: 80px;
  }
  .hm_zigzagsnippet_item:nth-child(odd) .hm_zigzagsnippet_content {
    width: calc(100% - 490px);
  }
  .hm_zigzagsnippet_item:nth-child(even){
    padding: 0px 20px 0px 20px;
    column-gap: 80px;
    margin: -100px 0 0 0;
  }
  .hm_zigzagsnippet_item:nth-child(even) .hm_zigzagsnippet_content {
    width: calc(100% - 490px);
  }

}

@media (max-width: 1023.98px) {
  .hm-zigzag-container{padding:110px 0px 72px 0px}
  .hm_zigzagsnippet_item:nth-child(odd) {
    padding-right: 0;
  }
  .hm-zigzag-container{
    padding-bottom:0;
  }
  .hm_zigzagsnippet_img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
  }

  .hm_zigzagsnippet_item{
    flex-direction: column;

  }
  .hm_zigzagsnippet_item::nth-child(odd) {
    padding-right:40px;
  }
  .hm_zigzagsnippet_content{
    width: 100%;
    padding: 55px 20px 0;
  }

  .hm_zigzagsnippet_item:nth-child(even){
    flex-direction:column;
    margin: 0;
    padding: 0;
  }
  .hm_zigzagsnippet_img {
    width: 100%;
  }
  .hm_zigzagsnippet_item:nth-child(even) .hm_zigzagsnippet_content {
    width: 100%;
  }
  .hm_zigzagsnippet {
    display: flex;
    flex-direction: column;
    row-gap: 55px;
  }
  .hm_zigzagsnippet_item:nth-child(odd) .hm_zigzagsnippet_img {
    padding-right: 63px;
  }
  .hm_zigzagsnippet_item:nth-child(even) .hm_zigzagsnippet_img {
    padding-left: 63px;
  }
  .hm_zigzagsnippet_item:nth-child(odd)  .desc {
    padding-right: 0;
  }
  .hm_zigzagsnippet_content h2 {
    padding: 0 0 18px;
  }

}

@media (max-width: 959.98px) {
  .negociaciones .hm_zigzagsnippet_item:nth-child(even) .hm_zigzagsnippet_content{
  	   padding: 55px 20px;
  }

}

@media (max-width: 767.98px) {
  .hm_zigzagsnippet_img img {
    height: 312px;
  }
  .hm_zigzagsnippet_btn a.uk-button-primary {
    color: #000;
    background: transparent;
  }
  .hm_zigzagsnippet_btn a.uk-button-primary:focus, .hm_zigzagsnippet_btn a.uk-button-primary:hover {
    color: var(--primary-cta-font-hover-color);
    
  }
  .hm_zigzagsnippet_btn .uk-button-primary:before {
    background: #D9D9D9;
  }
  .hm_zigzagsnippet_btn a.uk-button-primary:focus:before, .hm_zigzagsnippet_btn a.uk-button-primary:hover:before {
    background:  #000;
  }
}
.large-banner-section {
  position: relative;
  padding: 80px 0 0;
  background: linear-gradient(0deg, var(--Color-Neutral-neutral-lightest, #eeeeee0a), var(--Color-Neutral-neutral-lightest, #EEEEEE)), linear-gradient(180deg, rgba(255, 255, 255, 0) 41.13%, #FFFFFF 100%);

}
.large-banner__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px 80px;
  position: relative;
}
.large-banner__container:after {
  content: '';
  position: absolute;
  width: 57%;
  height: 264px;
  bottom: 0;
  background: #212121;
  right: 0;
}
.large-banner-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.large-banner-img:after {
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.92%, rgba(0, 0, 0, 0.7) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.large-banner-img img{
  height: 800px;
  object-fit: cover;
  object-position: center center;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-in-out;
  width:100%;
}

.large-banner__item {
  position: relative;
  z-index: 2;
}
.large-banner__content {
  position: absolute;
  top: 0;
  max-width: 760px;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0 0 106px;
}
.large-banner__grid {
  display: flex;
  gap: 32px;
  flex-direction: column;
}

.large-banner__right{
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-in-out;
}

.large-banner__grid .h2 {
  font: var(--h2-title-fonts);
  color: var(--inverse-font-color);
}
.large-banner__right  .h1 {
  font: var(--h1-title-fonts);
  color: var(--inverse-font-color);
}

.large-banner__right .large-banner__btn {
  padding: 21px 0 0 0;
}
.large-banner__grid .tagline {
  color: var(--inverse-font-color);
}
.large-banner__text {
  color: var(--inverse-font-color);     

  letter-spacing: 0.7px;
}

@media (max-width: 991px) {
.large-banner__content{max-width:100%;padding:0 40px 0 40px;}
}

@media (max-width: 767.98px) {
    .large-banner-section{padding:60px 0 0;}
  .large-banner-img{
    height:auto;
    padding:0;
    width:100%;
  }
  .large-banner-img img{
    height:100%;
    object-fit:cover;
    width:100%;
  }
  .large-banner__content{
    justify-content:space-between;
    height:auto;
    padding:40px 0px 0px;  
    position:relative;  
  }
  .large-banner__container{padding:0 30px 60px;}
  .large-banner__container:after{
    width: 100%;
    height: calc(100% - 200px);
  }
  .large-banner-section:after{
    display:none;
  }

  .large-banner__grid{
    display:block;
    width:100%;
  }
  .large-banner__grid{
    text-align:left;
  }
  .large-banner__text{
    padding:30px 0 30px 0;
  }
  .large-banner-section .uk-button-primary-inverse{
    color:var(--secondary-cta-font-color);
    background:var(--secondary-color);
  }
  .large-banner-section .uk-button-primary-inverse:before{    
    background:var(--secondary-color);
  }
  
}

@media (max-width: 575px) {
.large-banner__container:after{
    width: 100%;
    height: calc(100% - 200px);
  }
}
/* Header Starts */ 

:root {
  --header-height: 102px;
}
.ng-star-inserted #header {
  margin-bottom: 100px;
}
.ng-star-inserted .header {  
  background: var(--header-color);
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1);
  --header-height: 102px;  
}
.ng-star-inserted  .header-mainmenu__link, .ng-star-inserted  .header-mainmenu__link:hover, .ng-star-inserted  .header-mainmenu__link:focus, .ng-star-inserted  .header__toggler-btn .is-togglemenu-close, .ng-star-inserted  .header__logo, .ng-star-inserted  .header__phone, .ng-star-inserted  .header-langsel__control, .ng-star-inserted  .header__phone-text, .ng-star-inserted  .header__phone .template-icon, .ng-star-inserted  .header-langsel .template-icon {
  color: var(--section-title-font-color);
}
.ng-star-inserted #header{
  margin-bottom: 100px;
}
.header-collaps_child{
  position: relative; 
}

.header-collaps-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.9;
  position: absolute;
  top: 0;
  object-position: 0 -30%;
}

.header {
  position: fixed;  
  z-index: 11;
  background: var(--bg-header);
  color: var(--header-font-color);
  left: 0;
  top: 0;  
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
}

.header.is-fixed, .is-fixed .header {
  background: var(--header-color);
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1);
  --header-height: 102px;
}
.is-fixed #header {
  padding-bottom: var(--header-height);
}
.header__container {
  width: 100%;
  max-width: 100%;
  margin: 0 45px;
}

.header__grid {
  align-items: center;
  margin-left: -20px;
}

.header__grid > * {
  padding-left: 20px;
}

.header__col {
  flex-shrink: 0;
  flex: 1;
}

.header__col--center {
  text-align: center;
  width: var(--logo-width);
  flex: 0;
  padding: 0;
  order:1;
}

.header__logo {
  width: var(--logo-width);
  height: var(--logo-height);
  display: inline-block;
  align-items: center;
  color: var(--header-color);
}

.header__logo > * {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__logo-mobile-img{
  display:none;
}
.is-fixed .header__logo-img{
  display:none;
}
.is-fixed .header__logo-mobile-img{
  display:block;
}


.header-collapsible {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -9999;
  -webkit-overflow-scrolling: touch;
  transition: opacity .4s ease;
  background: linear-gradient(0deg, #E4E4E4, #E4E4E4),
    linear-gradient(180deg, #E4E4E4 30.94%, rgba(228, 228, 228, 0) 100%);
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  display:none !important;
}

.slide-booking-widget{
  display:none!important;
}
.slide-booking-widget.uk-open{
  display:block!important;
}


.header-social {
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: absolute;
  bottom: 40px;
  left: 15px;
}

.header-social__item + .header-social__item {
  margin-left: 15px;
}

.header-social__link {
  padding: 5px;
  color: var(--inverse-font-color);
  display: inline-flex;
  align-items: center;  
}

.header-collapsible__scroll {
  z-index: 1;
  height: 100%;  
  position: relative;
}

.header-collapsible__content {
  width: 721px;
  max-width: 100%;
  padding: 0 0 30px 117px;
  /* overflow: auto; */
  padding-top: 83px;
  /* scrollbar-color: var(--border-color) transparent; */
  /* scrollbar-width: thin; */
  z-index: 1;
}

.header-collapsible__media {
  width: calc(100% - 721px);
  max-width: 100%;
  flex: 1;
  height: 100vh;    z-index: 1;
}


.header__col--left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  order:2;

}

.header__col--right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  order:3;
}

.header-mainmenu__item {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
}
.header-mainmenu__item:first-child {margin-left:20px;}
.header-mainmenu__link {
  text-transform: var(--header-fonts-text-transform);
  color: var(--header-color);
  padding: 10px 0px;
  font: var(--header-fonts);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  filter: opacity(1);
}
.header-mainmenu__link:after{
  content: '';
  width: 0;
  position: absolute;
  background: var(--inverse-font-color);
  height: 1px;
  bottom: 0;
  transition: width .6s;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.header-mainmenu__link:hover:after, .header-mainmenu__link:focus:after,  .header-mainmenu__link.navON:after{
  width: 100%;
}

.is-fixed .header-mainmenu__link:after{
  background: var(--border-color);
}

.header-mainmenu__link.navON {
  text-decoration: none;
  color: var(--secondary-color)
}
.header-mainmenu__link.navON:after{
  width: 100%;
}

.header-mainmenu__item + .header-mainmenu__item {
  margin-left: 15px
}

.header-mainmenu__link:hover,.header-mainmenu__link:focus-visible{
  color: var(--secondary-color);
  text-underline-offset: 8px;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  font: var(--header-fonts);
  color: var(--header-color);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  position: relative;
}

.header__phone .template-icon {
  margin-right: 13px;
  font-size: 18px;
  line-height: 1;
  color: var(--inverse-font-color);
}


.header__phone-text {
  display: inline-flex;
  color: var(--header-color);
  align-items: center;
  padding: 15px 0;
  filter:opacity(1);
}


.ng-star-inserted .header__phone-text:hover, .header__phone-text:focus{
  color: var(--primary-color);
}
.header__phone-text:hover, .header__phone-text:focus{
  color: var(--header-color);
}
.header__phone-text .header__phone-no {
  position: relative;padding: 10px 0;
}
.header__phone-text .header__phone-no:after {    
  content: '';
  width: 0;
  position: absolute;
  background: var(--inverse-font-color);
  height: 1px;
  bottom: 0;
  transition: width .6s;
  margin: 0 auto;
  left: 0;
  right: 0;
}
div#header-collaps .header__phone-text .header__phone-no:after {
  background: var(--text-color);
}
div#header-collaps .header__phone-text .header__phone-no {
  border-bottom: none !important;
}
.header__phone-text:hover .header__phone-no:after, .header__phone-text:focus .header__phone-no:after{
  width:100%;
}
.is-fixed .header__phone-text:hover .header__phone-no:after{
  background: var(--border-color);
}
/*.header__phone-text:hover .header__phone-no, .header__phone-text:focus .header__phone-no{
border-bottom:solid 1px var(--inverse-font-color);
}*/
.header__bookstay {
  margin-left: 30px;
}
.header-langsel:hover .header-langsel__control:after, .header-langsel__control:focus .header-langsel__control:after{
  width:100%;
}

.navmenu__list {
  margin: 0;
  list-style: none;
  padding:37px 0 0 0 ;
  padding:22px 0 0 0;
  margin-top:15px;
  overflow-y: auto;
  scrollbar-color: var(--border-color) transparent;
  scrollbar-width: thin;
  height: calc(100% - 170px);
  overflow-x: hidden;
}

.navmenu__list-item:not(.navmenu__list-item--onlymob) + .navmenu__list-item {
  margin-top: 10px;
}

.navmenu__list-item:last-child {
  margin-right: 0;
}

.navmenu__list-link {
  display: inline-flex;
  padding: 15px 30px;
  position: relative;
  text-transform: uppercase;
  font: var(--h5-title-fonts);
  color: var(--inverse-font-color);
}

.navmenu__list-link:hover,
.navmenu__list-link:focus-visible,
.navmenu-dropmenu__link:hover,
.navmenu-dropmenu__link:focus-visible {
  color: var(--primary-color);
  opacity: 1;
}

.navmenu__list-item:last-child .navmenu__list-link {
  padding-right: 0;
}

.navmenu__dropdown {
  position: relative;
}

.navmenu__dropdown > a {
  position: relative;
}

.navmenu__dropdown > a:before {
  content: '\e90d';
  font-family: var(--icon-fonts);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  transition: all .4s ease;
  line-height: 1;
  font-size: 14px;
}

.navmenu__dropdown > a[aria-expanded="true"]:before {
  transform: translateY(-50%) rotate(-45deg);
}

.navmenu-dropmenu {
  padding: 0;
  margin: 0;
  min-width: 265px;
  background: transparent;
  overflow: auto;
  max-height: 70vh;
  --uk-position-offset: 0;
  --uk-position-viewport-offset: 0;
  text-align: left;
  position: static;
  box-shadow: unset;
  color: var(--inverse-font-color);
  list-style: none;
}

.navmenu-dropmenu__link {
  display: block;
  font: var(--h5-title-fonts);
  margin: 0 0 26px 0;
  line-height: normal;
  color:var(--secondary-cta-font-color);
  opacity: 0.5;

}
.navmenu-dropmenu__link.nav.navON{
  color:var(--primary-color);
  opacity:1;
  font-size: 28px;
}
.navmenu-dropmenu__link.active{font-size: 32px;
  opacity: 1;}
.navmenu-dropmenu__link.uk-disabled {
  opacity: .2;
}

.navmenu__list-link:hover:after, 
.navmenu__list-link[aria-expanded="true"]:after,
.navmenu__list-link.navON:after {
  opacity: 1;
}

.header__toggler {
  position: relative;
  z-index: 1;
}

.header__toggler-btn {
  background: transparent;
  border: 0;
  display: flex;
  padding: 3px 0;
  margin: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--highlight-color);
  cursor: pointer;
  align-items: center;
  min-width: 24px;
  justify-content: flex-end;
}
/*.header__toggler-btn .is-togglemenu-active {
display: none;
}*/

.header__toggler-btn .is-togglemenu-close {
  /*display: block;*/
  color: #fff;
}

.uk-offcanvas-page .header-collapsible.uk-open {
  opacity: 1;
  visibility: visible;
  z-index: 11;
  display:block !important;
}

body.uk-offcanvas-page .header-mainmenu {
  display: none
}

.uk-offcanvas-page .header__col--right {
  position: relative;
  z-index: 10;
}

.uk-offcanvas-page .header__phone-text,
.uk-offcanvas-page .header__phone .template-icon{
  color: var(--text-color);    font: var(--header-fonts); padding:0;
}

.uk-offcanvas-page .header__toggler,
.uk-offcanvas-page .header__toggler .template-icon{
  color: var(--text-color); 
}
.uk-offcanvas-page .header__toggler .closemenu_text{
  color: var(--text-color);
  font: var(--header-fonts);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.uk-offcanvas-page .header__bookstay {
  background: var(--primary-cta-inverse-color);
  border-color: var(--primary-cta-inverse-color);
  color: var(--primary-cta-inverse-font-color);
}

.uk-offcanvas-page .header__toggler-btn .is-togglemenu-active {
  /* display: block;*/
  font-size: 24px;
  padding: 0 5px 0 0;
}

.uk-offcanvas-page .header__toggler-btn .is-togglemenu-close {
  display: none;
}

ul.sub_navmenu__list {
  display: none;
  position: absolute;
  right: calc(100% - 512px);
  padding: 0;
  list-style: none;
  width: 240px;
  margin-top: -50px;
  padding-left: 70px;
}
.header-collapsible_topbar_item {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 40px 0 0;
  column-gap: 24px;
}
.uk-offcanvas-page .header__phone-text .template-icon {
  font-size: 20px;padding: 0 6px 0 0;
}
.header-collapsible_topbar {
  padding: 40px 0 46px;
}
.uk-offcanvas-page .header__phone-text, .uk-offcanvas-page .header__toggler .closemenu_text{border-bottom:solid 1px transparent;}
.uk-offcanvas-page .header__phone-text:hover .header__phone-no, .uk-offcanvas-page .header__phone-text:focus .header__phone-no, .uk-offcanvas-page .header__toggler:hover .closemenu_text, .uk-offcanvas-page .header__toggler:focus .closemenu_text{
  border-bottom: solid 1px var(--primary-color);
  /*border:none;*/
  /*border-bottom: solid 1px var(--primary-color);*/
}
.sub__link.nav {
  /* font: var(--h5-title-fonts); */
  /* opacity: 0.5; */
  font: 700 20px / 150% 'Helvetica Neue', sans-serif;
  opacity: 0.5;
}
.sub__link.nav.navON{
  color:var(--primary-color);
  opacity:1;
}

.sub-dropmenu__single a:after{
  display:none;
}
.sub-dropmenu__item .sub__link.nav:after{
  content: "\ed38";
  font-family: var(--icon-fonts);
  right: 0;
  position: absolute;
  font-weight: 100;
  font-size: 24px;
  top: 2px;
}
.active_msmneu.nav:after{    transform: rotate(180deg);}
.third_navmenu__list {
  list-style: none;
  padding: 16px 20px 0;
  display:none;
}
.third-dropmenu__item {
  margin: 0 0 4px;
}
.third__link.nav {
  font: 500 20px / 150% 'Helvetica Neue', sans-serif;
  opacity: 0.5;
  margin: 4px 0;
}
/*.third__link.nav:hover, .third__link.nav:focus{
opacity:1;
}*/
.sub-dropmenu__item {
  position: relative;
  padding: 0 0 16px 0;
}
.navmenu-dropmenu__item.active_msmneu .sub_navmenu__list{
  display: block;z-index: 1;
}

.header-collapsible__content:after {
  content: '';
  width: 385px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(255 255 255) 0%, #ffffff 100%);
  opacity: 0.5;
}
.sub-dropmenu__item .sub__link:before {
  content: '';
  background: transparent;
  width: 42px;
  height: 1px;
  position: absolute;
  left: -73px;
  top: 15px;
}
.sub-dropmenu__item:hover .sub__link:before, .sub-dropmenu__item:focus-within .sub__link:before {
  background: #000;
}
.header-collaps_child:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 1;
  background: linear-gradient(0deg, #E4E4E4, #E4E4E4), linear-gradient(180deg, #E4E4E4 30.94%, rgba(228, 228, 228, 0) 100%);
  opacity: 0.9;
}
.sub-dropmenu__item:hover .third_navmenu__list, .sub-dropmenu__item:focus-within .third_navmenu__list {
  display: block;
}
/*.navmenu-dropmenu__item.active_msmneu .navmenu-dropmenu__link{opacity:1;}*/
.navmenu-dropmenu__item {
  padding-right: 334px;
  position: relative;
}

.uk-offcanvas-page {
  overflow: hidden;
}
.header-collaps_child {
  background-size: cover;
  background-position: center center;
  overflow: auto;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.is-fixed .header-mainmenu__link, .is-fixed .header-mainmenu__link:hover, .is-fixed .header-mainmenu__link:focus, .is-fixed .header__toggler-btn .is-togglemenu-close, .is-fixed .header__logo, .is-fixed .header__phone, .is-fixed .header-langsel__control, .is-fixed .header__phone-text, .is-fixed .header__phone .template-icon, .is-fixed .header-langsel .template-icon {
  color: var(--section-title-font-color);
}
.is-fixed .header__phone-text .header__phone-no{border-bottom: solid 1px transparent;}
.is-fixed .header__phone-text:hover .header__phone-no,
.is-fixed .header__phone-text:focus .header__phone-no {
  border:none;
  /*border-bottom: solid 1px #000;*/
}
.header-langsel .template-icon {
  margin-right: 13px;
  font-size: 18px;
  line-height: 1;
  color: var(--inverse-font-color);
}
.header-langsel__control {
  padding: 0;
  font: var(--header-fonts);
  background: unset !important;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: var(--header-color);
  display: block;
  line-height: 18.0px;
  letter-spacing:1.8px;
  display: flex;
  text-transform: uppercase;
}
.header-langsel__control:after{
  content: '';
  width: 0;
  position: absolute;
  background: var(--inverse-font-color);
  height: 1px;
  bottom: 0;
  transition: width .6s;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.is-fixed .header-langsel__control:after{
  background: var(--border-color);
}

.header-langsel .uk-drop {
  width: 50px;
  min-width: 50px;
  padding: 10px;
  background: #fff;
  box-shadow: 0px 2px 5px #ccc;
  text-align: center;
  margin-left: 10px;
  left: 0 !important;
  top: 40px !important;
}

.header-langsel {
  margin-left: 40px;
  position: relative;
  display: flex;
  align-items: center;
}
.header-langsel:before {
  content: '';
  height: 30px;
  background: #fff;
  width: 1px;
  position: relative;
  left: -20px;
  top: -1px;
}
.is-fixed .header-langsel:before{
  background: #000;
}
.header-reservation a {
  letter-spacing: 2px;
}
.header-reservation .uk-button.uk-button-primary, 
.is-fixed .header-reservation .uk-button.uk-button-primary:hover,
.is-fixed .header-reservation .uk-button.uk-button-primary:focus,
.is-fixed .header-reservation .uk-button-primary:focus-visible{color:var(--primary-cta-font-hover-color);filter: opacity(1);}
.is-fixed .header-reservation .uk-button.uk-button-primary{color:var(--primary-cta-font-color);}
.header-reservation .uk-button.uk-button-primary:before {
  background: #262626;
}
.header-reservation .uk-button.uk-button-primary:focus, .header-reservation .uk-button.uk-button-primary:hover {
  color: #262626;
  filter: opacity(1);
} 
.header-reservation .uk-button-primary:hover:before, .header-reservation .uk-button-primary:focus:before, .header-reservation .uk-button-primary:focus-visible:before {
  background: #fff;
}
.is-fixed .header-reservation .uk-button.uk-button-primary:before {
  background: #D9D9D9;
}
.is-fixed .header-reservation .uk-button.uk-button-primary:focus, .is-fixed .header-reservation .uk-button.uk-button-primary:hover {
  color: #fff;
} 
.is-fixed .header-reservation .uk-button-primary:hover:before, .is-fixed .header-reservation .uk-button-primary:focus:before, .is-fixed .header-reservation .uk-button-primary:focus-visible:before {
  background: #262626;
}
/* .header-reservation .uk-button-primary{color:#fff;letter-spacing:2.4px;} */
/* .is-fixed .header-reservation .uk-button-primary{color:var(--primary-cta-font-color);}
.is-fixed .header-reservation .uk-button-primary:before{color:var(--primary-cta-font-hover-color);} */
/*
.header-reservation .uk-button-primary:before{display:none;}*/
.header-reservation, .header.is-fixed .header-reservation, .is-fixed .header-reservation {
  display: inline-block;
}
.header-reservation{margin-left:30px;}
.header.is-fixed .header-reservation, .is-fixed .header-reservation {
  display: inline-block;
  margin-left: 30px;
}
.header-mob-reserve{display:none;}
.offcanvas-bar-bg img {
  width: 464px;
  position: fixed;
  right: 0;
  object-fit: cover;
  bottom: 0;
}
.offcanvas-bar-bg:after {
  content: '';
  background: linear-gradient(0deg, #fbf7eb00, #fbf7eb00), linear-gradient(0deg, #000000d9, #212121d6), linear-gradient(180deg, #212121 17.46%, rgba(33, 33, 33, 0) 38.81%), linear-gradient(180deg, rgba(0, 0, 0, 0) 13.02%, rgba(0, 0, 0, 0.6) 65.81%);
  width: 464px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  opacity: .95;
}
.active_menu .sub_navmenu__list{  z-index: 1;}
.active_menu .navmenu-dropmenu__link.nav {
  opacity: 1;
  font-size: 28px;
}
.sub__link.nav.navON:before{    background: #000;}

.is-togglemenu-active {
  display: none;
}
.reservation-open .is-togglemenu-close {
  display: block !important;
}

.menu-open .header-collapsible_header__closemenu .template-icon-x-close{display:block;}
@media(min-width: 768px) {
  .navmenu__list-item--onlymob,
  .navmenu__list-link--btn {
    display:none!important
  }

  .uk-offcanvas-page .header__toggler-btn {
    color: var(--inverse-font-color);
  }


}
@media (max-width: 1599.98px) {
  .header-megamenu-sideimg img {
    height: calc(100vh - 150px);
    width: calc(100vh - 180px);
    object-fit: cover;
  }
}
@media (max-width: 1670px) {
  .header-mainmenu__link{letter-spacing: 2px;}
  .header-mainmenu__item:first-child {
    margin-left: 20px;
  }
  .header-mainmenu__item + .header-mainmenu__item {
    margin-left: 15px;
  }
  .header__container {
    margin: 0px;
  }
  .header-mainmenu__link{font-size:11px;}
  .header__grid{margin:0px;}
}

@media (max-width: 1440px) {
  .header-mainmenu__item:first-child {
    margin-left: 10px;
  }
  .header-mainmenu__item + .header-mainmenu__item {
    margin-left: 10px;
  }

}
@media (min-width: 1300px) and (max-width:1450px) {
  .header__col--left{
    flex: 2;
  }
}
@media (max-width: 1300px) {
  .header-mainmenu{display:none;}

}
@media (min-width: 1365px) {
  .header-mainmenu {
    width: 750px;
  }
}
@media only screen and (min-width: 1299px) and (max-width: 1364px)  {
  .header__col--left {
    max-width: 650px;
  }
  .header-mainmenu {
    width: 650px;
  }
}
@media (max-width: 1199.98px) {
  .header-collapsible__content:after{width:265px;}
  .header-collapsible__content {
    width: 550px;
    padding:0 0 30px 40px;
  }
  .header-collapsible__scroll{padding-top:50px;}
  .sub-dropmenu__item .sub__link:before{
    width: 32px;left: -52px;

  }
  .header-collaps_child{max-height:calc(100vh - 30px);}
  ul.sub_navmenu__list{padding-left:25px;right:calc(100% - 493px);}
  .header-collapsible__media{padding-right:30px;}

  .header.is-fixed .header-reservation, .is-fixed .header-reservation{margin-left:25px;}
  .header-mainmenu__item:first-child, .header-mainmenu__item + .header-mainmenu__item {
    margin-left: 9px;
  }
  .header-mainmenu__link {
    padding: 10px 0px;
    font-size: 11px;
  }
  .is-fixed .header__phone-text .header__phone-no{display:none;}

  .header__toggler {
    margin-right: 20px;
  }
  .header__col--left{flex:0;}
  .header-reservation .uk-button-primary:after{
    content:none;
  }
}

@media (max-width: 1023.98px) {
  /*.header,.header.is-fixed, .is-fixed .header{background:var(--primary-color);}
  .header__toggler-btn{display:inline-block;}*/
  .header__grid .header__col--left{padding-left:0px;}
  .header__col--left{order:1;flex:1;}
  .header__col--center{order:2;}
  .header__col--right{order:3;}
  .herobanner-reservation{display:none;}
  .header-mainmenu {
    display: none;
  }
  li.navmenu-dropmenu__item:first-child .navmenu-dropmenu__link.nav:after{top:8px;}
  .navmenu-dropmenu__item .navmenu-dropmenu_link_item.nav::before{
    transform: translateY(-50%) rotate(180deg);
  }
  .navmenu-dropmenu__item .navmenu-dropmenu_link_item.nav:after{
    content: "\ed38";
    font-family: var(--icon-fonts);
    right: 0;
    position: absolute;
    font-weight: 100;
    font-size: 24px;
    top: 4px;
  }  
  /*.is-fixed #header, #header {
  padding-bottom: 75px;
}*/
  .header{min-height:75px;padding:10px 0px;background:var(--bg-header);}
  .header__logo{
    width: var(--mob-logo-width);
    height: var(--mob-logo-height);
  }
  .header-collapsible{height:100vh;width:100vw;}
  .header-collapsible__content:after {
    width: unset;
  }

  .navmenu-dropmenu__item {
    padding-right: 0;
  }
  ul.sub_navmenu__list {
    position: relative;
    right: 0;
    width: auto;
    margin-top: 0;
    padding-left: 20px;
    left: 0;
  }
  .sub-dropmenu__item .sub__link:before{
    display:none;
  }

  .header-collapsible__content {
    overflow: auto !important;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-bottom: 100px;
    overflow: auto;
    padding: 0px 30px 60px;
    order:2;
  }
  .navmenu__list {
    overflow: inherit !important;
  }
  .header-collapsible__media {
    order:1;
    padding-right:0px;
    max-width:unset;
    width:100%;
    height:auto;
    flex:0;
  }
  .header-collapsible_topbar{padding:40px 0 32px;}
  .header-collapsible_topbar_item{
    justify-content: space-between;
    padding: 0 25px 0 25px;
    column-gap:0;
  }
  .header-collapsible__media img{display:none;}
  .header-collaps_child{
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .header-social {
    position: static;
    margin-top: 20px;
    padding: 0 20px;
  }

  .header-collapsible__scroll {
    height: auto;
    padding-top:0px;
  }
  .header-collapsible_logo {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .header-collapsible_logo img{width:101px;height:auto;}

  .header__phone-no {
    display: none;
  }
  .navmenu__list{max-width:400px;margin:0 auto;}

  /*.navmenu__list-link:hover, .navmenu__list-link:focus-visible, .navmenu-dropmenu__link:hover, .navmenu-dropmenu__link:focus-visible {
  color: var(--inverse-font-color);
}*/
  .header-reservation.desktop-reserve{display:none;}
  .header-mob-reserve{display:block;position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 91992;
    width:100%;
  }
  .header-mob-reserve .header-reservation, 
  .is-fixed .header-mob-reserve .header-reservation{display:inline-block;margin-left:0px;width:100%;}
  .header-mob-reserve .header-reservation .uk-button.uk-button-primary{
    width:100%;background:var(--highlight-color);min-height:55px;color:var(--inverse-font-color);
  }
  .header-reservation .uk-button-primary:before {
    display: none;
  }
  .slide-booking-widget.uk-offcanvas .uk-offcanvas-bar{width:100%;}
  .offcanvas-bar-bg:after {
    width: 100%;
  }
  .offcanvas-bar-bg img {
    width: 100%;
  }
  .reservation-open .header-mob-reserve{display:none;}
}

@media (max-width: 959.98px) {


  .header__bookstay {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    margin: 0;
    max-width: 355px;
    margin: auto;
  }

  body:not(.uk-offcanvas-page) .header__phone .template-icon {
    margin: 0;
  }

  body:not(.uk-offcanvas-page) .header__phone-no {
    display: none;
  }
  .slide-booking-widget .uk-offcanvas-bar{width:100%;}

  .submenulist .navmenu-dropmenu__link:after{
    content: "\ed38";  
    right: 0;
    position: absolute;
    font-weight: 100;
    font-size: 24px;
    top: 2px;
    font-family: var(--icon-fonts);
  }
}

@media (max-width: 767.98px) {
  .is-fixed #header {
    padding-bottom: 75px;
  }
  .navmenu__list{
    max-width:100%;
  }
  .header-collapsible__content{ 
    padding: 0; 
  }
  body.menu-open {
    overflow: hidden !important;
  }
  .navmenu__list {
    overflow: auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 130px;
  }
  .navmenu__list {

  }
}

@media (max-width: 639.98px) {
  .active_menu .navmenu-dropmenu__link.nav{
    font-size: 24px;
  }
  .navmenu-dropmenu__item.active_msmneu .navmenu-dropmenu__link{
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .header-collapsible__content{
    padding: 0;
  }
}
/* Header Ends */

/*Reservation Start*/
.slide-booking-widget .uk-offcanvas-bar{width: 464px;right: -464px;}
.booking-form {    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 150px 40px;
  margin-top: 0;
  text-align: left;}
.booking-form h3{    
  text-align: center;
  margin: 0 0 0 0;
  padding: 0 0 50px 0;
}
.rese-form__label {
  font: 700 18px/150% 'Helvetica Neue', sans-serif;
  padding: 0 0 10px 0;
  display: inline-block;
}
.bookingselector .uk-select, .bookingselector .uk-input {
  background: transparent;
  border: solid 1px #fff;
  border-width: 0 0 1px 0;
  padding: 0;
  font: 400 16px/140% 'Helvetica Neue', sans-serif;
  letter-spacing: 0.8px;
  cursor: pointer;
  height: 44px !important;
  background-image: none !important;
}
.booking-form .selectformfield {
  margin: 0 0 32px 0;
  position: relative;
}
.booking-form .selectformfield.rese-btn {
  margin: 52px 0 0 0;
  text-align: center;
}
.booking-form .selectformfield.rese-btn .uk-button{ letter-spacing: 2.1px;}

.booking-form .selectformfield.rese-btn .uk-button:hover, .booking-form .selectformfield.rese-btn .uk-button:focus{
  color: var(--primary-cta-font-color);
}

.bookingselector .uk-select:hover, .bookingselector .uk-select:focus,
.bookingselector .uk-input:hover, .bookingselector .uk-input:focus{
  border-bottom: solid 1px #666;
  background: transparent;
}
.slide-booking-widget svg{display:none;}
.slide-booking-widget svg{display:none;}
.slide-booking-widget .booking-close-text {
  font: var(--header-fonts);
  text-transform: uppercase;
  color: var(--inverse-font-color);
}
.slide-booking-widget .template-icon{
  font-size: 20px;
  color: var(--inverse-font-color);
  padding: 0 8px 0 0;
}
.slide-booking-widget button {
  display: flex;
  align-items: center;
  top: 23px;
  right: 30px;
}
.slide-booking-widget button .booking-close-text{
  border-bottom: solid 1px transparent;
}
.slide-booking-widget button:hover .booking-close-text, .slide-booking-widget button:focus .booking-close-text{
  border-bottom: solid 1px var(--inverse-font-color);
}
.slide-booking-widget:before{
  background: #000;
  opacity: .5 !important;
}
.rese-selecthotel:after {
  display: block;
  content: "\ed38";
  font-family: var(--icon-fonts);
  right: 0px;
  position: absolute;
  font-weight: 100;
  font-size: 23px;
  top: unset;
  bottom:10px;
  color: rgba(255, 255, 255, 1);
  pointer-events: none;
}


/*Reservation End*/

/*Hero Banner Reservation Section Start*/

.hero-reservation {
  max-width: 1320px;
  margin: 0 auto;
  height: 95px;
  background:#000;
  padding: 26px 50px;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.hmreservationfields {
  display: flex;
  column-gap: 32px;
  align-items: center;
}
.hmreservationfields .rese-selecthotel {
  width: 318px;    position: relative;
}

.hmreservationfields .rese-checkout-date {
  display: flex;
  align-items: center;
  column-gap: 16px;    max-width: 318px;
}
.hmreservationfields .rese-form__label{padding: 0;}

.hmreservationfields .rese-selecthotel:after{top:unset;bottom:10px;}

.hmreservationfields .uk-select, .hmreservationfields .uk-input{color: #fff;}
.hmreservationfields .rese-btn .uk-button:before{background: rgba(38, 38, 38, 1);}
.hmreservationfields .rese-btn .uk-button:hover:before, .hmreservationfields .rese-btn .uk-button:focus:before {background: var(--inverse-font-color);}
.hmreservationfields .rese-btn a:hover span, .hmreservationfields .rese-btn a:focus span{
  color: var(--primary-cta-font-color);
}
.hmreservationfields .rese-btn a.uk-button{padding:11px 18px 11px 18px;}
.hmreservationfields .rese-btn a span{letter-spacing: 2.4px;}
.hmreservationfields .uk-input {
  width: 249px;
}

@media(max-width:1399px){
  .hmreservationfields .rese-selecthotel{width: 190px;}
  .hmreservationfields .uk-input {
    width: 180px;
  }
  .hmreservationfields .rese-btn a.uk-button {
    padding: 11px 13px 11px 13px;
  }
  .hero-reservation{padding:25px 20px;}
  .header-collaps_child{
    height: 100vh;
  }
  .header-collaps-bg{
    display: none;
  }
}

@media(max-width: 1023.98px) {
  .booking-form{padding:120px 10px;}
  .booking-form h3{line-height:1;}
  .rese-selecthotel:after, .hmreservationfields .rese-selecthotel:after{top:unset;bottom:10px;}
  .rese-form__label{padding:0 0 5px 0;}
}
/*Hero Banner Reservation Section End*/

body.sostenibilidad .uk-slider-items.uk-grid.snippet-grid {
  justify-content: space-between;
}
.sostenibilidad .uk-slider-items.uk-grid.snippet-grid .lt229-widget__box {
  width: 50%;
}

@media(max-width: 959.98px) {
  .sostenibilidad .uk-slider-items.uk-grid.snippet-grid .lt229-widget__box {
    width: 100%;
  }
}

.ng-star-inserted .header-mainmenu__link, .ng-star-inserted .header-mainmenu__link:hover, .ng-star-inserted .header-mainmenu__link:focus, .ng-star-inserted .header__toggler-btn .is-togglemenu-close, .ng-star-inserted .header__logo, .ng-star-inserted .header__phone, .ng-star-inserted .header-langsel__control, .ng-star-inserted .header__phone-text, .ng-star-inserted .header__phone .template-icon, .ng-star-inserted .header-langsel .template-icon {
  color: #FFF;
}

.ng-star-inserted .header {
  background: #000;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1);
}

.ng-star-inserted .is-fixed .header{
  background: #000;
} 

.ng-star-inserted .is-fixed .header-reservation .uk-button.uk-button-primary {
  color: #FFF;
}
footer {
  padding: 60px 0;
  font: var(--footer-fonts);
  position: relative;
}

footer:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  /*background:linear-gradient(180deg, #212121 0%, rgba(33, 33, 33, 0.00) 100.21%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 20.32%, rgba(0, 0, 0, 0.60) 100%);*/
  background: linear-gradient(0deg, #000000e8, #212121e6), linear-gradient(180deg, rgba(0, 0, 0, 0) 27.32%, rgba(0, 0, 0, 0.6) 100%), linear-gradient(180deg, #212121 17.46%, rgba(33, 33, 33, 0) 38.81%);
  top: 0;
  position: absolute;
  filter: grayscale(0.5);
}
.footer-bg-container{
  position: relative;
  overflow: hidden;
}
.footer-section {
  z-index: 1;
  position: relative;
}

.footer-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 1;
  position: absolute;
  top: 0;
}
.footer-unap_logos {
  display: flex;
  column-gap: 80px;
}
.footer__logo__left {
  position: relative;
}
.footer__logo__left:after {
  content: '';
  background: rgb(255 255 255 / 40%);
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -40px;
}
.footer-unap_details {
  padding: 45px 0 0 0;
  color: #fff;
}

.footer-unap_details ul {
  list-style: none;
  padding: 0;
  display: flex;
  column-gap: 28px;
}
.footer-unap_details ul li{    display: flex;
  align-items: center;
  padding-left: 36px;
  position: relative;
}
.footer-unap_details ul li.footer-phone a{margin-left: 3px;}
.footer-unap_details ul li span {
  font-size: 22px;
  position: absolute;
  left: 0;
}
.footer-unap_details ul li a{
  color: var(--inverse-font-color);
  border-bottom: solid 1px transparent;
  filter: opacity(1);
}
.footer-unap_details ul li a:hover, .footer-unap_details ul li a:focus{
  border-bottom: solid 1px var(--inverse-font-color);
}
.footer-section_top {
  display: flex;
  justify-content: space-between;
}
.subscribe-form_title h5 {
  font-size: 20px;
  line-height: 150%;
  color: var(--inverse-font-color);
  filter: opacity(1);
}
.subscribe-form input {
  width: 367px;
  height: 48px;
  padding: 0 0 0 16px;
  font-weight: 300;
  font-family: var(--text-fonts);
  font-size: 14px;
  border: solid 1px var(--border-color);
  box-shadow: none;
}
.subscribe-form input:hover, .subscribe-form input:focus {
  box-shadow: 0px 0px 10px #fff4f4;
}
.subscribe-form button{margin-left: 20px;}
.footer-certificate_logos {
  padding: 50px 0 0 0;
}
.footer-certificate_logos ul {
  list-style: none;
  display: flex;
  column-gap: 24px;
  padding: 0;
}
.footer-section_bottom {
  padding: 35px 0 0 0;
}
.footer-section_menu {
  border: solid 1px rgb(255 255 255 / 40%);
  border-width: 1px 0;
  padding: 16px 0;
}
.footer-section_menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: space-between;
}
.footer-section_menu ul li a {
  color: var(--inverse-font-color);
  font: var(--footer-fonts);
  font-weight: 700;
  text-transform: uppercase;
  text-transform: var(--footer-fonts-text-transform);
  border-bottom: solid 1px transparent;
  font: var(--footer-fonts);
  letter-spacing:3.5px;
  filter: opacity(1);
}
.footer-section_menu ul li a:focus, .footer-section_menu ul li a:hover, .footer-section_menu ul li a.navON,.footer-section_menu ul li a.nav.navON {
  border-bottom: solid 1px var(--inverse-font-color);
}
.footer-section_bh-certificate {
  padding: 46px 0 0  0;
  display: flex;
  justify-content: center;
  column-gap: 32px;
}
.footer-section-copyright {
  text-align: center;
  padding: 40px 0 0 0;
  color: var(--inverse-font-color);
  font: var(--footer-fonts);
  filter: opacity(1);
}
.footer-section-copyright a {
  border-bottom: solid 1px var(--inverse-font-color);
  color: var(--inverse-font-color);
}
.footer-section-copyright a:hover, .footer-section-copyright a:focus{
  border-bottom: solid 1px transparent;
}

/*Footer Resposnive Start*/
@media (max-width: 1152px) {
  .footer-unap_details ul{
    flex-direction: column;
    row-gap: 15px;
  }
  .subscribe-form input{
    width: 180px;
  }
}

@media (max-width: 900px) {
  .footer-section_top{column-gap:40px;}
  .subscribe-form input {
    width: 162px;
  }
  .subscribe-form button {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .footer-section_top{
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer-unap_details ul{
    justify-content: center;
    align-items: center;
  }
  .footer-section_top{row-gap:40px;}
  .subscribe-form_title h5{font-size:24px;text-align:center;line-height:110%;}
  .subscribe-form input {
    width: 100%;
  }
  .footer-certificate_logos ul{
    row-gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-section_menu ul {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    text-align: center;
  }
  .subscribe-form form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
  }
  .footer-section_bh-certificate{padding:40px 0 0 0;column-gap:26px;row-gap:26px;   
    flex-wrap: wrap;
  }
  .footer-section_menu ul li a{letter-spacing:3.5px;font-size:12px;}
}
/*Footer Resposnive End*/

/* PS editor level css start*/
.ng-star-inserted .anticon{
  left:7px;
}

@media (max-width: 1199px){
  .footer-section_menu ul{
    justify-content:center;
    flex-wrap:wrap;
    column-gap:18px;
    row-gap:20px;
  }
}
@media (max-width: 545px) {
  .subscribe-form input{
    width: 320px;
  }
  .footer-widget-newsletter__grid {
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
}
/* PS editor level css end*/
@media (min-width: 1024px) and (max-width: 1399px) {
  .uk-grid.footer-widget-newsletter__grid {
    flex-wrap: nowrap;
  }
  .footer-unap_details ul {
    column-gap: 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .footer-unap_details ul {
      display: block;
  }
  .footer-unap_details ul li:nth-child(2) {
    margin-top: 15px;
  }
}
/* Home video */

/* Hero Slider Starts */
.hero-slideshow {
  background: var(--primary-color); 
  z-index: 2;
}
.hero-slideshow__caption {
  position: absolute;
  top: inherit;
  left: 0;
  right: 0;
  bottom: 210px;
}
.hero-slideshow__caption-wrapp {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: max-content;
  margin: 0 auto;
}
.hero-slideshow__caption-title {
  color: var(--inverse-font-color);
  margin: 0;
  font: var(--xl-title-fonts);
  text-transform: var(--xl-title-fonts-text-transform);
}
.hero-slideshow__caption-title span{
  display: block;
}
.line-title {
  margin-left: 60px;
}
.hero-slideshow__media {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.hero-slide-arrow {
  position: absolute;
  bottom: 130px;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  color: var(--inverse-font-color);
  z-index: 2;
}
.hero-slide-arrow a{
  color: var(--inverse-font-color);
  text-decoration: none;
}
.hero-slide-arrow a:hover, .hero-slide-arrow a:focus{
  color: var(--highlight-color);
}


@media only screen and (max-width: 1260px) {
  .hero-slideshow__caption{
    bottom: 100px;
  }
}
@media (max-width: 959.98px) {
  .hero-slideshow__caption-title {
    font: var(--mob-xl-title-fonts);
  }
  .hero-slideshow {
    height: 100%;
  }
  .hero-slideshow__caption{
    bottom: 30px;
  }

}
@media (max-width: 767.98px) {
  .hero-slideshow {
    height: 100%;
    overflow: visible;
  }
  .hero-slideshow__media {
    transform: none !important;
    object-position: center;
    height: auto !important;
  }
  .hero-slideshow:after {
    height: 40%;
    display:none;
  }
  .hero-slideshow .uk-slideshow-items {
    /*height: 100%;
    min-height: 100% !important;*/
    height: 100%;
    min-height: 250px  !important;
  }
  .hero-slideshow__caption-wrapp {
    max-width: unset;
    padding-top: 20px;
    padding-bottom: 0px;
    text-align: center;
  }
  .hero-slide-arrow{
    bottom: 80px;
  }
  .hero-slideshow__caption {
    bottom: 30px;
  }
  .hero-slide-arrow {
    bottom: inherit;
    top: 200px;
  }
  .line-title {
    display: block;
    margin-left: 0px;
  }

}
@media (max-width: 575px) {

}
/* Hero Slider Ends */

/* Video */
.home-head-video{
  padding:0 0px;
}
.home-head-video:after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 41.35%, rgba(0, 0, 0, 0.4) 96.49%), linear-gradient(180deg, rgba(0, 0, 0, 0) 64.56%, rgba(0, 0, 0, 0.5) 94.55%);
  pointer-events: none;
}
.hero-image {
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.home-video__wrapper img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-video__container {
  width: 100%;
  max-width: 100%;
}
.home-video__block {
  width: 100%;
}
.home-video__title {
  z-index: 1;
  max-width: 700px;
  color: transparent;
  text-shadow: 0 0 0 rgba(255, 255, 255, 1);
  text-align: center;
  position: absolute;
  top: 52%;
  left: 0;

  transform: translateY(-40%);

  right: 0;
  margin: 0 auto;
}
.home-video__block video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top;
  border-radius:5px;
}
.home-video__block video.cms6{
  height: 700px !important;
}
.home-video__block video.video-swap.cms6 {
  height: 100%;
}
.home-video__actions {
  z-index: 2;
  position: absolute;
  left: 5px;
  bottom: 0px;
}
.home-video__trigger {
  width: 30px;
  height: 30px;
  min-height: 30px;
  color: #ffffff;
  background: var(--highlight-color);
  border-radius: 20%;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  margin: 30px;
  text-transform: capitalize;
  padding: 0 10px;
  line-height: 30px;
  min-width: auto;
}
.home-video__actions.is-active .home-video__trigger,
.home-video__trigger:hover,
.home-video__trigger:focus {
  width: 80px;
  height: 80px;
  color: #fff;
  background-color: var(--primary-color);
}
.home-video__trigger:hover .home-video__trigger-text,
.home-video__trigger:focus .home-video__trigger-text {
  display: block;
}
.home-video__actions.is-active .home-video__trigger:hover, .home-video__actions.is-active .home-video__trigger:focus {
  background: var(--highlight-color);
  color: #ffffff;
}
.is-off {
  display: none;
}
.home-video__actions.is-active .home-video__trigger .is-off {
  display: block;
}
.home-video__actions.is-active .home-video__trigger .is-on {
  display: none;
}
.home-video__actions-more {
  display: none;
  position: absolute;
  bottom: 110px;
  left: 30px;
}
.home-video__actions.is-active .home-video__actions-more {
  display: block;
}
.home-video__trigger-icon {
  display: flex !important;
  justify-content: center;
  width: 18px;
  height: 11px;
  margin: auto !important;
}
.home-video__trigger-text {
  display: none;
  font-size: 11px;
  line-height: 1.4;
  margin-top: 10px;
}
.home-video__btn {
  width: 80px;
  height: 80px;
  color: #fff;
  display: flex;
  line-height: 1;
  margin-bottom: 3px;
  background: var(--highlight-color);;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20%;
  opacity: 0.9;
  font-size: 11px;
  padding: 0 5px;
  flex-direction: column;
  text-transform: capitalize;
  letter-spacing: 0;
  transition: all 0.3s ease;
  font-weight: 400;
  min-width: auto;
}
.home-video__btn:hover, .home-video__btn:focus {
  background:var(--primary-color);
  color: #fff;
}
.home-video__btn .is-off,
.home-video__btn.active .is-on {
  display: none;
}
.home-video__btn .is-on,
.home-video__btn.active .is-off {
  display: block;
}
.home-video__btn .uk-icon {
  display: block;
  margin-bottom: 8px;
}
.hero-image-wrap.home-video__block {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home-mp4-vide .hero-image-wrap.home-video__block {
  padding: 0;
  height: auto;
}
.hero-image-wrap.home-video__block iframe {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
}
.hero-image-wrap.home-video__block:after {
  content: none;
  background: transparent
    linear-gradient(180deg, #084877 0%, #0a375d 22%, #ffffff00 100%) 0% 0%
    no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.45;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
ul.ckbullet {
  margin: 0;
  padding: 0;
}
ul.ckbullet li {
  margin: 0 0 20px 0;
  font-family: var(--text-fonts);
  font-size: 15px;
  line-height: 22px;
}
ul.ckbullet li::marker {
  content: none;
}
ul.ckbullet li:before {
  content: '\e91e';
  font-family: var(--icon-fonts);
  font-size: 12px;
  font-weight: 600;
  color: #D69CA0;
  padding: 0 5px 0 0;
}
.home-video__modal .uk-close{
  top: 0;
  right: 0;
  padding: 11px;
  background-color: var(--highlight-color);;
  color: #fff;
}
.home-video__modal .uk-close:hover, .home-video__modal .uk-close:focus{
  background-color: #000000;
  color: #fff;
}
@media (max-width: 960px){
  .home-video__block video {
    height: 72vh;
  }
}
@media (max-width: 767px){
  .home-video__trigger:hover .home-video__trigger-text, .home-video__trigger:focus .home-video__trigger-text {
    display: none;
  }
  .home-video__btn .uk-icon {
    margin-bottom: 0;
    text-indent: 0;
    line-height: 30px;
  }
  .home-video__btn .is-on, .home-video__btn.active .is-off {
    display: flex;
  }
  .home-video__actions.is-active .home-video__trigger {
    width: 30px;
    height: 30px;
    /*margin: 0;*/
  }
  .home-video__trigger:hover, .home-video__trigger:focus {
    width: 30px;
    height: 30px;
  }
  .home-video__trigger {
    margin: 0 0 10px 5px;
  }
  .home-video__actions-more {
    bottom: 40px;
    left: 5px;
  }
  .home-video__btn {
    width: 30px;
    height: 30px;
    text-indent: -9999px !important;
    min-height: 30px;
    line-height: 0px;
    border-radius: 4px;
    text-align: unset;
  }
  .home-video__btn .mobile-hide {
    display: none;
  }
  .home-video__btn.full-video {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px){
  .home-video__btn{
    width:65px;height:65px;font-size:9px;
  }
  .home-video__actions.is-active .home-video__trigger, .home-video__trigger:hover, .home-video__trigger:focus {
    width: 65px;
    height: 65px;
  }
  .home-video__trigger-text {
    font-size: 9px;
  }
  .home-video__actions-more{
    bottom: 75px;
  }
  .home-video__trigger{
    margin: 30px 30px;
  }
}
.home-mp4-vide .hero-image-wrap.home-video__block img {
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  position: absolute;
}

@media (min-width: 1260px) and (max-width: 1560px){
  .home-video__actions{
    bottom: 135px;
  }
}
.hero-slideshow__button {
  margin-top: 30px;
  text-align: center;
}
/*cache version*/