/*Experiences Slider*/
.dng-experiences-card {
  position: relative;
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  height: 550px;
  background-color: #000000;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  margin: 0;
}

.dng-experiences-card * {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dng-experiences-card_img {
  height: 100%;
  min-width: 100%;
  width: auto;
  object-fit: cover;
  object-position: center center;
}

.dng-experiences-card:hover .dng-experiences-card_img {
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  opacity: 0.7;
}

.dng-experiences-card__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
}

.dng-experiences-card__figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  padding: 28px;
}

.dng-experiences-card__price {
  background-color: #006ca6;
  padding: 9px;
  font-size: 20px;
  text-align: center;
}

.dng-experiences-card__title {
  font-size: 24px;
  padding-top: 20px;
}

@media (min-width: 992px) {
  .dng-experiences-card__title {
    min-height: 100px;
  }
}

.dng-experiences-card__title,
.dng-experiences-card__price {
  font-family: "locator";
  font-weight: 600;
  color: #ffffff;
  line-height: 40px;
  margin: 0;
}

.dng-experiences-card__link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.dng-experiences-slide-navigation,
.dng-experiences-slide-navigation__arrows {
  display: flex;
}

.dng-experiences-slide-navigation {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 41px;
  margin-bottom: 3px;
}

.dng-all-experiences-btn {
  font-weight: 700;
  font-size: 12px;
  line-height: 14.4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1.5px solid #1c3869;
  color: #1c3869;
  background-color: transparent;
}

.dng-all-experiences-btn:hover {
  color: #ffffff;
  background-color: #1c3869;
}

.owl-carousel__buttons {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid #1c3869;
  color: #1c3869;
  background-color: transparent;
}

.owl-carousel__buttons:hover {
  color: #ffffff;
  background-color: #1c3869;
}

.owl-carousel__buttons svg {
  fill: #1c3869;
}

.owl-carousel__buttons:hover svg {
  fill: #ffffff;
}

.owl-carousel__prev {
  margin-right: 11px;
}

.owl-carousel .owl-stage-outer {
  max-width: 1300px;
  margin: auto;
  overflow: visible !important;
}

.dng-experiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 14px 14px;
  grid-template-areas: ". . .";
}

@media (min-width: 768px) and (max-width: 992px) {
  .dng-experiences-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: ". .";
  }
}

@media (max-width: 767px) {
  .dng-experiences-grid {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }
}

/*
.dng-experiences-grid .dng-experiences-card {
  height: 100%;
}
*/
.dng-experiences-grid .dng-experiences-card__buttons {
  display: flex;
  align-items: center;
}

.dng-experiences-grid .dng-experiences-card__sep {
  padding: 0 29px;
}

.dng-experiences-grid .dng-experiences-card__buttons a {
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  line-height: 14.4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dng-experiences-grid .dng-experiences-card__buttons a:hover {
  text-decoration: underline;
  text-underline-position: under;
}
