/*
@mixin presentation-columns-additional {

    @media (min-width: 0px) {
        padding: 0;
        width: 100%;
    }

}*/
.highlight-strip {
  border: 0px solid #ccc;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  font-family: Lato, Arial, Courier;
  margin-top: 0px;
}
@media (min-width: 768px) {
  .highlight-strip {
    margin-top: 25px;
  }
}

.highlight-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .highlight-strip__grid {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .highlight-strip__grid .highlight-strip__item {
    border-bottom: none;
  }
  .highlight-strip__grid .highlight-strip__item:not(:last-child) {
    border-right: 1px solid #ccc;
  }
}

.highlight-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.highlight-strip__item:nth-child(2n) {
  border-right: none;
}
.highlight-strip__item:nth-last-child(-n+2) {
  border-bottom: none;
}
@media (min-width: 768px) {
  .highlight-strip__item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-bottom: none;
  }
  .highlight-strip__item:nth-child(2n) {
    border-right: 1px solid #ccc;
  }
  .highlight-strip__item:last-child {
    border-right: none;
  }
}

.highlight-strip__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #f4f5f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.highlight-strip__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
@media (min-width: 768px) {
  .highlight-strip__icon {
    margin-bottom: 0;
  }
}

.highlight-strip__value {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  line-height: 1.3;
  display: block;
}

.highlight-strip__label {
  font-size: 13px;
  color: #a0a09c;
  line-height: 1.3;
  margin-top: 2px;
  display: block;
}
.highlight-strip__label .highlight-strip__label--short {
  display: block;
}
.highlight-strip__label .highlight-strip__label--long {
  display: none;
}
@media (min-width: 768px) {
  .highlight-strip__label {
    font-size: 13px;
    color: #484848;
    margin-top: 1px;
  }
  .highlight-strip__label .highlight-strip__label--short {
    display: none;
  }
  .highlight-strip__label .highlight-strip__label--long {
    display: block;
  }
}

.highlight-strip__score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #dc9e00;
  border-top: 0.5px solid #fff;
}
@media (max-width: 767px) {
  .highlight-strip__score {
    padding: 10px 16px;
  }
}

.highlight-strip__score-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-strip__score-number {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  .highlight-strip__score-number {
    font-size: 24px;
  }
}

.highlight-strip__score-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-strip__score-stars {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}
@media (max-width: 767px) {
  .highlight-strip__score-stars {
    font-size: 12px;
  }
}

.highlight-strip__score-count {
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .highlight-strip__score-count {
    font-size: 10px;
  }
}

.highlight-strip__score-link {
  font-size: 13px;
  color: #fff !important;
  text-decoration: none;
  white-space: nowrap;
}
.highlight-strip__score-link:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .highlight-strip__score-link {
    font-size: 12px;
  }
}

.price-anchor {
  background: #ffffff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 14px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: Lato, Arial, Courier;
}

.price-anchor__pricing {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.price-anchor__label {
  font-size: 13px;
  color: #484848;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.price-anchor__value {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-anchor__unit {
  font-size: 13px;
  font-weight: 400;
  color: #484848;
}

.price-anchor__por {
  display: none;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
}

.price-anchor__por-sub {
  font-size: 12px;
  color: #484848;
  margin-top: 1px;
  display: none;
}

.price-anchor__link {
  font-size: 13px;
  color: #000 !important;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.price-anchor__link:hover {
  text-decoration: underline;
}

.price-anchor--por .price-anchor__value {
  display: none;
}
.price-anchor--por .price-anchor__por {
  display: block;
}
.price-anchor--por .price-anchor__por-sub {
  display: block;
}
.price-anchor--por .price-anchor__link {
  display: none;
}

.price-anchor--sidebar {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  display: block;
}
.price-anchor--sidebar .price-anchor__pricing {
  margin-bottom: 4px;
}
.price-anchor--sidebar .price-anchor__value {
  font-size: 24px;
}
.price-anchor--sidebar .price-anchor__note {
  font-size: 11px;
  color: #484848;
  margin-bottom: 16px;
  display: block;
}
.price-anchor--sidebar .price-anchor__link {
  display: block;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 12px;
}
.price-anchor--sidebar .price-anchor__divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 16px 0;
}
.price-anchor--sidebar .price-anchor__btn {
  display: block;
  width: 100%;
  background: #1d9e75;
  color: #e1f5ee;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 11px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
  margin-bottom: 10px;
}
.price-anchor--sidebar .price-anchor__btn:hover {
  background: #198f69;
}
.price-anchor--sidebar .price-anchor__tel {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #0f6e56;
  text-decoration: none;
}
.price-anchor--sidebar .price-anchor__tel:hover {
  text-decoration: underline;
}
.price-anchor--sidebar .price-anchor__nav-title {
  font-size: 10px;
  font-weight: 500;
  color: #484848;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
  display: block;
}
.price-anchor--sidebar .price-anchor__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-anchor--sidebar .price-anchor__nav-item a {
  display: block;
  font-size: 12px;
  color: #484848;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
}
.price-anchor--sidebar .price-anchor__nav-item a:hover {
  background: #ffffff;
  color: #000;
}
.price-anchor--sidebar .price-anchor__nav-item a.is-active {
  background: #ffffff;
  color: #0f6e56;
  font-weight: 500;
}

.header-carousel {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  .header-carousel {
    display: none;
  }
}
.castle-carousel {
  width: 100%;
  position: relative;
  margin: 0;
  /*max-width:580px;*/
  position: relative;
  overflow: visible;
}

.castle-carousel__caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 8px;
}

.castle-carousel__counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 8px;
}

.castle-carousel-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0;
  scroll-snap-type: x mandatory;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.castle-carousel-wrapper::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent; /* make scrollbar transparent */
}

.castle-carousel__item--gallery {
  width: 100%;
  height: auto;
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.castle-carousel__item--card {
  width: 221.25px;
  height: auto;
  scroll-snap-align: start;
  flex: 0 0 auto;
  margin-right: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}

.castle-carousel__item--card:last-of-type {
  margin-right: 0;
}

.castle-carousel__item-card-headline {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  flex-shrink: 1;
}
@media (min-width: 992px) {
  .castle-carousel__item-card-headline {
    line-height: 1.4;
  }
}

.castle-carousel__item-card-summary {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 992px) {
  .castle-carousel__item-card-summary {
    line-height: 1.4;
  }
}

.castle-carousel__item-card-button {
  background-color: #BA3035;
  color: #fff !important;
  border: 1px solid #BA3035;
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  padding: 6px 10px 8px 10px;
  display: inline-block;
  margin-top: 3px;
}
.castle-carousel__item-card-button:link {
  color: #fff !important;
}
.castle-carousel__item-card-button:visited {
  color: #fff !important;
}
.castle-carousel__item-card-button:hover {
  color: #fff !important;
}
.castle-carousel__item-card-button:active {
  color: #fff !important;
}
.castle-carousel__item-card-button:link {
  text-decoration: none;
}
.castle-carousel__item-card-button:visited {
  text-decoration: none;
}
.castle-carousel__item-card-button:hover {
  text-decoration: none;
}
.castle-carousel__item-card-button:active {
  text-decoration: none;
}
@media (min-width: 992px) {
  .castle-carousel__item-card-button {
    line-height: 1.4;
  }
}

.castle-carousel__img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.castle-carousel__prev-button {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-color: #fff;
  color: #000;
  z-index: 899;
  opacity: 0.9;
  left: 8px;
}
.castle-carousel__prev-button:hover {
  opacity: 1;
}
.castle-carousel__prev-button:before {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M30.83 14.83l-2.83-2.83-12 12 12 12 2.83-2.83-9.17-9.17z'/%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 40px;
  background-size: cover;
  content: " ";
  display: block;
  font-size: 20px;
  line-height: 1;
}

.castle-carousel__next-button {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-color: #fff;
  color: #000;
  z-index: 899;
  opacity: 0.9;
  right: 8px;
}
.castle-carousel__next-button:hover {
  opacity: 1;
}
.castle-carousel__next-button:before {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M20 12l-2.83 2.83 9.17 9.17-9.17 9.17 2.83 2.83 12-12z'/%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 40px;
  background-size: cover;
  content: " ";
  display: block;
  font-size: 20px;
  line-height: 1;
}

.castle-carousel__prev-button--card {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-color: #fff;
  color: #000;
  z-index: 899;
  opacity: 0.9;
  left: 8px;
  /* bit of a hacky way to hide buttons on mobile */
}
.castle-carousel__prev-button--card:hover {
  opacity: 1;
}
.castle-carousel__prev-button--card:before {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M30.83 14.83l-2.83-2.83-12 12 12 12 2.83-2.83-9.17-9.17z'/%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 40px;
  background-size: cover;
  content: " ";
  display: block;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 524px) {
  .castle-carousel__prev-button--card {
    left: -1000px;
  }
}

.castle-carousel__next-button--card {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-color: #fff;
  color: #000;
  z-index: 899;
  opacity: 0.9;
  right: 8px;
}
.castle-carousel__next-button--card:hover {
  opacity: 1;
}
.castle-carousel__next-button--card:before {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M20 12l-2.83 2.83 9.17 9.17-9.17 9.17 2.83 2.83 12-12z'/%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 40px;
  background-size: cover;
  content: " ";
  display: block;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 524px) {
  .castle-carousel__next-button--card {
    left: -1000px;
  }
}

.castle-carousel__header {
  margin-bottom: 20px;
}

.castle-carousel__title {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}
@media (min-width: 0px) {
  .castle-carousel__title {
    font-size: 22px;
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .castle-carousel__title {
    font-size: 32px;
    line-height: 1.25;
  }
}

.castle-carousel__text {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 992px) {
  .castle-carousel__text {
    line-height: 1.4;
  }
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.image-grid .featured-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.image-grid__column-other {
  width: 25%;
}

.image-grid__image-main {
  width: 100%;
  height: 430px;
  flex-shrink: 0;
}

.image-grid__image-other {
  /*width: 100%;*/
  height: 215px;
  flex-shrink: 0;
  /*padding-left:12px;*/
}

@media (min-width: 0px) {
  .image-grid {
    display: none;
  }
}
/*
@media (min-width: 0px) {

    .image-grid {
        padding: 0 9px;
    }

    .image-grid {
        width: 100%;
    }

    .image-grid__column-main {
        flex-direction: row;
        width: 100%;
    }

    .image-grid__column-other {
        width: 50%;
        display: flex;
    }

    .image-grid__image-main {
        width: calc(100%-6px);
        margin: 0 3px;
        height: 240px;
    }

    .image-grid__image-other {
        width: calc(50%-6px);
        height: 70px;
        margin: 6px 3px;
        //box-sizing: border-box;
    }

    .image-grid__show-all {
        @include button-secondary--light-theme;
        @include button-small;
        text-align: center;
        width: 100%;
        margin: 0 3px;
        cursor: pointer
    }

    .image-grid__show-all svg {
        fill: rgb(255, 255, 255);
        width: 18px;
        height: 18px;
        display: block;
        float: left;
        margin-right: 5px;
    }
}

@media (min-width: 458px) {

    .image-grid__image-main {
        height: 320px;
    }

    .image-grid__image-other {
        height: 110px;
    }
}


@media (min-width: 768px) {
    .image-grid {
        width: 750px;

    }

    .image-grid__image-main {
        height: 380px;
    }

    .image-grid__image-other {
        height: 140px;
    }
}*/
@media (min-width: 992px) {
  .image-grid {
    width: 970px;
    width: 100%;
    padding: 0 0;
    display: flex;
  }
  .image-grid {
    height: 380px;
  }
  .image-grid__column-main {
    width: 50%;
  }
  .image-grid__column-other {
    width: 25%;
    display: block;
    /* padding-left: 6px;*/
  }
  .image-grid__image-main {
    width: 100%;
    height: 380px;
    padding: 0px;
    margin: 0px;
  }
  .image-grid__image-other {
    width: 100%;
    height: 190px;
    padding: 0px;
    margin: 0;
  }
  .image-grid__show-all {
    background-color: #BA3035;
    color: #fff !important;
    border: 1px solid #BA3035;
    border-radius: 8px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    text-transform: unset;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    font-weight: 500;
    padding: 8px 13px 10px 13px;
    text-align: center;
    margin: 0 3px;
    position: absolute;
    z-index: 9999;
    bottom: 20px;
    right: 26px;
    width: unset;
    border: #fff solid 1px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
  }
  .image-grid__show-all:link {
    color: #fff !important;
  }
  .image-grid__show-all:visited {
    color: #fff !important;
  }
  .image-grid__show-all:hover {
    color: #fff !important;
  }
  .image-grid__show-all:active {
    color: #fff !important;
  }
  .image-grid__show-all:link {
    text-decoration: none;
  }
  .image-grid__show-all:visited {
    text-decoration: none;
  }
  .image-grid__show-all:hover {
    text-decoration: none;
  }
  .image-grid__show-all:active {
    text-decoration: none;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .image-grid__show-all {
    line-height: 1.4;
  }
}
@media (min-width: 992px) {
  .image-grid__show-all svg {
    fill: rgb(255, 255, 255);
    width: 18px;
    height: 18px;
    display: block;
    float: left;
    margin-right: 5px;
  }
}
@media (min-width: 1200px) {
  .image-grid {
    width: 100%;
    max-width: 100%;
  }
  .image-grid {
    height: 630px;
  }
  .image-grid__image-main {
    height: 630px;
  }
  .image-grid__image-other {
    height: 315px;
  }
}
.review-summary {
  display: block;
}
@media (min-width: 500px) {
  .review-summary {
    display: inline-block;
    margin: 0px;
  }
}

.review-summary-score {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  padding: 1px 6px 3px 6px;
  background-color: #dc9e00;
  color: #fff;
  margin-right: 5px;
  text-align: center;
  display: inline-block;
  font-weight: 600;
}
@media (min-width: 0px) {
  .review-summary-score {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .review-summary-score {
    line-height: 1.5;
  }
}

.review-summary-label {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  color: #BA3035;
  font-weight: 600 !important;
  display: inline-block;
  border: 0;
  background-color: transparent;
  padding-left: 0px;
}
@media (min-width: 0px) {
  .review-summary-label {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .review-summary-label {
    line-height: 1.5;
  }
}
.review-summary-label:link {
  color: #BA3035;
  text-decoration: none;
}
.review-summary-label:visited {
  color: #BA3035;
  text-decoration: none;
}
.review-summary-label:hover {
  color: #BA3035;
  text-decoration: underline;
}
.review-summary-label:active {
  color: #BA3035;
  text-decoration: underline;
}

.cta-box {
  box-shadow: rgba(0, 0, 0, 0.1) 5px 7px 16px -4px !important;
}

.presentation__header {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .presentation__header {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .presentation__header {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .presentation__header {
    width: 1170px;
  }
}

.castle-title {
  margin: 20px 0;
}

.castle-title__name {
  font-family: "DM Serif Display", serif;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}
@media (min-width: 0px) {
  .castle-title__name {
    font-size: 36px;
    line-height: 1.1;
  }
}
@media (min-width: 767px) {
  .castle-title__name {
    font-size: 62px;
    line-height: 1.1;
  }
}

.castle-title__secondary {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  color: #484848;
}
@media (min-width: 0px) {
  .castle-title__secondary {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .castle-title__secondary {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .castle-title__secondary {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 14px;
    line-height: 1.4;
  }
}

.presentation__navigation-bar {
  position: sticky;
  top: 0; /* Required! */
  z-index: 9010;
  background-color: #000;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .presentation__navigation-bar {
    display: none;
  }
}

.presentation__navigation-bar-inner {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .presentation__navigation-bar-inner {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .presentation__navigation-bar-inner {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .presentation__navigation-bar-inner {
    width: 1170px;
  }
}

.navigation-bar__item {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  display: inline-block;
  padding: 13px 9px;
}
@media (min-width: 992px) {
  .navigation-bar__item {
    line-height: 1.4;
  }
}

.navigation-bar__item:first-child {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  padding: 13px 9px 13px 0px;
}
@media (min-width: 992px) {
  .navigation-bar__item:first-child {
    line-height: 1.4;
  }
}

a.navigation-bar__link:link,
a.navigation-bar__link:active,
a.navigation-bar__link:hover,
a.navigation-bar__link:visited {
  color: #fff;
  text-decoration: none;
}

.presentation__offering-wrapper {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
  display: grid;
  grid-template-columns: 350px 1fr;
}
@media (min-width: 768px) {
  .presentation__offering-wrapper {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .presentation__offering-wrapper {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .presentation__offering-wrapper {
    width: 1170px;
  }
}
@media (min-width: 0px) {
  .presentation__offering-wrapper {
    grid-template-columns: 100%;
  }
}
@media (min-width: 992px) {
  .presentation__offering-wrapper {
    grid-template-columns: 622px 1fr;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .presentation__offering-wrapper {
    grid-template-columns: 670px 1fr;
    gap: 48px;
  }
}

/*
.presentation__content-section
{
  border-bottom: 1px solid #ccc;
  padding-bottom:34px !important;
  padding-top:14px;
}

.presentation__content-section .castle-carousel{
  margin-bottom:24px
}

.presentation__content-section .castle-carousel__item--gallery img {
  border-radius:7px !important;
}
*/
.presentation__sidebar {
  position: sticky;
  top: 64px;
  margin-left: 20px;
  padding-top: 24px;
  align-self: start;
  z-index: 10001;
}
@media (min-width: 0px) {
  .presentation__sidebar {
    display: none;
  }
}
@media (min-width: 992px) {
  .presentation__sidebar {
    display: block;
  }
}

.cta-box {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 7px 12px -4px;
}

.cta-box .js-dp-field {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  padding: 10px 0px 10px 20px;
  display: inline-block;
  cursor: pointer;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%0A%3Csvg fill='%23000000' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24px' height='24px'%3E%3Cpath d='M6 1H8V5H6zM16 1H18V5H16z'/%3E%3Cpath d='M21,3H3v18h18V3z M19,19H5V8h14V19z'/%3E%3C/svg%3E");
  color: #000;
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 100%;
  border: 1px solid #ccc;
}
@media (min-width: 992px) {
  .cta-box .js-dp-field {
    line-height: 1.4;
  }
}

.template-search-box__button,
.cta-box__button {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  border: 1px #fff solid;
  color: #000;
  text-align: center;
  padding: 10px 20px;
  display: inline-block;
  cursor: pointer;
}
@media (min-width: 0px) {
  .template-search-box__button,
  .cta-box__button {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .template-search-box__button,
  .cta-box__button {
    line-height: 1.5;
  }
}

.template-search-box__button,
.cta-box__button,
a.cta-box__button:visited,
a.cta-box__button:link,
a.cta-box__button:hover,
a.cta-box__button:hover {
  width: 100%;
  margin-top: 10px;
  background-color: #BA3035;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.cta-box .js-dp-field__start,
.cta-box .js-dp-field__end {
  display: inline-block;
}

.cta-box .js-dp-field__end:before {
  padding-left: 10px;
  padding-right: 10px;
  content: "-";
}

.cta-box .js-dp-field__end:before {
  padding-left: 2px;
  padding-right: 2px;
  content: "-";
}

.cta-box__header {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #000000;
  text-align: left;
  margin-bottom: 10px;
}
@media (min-width: 0px) {
  .cta-box__header {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .cta-box__header {
    font-size: 25px;
    line-height: 1.25;
  }
}

.cta-box__text {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
  color: #000000;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .cta-box__text {
    line-height: 1.4;
  }
}

.cta-box__searching {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #000000;
  margin-top: 10px;
  line-height: 1;
}
@media (min-width: 992px) {
  .cta-box__searching {
    line-height: 1.4;
  }
}

.cta-box__searching:before {
  width: 35px;
  height: 35px;
  background-position: center center;
  content: " ";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='loader-1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='40px' height='40px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath fill='%23000' d='M25.251,6.461c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615V6.461z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
  background-size: 35px 35px;
  background-repeat: no-repeat;
  margin-right: 5px;
  width: 100%;
}

.cta-box__question {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cta-box__question {
    line-height: 1.4;
  }
}

.presentation__content {
  margin-bottom: 30px;
}

.presentation__content--separator {
  border-bottom: 1px solid #ccc;
  padding: 0 0 24px 0;
  margin: 24px 0 24px 0;
}

.presentation__content--separator:first-child {
  border-bottom: 1px solid #ccc;
  padding: 0 0 24px 0;
  margin: 24px 0 24px 0;
  margin-top: 0px;
}

.presentation__content h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
}
@media (min-width: 0px) {
  .presentation__content h2 {
    font-size: 22px;
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .presentation__content h2 {
    font-size: 32px;
    line-height: 1.25;
  }
}

.presentation__offering .presentation__content h2 {
  margin-top: 24px;
}

.presentation__content h3,
.presentation__inline-calendar h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
}
@media (min-width: 0px) {
  .presentation__content h3,
  .presentation__inline-calendar h3 {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .presentation__content h3,
  .presentation__inline-calendar h3 {
    font-size: 25px;
    line-height: 1.25;
  }
}

.presentation__content h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000000;
  margin-bottom: 24px;
}
@media (min-width: 0px) {
  .presentation__content h4 {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 992px) {
  .presentation__content h4 {
    font-size: 16px;
    line-height: 1.4;
  }
}

.presentation__content h5 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000000;
  margin-bottom: 6px;
}
@media (min-width: 0px) {
  .presentation__content h5 {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 992px) {
  .presentation__content h5 {
    font-size: 16px;
    line-height: 1.4;
  }
}

.presentation__content p {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #484848;
}
@media (min-width: 0px) {
  .presentation__content p {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content p {
    line-height: 1.5;
  }
}

.presentation__content p:last-child,
.presentation__content ul:last-child,
.presentation__content li:last-child {
  margin-bottom: 0px;
}

.presentation__inline-calendar p {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 24px;
  color: #484848;
}
@media (min-width: 992px) {
  .presentation__inline-calendar p {
    line-height: 1.4;
  }
}

.presentation__content ul {
  list-style-type: disc;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  color: #484848;
  margin-bottom: 24px;
  list-style-position: outside;
  padding-left: 20px;
}
@media (min-width: 0px) {
  .presentation__content ul {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content ul {
    line-height: 1.5;
  }
}

.presentation__content li {
  color: #484848;
  margin-bottom: 10px;
}

.presentation__content a {
  color: #BA3035;
  font-weight: 600 !important;
}
.presentation__content a:link {
  color: #BA3035;
  text-decoration: none;
}
.presentation__content a:visited {
  color: #BA3035;
  text-decoration: none;
}
.presentation__content a:hover {
  color: #BA3035;
  text-decoration: underline;
}
.presentation__content a:active {
  color: #BA3035;
  text-decoration: underline;
}

.presentation__content table {
  width: 100%;
  margin-bottom: 24px;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  color: #484848;
}
@media (min-width: 0px) {
  .presentation__content table {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content table {
    line-height: 1.5;
  }
}

.presentation__content th {
  border-bottom: 2px solid #484848;
  color: #000;
}

.presentation__content th,
.presentation__content td {
  vertical-align: top;
}

.presentation__content th,
.presentation__content td {
  padding: 6px 4px;
}

.presentation__content table tr td:first-child {
  color: #000;
  font-weight: 600;
}

.presentation__content .castle-carousel-wrapper {
  margin-bottom: 24px;
}

.presentation__content table:last-child {
  margin-bottom: 0px;
}

.presentation__content button.more:after,
.presentation__content a.cta--link:after {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  content: ">";
  padding-left: 2px;
}
@media (min-width: 992px) {
  .presentation__content button.more:after,
  .presentation__content a.cta--link:after {
    line-height: 1.4;
  }
}

.presentation__content a.more--btn,
.presentation__content button.more--btn {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
  padding: 13px 23px 15px 23px;
  display: inline-block;
}
.presentation__content a.more--btn:link,
.presentation__content button.more--btn:link {
  color: #000 !important;
}
.presentation__content a.more--btn:visited,
.presentation__content button.more--btn:visited {
  color: #000 !important;
}
.presentation__content a.more--btn:hover,
.presentation__content button.more--btn:hover {
  color: #000 !important;
}
.presentation__content a.more--btn:active,
.presentation__content button.more--btn:active {
  color: #000 !important;
}
.presentation__content a.more--btn:link,
.presentation__content button.more--btn:link {
  text-decoration: none;
}
.presentation__content a.more--btn:visited,
.presentation__content button.more--btn:visited {
  text-decoration: none;
}
.presentation__content a.more--btn:hover,
.presentation__content button.more--btn:hover {
  text-decoration: none;
}
.presentation__content a.more--btn:active,
.presentation__content button.more--btn:active {
  text-decoration: none;
}
@media (min-width: 0px) {
  .presentation__content a.more--btn,
  .presentation__content button.more--btn {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content a.more--btn,
  .presentation__content button.more--btn {
    line-height: 1.5;
  }
}

.presentation__content strong {
  font-weight: 700;
  color: #000 !important;
}

.presentation__content .review__taster {
  margin-top: 12px;
}

.presentation__additional {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .presentation__additional {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .presentation__additional {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .presentation__additional {
    width: 1170px;
  }
}

.presentation__additional-section {
  width: 100% !important;
  border-bottom: 1px solid #ccc;
  padding-bottom: 34px !important;
  padding-top: 14px;
}

.map-detail {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 0px) {
  .map-detail {
    height: 260px;
  }
}
@media (min-width: 380px) {
  .map-detail {
    height: 340px;
  }
}
@media (min-width: 500px) {
  .map-detail {
    height: 390px;
  }
}
@media (min-width: 768px) {
  .map-detail {
    height: 360px;
  }
}
@media (min-width: 992px) {
  .map-detail {
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .map-detail {
    height: 450px;
  }
}

.mosaic-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mosaic-grid__row {
  display: grid;
  gap: 8px;
}

.mosaic-grid__row-full {
  grid-template-columns: 1fr;
}

.mosaic-grid__row-halves {
  grid-template-columns: 1fr 1fr;
}

/* T-shapes: 2-col grid, portrait img spans both rows */
.mosaic-grid__row-tshape-right {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.mosaic-grid__row-tshape-left {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.mosaic-grid__span-tall {
  grid-row: span 2;
}

.mosaic-grid__mosaic-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* LEGACY */
.presentation__offering-highlights {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .presentation__offering-highlights {
    margin-top: 0px;
  }
}

.notice__policy {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  background-color: #6cc267;
  color: #fff;
  padding: 11px 14px 12px 14px;
  border-radius: 15px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .notice__policy {
    line-height: 1.4;
  }
}

.notice__info {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  background-color: #eee;
  color: #000;
  padding: 11px 14px 12px 14px;
  border-radius: 15px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .notice__info {
    line-height: 1.4;
  }
}

.notice__info a:link,
.notice__info a:hover,
.notice__info a:visited,
.notice__info a:active {
  color: #BA3035;
  font-weight: 600 !important;
}
.notice__info a:link:link,
.notice__info a:hover:link,
.notice__info a:visited:link,
.notice__info a:active:link {
  color: #BA3035;
  text-decoration: none;
}
.notice__info a:link:visited,
.notice__info a:hover:visited,
.notice__info a:visited:visited,
.notice__info a:active:visited {
  color: #BA3035;
  text-decoration: none;
}
.notice__info a:link:hover,
.notice__info a:hover:hover,
.notice__info a:visited:hover,
.notice__info a:active:hover {
  color: #BA3035;
  text-decoration: underline;
}
.notice__info a:link:active,
.notice__info a:hover:active,
.notice__info a:visited:active,
.notice__info a:active:active {
  color: #BA3035;
  text-decoration: underline;
}

.presentation__summary-items {
  overflow: auto;
  border-bottom: 1px solid #ccc;
  padding: 0 0 24px 0;
  margin: 24px 0 24px 0;
}

.presentation__summary-item {
  margin-bottom: 10px;
}
@media (min-width: 0px) {
  .presentation__summary-item {
    padding-left: 30px;
  }
}
@media (min-width: 767px) {
  .presentation__summary-item {
    padding-left: 34px;
  }
}

.presentation__summary-item::before {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M15.668 8.626l8.332 1.159-6.065 5.874 1.48 8.341-7.416-3.997-7.416 3.997 1.481-8.341-6.064-5.874 8.331-1.159 3.668-7.626 3.669 7.626zm-6.67.925l-6.818.948 4.963 4.807-1.212 6.825 6.068-3.271 6.069 3.271-1.212-6.826 4.964-4.806-6.819-.948-3.002-6.241-3.001 6.241z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: " ";
  display: block;
  float: left;
}
@media (min-width: 0px) {
  .presentation__summary-item::before {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    margin-top: 3px;
    margin-left: -30px;
    padding-left: 30px;
  }
}
@media (min-width: 767px) {
  .presentation__summary-item::before {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    margin-top: 4px;
    margin-right: 4px;
    margin-left: -34px;
  }
}

.presentation__summary-item:last-of-type {
  margin-bottom: 0px;
}

.presentation__summary-item h3 {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  font-weight: 600;
}
@media (min-width: 0px) {
  .presentation__summary-item h3 {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__summary-item h3 {
    line-height: 1.5;
  }
}

.presentation__summary-item p {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  color: #545454;
}
@media (min-width: 0px) {
  .presentation__summary-item p {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__summary-item p {
    line-height: 1.5;
  }
}

.presentation__summary-item-link {
  color: #BA3035;
  font-weight: 600 !important;
}
.presentation__summary-item-link:link {
  color: #BA3035;
  text-decoration: none;
}
.presentation__summary-item-link:visited {
  color: #BA3035;
  text-decoration: none;
}
.presentation__summary-item-link:hover {
  color: #BA3035;
  text-decoration: underline;
}
.presentation__summary-item-link:active {
  color: #BA3035;
  text-decoration: underline;
}

.presentation__content summary {
  font-weight: bold;
  color: #BA3035;
  margin-bottom: 24px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  outline: none;
}
@media (min-width: 992px) {
  .presentation__content summary {
    line-height: 1.4;
  }
}

.presentation__content .cta,
.presentation__content a.cta {
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
  padding: 13px 23px 15px 23px;
  background-color: #BA3035;
  color: #fff !important;
  border: 1px solid #BA3035;
  display: inline-block;
  cursor: pointer;
}
.presentation__content .cta:link,
.presentation__content a.cta:link {
  text-decoration: none;
}
.presentation__content .cta:visited,
.presentation__content a.cta:visited {
  text-decoration: none;
}
.presentation__content .cta:hover,
.presentation__content a.cta:hover {
  text-decoration: none;
}
.presentation__content .cta:active,
.presentation__content a.cta:active {
  text-decoration: none;
}
@media (min-width: 0px) {
  .presentation__content .cta,
  .presentation__content a.cta {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content .cta,
  .presentation__content a.cta {
    line-height: 1.5;
  }
}
.presentation__content .cta:link,
.presentation__content a.cta:link {
  color: #fff !important;
}
.presentation__content .cta:visited,
.presentation__content a.cta:visited {
  color: #fff !important;
}
.presentation__content .cta:hover,
.presentation__content a.cta:hover {
  color: #fff !important;
}
.presentation__content .cta:active,
.presentation__content a.cta:active {
  color: #fff !important;
}

.presentation__content .cta--small,
.presentation__content a.cta--small {
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  font-weight: 500;
  padding: 8px 13px 10px 13px;
  background-color: #BA3035;
  color: #fff !important;
  border: 1px solid #BA3035;
  display: inline-block;
  cursor: pointer;
}
.presentation__content .cta--small:link,
.presentation__content a.cta--small:link {
  text-decoration: none;
}
.presentation__content .cta--small:visited,
.presentation__content a.cta--small:visited {
  text-decoration: none;
}
.presentation__content .cta--small:hover,
.presentation__content a.cta--small:hover {
  text-decoration: none;
}
.presentation__content .cta--small:active,
.presentation__content a.cta--small:active {
  text-decoration: none;
}
@media (min-width: 992px) {
  .presentation__content .cta--small,
  .presentation__content a.cta--small {
    line-height: 1.4;
  }
}
.presentation__content .cta--small:link,
.presentation__content a.cta--small:link {
  color: #fff !important;
}
.presentation__content .cta--small:visited,
.presentation__content a.cta--small:visited {
  color: #fff !important;
}
.presentation__content .cta--small:hover,
.presentation__content a.cta--small:hover {
  color: #fff !important;
}
.presentation__content .cta--small:active,
.presentation__content a.cta--small:active {
  color: #fff !important;
}

.presentation__content button.cta {
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
  padding: 13px 23px 15px 23px;
  background-color: #BA3035;
  color: #fff !important;
  border: 1px solid #BA3035;
  display: inline-block;
}
.presentation__content button.cta:link {
  text-decoration: none;
}
.presentation__content button.cta:visited {
  text-decoration: none;
}
.presentation__content button.cta:hover {
  text-decoration: none;
}
.presentation__content button.cta:active {
  text-decoration: none;
}
@media (min-width: 0px) {
  .presentation__content button.cta {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content button.cta {
    line-height: 1.5;
  }
}
.presentation__content button.cta:link {
  color: #fff !important;
}
.presentation__content button.cta:visited {
  color: #fff !important;
}
.presentation__content button.cta:hover {
  color: #fff !important;
}
.presentation__content button.cta:active {
  color: #fff !important;
}

.presentation__content .cta--alt,
.presentation__content a.cta--alt {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
  padding: 13px 23px 15px 23px;
  display: inline-block;
}
.presentation__content .cta--alt:link,
.presentation__content a.cta--alt:link {
  color: #000 !important;
}
.presentation__content .cta--alt:visited,
.presentation__content a.cta--alt:visited {
  color: #000 !important;
}
.presentation__content .cta--alt:hover,
.presentation__content a.cta--alt:hover {
  color: #000 !important;
}
.presentation__content .cta--alt:active,
.presentation__content a.cta--alt:active {
  color: #000 !important;
}
.presentation__content .cta--alt:link,
.presentation__content a.cta--alt:link {
  text-decoration: none;
}
.presentation__content .cta--alt:visited,
.presentation__content a.cta--alt:visited {
  text-decoration: none;
}
.presentation__content .cta--alt:hover,
.presentation__content a.cta--alt:hover {
  text-decoration: none;
}
.presentation__content .cta--alt:active,
.presentation__content a.cta--alt:active {
  text-decoration: none;
}
@media (min-width: 0px) {
  .presentation__content .cta--alt,
  .presentation__content a.cta--alt {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content .cta--alt,
  .presentation__content a.cta--alt {
    line-height: 1.5;
  }
}

.presentation__content button.more {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #BA3035;
  font-weight: 600 !important;
  font-size: 15px;
  border: 0;
  background-color: transparent;
  display: inline-block;
  padding: 0;
}
@media (min-width: 992px) {
  .presentation__content button.more {
    line-height: 1.4;
  }
}
.presentation__content button.more:link {
  color: #BA3035;
  text-decoration: none;
}
.presentation__content button.more:visited {
  color: #BA3035;
  text-decoration: none;
}
.presentation__content button.more:hover {
  color: #BA3035;
  text-decoration: underline;
}
.presentation__content button.more:active {
  color: #BA3035;
  text-decoration: underline;
}

.presentation__content button.more:after,
.presentation__content a.cta--link:after {
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  content: ">";
  padding-left: 2px;
}
@media (min-width: 992px) {
  .presentation__content button.more:after,
  .presentation__content a.cta--link:after {
    line-height: 1.4;
  }
}

.presentation__content a.more--btn,
.presentation__content button.more--btn {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
  padding: 13px 23px 15px 23px;
  display: inline-block;
}
.presentation__content a.more--btn:link,
.presentation__content button.more--btn:link {
  color: #000 !important;
}
.presentation__content a.more--btn:visited,
.presentation__content button.more--btn:visited {
  color: #000 !important;
}
.presentation__content a.more--btn:hover,
.presentation__content button.more--btn:hover {
  color: #000 !important;
}
.presentation__content a.more--btn:active,
.presentation__content button.more--btn:active {
  color: #000 !important;
}
.presentation__content a.more--btn:link,
.presentation__content button.more--btn:link {
  text-decoration: none;
}
.presentation__content a.more--btn:visited,
.presentation__content button.more--btn:visited {
  text-decoration: none;
}
.presentation__content a.more--btn:hover,
.presentation__content button.more--btn:hover {
  text-decoration: none;
}
.presentation__content a.more--btn:active,
.presentation__content button.more--btn:active {
  text-decoration: none;
}
@media (min-width: 0px) {
  .presentation__content a.more--btn,
  .presentation__content button.more--btn {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .presentation__content a.more--btn,
  .presentation__content button.more--btn {
    line-height: 1.5;
  }
}

.js-modal-body .grid,
.presentation__content .grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-left: -5px;
  margin-right: -5px;
}

.js-modal-body .grid__image--full,
.presentation__content .grid__image--full {
  width: 100%;
  flex-grow: 0;
  padding: 0 5px 10px 5px;
}

.js-modal-body .grid__image--half,
.presentation__content .grid__image--half {
  width: 50%;
  flex-grow: 0;
  padding: 0 5px 10px 5px;
}

.js-modal-body .grid__image--full img,
.js-modal-body .grid__image--half img,
.presentation__content .grid__image--full img,
.presentation__content .grid__image--half img {
  width: 100%;
  height: auto;
}

.js-modal-body .media__youtube,
.presentation__content .media__youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.js-modal-body .media__youtube iframe,
.presentation__content .media__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-box__question .link-highlighted {
  color: #BA3035;
  font-weight: 600 !important;
}
.cta-box__question .link-highlighted:link {
  color: #BA3035;
  text-decoration: none;
}
.cta-box__question .link-highlighted:visited {
  color: #BA3035;
  text-decoration: none;
}
.cta-box__question .link-highlighted:hover {
  color: #BA3035;
  text-decoration: underline;
}
.cta-box__question .link-highlighted:active {
  color: #BA3035;
  text-decoration: underline;
}

.page-summary__items {
  overflow: auto;
  border-bottom: 1px solid #ccc;
  padding-bottom: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.page-summary__items h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 0px) {
  .page-summary__items h3 {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (min-width: 992px) {
  .page-summary__items h3 {
    font-size: 16px;
    line-height: 1.4;
  }
}

.package-cards {
  width: 100%;
  margin-left: -5px;
  margin-right: -5px;
}

.package-card h4 {
  font-size: 16px;
}

.package-card {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: unset;
  color: unset;
  margin-top: 24px;
  width: 50%;
}
@media (max-width: 320px) {
  .package-card {
    width: 100%;
  }
}

.package-card:hover {
  cursor: pointer;
}

.packages {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}

.package__headline {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  margin-bottom: 7px !important;
}
@media (min-width: 0px) {
  .package__headline {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .package__headline {
    font-size: 25px;
    line-height: 1.25;
  }
}

.package__items {
  margin-bottom: 7px !important;
  list-style-position: outside;
  padding: 0px !important;
}

.package__item {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'/%3E%3C/svg%3E");
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  padding-left: 20px;
  display: block;
  background-repeat: no-repeat;
  background-position: left 3px;
  background-size: 14px;
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  .package__item {
    line-height: 1.4;
  }
}

.package__link {
  color: #BA3035;
  font-weight: 600 !important;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
.package__link:link {
  color: #BA3035;
  text-decoration: none;
}
.package__link:visited {
  color: #BA3035;
  text-decoration: none;
}
.package__link:hover {
  color: #BA3035;
  text-decoration: underline;
}
.package__link:active {
  color: #BA3035;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .package__link {
    line-height: 1.4;
  }
}

.package {
  box-sizing: border-box;
  text-decoration: unset;
  color: unset;
  flex-basis: calc(50% - 10px);
}
@media (max-width: 320px) {
  .package {
    flex-basis: 100%;
  }
}

.package-card:hover {
  cursor: pointer;
}

.block__text .package-summary {
  margin-bottom: 20px;
}

.block__text .package-summary:last-of-type {
  margin-bottom: 0px;
}

.presentation__inline-calendar {
  height: auto;
  width: 100%;
}
@media (min-width: 992px) {
  .presentation__inline-calendar {
    width: 622px;
  }
}
@media (min-width: 1200px) {
  .presentation__inline-calendar {
    width: 660px;
  }
}

.presentation__inline-calendar button.clear {
  color: #BA3035;
  font-weight: 600 !important;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  border: 0;
  background-color: transparent;
  display: inline-block;
  padding: 0;
}
.presentation__inline-calendar button.clear:link {
  color: #BA3035;
  text-decoration: none;
}
.presentation__inline-calendar button.clear:visited {
  color: #BA3035;
  text-decoration: none;
}
.presentation__inline-calendar button.clear:hover {
  color: #BA3035;
  text-decoration: underline;
}
.presentation__inline-calendar button.clear:active {
  color: #BA3035;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .presentation__inline-calendar button.clear {
    line-height: 1.4;
  }
}

.presentation__inline-calendar h3,
.presentation__inline-calendar p {
  margin-bottom: 0px;
}

.presentation__inline-calendar .searching {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  content: " ";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='loader-1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='40px' height='40px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath fill='%23000' d='M25.251,6.461c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615V6.461z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
  background-size: 65px 65px;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 999;
}

.mobile-cta {
  position: fixed;
  background-color: #fff;
  width: 100%;
  left: 0px;
  bottom: 0px;
  z-index: 10200;
  padding: 10px 10px 25px 10px;
  border-top: 1px #ddd solid;
  display: none;
  bottom: -150px;
  transition: all 0.35s ease;
}
@media (max-width: 991px) {
  .mobile-cta {
    display: block;
  }
}

.mobile-cta--active {
  bottom: 0px;
  z-index: 900;
}

a.mobile-cta__button-primary {
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  font-weight: 500;
  padding: 8px 13px 10px 13px;
  background-color: #BA3035;
  color: #fff !important;
  border: 1px solid #BA3035;
  width: 48%;
  float: right;
  padding: 17px 7px;
  text-align: center;
}
a.mobile-cta__button-primary:link {
  text-decoration: none;
}
a.mobile-cta__button-primary:visited {
  text-decoration: none;
}
a.mobile-cta__button-primary:hover {
  text-decoration: none;
}
a.mobile-cta__button-primary:active {
  text-decoration: none;
}
@media (min-width: 992px) {
  a.mobile-cta__button-primary {
    line-height: 1.4;
  }
}
a.mobile-cta__button-primary:link {
  color: #fff !important;
}
a.mobile-cta__button-primary:visited {
  color: #fff !important;
}
a.mobile-cta__button-primary:hover {
  color: #fff !important;
}
a.mobile-cta__button-primary:active {
  color: #fff !important;
}

a.mobile-cta__button-alt {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  font-weight: 500;
  padding: 8px 13px 10px 13px;
  width: 48%;
  float: left;
  padding: 17px 7px;
  text-align: center;
}
a.mobile-cta__button-alt:link {
  color: #000 !important;
}
a.mobile-cta__button-alt:visited {
  color: #000 !important;
}
a.mobile-cta__button-alt:hover {
  color: #000 !important;
}
a.mobile-cta__button-alt:active {
  color: #000 !important;
}
a.mobile-cta__button-alt:link {
  text-decoration: none;
}
a.mobile-cta__button-alt:visited {
  text-decoration: none;
}
a.mobile-cta__button-alt:hover {
  text-decoration: none;
}
a.mobile-cta__button-alt:active {
  text-decoration: none;
}
@media (min-width: 992px) {
  a.mobile-cta__button-alt {
    line-height: 1.4;
  }
}

a.mobile-cta__button-primary--single {
  border-radius: 8px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-transform: unset;
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
  padding: 13px 23px 15px 23px;
  background-color: #BA3035;
  color: #fff !important;
  border: 1px solid #BA3035;
  width: 100%;
  padding: 17px 7px;
  text-align: center;
  float: left;
}
a.mobile-cta__button-primary--single:link {
  text-decoration: none;
}
a.mobile-cta__button-primary--single:visited {
  text-decoration: none;
}
a.mobile-cta__button-primary--single:hover {
  text-decoration: none;
}
a.mobile-cta__button-primary--single:active {
  text-decoration: none;
}
@media (min-width: 0px) {
  a.mobile-cta__button-primary--single {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  a.mobile-cta__button-primary--single {
    line-height: 1.5;
  }
}
a.mobile-cta__button-primary--single:link {
  color: #fff !important;
}
a.mobile-cta__button-primary--single:visited {
  color: #fff !important;
}
a.mobile-cta__button-primary--single:hover {
  color: #fff !important;
}
a.mobile-cta__button-primary--single:active {
  color: #fff !important;
}

.block__text {
  margin-bottom: 24px;
}

.block__text:last-of-type {
  margin-bottom: 0px;
}

.map-pin {
  width: 40px;
  height: 40px;
  background: #BA3035;
  display: inline-block;
  border-radius: 40px;
  border: 8px solid #BA3035;
  -webkit-box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.2);
  opacity: 1;
  position: relative;
  margin-top: -20px;
  margin-left: -20px;
}

.map-pin .map-icon {
  width: 23px;
  height: 23px;
  position: absolute;
  background-position: 0 -2px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 493.46 493.46' style='enable-background:new 0 0 493.46 493.46;' fill='%23fff' xml:space='preserve'%3E%3Cpath d='M397.564,62.201c0-1.62-1.084-3.03-2.656-3.434L254.697,22.856V8.294c0-4.584-3.707-8.294-8.293-8.294 c-4.585,0-8.292,3.718-8.292,8.294l0.015,125.786h-5.799c-1.961,0-3.548,1.588-3.548,3.539v38.398H197.68V137.62 c0-1.952-1.588-3.539-3.549-3.539h-28.152c-1.959,0-3.547,1.588-3.547,3.539v38.398h-13.719h-17.381V137.62 c0-1.952-1.588-3.539-3.547-3.539H99.632c-1.959,0-3.547,1.588-3.547,3.539v38.398v16.117v16.83V237.7 c0,8.86,7.175,16.036,16.036,16.036h23.407L96.149,474.606c-0.842,4.673,0.438,9.476,3.482,13.112 c3.047,3.636,7.55,5.742,12.295,5.742h268.955c4.745,0,9.248-2.105,12.294-5.742c3.044-3.637,4.324-8.44,3.481-13.112 L357.28,253.736h23.405c8.862,0,16.038-7.176,16.038-16.036v-28.735v-16.83v-16.117V137.62c0-1.952-1.588-3.539-3.548-3.539h-28.152 c-1.961,0-3.547,1.588-3.547,3.539v38.398h-17.38h-13.722V137.62c0-1.952-1.586-3.539-3.547-3.539h-28.152 c-1.961,0-3.548,1.588-3.548,3.539v38.398h-31.1V137.62c0-1.952-1.588-3.539-3.547-3.539h-5.768l-0.017-32.534l140.211-35.911 C396.48,65.231,397.564,63.821,397.564,62.201z M284.6,333.917v69.434h-76.375v-69.434c0-21.09,17.09-38.186,38.195-38.186 C267.51,295.73,284.6,312.827,284.6,333.917z'/%3E%3C/svg%3E");
}
