#principal {
  background-color: #022f2a;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#otherNav {
  position: relative;
}
.menuIcon {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
#principal .menuIcon {
    top: 40px;
    right: 40px;
    transform: translateY(0px);
}
#principal img {
    width: 100%;
    height: auto;
}

.menuIcon ul {
  position: absolute;
  background: white;
  display: none;
  flex-direction: column;
  padding: 20px 16px 4px 16px;
  right: 0px;
  align-items: start;
}
.menuIcon.active ul {
  display: flex;
}
.menuIcon ul li {
  margin-bottom: 16px;
  width: 100%;
  text-align: start;
  white-space: nowrap;
  transition: opacity .16s ease-in, color .16s ease-in;
  color: var(--primary-color);
}
.menuIcon ul li a {
  color: var(--primary-color);
}
.menuIcon ul li:hover, .menuIcon ul li:hover a {
  color: var(--third-color);
}
.pt-140 {
  padding-top: 140px;
}
.animateGoIn {
    opacity: 0;
  animation: goIn .45s ease-in .2s forwards;
}
.preloader img {
  animation: loopScale .62s ease-in-out infinite alternate;
}
.reserva-parallax {
  width: 100%;
  height: 420px;
  min-height: 420px;
  background-image: url("/index_files/parallax.jpg");
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reserva-parallax.contain {
  height: auto;
  min-height: 0px;
}
.reserva-parallax.contain img{
  display: block;
}
@media (min-width: 1200px) {
  .reserva-parallax {
    background-size: cover;
    background-attachment: fixed;
  }
  .reserva-parallax.contain {
    height: 580px;
    min-height: 580px;
  }
  .reserva-parallax.contain img {
    display: none;
  }
}
@media (min-width: 1024px) {
    #principal img {
    width: 40%;
    height: auto;
}
    
}
@keyframes loopScale {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes goIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}