@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 0 150px rgba(0, 0, 0, 0);
    }
} 
 
* {
    font-family: "Josefin Sans", Helvetica, Arial, sans-serif !important;
}

img[src*="media/7-Story-ArquitecturaEgiptoAntiguo.jpg"] {
    animation: pulse-animation 2s infinite;
}


img[src*="media/7-Story-MagiaEgipcia.jpg"] {
    animation: pulse-animation 2s infinite;
}


.zoomLens {
    position: absolute;
    border: 1px solid #000;
    width: 100px;
    height: 100px;
    opacity: 0.4;
    background-color: white;
    pointer-events: none;
    display: none;
    z-index: 99;
  }
  
.zoomResult {
    position: absolute;
    top: 0;
    left: 620px; /* o como prefieras colocarlo al lado del slider */
    width: 300px;
    height: 200px;
    border: 1px solid #000;
    background-repeat: no-repeat;
    display: none;
    z-index: 100;
  }
  