
/* destinatino area */
.destination-area {
  padding: 135px 55px;
  padding-bottom: 70px;
}
.destination-area.home2 {
  padding-bottom: 100px;
}

.destination-img img {
  width: 100%;
}

.destination-hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 40px;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  opacity: 0;
  visibility: hidden;
}

section.destination-area.home3 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.single-destination:hover .destination-hover-content {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.single-destination:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12%, #0d0d0da6), color-stop(60%, #ffffff00));
  background: -webkit-linear-gradient(bottom, #0d0d0da6 12%, #ffffff00 60%);
  background: -o-linear-gradient(bottom, #0d0d0da6 12%, #ffffff00 60%);
  background: linear-gradient(to top, #0d0d0da6 12%, #ffffff00 60%);
  content: '';
  opacity: 0;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.single-destination:hover:before {
  opacity: 1;
}

.single-destination {
  position: relative;
}

.destination-wrapper:first-child .destination-content-title h3 a {
  font-size: 55px;
  margin-bottom: 10px;
}

.destination-content-title h3 a {
  color: #ffa013;
  font-size: 35px;
  margin-bottom: 5px;
  display: inline-block;
  font-family: 'quicksandbold';
}

.destination-content-title p {
  color: #fff;
  font-size: 15px;
  padding-left: 30px;
  position: relative;
}

.destination-content-title p:before {
  content: '\f5a0';
  position: absolute;
  left: 5px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.destination-hover-btn {
  position: absolute;
  right: 40px;
  bottom: 30px;
}

.destination-hover-btn .heart-btn {
  background: #fff;
  color: #fea116;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.destination-hover-btn .heart-btn:hover {
  background: #fea116;
  color: #fff;
}
