/* FONTS */

@font-face {
    font-family: 'Monument-Grotesk-Mono-Light';
    src: url("../fonts/Monument-Grotesk-Mono-Light.otf") format('opentype');
}
@font-face {
    font-family: 'Monument-Grotesk-Mono-Regular';
    src: url("../fonts/Monument-Grotesk-Mono-Regular.otf") format('opentype');
} 
@font-face {
    font-family: 'Monument-Grotesk-Mono-Medium';
    src: url("../fonts/Monument-Grotesk-Mono-Medium.otf") format('opentype');
}
@font-face {
    font-family: 'Monument-Grotesk-Mono-Medium-Italic';
    src: url("../fonts/Monument-Grotesk-Mono-Medium-Italic.otf") format('opentype');
}
@font-face {
    font-family: 'Monument-Grotesk-Mono-Bold';
    src: url("../fonts/Monument-Grotesk-Mono-Bold.otf") format('opentype');
}

@font-face {
    font-family: 'Monument-Grotesk-Regular';
    src: url("../fonts/Monument-Grotesk-Regular.otf") format('opentype');
}  
@font-face {
    font-family: 'Monument-Grotesk-Medium';
    src: url("../fonts/Monument-Grotesk-Medium.otf") format('opentype');
}
@font-face {
    font-family: 'Monument-Grotesk-Bold';
    src: url("../fonts/Monument-Grotesk-Bold.otf") format('opentype');
}

/* FONT-STYLE */

h1{
    font-family:'Monument-Grotesk-Mono-Medium';
    font-size: 2rem;
    line-height: 90%;
}

h2{
    font-family:'Monument-Grotesk-Mono-Medium';
    font-size: 2rem;
    line-height: 90%;
}

h3{
    color: black;
    font-family:'Barlow-Semi-Condensed-Bold';
    font-size: 1.5rem;
}

h4{
    font-family: 'Monument-Grotesk-Medium';
    font-size: 2.75rem;
    line-height: 105%;
}

h5{
    font-family: 'Monument-Grotesk-Mono-Light';
    font-size: 1rem;
}

h6{
    font-family: 'Monument-Grotesk-Mono-Medium';
    text-transform: uppercase;
    font-size: 0.75rem;
}

.typewriter-text{
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}
.typewriter-anim{
    animation: typewriter 4s steps(44) 1s 1 normal both;
}
.typewriter-anim-bis{
    animation: typewriter 4s steps(44) 1s 1 normal both;
    animation-delay: 2s;
}
.typewriter-anim-ter{
    animation: typewriter 4s steps(44) 1s 1 normal both;
    animation-delay: 3s;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 24em;}
}

sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em;
}
  
i{
    font-style: italic;
}

/* BODY */

body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

/* HEADER */

.header-unactive{
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(0, 0, 0);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-active{
    position: sticky;
    top: 0px;
    height: 0vh;
    width: 100vw;
    mix-blend-mode: difference;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 400;
}

.header-titre-unactive{
    height: fit-content;
    width: fit-content;
    font-family: 'Monument-Grotesk-Mono-Bold';
    color: rgb(255, 255, 255);
    font-size: 11rem;
    line-height: 85%;
    filter: blur(10px);
    user-select: none;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-titre-unactive:hover{
    filter: blur(0px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-titre-active{
    z-index: 400;
    height: fit-content;
    width: fit-content;
    margin-top: 80px;
    font-family: 'Monument-Grotesk-Mono-Medium';
    font-size: 1rem;
    filter: none;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-titre-active:hover{
    cursor: pointer;
    opacity: 1;
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CONTAINER-ALL */

.container-all-unactive{
    display: none;
}

.container-all-active{
    display: block;
    scroll-snap-type: y mandatory;
}

/* HORAIRE */

.horaire-unactive{
    height: 30vh;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-align: start;
}
  
.horaire-active{
    height: fit-content;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    padding-top: 25px;
    padding-bottom: 100px;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-align: start;
}
  
.horaire-titre-unactive{
    text-align: center;
    height: fit-content;
    width: fit-content;
    user-select: none;
    font-family: 'Monument-Grotesk-Bold';
    font-size: 10rem;
    line-height: 90%;
    color: rgb(255, 255, 255);
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(9px);
}
  
.horaire-titre-unactive:hover{
    cursor: pointer;
    animation: none;
    letter-spacing: -2px;
    filter: blur(0px);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
  
.horaire-titre-active{
    z-index: 3;
    position: relative;
    text-align: center;
    font-family: 'Monument-Grotesk-Mono-Medium';
    color: rgb(0, 0, 0);
    font-size: 2rem;
    animation: none;
    filter: blur(0px);
}
  
.horaire-titre-active:hover{
    letter-spacing: -1px;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
  
.horaire-spec-unactive{
    display: none;
}
  
.horaire-spec-active{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    text-align: center;
    color: black;
    margin-bottom: 10px;
}
  
.horaire-content-unactive{
    display: none;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
  
.horaire-content-active{
    cursor: pointer;
    height: fit-content;
    width: 100vw;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
}

.horaire-content-active p{
    margin-left:3.5vw;
    margin-right: 3.5vw;
}
  
.horaire-content-active:hover{
    cursor: pointer;
}

/* DOC */

.doc-unactive {
    display: none ;
}

.doc-active {
    height: fit-content;
    width: 100vw;
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    margin-top: 2.5vh;
}

/* HORAIRE-1 */

#horaire-1{
    padding-top: 75px;
}

/* HORAIRE-3 */

#horaire-3{
    padding-bottom: 0px;
}

    /* FLIP */

.back {
    transform: rotateY(180deg);
}

.front-flip{
    transform: rotateY(-180deg);
}

.back-flip{
    transform: rotateY(0deg);
}

/* DOC-1 */

.doc-1-active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 35px;
}

    /* CARD */
  
.card {
    position: relative;
    width: 720px;
    height: 480px;
    perspective: 2000px;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover{
    transform: scale(1.02);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover #card-front{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.card:hover #card-back{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.card:hover img{
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0px);
}

#card-front, #card-back {
    position: absolute;
    width: 720px;
    height: 480px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.card img{
    width: 720px;
    height: 480px;
    filter: blur(7.5px);
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}
  
    /* PHOTO */
  
.photo {
    position: relative;
    width: 240px;
    height: 360px;
    perspective: 2000px;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo:hover{
    transform: scale(1.02);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo:hover #photo-front{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.photo:hover #photo-back{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.photo:hover img{
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0px);
}
      
#photo-front, #photo-back {
    position: absolute;
    height: 360px;
    width: 240px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
      
.photo img{
    height: 360px;
    width: 240px;
    filter: blur(7.5px);
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}
    
.photo-front-flip{
    transform: rotateY(180deg);
}
    
.photo-back-flip{
    transform: rotateY(0deg);
}

/* DOC-2 */

.doc-2-active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 35px;
}

    /* NEGATIV */

.negativ {
    position: relative;
    width: 360px;
    height: 300px;
    perspective: 2000px;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.negativ:hover{
    transform: scale(1.02);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.negativ:hover #negativ-front{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.negativ:hover #negativ-back{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.negativ:hover img{
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0px);
}

#negativ-front, #negativ-back {
    position: absolute;
    width: 360px;
    height: 300px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.negativ img{
    width: 360px;
    height:300px;
    filter: blur(7.5px);
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}
  
    /* NOTE */
  
.note {
    position: relative;
    width: 500px;
    height: 600px;
    perspective: 2000px;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.note:hover{
    transform: scale(1.02);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.note:hover #note-front{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.note:hover #note-back{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.note:hover img{
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0px);
}
      
#note-front, #note-back {
    position: absolute;
    height: 600px;
    width: 500px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
      
.note img{
    height: 600px;
    width: 500px;
    filter: blur(7.5px);
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}
    
.note-front-flip{
    transform: rotateY(180deg);
}
    
.note-back-flip{
    transform: rotateY(0deg);
}

/* DOC-3 */

.doc-3-active{
    display: block;
}

.container-planche{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0, 0, 0);
}
  
.planche{
    width: fit-content;
    height: 100vh;
    display: block;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
}
  
.planche::-webkit-scrollbar{
    display: none;
}
  
.img-container{
    /* height: 320px; */
    /* width: 480px; */
    width: 25vw;
    aspect-ratio: 9/6;
    scroll-snap-align: start;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    border: solid white 0.05px;
    display: flex;
    justify-content: center;
}

.img-container:hover{
    background-color: white;
    box-shadow: inset 0px 0px 70px 20px rgb(0, 0, 0);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
  
.img-container img{
    /* height: 320px; */
    /* width: 480px; */
    width: 25vw;
    aspect-ratio: 9/6;
    opacity: 0;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-container:hover img{
    opacity: 1;
}
  
.img-container:hover .txt-planche{
    opacity: 1;
    font-family: 'Monument-Grotesk-Mono-Regular';
    letter-spacing: -0.05rem;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-container:hover .txt-planche-up{
    opacity: 1;
    font-family: 'Monument-Grotesk-Mono-Regular';
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
  
.txt-planche-up{
    user-select: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: 'Monument-Grotesk-Mono-Light';
    font-size: 8rem;
    color: rgb(255, 255, 255);
    opacity: 0;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
  
.txt-planche{
    user-select: none;
    position: fixed;
    transform: translateX(-50%);
    top: 65%;
    left: 50%;
    font-family: 'Monument-Grotesk-Mono-Light';
    font-size: 3rem;
    color: rgb(255, 255, 255);
    opacity: 0;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    pointer-events: none;
}

/* DOC-4 */

.doc-4-active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 35px;
}

    /* LIFE-MAG */
  
.life-mag {
    position: relative;
    width: 960px;
    height: 720px;
    perspective: 2000px;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.life-mag:hover{
    transform: scale(1.02);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.life-mag:hover #life-mag-front{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.life-mag:hover #life-mag-back{
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,1);
}
.life-mag:hover img{
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0px);
}

#life-mag-front, #life-mag-back {
    position: absolute;
    width: 960px;
    height: 720px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.life-mag img{
    width: 960px;
    height: 720px;
    filter: blur(7.5px);
    transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* DOC-5 */

.doc-5-active{
    height: fit-content;
    width: 100vw;
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    margin-top: 2.5vh;
}

.containers-slideshow{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255);
}
  
.slideshow{
    position: absolute;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
  
.diapo{
    z-index: 4;
    pointer-events: none;
    position: absolute;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.5);
    filter: blur(100px) brightness(0);
}

.diapo img{
    height: 576px;
    width: 864px;
}
  
.diapo-active{
    z-index: 4;
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0) brightness(1.2);
    pointer-events: none;
}
  
.mires{
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
  
.mires::-webkit-scrollbar{
    display: none;
}
  
.mire-gauche{
    height: fit-content;
    width: fit-content;
}
  
.mire-droite{
    height: fit-content;
    width: fit-content;
}
  
.mire-txt{
    height: 3400vh;
    width: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
  
.txt{
    height: 100vh;
    width: 10vh;
    text-align: center;
}

.mire-deg{
    position: absolute;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mire-deg-side{
    position: relative;
    height: 100vh;
    width: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  
.mire-deg-top{
    z-index: 3;
    top: 0px;
    height: 200px;
    width: 10vw;
    background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgba(0,0,0,0) 100%);
}
  
.mire-deg-bottom{
    z-index: 3;
    bottom: 0px;
    transform-origin: bottom;
    height: 200px;
    width: 10vw;
    background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgba(0, 119, 255, 0) 100%);
}

/* MEDIA QUERIES */

    /* 970PX */

@media screen and (max-width: 970px) {
    
    h4{
        font-size: 2.1rem;
        letter-spacing: -0.01rem;
        transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .header-titre-unactive{
        font-size: 5rem;
    }
    .header-titre-active{
        font-size: 1rem;
    }

    .horaire-titre-unactive{
        font-size: 8rem;
    }
    .horaire-titre-active{
        font-size: 2rem;
    }

    .card {
        width: 480px;
        height: 320px;
    }
    #card-front, #card-back {
        width: 480px;
        height: 320px;
    }
    .card img{
        width: 480px;
        height: 320px;
    }

    .container-planche{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgb(0, 0, 0);
    }
    .planche{
        width: 100vw;
        height: 100vh;
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: none;
        align-items: center;
        overflow: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }
    .img-container{
        width: calc(9/6 * 100%);
        height: 25vh;
        scroll-snap-align: start;
        transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
        border: solid white 0.05px;
        display: flex;
        justify-content: center;
    }  
    .img-container img{
        width: calc(9/6 * 100%);
        height: 25vh;
        opacity: 0;
        transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .life-mag {
        position: relative;
        width: 822px;
        height: 548px;
    }  
    #life-mag-front, #life-mag-back {
        height: 548px;
        width: 822px;
    }
    .life-mag img{
        height: 548px;
        width: 822px;
    }

    .diapo img{
        height: 320px;
        width: 480px;
    }

}

    /* 580PX */
  
@media screen and (max-width: 580px) {
    h4{
        font-size: 1.5rem;
        letter-spacing: -0.01rem;
    }

    .header-titre-unactive{
        font-size: 2.5rem;
        transition: none;
    }
    .header-titre-active{
        font-size: 1rem;
        transition: none;
    }

    .horaire-titre-unactive{
        font-size: 6rem;
        transition: none;
    }
    .horaire-titre-active{
        font-size: 2rem;
        transition: none;
    }

    .card {
        width: 360px;
        height: 240px;
    }
    #card-front, #card-back {
        width: 360px;
        height: 240px;
    }
    .card img{
        width: 360px;
        height: 240px;
    }

    .note {
        position: relative;
        width: 333px;
        height: 400px;
    }  
    #note-front, #note-back {
        height: 400px;
        width: 333px;
    }
    .note img{
        height: 400px;
        width: 333px;
    }

    .life-mag {
        position: relative;
        width: 480px;
        height: 360px;
    }  
    #life-mag-front, #life-mag-back {
        height: 360px;
        width: 480px;
    }
    .life-mag img{
        height: 360px;
        width: 480px;
    }

    .diapo img{
        height: 150px;
        width: 225px;
    }

    /* 400PX */

@media screen and (max-width: 400px) {

    h4{
        font-size: 1.2rem;
        letter-spacing: -0.01rem;
    }

    .horaire-titre-unactive:hover{
        cursor: pointer;
        letter-spacing: -2px;
        transition: 3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes alerte {
        0%{
        filter: blur(0px);
        }
        50%{
        filter: blur(4px);
        }
        100%{
        filter: blur(0px);
        }
    }

    .header-titre-unactive{
        animation: alerte 4s infinite forwards;
    }
  
    .header-titre-active{
        animation: none;
    }

    .animated {
        animation: alerte 4s infinite forwards;
    }

    .card:hover #card-front{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .card:hover #card-back{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .photo:hover #photo-front{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .photo:hover #photo-back{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .negativ:hover #negativ-front{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .negativ:hover #negativ-back{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .note:hover #note-front{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .note:hover #note-back{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .life-mag:hover #life-mag-front{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }
    .life-mag:hover #life-mag-back{
        box-shadow: 0px 0px 15px -5px rgba(0,0,0,1);
    }

    .txt-planche-up{
        font-size: 3rem;
        top: 44%
        
    }
    .txt-planche{
        font-size: 1.5rem;
        top: 52%;
    }
    
    .life-mag {
        position: relative;
        width: 360px;
        height: 270px;
    }  
    #life-mag-front, #life-mag-back {
        height: 270px;
        width: 360px;
    }
    .life-mag img{
        height: 270px;
        width: 360px;
    }
}
}

.no-animation img {
    animation: none;
    filter: blur(0px);
  }
