@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-vehicles {
  background-color: #e9e9e9;
}
.dy-landing-vehicles__container {
  max-width: 1320px;
  padding: 50px 25px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .dy-landing-vehicles__container {
    padding: 75px 25px;
  }
}
.dy-landing-vehicles__title {
  font-size: 18px;
  font-weight: 600;
  color: #2e3338;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .dy-landing-vehicles__title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .dy-landing-vehicles__title {
    text-align: left;
    margin-bottom: 20px;
  }
}

.dy-landing-vehicles-carousel {
  --dy-vehicles-per-view: 1;
  --dy-vehicles-gap: 50px;
}
@media (min-width: 992px) {
  .dy-landing-vehicles-carousel {
    --dy-vehicles-per-view: 2;
  }
}
@media (min-width: 1200px) {
  .dy-landing-vehicles-carousel {
    --dy-vehicles-per-view: 3;
  }
}
.dy-landing-vehicles-carousel__carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .dy-landing-vehicles-carousel__carousel-container {
    padding: 10px 5px;
  }
}
.dy-landing-vehicles-carousel--centered .dy-landing-vehicles-card-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dy-landing-vehicles-carousel--centered .dy-landing-vehicles-card {
  max-width: 375px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.dy-landing-vehicles-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: var(--dy-vehicles-gap);
  width: 100%;
  will-change: transform;
}

.dy-landing-vehicles-card {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 375px;
  background-color: #ffffff;
  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-flex: 0;
      -ms-flex: 0 0 calc((100% - var(--dy-vehicles-gap) * (var(--dy-vehicles-per-view) - 1)) / var(--dy-vehicles-per-view));
          flex: 0 0 calc((100% - var(--dy-vehicles-gap) * (var(--dy-vehicles-per-view) - 1)) / var(--dy-vehicles-per-view));
}
@media (min-width: 992px) {
  .dy-landing-vehicles-card {
    max-width: unset;
  }
}
.dy-landing-vehicles-card__content {
  position: relative;
  z-index: 1;
  padding: 0 15px 20px;
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.dy-landing-vehicles-card__title-container {
  position: relative;
  border-radius: 20px 20px 0 0;
  padding: 25px 5px;
  text-align: center;
  z-index: 1;
  background-color: #ed1c24;
  overflow: hidden;
}
.dy-landing-vehicles-card__title-container::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-vehicles-card__title-container::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-vehicles-card__title-container::after {
    background-size: 1000px;
  }
}
@media (min-width: 1200px) {
  .dy-landing-vehicles-card__title-container::after {
    background-size: unset;
  }
}
.dy-landing-vehicles-card__title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  z-index: 3;
}
@media (min-width: 1200px) {
  .dy-landing-vehicles-card__title {
    font-size: 22px;
  }
}
.dy-landing-vehicles-card__image-container {
  height: 225px;
}
.dy-landing-vehicles-card__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.dy-landing-vehicles-card__description {
  font-size: 14px;
  font-weight: 500;
  color: #2e3338;
  line-height: 1.5;
  margin: 10px 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.dy-landing-vehicles-card__info-highlight {
  font-size: 14px;
  font-weight: 400;
  color: #2e3338;
  line-height: 1.5;
  margin-bottom: 15px;
  background-color: #e5e5e5;
  padding: 10px 15px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dy-landing-vehicles-card__info-highlight:last-child {
  margin-bottom: 0;
}
.dy-landing-vehicles-card__model-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  background-color: #1b3e90;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px 20px;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: 25px auto 5px;
  margin-top: auto;
  background-color: #17357b;
}
@media (min-width: 768px) {
  .dy-landing-vehicles-card__model-link {
    padding: 20px 25px;
  }
  .dy-landing-vehicles-card__model-link:hover, .dy-landing-vehicles-card__model-link:active, .dy-landing-vehicles-card__model-link:focus {
    cursor: pointer;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -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;
  }
}
.dy-landing-vehicles-card__model-link::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/images/destination/dy-external-link-icon.svg") no-repeat center center/contain;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
}