@font-face {
  font-family: "OpenSansLight";
  src: url("./fuentes/OpenSans-Light.ttf");
}
@font-face {
  font-family: "OpenSansBold";
  src: url("./fuentes/OpenSans-SemiBold.ttf");
}
body {
  text-align: center;
  font: 100% OpenSansLight, sans;
  background-color: black;
}

div.grid-inicio {
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  height: 100vh;
}

.portada {
  color: #999999;
  background: content-box linear-gradient(#333333, black);
}

.icono-azulRS {
  width: 10vh;
  background-color: #28639f;
}

.icono-azulRS:hover {
  background-color: #999999;
}

.texto-azulRS {
  color: #28639f;
}

.texto-naranjaRS {
  color: #fca006;
}

.caja-gris {
  background-color: #1a1a1a;
}

.caja-blanca {
  background-color: white;
}

.caja-titulo {
  background-color: #333333;
  color: white;
}

.caja-cotiza {
  background-color: #fca006;
  color: black;
}

a {
  text-decoration: none;
  color: rgb(204, 135, 6);
}

a:hover {
  text-decoration: underline;
  font-weight: bolder;
}

a:visited {
  color: rgb(148, 98, 4);
}

a:link {
  color: rgb(204, 135, 6);
}

.borderimg {
  border: 57px solid #f9ec70;
  padding: 3px;
  -o-border-image: url("../img/img-margen.png") 30%;
     border-image: url("../img/img-margen.png") 30%;
}

div.grid-inicio {
  padding-top: 0px;
  padding-left: 0px;
  width: 100%;
  height: 100vh;
}

.wrap-inicio {
  display: flex;
  flex-wrap: wrap;
  flex: 100%;
  justify-items: content;
  align-items: center;
}

.w-50p {
  width: 50px;
}

.ancho-resp {
  width: 100%;
}

.espacio-resp {
  width: 0px;
}

* {
  box-sizing: border-box;
}

.gal-img {
  width: 100%;
  margin-top: 10px;
}

.gal-imagen {
  width: 100%;
}

.gal-row {
  display: flex;
  padding: 5px;
  flex-wrap: wrap;
}

.gal-col {
  flex: 25%;
  padding: 5px;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #008CBA;
}

@media screen and (max-width: 600px) {
  .ancho-resp {
    width: 50%;
  }
  .espacio-resp {
    width: 0px;
  }
  .gal-col {
    flex: 100%;
  }
}
@media screen and (max-width: 800px) {
  .gal-col {
    flex: 50%;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.aparece {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

.reducir.scrolled {
  animation: reducir 1s ease-in-out both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes reducir {
  0% {
    height: 100%;
  }
  100% {
    opacity: 150px;
  }
}/*# sourceMappingURL=custom.css.map */