@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

.dy-landing-tour {
  background-color: #e9e9e9;
}
.dy-landing-tour__container {
  max-width: 1320px;
  padding: 50px 25px 25px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .dy-landing-tour__container {
    padding: 100px 25px 25px;
  }
}
.dy-landing-tour__content {
  grid-area: content;
}
@media (min-width: 1200px) {
  .dy-landing-tour__content {
    margin-bottom: 25px;
  }
}
.dy-landing-tour__sidebar {
  grid-area: sidebar;
}
.dy-landing-tour__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  color: #2e3338;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .dy-landing-tour__location {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1200px) {
  .dy-landing-tour__location {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .dy-landing-tour__location-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}
.dy-landing-tour__location-title {
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .dy-landing-tour__location-title {
    margin-bottom: 3px;
    font-size: 24px;
  }
}
.dy-landing-tour__location-address {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .dy-landing-tour__location-address {
    margin-bottom: 0;
  }
}
.dy-landing-tour__location-separator {
  display: none;
}
@media (min-width: 768px) {
  .dy-landing-tour__location-separator {
    display: block;
  }
}
.dy-landing-tour__location-phone {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.dy-landing-tour__location-rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 3px;
}
.dy-landing-tour__location-rating-star {
  width: 18px;
  height: 18px;
  background-color: #ed1c24;
  -webkit-mask: url("/images/destination/dy-rating-star-red.svg") center/contain no-repeat;
  mask: url("/images/destination/dy-rating-star-red.svg") center/contain no-repeat;
  background-image: url("/images/destination/dy-rating-star-red.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.dy-landing-tour__location-rating-star:last-child {
  width: 9px;
  background-image: none;
  -webkit-mask: url("/images/destination/dy-rating-star-red.svg") left center/18px 18px no-repeat;
  mask: url("/images/destination/dy-rating-star-red.svg") left center/18px 18px no-repeat;
}
.dy-landing-tour__location-rating-value {
  color: #000;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

.dy-landing-tour-image-slider {
  position: relative;
}
.dy-landing-tour-image-slider__container {
  position: relative;
  width: 100%;
  height: 300px;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
  overflow: hidden;
}
@media (min-width: 768px) {
  .dy-landing-tour-image-slider__container {
    height: 600px;
  }
}
.dy-landing-tour-image-slider__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .dy-landing-tour-image-slider__image {
    -webkit-transition: none;
    transition: none;
  }
}
.dy-landing-tour-image-slider__image--active {
  opacity: 1;
  pointer-events: auto;
}
.dy-landing-tour-image-slider__count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .dy-landing-tour-image-slider__count {
    right: 16px;
    bottom: 16px;
  }
}
.dy-landing-tour-image-slider__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: #ffffff;
  -webkit-transition: background 200ms ease, -webkit-transform 200ms ease, -webkit-box-shadow 200ms ease;
  transition: background 200ms ease, -webkit-transform 200ms ease, -webkit-box-shadow 200ms ease;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, -webkit-transform 200ms ease, -webkit-box-shadow 200ms ease;
  background-image: url("/images/destination/dy-caret-right-icon.svg");
  background-size: 14px;
  background-position: 55% center;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .dy-landing-tour-image-slider__arrow {
    width: 40px;
    height: 40px;
    background-size: 16px;
  }
}
.dy-landing-tour-image-slider__arrow:hover, .dy-landing-tour-image-slider__arrow:active, .dy-landing-tour-image-slider__arrow:focus-visible {
  -webkit-transform: translateY(-50%) scale(0.98);
          transform: translateY(-50%) scale(0.98);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1019607843);
}
@media (prefers-reduced-motion: reduce) {
  .dy-landing-tour-image-slider__arrow {
    -webkit-transition: none;
    transition: none;
  }
}
.dy-landing-tour-image-slider__arrow--prev {
  left: 12px;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
.dy-landing-tour-image-slider__arrow--prev:hover, .dy-landing-tour-image-slider__arrow--prev:active, .dy-landing-tour-image-slider__arrow--prev:focus-visible {
  -webkit-transform: translateY(-50%) scaleX(-1) scale(0.98);
          transform: translateY(-50%) scaleX(-1) scale(0.98);
}
.dy-landing-tour-image-slider__arrow--next {
  right: 12px;
}
.dy-landing-tour-image-slider__button {
  cursor: pointer;
  display: block;
  margin: 15px auto 0;
  color: #2e3338;
  padding: 18px 25px;
  text-transform: uppercase;
  background-color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.dy-landing-tour-image-slider__button:hover, .dy-landing-tour-image-slider__button:active, .dy-landing-tour-image-slider__button:focus {
  background-color: #2e3338;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .dy-landing-tour-image-slider__button {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 200px;
  }
}
.dy-landing-tour-image-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.dy-landing-tour-snap-shot {
  margin-top: 35px;
}
.dy-landing-tour-snap-shot__title {
  color: #2e3338;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .dy-landing-tour-snap-shot__title {
    font-size: 18px;
  }
}
.dy-landing-tour-snap-shot__tour-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (min-width: 768px) {
  .dy-landing-tour-snap-shot__tour-info {
    gap: 35px;
  }
}
@media (min-width: 1024px) {
  .dy-landing-tour-snap-shot__tour-info {
    gap: 45px;
  }
}
@media (min-width: 1200px) {
  .dy-landing-tour-snap-shot__tour-info {
    gap: 65px;
  }
}
.dy-landing-tour-snap-shot__tour-info-item {
  color: #2e3338;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.dy-landing-tour-snap-shot__tour-info-item-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .dy-landing-tour-snap-shot__tour-info-item-label {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .dy-landing-tour-snap-shot__tour-info-item-label {
    font-size: 16px;
  }
}
.dy-landing-tour-snap-shot__tour-info-item-value {
  font-size: 10px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .dy-landing-tour-snap-shot__tour-info-item-value {
    font-size: 12px;
  }
}
.dy-landing-tour-snap-shot__tour-info-item span {
  display: block;
}
.dy-landing-tour-snap-shot__tour-info-item--duration::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url("/images/destination/dy-stopwatch-icon.svg") no-repeat center center/contain;
}
@media (min-width: 768px) {
  .dy-landing-tour-snap-shot__tour-info-item--duration::before {
    width: 55px;
    height: 55px;
  }
}
.dy-landing-tour-snap-shot__tour-info-item--tour-type::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url("/images/destination/dy-map-marker-icon.svg") no-repeat center center/contain;
}
@media (min-width: 768px) {
  .dy-landing-tour-snap-shot__tour-info-item--tour-type::before {
    width: 55px;
    height: 55px;
  }
}
.dy-landing-tour-snap-shot__tour-info-item--tour-type .dy-landing-tour-snap-shot__tour-info-item-label {
  text-transform: uppercase;
}

.dy-landing-adventure-card {
  position: sticky;
  top: 160px;
  background-color: #ed1c24;
  width: 100%;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
          box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 1200px) {
  .dy-landing-adventure-card {
    border-radius: 25px 25px 0 0;
  }
}
.dy-landing-adventure-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dy-landing-adventure-card__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  z-index: 2;
}
.dy-landing-adventure-card__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/destination/abstract-mask-md.png") no-repeat;
  -webkit-filter: grayscale(100%) brightness(0.3) contrast(1.5);
          filter: grayscale(100%) brightness(0.3) contrast(1.5);
  opacity: 0.3;
  z-index: -1;
}
@media (min-width: 768px) {
  .dy-landing-adventure-card__content::after {
    background-size: 1000px;
  }
}
@media (min-width: 1200px) {
  .dy-landing-adventure-card__content::after {
    background-size: unset;
  }
}
@media (min-width: 1200px) {
  .dy-landing-adventure-card__content {
    padding: 80px 0px 70px;
  }
}
.dy-landing-adventure-card__booking {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  z-index: 3;
  height: 100px;
}
@media (min-width: 1200px) {
  .dy-landing-adventure-card__booking {
    height: 150px;
  }
}
.dy-landing-adventure-card__booking-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ed1c24;
  padding: 15px 20px;
  color: #ffffff;
  width: 250px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 4;
  font-size: 16px;
  font-weight: 600;
}
.dy-landing-adventure-card__booking-link:hover, .dy-landing-adventure-card__booking-link:active, .dy-landing-adventure-card__booking-link:focus {
  cursor: pointer;
  -webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
          box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.dy-landing-adventure-card__booking-link:hover .dy-landing-adventure-card__content::before, .dy-landing-adventure-card__booking-link:active .dy-landing-adventure-card__content::before, .dy-landing-adventure-card__booking-link:focus .dy-landing-adventure-card__content::before {
  opacity: 0;
}
@media (min-width: 1200px) {
  .dy-landing-adventure-card__booking-link {
    padding: 20px 25px;
  }
}

.dy-landing-tour-overview {
  margin-top: 35px;
  border-bottom: 2px solid #fff;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-overview {
    margin-top: 55px;
    padding-bottom: 45px;
    margin-bottom: 45px;
  }
}
.dy-landing-tour-overview__title {
  color: #2e3338;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-overview__title {
    font-size: 20px;
  }
}
.dy-landing-tour-overview__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.dy-landing-tour-included-features {
  color: #2e3338;
}
.dy-landing-tour-included-features__title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-included-features__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.dy-landing-tour-included-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dy-landing-tour-included-features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .dy-landing-tour-included-features__item {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.dy-landing-tour-included-features__item span {
  text-transform: none;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}
@media (min-width: 1200px) {
  .dy-landing-tour-included-features__item span {
    font-size: 14px;
  }
}

.dy-landing-tour-information {
  color: #2e3338;
  background-color: #e9e9e9;
}
.dy-landing-tour-information__container {
  max-width: 1320px;
  padding: 50px 25px;
  margin: 0 auto;
}
.dy-landing-tour-information__title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-information__title {
    margin-bottom: 50px;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .dy-landing-tour-information__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 35px;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
.dy-landing-tour-information__column {
  margin-bottom: 35px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-information__column {
    margin-bottom: 0;
    -webkit-box-flex: calc(33.33% - 25px);
        -ms-flex: calc(33.33% - 25px);
            flex: calc(33.33% - 25px);
  }
  .dy-landing-tour-information__column:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.dy-landing-tour-information__column-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-information__column-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.dy-landing-tour-information__column-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 25px;
}
.dy-landing-tour-information__column-list {
  list-style: disc;
  padding-left: 30px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-information__column-list {
    padding-left: 20px;
  }
}
.dy-landing-tour-information__column-list .dy-landing-tour-information__column-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 10px;
}
.dy-landing-tour-information__column-highlights {
  margin-bottom: 35px;
}
.dy-landing-tour-information__column-highlight {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 10px;
}
.dy-landing-tour-information__column-highlight span {
  margin-left: 5px;
  font-size: 14px;
  font-weight: 400;
}
.dy-landing-tour-information__column-add-on-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.dy-landing-tour-location-overview__container {
  max-width: 1320px;
  padding: 50px 25px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview__container {
    padding: 75px 25px 50px;
  }
}
.dy-landing-tour-location-overview__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview__details {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
  }
}
.dy-landing-tour-location-overview__logo-container {
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview__logo-container {
    text-align: left;
    margin-bottom: 20px;
  }
}
.dy-landing-tour-location-overview__logo-container img {
  width: 100%;
  max-width: 250px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview__logo-container img {
    margin: 0;
  }
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details {
  color: #2e3338;
  text-align: center;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview .dy-landing-tour-operating-details {
    text-align: left;
  }
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview .dy-landing-tour-operating-details__title {
    margin-bottom: 10px;
  }
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__address {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview .dy-landing-tour-operating-details__address {
    margin-bottom: 5px;
  }
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 25px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact .dy-landing-tour-operating-details__separator {
  display: none;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact .dy-landing-tour-operating-details__separator {
    display: block;
  }
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact a {
  color: #2e3338;
  text-decoration: none;
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact a:hover, .dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact a:active, .dy-landing-tour-location-overview .dy-landing-tour-operating-details__contact a:focus {
  color: #2e3338;
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__hours span {
  display: block;
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__hours-label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview .dy-landing-tour-operating-details__hours-label {
    margin-bottom: 20px;
  }
}
.dy-landing-tour-location-overview .dy-landing-tour-operating-details__hours-value {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 0;
}
.dy-landing-tour-location-overview__map {
  width: 100%;
  background-color: #e9e9e9;
  height: 300px;
}
@media (min-width: 1200px) {
  .dy-landing-tour-location-overview__map {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 2;
        -ms-flex: 2 1 65%;
            flex: 2 1 65%;
    height: auto;
  }
}

.dy-landing-adventure-card__booking-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ed1c24;
  padding: 15px 20px;
  color: #ffffff;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 4;
  font-size: 16px;
  font-weight: 600;
}
.dy-landing-adventure-card__booking-link:hover, .dy-landing-adventure-card__booking-link:active, .dy-landing-adventure-card__booking-link:focus {
  cursor: pointer;
  -webkit-box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
          box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.dy-landing-adventure-card__booking-link:hover .dy-landing-adventure-card__content::before, .dy-landing-adventure-card__booking-link:active .dy-landing-adventure-card__content::before, .dy-landing-adventure-card__booking-link:focus .dy-landing-adventure-card__content::before {
  opacity: 0;
}
@media (min-width: 1200px) {
  .dy-landing-adventure-card__booking-link {
    padding: 20px 25px;
  }
}