/*----Fuentes---*/
@import url(../fonts/mohave/stylesheet.css);
/*----CSS contenido---*/
@import url(contenido.css);
/*----RESET CSS---*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0.01em;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  min-height: 100%;
  position: relative;
  font-family: sans-serif;
}

a {
  text-decoration: none;
  color: #000000;
}

.clear {
  clear: both;
}

h2 {
  color: #2a3c53;
  font-size: 2em;
  margin-bottom: 30px;
}
h2 span {
  display: block;
  width: 1.5em;
  height: 4px;
  background-color: #f9299b;
}

/*----FINAL RESET CSS---*/
/*----LAYOUT-----*/
body {
  display: block;
  width: 100%;
}
body header {
  display: block;
  width: 100%;
  background-color: #2a0546;
}
body .contenido_aviso {
  width: 100%;
  height: 200%;
  background-color: #2a0546;
  position: relative;
  flex-direction: column;
}
body main {
  display: block;
}
body footer {
  display: block;
  background-color: #2a0546;
  height: 300px;
}

header .background {
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
  opacity: 0.05;
  background-image: url(../../imagenes/pexels-anna-shvets-4226140.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
header nav {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0px 30px;
  z-index: 2;
  width: 100%;
  height: 120px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.08);
  transition: top 0.9s;
  font-family: "mohavemedium";
  z-index: 3;
  background-color: #2a0546;
}
header section {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 200px);
  margin-top: 50px;
  margin-bottom: 0px;
  padding-bottom: 50px;
  font-family: "mohavemedium";
}

main {
  color: #2a3c53;
  font-family: "mohavemedium";
}
main section {
  grid-column: h1/h5;
  padding: 50px 30px;
  height: auto;
  min-height: 100vh;
}
main section .centrar_content {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
main section .centrar_content ul {
  align-items: center;
}
main section.eventos_artisticos {
  min-height: auto;
}

.fadeTop {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
}

.fadeRight {
  display: none;
  opacity: 0;
  transform: translate(10vh, 0vh);
  transition: all 1s;
}

.fadeLeft {
  opacity: 0;
  transform: translate(-10vh, 0vh);
  transition: all 1s;
}

.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-device-width: 800px) and (orientation: landscape) {
  body header {
    grid-column: h1/h5;
    width: 100%;
    height: 100vw;
    overflow: hidden;
    position: relative;
  }
}
@media (max-width: 500px) {
  main section {
    padding: 50px 10px;
  }
}/*# sourceMappingURL=layout.css.map */