html,
body {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  color: #333;
  font-family: "myriadpro";
  overflow-y: scroll;
}
h1,
h2,
h3,
h4 {
  color: #333;
  font-family: "Lora", serif;
}
a {
  color: #333;
}
#intro {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
#logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  width: 300px;
  height: 300px;

  background-color: #fff;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
@media (max-width: 500px) {
  #logo {
    width: 200px;
    height: 200px;
  }
}
#logo img.img-responsive {
  max-width: 80%;
  height: auto;
}
.claim {
  font-family: "Alex Brush", cursive;
  font-size: 63px;
  line-height: 1;
  margin: 60px 0;
}

.logo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
}

.logo-footer img.img-responsive {
  max-width: 80%;
  height: auto;
}

#logo.open {
  top: 40%;
}
.fondo-fullpage {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
#site-container {
  background-color: #fff;
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 40%;
  padding-top: 150px;
  display: none;
}
.parallax {
  width: 100%;
  height: 500px;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.gallery-item {
  padding: 15px;
}
.gallery-item > div {
  opacity: 1;
  -webkit-transition: opacity 0.4s linear;
  -o-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
}
.gallery-item > div:hover {
  opacity: 0.6;
}

@media (max-width: 992px) {
  #logo img {
    width: 80% !important;
  }
}
