/* Make all .tour-item cards in .tour-grid the same height using flexbox, and images uniform */
.tour-grid .row {
  display: flex;
  flex-wrap: wrap;
}
.tour-grid .row > [class^="col-"] {
  display: flex;
  flex-direction: column;
}
.tour-grid .tour-item {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tour-grid .tour-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.tour-item .tour-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 991px) {
  .tour-item .tour-img img {
    height: 150px;
  }
}
@media (max-width: 767px) {
  .tour-grid .row {
    display: block;
  }
  .tour-grid .row > [class^="col-"] {
    display: block;
  }
  .tour-grid .tour-item {
    height: auto;
    margin-bottom: 30px !important;
  }
  .col-12 .col-xl-3 .col-md-6{
    margin-bottom: 30px !important;
  }
}
