












































































/* ------------------------------------- */

.homepage .destinations-block {
  overflow: initial;
}
.homepage .destinations-block > .site-container-content > .title {
  font-family: AvenirNextLTPro-Bold;
  font-size: 25px;
  color: #000000;
  text-align: center;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .homepage .destinations-block > .site-container-content > .title {
    font-size: 20px;
  }
}
.homepage .destinations-block .destinations > .repository {
  display: none;
}
@keyframes display-destination-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20%, to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes display-destination-out {
  from, 80% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.homepage .destinations-block .destinations > .icon {
  -webkit-animation-name: display-destination;
  animation-name: display-destination;
  animation-duration: 4s;
  -webkit-animation-duration: 4s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  float: left;
  position: relative;
  width: 25%;
  min-height: 50px;
  padding: 0px;
}
@media (max-width: 767px) {
  .homepage .destinations-block .destinations > .icon {
    width: 50%;
  }
}
.homepage .destinations-block .destinations > .icon > img {
  width: 100%;
  height: 100%;
}
.homepage .destinations-block .destinations > .icon > .icon-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  /*background-color: rgba(128, 128, 128, 0.5);*/

}
.homepage .destinations-block .destinations > .icon:hover > .icon-overlay,
.homepage .destinations-block .destinations > .icon.active > .icon-overlay {
  border: 1px solid #EB1F28;
  /*background-color: transparent;*/

}
.homepage .destinations-block .destinations > .icon > .title {
  font-family: AvenirNextLTPro-BoldIt;
  font-size: 25px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*margin: auto;
          width: 100%;
          text-align: center;*/
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.65);
}
@media (max-width: 767px) {
  .homepage .destinations-block .destinations > .icon > .title {
    font-size: 13px;
  }
}
