@import url(css_reset.css);
@import "https://fonts.googleapis.com/css2?family=Cal+Sans&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";
/*-----GENERALES-----*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem !important;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
}
body .contenedor {
  display: block;
  background: #566799;
  background: linear-gradient(0deg, rgb(47, 57, 88) 0%, rgb(28, 27, 72) 35%, rgb(8, 4, 48) 55%);
  position: fixed;
  inset: 0;
  overflow: hidden;
}
body .contenedor .space {
  width: var(--size);
  height: var(--size);
  background-color: #fff;
  box-shadow: var(--space-layer);
  position: absolute;
  border-radius: 4rem;
  top: 0;
  left: 0;
  opacity: 70%;
  animation: moverStars var(--duracion) linear infinite;
}
@keyframes moverStars {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateY(-100vh);
  }
}
@keyframes fugaz {
  from {
    transform: translateX(-100vw) translateY(-100vh);
  }
  to {
    transform: translateX(100vw) translateY(100vh);
  }
}
body .bg {
  display: block;
  position: absolute;
  inset: 0;
  background: url(../imagenes/paisaje2.png) no-repeat;
  background-attachment: fixed;
  background-position: center bottom;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  body .bg {
    background-size: auto 20%;
  }
}
body .fugaz span {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 0 5px rgba(254, 254, 255, 0.2), 0 1px 0 7px rgba(245, 254, 255, 0.1), 0 1px 21px rgb(253, 253, 245);
  animation: anim 3s ease-in-out infinite;
  opacity: 0.3;
}
body .fugaz span::before {
  content: "";
  width: 290px;
  height: 2px;
  position: absolute;
  top: 53%;
  transform: translateY(-45%);
  background: linear-gradient(90deg, rgb(255, 255, 255), transparent);
  opacity: 0.3;
}
@keyframes anim {
  0% {
    transform: rotate(325deg) translateX(0);
    opacity: 1;
  }
  40% {
    opacity: 0.8;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: rotate(325deg) translateX(-1400px);
    opacity: 0;
  }
}
body .fugaz span:nth-child(1) {
  top: -10px;
  right: -520px;
  left: inherit;
  animation-delay: 10s;
  animation-duration: 3s;
}
body .fugaz span:nth-child(2) {
  top: -20px;
  right: 70px;
  left: inherit;
  animation-delay: 5s;
  animation-duration: 4s;
}
body .fugaz span:nth-child(3) {
  top: -50px;
  right: -50px;
  left: inherit;
  animation-delay: 10s;
  animation-duration: 3s;
}
body .fugaz span:nth-child(4) {
  top: -30px;
  right: 170px;
  left: initial;
  animation-delay: 20s;
  animation-duration: 3s;
}
body .contenedor-contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: auto;
  padding: 0 3rem;
}
@media screen and (max-width: 480px) {
  body .contenedor-contenido {
    justify-content: inherit;
    margin-top: 3rem;
  }
}
body .contenedor-contenido h1 {
  color: #fff;
  margin-bottom: 5rem;
}
@media screen and (max-width: 480px) {
  body .contenedor-contenido h1 {
    margin-bottom: 3rem;
  }
}
body .contenedor-contenido .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .contenedor-contenido .menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  width: 100%;
  max-width: 1280px;
}
@media screen and (max-width: 480px) {
  body .contenedor-contenido .menu ul {
    max-width: inherit;
    gap: 2rem;
  }
}
body .contenedor-contenido .menu ul .card {
  display: flex;
  max-width: 35rem;
  width: 35rem;
  height: auto;
  border-radius: 1rem;
  font-size: 1rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(2px);
  padding-top: 15rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 17rem;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  body .contenedor-contenido .menu ul .card {
    padding-top: 10rem;
  }
}
body .contenedor-contenido .menu ul .card.nebula {
  background-image: url(../imagenes/nebula.png);
}
body .contenedor-contenido .menu ul .card.camino {
  background-image: url(../imagenes/camino.png);
}
body .contenedor-contenido .menu ul .card.kilwinning {
  width: 100%;
  background-image: url(../imagenes/KILWINNING.png);
}
body .contenedor-contenido .menu ul .card:hover {
  background-size: auto 20rem;
}
body .contenedor-contenido .menu ul .card::before {
  display: block;
  position: absolute;
  content: "";
  width: 99%;
  height: 99%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  inset: 0;
  margin: auto;
  border-radius: 1rem;
  background-image: url(../imagenes/vidrio1.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
body .contenedor-contenido .menu ul .card a {
  display: flex;
  width: 100%;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  background-color: #15135C;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
body .contenedor-contenido .menu ul .card a::before {
  display: block;
  position: absolute;
  content: "";
  width: 95%;
  height: 87%;
  border: solid 1px #662BBB;
  border-bottom-left-radius: 0.7rem;
  border-bottom-right-radius: 0.7rem;
}
@media screen and (max-width: 480px) {
  body .contenedor-contenido .menu ul .card a {
    padding: 2rem 2rem;
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=styles.css.map */
