@font-face {
    font-family: Cabin-SemiBold;
    src: url(../fonts/Cabin-SemiBold.otf);
}

@font-face {
    font-family: WASK_NEW;
    src: url(../fonts/WASK_NEW.OTF);
}

@font-face {
    font-family: WASK_NEW_BOLD;
    src: url(../fonts/WASK_NEW_BOLD.OTF);
}

@font-face {
    font-family: segoeuil;
    src: url(../fonts/segoeuil.ttf);
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 100%;
}

html {
    font-family: "helvetica neue", sans-serif;
}

.welcome {
    height: 100vh;
    width: 100%;
    /*	border: solid red 3px;*/
    display: flex;
    flex-direction: column;
    position: relative;
}

/* LOADER */

#loader
{
    position: fixed;
    z-index: 100000;
    width: 100%;
    height: 100%;
    background: #FFC96A;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loader p 
{
    position: relative;
    bottom: 100px;
    text-align: center;
    color: white;
    font-family: Cabin-SemiBold;
    text-transform: uppercase;
    font-size: 1.2em;
}

@media screen and (max-width: 500px) {
    #loader img 
    {
        height: 83vw;   
    }
}



/* HEADER*/

.nav {
    text-align: center;
    /*	border: 1px solid red;*/
    height: 100px;
    line-height: 100px;
    background-color: #242424;
    z-index: 1000;
}

.menu {
    margin: 0 0 0 0;
}

.menu a {
    text-decoration: none;
    color: white;
    margin: 0 1.2em 0 1.2em;
    line-height: 100px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

label {
    margin: 0 0 0 0;
    font-size: 25px;
    line-height: 100px;
    display: none;
    color: white;
}

#toggle {
    display: none;
}

@media only screen and (max-width: 700px) {
    label {
        display: block;
        cursor: pointer;
    }
    .menu {
        text-align: center;
        width: 100%;
        background-color: #242424;
        display: none;
    }
    .menu a {
        display: block;
        margin: 0
    }
    #toggle:checked+.menu {
        display: block;
    }
}


/* PAGE D'ACCUEIL */

.view-welcome {
    width: 100%;
    height: 100%;
    /*    border: solid yellow 3px;*/
    z-index: 100;
}

.logo {
    height: 60%;
    width: 90%;
    /*	border: 1px solid black;*/
    margin: 1em auto 1em auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description {
    font-family: Cabin-SemiBold;
    text-transform: uppercase;
    color: #C9E1E6;
    text-align: center;
    font-size: 3em;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 10px;
}

@media screen and (max-width: 550px) {
    .description {
        font-size: 200%;
    }
}

@media screen and (max-height: 690px) {
    .description {
        font-size: 150%;
    }
}

svg {
    height: 80%;
    color: #FF665A;
}


/**************************** TITLE *************************/

.title {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title p:nth-child(1) {
    font-family: WASK_NEW_BOLD;
    font-size: 3.5em;
    color: #FFDD3C;
    margin: 0;
    position: relative;
    right: 5.5em;
    top: 0.5em;
}

.title p:nth-child(2) {
    font-family: WASK_NEW_BOLD;
    font-size: 8em;
    color: #FFDD3C;
    margin: 0;
}

@media screen and (max-width: 880px) {
    .title p:nth-child(1) {
        font-family: WASK_NEW_BOLD;
        font-size: 2.5em;
        color: #FFDD3C;
        margin: 0;
        position: relative;
        left: 0;
        top: 0.5em;
    }
    .title p:nth-child(2) {
        font-size: 5em;
        color: #FFDD3C;
        margin: 0.3em 0 0 0;
        text-align: center;
        line-height: 0.9em;
    }
}


/************* ARTICLE *******************/

.article_container {
    height: auto;
    /*90vh*/
    /*	border: 1px solid black;*/
    width: 75vw;
    margin: 5em auto 5em auto;
}

.img_box_left {
    width: 30%;
    height: 45em;
    margin: 1em 1em 1em 1em;
    display: flex;
    flex-direction: column;
    /*	justify-content: center;*/
    /*		border: solid black 1px;*/
}

.txt_box_right {
    width: 65%;
    height: auto;
    margin: 1em 1em 1em 1em;
    /*		border: solid black 1px;*/
    text-align: justify;
}

.txt_box_right h3 {
    color: #FFDD3C;
    font-family: segoeuil;
    font-size: 3em;
    margin: 0 0 1em 0;
}

.txt_box_right p {
    font-family: segoeuil;
    font-size: 1.3em;
}

.up_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.img_article:nth-child(1) {
    width: 300px;
    height: 300px;
    margin: 0em 0em 1em 0em;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 1em auto 1em auto;
}

.img_article:nth-child(2) {
    width: 300px;
    height: 300px;
    margin: 1em 0em 1em 0em;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 1em auto 1em auto;
}

.down_box {
    height: 15em;
    margin: 1em 1em 1em 1em;
    /*	border: 1px solid black;*/
    background-image: url(../img/img_bottom.jpg);
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 1317px) {
    .up_box {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .txt_box_right {
        width: 100%;
        height: auto;
        margin: 1em 1em 1em 1em;
        /*	border: solid black 1px;*/
        text-align: justify;
    }
    .img_box_left {
        display: none;
    }
    .txt_box_right h3 {
        color: #FFDD3C;
        font-family: segoeuil;
        font-size: 2em;
        margin: 0 0 1em 0;
    }
    .txt_box_right p {
        font-family: segoeuil;
        font-size: 1.7em;
    }
}

@media screen and (max-width: 600px) {
    .txt_box_right p {
        font-family: segoeuil;
        font-size: 1em;
    }
}

@media screen and (min-width: 2100px) {
    .img_article:nth-child(1) {
        width: 400px;
        height: 400px;
        margin: 0em 0em 1em 0em;
        background-image: url(../img/bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin: 1em auto 1em auto;
    }
    .img_article:nth-child(2) {
        width: 400px;
        height: 400px;
        margin: 1em 0em 1em 0em;
        background-image: url(../img/bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin: 1em auto 1em auto;
    }
}


/******************* STATS *******************/

.stats_container {
    margin: 0 auto 0 auto;
    width: 75vw;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.insta_followers {
    /*	border: 1px solid black;*/
    height: auto;
    width: 300px;
    margin: 5em 3em 2.5em 3em;
}

.youtube_followers {
    /*	border: 1px solid black;*/
    height: auto;
    width: 300px;
    margin: 5em 3em 5em 3em;
}

.item.instagram .count {
    display: none;
}

.nbr_follow {
    text-align: center;
    font-size: 4em;
    margin: 0em 0 0.1em 0;
}

.insta_followers p {
    text-align: center;
    margin: 0;
}

.youtube_followers p {
    text-align: center;
    margin: 0;
}


/***************** INSTAGRAM ********************/

.instagram_container {
    margin: 0 auto 0 auto;
    width: 75vw;
    /*	border: 1px solid black;*/
}

@media screen and (min-width: 1660px) {
    .instagram_container {
        width: 1245px;
    }
}

.instagram_container h2 {
    text-align: center;
    color: #FFDD3C;
    font-family: segoeuil;
    font-size: 3em;
    margin: 1.5em 0 1em 0;
}

.insta_display {
    display: flex;
    justify-content: center;
}


/* FOOTER */

footer {
    margin-top: 5em;
    width: 100%;
}

.social_network {
    text-align: center;
    margin: 0 0 0.3em 0;
}

.social_network i {
    text-align: center;
    margin: 0 0.5em 0 0.5em;
}

.powered {
    font-family: segoeuil;
    background-color: #242424;
    color: white;
    text-align: center;
    padding: 0.4em 0 0.4em 0;
}