.ag-blow-block {
  z-index: 4;
}

.carpeta {
  width: 45vw;
  height: 90vh;
  display: flex;
  align-items: end;
}

.carpeta.carpeta1 {
  justify-content: right;
}

.carpeta.carpeta2 {
  justify-content: left;
}

.ag-blow-1 {
  z-index: -1;
  position: absolute;
  /* top: 0; */
  /* right: 0; */
  animation: an-blow-1 2s ease-in-out infinite;
}

.ag-blow__delay-1 {
  animation-delay: .5s;
}

.ag-blow__delay-2 {
  animation-delay: 1s;
}

@keyframes an-blow-1 {
  0% {
    opacity: 0;
    transform: translateY(5%) rotate(.01deg);
  }

  50% {
    opacity: .95;
  }

  to {
    opacity: 0;
    transform: translateY(0) rotate(.01deg);
  }
}

@media(max-width:767px) {
  .carpeta {
    width: 100vw;
    height: 50vh;
    display: flex;
    align-items: end;
  }

  .carpeta.carpeta1 {
    justify-content: center;
  }

  .carpeta.carpeta2 {
    align-items: baseline;
    padding-top: 3rem;
  }
}
