.card-col {
  word-wrap: break-word;
  padding: 5px;
  font-family: "Open Sans", sans-serif;
  color:#888ea8;
  transition: all ease-in-out 0.4s;
}

.item-tourcode {
  color: #9e9e9e;
}

.item-card {
  width: 100%;
  word-wrap: break-word;
  font-family: "Open Sans", sans-serif;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 1rem;    
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
  border: 1px solid #e0e0e0;
}

.item-ibox {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: end;
}
.item-ibox img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: all ease-in-out 0.4s;
}

.item-pax {
  position: absolute;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 14px;
  bottom: 15px;
  right: 5px;
  background: rgba(0,0,0,.5);
  color: #fff;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.item-badge {
  top: -10px;
  left: 10px;
  position: absolute;
  padding: 5px 10px;
  border-radius: 3px;
}

.item-card:hover .ip-short {
  display: none;
}
.item-card .ip-short {
  display: flex;
  align-items: center;
}

.item-card .ip-long {
  display: none;
}
.item-card:hover .ip-long {
  display: inline;
}

.item-cont {
  position: relative;
  transition: all ease-in-out 0.4s;
  padding-bottom: 50px;
}

.item-body{
  padding: 10px;
  min-height: 8rem;
}

.item-title{
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.item-footer {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5px;
  transition: all ease-in-out 0.4s;
}

.card-col:hover {
  color:#444;
  padding: 0;
}

.card-col:hover .item-cont {
  padding-left: 5px;
  padding-right: 5px;
}

.card-col:hover .item-footer {
  padding: 0 10px;
}

.card-col:hover .item-ibox img {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}

.card-col:hover .item-title {
  color: #374785;
}


@media (max-width: 575px) {
  .item-card {
    display: flex;
    flex-wrap: wrap;
    min-height: 300px;
  }
  .card-col:nth-child(odd) {
    padding: 0 2.5px 0 5px;
  }
  .card-col:nth-child(even) {
    padding: 0 5px 0 2.5px;
  }
  .item-cont {
    padding-bottom: 20px;
  }
  .item-title,.item-price {
    font-size: .8rem;
  }
  .item-prc {
    font-size: .9rem;
  }
  .item-footer {
    bottom: 0;
  }
  .item-footer .btn{
    display: none;
  }
}