/* Popular Travel Route */
.card_box {
  position: relative;
  transition: transform 150ms cubic-bezier(0.35, 0, 0.25, 1);
  cursor: pointer;
}

.card_box:active,
.card_box:hover {
  transform: scale(1.1);
  z-index: 999999;
}

.card_box .card_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  
  border-radius: 0 0 24px 24px;
  background: linear-gradient( 0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);


  color: #fff;
  -webkit-border-radius: 0 0 24px 24px;
  -moz-border-radius: 0 0 24px 24px;
  -ms-border-radius: 0 0 24px 24px;
  -o-border-radius: 0 0 24px 24px;
}

.card_box h6 {
  padding: 0.75rem 1.25rem;
  font-weight: bold;
}

.card_box h4 {
  padding: 2rem 2.5rem;
  font-weight: bold;
}

.card_box h6:hover {
  color: #fff;
}

.card_box img {
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}