* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    border: none;
}

.pink {
    background: #e990e0;
}

.blue {
    background: #90e9de;
}

.yellow {
    background: #fffa78;
}

.pinkOpacity {
    color: rgba(233, 144, 224, 0.25);
}

.blueOpacity {
    color: rgba(144, 233, 222, 0.25);
}

.yellowOpacity {
    color: rgba(255, 250, 120, 0.6);
}


/*********************************/
/*             FONTS             */
/*********************************/

@font-face {
    font-family: 'mission';
    src: url('cssMission/mission-script-webfont.woff2') format('woff2'),
         url('cssMission/mission-script-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bebas';
    src: url('cssBebas/bebasneue-webfont.woff2') format('woff2'),
         url('cssBebas/bebasneue-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nexa';
    src: url('cssNexa/nexa/NexaLightwebfont.html');
    src: url('cssNexa/NexaLightwebfont.eot') format('embedded-opentype'),
         url('cssNexa/NexaLightwebfont.woff2') format('woff2'),
         url('cssNexa/NexaLightwebfont.woff') format('woff'),
         url('cssNexa/NexaLightwebfont.ttf') format('truetype'),
         url('cssNexa/NexaLightwebfont.svg#NexaLightwebfont') format('svg');
}

@font-face {
    font-family: 'ost';
    src: url('cssOst/ostrich-regular-webfont.woff2') format('woff2'),
         url('cssOst/ostrich-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'duke';
    src: url('cssDuke/duke_fill-webfont.eot');
    src: url('cssDuke/duke_fill-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('cssDuke/duke_fill-webfont.woff2') format('woff2'),
         url('cssDuke/duke_fill-webfont.woff') format('woff'),
         url('cssDuke/duke_fill-webfont.ttf') format('truetype'),
         url('cssDuke/duke_fill-webfont.svg#duke_fillfill') format('svg');
    font-weight: normal;
    font-style: normal;

}




/*********************************/
/*           GENERALES           */
/*********************************/

.cercleSmall {
    height: 20px;
    width: 20px;
    border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
}

.cercleMedium {
    height: 40px;
    width: 40px;
    border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
}

.cercleBig {
    height: 60px;
    width: 60px;
    border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
}

.cercleBigMax {
    height: 80px;
    width: 80px;
    border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
}

.squareSmall {
    height: 30px;
    width: 30px;
}

.squareMedium {
    height: 60px;
    width: 60px;
}

.squareBig {
    height: 80px;
    width: 80px;
}

.lineSmall {
    height: 50px;
    width: 1px;
}

.pink {
    background: #e990e0;
}

.blue {
    background: #90e9de;
}

.yellow {
    background: #fffa78;
}

.blueBorder {
    border: 1px solid #90e9de;
}

.pinkBorder {
    border: 1px solid #e990e0;
}

.yellowBorder {
    border: 1px solid #fffa78;
}



/*********************************/
/*              NAV              */
/*********************************/

#nav {
    position: fixed;
    z-index: 9999;
    top: 90px;
    right: 7%;
    height: 65px;
    width: 110px;
    background: #90e9de;
    cursor: pointer;
}

.navDeco {
    position: absolute;
    top: 16px;
    right: 20px;
    height: 50px;
    width: 70px;
    overflow: hidden;
}

#navDeco01 {
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s;
}

.navDeco:hover #navDeco01 {
    right: -140px;
    transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
}

#navDeco02 {
    position: absolute;
    top: 15px;
    left: 0;
    transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
}

.navDeco:hover #navDeco02 {
    left: -140px;
    transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
}

#navDeco03 {
    position: absolute;
    top: 30px;
    right: 0;
    transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
}

.navDeco:hover #navDeco03 {
    right: -140px;
    transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
}

.navDecoResp {
    display: none;
}

/* Nav Close */
.navClose {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 90px;
    right: 7%;
    height: 65px;
    width: 110px;
    background: #90e9de;
    cursor: pointer;
}

.navClose img {
    position: absolute;
    z-index: 10001;
    top: 10px;
    right: 20px;
    height: 45px;
    width: 45px;
}

.navClose img:hover {
    transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
}

/* Navigation BG */

.decoNavBG {
    position: fixed;
    z-index: 9998;
    top: 110px;
    right: 7.5%;
    height: 65px;
    width: 85%;
    /*background: #90e9de;*/
    /*background: red;*/
}

.blocDecoNavResp {
    display: none;
}

/* Navigation CONTENT */

.decoNavContent {
    position: fixed;
    z-index: 9998;
    top: 110px;
    right: 7.5%;
    height: 65px;
    width: 85%;
    /*background: blue;*/
}

.blocDecoNav {
    position: absolute;
    z-index: 10000;
    top: 0;
    right: 95px;
    width: 980px;
    height: 100%;
    /*background: red;*/
    overflow: hidden;
}

.decoLinkNav {
    position: absolute;
    z-index: 10001;
    bottom: 0px;
    right: 0px;
    width: 210px;
    height: 50px;
    /*background: red;*/
}

.decoLinkNav a {
    display: block;
    font-family: 'bebas', Arial, sans-serif;
    font-size: 48px;
    color: #fff;
    transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
}

.decoLinkNav a:hover {
    color: #e990e0;
}

#decoLinkNav01 {
    position: absolute;
    z-index: 10001;
    top: 7px;
    right: -50px;
}

#decoLinkNav02 {
    position: absolute;
    z-index: 10001;
    top: 7px;
    right: 145px;
}

#decoLinkNav03 {
    position: absolute;
    z-index: 10001;
    top: 7px;
    right: 400px;
}

#decoLinkNav04 {
    position: absolute;
    z-index: 10001;
    top: 7px;
    right: 560px;
}

.decoLink::before {
	content: attr(data-letters);
	position: absolute;
	z-index: 2;
	overflow: hidden;
	color: #fffa78;
	white-space: nowrap;
	width: 0%;
	transition: width 0.5s 0.4s;
        -webkit-transition: width 0.5s 0.4s;
        -moz-transition: width 0.5s 0.4s;
        -ms-transition: width 0.5s 0.4s;
        -o-transition: width 0.5s 0.4s;
}

.decoLink:hover::before {
	width: 100%;
}



/*****************************************************/
/*                  NAV Resp 1025px                  */
/*****************************************************/

@media screen and (max-width: 1025px),
    screen and (max-device-width: 1025px) {

    #nav {
        position: fixed;
        z-index: 9999;
        top: 90px;
        right: 7%;
        height: 60px;
        width: 110px;
        background: #90e9de;
        cursor: pointer;
    }

    .navDeco {
        position: absolute;
        top: 13px;
        right: 20px;
        height: 50px;
        width: 70px;
        overflow: hidden;
    }

    #navDeco01 {
        position: absolute;
        top: 0;
        right: 0;
        transition: 0.5s;
    }

    .navDeco:hover #navDeco01 {
        right: -140px;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    #navDeco02 {
        position: absolute;
        top: 15px;
        left: 0;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    .navDeco:hover #navDeco02 {
        left: -140px;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    #navDeco03 {
        position: absolute;
        top: 30px;
        right: 0;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    .navDeco:hover #navDeco03 {
        right: -140px;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    /* Nav Close */
    .navClose {
        display: none;
        position: fixed;
        z-index: 10000;
        top: 90px;
        right: 7%;
        height: 60px;
        width: 110px;
        background: #90e9de;
        cursor: pointer;
    }

    .navClose img {
        position: absolute;
        z-index: 10001;
        top: 7px;
        right: 20px;
        height: 45px;
        width: 45px;
    }

    .navClose img:hover {
        transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
    }

    /* Navigation BG */

    .decoNavBG {
        position: fixed;
        z-index: 9998;
        top: 110px;
        right: 7.5%;
        height: 65px;
        width: 85%;
        /*background: #90e9de;*/
        /*background: red;*/
    }

    /* Navigation CONTENT */

    .decoNavContent {
        position: fixed;
        z-index: 9998;
        top: 110px;
        right: 7.5%;
        height: 65px;
        width: 85%;
        /*background: blue;*/
    }

    .blocDecoNav {
        position: absolute;
        z-index: 10000;
        top: 0;
        right: 95px;
        width: 800px;
        height: 100%;
        /*background: red;*/
        overflow: hidden;
    }

    .decoLinkNav {
        position: absolute;
        z-index: 10001;
        bottom: 0px;
        right: 0px;
        width: 160px;
        height: 50px;
        /*background: red;*/
    }

    .decoLinkNav a {
        display: block;
        font-family: 'bebas', Arial, sans-serif;
        font-size: 30px;
        color: #fff;
        transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
    }

    .decoLinkNav a:hover {
        color: #e990e0;
    }

    #decoLinkNav01 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: -50px;
    }

    #decoLinkNav02 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: 95px;
    }

    #decoLinkNav03 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: 270px;
    }

    #decoLinkNav04 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: 380px;
    }

    .decoLink::before {
        display: none;
    }

    .decoLink:hover::before {
        display: none;
    }


}



/*****************************************************/
/*                   NAV Resp 800px                  */
/*****************************************************/

@media screen and (max-width: 800px),
    screen and (max-device-width: 800px) {

    #nav {
        position: fixed;
        z-index: 9999;
        top: 90px;
        right: 7%;
        height: 60px;
        width: 110px;
        background: #90e9de;
        cursor: pointer;
    }

    .navDeco {
        position: absolute;
        top: 13px;
        right: 20px;
        height: 50px;
        width: 70px;
        overflow: hidden;
    }

    #navDeco01 {
        position: absolute;
        top: 0;
        right: 0;
        transition: 0.5s;
    }

    .navDeco:hover #navDeco01 {
        right: -140px;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    #navDeco02 {
        position: absolute;
        top: 15px;
        left: 0;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    .navDeco:hover #navDeco02 {
        left: -140px;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    #navDeco03 {
        position: absolute;
        top: 30px;
        right: 0;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    .navDeco:hover #navDeco03 {
        right: -140px;
        transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
    }

    /* Nav Close */
    .navClose {
        display: none;
        position: fixed;
        z-index: 10000;
        top: 90px;
        right: 7%;
        height: 60px;
        width: 110px;
        background: #90e9de;
        cursor: pointer;
    }

    .navClose img {
        position: absolute;
        z-index: 10001;
        top: 7px;
        right: 20px;
        height: 45px;
        width: 45px;
    }

    .navClose img:hover {
        transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
    }

    /* Navigation BG */

    .decoNavBG {
        position: fixed;
        z-index: 9998;
        top: 110px;
        right: 7.5%;
        height: 65px;
        width: 85%;
        /*background: #90e9de;*/
        /*background: red;*/
    }

    /* Navigation CONTENT */

    .decoNavContent {
        position: fixed;
        z-index: 9998;
        top: 110px;
        right: 7.5%;
        height: 65px;
        width: 85%;
        /*background: blue;*/
    }

    .blocDecoNav {
        position: absolute;
        z-index: 10000;
        top: 0;
        right: 95px;
        width: 500px;
        height: 100%;
        /*background: red;*/
        overflow: hidden;
    }

    .decoLinkNav {
        position: absolute;
        z-index: 10001;
        bottom: 0px;
        right: 0px;
        width: 100px;
        height: 50px;
        /*background: red;*/
    }

    .decoLinkNav a {
        display: block;
        font-family: 'bebas', Arial, sans-serif;
        font-size: 30px;
        color: #fff;
        transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
    }

    .decoLinkNav a:hover {
        color: #e990e0;
    }

    #decoLinkNav01 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: -20px;
    }

    #decoLinkNav02 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: 87px;
    }

    #decoLinkNav03 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: 230px;
    }

    #decoLinkNav04 {
        position: absolute;
        z-index: 10001;
        top: 14px;
        right: 315px;
    }

    .decoLink::before {
        display: none;
    }

    .decoLink:hover::before {
        display: none;
    }


}




/*****************************************************/
/*                   NAV Resp 650px                  */
/*****************************************************/

@media screen and (max-width: 650px),
    screen and (max-device-width: 650px) {

    #nav {
        display: none;
    }
        
    .navDecoResp {
        display: block;
        position: fixed;
        z-index: 10002;
        top: 7%;
        right: 7%;
        height: 45px;
        width:  45px;
        overflow: hidden;
        cursor: pointer;
    }

    .navDeco {
        display: none;
    }

    #navDeco01 {
        display: none;
    }

    .navDeco:hover #navDeco01 {
        display: none;
    }

    #navDeco02 {
        display: none;
    }

    .navDeco:hover #navDeco02 {
        display: none;
    }

    #navDeco03 {
       display: none;
    }

    .navDeco:hover #navDeco03 {
        display: none;
    }

    /* Nav Close */
    .navClose {
        display: none;
    }

    /* Navigation CONTENT */

    .blocDecoNavResp {
        display: block;
        position: fixed;
        z-index: 10000;
        top: 7%;
        right: 7%;
        /*margin-right: 45px;*/
        width: 85%;
        height: 45px;
        background: #90e9de;
        overflow: hidden;
    }

    .blocDecoNavResp a {
        display: inline-block;
        font-family: 'bebas', Arial, sans-serif;
        font-size: 15px;
        color: #fff;
        transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
    }

    .blocDecoNavResp a:hover {
        color: #e990e0;
    }

    #decoLinkNavResp01 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 50px;
    }

    #decoLinkNavResp02 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 95px;
    }

    #decoLinkNavResp03 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 150px;
    }

    #decoLinkNavResp04 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 220px;
    }

    .decoLink::before {
        display: none;
    }

    .decoLink:hover::before {
        display: none;
    }


}



/*****************************************************/
/*                   NAV Resp 450px                  */
/*****************************************************/

@media screen and (max-width: 450px),
    screen and (max-device-width: 450px) {

    #nav {
        display: none;
    }
        
    .navDecoResp {
        display: block;
        position: fixed;
        z-index: 10002;
        top: 7%;
        right: 7%;
        height: 45px;
        width:  45px;
        overflow: hidden;
        cursor: pointer;
    }

    .navDeco {
        display: none;
    }

    #navDeco01 {
        display: none;
    }

    .navDeco:hover #navDeco01 {
        display: none;
    }

    #navDeco02 {
        display: none;
    }

    .navDeco:hover #navDeco02 {
        display: none;
    }

    #navDeco03 {
       display: none;
    }

    .navDeco:hover #navDeco03 {
        display: none;
    }

    /* Nav Close */
    .navClose {
        display: none;
    }

    /* Navigation CONTENT */

    .blocDecoNavResp {
        display: block;
        position: fixed;
        z-index: 10000;
        top: 7%;
        right: 7%;
        /*margin-right: 45px;*/
        width: 85%;
        height: 45px;
        background: #90e9de;
        overflow: hidden;
    }

    .blocDecoNavResp a {
        display: inline-block;
        font-family: 'bebas', Arial, sans-serif;
        font-size: 15px;
        color: #fff;
        transition: 0.3s;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
    }

    .blocDecoNavResp a:hover {
        color: #e990e0;
    }

    #decoLinkNavResp01 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 50px;
    }

    #decoLinkNavResp02 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 95px;
    }

    #decoLinkNavResp03 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 150px;
    }

    #decoLinkNavResp04 {
        position: absolute;
        z-index: 10001;
        top: 15px;
        right: 220px;
    }

    .decoLink::before {
        display: none;
    }

    .decoLink:hover::before {
        display: none;
    }


}







/**************************************/
/*          Formulaire CONTACT        */
/**************************************/

#mainStructureContact {
    height: 2008px;
    background: #90e9de;
}

.mainBlocContact {
    position: relative;
    z-index: 1;
    top: 3%;
    left: 3%;
    height: 94%;
    width: 94%;
    background: #fff;
    overflow: hidden;
}

#send {
	position: relative;
	top: 215px;
	width: 800px;
	margin: auto;
    height: auto;
	z-index: 100;
	/*background: red;*/
}

#bloc-send {
	width: 600px;
	padding-top: 30px;
	margin: auto;
}

#send h2 {
    font-family: 'nexa', arial, sans-serif;
    font-size: 19px;
    color: #e990e0;
    font-weight: 900;
}

#send p {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 30px;
	text-align: center;
}

    /* Formulaire */

input[type="text"] {
	width: 350px;
	height: 25px;
	padding: 5px;
	margin-top: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #90e9de;
    border-top: none;
    border-left: none;
    border-right: none;
}

input[type="text"]:hover, textarea:hover {
	background-color: #fffa78;
}

#sendTxt01 {
    position: absolute;
    top: 0;
    left: 0;    
}

#sendContent01 {
    position: absolute;
    top: 30px;
    left: 0;    
}

#sendTxt02 {
    position: absolute;
    top: 0;
    left: 400px;    
}

#sendContent02 {
    position: absolute;
    top: 30px;
    left: 400px;    
}

#sendTxt03 {
    position: absolute;
    top: 120px;
    left: 0;    
}

#sendContent03 {
    position: absolute;
    top: 150px;
    left: 0;    
}

#sendTxt04 {
    position: absolute;
    top: 120px;
    left: 400px;    
}

#sendContent04 {
    position: absolute;
    top: 150px;
    left: 400px;    
}

#sendTxt05 {
    position: absolute;
    top: 240px;
    left: 0px;    
}

#sendContent05 {
    position: absolute;
    top: 280px;
    left: 0px;    
}

    /* Message CONTENT */ 

textarea {
	width: 800px;
	height: 150px;
	color: #000;
    border: 1px solid #90e9de;
	transition:all 0.8s ease-out;
		-webkit-transition:all 0.8s ease-out;
		-moz-transition:all 0.8s ease-out;
		-ms-transition:all 0.8s ease-out;
		-o-transition:all 0.8s ease-out;
}

input[type="submit"], input[type="button"] {
    position: absolute;
    top: 460px;
    right: 0;
	width: 160px;
	height: 35px;
	padding: 5px;
    text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	background-color: #e990e0;
	border: 1px solid #e990e0;
	cursor:pointer;
	transition:all 0.3s ease-out;
		-webkit-transition:all 0.3s ease-out;
		-moz-transition:all 0.3s ease-out;
		-ms-transition:all 0.3s ease-out;
		-o-transition:all 0.3s ease-out;
}

input[type="submit"]:hover {
	color: #fff;
	background-color: #90e9de;
    border: 1px solid #90e9de;
}



/* MAP */

.container {
    position: absolute;
    top: 1600px;
    left: 0;
	width: 100%;
    min-width: 800px;
}


.map {
	width: 100%;
	height: 335px;
}

#map_canvas1 {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
}



/*****************************************************/
/*                 CONTACT Resp 1200px               */
/*****************************************************/

@media screen and (max-width: 1200px),
    screen and (max-device-width: 1200px) {


    #mainStructureContact {
        height: 2008px;
        background: #90e9de;
    }

    .mainBlocContact {
        position: relative;
        z-index: 1;
        top: 3%;
        left: 3%;
        height: 94%;
        width: 94%;
        background: #fff;
        overflow: hidden;
    }

    #send {
        position: relative;
        top: 0px;
        width: 400px;
        margin: auto;
        height: auto;
        z-index: 100;
    }

    #bloc-send {
        width: 300px;
        padding-top: 30px;
        margin: auto;
    }

    #send h2 {
        font-family: 'nexa', arial, sans-serif;
        font-size: 19px;
        color: #e990e0;
        font-weight: 900;
    }

    #send p {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 30px;
        text-align: center;
    }

        /* Formulaire */

    input[type="text"] {
        width: 350px;
        height: 25px;
        padding: 5px;
        margin-top: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid #90e9de;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    input[type="text"]:hover, textarea:hover {
        background-color: #fffa78;
    }

    #sendTxt01 {
        position: absolute;
        top: 0;
        left: 0;    
    }

    #sendContent01 {
        position: absolute;
        top: 30px;
        left: 0;    
    }

    #sendTxt02 {
        position: absolute;
        top: 120px;
        left: 0px;    
    }

    #sendContent02 {
        position: absolute;
        top: 150px;
        left: 0px;    
    }

    #sendTxt03 {
        position: absolute;
        top: 240px;
        left: 0;    
    }

    #sendContent03 {
        position: absolute;
        top: 270px;
        left: 0;    
    }

    #sendTxt04 {
        position: absolute;
        top: 350px;
        left: 0px;    
    }

    #sendContent04 {
        position: absolute;
        top: 380px;
        left: 0px;    
    }

    #sendTxt05 {
        position: absolute;
        top: 470px;
        left: 0px;    
    }

    #sendContent05 {
        position: absolute;
        top: 500px;
        left: 0px;    
    }

        /* Message CONTENT */ 

    textarea {
        width: 400px;
        height: 150px;
        color: #000;
        border: 1px solid #90e9de;
        transition:all 0.8s ease-out;
            -webkit-transition:all 0.8s ease-out;
            -moz-transition:all 0.8s ease-out;
            -ms-transition:all 0.8s ease-out;
            -o-transition:all 0.8s ease-out;
    }

    input[type="submit"], input[type="button"] {
        position: absolute;
        top: 700px;
        right: 0;
        width: 160px;
        height: 35px;
        padding: 5px;
        text-transform: uppercase;
        font-weight: bold;
        color: #fff;
        background-color: #e990e0;
        border: 1px solid #e990e0;
        cursor:pointer;
        transition:all 0.3s ease-out;
            -webkit-transition:all 0.3s ease-out;
            -moz-transition:all 0.3s ease-out;
            -ms-transition:all 0.3s ease-out;
            -o-transition:all 0.3s ease-out;
    }

    input[type="submit"]:hover {
        color: #fff;
        background-color: #90e9de;
        border: 1px solid #90e9de;
    }



    /* MAP */

    .container {
        position: absolute;
        top: 1600px;
        left: 0;
        width: 100%;
        min-width: 400px;
    }

    #carte {
        width: 100%;
        height: 350px;
    }

}


/*****************************************************/
/*                 CONTACT Resp 800px                */
/*****************************************************/

@media screen and (max-width: 850px),
    screen and (max-device-width: 850px) {


    #mainStructureContact {
        height: 1680px;
        background: #90e9de;
    }

    .mainBlocContact {
        position: relative;
        z-index: 1;
        top: 1%;
        left: 3%;
        height: 98%;
        width: 94%;
        background: #fff;
        overflow: hidden;
    }

    #send {
        position: relative;
        top: 0px;
        width: 300px;
        margin: auto;
        height: auto;
        z-index: 100;
    }

    #bloc-send {
        width: 250px;
        padding-top: 30px;
        margin: auto;
    }

    #send h2 {
        font-family: 'nexa', arial, sans-serif;
        font-size: 16px;
        color: #e990e0;
        font-weight: 900;
    }

    #send p {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 30px;
        text-align: center;
    }

        /* Formulaire */

    input[type="text"] {
        width: 220px;
        height: 25px;
        padding: 5px;
        margin-top: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid #90e9de;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    input[type="text"]:hover, textarea:hover {
        background-color: #fffa78;
    }

    #sendTxt01 {
        position: absolute;
        top: 0;
        left: 30px;    
    }

    #sendContent01 {
        position: absolute;
        top: 30px;
        left: 30px; 
    }

    #sendTxt02 {
        position: absolute;
        top: 120px;
        left: 30px;  
    }

    #sendContent02 {
        position: absolute;
        top: 150px;
        left: 30px;   
    }

    #sendTxt03 {
        position: absolute;
        top: 240px;
        left: 30px;   
    }

    #sendContent03 {
        position: absolute;
        top: 270px;
        left: 30px;   
    }

    #sendTxt04 {
        position: absolute;
        top: 350px;
        left: 30px;   
    }

    #sendContent04 {
        position: absolute;
        top: 380px;
        left: 30px;    
    }

    #sendTxt05 {
        position: absolute;
        top: 470px;
        left: 30px;  
    }

    #sendContent05 {
        position: absolute;
        top: 500px;
        left: 30px;   
    }

        /* Message CONTENT */ 

    textarea {
        width: 220px;
        height: 150px;
        color: #000;
        border: 1px solid #90e9de;
        transition:all 0.8s ease-out;
            -webkit-transition:all 0.8s ease-out;
            -moz-transition:all 0.8s ease-out;
            -ms-transition:all 0.8s ease-out;
            -o-transition:all 0.8s ease-out;
    }

    input[type="submit"], input[type="button"] {
        position: absolute;
        top: 690px;
        right: 50px;
        width: 110px;
        height: 35px;
        padding: 5px;
        text-transform: uppercase;
        font-family: 'nexa', sans-serif;
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        background-color: #e990e0;
        border: 1px solid #e990e0;
        cursor:pointer;
        transition:all 0.3s ease-out;
            -webkit-transition:all 0.3s ease-out;
            -moz-transition:all 0.3s ease-out;
            -ms-transition:all 0.3s ease-out;
            -o-transition:all 0.3s ease-out;
    }

    input[type="submit"]:hover {
        color: #fff;
        background-color: #90e9de;
        border: 1px solid #90e9de;
    }



    /* MAP */

    .container {
        position: absolute;
        top: 1300px;
        left: 0;
        width: 100%;
        min-width: 300px;
    }

    #carte {
        width: 100%;
        height: 350px;
    }



}















