.couple_list .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.couple_list .img-holder {
  position: relative;
  height: 310px;
  margin-bottom: 24px;
}

.couple_list .img-holder .hover-content {
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  width: 260px;
}

.couple_list .img-holder .hover-content span {
  color: #e82561;
}

.couple_list .img-holder .hover-content h4 {
  font-size: 30px;
  font-weight: 600;
}

.couple_list .img-holder .hover-content h4 a {
  color: #c30e59;
}

.couple_list .img-holder .hover-content h4 a:hover {
  color: #c30e59;
}

.couple_list .img-holder::before {
  position: absolute;
  left: 2%;
  top: 2%;
  width: 96%;
  height: 96%;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.3s;
  transform: scale(0);
}

.couple_list .img-holder:hover .hover-content {
  opacity: 1;
}

.couple_list .img-holder:hover::before {
  opacity: 1;
  transform: scale(1);
}

.couple_list .load_more_area {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.couple_list .btn_load_more {
  color: #fff;
  background: #c30e59;
  display: inline-block;
  font-weight: 600;
  padding: 15px 45px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 1.0666666667rem;
  transition: all 0.3s;
}

.couple_list .btn_load_more::after {
  border: 1px solid #c30e59;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  transition: all 0.3s;
}
