#destinazioni {
  position: relative;
  overflow: hidden;
}

#destinazioni .title {
  transition: color 0.8s 0.8s;
}

#destinazioni .uk-list .el-item span {
  display: inline-block;
  line-height: 1.6;
  cursor: default;
  transition:
    opacity 0.8s,
    color 0.8s 0.8s;
}

#destinazioni .uk-list .el-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

#destinazioni .uk-list .el-item {
  margin: 0px;
}

#destinazioni.destinazioni--hover .uk-list .el-item span,
#destinazioni.destinazioni--hover .title{
  color: #fff;
}

#destinazioni.destinazioni--hover .uk-list .el-item span:not(.span--hover) {
  opacity: 0.4;
}

#destinazioni .foreground {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -5;
  top: 0;
  left: 0;
  background-color: #fff;
  transition:
  	top 0.6s ease-out,
  	left 0.6s ease-out 0.6s,
    height 0.6s ease-out,
    width 0.6s ease-out 0.6s;
}

#destinazioni .foreground--active {
  transition:
  	top 0.6s ease-out,
  	left 0.6s ease-out;
}

#destinazioni .foreground--leave {
  transition:
  	top 0.6s ease-out 0.6s,
  	left 0.6s ease-out,
    height 0.6s ease-out 0.6s,
    width 0.6s ease-out;
}