* {
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(assets/img/circles.png);
    background-repeat: no-repeat;
    background-size: cover;
}
    /*toolbar*/
    body::-webkit-scrollbar {
        width: 1em;
        background-color: rgba(0,0,0,0);
    }

    body::-webkit-scrollbar-thumb {
        background-color: #0F9DE8;
        outline: 2px solid slategrey;
    }

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #E80F9D;
}


tr:hover {
    background-color: #0F9DE8;
    color: white;
    border-bottom: 1px solid white;
}

th {
    background-color: #E80F9D;
    color: white;
}

.whole_wrapper {
    width: 100%;
}

.wrapper {
    max-width: 1280px;
    width: 85%;
    margin: 0 auto;
    padding: 20px 25px;
}

.header > * {
    z-index: 2;
}

.header header {
    display: table;
    margin: 0 auto;
    margin-bottom: 100px;
    width: 100%;
    max-width: 1280px;
    font-family: 'Roboto Condensed', sans-serif;
    padding-bottom: 20px;
    height: 20px;
    vertical-align: middle;
    justify-content: space-between;
    position: relative;
    font-size: 18px;
}

    .header header .logo {
        padding-top: 40px;
        padding-bottom: 10px;
        padding-right: 20px;
        display: inline-block;
        width: 10%;
        float: left;
        z-index: 1;
        margin: auto;
    }

    .header header .join {
        padding-top: 45px;
        width: 10%;
        display: inline-block;
        margin: auto;
    }


    .header header .nav {
        max-width: 1280px;
        width: 80%;
        text-align: right;
        vertical-align: middle;
        margin: auto;
        position: fixed;
        background-color: white;
        background-attachment: fixed;
        top: 0;
        border-bottom: 1px solid #E80F9D;
    }

        .header header .nav nav ul {
            list-style-type: none;
            position: center;
        }


            .header header .nav nav ul li {
                margin-top: 5px;
                padding-top: 50px;
                padding-bottom: 20px;
                padding-left: 5px;
                padding-right: 5px;
                cursor: pointer;
                transition: all 0.2s linear;
                float: left;
                list-style: none;
                text-align: center;
                width: 15%;
            }


                .header header .nav nav ul li:hover {
                    padding-top: 50px;
                    border-top: 6px solid #E80F9D;
                }

                .header header .nav nav ul li.active {
                    margin-top: 0;
                    border-top: 6px solid #E80F9D;
                }

                .header header .nav nav ul li.after {
                    content: "";
                    display: table;
                    clear: both;
                }

                .header header .nav nav ul li a {
                    position: relative;
                    display: block;
                    text-decoration: none;
                    text-transform: uppercase;
                    color: inherit;
                }

    .header header .join .btn_join {
        text-decoration: none;
        color: #000;
        border: 2px solid #9DE80F;
        padding: 10px;
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.2s linear;
        float: right;
    }

        .header header .join .btn_join:hover {
            border: 3px solid #9DE80F;
            color: #9DE80F;
        }


.flex {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.flex-item {
    font-size: 18px;
    line-height: 1.5;
    color: purple;
    background: purple;
    max-width: 1280px;
    margin: auto;
    box-sizing: border-box;
    width: calc(33.33% - 10px);
    margin: 5px;
    padding: 25px;
}

    .flex-item.w66 {
        width: calc(66.66% - 10px);
    }

.logo2 {
    display: none;
}

#burger {
    display: none;
}

#quit {
    display: none;
}

#links {
    display: none;
}

    #links a {
        display: none;
    }

/*------------scroller----------*/

.scroller {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

    .scroller .part1 {
        width: 50%;
        margin: auto;
    }

        .scroller .part1 .txt1 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 24px;
            color: black;
        }

        .scroller .part1 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 32px;
            letter-spacing: 1px;
            margin-top: 20px;
        }

        .scroller .part1 h3 {
            font-family: 'Arimo', sans-serif;
            font-size: 32px;
            color: #E80F9D;
            margin-bottom: 20px;
        }

        .scroller .part1 .txt2 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 24px;
            letter-spacing: 1px;
            color: black;
            margin-bottom: 25px;
        }

        .scroller .part1 a {
            text-decoration: none;
            color: #9DE80F;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
        }

    .scroller .part2 {
        width: 50%;
        margin: auto;
    }

/*------------Flèche*/

.container {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    width: 24px;
    height: 24px;
}

.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

    .chevron:first-child {
        animation: move 3s ease-out 1s infinite;
    }

    .chevron:nth-child(2) {
        animation: move 3s ease-out 2s infinite;
    }

    .chevron:before,
    .chevron:after {
        content: ' ';
        position: absolute;
        top: 0;
        height: 100%;
        width: 51%;
        background: #fff;
    }

    .chevron:before {
        left: 0;
        transform: skew(0deg, 30deg);
    }

    .chevron:after {
        right: 0;
        width: 50%;
        transform: skew(0deg, -30deg);
    }

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #E80F9D;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}


/*---------video------------*/
.video-responsive {
    overflow: hidden;
    position: relative;
    align-items: center;
    margin-bottom: 60px;
}

    .video-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent,#0F9DE8);
    !important;
}

video::-internal-media-controls-download-button {
    display: #0F9DE8;
}

/*-------Problematique----------*/


.bg_Problematique {
    background: #9DE80F;
    padding: 50px 0;
}

.Problematique {
    background: #9DE80F;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .Problematique h3 {
        font-family: 'Arimo', sans-serif;
        font-size: 32px;
        color: #fff;
        letter-spacing: 1px;
        word-spacing: 3px;
        line-height: 28px;
        text-align: center;
    }

    .Problematique a {
        text-decoration: none;
        color: #fff;
        padding: 15px;
        padding-right: 30px;
        padding-left: 30px;
        border: 2px solid #fff;
        border-radius: 25px;
        font-size: 24px;
        letter-spacing: 1px;
        transition: all 0.3s linear;
    }

        .Problematique a:hover {
            background: white;
            color: #9DE80F;
        }


/*---------3 reasons------------*/

.bg_res {
    /*background: #FAFEFA;*/
    background: white;
}

.res {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .res .part1 {
        width: 100%;
        text-align: center;
    }

        .res .part1 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 32px;
            letter-spacing: 1px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

            .res .part1 h2 span {
                font-family: 'Arimo', sans-serif;
                font-size: 32px;
                color: #E80F9D;
                margin-bottom: 20px;
            }

        .res .part1 .txt2 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            color: black;
            margin-bottom: 25px;
        }

    .res .part2 {
        width: 100%;
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        position: relative;
        list-style: none;
    }

        .res .part2 .line2 {
            display: inline;
            /*width: 135%;*/
            width: 100%;
            position: absolute;
            top: 200px;
           /* left: -18%;*/
        }

        .res .part2 .plane {
            display: inline;
            position: absolute;
            top: 200px;
            right: 1%;
        }

        .res .part2 .im1 {
            width: 28%;
            background: #F9F9FF;
            padding: 10px;
            padding-top: 5px;
            padding-bottom: 10px;
            border-radius: 15px;
            border: 2px solid #E80F9D;
            z-index: 1;
        }

            .res .part2 .im1:hover {
                border: 4px solid #9DE80F;
                color: #9DE80F;
            }

            .res .part2 .im1 img {
                display: flex;
                width: 85%;
                margin: 0 auto !important;
            }

            .res .part2 .im1 h4 {
                font-family: 'Arimo', sans-serif;
                font-size: 18px;
                color: #E80F9D;
                margin-bottom: 10px;
                text-align: center;
                width: 105%;
                margin-left: -10px;
            }


                .res .part2 .im1 h4 span {
                    /*margin-left: 0;*/
                    margin-right: 5px;
                    color: #fff;
                    border: 2px solid #E80F9D;
                    background: #E80F9D;
                    padding: 3px;
                    padding-left: 8px;
                    padding-right: 8px;
                    border-radius: 50%;
                }

            .res .part2 .im1 .f {
                margin: 0 auto;
            }

                .res .part2 .im1 .f p {
                    font-family: 'Roboto Condensed', sans-serif;
                    font-size: 18px;
                    color: black;
                    text-align: center;
                }


/*---------------logo----------------*/

.logo {
    display: flex;
    max-width: 1280px;
    width: 85%;
    margin: 0 auto;
    padding: 20px 25px;
    flex-direction: column;
}

    .logo .part1 {
        margin-top: 30px;
        margin-bottom: 30px;
        font-family: 'Arimo', sans-serif;
        text-transform: capitalize;
        font-size: 28px;
        color: #E80F9D;
    }

        .logo .part1 h2 {
            font-family: 'Arimo', sans-serif;
            text-transform: capitalize;
            font-size: 28px;
            color: #E80F9D;
            text-align: center;
        }

    .logo .part2 {
        display: flex;
        align-self: center;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
        margin-bottom: 30px;
        flex-direction: row;
        width: 90%;
        margin-top: 60px;
    }

        .logo .part2 img {
            padding: 15px;
           /* width: auto;
            height: 20%;*/
            width: 150px;
        }


/*----------service----------------*/


.service {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
}

    .service .part1 {
        width: 100%;
        margin: 0 auto !important;
    }

        .service .part1 img {
            margin: 0 47%;
            margin-bottom: 25px;
        }

        .service .part1 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 32px;
            letter-spacing: 1px;
            margin-top: 20px;
            margin-bottom: 20px;
            text-align: center;
        }

            .service .part1 h2 span {
                font-family: 'Arimo', sans-serif;
                font-size: 32px;
                color: #E80F9D;
                margin-bottom: 20px;
            }

        .service .part1 .txt2 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            color: black;
            margin-bottom: 25px;
            text-align: center;
        }

    .service .part2 {
        margin-top: 90px;
        display: flex;
        justify-content: space-between;
        background-image: url(assets/img/line.png);
        background-repeat: no-repeat;
        background-size: contain;
    }

        .service .part2 .im {
            width: 15%;
            padding: 15px;
            margin-top: -60px;
            color: #E80F9D;
            font-family: 'Roboto Condensed', sans-serif;
            flex-wrap: nowrap;
        }

            .service .part2 .im p {
                margin-left: 14px;
            }

        .service .part2 .im2 p {
            margin-left: -4px;
        }

        .service .part2 .im3 p {
            margin-left: -10px;
        }

        .service .part2 .im4 p {
            margin-left: -7px;
        }



        .service .part2 .im2 {
            margin-top: -40px;
            margin-left: 0.5%;
        }

        .service .part2 .im4 {
            margin-top: 0;
            margin-right: -2%;
        }

        .service .part2 .im3 {
            margin-top: 25px;
            margin-left: 5.5%;
        }

        .service .part2 .im .cir {
            background: #0F9DE8;
            width: 100px;
            height: 100px;
            border: 2px solid #0F9DE8;
            border-radius: 50%;
            margin-bottom: 25px;
            transition-duration: 1s;
        }

            .service .part2 .im .cir:hover {
                zoom: 105%;
                border: 2px solid #0F9DE8;
            }

        .service .part2 .im img {
            width: 100%;
            margin-bottom: 20px;
        }




/*-------------loc------------*/


.loc {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
}

    .loc .part1 {
        width: 45%;
        margin-right: 2%;
    }

        .loc .part1 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 34px;
            letter-spacing: 1px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

            .loc .part1 h2 span {
                font-family: 'Arimo', sans-serif;
                font-size: 34px;
                color: #E80F9D;
                margin-bottom: 20px;
            }

        .loc .part1 .txt2 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            color: black;
            margin-bottom: 65px;
            z-index: 2;
        }

    .loc .part2 {
        width: 40%;
        margin-top: 55px;
    }




/*-------Partenaires----------*/


.bg_Partenaires {
    background: #0F9DE8;
    padding: 50px 0;
}

.Partenaires {
    background: #0F9DE8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .Partenaires h3 {
        font-family: 'Arimo', sans-serif;
        font-size: 32px;
        color: #fff;
        letter-spacing: 1px;
        word-spacing: 3px;
        line-height: 28px;
        text-align: center;
    }

    .Partenaires a {
        text-decoration: none;
        color: #fff;
        padding: 15px;
        padding-right: 30px;
        padding-left: 30px;
        border: 2px solid #fff;
        border-radius: 25px;
        font-size: 24px;
        letter-spacing: 1px;
        transition: all 0.3s linear;
    }

        .Partenaires a:hover {
            background: white;
            color: #0F9DE8;
        }



/*---------free-----------*/


.free {
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
}

    .free .part1 {
        width: 48%;
        margin: auto;
    }

    .free .part2 {
        width: 48%;
        margin: auto;
    }

        .free .part2 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 40px;
            letter-spacing: 1px;
            word-spacing: 6px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .free .part2 h4 {
            font-family: 'Arimo', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            word-spacing: 3px;
            color: #bdbdbd;
            margin-bottom: 20px;
        }

        .free .part2 h2 span {
            font-family: 'Arimo', sans-serif;
            font-size: 40px;
            color: #E80F9D;
            margin-bottom: 20px;
        }

#lasolution, #lasolution2, #lasolution3 {
    /*margin-left: 0;*/
    margin-bottom: 0px;
}

.free .part2 p span {
    /*margin-left: 0;*/
    margin-right: 5px;
    color: #fff;
    border: 2px solid #E80F9D;
    background: #E80F9D;
    padding: 1px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 50%;
}

.free ul {
    list-style-type: space-counter;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
}

.free .part2 .txt2 {
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    word-spacing: 3px;
    color: black;
    margin-bottom: 65px;
}

/*---------free2-----------*/


.free2 {
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    flex-direction: row-reverse;
}

    .free2 .part1 {
        width: 48%;
        margin: auto;
    }

    .free2 .part2 {
        width: 48%;
        margin: auto;
    }

        .free2 .part2 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 40px;
            letter-spacing: 1px;
            word-spacing: 6px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .free2 .part2 h4 {
            font-family: 'Arimo', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            word-spacing: 3px;
            color: #bdbdbd;
            margin-bottom: 20px;
        }

        .free2 .part2 h2 span {
            font-family: 'Arimo', sans-serif;
            font-size: 40px;
            color: #E80F9D;
            margin-bottom: 20px;
        }

        .free2 .part2 .txt2 {
            width: 100%;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            word-spacing: 3px;
            color: black;
            margin-bottom: 65px;
        }

/*---------free3-----------*/


.free3 {
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
}

    .free3 .part1 {
        width: 100%;
        text-align: center;
    }

    .free3 .part2 {
        width: 100%;
        margin: auto;
    }

        .free3 .part2 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 40px;
            letter-spacing: 1px;
            word-spacing: 6px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .free3 .part2 h4 {
            font-family: 'Arimo', sans-serif;
            font-size: 20px;
            letter-spacing: 1px;
            word-spacing: 3px;
            color: #bdbdbd;
            margin-bottom: 20px;
        }

        .free3 .part2 h2 span {
            font-family: 'Arimo', sans-serif;
            font-size: 40px;
            color: #E80F9D;
            margin-bottom: 20px;
        }

        .free3 .part2 .txt2 {
            width: 100%;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 20px;
            letter-spacing: 1px;
            word-spacing: 3px;
            color: black;
            margin-bottom: 65px;
        }


    .free3 .part1 h2 {
        font-family: 'Arimo', sans-serif;
        font-size: 32px;
        letter-spacing: 1px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

        .free3 .part1 h2 span {
            font-family: 'Arimo', sans-serif;
            font-size: 32px;
            color: #E80F9D;
            margin-bottom: 20px;
        }
/*-------contact----------*/


.bg_contact {
    background: #E80F9D;
    padding: 50px 0;
}

.contact {
    background: #E80F9D;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .contact h3 {
        font-family: 'Arimo', sans-serif;
        font-size: 32px;
        color: #fff;
        letter-spacing: 1px;
        word-spacing: 3px;
        line-height: 28px;
        margin-bottom: 25px;
        text-align: center;
    }



/*-------Souscrire----------*/


.bg_Souscrire {
    background: #0F9DE8;
    padding: 50px 0;
}

.Souscrire {
    background: #0F9DE8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .Souscrire h3 {
        font-family: 'Arimo', sans-serif;
        font-size: 32px;
        color: #fff;
        letter-spacing: 1px;
        word-spacing: 3px;
        line-height: 28px;
        text-align: center;
    }

    .Souscrire a {
        text-decoration: none;
        color: #fff;
        padding: 15px;
        padding-right: 30px;
        padding-left: 30px;
        border: 2px solid #fff;
        border-radius: 25px;
        font-size: 24px;
        letter-spacing: 1px;
        transition: all 0.3s linear;
    }

        .Souscrire a:hover {
            background: white;
            color: #0F9DE8;
        }



/*-------------subscribe--------------*/


.bg_sub {
    background-image: url(assets/img/bg19.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 2px solid #F0F0F0;
}

.sub {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

    .sub .part1 {
        width: 45%;
        margin-right: 2%;
        margin-top: -30px;
    }

        .sub .part1 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 34px;
            letter-spacing: 1px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

            .sub .part1 h2 span {
                font-family: 'Arimo', sans-serif;
                font-size: 34px;
                color: #E80F9D;
                margin-bottom: 20px;
            }

        .sub .part1 .txt2 {
            font-family: 'Roboto-condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            color: black;
            margin-bottom: 65px;
        }

    .sub .part2 {
        width: 40%;
        margin-top: 40px;
    }

        .sub .part2 .pre_form {
            position: relative;
            background: #FFFFFF;
            padding: 25px;
            padding-top: 40px;
            border-radius: 15px;
            border: 2px solid #9DE80F;
            margin-bottom: 45px;
        }

            .sub .part2 .pre_form h2 {
                font-family: 'Arimo', sans-serif;
                color: #9DE80F;
                font-size: 34px;
                margin-bottom: 15px;
            }

            .sub .part2 .pre_form .txt2 {
                font-family: 'Roboto-condensed', sans-serif;
                color: black;
                font-size: 18px;
                letter-spacing: 1px;
            }

            .sub .part2 .pre_form .sub_child {
                position: absolute;
                top: -10px;
                right: -20px;
                background: #9DE80F;
                width: 150px;
                padding: 15px 10px;
                text-align: center;
                color: #fff;
                font-family: 'Roboto-condensed', sans-serif;
                border-radius: 10px;
                border: 2px solid #9DE80F;
            }

        .sub .part2 .form {
        }

            .sub .part2 .form form {
                display: flex;
                justify-content: center;
            }

                .sub .part2 .form form input[type=email] {
                    width: 80%;
                    height: 45px;
                    padding-left: 20px;
                    font-family: 'Arimo', sans-serif;
                    border: none;
                    border-top-left-radius: 30px;
                    border-bottom-left-radius: 30px;
                    outline: 0;
                    font-style: italic;
                    color: #E80F9D;
                    border: 2px solid #9DE80F;
                }

                .sub .part2 .form form button[type=submit] {
                    width: 20%;
                    height: 45px;
                    border: none;
                    border-top-right-radius: 30px;
                    border-bottom-right-radius: 30px;
                    outline: 0;
                    background: #9DE80F;
                    color: #fff;
                    text-align: center;
                    font-size: 28px;
                    cursor: pointer;
                    border: 2px solid #9DE80F;
                }


/*------------list---------------*/


.bg_list {
    background: #FFFFFF;
}

.list {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

    .list .part1, .list .part2, .list .part3 {
        width: 19%;
    }

        .list .part1 a {
            text-decoration: none;
            color: #9DE80F;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 22px;
            display: block;
            margin: 15px 0;
        }

        .list .part1 p {
            text-decoration: none;
            color: #000;
            font-weight: bold;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
        }

        .list .part2 h2, .list .part3 h2, .list .part3 h3 {
            font-family: 'Arimo', sans-serif;
        }

        .list .part2 ul {
            list-style-type: none;
        }

            .list .part2 ul li {
                padding: 7px 0;
            }

                .list .part2 ul li:first-child {
                    margin-top: 15px;
                }

                .list .part2 ul li a {
                    font-family: 'Roboto Condensed', sans-serif;
                    text-decoration: none;
                    color: #ACACAC;
                }

        .list .part3 p {
            font-family: 'Roboto Condensed', sans-serif;
            margin-top: 25px;
            margin-bottom: 25px;
            color: #ACACAC;
        }

        .list .part3 a {
            font-family: 'Roboto Condensed', sans-serif;
            text-decoration: none;
            color: #E80F9D;
            font-size: 22px;
            display: block;
            margin-bottom: 25px;
        }

        .list .part3 .social {
            display: flex;
            justify-content: space-between;
        }

            .list .part3 .social .in .social_child {
                color: #fff;
                padding: 0;
                margin: 0;
                font-weight: bold;
            }


/*------------footer---------------*/


.bg_footer {
    background: #0F9DE8;
    padding: 0 0px;
    width: 100%;
}

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

    .footer .part2 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .footer .part2 ul {
            width: 80%;
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            list-style: none;
        }

            .footer .part2 ul li:first-child {
                list-style: none;
            }

            .footer .part2 ul li a {
                text-decoration: none;
                color: #fff;
                font-family: 'Arimo', sans-serif;
            }

/*--------- légales------------*/

.bg_mentions {
    background: #FAFEFA;
}

.mentions {
    display: flex;
    vertical-align: middle;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    margin: auto;
}

    .mentions .part1 {
        width: 90%;
        margin: auto;
        text-align: center;
    }

        .mentions .part1 h2 {
            font-family: 'Arimo', sans-serif;
            font-size: 32px;
            letter-spacing: 1px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

            .mentions .part1 h2 span {
                font-family: 'Arimo', sans-serif;
                font-size: 32px;
                color: #E80F9D;
                margin-bottom: 20px;
            }

        .mentions .part1 .txt2 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            letter-spacing: 1px;
            color: black;
            text-align: left;
        }

mentions .part1 .txt {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: black;
}




/*lien vers les thématiques du menu*/

#Pourquoi, #transporteurs, #lavideo, #down {
    /*margin-left: 0;*/
    margin-top: -130px;
    padding-top: 130px;
}


.lien {
    width: 100%;
}

/*-------------------responsive for mobile--------------*/


@media only screen and (max-width: 900px) {
    div {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    /*------------header---------------*/
    .header {
        display: none;
    }

        .header header {
            background: #FFFFFF;
            display: none;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            font-family: 'Roboto Condensed', sans-serif;
            margin-bottom: 50px;
        }


            .header header .nav nav ul {
                list-style-type: none;
                position: center;
                display: none;
            }

            .header header .logo {
                padding-top: 15px;
                width: 10%;
            }

            .header header .join {
                padding-top: 25px;
                width: 10%;
                margin-right: 15 px;
            }

            .header header .nav {
                width: 95%;
            }

    .logo2 {
        display: inline;
        z-index: 2;
        position: fixed;
        left: 0;
        background: #fff;
        border-radius: 0% 0% 0% 0%;
        padding: 15px 20px 20px 20px;
        font-size: 32px;
        border-bottom: 1px solid #E80F9D;
    }

    #burger {
        z-index: 3;
        position: fixed;
        color: white;
        background: #0F9DE8;
        right: 0;
        font-size: 50px;
        padding: 20px 20px 36px 36px;
        border-radius: 0% 0% 0% 100%;
        transition: 1s;
        cursor: pointer;
        display: flex;
    }

    #quit {
        z-index: 4;
        position: fixed;
        top: 0;
        left: 0;
        color: white;
        font-size: 40px;
        padding: 16px;
        display: none;
        cursor: pointer;
    }

    #links {
        z-index: 3;
        display: none;
        flex-direction: column;
        width: 100vw;
        height: 50vh;
        padding: 25vh 0;
        justify-content: space-around;
    }

        #links a {
            display: flex;
            z-index: 3;
            text-align: center;
            text-decoration: none;
            color: white;
            font-size: 1.5em;
            font-family: 'Roboto';
        }



    /*------------scroller---------------*/

    .scroller {
        flex-direction: column-reverse;
        margin-top: 60px;
    }

        .scroller .part1 {
            width: 100%;
            margin-right: 2%;
        }

            .scroller .part1 .txt1 {
                font-family: 'Roboto Condensed', sans-serif;
                font-size: 24px;
                color: #444;
            }

            .scroller .part1 h2 {
                font-family: 'Arimo', sans-serif;
                font-size: 32px;
                letter-spacing: 1px;
                margin-top: 20px;
            }

            .scroller .part1 h3 {
                font-family: 'Arimo', sans-serif;
                font-size: 32px;
                color: #E80F9D;
                margin-bottom: 20px;
            }

            .scroller .part1 .txt2 {
                font-family: 'Roboto Condensed', sans-serif;
                font-size: 24px;
                letter-spacing: 1px;
                color: black;
                margin-bottom: 25px;
            }

            .scroller .part1 a {
                text-decoration: none;
                color: #9DE80F;
                font-family: 'Roboto Condensed', sans-serif;
                font-size: 18px;
                letter-spacing: 1px;
            }

        .scroller .part2 {
            width: 100%;
            margin-top: 0;
        }



    /*-----------res-----------*/


    .res .part1 {
        width: 90%;
        overflow-x: auto;
        width: 100%;
        display: flex;
    }


    .res .part2 {
        width: 100%;
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        position: relative;
        overflow-x: auto;
    }

        .res .part2 .line2 {
            display: none;
        }

        .res .part2 .plane {
            display: none;
        }

        .res .part2 .im1 {
            width: 90%;
            margin: 20px 0;
        }


    /*-----------service------------*/


    .service .part1 {
        width: 100%;
        margin: 0 auto !important;
    }

        .service .part1 img {
            margin: 0 41%;
            margin-bottom: 25px;
        }

    .service .part2 {
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
    }

        .service .part2 .im {
            width: 55%;
            padding: 15px;
            margin: auto;
        }

        .service .part2 .im2 {
            margin: auto;
        }

        .service .part2 .im4 {
            margin: auto;
        }

        .service .part2 .im3 {
            margin: auto;
        }

        .service .part2 .im .cir {
            width: 150px;
            height: 150px;
        }

        .service .part2 .im img {
            width: 100%;
            margin-bottom: 20px;
        }

        .service .part2 .im p, .service .part2 .im2 p {
            font-family: 'Roboto Condensed', sans-serif;
            color: #E80F9D;
            text-align: center;
        }

        .service .part2 .im3 p, .service .part2 .im4 p {
            color: #E80F9D;
        }





    /*--------cus------------*/


    .cus .part2 {
        margin-top: 100px;
        display: flex;
        justify-content: space-between;
        margin-left: 0;
    }

        .cus .part2 .im5 p {
            font-size: 148px;
            text-align: center;
        }

        .cus .part2 .im6, .cus .part2 .im7 {
            margin-top: 20px;
        }


    /*----------easy,free,sub------------*/


    .easy, .free, .free2, .free3, .sub {
        display: flex;
        flex-direction: column;
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
    }

        .easy .part1, .free .part1, .free2 .part1, .free3 .part1, .sub .part1 {
            width: 100%;
            overflow-x: auto;
        }

        .easy .part2, .free .part2, .free2 .part2, .free .part2, .sub .part2 {
            width: 90%;
            margin-bottom: 30px;
        }

            .easy .part2 .txt2, .free .part2 .txt2, .free2 .part2 .txt2, .free3 .part2 .txt2 {
                width: 100%;
            }


    .free {
        justify-content: space-between;
        margin: 0 auto !important;
    }

    .free2 {
        justify-content: space-between;
        margin: 0 auto !important;
    }

    .free3 {
        justify-content: space-between;
        margin: 0 auto !important;
    }

    /*-----------list------------*/


    .list {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

        .list .part1, .list .part2, .list .part3 {
            width: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
        }

            .list .part1 a {
                font-size: 28px;
            }

            .list .part1 p {
                font-size: 28px;
            }

            .list .part2 h2, .list .part3 h2, .list .part3 h3 {
                font-size: 32px;
            }

            .list .part2 ul li a {
                font-size: 24px;
            }

            .list .part3 p {
                font-size: 26px;
            }

            .list .part3 a {
                font-size: 28px;
            }

    #sp1 {
        width: 100% !important;
        display: flex !important;
        flex-direction: row;
        justify-content: space-around;
    }

    .list .part3 .social .in {
        width: 20%;
    }


    /*----------footer------------*/



    .bg_footer {
        border-bottom: 1px solid #000;
    }

    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 5px;
        padding-bottom: 5px;
    }

        .footer .part1 p {
            text-align: center;
        }

        .footer .part2 {
            width: 100%;
            display: flex;
            align-items: center;
            text-align: center;
        }

            .footer .part2 ul {
                width: 90%;
                margin-bottom: 10px;
                list-style-type: none;
                flex-direction: column;
                padding-inline-start: 0px;
            }

                .footer .part2 ul li {
                    padding-right: 5px;
                }
}

@media only screen and (max-width: 375px) {
    body {
        background-image: none;
    }
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 1s;
}

.sub .part2 .form form input[type=text] {
    width: 90%;
    height: 45px;
    padding-left: 20px;
    font-family: 'Arimo', sans-serif;
    border: none;
    border-radius: 30px;
    outline: 0;
    font-style: italic;
    color: #E80F9D;
    border: 2px solid #9DE80F;
}
.sub .part2 .form form input[type=email] {
    width: 70%;
}


.website-join-us-form-td{
    display: flex;
    border:none;
    background-color: white;
}

/*-------------------Modif Joannick--------------*/

.header header .nav nav ul li {
    width: 12%;
}

@media only screen and (max-width: 1068px) {
    .header header .nav nav ul li {
        font-size: 12px;
        width: 14%;
    }

    .header header .join .btn_join {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1280px) {
    .header header .nav nav ul li {
        font-size: 14px;
        width: 13%;
    }

    .header header .join .btn_join {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
    }
}
