/*************************************************************************
 * GENERAL STYLING
 */

html{
    font-family: "Italiana", sans-serif;
    font-weight: bold;
}

.alexbrush{
    font-family: "AlexBrush", cursive, sans-serif;
    color: #d4af37;
}

.ulink{
    text-decoration: none;
}

.capitalize{
    font-family: "AlexBrush", cursive, sans-serif;
    font-size: 2em;
}


/*************************************************************************
 * TITLE SCREEN
 * Identity
 */

.identity{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.logo-lefthalf, .logo-righthalf{
    height: 100%;
    width: 40%;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 100;
    margin: 0;
    padding: 0;
}
.logo-lefthalf, .logo-righthalf:hover{
    cursor: pointer;
}
.logo-lefthalf{
    left: 10%;
    background-position: right;
    background-image: url("../img/logo/logoleft.png");
}
.logo-righthalf{
    right: 10%;
    background-position: left;
    background-image: url("../img/logo/logoright.png");
}

.title-trigger{
    position: absolute;
    bottom: 10%;
    left: 49%;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 100px;
    font-weight: bold;
    text-align: center;
    line-height: 100px;
    background: white;
    z-index: 1000;
    transition: all .4s ease;
}
@media all and (max-width: 800px){
    .title-trigger{
        width: 70px;
        line-height: 70px;
        border-radius: 70px;
        font-size: .9em;
        left: 44%;
    }
}
.title-trigger:hover{
    background-color: #d4af37;
    border-radius: 0;
    color: white;
    transform: scale(1.3);
    cursor: pointer;
}

.goleft{
    animation: goleft .7s cubic-bezier(.26,.27,.89,.3) forwards;
}
.goright{
    animation: goright .7s cubic-bezier(.26,.27,.89,.3) forwards;
}
.godown{
    animation: godown .3s .7s ease-in-out forwards;
}


/*************************************************************************
 * TITLE SCREEN
 * Front-page body
 */

.frontpage-body{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    z-index: 0;
}

.overlay{
    height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.pins{
    height: 100%;
    width: 200px;
    background-image: url("../img/logo/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.vertical-separator{
    height: 80%;
    border: 1px solid #d4af37;
    margin-left: 20px;
    margin-right: 20px;
}

.presentation{
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.name{
    font-size: 5em;
}
.subtitle{
    font-size: 3em;
}

.cache{
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease-out;
}

.choice{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}
@media all and (min-height: 700px){
    .choice{
        margin-top: 5%;
    }
}


.activity{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    transition: transform .4s ease;
}
.activity:hover{
    transform: scale(1.1);
}
.activity-image{
    width: 350px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.activity-image-1{
    background-image: url("../img/artiste/tab0.jpg");
}
.activity-image-2{
    background-image: url("../img/decoratrice/tab0.jpg");
}
.activity-image-3{
    background-image: url("../img/coco/tab0.jpg");
}
.activity-description{
    font-size: 2em;
    color: black;
}
.activity-description-3{
    margin-top: 25px;
}

@media all and (max-width: 450px){
    .frontpage-body{
        width: 100%;
    }
    .overlay{
        margin-top: 30px;
        margin-bottom: 20px;
        width: 100%;
        height: 70px;
    }
    .pins{
        width: 70px;
    }
    .name{
        font-size: 1.7em;
    }
    .subtitle{
        font-size: 1em;
    }
    .vertical-separator{
        margin-left: 0;
        margin-right: 10px;
    }
    .choice{
        width: 90%;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    .choice>a{
        width: 100%;
    }
    .activity{
        width: 100%;
    }
    .activity:hover{
        transform: scale(1);
    }
    .activity-image{
        width: 100%;
        height: 250px;
    }
}
@media all and (min-width: 451px) and (max-width: 800px){
    .frontpage-body{
        width: 100%;
    }
    .overlay{
        margin-top: 30px;
        margin-bottom: 20px;
        width: 100%;
        height: 100px;
    }
    .pins{
        width: 100px;
    }
    .name{
        font-size: 2.3em;
    }
    .subtitle{
        font-size: 1.5em;
    }
    .vertical-separator{
        margin-left: 0;
        margin-right: 10px;
    }
    .choice{
        width: 90%;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    .choice>a{
        width: 100%;
    }
    .activity{
        width: 100%;
    }
    .activity:hover{
        transform: scale(1);
    }
    .activity-image{
        width: 100%;
        height: 250px;
    }
}
@media all and (min-width: 801px) and (max-width: 1000px){
    .overlay{
        height: 150px;
    }
    .pins{
        width: 150px;
    }
    .name{
        font-size: 4em;
    }
    .subtitle{
        font-size: 2em;
    }
}


/*************************************************************************
 * ALL SITE
 * Title bar
 */

.titlebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: white;
}
.center{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.pins-nav{
    height: 100%;
    width: 100px;
    background-image: url("../img/logo/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.vertical-separator-nav{
    height: 80%;
    border: 1px solid #d4af37;
    margin-left: 20px;
    margin-right: 20px;
}

.presentation-nav{
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}
.name-nav{
    font-size: 3em;
}
.subtitle-nav{
    font-size: 2em;
}
.menuicon{
    position: absolute;
    top: 15px;
    right: 15px;
    height: 70px;
    width: 70px;
    background-image: url('../img/miscellanous/menu.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .4s ease;
}
.menu-close{
    background-image: url('../img/miscellanous/cross.png');
}
.menuicon:hover{
    cursor: pointer;
}
.menucross{
    animation: menu-clic .4s linear forwards;
}
.menustrip{
    animation: cross-clic .4s linear forwards;
}
.popup-menu{
    position: absolute;
    top: 90px;
    right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 200px;
    border-radius: 15px;
    border: 1px solid grey;
    opacity: 1;
    transform: scaleY(1);
    z-index: 1500;
    transition: opacity .2s ease, transform .4s ease-out;
    transform-origin: center top;
}
.invisible{
    opacity: 0;
    transform: scaleY(.2);
    z-index: -200;
}
.menu-item{
    color: black;
    width: 180px;
    background-color: white;
    height: 20px;
    padding: 5px 10px;
    opacity: 1;
    transform: translateX(0);
    z-index: 1500;
    transition: opacity .4s ease-out, transform .4s ease-out, color .3s ease, background-color .3s ease;
}
hr{
    width: 100%;
    color: grey;
    background-color: grey;
    border: none;
    height: 1px;
    margin: 0;
    padding: 0;
}
.menu-accueil{
    border-radius: 15px 15px 0 0;
}
.menu-contact{
    border: none;
    border-radius: 0 0 15px 15px;
}
.menu-item:hover{
    color: white;
    background-color: #d4af37;
    font-weight: bold;
}
.attente{
    opacity: 0;
    transform: translateX(-20px);
    z-index: -200;
}
.menu-text{
    height: 30px;
    width: 200px;
    transition: transform .3s ease;
}
.menu-text:hover{
    transform: translateX(0);
}

@media all and (max-width: 450px){
    .menuicon{
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    .titlebar{
        height: 70px;
    }
    .center{
        justify-content: flex-start;
    }
    .pins-nav{
        width: 70px;
    }
    .name-nav{
        font-size: 1.7em;
    }
    .subtitle-nav{
        font-size: 1em;
    }
    .vertical-separator-nav{
        margin-left: 0;
        margin-right: 10px;
    }
}
@media all and (min-width: 451px) and (max-width: 599px){
    .menuicon{
        width: 60px;
        height: 60px;
        top: 10px;
        right: 10px;
    }
    .titlebar{
        height: 80px;
    }
    .center{
        justify-content: flex-start;
    }
    .pins-nav{
        width: 80px;
    }
    .name-nav{
        font-size: 2.3em;
    }
    .subtitle-nav{
        font-size: 1.3em;
    }
    .vertical-separator-nav{
        margin-left: 0;
        margin-right: 10px;
    }
}
@media all and (min-width: 600px) and (max-width: 800px){
    .titlebar{
        height: 90px;
    }
    .center{
        justify-content: flex-start;
    }
    .pins-nav{
        width: 90px;
    }
    .name-nav{
        font-size: 2.7em;
    }
    .subtitle-nav{
        font-size: 1.6em;
    }
    .vertical-separator-nav{
        margin-left: 0;
        margin-right: 10px;
    }
}


/*************************************************************************
 * ACTIVITY
 * Structure
 */

.backimage{
    position: fixed;
    /*bottom: 0;*/
    top: 0;
    left: 0;
    width: 100%;
    /*height: 80%;*/
    height: 500px;
    opacity: .5;
    background-image: url('../img/miscellanous/brush.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -100;
    margin-top: 10%;
}

.gallery{
    height: 500px;
    width: 900px;
    /*margin-top: 130px;*/
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}
/*ajout*/
.content{
    margin-top: 10%;
}
/*fin ajout*/
.activity-title{
    color: black;
    font-size: 4em;
}
.arabesque{
    width: 500px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.left-arabesque, .right-arabesque{
    width: 50%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.left-arabesque{
    background-image: url('../img/miscellanous/black-left-arabesque.png');
}
.right-arabesque{
    background-image: url('../img/miscellanous/black-right-arabesque.png');
}
.commentaire{
    font-size: 1.5em;
    text-align: center;
}
.description{
    font-size: 1.2em;
}

.tableau{
    height: 500px;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
    animation: fade .7s linear;
}

.prev, .next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 3em;
    transition: all .4s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next{
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev{
    left: 0;
}
.prev:hover, .next:hover{
    background-color: #d4af37;
    opacity: .8;
    color: white;
}

@media all and (max-width: 500px){
    .gallery{
        height: auto;
        width: 100%;
        margin-top: 130px;
    }
    .activity-title{
        font-size: 2em;
    }
    .arabesque{
        width: 90%;
        height: 70px;
    }
    .left-arabesque, .right-arabesque{
        width: 45%;
    }
    .tableau{
        height: 300px;
        display: block;
        margin-top: 20px;
    }
    .description{
        font-size: 1em;
        height: auto;
    }
    .prev, .next{
        display: none;
    }
}
@media all and (min-width: 501px) and (max-width: 1000px){
    .gallery{
        height: auto;
        width: 100%;
        margin-top: 130px;
    }
    .activity-title{
        font-size: 2.5em;
    }
    .arabesque{
        width: 400px;
        height: 90px;
    }
    .left-arabesque, .right-arabesque{
        width: 50%;
    }
    .tableau{
        height: 380px;
        display: block;
        margin-top: 20px;
    }
    .description{
        font-size: 1em;
        height: auto;
    }
    .prev, .next{
        display: none;
    }
}

.lightroom{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0;
    z-index: -1500;
    transition: all .3s ease-out;
}
.chevalet{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.prev-light, .next-light, .cross-light{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 2em;
    transition: all .4s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    opacity: 1;
}
.next-light{
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev-light{
    left: 0;
}
.cross-light{
    top: 0;
    right: 0;
    font-size: 3em;
    margin-top: 0;
}
.prev-light:hover, .next-light:hover, .cross-light:hover{
    background-color: white;
    color: black;
}


footer{
    width: 100%;
    text-align: center;
    margin-top: 30px;
}


/*************************************************************************
 * ACTIVITY
 * Artiste
 */

.art1{
    background-image: url('../img/artiste/tab1.jpg');
}
.art2{
    background-image: url('../img/artiste/tab2.jpg');
}
.art3{
    background-image: url('../img/artiste/tab3.jpg');
}
.art4{
    background-image: url('../img/artiste/tab4.jpg');
}
.art5{
    background-image: url('../img/artiste/tab5.jpg');
}
.art6{
    background-image: url('../img/artiste/tab6.jpg');
}
.art7{
    background-image: url('../img/artiste/tab7.jpg');
}
.art8{
    background-image: url('../img/artiste/tab8.jpg');
}
.art9{
    background-image: url('../img/artiste/tab9.jpg');
}
.art10{
    background-image: url('../img/artiste/tab10.jpg');
}
.art11{
    background-image: url('../img/artiste/tab11.jpg');
}
.art12{
    background-image: url('../img/artiste/tab12.jpg');
}
.art13{
    background-image: url('../img/artiste/tab13.jpg');
}
.art14{
    background-image: url('../img/artiste/tab14.jpg');
}
.art15{
    background-image: url('../img/artiste/tab15.jpg');
}
.art16{
    background-image: url('../img/artiste/tab16.jpg');
}
.art17{
    background-image: url('../img/artiste/tab17.jpg');
}
.art18{
    background-image: url('../img/artiste/tab18.jpg');
}
.art19{
    background-image: url('../img/artiste/tab19.jpg');
}
.art20{
    background-image: url('../img/artiste/tab20.jpg');
}
.art21{
    background-image: url('../img/artiste/tab21.jpg');
}
.art22{
    background-image: url('../img/artiste/tab22.jpg');
}
.art23{
    background-image: url('../img/artiste/tab23.jpg');
}
.art24{
    background-image: url('../img/artiste/tab24.jpg');
}
.art25{
    background-image: url('../img/artiste/tab25.jpg');
}
.art26{
    background-image: url('../img/artiste/tab26.jpg');
}
.art27{
    background-image: url('../img/artiste/tab27.jpg');
}
.art28{
    background-image: url('../img/artiste/tab28.jpg');
}
.art29{
    background-image: url('../img/artiste/tab29.jpg');
}
.art30{
    background-image: url('../img/artiste/tab30.jpg');
}
.art31{
    background-image: url('../img/artiste/tab31.jpg');
}
.art32{
    background-image: url('../img/artiste/tab32.jpg');
}
.art33{
    background-image: url('../img/artiste/tab33.jpg');
}
.art34{
    background-image: url('../img/artiste/tab34.jpg');
}
.art35{
    background-image: url('../img/artiste/tab35.jpg');
}
.art36{
    background-image: url('../img/artiste/tab36.jpg');
}
.art37{
    background-image: url('../img/artiste/tab37.jpg');
}
.art38{
    background-image: url('../img/artiste/tab38.jpg');
}
.art39{
    background-image: url('../img/artiste/tab39.jpg');
}
.art40{
    background-image: url('../img/artiste/tab40.jpg');
}
.art41{
    background-image: url('../img/artiste/tab41.jpg');
}
.art42{
    background-image: url('../img/artiste/tab42.jpg');
}
.art43{
    background-image: url('../img/artiste/tab43.jpg');
}
.art44{
    background-image: url('../img/artiste/tab44.jpg');
}
.art45{
    background-image: url('../img/artiste/tab45.jpg');
}
.art46{
    background-image: url('../img/artiste/tab46.jpg');
}
.art47{
    background-image: url('../img/artiste/tab47.jpg');
}
.art48{
    background-image: url('../img/artiste/tab48.jpg');
}
.art49{
    background-image: url('../img/artiste/tab49.jpg');
}
.art50{
    background-image: url('../img/artiste/tab50.jpg');
}
.art51{
    background-image: url('../img/artiste/tab51.jpg');
}
.art52{
    background-image: url('../img/artiste/tab52.jpg');
}



/*************************************************************************
 * ACTIVITY
 * Décoratrice
 */

.dec1{
    background-image: url('../img/decoratrice/tab1.jpg');
}
.dec2{
    background-image: url('../img/decoratrice/tab2.jpg');
}
.dec3{
    background-image: url('../img/decoratrice/tab3.jpg');
}
.dec4{
    background-image: url('../img/decoratrice/tab4.jpg');
}
.dec5{
    background-image: url('../img/decoratrice/tab5.jpg');
}
.dec6{
    background-image: url('../img/decoratrice/tab6.jpg');
}
.dec7{
    background-image: url('../img/decoratrice/tab7.jpg');
}
.dec8{
    background-image: url('../img/decoratrice/tab8.jpg');
}
.dec9{
    background-image: url('../img/decoratrice/tab9.jpg');
}
.dec10{
    background-image: url('../img/decoratrice/tab10.jpg');
}
.dec11{
    background-image: url('../img/decoratrice/tab11.jpg');
}
.dec12{
    background-image: url('../img/decoratrice/tab12.jpg');
}
.dec13{
    background-image: url('../img/decoratrice/tab13.jpg');
}
.dec14{
    background-image: url('../img/decoratrice/tab14.jpg');
}
.dec15{
    background-image: url('../img/decoratrice/tab15.jpg');
}
.dec16{
    background-image: url('../img/decoratrice/tab16.jpg');
}
.dec17{
    background-image: url('../img/decoratrice/tab17.jpg');
}
.dec18{
    background-image: url('../img/decoratrice/tab18.jpg');
}
.dec19{
    background-image: url('../img/decoratrice/tab19.jpg');
}
.dec20{
    background-image: url('../img/decoratrice/tab20.jpg');
}
.dec21{
    background-image: url('../img/decoratrice/tab21.jpg');
}
.dec22{
    background-image: url('../img/decoratrice/tab22.jpg');
}
.dec23{
    background-image: url('../img/decoratrice/tab23.jpg');
}
.dec24{
    background-image: url('../img/decoratrice/tab24.jpg');
}
.dec25{
    background-image: url('../img/decoratrice/tab25.jpg');
}
.dec26{
    background-image: url('../img/decoratrice/tab26.jpg');
}
.dec27{
    background-image: url('../img/decoratrice/tab27.jpg');
}
.dec28{
    background-image: url('../img/decoratrice/tab28.jpg');
}
.dec29{
    background-image: url('../img/decoratrice/tab29.jpg');
}
.dec30{
    background-image: url('../img/decoratrice/tab30.jpg');
}
.dec31{
    background-image: url('../img/decoratrice/tab31.jpg');
}
.dec32{
    background-image: url('../img/decoratrice/tab32.jpg');
}
.dec33{
    background-image: url('../img/decoratrice/tab33.jpg');
}
.dec34{
    background-image: url('../img/decoratrice/tab34.jpg');
}
.dec35{
    background-image: url('../img/decoratrice/tab35.jpg');
}


/*************************************************************************
 * ACTIVITY
 * Coco
 */

.coc1{
    background-image: url('../img/coco/tab1.jpg');
}
.coc2{
    background-image: url('../img/coco/tab2.jpg');
}
.coc3{
    background-image: url('../img/coco/tab3.jpg');
}
.coc4{
    background-image: url('../img/coco/tab4.jpg');
}
.coc5{
    background-image: url('../img/coco/tab5.jpg');
}
.coc6{
    background-image: url('../img/coco/tab6.jpg');
}
.coc7{
    background-image: url('../img/coco/tab7.jpg');
}
.coc8{
    background-image: url('../img/coco/tab8.jpg');
}
.coc9{
    background-image: url('../img/coco/tab9.jpg');
}
.coc10{
    background-image: url('../img/coco/tab10.jpg');
}
.coc11{
    background-image: url('../img/coco/tab11.jpg');
}
.coc12{
    background-image: url('../img/coco/tab12.jpg');
}
.coc13{
    background-image: url('../img/coco/tab13.jpg');
}
.coc14{
    background-image: url('../img/coco/tab14.jpg');
}



/*************************************************************************
 * LEGAL
 * Mentions légales
 */

.mentionslegales{
    margin-top: 150px;
    font-family: sans-serif;
}


/*************************************************************************
 * LEGAL
 * Contact
 */

.contact-title{
    color:black;
    font-size: 3em;
    text-align: center;
    margin: 0;
}

.contact-info{
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.ebauche{
    width: 400px;
    height: 300px;
    background-image: url('../img/miscellanous/aquarelle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.donnees-container{
    width: 400px;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.telephone-logo, .mail-logo{
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .7;
}
.telephone-logo{
    background-image: url('../img/miscellanous/telephone.png');
}
.mail-logo{
    background-image: url('../img/miscellanous/mail.png');
}

.telephone-detail, .mail-detail{
    margin-left: 20px;
    color: black;
    font-size: 1.2em;
}

@media all and (max-width: 450px){
    .contact-info{
        width: 100%;
    }

    .ebauche{
        width: 100%;
        height: 300px;
    }

    .donnees-container{
        width: 100%;
        height: 100px;
    }

    .telephone-logo, .mail-logo{
        width: 60px;
        height: 60px;
    }
    .telephone-detail, .mail-detail{
        font-size: 1em;
    }
}


/*************************************************************************
 * ANIMATIONS
 */

@keyframes goleft {
    0% {
        transform: translateX(0);
        opacity: 1;
        z-index: 100;
    }
    99% {
        transform: translateX(-100px);
        opacity: 0;
        z-index: -1000;
    }
    100%{
        transform: translateX(0);
        opacity: 0;
        z-index: -1000;
    }
}
@keyframes goright {
    0% {
        transform: translateX(0);
        opacity: 1;
        z-index: 100;
    }
    99% {
        transform: translateX(100px);
        opacity: 0;
        z-index: -1000;
    }
    100%{
        transform: translateX(0);
        opacity: 0;
        z-index: -1000;
    }
}
@keyframes godown {
    from {
        transform: translateY(0);
        opacity: 1;
        z-index: 1000;
    }
    to {
        transform: translateY(20px);
        opacity: 0;
        z-index: -1000;
    }
}

@keyframes reveal-lateral {
    from {
        transform: translateX(0);
        opacity: 1;
        z-index: 10;
    }
    to {
        transform: translateX(-300px);
        opacity: 0;
        z-index: -10;
    }
}

@keyframes reveal-vertical {
    from {
        transform: translateY(0);
        opacity: 1;
        z-index: 10;
    }
    to {
        transform: translateY(300px);
        opacity: 0;
        z-index: -10;
    }
}

@keyframes menu-clic {
    0% {
        transform: rotateY(0);
        background-image: url("../img/miscellanous/menu.png");
        opacity: 1;
    }
    49%{
        transform: rotateY(90deg);
        background-image: url("../img/miscellanous/menu.png");
        opacity: 0;
    }
    50%{
        transform: rotateY(-90deg);
        background-image: url("../img/miscellanous/cross.png");
        opacity: 0;
    }
    51%{
        opacity: 1;
    }
    100% {
        transform: rotateY(0deg);
        background-image: url("../img/miscellanous/cross.png");
        opacity: 1;
    }
}

@keyframes cross-clic {
    0% {
        transform: rotateY(0);
        background-image: url("../img/miscellanous/cross.png");
        opacity: 1;
    }
    49%{
        transform: rotateY(90deg);
        background-image: url("../img/miscellanous/cross.png");
        opacity: 0;
    }
    50%{
        transform: rotateY(-90deg);
        background-image: url("../img/miscellanous/menu.png");
        opacity: 0;
    }
    51%{
        opacity: 1;
    }
    100% {
        transform: rotateY(0deg);
        background-image: url("../img/miscellanous/menu.png");
        opacity: 1;
    }
}

@keyframes fade{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}


/*************************************************************************
 * FONT FAMILIES
 */

@font-face {
	font-family: "AlexBrush";
	src: url("../fonts/AlexBrush-Regular.ttf") format("truetype");
}
@font-face {
	font-family: "Italiana";
	src: url("../fonts/Existence-Light.ttf") format("truetype");
}