.preloadingPageDiv
{
    z-index: 5;
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:#fbfbfb;
    /* display:none; */
    /* background-image: linear-gradient(-120deg, #CCE8EA 0%, #FFD9EC 65%, #CCE8EA  100%); */

}

.preloadingPageDiv.hidden 
{
    animation: fadeout 2.6s;
    animation-timing-function: cubic-bezier(0.86, 0, 0.3, 1);
    animation-fill-mode: forwards;
}


@keyframes fadeout
{
    100%
    {
        opacity: 0;
        transform: scale(1.3);
        visibility: hidden;
    }
} 

.contactLinkDiv
{
    position:fixed;
    left:0%;
    justify-content: center;
    align-items: center;
    height:100vh;
    display:flex;
    z-index:1;
}


nav ul
{
    list-style: none;
    font-size: 1.5vmin;
}
nav ul li
{
    padding:0.1rem;
    margin: 2rem 0.7rem;
    writing-mode: vertical-rl;
}

nav ul li a
{
    color:black;
    font-family: 'Prospec';
    font-size: 1.6vmin;
    text-shadow: 0em 0em 0.1em rgba(0, 0, 0, 0.587);
}

/* h4
{
   background-image: linear-gradient(90deg, rgba(94, 114, 235, 1) 0%, rgba(255, 145, 144, 1) 56%, rgba(254, 193, 149, 1) 100%);
    -webkit-background-clip: text;
} */

nav ul li a:hover
{
    color:#ee2c7a;
    text-shadow: 0em 0em 0.1em #ee2c7a;
    /* animation:double 1s cubic-bezier(0.76, 0, 0.3, 1)  alternate; */
}



.iconify.nav
{
    transform: rotate(90deg);
    padding-bottom: 5px;
}

/* -------------------------------------------- */

@media screen and (max-width:800px)
{
    .contactLinkDiv
        {
            position:fixed;
            z-index: 1;
            display:flex;
            align-items: flex-start;
            /* background-color: #1A2; */
            top:0;
            width:100vw;
            height:10vh;
        }
        nav ul
        {
            list-style: none;
            background: rgba(207, 207, 207, 0.232);
            backdrop-filter: blur( 5px );
            -webkit-backdrop-filter: blur( 5px );
            width:100vw;
            display:flex;
            justify-content:space-between;
        }
        nav ul li
        {
            display:inline-block;
            padding:0.1rem;
            margin: 0.7rem 0.7rem;
            writing-mode:horizontal-tb;
        }
        
        nav ul li a
        {
            color:#000;
            font-size: 3vmin;
            display:flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .contact_me_button
        {
            display:none;
        }
        .iconify.nav
        {
            transform: rotate(0);
            padding-bottom: 8px;
        }
}
.presentation
{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    position: relative;
    font-family: 'Prospec';
    /* color: rgb(139, 229, 217); */
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-size: 6vmin;
    justify-content: center;
    padding-right: 35%;
    padding-left: 5%;
    /* background-color:#2A3; */
}

.mainTitle
{
    position:relative;
    display: flex;
    flex-direction: column;
    padding:1rem;
    height:15vh;
    justify-content:space-between;
}

.alainTaiText 
{
    text-shadow: 0em 0em 10px rgba(0, 0, 0, 0.6);
}


.creativeDevText
{
    font-family:  'ProspecLight' ;
    padding-top:2rem;
    color:transparent;
    -moz-text-stroke:2px black;
    -webkit-text-stroke:2px black;
    background-image:url(assets/images/Black.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
}


@keyframes back 
{
    0%
    {
        background-position: -2000px 0;
    }
    100%
    {
        background-position: 0 0;
    }

}

.drapeau
{
    width:18vmin;
}

.scrollToNavigate{
    position:absolute;
    display: flex;
    width: 15em;
    justify-content: center;
    font-size: 1.2rem;
    bottom:1%; 
    left: calc(50% - 7.5em);
    animation:doubleClickMessage 2s cubic-bezier(0.76, 0, 0.3, 1)  infinite alternate;
}


@keyframes doubleClickMessage
{
    from 
    {
        opacity:1;
        transform:scale(1);
     }
     to 
   {
        opacity:0;
        transform: scale(1.1)
   }
}



.scrollView
{
    position:absolute;
    display: flex;
    justify-content: center;
    height:9rem;
    width: 3rem;
    bottom:0;
    left: calc(50% - 1.5rem);
    animation: scrollSvgLoop 2s cubic-bezier(0.76, 0, 0.3, 1)  infinite alternate;
}

@keyframes scrollSvgLoop 
{
    from 
    {
        transform:scale(0.4);
     }
     to 
   {
       transform:scale(0.5)
   }
}

.contact_me_button
{

    display:flex;
    padding-top:1rem;
}


.contactMe_Text
{
    color:black;
    font-size: 1.6vmin;
    padding:1rem;
    border:1.5px solid #000;
    border-radius: 40px;
    text-shadow: 0em 0em 0.1em rgba(0, 0, 0, 0.483);
    transition:0.5s;
}

.contactMe_Text:hover
{
    background-color:black;
    color:white;
    transform:scale(0.92);
    border:none;
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0,1.22,.83,.67);
    box-shadow: 0em 0em 1em rgba(0, 0, 0, 0.483);

}

.contactMe_Text:active
{
    background-color:black;
    color:white;
    transform:scale(0.96);
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0,1.22,.83,.67);
}

.iconify.whatsappIcon
{
    transform:scale(1.4);
    padding:0  0.25rem;
}

.section
{
    display: flex;
    align-items: center;
    height: 100vh;
    font-family: 'Prospec';
    /* color: rgb(139, 229, 217); */
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-size: 7vmin;
    padding-left: 10%;
    padding-right: 10%;
}

section:nth-child(odd)
{
    justify-content: flex-end;
}





/* --------------------------------------------------- */



@media screen and (max-width:1400px) {
    .presentation {
        display:flex;
        justify-content:center;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
    }
    .mainTitle
    {
        align-items: center;
    }
}

@media screen and (max-width:800px) {
    
    .contact_me_button
    {
        display:flex;
        padding-top:0.5rem;
    }
    .contactMe_Text
    {
        font-size: 0.9rem;
        padding: 0.6rem;
        border:1.5px solid #000;
        border-radius: 40px;
        text-shadow: 0em 0em 0em;
    }
    .iconify.whatsappIcon
    {
        transform:scale(1.4);
        padding: 0 0.25rem;
    }
    .creativeDevText
    {
        -moz-text-stroke:0.5px black;
        -webkit-text-stroke:0.5px black;
    }
  }


@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { 
.creativeDevText
{
    text-shadow: 0em 0em 15px rgba(0, 0, 0, 0.512);
}
}
.section1.work1.projects
{
    display: flex;
    flex-direction:column;
    align-items: flex-end;
    justify-content: center;
    height: 100vh;
    font-family: 'Prospec';
    /* color: rgb(139, 229, 217); */
    color: rgb(0, 0, 0);
    font-size: 4vmin;
    padding-left: 5%;
    padding-right: 5%;
    padding-top:10%;
}

.section.work
{
    display: flex;
    flex-direction:column;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100vh;
    font-family: 'Prospec';
    /* color: rgb(139, 229, 217); */
    color: rgb(0, 0, 0);
    font-size: 4vmin;
    padding-left: 5%;
    padding-right: 5%;
    padding-top:5%;
}


.myProjectText
{
    font-family:  'Prospec' ;
    color:transparent;
    -moz-text-stroke:2px black;
    -webkit-text-stroke:2px black;
    background-image:url(assets/images/Black.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
}

.textProjectsDiv
{
    display: flex;
    flex-direction:column;
    justify-content: flex-end;
    align-items: flex-end;
    /* background-color:#1A2; */
    padding-top:5%;
}
/*---------------*/

.singleline
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
}

.textProjectsTest
{
    font-family: 'CharlesElegant';
    text-transform: lowercase;
    font-size:2vmin;
    margin: 0.2rem 0;
    letter-spacing:2.5px;
    transition:0.2s;
    color:#000;
}

.colorBox
{
    height:25px;
    width:0px;
    margin-left:10px;
    /* background: linear-gradient(45deg, red, blue); */
    background: linear-gradient(90deg, #ee2c7a 0%, #fc7566  100%);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition:0.2s;
}

.singleline:hover > .colorBox
{    width:100px;
     transition:0.15s;
     animation-timing-function: cubic-bezier(.17,1.34,.9,.59);

}
/*---------------*/

.textProjects
{
    font-family: 'CharlesElegant';
    text-transform: lowercase;
    font-size:2vmin;
    margin: 0.2rem 0;
    letter-spacing:2.5px;
    transition:0.2s;
}

.textProjectsTest:hover > .spanProjectGradientText 
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #000000;
    -moz-text-stroke:0.5px #000000;
    background-image:url(assets/images/Black.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}

.textProjectsTest:hover > .pointProjects
{
    color:black;
    -webkit-text-stroke:2px black;
    transition:0.15s;
}

.textProjectsTest:hover > .spanProjectGradientTextPurple
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #000000;
    -moz-text-stroke:0.5px #000000;
    background-image:url(assets/images/Black.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}


.textProjectsTest::first-letter
{
    text-transform: uppercase;
}

.spanProjectGradientText
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #ee2c7a;
    -moz-text-stroke:0.5px rgb(238, 44, 122);
    background-image:url(assets/images/Pink.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}

.pointProjects
{
    font-size: 3vmin;
    color:transparent;
    /* background-image: linear-gradient(0deg, rgb(5, 37, 222) 0%, rgb(252, 117, 102) 56%, rgba(254, 193, 149, 1) 100%); */
    background-image: radial-gradient(circle at center, rgb(238, 44, 122) 0%, #fc7566 56%, rgb(251, 155, 86) 80%);
    -webkit-background-clip: text;
    transition:0.15s;
}


.spanProjectGradientTextPurple
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px RGBA(145,42,151,1);
    -moz-text-stroke:0.5px RGBA(145,42,151,1);
    background-image:url(assets/images/Purple.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}


/*-------------------------------------*/
@media screen and (max-width: 1400px) 
{
    .section.work
    {
        font-size: 4vmin;
    }
}

@media screen and (max-width: 800px) 
{
    .section.work
    {
        align-items: center;
        justify-content: flex-start;
        font-size: 8vmin;
    }
    .textProjectsDiv
    {
        display: flex;
        flex-direction:column;
        justify-content: center;
        align-items: flex-start;
        padding-top:10%;
    }
    .textProjectsTest
    {
        font-family: 'CharlesElegant';
        text-transform: lowercase;
        font-size:3.4vmin;
        margin: 0.5rem 0;
        letter-spacing:2.5px;
        transition:0.2s;
        color:#000;
    }
    .spanProjectGradientText
    {
        font-size: 2.9vmin;
    }
    .spanProjectGradientTextPurple
    {
        font-size: 2.5vmin;
    }
    .pointProjects
    {
        font-size: 5vmin;
    }
}



/*--------------------------------chrome only css*/
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { 
    .myProjectText
    {
        text-shadow: 0em 0em 0.8em rgba(0, 0, 0, 0.558);
    }
  }

.pointProjectsLab
{
    font-size: 3vmin;
    color:transparent;
    /* background-image: linear-gradient(0deg, rgb(5, 37, 222) 0%, rgb(252, 117, 102) 56%, rgba(254, 193, 149, 1) 100%); */
    background-image: radial-gradient(circle at center, #2cb7ee 0%, #66fcea 56%, rgb(251, 155, 86) 80%);
    -webkit-background-clip: text;
}

.spanProjectGradientTextTurquoise
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #22767b;
    -moz-text-stroke:0.5px #22767b;
    background-image:url(assets/images/Turquoise.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}

.spanProjectGradientTextBlue
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #0074a2;
    -moz-text-stroke:0.5px #0074a2;
    background-image:url(assets/images/Blue.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}

.textProjectsTestLab:hover > .pointProjectsLab
{
    color:black;
    -webkit-text-stroke:2px black;
    transition:0.15s;
}

.textProjectsTestLab:hover > .spanProjectGradientTextTurquoise
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #000000;
    -moz-text-stroke:0.5px #000000;
    background-image:url(assets/images/Black.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}

.textProjectsTestLab:hover > .spanProjectGradientTextBlue
{
    color:transparent;
    font-size: 1.5vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #000000;
    -moz-text-stroke:0.5px #000000;
    background-image:url(assets/images/Black.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.15s;
}

.mouseInfo
{
    border-radius:50px;
    font-family: 'Prospec';
    position:fixed;
    /* top:685px;
    left:884px; */
    background: rgba(121, 121, 121, 0.318);
    box-shadow: 0 0px 40px 0 rgba(255, 255, 255, 0.365);
    backdrop-filter: blur( 13px );
    -webkit-backdrop-filter: blur( 13px );

}




/*-------------------------------------------------------*/
.textProjectsTestLab
{
    font-family: 'CharlesElegant';
    text-transform: lowercase;
    font-size:2vmin;
    margin: 0.2rem 0;
    letter-spacing:2.5px;
    transition:0.2s;
    color: #000;
}

.textProjectsTestLab::first-letter
{
    text-transform: uppercase;
}

.colorBoxLab
{
    height:25px;
    width:0px;
    margin-left:10px;
    /* background: linear-gradient(45deg, red, blue); */
    background: linear-gradient(90deg, #2cb7ee 0%, #66fcea  100%);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition:0.3s;
}

.singleline:hover > .colorBoxLab
{    width:100px;
     transition:0.2s;
     animation-timing-function: cubic-bezier(.17,1.34,.9,.59);
}

.movieEditingDiv
{
    /* background-color:#1AB; */
    display: flex;
    flex-direction:row;
    padding-top:3.5%;
}

.block
{
    background-color:#FFF;
    padding:2rem;
    margin:30px 0px 30px 30px;
    border-radius: 30px;
    width: 12rem;
    background: rgba( 255, 255, 255, 0.15 );
    backdrop-filter: blur( 14.5px );
    -webkit-backdrop-filter: blur( 14.5px );
    -moz-filter: blur(14.5px);
    -o-filter: blur(14.5px);
}

.blockText
{
    font-size: 2rem;
    padding-bottom:1rem;
    text-shadow: 0em 0em 0.5em rgba(0, 0, 0, 0.307);
}

.technologyUsedDiv
{
    background-color:#FFF;
    padding:2rem;
    width:calc(24rem + 30px + 2rem + 2rem);
    border-radius: 30px;
    background: rgba( 255, 255, 255, 0.15 );
    backdrop-filter: blur( 14.5px );
    -webkit-backdrop-filter: blur( 14.5px );
    -moz-filter: blur(14.5px);
    -o-filter: blur(14.5px);
}
/*---------------*/


@media screen and (min-width:800px) and (max-width:1400px)
{
    .block
{

    width: 11rem;
}

.blockText
{
    font-size: 1.5rem;
    padding-bottom:1rem;
    text-shadow: 0em 0em 0.5em rgba(0, 0, 0, 0.307);
}

.technologyUsedDiv
{
    background-color:#FFF;
    padding:2rem;
    width:calc(22rem + 30px + 2rem + 2rem);
    border-radius: 30px;
    background: rgba( 255, 255, 255, 0.15 );
    backdrop-filter: blur( 14.5px );
    -webkit-backdrop-filter: blur( 14.5px );
    -moz-filter: blur(14.5px);
    -o-filter: blur(14.5px);
}
}


@media  screen and (max-width:800px)
{
    .textProjectsTestLab
    {
        font-family: 'CharlesElegant';
        text-transform: lowercase;
        font-size:3.4vmin;
        margin: 0.5rem 0;
        letter-spacing:2.5px;
        transition:0.2s;
        color:#000;
    }
    .spanProjectGradientTextTurquoise
    {
        font-size: 2.9vmin;
    }
    .spanProjectGradientTextBlue
    {
        font-size: 2.5vmin;
    }
    .pointProjectsLab
    {
        font-size: 5vmin;
    }
/*-----------------------------------------------------------------*/
    .movieEditingDiv
    {
        /* background-color:#1AB; */
        display: flex;
        flex-direction:row;
        padding-top:3.5%;
    }

    .block
    {
        padding:0.5rem 0rem 0.5rem 0.7rem;
        margin:10px 10px 20px 10px;
        border-radius: 20px;
        width:38vw;
        background: rgba( 255, 255, 255, 0.15 );
        backdrop-filter: blur( 14.5px );
        -webkit-backdrop-filter: blur( 14.5px );
        -moz-filter: blur(14.5px);
        -o-filter: blur(14.5px);
    }

    .blockText
    {
        font-size: 1rem;
        padding-bottom:0.2rem;
        text-shadow: 0em 0em 0.5em rgba(0, 0, 0, 0.307);
    }

    .technologyUsedDiv
    {
        background-color:#FFF;
        padding: 1rem 0.7rem 0.5rem 0.7rem;
        border-radius: 20px;
        width: calc(76vw + 20px );
        background: rgba( 255, 255, 255, 0.15 );
        backdrop-filter: blur( 14.5px );
        -webkit-backdrop-filter: blur( 14.5px );
        -moz-filter: blur(14.5px);
        -o-filter: blur(14.5px);
    }
}


.singlelineMe
{
    /* background-color: #2A3; */
    width:34rem;
    padding-top:3%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.stayInTouchDiv
{
    background-color:#FFF;
    display: flex;
    flex-direction: column;
    margin-top:5%;
    padding:2rem;
    width:calc(34rem - 2rem - 2rem);
    border-radius: 30px;
    background: rgba( 255, 255, 255, 0.15 );
    backdrop-filter: blur( 14.5px );
    -webkit-backdrop-filter: blur( 14.5px );
    -moz-filter: blur(14.5px);
    -o-filter: blur(14.5px);
}

.meProjectsTest
{
    font-family: 'CharlesElegant';
    text-transform: lowercase;
    font-size:2vmin;
    margin: 0.2rem 0;
    letter-spacing:2.5px;
    transition:0.2s;
    color:#000;
    /* background-color: #2AB; */
    margin-top:1.5rem;
    text-align: justify;
}

.meProjectsTest::first-letter
{
    text-transform: uppercase;
}

.spanProjectGradientTextMe
{
    color:transparent;
    font-size: 2vmin;
    -webkit-background-clip: text;
    -webkit-text-stroke:0.5px #ee2c7a;
    -moz-text-stroke:0.5px rgb(238, 44, 122);
    background-image:url(assets/images/Pink.svg);
    -webkit-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-animation: back 15s linear infinite alternate;
    transition:0.2s;
}

.uperLink
{
    color:black;
    font-size: 1.5vmin;
    display:flex;
    padding: 0.5rem 0 0.5rem 0;
    transition:0.3s;
}

.uperLink:hover
{
    color:#ee2c7a;
    transition:0.2s;
    text-shadow: 0em 0em 0.1em #ee2c7a;
}

.stayInTocuhLink
{
    margin-left:5%;
    font-family: 'CharlesElegant';
    text-transform: lowercase;
}


@media screen and (min-width:1060px) and (max-width:1400px)
{
    .singlelineMe
    {
        width:28rem;
        /* background-color: #2A3; */
    }
    .stayInTouchDiv
    {
        width: calc(28rem - 4rem)
    }
}

@media screen and (max-width:800px)
{
    .singlelineMe
    {
        padding-top:5vh;
        display: flex;
        align-items: flex-end;
        justify-content:center;
        flex-direction: column;
        width:80vw;
        
    }
    .stayInTouchDiv
    {
        background-color:#FFF;
        display: flex;
        flex-direction: column;
        margin-top:5%;
        padding:0.5rem 0rem 0.5rem 0.7rem;
        width:80vw ;
        border-radius: 20px;
        background: rgba( 255, 255, 255, 0.15 );
        backdrop-filter: blur( 14.5px );
        -webkit-backdrop-filter: blur( 14.5px );
        -moz-filter: blur(14.5px);
        -o-filter: blur(14.5px);
    }
    .meProjectsTest
    {
        font-size: 3.5vmin;
    }
    .uperLink
    {
        color:black;
        font-size: 2.5vmin;

    }
}


@font-face {
    font-family: 'Prospec';
    src: url(./font/Prospec.otf);
}

@font-face {
    font-family: 'ProspecLight';
    src: url(./font/ProspecLight.otf);
}

@font-face {
    font-family: 'CharlesElegant';
    src: url(./font/CharlesElegant.otf);
}

*
{
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body
{
    background-color:#c0c8cf;
    
}

.webgl
{
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.newicons{
    width: 40px !important;
}

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