/* REVEAL EFFECT */
.reveal-effect {
  float: left;
  position: relative;
}
.reveal-effect.animated:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #141414;
  position: absolute;
  left: 0;
  top: 0;
  animation: 1s reveal linear forwards;
  -webkit-animation-duration: 1s;
  z-index: 1;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.reveal-effect.animated > * {
  animation: 1s reveal-inner linear forwards;
}

@-webkit-keyframes reveal {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@-webkit-keyframes reveal-inner {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
  51% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Carrusel imagenes */

figure {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  position: relative;
  overflow: hidden;
}

figure {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  position: relative;
  overflow: hidden;
}

figcaption a{
    color: #fff !important;
}

figcaption a:hover{
    color: #ff0000 !important;
}

figure figcaption {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 40px;
  color: #fff;
}

figure figcaption h5 {
  width: 100%;
  display: block;
  font-size: 32px;
  font-weight: 800;
}

figure figcaption p {
  width: 100%;
  display: block;
  margin: 0;
}

.swiper-scrollbar {
  width: 100%;
  height: 4px;
  display: inline-block;
  opacity: 1 !important;
}

/* crucero BOX */
.crucero-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.crucero-box figure {
  width: 100%;
  display: block;
  margin: 0;
}
.crucero-box figure img {
  width: 100%;
}
.crucero-box .content {
  width: calc(100% - 50px);
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  margin-top: -50px;
  margin-left: 50px;
  position: relative;
  z-index: 1;
  padding: 40px;
  padding-right: 40px;
}
.crucero-box .content .price-line {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #ff0000;
  letter-spacing: 1px;
}
.crucero-box .content .price-line span {
  color: #141414;
  opacity: 0.7;
}
.crucero-box .content h3 {
  width: 100%;
  display: block;
  font-size: 1.5em;
  font-family: 'Josefin Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 20px;
   font-weight: 600;
}
.crucero-box .content .bottom-specs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

/* promociones */
.space-80 {
  margin-bottom: 80px !important;
}

.hover-effect-images, .hover-effect-images-ver2 {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hover-effect-images img, .hover-effect-images-ver2 img {
  transition: all 900ms ease 0s !important;
}

.hover-effect-images:before, .hover-effect-images-ver2:before {
  background: rgba(255, 255, 255, 0.3) none repeat scroll 0 0;
  bottom: 0px;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
  transition: all 900ms ease 0s;
}

.hover-effect-images:hover:before, .hover-effect-images-ver2:hover:before {
  left: 50%;
  opacity: 1;
  right: 50%;
}

.hover-effect-images-ver2:after {
  background: rgba(255, 255, 255, 0.3) none repeat scroll 0 0;
  bottom: 0px;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
  transition: all 900ms ease 0s;
}

.hover-effect-images-ver2:hover:after {
  top: 50%;
  bottom: 50%;
  opacity: 1;
}
.tag-date {
  position: absolute;
  top: -10px;
  left: 0px;
  color: #fff;
  font-size: 16px;
  background: #ff0000;
  padding: 0px 30px;
  line-height: 40px;
}