@import url("https://fonts.googleapis.com/css?family=Rajdhani&display=swap");

body {
  margin: 0;
  padding: 0;
}

body * {
  margin: 0;
  padding: 0;
  color: #fff;
  box-sizing: border-box;
}

body * li,
body * ul {
  list-style-type: none;
}

body * a {
  text-decoration: none;
}

.galeria {
  width: 100%;
  margin: 0 auto;
  background-color: rgb(10, 10, 10);
  overflow: hidden;
}

.galeria.vis .container h1,
.galeria.vis .container h2 {
  opacity: 1;
  transform: none;
}

.galeria.vis .container .h2 {
  transition-delay: 0.2s;
}

.galeria.vis .container .containerImgs .images {
  opacity: 1;
  transform: none;
}

.galeria.vis .container .containerImgs .images:nth-child(1) {
  transition-delay: 0.1s;
}

.galeria.vis .container .containerImgs .images:nth-child(2) {
  transition-delay: 0.2s;
}

.galeria.vis .container .containerImgs .images:nth-child(3) {
  transition-delay: 0.3s;
}

.galeria.vis .container .containerImgs .images:nth-child(4) {
  transition-delay: 0.4s;
}

.galeria.vis .container .containerImgs .images:nth-child(5) {
  transition-delay: 0.5s;
}

.galeria.vis .container .containerImgs .images:nth-child(6) {
  transition-delay: 0.6s;
}

.galeria.vis .container .containerImgs .images:nth-child(7) {
  transition-delay: 0.7s;
}

.galeria.vis .container .containerImgs .images:nth-child(8) {
  transition-delay: 0.8s;
}

.galeria.vis .container .containerImgs .images:nth-child(9) {
  transition-delay: 0.9s;
}

.galeria.vis .container .containerImgs .images:nth-child(10) {
  transition-delay: 1s;
}

.galeria.vis .container .containerImgs .images:nth-child(11) {
  transition-delay: 1.1s;
}

.galeria.vis .container .containerImgs .images:nth-child(12) {
  transition-delay: 1.2s;
}

.galeria.vis .container .containerImgs .images:nth-child(13) {
  transition-delay: 1.3s;
}

.galeria.vis .container .containerImgs .images:nth-child(14) {
  transition-delay: 1.4s;
}

.galeria.vis .container .containerImgs .images:nth-child(15) {
  transition-delay: 1.5s;
}

.galeria.vis .container .containerImgs .images:nth-child(16) {
  transition-delay: 1.6s;
}

.galeria.vis .container .containerImgs .images:nth-child(17) {
  transition-delay: 1.7s;
}

.galeria.vis .container .containerImgs .images:nth-child(18) {
  transition-delay: 1.8s;
}

.galeria.vis .container .containerImgs .images:nth-child(19) {
  transition-delay: 1.9s;
}

.galeria.vis .container .containerImgs .images:nth-child(20) {
  transition-delay: 2s;
}

.galeria.vis .container .containerImgs .images:nth-child(21) {
  transition-delay: 2.1s;
}

.galeria.scale .container {
  opacity: 0;
  transform: scale(0.9);
}

.galeria .container {
  width: 90%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 50px 0;
  transition: ease all 0.5s;
}

.galeria .container h1,
.galeria .container h2 {
  opacity: 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  transform: translateY(-30px);
  transition: ease all 0.5s;
}

.galeria .container h1 {
  font-size: 50px;
  letter-spacing: 0.2rem;
}

.galeria .container .containerImgs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  margin-top: 30px;
}

.galeria .container .containerImgs .images {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(33.3333333333% - 20px);
  height: 250px;
  min-width: 250px;
  margin: 10px;
  opacity: 0;
  transform: translateX(-50px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: ease all 0.5s;
}

.galeria .container .containerImgs .images:hover:before {
  opacity: 1;
}

.galeria .container .containerImgs .images:hover .nombre {
  transform: none;
}

.galeria .container .containerImgs .images:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(transparent, #ffffff67);
  transition: ease all 0.5s;
}

.galeria .container .containerImgs .images .nombre {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  transform: translateY(100%);
  text-shadow: -2px -2px 5px rgb(10, 10, 10);
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) all 0.5s;
}

.fullPreview {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.9);
  z-index: 100;
}

.fullPreview.anim .wrapper img {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.fullPreview.anim .wrapper .blur {
  opacity: 0.4;
  transition: opacity 0.2s ease-in-out;
}

.fullPreview .closeMode {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff00;
  cursor: pointer;
  z-index: 10;
  transition: ease all 0.3s;
}

.fullPreview .closeMode:hover {
  /* transform: rotate(90deg); */
  /* background-color: #232323; */
}

.fullPreview .closeMode:before,
.fullPreview .closeMode:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: rgb(255, 255, 255);
}

.fullPreview .closeMode:before {
  transform: rotate(45deg);
}

.fullPreview .closeMode:after {
  transform: rotate(-45deg);

}

.fullPreview .closeMode:hover:before {
  background-color: #787878;
}
.fullPreview .closeMode:hover:after {
  background-color: #787878;
}


.fullPreview .wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.fullPreview .wrapper .blur {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(40px);
  transition: ease all 0.5s;
}

.fullPreview .wrapper img {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) all 0.5s;
}

@media (max-width: 767px) {
  .fullPreview .wrapper img {
    max-width: 100%;
    max-height: 100%;
  }
}

.fullPreview .controles {
  position: absolute;
  bottom: 45%;
  width: 90%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.fullPreview .controles .control {
  display: flex;
  align-items: center;
  width: 50px;
  height: 30px;
  position: relative;
  cursor: pointer;
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) all 0.5s;
}

.fullPreview .controles .control:hover {
  width: 70px;
}

.fullPreview .controles .control.av {
  bottom: 30px;
  left: 0px;
}

.fullPreview .controles .control.ret {
  bottom: 30px;
  left: 0px;
  transform: rotate(180deg);
}

.fullPreview .controles .control:before,
.fullPreview .controles .control:after {
  content: "";
  position: absolute;
}

.fullPreview .controles .control:before {
  left: 0;
  width: 80%;
  height: 2px;
  background-color: #ffffff00;
}

.fullPreview .controles .control:after {
  right: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.fullPreview .controles .control:hover:after {
  right: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #787878;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
}

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