
.destination {
  /*background: #fff;*/
 /* padding: 0 0 30px 0;*/
}

.dest-row {
  padding-left: 5px;
  padding-right: 5px;
}

.dest-row .dest-col {
  padding: 5px;
}

.destination .destination-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.4s;
}

.destination .destination-item {
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 0;
  /*margin-left: -3px;*/
  vertical-align: middle;
  text-align: center;
}
.destination .destination-item a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.destination .destination-item h2 {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 700;
}

.destination .destination-item img {
  transition: all ease-in-out 0.4s;
}
.destination .destination-item img.p{
  width: 100%;
}
.destination .destination-item img.w{
  height: 100%;
}
.destination .destination-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.destination .destination-item .destination-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.destination .destination-item:hover .destination-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

.destination .destination-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
  .destination .destination-item {
    height: auto;
  }
}
@media (min-width: 576px) {
  .destination .destination-item {
    height: auto;
  }
}
@media (min-width: 768px) {
  .destination .destination-item {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .destination .destination-item {
    height: 320px;
  }
}
@media (min-width: 1200px) {
  .destination .destination-item {
    height: 380px;
  }
}