
.brand-hero-banner {
    filter: opacity(1);
}
.brand-hero-slideshow {
  background: var(--text-color);
  color: var(--inverse-font-color);
  height: 100vh;
  min-height: 600px;
  overflow:hidden;
}

.brand-hero-slideshow__items {
  min-height: 100% !important;
  height: 100%;
}

.brand-hero-slideshow__media {
  position: relative;
  height: 100%;
}

.brand-hero-slideshow__media:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 7, 3, 0.75) 0%, rgba(10, 7, 3, 0) 100%);
}
.brand-hero-slideshow__media:before {
  background: linear-gradient(180deg, rgba(10, 7, 3, 0.05) 0%, rgba(10, 7, 3, 0.4) 52%, rgba(10, 7, 3, 0.94) 100%);
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  z-index: 0;  pointer-events: none;
}

.brand-hero-slideshow__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-hero-slideshow .title {
  color: var(--inverse-font-color);
}

.brand-hero-slideshow__content {
  position: absolute;
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width:620px;
  bottom: 0;
  left: 0;
  margin: 0 0 64px 48px;
  filter:opacity(1);
}

.brand-hero-maintitle.title--xl span {
  font-style: italic;
  color: var(--brand-inverse-highlight-color);
}

.brand-hero-slideshow__title {
  margin-bottom: 10px;
}

.brand-hero-slideshow__dotnav {
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
}


.brand-hero-slideshow__dotnav > * {}

.brand-hero-slideshow__dotnav > * > * {
  width: 106px;
  border-radius: 0;
  height: 4px;
  background: #AAAAAA;
}

.brand-hero-slideshow__dotnav > .uk-active > * {
  background: #F4F3ED;
}

.brand-hero-tagline{
  font: 400 28px / 41px var(--brand-title-font);
  font-style: italic;
  color: var(--brand-inverse-highlight-color);
  padding-right: 100px;
  margin: 0 0 36px 0;

}
.brand-hero-maintitle.title--xl {
  color: var(--inverse-font-color);
  margin-bottom: 48px;
}

.slider-controls {
  font: var(--body-text-fonts);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%
}

.slider-controls__slidenav {
  width: 50px;
  height: 50px;
  font-size: 12px;
  color: var(--tertiary-color);
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 100%;
  background: var(--primary-cta-inverse-color)
}

.slider-controls__nav {
  color: var(--tertiary-color);
  font-size: 12px
}

.slider-controls__nav--prev {
  margin: 6px 18px 0 0
}

.slider-controls__nav--next {
  margin: 6px 0 0 18px
}

.slider-controls__slidenav svg {
  display: none
}

.slider-controls__slidenav:hover,.slider-controls__slidenav:focus-visible {
  color: var(--highlight-color)
}

.slider-controls__slidenav.uk-invisible {
  visibility: visible!important;
  opacity: .36;
  display: inline-flex!important;
  cursor: not-allowed
}

.slider-controls__arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-width: 111px
}

.full-section-slider-controls .slider-controls__arrows {
  position: absolute;
  top: 50%;
  transform: translate(0px, -55px);
  width: 100%;
  padding: 0 30px;
}
.inner-hero-slideshow__media .edit-overlay {
  margin: 100px;
}

.slider-controls .slider-dot {
  position: absolute;
  bottom: 40px;
  width: 100%;

}
.slider-controls .slider-dot ul {
  display: flex;
  justify-content: right;
  align-items: center;
  column-gap: 4px;
  margin: 0 48px 0 0;
}
.slider-controls .slider-dot ul li a {
  background: var(--brand-inverse-color);
  width: 8px;
  height: 2px;
  opacity: .35;
  border-radius: 2px;
  border: solid 2px var(--brand-inverse-color);
}
.slider-controls .slider-dot ul li.uk-active a, .slider-controls .slider-dot ul li a:hover, .slider-controls .slider-dot ul li a:focus{
  opacity: 1;
  width: 32px;
}

.hide-arrow-show-dot .slider-controls__arrows{display:none;}
.hide-arrow-show-dot .slider-dot{display:block;}

.brand-hero-banner .uk-slideshow-items{aspect-ratio: 1 / 1 !important;}

/*.brand-hero-slideshow__item img {
    transform: scale(1);
    transition: transform 5s ease;
}
*/

.brand-hero-slideshow__item.uk-active img {
    transform: scale(1);
}
.brand-hero-slideshow__item img {
    transform: scale(1);
}
.brand-hero-slideshow__item.uk-active img {
    animation: slideshowZoom 11s ease-out forwards;
}

@keyframes slideshowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}


@media (min-width: 1251px) {
  .brand-hero-slideshow__media > img {
    height: 100vh;
  }
}

@media (max-width: 1250.98px) {

  .brand-hero-banner .uk-slideshow-items {
    aspect-ratio: 0 / 1 !important;
  }
  .brand-hero-maintitle.title--xl {
    margin-bottom: 24px;
  }
  .brand-hero-slideshow {
    height: 100vh;
    overflow: hidden;
  }
  .brand-hero-slideshow__media > img{    height: 100vh;}
  .brand-hero-banner .uk-slideshow-items>*{    position: relative;}
}


@media (max-width: 960.98px) {
  .brand-hero-slideshow {
    height: calc(100vh - 60px);
  }
  .brand-hero-slideshow__content {
    margin: 0 0 100px 24px;
  }
  .brand-hero-banner .slider-controls{z-index: 1;}
  .brand-hero-slideshow__media:after {
    background: linear-gradient(180deg, rgba(10, 7, 3, 0.75) 0%, rgba(10, 7, 3, 0) 100%);
  }
}

@media (max-width: 767.98px) {
  .brand-hero-slideshow__content {
    width: 300px;
  }
  .brand-hero-maintitle.title--xl {
    margin-bottom: 20px;
    width: 120px;
  }
  .brand-hero-tagline {
    font: 400 17px / 25px var(--brand-title-font);
    font-style: italic;
    padding-right: 50px;
    margin: 0 0 20px 0;
  }
  .slider-controls .slider-dot ul {
    margin: 0 24px 0 0;
  }
}

.brand-slideshow-item {
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
}
.brand-slideshow-leftside {
  width: 52%;
}
.brand-slideshow-leftside img {
  width: 100%;
  height: 583px;
  object-fit: cover;
}
.brand-slideshow-rightside {
  width: calc(48% - 56px);
  padding-left: 56px;
  padding-right: 0;
  max-width: 570px;
}
.brand-slideshow-leftside .uk-slideshow-items{height: 583px;}
.brand-slideshow-rightside h2 span {
  color: var(--brand-secondary-color);
}
.brand-slideshow-description {
  font: 400 17px/31px var(--brand-body-font);
}
.brand-slideshow-arrow svg{display:none;}
.brand-slideshow-arrow .uk-position-center-left{margin-left:24px;    background: #3232324D;}
.brand-slideshow-arrow .uk-position-center-right{margin-right:24px;    background: #3232324D;}

.brand-slideshow-arrow {
  position: absolute;
  top: 50%;
  width:100%;
}
.brand-slideshow-arrow a {
  width: 44px;
  height: 44px;
  border: solid 1px rgb(245 241 235 / 40%);
  border-radius: 100%;
  background: rgb(50 50 50 / 30%);
  line-height: 34px;
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-slideshow-arrow a:hover, .brand-slideshow-arrow a:focus {
  background: #3232328c; 
}
.brand-slideshow-arrow a:hover:before, .brand-slideshow-arrow a:focus:before{
  color: var(--brand-secondary-color);
}
.brand-slideshow-dot {
  position: absolute;
  bottom: 30px;
  left: 32px;
}

.brand-slideshow-dot ul li a {
  background: var(--brand-inverse-color) !important;
  width: 20px;
  height: 2px;
  opacity: .4;
  border:none;
  border-radius:0;
}
.brand-slideshow-dot ul li.uk-active a, .brand-slideshow-dot ul li a:hover, .slider-controls .slider-dot ul li a:focus {
  opacity: 1;
  width: 40px;
}
.sildeshowimg:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1111;
    background: linear-gradient(90deg, rgba(50, 50, 50, 0.4) 0%, rgb(0 0 0 / 40%) 50%, rgb(50 50 50 / 40%) 100%);
}
@media (max-width: 960.98px) {
  .brand-slideshow-rightside {
    width: calc(48% - 30px);
    padding-left: 30px;
  }
}

@media (max-width: 820.98px) {
  .brand-slideshow-item {
    flex-direction: column-reverse;
  }
  .brand-slideshow-leftside {
    width: 100%;
  }
  .brand-slideshow-rightside {
    width: 100%;
    max-width: 100%;
    padding: 72px 24px;
  }
  .brand-slideshow-description {
    font: 400 16px/30px var(--brand-body-font);
  }
}

@media (max-width: 767.98px) {
  .brand-slideshow-leftside .uk-slideshow-items {
    height: 320px;
  }
  .brand-slideshow-leftside img {
    height: 100%;
  }
  .brand-slideshow-arrow {
    display: none;
}
}

.our-hotels__showcase {
  position: relative;
  overflow: hidden;
  padding: 132px 0 0 0;
}
.brand-hotel-grid {
  max-width: 485px;
  width: 100%;
  padding-bottom: 16px;
}
.brand-hotel-grid h2{ letter-spacing: -1%;line-height: 59px;}
.brand-hotel-grid h2 span{color: var(--brand-secondary-color);}

.our-hotels__hotel {
  position: relative;
  height: 632px;
  min-height: 632px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 32px 32px;
  width: 100%;
  box-sizing: border-box;
}


/* Actual image element */
.our-hotels__hotel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition:transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

/* Dark image overlay */

.brand-hotel-item-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.our-hotels__overlay:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 7, 3, 0.04) 0%, rgba(10, 7, 3, 0.15) 45%, rgba(10, 7, 3, 0.88) 100%);
}

.our-hotels__location {
  background: #323232BF;
  display: inline-block;
  color: #fff;
  font: 400 11px/17px var(--brand-body-font);
  text-transform: uppercase;
  letter-spacing: 18%;
  padding: 4px 10px;
  margin: 0 0 12px 0;
}
.our-hotels__hotel-title {
  color: var(--brand-inverse-color);
  margin-bottom: 16px;
}
.our-hotels__button{
  font: 500 12px / 18px var(--brand-body-font);
  letter-spacing: 0.8px;
  padding: 10px 16px;
  min-height: 38px;
}
.our-hotels__button:after {
  padding-left: 8px;
}

/* Content above image */
.our-hotels__content {
  position: relative;
  z-index: 2;
  width: 100%;
  transition:transform 0.45s cubic-bezier(.22, 1, .36, 1);
}

/* Image hover */
.our-hotels__hotel:hover .our-hotels__hotel-image {
  transform: scale(1.04);
}
.our-hotels__hotel:hover .our-hotels__button:after {
  left: 3px;
}
.our-hotels__hotel:hover .our-hotels__button{
  background: var(--brand-bg-cedar-color);
  border-color: var(--brand-bg-cedar-color);
  color: var(--brand-bg-primary-color);
}
/* Content hover */
.our-hotels__hotel:hover .our-hotels__content {
  transform: translateY(-7px);
}


@media (max-width: 960.98px) {
  .our-hotels__hotel {
    height: 464px;
    min-height: 464px;
    padding: 0 24px 24px;
  }

}

@media (max-width:767.98px) {
  .our-hotels__showcase {
    padding: 72px 0 0 0;
  }
  .brand-hotel-grid h2 {
    line-height: 41px;
  }
  .brand-hotel-item-list {
    flex-direction: column;
  }
  .brand-hotel-grid {
    max-width: 355px;
  }
}
/* Subscribe Form Section Starts */
.newsform-profile {
    filter: opacity(1);
}
.subscribe-section_widget {
  padding: 64px 0;;
}
.newsletter-small-title {
  font: 400 12px/18px var(--brand-tagline-font);
  color: var(--brand-secondary-color);
  text-transform: uppercase;
  letter-spacing: 12%;
  margin: 0 0 10px 0;
}
.newsletter-title {
  font: 300 30px/36px var(--brand-title-font);
}
.newsletter-title span {
  color: var(--brand-secondary-color);
}
.subscribe-sec_content {
  width: 100%;
  max-width:760px;
  margin: 0 auto;
}

.subscribe-content {
  color: var(--brand-primary-color);
}
.subscribe-sec_content ul {
  display: flex;
  justify-content: center;
  padding: 0;
  column-gap: 50px;
  color: var(--brand-primary-color);
}
.subscribe-sec_form {
  margin: 24px 0 20px;
}
.subscribe-form_list {
  display: flex;
  justify-content: center;
}
.subscribe-form_item {
  position: relative;
  max-width: 320px;
  width: 100%;
}
.subscribe-form_item input {
  width: 100%;
  height: 55px;
  color: var(--brand-primary-color);
  font: 400 14px / 25px var(--brand-body-font);
  text-align: center;
  background: transparent;
  border: solid 1px #32323266;
  border-width: 1px 0px 1px 1px;
}
.subscribe-form_item:nth-child(3) input {
  border-right-width: 1px;
}
.subscribe-form_item.subscribe-form_btn {
  max-width: 104px;
}
.subscribe-form_btn button {
  width: 100%;
  min-height: 55px;
  color: var(--brand-inverse-color);
  background: var(--brand-primary-color);
  border: 0;
  font: 500 12px / 18px var(--brand-body-font);
  letter-spacing: 8%;
}
.subscribe-form_btn button.uk-button:hover, .subscribe-form_btn button.uk-button:focus, .subscribe-form_btn button.uk-button:focus-visible {
  color: var(--brand-inverse-color);
  background: var(--brand-bg-cedar-color);
  border-color: var(--brand-bg-cedar-color);
}
.subscribe-form_item input::-webkit-input-placeholder {
  color: #3232328C;
}
.subscribe-form_item input::-moz-placeholder {
  color: #3232328C;
}
.subscribe-form_item input:-ms-input-placeholder {
  color: #3232328C;
}
.subscribe-form_item input:-moz-placeholder {
  color: #3232328C;
}
.subscribe-sec_links {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  color: var(--brand-primary-color);
  font: 400 14px/24px var(--brand-body-font);
}
.subscribe-sec_links p a {
  color:var(--brand-bg-cedar-color);
 
}


.subscribe-form_item .error-message {
  color: #f00;
  font: 400 14px / 25px var(--brand-body-font);
}

.subscribe-sec_links a{ color:var(--brand-bg-cedar-color);}
.subscribe-sec_links a:hover, .subscribe-sec_links a:focus, 
.subscribe-sec_links p a:hover, .subscribe-sec_links p a:focus {
  text-decoration: underline solid 1px;
  text-underline-offset: 3px;
}

@media (max-width: 767.98px) {
  .subscribe-form_item .error-message{
    bottom: 0 !important;
    margin-bottom: 6px;
  }
  .subscribe-section_widget {
    padding:48px 0;
  }
  .subscribe-form_list {
    flex-direction: column;
  }
  .subscribe-sec_form {
    margin: 40px 0 22px;
  }
  .subscribe-form_item, .subscribe-form_item.subscribe-form_btn {
    max-width: 100%;
  }
  .subscribe-form_item input{border-bottom:none;        border-right-width: 1px;}
  .subscribe-form_item input.input-error {
    border: solid 1px var(--primary-cta-inverse-color);
  }
  .subscribe-sec_links {
    font: 400 13px / 22px var(--brand-body-font);
  }
  .newsletter-title {
    font: 300 22px/26px var(--brand-title-font);
  }
}


/* Subscribe Form Section Ends */
.four-pillars {
  width: 100%;
  overflow: hidden;
  background: var(--brand-bg-surface-ink-color);
  padding: 112px 0;
    filter:opacity(1);
}

.four-pillars__intro {
  text-align: center;
  margin-bottom: 56px;
}

.four-pillars__eyebrow {
  display: block;
  margin: 0 0 20px;
  color: var(--brand-bg-cedar-light-color);
  letter-spacing: 12%;
  text-transform: uppercase;
  font: 400 11px/17px var(--brand-tagline-font);
}

.four-pillars__title {
  letter-spacing: -1px;
  color: var(--brand-inverse-color);
}
.four-pillars__title span {
  color: var(--brand-bg-cedar-light-color);
}

/* =========================================================
PILLAR GRID
========================================================= */

.four-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.four-pillars__item {
  border-right: 1px solid #F5F1EB1A;
}

.four-pillars__item:last-child {
  border-right: 0;
}

.four-pillars__media {
  position: relative;
  width: 100%;
  height: 251px;
  overflow: hidden;
  margin: 0;
}
.four-pillars__media:after{
  content: '';
  display: block;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.1) 35%, rgba(31, 31, 31, 0.55) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.four-pillars__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms ease;
}

.four-pillars__item:hover .four-pillars__image {
  transform: scale(1.035);
}


/* =========================================================
CONTENT
========================================================= */

.four-pillars__content {
  padding: 40px 48px;
  text-align: center;
}

.four-pillars__heading {
  position: relative;
  margin: 0 auto 16px;
  color: var(--brand-inverse-color);
  letter-spacing: -0.5%;
  font: 600 26px / 29px var(--brand-title-font);
}

.four-pillars__heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 17px auto 0;
  background: #9B6D59B2;
}

.four-pillars__description {
  margin: 0 auto;
  letter-spacing: -0.05px;
  color: var(--brand-inverse-color);
}


/* =========================================================
BOTTOM STATEMENT
========================================================= */

.four-pillars__closing {
  padding-top: 64px;

  text-align: center;
}

.four-pillars__closing-title {
  margin: 0;
  color: var(--brand-inverse-color);
  font: 400 56px/67px var(--brand-secondary-title-font);
}


/* =========================================================
ACCESSIBILITY
========================================================= */

.four-pillars__item:focus-within {
  outline: 1px solid var(--pillar-accent);
  outline-offset: -1px;
}

@media (prefers-reduced-motion: reduce) {
  .four-pillars__image {
    transition: none;
  }

  .four-pillars__item:hover .four-pillars__image {
    transform: none;
  }
}

@media (max-width: 1200px) {
  .four-pillars__content
  {    padding: 40px 24px;}
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 959px) {

  .four-pillars {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .four-pillars__intro {
    margin-bottom: 45px;
  }

  .four-pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .four-pillars__item {
    border-right: 1px solid #F5F1EB1A;
  }

  .four-pillars__item:nth-child(2) {
    border-right: 0;
  }

  .four-pillars__item:nth-child(3),
  .four-pillars__item:nth-child(4) {
    border-bottom: 0;
  }

  .four-pillars__media {
    height: 250px;
  }

  .four-pillars__content {
    min-height: 220px;
    padding-left: 28px;
    padding-right: 28px;
  }
}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 640px) {

  .four-pillars {
    padding:72px 0;
  }

  .four-pillars__intro {
    margin-bottom: 40px;
  }

  .four-pillars__grid {
    display: block;
  }

  .four-pillars__item,
  .four-pillars__item:nth-child(2),
  .four-pillars__item:nth-child(3),
  .four-pillars__item:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--pillar-divider);
  }

  .four-pillars__item:last-child {
    border-bottom: 0;
  }

  .four-pillars__media {
    height: 256px;
  }

  .four-pillars__content {
    min-height: auto;
    padding: 32px 24px 33px;
  }

  .four-pillars__heading {
        margin-bottom: 14px;
        font: 600 22px / 25px var(--brand-title-font);
  }
  

  .four-pillars__description {
    max-width: 340px;
    font: 400 15px/28px var(--brand-body-font);
  }
  .four-pillars__closing {
    padding-top: 40px;
  }

.four-pillars__closing-title {
    font: 400 36px / 43px var(--brand-secondary-title-font);
}
}
.brand-right-slideshow-item {
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
  background: var(--brand-inverse-highlight-color);
  justify-content: space-between;
}
.brand-right-slideshow-item .brand-slideshow-leftside {
  width: 50%;
}
.brand-right-slideshow-item .brand-slideshow-leftside img {
  width: 100%;
  height: 583px;
  object-fit: cover;
}
.brand-right-slideshow-item .brand-slideshow-rightside {
  width: calc(50% - 64px);
  padding-left: 64px;
  padding-right: 0;
  max-width: 630px;
}
.brand-right-slideshow-item .brand-slideshow-leftside .uk-slideshow-items{height: 583px;}
.brand-right-slideshow-item .brand-slideshow-rightside h2 span {
  color: var(--brand-secondary-color);
}
.brand-right-slideshow-item .brand-slideshow-description {
  font: 400 17px/31px var(--brand-body-font);
}
.brand-right-slideshow-item .brand-slideshow-arrow svg{display:none;}
.brand-right-slideshow-item .brand-slideshow-arrow .uk-position-center-left{margin-left:24px;background: #3232324D;}
.brand-right-slideshow-item .brand-slideshow-arrow .uk-position-center-right{margin-right:24px;background: #3232324D;}
.brand-right-slideshow-item .brand-slideshow-arrow {
  position: absolute;
  top: 50%;
  width:100%;
}
.brand-right-slideshow-item .brand-slideshow-arrow a {
  width: 44px;
  height: 44px;
  border: solid 1px rgb(245 241 235 / 40%);
  border-radius: 100%;
  background: rgb(50 50 50 / 30%);
  line-height: 34px;
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-right-slideshow-item .brand-slideshow-arrow a:hover, .brand-slideshow-arrow a:focus {
   background: #3232328c; 
}
.brand-right-slideshow-item .brand-slideshow-arrow a:hover:before, .brand-slideshow-arrow a:focus:before{
  color: var(--brand-secondary-color);
}
.brand-right-slideshow-item .brand-slideshow-dot {
  position: absolute;
  bottom: 30px;
  right: 32px;
  left: inherit;
}

.brand-right-slideshow-item .brand-slideshow-dot ul li a {
  background: var(--brand-inverse-color) !Important;
  width: 20px;
  height: 2px;
  opacity: .4;
  border:none;
   border-radius:0;
}
.brand-right-slideshow-item .brand-slideshow-dot ul li.uk-active a, .brand-right-slideshow-item .brand-slideshow-dot ul li a:hover, .slider-controls .slider-dot ul li a:focus {
  opacity: 1;
  width: 40px;
}
.sildeshowimg:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1111;
    background: linear-gradient(90deg, rgba(50, 50, 50, 0.4) 0%, rgb(0 0 0 / 40%) 50%, rgb(50 50 50 / 40%) 100%);
}
@media (max-width: 960.98px) {
  .brand-right-slideshow-item .brand-slideshow-rightside {
    width: calc(50% - 30px);
    padding-left: 30px;
  }
}

@media (max-width: 820.98px) {
  .brand-right-slideshow-item  {
    flex-direction: column;
  }
  
  .brand-right-slideshow-item .brand-slideshow-leftside {
    width: 100%;
  }
  .brand-right-slideshow-item .brand-slideshow-rightside {
    width: 100%;
    max-width: 100%;
    padding: 72px 24px;
  }
 .brand-right-slideshow-item .brand-slideshow-description {
    font: 400 16px/30px var(--brand-body-font);
  }
}

@media (max-width: 767.98px) {
  .brand-right-slideshow-item .brand-slideshow-leftside .uk-slideshow-items {
    height: 320px;
  }
  .brand-right-slideshow-item .brand-slideshow-leftside img {
    height: 100%;
  }
  .brand-right-slideshow-item .brand-slideshow-arrow {
    display: none;
  }
}

.specials-packages {
  width: 100%;
  padding: 80px 0;
  background: #ECE5D766;
}
.specials-packages__label {
  margin-bottom: 40px;
}

.specials-packages__grid {
  display: grid;

  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.special-card {
  display: flex;
  flex-direction: column;
}
.special-card__media {
  position: relative;
  width: 100%;
  height: 320px;
  margin: 0;
  overflow: hidden;
}
.special-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.special-card:hover .special-card__image {
  transform: scale(1.025);
}

.special-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 347px;
  padding: 32px;
  background: var(--brand-bg-primary-color);
}

.special-card__title {
  font: 300 28px / 32px var(--brand-title-font);
  margin: 0 0 12px;
}

.special-card__availability {
  letter-spacing: 8%;
  text-transform: uppercase;
  font: 500 11px / 17px var(--brand-body-font);
  margin: 0 0 12px;
}

.special-card__description {
  margin: 0 0 20px;
  font: 400 14px/25px var(--brand-body-font);
}
.special-card__description ul li {
  margin-bottom: 2px;
}
.special-card__description ul li::marker {
  color: #9B6D59;
  font-size: 12px;}
.special-card__description ul {
  padding: 0 0 0 14px;
}

.special-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.special-card__button {
  font-size: 11px;
  padding: 12px 20px;
  min-height: 41px;
  line-height: 16px;
}

@media (max-width: 1100px) {
  .special-card__content {
    padding: 24px;
  }
  .special-card__button {
    padding: 12px 15px;
  }
}


@media (max-width: 960.98px) {

  .specials-packages {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .specials-packages__container {
    width: calc(100% - 48px);
  }

  .specials-packages__label {
    margin-bottom: 32px;
  }

  .specials-packages__grid {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .special-card__media {
    height: 280px;
  }
  .special-card__content {
    min-height: 350px;
    padding: 30px 26px 30px;
  }
  .special-card__actions {
    flex-wrap: wrap;
  }
}


@media (max-width: 640.98px) {

  .specials-packages {
    padding:48px 0;
  }

  .specials-packages__container {
    width: calc(100% - 32px);
  }

  .specials-packages__label {
    margin-bottom: 28px;

  }

  .specials-packages__label::before {
    width: 18px;
    margin-right: 10px;
  }

  .specials-packages__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .special-card__media {
    height: 257px;
  }

  .special-card__content {
    min-height: 0;
    padding:28px 24px 28px;
  }

  .special-card__title {
    font: 300 24px/28px var(--brand-title-font);
  }

  .special-card__description {
    font-size: 14px;
  }

}


/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .special-card__image {
    transition: none;
  }

  .special-card:hover .special-card__image {
    transform: none;
  }

  .special-card__button {
    transition: none;
  }
}

.amenities-section {
  background: var(--brand-primary-color);
  padding: 112px 0;
  color: var(--brand-inverse-color);
}

.amenities-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 42px;
}
.amenities-header__left {
  flex: 0 0 auto;
}
.amenities-header__title {
  max-width: 280px;
  margin: 0;
  font: 300 40px / 42px var(--brand-title-font);
  color: var(--brand-inverse-color);
}
.amenities-header__description {
  font: 400 14px / 24px var(--brand-body-font);
  opacity: 0.85;
}
.amenities-column__item {
  position: relative;
  align-items: flex-start;
}
.amenities-list {
  margin: 0;
  padding: 0;
  list-style: none;
  row-gap: 24px;
}
.amenities-list > li {
  position: relative;
  margin: 0;
  color: var(--brand-inverse-color);
  opacity: 0.95;
  font: 300 15px / 23px var(--brand-body-font);
  padding-left: 16px;
  padding-right: 32px;
  margin: 0 !important;
}
.amenities-list > li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9B6D59;
}
.amenities-header__left .brand-tagline {
  color: var(--brand-bg-cedar-light-color);
}
.amenities-header__left .brand-tagline:after{background:var(--brand-bg-cedar-light-color);}

@media (max-width: 1199px) {
  .amenities-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .amenities-header {
    margin-bottom: 38px;
  }
}

@media (max-width: 960.98px) {
  .amenities-section {min-height: auto;padding: 72px 0;}
  .amenities-header {align-items: flex-start;flex-direction: column;gap: 12px;}
  .amenities-column__item {margin-bottom: 22px;}
  .amenities-header__title{max-width: 100%;}
  .amenities-header__left .brand-tagline {margin-bottom: 16px;}
}

@media (max-width:767.98px) {
  .amenities-header__title {
    font: 300 28px / 30px var(--brand-title-font);
  }
  .amenities-header__description {
    font: 400 13px / 22px var(--brand-body-font);
  }
  .amenities-list > li {
    font: 300 14px / 20px var(--brand-body-font);
    padding-left: 15px;
    padding-right: 12px;
  }
  .amenities-list > li::before {
    top: 7px;
  }
  .amenities-list {
    row-gap: 16px;
  }
}
.testimonial-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 112px 0;
      filter: opacity(1);
}

.testimonial-inner {
  width: 100%;
  max-width: 820px;
  text-align: center;
}

.testimonial-brackets {
  margin: 0 0 20px;
  color: var(--brand-secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font: 400 12px / 18px var(--brand-tagline-font);
  filter:opacity(1);
}
.testimonial-heading {
  font: 400 34px/37px var(--brand-title-font);
}

.testimonial-heading span {
  color: var(--brand-secondary-color);
}

/* Publication row */

.press-list ul{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 20px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.press-list li {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  font: 300 18px / 23px var(--brand-title-font);
  font-style: italic;
}

.press-name {
  display: inline-block;
  color: #56524e;
  font-family: var(--display-font);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

.section-divider {
  height: 1px;
  margin: 56px auto 0;
  border: 0;
  background: #A59C9240;
  max-width: 820px;
}


.testimonial {
  margin-top: 48px;
}

.testimonial-label {
  margin: 0 0 16px;
  color: var(--brand-secondary-color);
  font: 500 12px / 18px var(--brand-body-font);
  letter-spacing: 8%;
  text-transform: uppercase;
}

.testimonial-quote {
  max-width: 820px;
  margin: 0 auto;
  font: 400 28px / 39px var(--brand-title-font);
  font-style: italic;
}

.testimonial-attribution {
  margin:20px 0 0;
  text-transform: uppercase;
  font: 500 11px / 17px var(--brand-body-font);
  letter-spacing: 0.8px;
}

.testimonial-attribution::before {
  content: "—";
  display: inline-block;
  margin-right: 6px;
  font-size: 12px;
}

.testimonial-section .testimonial-dot { margin: 32px 0 0 0  !important;}
.testimonial-section .testimonial-dot li a {
  background: #32323240;
  width: 14px;
  height: 2px;
  border:none;
  border-radius:0;
}
.testimonial-section .testimonial-dot li.uk-active a,.testimonial-section .testimonial-dot li a:hover, .testimonial-section .testimonial-dot li a:focus-visible {
  width: 28px;
  background: var(--brand-primary-color);
  border-color: var(--brand-primary-color);
}


/* ---------------------------------------------
Responsive
--------------------------------------------- */

@media (max-width: 960.98px) {
  .testimonial-section {
    padding: 72px 0;
  }

  .press-list ul {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
    margin-top: 40px;
  }

  .section-divider {
    margin-top: 40px;
  }

}

@media (max-width: 767.98px) {
  .testimonial-brackets{margin: 0 0 16px;}
  .testimonial-heading {
    font: 300 24px/29px var(--brand-title-font);
  }
  .press-list ul{
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial {
    margin-top: 40px;
  }
  .testimonial-quote {
    font: 300 22px / 31px var(--brand-title-font);
  }
}
.gallery-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 72px 32px;
}
.gallery-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 30px;
  background: #323232B2;
  color: var(--brand-inverse-color);
  text-transform: uppercase;
  font: 500 11px/17px var(--brand-body-font);
  margin: 0px 48px 29px auto;
}
.brand-gallery-item{    width: 30%;
  /*max-width: 556px;*/}
.brand-gallery-list.uk-grid>* {
  padding-left:16px;
}
.brand-gallery-list.uk-grid {
  margin-left: -16px;     justify-content: space-around;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  min-height: 320px;
}
.gallery-arrow{
  position: absolute;
  top: 50%;
  transform: translate(0px, 30px);
  width: 100%;
}
.gallery-arrow a{
  width: 44px;
  height: 44px;
  border: solid 1px rgb(245 241 235 / 40%);
  border-radius: 100%;
  background: rgb(50 50 50 / 30%);
  line-height: 34px;
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow a svg {
  display: none;
}
.gallery-arrow .uk-position-center-left {
  margin: 0 0 0 20px;
}

.gallery-arrow .uk-position-center-right {
  margin: 0 20px 0 0;
}

.gallery-arrow a:hover, .gallery-arrow a:focus {
background: #3232328c;
}
.gallery-arrow a:hover:before, .gallery-arrow a:focus:before {
  color: var(--brand-secondary-color);
}
/*
.gallery-slide img {
transition:
transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-slide:hover img {
transform: scale(1.015);
}*/

.gallery-dot {
  display: none;
}

/* --------------------------------------------------
Tablet
-------------------------------------------------- */

@media (max-width: 1100px) {

  .brand-gallery-item {
    width: 45%;
    max-width: 556px;
  }
}

@media (max-width: 960.98px) {

  .brand-gallery-item {
    width: 55%;
  }
}

@media (max-width: 767.98px) {
  .brand-gallery-list.uk-grid>* {
    padding-left: 12px;
  }
  .brand-gallery-list.uk-grid {
    margin-left: -12px;
  }
  .gallery-counter {
    display: none;
  }
  .brand-gallery-item {
    width: 86%;
    max-width: 100%;
  }
  .gallery-section {
    padding: 48px 0 22px 16px;
  }
  .gallery-arrow {
    display: none;
  }
  .gallery-slide img {
    min-height: 190px;
  }
  .gallery-dot {
    display: block;
    padding: 24px 0 0 0;
  }
  .gallery-section .gallery-dot li a {
    background: #32323240;
    width: 12px;
    height: 2px;
    border: solid 1px #32323240;
    border-radius: 0;
}
  .gallery-section .gallery-dot li.uk-active a, .gallery-section .gallery-dot li a:hover, .gallery-section .gallery-dot li a:focus-visible {
    width: 24px;
    background: var(--brand-primary-color);
    border-color: var(--brand-primary-color);
}
}


.brand-lark-footer {
  background: var(--brand-bg-secondary-color);
  color: #ECE5D7D9;
  padding: 80px 20px 32px;
}

.brand-lark-footer .brand-tagline {
  color: var(--brand-bg-cedar-light-color);
  font-family: var(--brand-body-font);
}
.brand-lark-footer .brand-tagline:after {
  background: var(--brand-bg-cedar-light-color);
}

.lark-footer__brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 200px;
}

.lark-footer__brand {
  position: relative;
  padding: 28px;
  border-left: 1px solid #ECE5D71A;
}

.lark-footer__brand:first-child {
  border-left: 0;
  padding-left: 28px;
}

.lark-footer__brand:last-child {
  padding-right: 28px;
}

.lark-footer__brand-mark {
  min-height: 42px;
  display: flex;
  align-items: center;
  position: relative;
}


.lark-footer__brand-arrow {
  position: absolute;
  top: 17px;
  right: 0;
  transform: rotate(135deg);
  font-size: 11px;
  color: #ECE5D7D9;
  transition: 0.5s;
}
.lark-footer__brand:hover .lark-footer__brand-arrow, .lark-footer__brand:focus .lark-footer__brand-arrow {
  color: var(--brand-bg-cedar-light-color);
  transform: rotate(135deg);
  top: 15px;
  right: -2px;
}

.lark-footer__brand-description {
  max-width: 220px;
  margin: 12px 0 21px;
  font: 400 14px / 25px var(--brand-body-font);
}

.lark-footer__brand-link {
  display: inline-block;
  color: #ECE5D7D9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font: 500 11px / 16px var(--brand-body-font)
}

.lark-footer__brand-link::after {
  content: "\e970";
  font-family: 'icomoon' !important;
  font-size: 5px;
  padding-left: 8px;
  position: relative;
  top: -1px;
  left: 0;
  transition: 1s;
}

.lark-footer__brand-link:hover, .lark-footer__brand-link:focus{
  color: var(--brand-bg-cedar-light-color);
}

.selectbrand .lark-footer__brand-link{color: var(--brand-bg-cedar-light-color);}
.selectbrand .lark-footer__brand-link:after{display:none;}
/* =========================================================
DIVIDER
========================================================= */

.lark-footer__divider {
  height: 1px;
  margin: 56px 0 0;
  background: #ECE5D71A;
}

/* =========================================================
LOWER FOOTER
========================================================= */

.lark-footer__lower {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 40px;
  border-bottom: solid 1px #ECE5D71A;
}

/* =========================================================
ABOUT
========================================================= */
.lark-footer__about-mark img {
  width: 68px;
  height: 36px;
}

.lark-footer__about-mark {
  margin: 0 0 13px;
}
.lark-footer__about-text {
  max-width: 505px;
  font: 400 14px / 25px var(--brand-body-font);
}

.lark-footer__column-title {
  margin: 0 0 16px;
  color: var(--brand-bg-cedar-light-color);
  text-transform: uppercase;
  font: 500 12px / 18px var(--brand-body-font);
  letter-spacing: 0.8px;
}

/* =========================================================
PROPERTY LINKS
========================================================= */

.lark-footer__properties {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lark-footer__properties li {
  margin: 0 0 10px;
}

.lark-footer__properties a {
  color: #ECE5D7D9;
  transition: color 180ms ease, opacity 180ms ease;
  font: 400 14px / 25px var(--brand-body-font);
}
.lark-footer__properties a:hover,
.lark-footer__properties a:focus-visible {
  color:var(--brand-bg-cedar-light-color);
}
.lark-footer__email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ECE5D7E5;
  font-size: 13px;
  line-height: 1.5;
}
.lark-footer__email::before {
  width: 12px;
  height: 12px;
  content: "\e905";
  font-family: 'icomoon';
  font-size: 10px;
}
.lark-footer__socials ul {
  display: flex;
  margin-top: 18px;
  list-style: none;
  padding: 0;
  gap: 12px;
}
.lark-footer__socials ul li a {
  font-size: 13px;
  color: #ECE5D7D9;
}
.lark-footer__socials ul li a:hover, .lark-footer__socials ul li a:focus {
  color: var(--brand-bg-cedar-light-color);
}
.lark-footer__socials ul li a.icon-mail {
  font-size: 12px;
}
.lark-footer__socials ul li a.icon-phone {
  font-size: 14px;
}
.lark-footer__email:hover, .lark-footer__email:focus {
  color: var(--brand-bg-cedar-light-color);
}


/* =========================================================
BOTTOM BAR
========================================================= */

.lark-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--footer-border);
  padding: 28px 0 0 0;
}

.lark-footer__copyright {
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font: 500 11px / 17px var(--brand-body-font);
  color: #ECE5D7D9;
}
.lark-footer__legal {
  display: flex;
  align-items: center;
  gap: 27px;
}
.lark-footer__legal a {
  text-transform: uppercase;
  font: 400 11px / 15px var(--brand-body-font);
  color: #ECE5D7D9;
  letter-spacing: 0.8px;
}
.lark-footer__legal a:hover,
.lark-footer__legal a:focus-visible {
  color: var(--brand-bg-cedar-light-color);
}
.lark-footer__legal ul {
  list-style: none;
  display: flex;
  column-gap: 20px;
  padding: 0;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {

  .brand-lark-footer {
    padding: 60px 20px 32px;
  }
  .lark-footer__brand {
    padding: 15px;
  }
  .lark-footer__brand:first-child {
    padding-left: 15px;
  }
}

@media (max-width: 960.98px) {

  .lark-footer__family {
    padding-top: 55px;
  }

  .lark-footer__brands {
    grid-template-columns: repeat(2, 1fr);
  }


  .lark-footer__brand:nth-child(3) {
    border-left: 0;
  }

  .lark-footer__lower {
    grid-template-columns: 1.3fr 1fr;
    gap: 45px;
  }

  .lark-footer__contact {
    grid-column: 2;
  }

  .lark-footer__about {
    grid-column: 1;
  }
  .lark-footer__brand{    padding: 28px;}
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .brand-lark-footer {
    padding: 56px 20px 32px;
  }
  .lark-footer__family {
    padding-top: 40px;
    margin-bottom: 22px;
    font-size: 10px;
  }
  .lark-footer__brands {
    grid-template-columns: 1fr;
  }

  .lark-footer__brand,
  .lark-footer__brand:first-child,
  .lark-footer__brand:last-child {
    padding: 24px;
    border-left: 0;
    border-bottom:0;
  }
  .lark-footer__brand{ border-bottom: 1px solid #ECE5D71A;}

  .lark-footer__brand:first-child {
    border-bottom: 1px solid #ECE5D71A;
  }
  .lark-footer__brand-arrow {
    right: 24px;
    top: 35px;
  }
  .lark-footer__brand-name img {
    padding: 0 12px 0 0;
  }

  .lark-footer__brand-description {
    max-width: 100%;
    width: 294px;
    min-width: 100%;
    margin: 12px 0 15px;
  }

  .lark-footer__divider {
    margin-top: 15px;
    background: transparent;
  }


  .lark-footer__lower {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 0 32px;
  }

  .lark-footer__about-text {
    max-width: none;
  }

  .lark-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 0 0;
  }

  .lark-footer__legal {
    gap: 20px;
  }
}
.uk-offcanvas-page {
  overflow: hidden;
}
/* Header Starts */
.ng-star-inserted .header{position: relative !important;}
.ng-star-inserted .header ul li a{color: #000 !important;}
.ng-star-inserted .header .logo svg, .ng-star-inserted .header .logo svg path, .ng-star-inserted .header .logo svg, .ng-star-inserted .header .logo svg path, .ng-star-inserted .header .logo svg polygon, .ng-star-inserted .header .logo svg polygon, .ng-star-inserted .header .logo svg rect, .ng-star-inserted .header .logo svg rect {
  filter: invert(1) brightness(0);
}
.fixedheader .ng-star-inserted header {
  margin-bottom: 0px;
  margin-top: 20px;
}  

.header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  background-color: transparent;
  text-align: center;
  transition: height .3s ease-out, background-color .3s ease-out;
  display: grid;
  align-items: center;
  height: 85px;
  top:0;
}
.header.is-fixed, .fixedheader .header{
  background: var(--brand-bg-primary-color);
  height: 61px;
} 

.property-header-btn .uk-button:after {display:none;}

.property-header-btn .uk-button{
  background: var(--brand-inverse-color);
  font: 400 11px / 17px var(--brand-body-font);
  color: var(--brand-primary-color);
  letter-spacing: 1.8px;
  padding: 7px 23px;
  border: solid 1px var(--brand-inverse-color);
  min-height: 37px;
  opacity: 0.9;
}

.is-fixed .property-header-btn .uk-button{
  background: var(--brand-primary-color);
  color: var(--brand-inverse-color);
}
.property-header-btn .uk-button:hover,
.property-header-btn .uk-button:focus,
.is-fixed .property-header-btn .uk-button:hover, 
.is-fixed .property-header-btn .uk-button:focus{
  background: var(--brand-bg-cedar-color);
  border-color: var(--brand-bg-cedar-color);
  color: var(--brand-bg-primary-color);
}

.header .navbar ul li a {
  min-height: auto;
  color: var(--brand-inverse-color);
  letter-spacing: 1.8px;
  font:500 12px/18px var(--brand-body-font);
  filter: opacity(1);
}
.header .navbar ul li a:hover, .header .navbar ul li a:focus, .header .navbar ul li a.navON {
  color: var(--brand-bg-cedar-light-color);
}
.header .navbar ul { gap:32px;}

.header .navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.header .navbar-flex{    justify-content: space-between;
  width: 100%;
  align-items: center;
}


.header.is-fixed .navbar ul li a,
.fixedheader  .header .navbar ul li a {     color: var(--brand-primary-color);}
.header.is-fixed .navbar ul li a:hover,
.header.is-fixed .navbar ul li a:focus,
.header.is-fixed .navbar ul li a.navON,
.fixedheader .header .navbar ul li a:hover,
.fixedheader .header .navbar ul li a:focus,
.fixedheader .header .navbar ul li a.navON {
  color: var(--brand-secondary-color);
}
.header.is-fixed .logo svg, .header.is-fixed .logo svg path, .fixedheader .header .logo svg, .fixedheader .header .logo svg path, .fixedheader .header .logo svg polygon, .header.is-fixed .logo svg polygon, .fixedheader .header .logo svg rect, .header.is-fixed .logo svg rect { 
  filter: invert(1) brightness(0);}

.header .logo .mobile-menu-icon, .header .logo .header-phone-number { display:none; }
.fixedheader header { margin-bottom: 100px; }
.mobile-menushow {
  background: var(--brand-primary-color);
  position: fixed;
  width: 100%;
  left: 0;
  padding: 20px 40px;
  height: 100vh;
  overflow: auto;
  padding-bottom: 40px;
  top: 50px;
  transition:0.6s;
  opacity: 0;
  visibility: hidden;

}
.mobile-menuitem {
  padding:60px 0 0 0;
}
.mobile-menuitem ul li { list-style:none;margin-bottom: 6px; }
.mobile-menuitem ul li a { font:var(--mob-header-fonts); }
.mobile-menuitem ul li a.navON {
  color: var(--highlight-color);
  text-transform: var(--header-fonts-text-transform);
  border-bottom: solid 1px var(--highlight-color);
}

.logo .sr-only{filter: opacity(1);}

.header-langsel__control .template-icon-down-arrow {
  padding-left: 8px
}

.navbar-center-left {
  display: flex;
  align-items: center;
}

.navbar .submenulist {
  position: absolute;
  display: none;
  background:var(--brand-bg-primary-color);
  list-style: none;
  text-align: left;
  width: 200px;
  padding: 10px 15px ;
  box-shadow: 0 1px 10px #adadad6b;
  margin-top: -1px;
  left:0;
  z-index: 1;
}
.navbar .submenulist li {
  padding: 0 !important;
  width: 100%;
  margin: 0 0 5px 0;
}
.navbar .submenulist li a {
  color: var(--brand-primary-color);
}

.navbar .submenulist li a:hover, .navbar .submenulist li a:focus {
  color: var(--brand-secondary-color) !important;
}
.header .navbar ul li:hover .submenulist, .header .navbar ul li:focus .submenulist {
  display: block;
}
.mobile-booking-section{display:none}
@media (min-width: 1050.98px) {
  .logo {
    position: relative;
    z-index: 500;
    width: auto;
  }
}

@media (max-width: 1050px) {
  .header {
    height: 76px;
  }
  .header.is-fixed, .fixedheader .header {
    background: var(--brand-primary-color);
    height: 60px;
  }
  .mobilemenuopen .header {
    background: var(--brand-primary-color);
  }
  .mobilemenuopen .mobile-menushow {        top: 70px;}
  .header .logo svg{width: auto;padding-right: 20%;}
  .header.is-fixed .logo svg{width: auto;padding-right: 20%;}

  .header .navbar ul{display:none}
  .property-header-btn{display:none}
  .header .logo .mobile-menu-icon, .header .logo .header-phone-number {
    display: inline-block;
  }
  .logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .fixedheader .header {
    background:var(--header-bg-color);
    height: 60px;

  }

  .fixedheader header {
    margin-bottom: 60px;
  }

  .header-phone-number a{color: var(--header-color);
    font-size: 20px;}
  .mobile-menuitem ul{    padding: 0;}
  .mobile-menuitem ul li {
    list-style: none;
    text-align: left;
    padding: 16px 0;
  }
  .mobile-menuitem ul li a{
    color: var(--brand-bg-primary-color);
    font: 300 42px / 46px var(--brand-title-font);
  }
  .mobile-menuitem ul li a:hover, .mobile-menuitem ul li a:focus, .mobile-menuitem ul li .navON{
           color: var(--brand-bg-cedar-light-color);
  }
  
  .mobile-menu-icon a {color: var(--brand-inverse-color);}
  .mobile-menu-icon a .mm-menuicon{    font-size: 14px;}

  .mobile-submenuitem {
    list-style: none;
    border-top:solid 1px rgb(0 0 0 / 30%);
    margin:30px 0 0 0;
    padding: 21px 0 0 0;
  }
  .mobile-submenuitem ul {   
    list-style: none;
    margin-bottom: 3px;
    text-align: left;
    padding:0;
  }
  .mobile-submenuitem ul li a{
    font: 400 17px / 30.6px var(--tagline-text);
    color: var(--header-color);
  }
  .mobile-submenuitem ul li a.navON{
    color: var(--highlight-color);
  }

  .mobile-menu-icon .closeicon { display:none; }
  .mobilemenuopen .mobile-menu-icon .menuicon { display:none; }
  .mobilemenuopen .mobile-menu-icon .closeicon { display:block; }
  .mobilemenuopen .mobile-menushow { visibility: visible; opacity: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 110px;
  }
  .mobilemenuopen .is-fixed .mobile-menushow{        top: 60px;}
  .mobilemenuopen { overflow: hidden; }
  .socialmedialinks-mobile ul { padding: 0; }

  .header .logo .Downtown.Clifton, .fixedheader .header .logo .Downtown.Clifton{    
    background: #020202;
    padding:5px;
  }

  .header.is-fixed .logo svg, .header.is-fixed .logo svg path, .fixedheader .header .logo svg, .fixedheader .header .logo svg path, .fixedheader .header .logo svg polygon, .header.is-fixed .logo svg polygon, .fixedheader .header .logo svg rect, .header.is-fixed .logo svg rect, .header .logo svg rect { 
    filter: invert(1) brightness(1);}

  .header .logo svg polygon{
    filter: invert(1) brightness(1);
  }

  .mobile-menuitem .submenulist{padding: 10px 0 10px 20px;display: none;}
  .mobile-menuitem .submenulist li a{    font-size: 25px;}
  .submenumobile{    position: relative;}
  .submenumobile a:after {
    content: '+';
    font-size: 50px;
    position: absolute;
    top: 5px;
    right: 0px;
    font-weight: 700;pointer-events: none;
  }
  .submenumobile.active a:after {        
    content: '';
    font-size: 50px;
    position: absolute;
    top: 25px;
    right: 0px;
    font-weight: 700;
    background: #000;
    width: 26px;
    height: 3px;}

  .submenumobile.active .submenulist{display: block;}

  .mobilemenuopen .header .navbar {padding: 0 20px;}
  .mobile-booking-section {        text-align: left;
    display: block;
  }
  .mobile-elementary-section {
    color: var(--brand-inverse-color);
    opacity: 0.85;
    font: 400 11px / 19px var(--brand-body-font);
  }

}
