@charset "utf-8";
@import url("../font/stylesheet.css");

body {
    margin: 0;
    padding: 0;
    background: #fff;
}

h1 {
    font-size: 18px;
    font-family: 'gravitybook';
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

* {
    letter-spacing: 0px;
}

p {
    font-family: 'gravitybook';
    font-size: 14px;
    color: #000;
}

/**------------------------LODER ------------------------**/

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #d40b52;
    -webkit-animation: spin 2s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #d40b52;

    -webkit-animation: spin 3s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #d40b52;

    -webkit-animation: spin 1.5s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    -webkit-transform: translateX(0);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);
    /* IE 9 */
    transform: translateX(0);
    /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateY(100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(100%);
    /* IE 9 */
    transform: translateY(100%);
    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateY(100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(100%);
    /* IE 9 */
    transform: translateY(100%);
    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;

    -webkit-transform: translateY(100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(100%);
    /* IE 9 */
    transform: translateY(100%);
    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

/************************** menu fixed right**********************/
#nav {
    list-style: none;
    position: fixed;
    right: 25px;
    top: 100px;
    z-index: 9999;
}

#nav li {
    margin: 0 0 10px 0;
}

#nav li>a {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/btn_menu_fixe.png) left top no-repeat;
}

#nav li.active>a {
    background: url(../images/btn_active_menu_fixe.png) left top no-repeat;
}

/************************** /menu fixed right**********************/

/************************** menu fixed top **********************/
#menu_fixed {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 105px;
    line-height: 105px;
    top: 0px;
    z-index: 1050;
    margin: 0px;
    padding: 0px;
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, .04);
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, .04);
    box-shadow: 0 5px 7px rgba(0, 0, 0, .04);

    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;

}

#menu_fixed.sticky {
    height: 60px;
    line-height: 60px;
}

#menu_fixed .logo_top {
    padding: 0;
    margin: 0;
    margin-top: 9px;
    display: inline-block;
}

#menu_fixed.sticky .logo_top img {
    transform-origin: left 50%;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

#menu_fixed.sticky .logo_top img {
    transform: scale(0.8);
}

.header_top {
    background: #f8f8f8;
    height: 43px;
    width: 100%;
    text-align: right;
}

.menu_top {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.menu_top>li {
    display: inline-block;
}

.menu_top>li a {
    font-family: arial, verdana, helvetica, sans-serif;
    color: #555;
    font-size: 13px;
    padding: 0 25px;
    height: 43px;
    line-height: 43px;
    text-decoration: none;
    border-right: 1px solid #e5e5e5;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.menu_top>li:last-child a {
    border-right: none;
}

.menu_top>li a:hover,
.menu_top>li a:focus {
    color: #df2062;
}

.liste_reseaux {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
}

.liste_reseaux li {
    display: inline-block;
}

.liste_reseaux li a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: #555;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    display: inline-block;
    text-align: center;
    margin: 0 5px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.liste_reseaux li:first-child a {
    margin-left: 0;
}

.liste_reseaux li:last-child a {
    margin-right: 0;
}

.liste_footer .liste_reseaux li a {
    background: #e5e8e4;
    width: 37px;
    height: 37px;
    line-height: 41px;
    text-align: center;
}

.liste_footer .liste_reseaux li a i {
    font-size: 20px;
}

.liste_reseaux li a:hover,
.liste_reseaux li a:focus {
    background: #df2062;
    color: #fff;
}

.copyright {
    background: #e5e8e4;
    width: 100%;
    padding-top: 44px;
    padding-bottom: 80px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'gravitybook';
    color: #000;
    margin-top: 100px;
}

#form_newsletter {
    position: relative;
}

.icon_submit {
    background: url("../images/submit.png") left top no-repeat;
    width: 26px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#form_newsletter button[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    outline: none;
    background: #da004b;
    /*background-image: -webkit-linear-gradient(bottom, #d40b52, #009acd);*/
    /*background-image: -moz-linear-gradient(bottom, #d40b52, #009acd);*/
    /*background-image: -o-linear-gradient(bottom, #d40b52, #009acd);*/
    /*background-image: -ms-linear-gradient(bottom, #d40b52, #009acd);*/
    /*background-image: linear-gradient(to top, #d40b52, #009acd);*/
    width: 46px;
    height: 44px;
    text-align: center;
    line-height: 40px;
    border-radius: 0 100px 100px 0;
    cursor: pointer;
}

#form_newsletter button[type=submit]:hover,
#form_newsletter button[type=submit]:focus {
    background: #9f0038;
    /*background-image: -webkit-linear-gradient(bottom, #009acd, #d40b52);*/
    /*background-image: -moz-linear-gradient(bottom, #009acd, #d40b52);*/
    /*background-image: -o-linear-gradient(bottom, #009acd, #d40b52);*/
    /*background-image: -ms-linear-gradient(bottom, #009acd, #d40b52);*/
    /*background-image: linear-gradient(to top, #009acd, #d40b52);*/
}

.form-control {
    display: block;
    width: 176px;
    height: 30px;
    padding: 6px 20px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #777;
    background-color: #f6f6f6;
    background-image: none;
    border: 1px solid #f6f6f6;
    border-radius: 100px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    font-family: arial, verdana, helvetica, sans-serif;
    font-style: italic;
}

#form_newsletter input {
    padding-right: 50px;
}

label.error {
    color: red;
}

#form_newsletter label.error {
    margin-top: 3px;
    margin-left: 20px;
    display: block !important;
}

.form-group {
    margin-bottom: 15px;
}

#liste_menu_top {
    width: auto;
    height: auto;
    vertical-align: middle;
    float: right;
}

#liste_menu_top>li {
    list-style-type: none;
    width: auto;
    height: auto;
    float: left
}

#liste_menu_top>li>a {
    display: inline-block;
    color: #555;
    font-size: 15px;
    font-family: arial;
    text-decoration: none;
    margin-right: 25px;
}

#liste_menu_top>li:last-child>a {
    margin-right: 0;
}

#liste_menu_top>li>a:hover,
#liste_menu_top>li.active>a {
    color: #df2062;
}

/************************** /menu fixed top**********************/

/******************* scroll btn *********************/
.scroll-down {
    width: 75px;
    height: 93px;
    margin-left: auto;
    margin-right: auto;
    z-index: 999;
    position: relative;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    cursor: pointer;
}

.scroll-down a {
    background: url(../images/scroll-down.png) no-repeat;
    width: 75px;
    height: 93px;
    display: block;
}

.adresse-title {
    color: #da004b !important;
    font-weight: bold;
}

#accueil .scroll-down {
    top: 410px;
}

#accueil .scroll-down:hover {
    top: 430px;
}

.scroll-down.btn_services {
    top: 0px;
}

.scroll-down.btn_services:hover {
    top: 20px;
}

/******************* /scroll btn *********************/

/************* holdsname ****************/
div.holdsname span.holder {
    position: absolute;
    margin: 11px 8px;
    cursor: auto;
    font-family: 'gravitybook';
    font-size: 14px;
    color: #a6a6a6;
    z-index: 1;
}

div input {
    padding: 0 8px;
    font-family: 'gravitybook';
    font-size: 18px;
    color: #000;
}

/************* /holdsname ****************/

/************* bxslider ****************/
.box_membres .bx-wrapper {
    top: 137px;
    left: 115px;
}

.slider_membres .slide img {
    border: 1px solid #000;
}

.slider_membres .slide .nom_membre,
.slider_membres .slide .poste_membre {
    font-family: arial;
    color: #c5c5c5;
}

.slider_membres .slide .nom_membre {
    font-size: 18px;
    margin-top: 10px;
}

.slider_membres .slide .poste_membre {
    font-size: 14px;
}

.box_references .bx-wrapper {
    top: 183px;
    left: 198px
}

.box_references .bx-wrapper .bx-controls-direction a {
    margin-top: 242px;
}

.box_references .bx-wrapper .bx-prev {
    left: 245px;
}

.box_references .bx-wrapper .bx-next {
    right: 245px;
}

.slider_reference .slide>ul,
.slider_reference .slide>ul>li,
.slider_reference .slide>ul>li>a {
    display: inline-block;
    height: auto;
    width: auto;
    padding: 0;
}

.slider_reference .slide>ul {
    margin-bottom: 0;
}

.slider_reference .slide>ul>li {
    margin-bottom: 18px;
}

.slider_reference .slide>ul>li>a {
    margin: 0px;
}

.slider_reference .slide>ul>li>a>img {
    height: 130px;
    width: 130px;
    max-width: 130px;
    max-height: 130px;
    min-width: 130px;
    min-height: 130px;
    border: 1px solid #000;
    margin-left: auto;
    margin-right: auto;
    float: left;
}

.slider_reference .slide>ul>li:hover>a>img {
    border: 1px solid #fff;
}

/************* /bxslider ****************/

.story {
    margin: 0 auto;
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
}

#accueil .story {
    z-index: auto;
}

#contact .story {
    z-index: 6;
}

.titre,
.titer_style2,
.style_titre_popup {
    font-family: 'gravitybook';
    font-size: 40px;
    color: #000;
}

.style_titre_popup {
    font-size: 30px;
}

.titre {
    background: url(../images/trait_titre.png) left bottom no-repeat;
}

.titer_style2 {
    font-size: 45px;
}

.plus {
    height: 44px;
    line-height: 44px;
    width: 44px;
    float: right;
    background: url(../images/secteur_activites/plus.png) left top no-repeat;
    font-size: 18px;
    color: #FFF;
    text-align: center;
    font-family: 'gravitybook';
    text-decoration: none;
}

.plus:hover {
    text-decoration: underline;
}

.bordure_top {
    background: url(../images/bordure_en_top.png) #FFF left bottom repeat-x;
    height: 110px;
    width: 100%;
    position: absolute;
    top: 0px;
}

.bordure_bottom {
    background: url(../images/bordure_en_bas.png) #FFF left top repeat-x;
    height: 30px;
    width: 100%;
    position: absolute;
    bottom: 0px;
}

ul li {
    font-family: arial;
    font-size: 14px;
    color: #000;
    vertical-align: top;
}

#secteur_activites ul {
    list-style-image: url(../images/puce.png);
    margin-left: 90px;
}

ul.puce {
    list-style-image: url(../images/puce.png);
}

ul.puce>li {
    margin-bottom: 5px;
}

#accueil,
#secteur_activites,
#membre_et_references,
#contact {
    width: 100%;
}

#accueil {
    margin: 0 auto;
    padding: 0;
    position: relative;
    background: #fff;
}

#secteur_activites {
    height: 2100px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
}

#membre_et_references {
    height: 2140px;
    margin: 0 auto;
    padding: 0;
}

/*********** bg_accueil ***********/
.oiseaux_double_accueil {
    position: absolute;
    z-index: 8;
    top: 200px;
    left: 160px;
}

#accueil .bg2 {
    background: url(../images/nuage-big1.png) 0 no-repeat;
    height: 400px;
    width: 267px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 8;
    top: 110px;
    right: -45px;
}

#accueil .bg4 {
    background: url(../images/nuage-blanc1.png) 0 no-repeat;
    height: 600px;
    width: 193px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 80;
    top: 260px;
    right: 220px;
}

#accueil .bg5 {
    background: url(../images/trait.png) 0 no-repeat;
    height: 1000px;
    width: 1059px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 80;
    top: 400px;
    margin-left: auto;
    margin-right: auto;
}

.bg6 {
    background: url(../images/ballon-1.png) 0 no-repeat;
    height: 750px;
    width: 112px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 80;
    top: 170px;
    left: 500px;
}

#grand_format .bg6 {
    top: -200px;
    left: 370px;
    z-index: 81;
}

.bg7 {
    background: url(../images/ballon-3.png) 0 no-repeat;
    height: 324px;
    width: 47px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 80;
    top: 490px;
    left: 260px;
}

#grand_format .bg7 {
    top: 200px;
    left: 330px;
}

.bg8 {
    background: url(../images/ballon-2.png) 0 no-repeat;
    height: 257px;
    width: 73px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 80;
    top: 490px;
    left: 660px;
}

#grand_format .bg8 {
    top: 200px;
    left: 550px;
}

#accueil .bg3 {
    background: url(../images/nuage-big2a.png) 0 no-repeat;
    height: 200px;
    width: 309px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 8;
    top: 290px;
    left: 0px;
}

#accueil .bg9 {
    background: url(../images/nuage-blanc1a.png) 0 no-repeat;
    height: 200px;
    width: 309px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 9;
    top: 340px;
    left: -50px;
}

#presentation {
    margin: 0;
    padding: 0;
    position: relative;
    background: #FFF;
}

.bg_presentation {
    position: absolute;
    top: 0px;
    height: 743px;
    width: 100%;
    background: url(../images/bg-presentation.jpg) 50% top repeat-x;
    z-index: 1;
}

.bg_creation_communication {
    position: absolute;
    top: 0px;
    height: 1400px;
    width: 100%;
    background: url(../images/br-crea.jpg) 50% top repeat-x;
    z-index: 1;
}

.bg_objet {
    position: absolute;
    top: 0px;
    height: 1400px;
    width: 100%;
    background: url(../images/bg-objet.jpg) 50% top repeat-x;
    z-index: 1;
}

.bg_presentation_bottom {
    position: relative;
    height: 270px;
    padding: 100px 0;
    padding-bottom: 0;
    z-index: 3;
    width: 100%;
    overflow: hidden;
}

.bg_impression {
    position: absolute;
    top: 0px;
    height: 1300px;
    width: 100%;
    background: url(../images/bg-impression.jpg) 50% top repeat-x;
    z-index: 1;
}

.bg_grand_format {
    position: absolute;
    top: 0px;
    height: 1400px;
    width: 100%;
    background: url(../images/bg-grand_format.jpg) 50% top repeat-x;
    z-index: 1;
}

.bg1_service {
    height: 270px;
    background-size: cover;
    box-sizing: border-box;
    background: url("../images/bg-nos-services1.png");
    width: 100%;
}

.impression_nuage {
    position: absolute;
    top: 98px;
    right: 50px;
}

.f1 {
    position: absolute;
    top: 650px;
    right: 230px;
}

.f3-flou {
    position: absolute;
    top: 600px;
    right: 0px;
    z-index: 10;
}

.f3 {
    position: absolute;
    top: 770px;
    right: 155px;
}

.panneau {
    position: absolute;
    top: 370px;
    right: 10px;
    z-index: 4;
}

.lettre_feuille {
    position: absolute;
    top: 180px;
    left: 660px;
    z-index: 10;
}

.lettre {
    position: absolute;
    top: 250px;
    right: 350px;
}

.grass {
    position: absolute;
    top: 715px;
    right: 0px;
    z-index: 6;
}

.bg2_service {
    height: 270px;
    background-size: cover;
    box-sizing: border-box;
    background: url("../images/bg-nos-services2.png");
    position: absolute;
    top: 150px;
    z-index: 10;
    width: 2024px;
}

.bateau {
    position: absolute;
    top: 130px;
    right: 400px;
    z-index: 9;
}

.auto {
    position: absolute;
    top: -162px;
    right: 680px;
    z-index: 10;
}

.fum1 {
    position: absolute;
    top: 53px;
    right: 674px;
    z-index: 9;
}

.fum2 {
    position: absolute;
    top: 66px;
    right: 771px;
    z-index: 9;
}

.fum3 {
    position: absolute;
    top: 113px;
    right: 877px;
    z-index: 9;
}

.fum1_auto {
    position: absolute;
    right: 1000px;
    z-index: 9;
    top: 53px;
}

.fum2_auto {
    position: absolute;
    right: 1050px;
    z-index: 9;
    top: 56px;
}

.fum3_auto {
    position: absolute;
    right: 1100px;
    z-index: 9;
    top: 33px;
}

.pont {
    position: absolute;
    bottom: -100px;
    left: 0;
    background: url("../images/pont.png") left top repeat-x;
    width: 100%;
    height: 347px;
    z-index: 999;
}

.bulle_accuiel {
    position: absolute;
    z-index: 10;
    top: 110px;
    right: 120px;
}

.ville_fond {
    position: absolute;
    z-index: 10;
    top: 520px;
    right: 0px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}

.immeuble_fond {
    position: absolute;
    z-index: 10;
    top: 450px;
    right: 0px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}

.immeuble_milieu {
    position: absolute;
    z-index: 10;
    top: 700px;
    right: 0px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}

.immeuble_devant {
    position: absolute;
    z-index: 10;
    top: 570px;
    right: 0px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}

.left_imm_1 {
    position: absolute;
    z-index: 10;
    top: 300px;
    left: 0px;
}

.crayons_presentation {
    position: absolute;
    z-index: 80;
    top: -100px;
    left: 500px;
}

.crayons_flou {
    position: absolute;
    z-index: 90;
    top: 0px;
    right: 340px;
}

#accueil .nuage-big2 {
    background: url(../images/nuage-big2.png) 0 no-repeat;
    height: 119px;
    width: 309px;
    margin: 0;
    padding: 0;
    margin-top: 270px;
    margin-left: 80px;
}

.nuage_presentation_big {
    margin-left: 88px;
    position: relative;
    z-index: 5;
}

.nuage_presentation {
    margin-top: 70px;
    position: relative;
    left: -50px;
    z-index: 3;
}

.text_presention {
    max-width: 630px;
    height: 220px;
    margin: 0;
    padding: 0;
    margin-top: 250px;
    position: relative;
    z-index: 3;
}

.text_presention h2 {
    color: #000;
    font-family: 'gravityultralight';
    font-size: 40px;
    margin: 0;
    padding: 0;
}

.text_presention h3 {
    color: #d40b52;
    font-family: 'gravityultralight';
    font-size: 40px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.text_presention p {
    color: #555;
    font-family: 'gravitybook';
    font-size: 16px;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    width: 85%;
    line-height: 1.4rem;
}

.text_right {
    max-width: 560px;
    height: 600px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 8;
    top: 100px;
    right: 0px;
}

#grand_format .text_right {
    z-index: 1000;
}

.lampe_0 {
    position: absolute;
    top: -30px;
    left: 50px;
    z-index: 6;
}

.lampe_1 {
    position: absolute;
    top: -90px;
    left: 120px;
    z-index: 10;
}

.ecran_table {
    position: absolute;
    left: -110px;
    top: 100px;
}

.feuille1 {
    position: absolute;
    top: 500px;
    z-index: 20;
    left: 400px;
}

.feuille_flou {
    position: absolute;
    top: 780px;
    left: 140px;
    z-index: 30;
}

.feuille2 {
    position: absolute;
    top: 580px;
    left: 220px;
    z-index: 20;
}

.text_left {
    max-width: 560px;
    height: 600px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    z-index: 80;
    top: 100px;
    left: 0px;
}

.titre_large {
    background: #fbfbfb;
    font-family: 'gravityultralight';
    font-size: 50px;
    color: #555;
    width: 100%;
    padding: 30px 0px !important;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 999;
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, .04);
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, .04);
    box-shadow: 0 5px 7px rgba(0, 0, 0, .04);
    position: relative;
    border-top: 3px solid #e8e8e8;
}

.titre_large::after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background: url("../images/triangle.png") left top no-repeat;
    width: 64px;
    height: 32px;
}

.liste_a_puce {
    margin-bottom: 20px;
}

.liste_a_puce li {
    padding-left: 30px;
    background: url("../images/puce.png") left 5px no-repeat;
    color: #555;
    font-family: 'gravitybook';
    font-size: 18px;
    margin-bottom: 15px;
}

.voir_plus {
    color: #555;
    font-family: 'gravitybook';
    font-size: 20px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.icon_plus {
    display: inline-block;
    margin-right: 15px;
    background: url("../images/fleche-voir-plus.png") left top no-repeat;
    width: 54px;
    height: 53px;
    vertical-align: middle;
}

#accueil .bg_logo {
    background: url(../images/logo-big.png) top no-repeat;
    height: 80px;
    width: 559px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 280px;
    left: 292px;
    z-index: 1000;
}

.ville {
    position: absolute;
    top: 350px;
    height: 1300px;
    width: 100%;
    background: url(../images/bg1.jpg) 50% top repeat-x;
    z-index: 5;

}

#contact {
    background: #f7f7f7;
    height: 1700px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.bg_contact {
    position: absolute;
    top: 350px;
    height: 1600px;
    width: 100%;
    background: url(../images/bg-contact.jpg) 50% top repeat-x;
    z-index: 5;

}

.bg_blanc {
    background: #fff;
}

.wrap_ville {
    height: 1300px;
    overflow: hidden;
    position: relative;
}

.ville_footer {
    height: 524px;
    width: 100%;
    background: url(../images/ville.jpg) 50% top repeat-x;
}

.nuage-blanc1_footer {
    position: absolute;
    top: 0px;
    height: 697px;
    width: 193px;
    background: url(../images/nuage-blanc1.png) left top no-repeat;
    z-index: 10;
}

.logo-big_footer {
    position: absolute;
    top: 60px;
    height: 800px;
    width: 100%;
    background: url(../images/logo-big.png) 50% top no-repeat;
    z-index: 10;
}

.nuage-blanc1_footer_2 {
    position: absolute;
    top: 80px;
    right: 100px;
    height: 697px;
    width: 193px;
    background: url(../images/nuage-blanc1.png) left top no-repeat;
    z-index: 11;
}

.oiseaux-double_footer {
    position: absolute;
    top: 120px;
    left: 308px;
    height: 634px;
    width: 95px;
    background: url(../images/oiseaux-double.png) left top no-repeat;
    z-index: 11;
}

.nuage-big2a_footer {
    background: url(../images/nuage-big2a.png) left top no-repeat;
    position: absolute;
    top: 60px;
    right: 20px;
    height: 613px;
    width: 216px;
    z-index: 10;
}

#nos_services .story {
    padding-top: 70px;
    padding-bottom: 70px;
}

.voir_plus_rose {
    background: #f0f0f0;
    color: #000;
    font-size: 16px;
    font-family: 'gravitybook';
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 80px;
    text-align: center;
    outline: none;
    text-decoration: none;
    margin-top: 20px;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 60px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.voir_plus_rose span {
    position: relative;
    z-index: 3;
}

.voir_plus_rose::after {
    content: "";
    height: 100%;
    width: 0;
    background: #d50b53;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    display: none;
}

.voir_plus_rose:hover::after,
.voir_plus_rose:focus::after {
    width: 100%;
    border-radius: 100%;
}

.voir_plus_rose:hover,
.voir_plus_rose:focus {
    background: #d50b53;
    color: #fff;
    border: 1px solid #d50b53;
}

.titre_avec_quotes {
    color: #d50b53;
    text-align: center;
    font-family: 'gravityultralight';
    font-size: 50px;
    color: #555;
    position: relative;
    margin: 20px auto 50px auto;
    width: 280px;
    font-weight: 400;
}

.titre_avec_quotes::before {
    content: "";
    background: url("../images/99.png") left top no-repeat;
    width: 64px;
    height: 46px;
    position: absolute;
    top: -43px;
    right: -75px;
}

.liste_servises {
    text-align: center;
}

.liste_servises li {
    display: inline-block;
    margin: 20px 0px;
    max-width: 244px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    padding: 20px;
}

.liste_servises li:hover {
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.liste_servises li h2 {
    color: #df2062;
    font-family: 'gravitylight';
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.liste_servises li p {
    color: #777;
    font-family: 'gravityregular';
    font-size: 14px;
}

/*********** /bg_accueil ***********/

/*********** /creation_communication ***********/
.liste_crea {
    margin-top: 10px;
}

.liste_crea li {
    display: inline-block;
}

.slick-slide {
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
    /*padding: 30px 0;*/
}

.liste_crea_ {
    margin-left: -19px;
}

.titre_bloc+p {
    margin-bottom: 50px
}

.slick-slide img {
    padding: 28px 0;
    /*max-width: 100%;
    transition: all 0.4s ease-in-out;*/
    height: 300px;
    object-fit: cover;
    width: 200px;
}

.slick-current {
    z-index: 9;
    position: relative;
    left: -108px;
}

.slick-current img {
    width: 400px;
    height: 293px;
    object-fit: cover;
}

.slick-center {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}

.slick-slide:not(.slick-current) {
    opacity: 55%;
}




.item_crea {
    position: relative;
    overflow: hidden;
    display: block;
    width: 137px;
    height: 137px;
    background: url("../images/cadre-miniatures.png") left top no-repeat;
}

.item_crea::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    width: 122px;
    height: 122px;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4;
    opacity: 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.item_crea:hover::after {
    opacity: 1;
}

.item_crea img {
    margin-top: 9px;
    margin-left: 9px;
    width: 120px;
    height: 120px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.item_crea:hover img {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
}

#creation_communication {
    background: #f7f7f7;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 1200px;
}

#objets_publicitaires {
    background: #fff;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 1200px;
}



#impression {
    background: #fff;
    height: 1100px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

#grand_format {
    background: #f7f7f7;
    height: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.nuage-big1 {
    background: url(../images/nuage-big1.png) top no-repeat;
    height: 678px;
    width: 267px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: -100px;
    left: 135px;
    z-index: 10;
}

.oiseaux-double_2 {
    background: url(../images/oiseaux-double.png) top no-repeat;
    height: 534px;
    width: 95px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: -50px;
    left: 180px;
    z-index: 10;
}

.ballon-3_2 {
    background: url(../images/ballon-3.png) top no-repeat;
    height: 798px;
    width: 47px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 140px;
    left: 405px;
    z-index: 10;
}

.ballon-2_2 {
    background: url(../images/ballon-2.png) top no-repeat;
    height: 757px;
    width: 73px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 80px;
    left: 735px;
    z-index: 10;
}

.ballon-1-grand_2 {
    background: url(../images/ballon-1-grand.png) top no-repeat;
    height: 743px;
    width: 191px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: -100px;
    left: 473px;
    z-index: 10;
}

.nuage-blanc1_2 {
    background: url(../images/nuage-blanc1.png) top no-repeat;
    height: 797px;
    width: 193px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: -20px;
    right: 240px;
    z-index: 11;
}

.nuage-big2a_2 {
    background: url(../images/nuage-big2a.png) top no-repeat;
    height: 713px;
    width: 216px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 40px;
    right: 112px;
    z-index: 10;
}

.text_contact {
    background: url(../images/text_contact.png) top no-repeat;
    height: 993px;
    max-width: 674px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 550px;
    left: 308px;
    z-index: 10;
}

.trait_double {
    background: url(../images/trait_double.png) top no-repeat;
    height: 963px;
    width: 1059px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 600px;
    left: 0px;
    right: 0px;
    z-index: 10;
}

#contact .titre_avec_quotes {
    text-transform: uppercase;

}

.form_contact {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 800px;
}

.usb {
    position: absolute;
    top: 600px;
    left: 600px;
    z-index: 10;
}

.cadeau {
    position: absolute;
    top: 400px;
    left: 540px;
    z-index: 10;
}

.t-shirt {
    position: absolute;
    top: 90px;
    right: 140px;
    z-index: 10;
}

.date {
    position: absolute;
    top: 340px;
    right: 290px;
    z-index: 10;
}

.caffee {
    position: absolute;
    top: 380px;
    right: 20px;
    z-index: 10;
}

.obj-boite-cadeau {
    position: absolute;
    top: 700px;
    right: 60px;
    z-index: 9;
}

.crayons {
    background: url('../images/crayons.png') top no-repeat;
    height: 640px;
    width: 203px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 10px;
    left: 377px;
    z-index: 10;
}

.fleche_crayons {
    background: url('../images/fleche-crayons.png') top no-repeat;
    height: 635px;
    width: 356px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 176px;
    left: 10px;
    z-index: 10;
}

.nuage-gf-Left {
    background: url('../images/nuage-gf-Left.png') top no-repeat;
    height: 689px;
    width: 169px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 0px;
    left: 10px;
    z-index: 10;
}

.nuages-right {
    background: url('../images/3-nuages-right.png') top no-repeat;
    height: 678px;
    width: 191px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 0px;
    left: 440px;
    z-index: 10;
}

.ballon-1-grand {
    background: url('../images/ballon-1-grand.png') top no-repeat;
    height: 643px;
    width: 191px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 0px;
    left: 210px;
    z-index: 10;
}

.ballon-2 {
    background: url('../images/ballon-2.png') top no-repeat;
    height: 657px;
    width: 73px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 150px;
    left: 400px;
    z-index: 10;
}

.ballon-3 {
    background: url('../images/ballon-3.png') top no-repeat;
    height: 698px;
    width: 47px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 180px;
    left: 170px;
    z-index: 10;
}

.oiseaux-double {
    background: url('../images/oiseaux-double.png') top no-repeat;
    height: 634px;
    width: 95px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 180px;
    left: 503px;
    z-index: 10;
}

.trait {
    background: url('../images/trait.png') top no-repeat;
    height: 660px;
    width: 312px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 240px;
    left: 30px;
    z-index: 10;
}

.voiture {
    background: url('../images/voiture.png') top no-repeat;
    height: 70px;
    width: 131px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 702px;
    left: 210px;
    z-index: 10;
}

.emmeuble {
    background: url('../images/emmeuble.png') top no-repeat;
    height: 620px;
    width: 480px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 150px;
    right: 30px;
    z-index: 10;
}

.titre_bloc {
    color: #d40b52;
    font-family: 'gravitybook';
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 200;
    letter-spacing: -1px;
}

.titre_bloc+p {
    font-size: 18px;
    margin-top: 0;
    line-height: 1.4rem;
}

.zoombtn {
    width: 80px;
    font-size: 15px;
    padding: 0 8px;
}

.zoombtn:hover i {
    color: #fff !important;
}

.zoombtn i {
    margin-right: 4px;
    color: #df2062;
    font-size: 13px;
}

.my_progress {
    margin-top: 20px;
    margin-bottom: 40px;
}

.bulle_creation_communication {
    position: absolute;
    left: 340px;
    top: 176px;
}

.wrap_progress {
    margin-bottom: 10px;
    border-radius: 60px;
    width: 70%;
}

.wrap_progress .progress {
    background: rgba(36, 36, 36, 0.2);
    height: 35px;
    margin-bottom: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border-radius: 60px;
}

.wrap_progress .progress-bar {
    line-height: 35px;
    border-radius: 60px;
    background-color: #df2062;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    font-family: 'gravitybook';
    font-size: 16px;
    text-align: left;
    text-indent: 10px;
}

/*********** /creation_communication ***********/

.up {
    display: none;
    background: url(../images/up.png) no-repeat center center;
    width: 58px;
    height: 58px;
    position: fixed;
    z-index: 10;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    z-index: 1001;
    opacity: 0.5;
}

.up:hover {
    opacity: 1;
}

#formulaire_contact {
    width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}

#formulaire_contact .zone_form_left,
#formulaire_contact .zone_form_right {
    width: 285px;
    float: left;
}

#formulaire_contact .zone_form_right {
    margin-left: 34px;
}

#formulaire_contact input,
#formulaire_contact textarea {
    width: 285px;
    margin: 0px;
    border: none;
    background-color: #eee;
}

#formulaire_contact input {
    height: 44px;
    line-height: 44px;
    color: #a6a6a6;
    outline: none;
}

#formulaire_contact input:focus {
    background: #fff;
    color: #000;
}

#formulaire_contact textarea {
    height: 156px;
    padding: 8px;
    width: 285px;
    font-family: 'gravitybook';
    font-size: 14px;
    color: #a6a6a6;
    overflow: auto;
    outline: none;
}

#formulaire_contact textarea:focus {
    background: #fff;
    color: #000;
}

#formulaire_contact #envoyer {
    float: right;
    width: 110px;
}

#formulaire_contact #envoyer:hover {
    cursor: pointer;
}

.liste_footer>li {
    display: inline-block;
    margin: 20px;
    width: 248px;
}

.liste_footer>li h2 {
    color: #000;
    font-family: 'gravitylight';
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.liste_footer>li>ul li,
.liste_footer>li>ul li a {
    color: #555555;
    font-family: arial, verdana, helvetica, sans-serif;
    font-size: 15px;
    margin-bottom: 40px;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.liste_footer>li>ul li {
    margin-bottom: 10px;
}

.liste_footer>li>ul li a:hover,
.liste_footer>li>ul li a:focus {
    color: #df2062;
}

.clear {
    clear: both;
}

#btn_liste_menu_top {
    display: none;
    height: 17px;
    width: 24px;
    outline: none;
    background-color: transparent;

    background-repeat: no-repeat;
    background-position: 0 0;
    border: none;
    font-size: 0px;
    float: right;
    margin-right: 30px;
    margin-top: 14px;
    cursor: pointer;
}

.footer-contact {
    position: fixed;
    z-index: 999999;
    bottom: 0;
    text-align: center;
    background-color: #df2062;
    padding: 21px;
    width: 90%;
    text-decoration: none;
    color: #fff;
    border-top: 0px solid #e8e8e8;
    font-family: 'gravitybold';
}

#btn_liste_menu_top:hover {
    background-position: right 0;
    color: #df2062;
}

#btn_liste_menu_top i {
    font-size: 21px;
    color: #000;
}

.image_tablette {
    display: none;
}

.myauto {
    height: auto !important;
    width: auto !important;
}

.myrelative {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: auto !important;
}

.myauto .text_presention {
    height: auto;
    width: auto;
    margin: auto;
}

.mobile #accueil {
    background: url('../images/mobile.ville.jpg') no-repeat center top;
    height: 640px !important;
}

.mobile .story {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    width: auto;
}

.mobile .header_bottom .story {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

.logo_mobile {
    margin-top: 150px;
    margin-bottom: 40px;
    text-align: center;
}

.img_mobile {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.mobile .text_presention {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 55px;
}

.mobile .text_right,
.mobile .text_left,
.mobile .form_contact {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.mobile .wrap_progress {
    width: 100%;
}

.mobile .text_presention h2 {
    font-size: 30px;
}

.mobile .text_presention h3 {
    font-size: 24px;
}

.mobile #presentation .img_mobile {
    margin-bottom: 20px;
}

.mobile .titre_bloc {
    font-size: 27px;
}

.mobile .titre_large {
    font-size: 30px;
    padding: 15px 0px !important;
    margin-bottom: 45px;
}

.mobile #nos_services .story {
    padding-top: 0px;
    padding-bottom: 20px;
}

.mobile .titre_bloc+p {
    margin-bottom: 40px;
}

.mobile .liste_footer>li {
    margin-bottom: 0px;
}

.mobile .liste_footer>li h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.mobile .copyright {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px !important;
}

.mobile .bx-wrapper .bx-next {
    right: -38px;
}

.mobile .bx-wrapper .bx-prev {
    left: -17px;
}

.mobile .form_contact {
    position: relative;
    top: 0px;
}

.mobile #formulaire_contact .zone_form_left,
.mobile #formulaire_contact .zone_form_right {
    float: none;
    width: 100%;
    margin: 0;
}

.mobile #formulaire_contact {
    width: 280px;
    margin-bottom: 160px;
}

.mobile #formulaire_contact input,
.mobile #formulaire_contact textarea {
    width: 265px;
}

.mobile .titre_avec_quotes {
    font-size: 35px;
}

.mobile .titre_avec_quotes::before {
    right: -10px;
}

.mobile .titre_large {
    font-size: 24px;
    background: #df2062;
    color: #fff;
    border-top: 0px solid #e8e8e8;
    font-family: 'gravitybold';
}

.mobile .titre_large::after {
    background: url(../images/mobile.triangle.png) left top no-repeat;
}

.mobile-ville-footer {
    width: 100%;
}

.mobile #contact .img_mobile:first-child {
    margin-bottom: 20px;
}

.mobile #objets_publicitaires .img_mobile {
    margin-bottom: 20px;
}

.mobile #formulaire_contact {
    margin-top: 20px;
}

.slick-next:before,
.slick-prev:before {
    color: #a6a6a6 !important;
}

.slick-next:hover:before,
.slick-prev:hover:before {
    color: #df2062 !important;
}


.icones-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
}

.icones-footer li {
    border-radius: 15px 15px 0 0;
    width: 33.33%;
}

.icones-footer li:first-child {
    background-color: #c13768;
}

.icones-footer li:nth-child(2) {
    background-color: #00bcd2;
}

.icones-footer li:nth-child(3) {
    background-color: #52ae32;
}

.icones-footer li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 30px 8px;
    display: block;
    text-align: center;
    font-size: 16px;
    margin: 0 auto;
}

@media (max-width: 580px) {
    .up {
        bottom: 94px !important;
    }
}

@media (max-width: 580px) {
    body {
        padding-bottom: 75px;
    }
}

.icones-footer li a img {
    width: 30px;
    display: block;
    margin: 0 auto 9px;
}

.icones-footer li a i {
    font-size: 25px;
    display: block;
    margin: 2px auto 12px;
}

#menu_fixed.sticky .logo_top img {
    transform: scale(0.6);
}

#menu_fixed.sticky .logo_top img {
    transform-origin: left -36%;
}

#accueil .bg_logo {
    background: url(../images/logo-big--.png) top no-repeat;
    height: 230px;
    width: 559px;
    background-size: auto 100%;
    top: 196px;
}

.titre_large {
    font-family: 'gravitybook';
    color: #df2062;
}

.logo-mobile {
    width: 60%;
}

.logo-menu {
    height: 64px;
    margin-top: 13px;
}

#contact .titre_avec_quotes {
    font-family: 'gravitybook';
    color: #df2062;
}

.devis-express {
    border: 1px solid #000;
    background: #000;
    float: right;
    display: block;
    padding: 9px 15px;
    color: #fff !important;
    border-radius: 30px;
    line-height: 17px;
    margin-top: 35px;
    font-weight: bold;
}

.sticky .devis-express {
    margin-top: 11px;
}

a.demander-devis {
    font-size: 15px;
    font-family: arial;
    text-decoration: none;
    float: right;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    font-weight: bold;
    padding: 8px 17px;
    border-radius: 28px;
    width: 89px;
    text-align: center;
    margin-top: -61px;
}

.contact-h3 {
    color: #000;
    font-family: 'gravitybook';
    font-size: 22px;
    margin-bottom: 38px;
    font-weight: 200;
    letter-spacing: -1px;
    text-align: center;
    margin-top: -30px;
}

a.demander-devis:hover {
    color: #000;
    border: 1px solid #000;
    background: #fff;
}

.bouton_tools_bar {
    position: fixed;
    right: -400px;
    top: 108px;
    background-color: transparent;
    width: 400px;
    height: 100%;
    z-index: 10001;
    -webkit-transition: right .3s ease;
    -moz-transition: right .3s ease;
    transition: right .3s ease;
}

.bouton_tools_bar .bouton_tools_bar__icon_container {
    position: absolute;
    top: 33%;
    left: -61px;
    display: inline-block;
}

.bouton_tools_bar__icon:hover {
    left: -202px;
}

.bouton_tools_bar__icon a,
.bouton_tools_bar__icon a:hover,
.bouton_tools_bar__icon a:focus,
.bouton_tools_bar__icon a:active,
.bouton_tools_bar__icon a:visited {
    color: #fff;
}

.bouton_tools_bar__icon.bouton_tools_bar__icon_side_bar div.bouton_tools_bar__icon_src {
    background-position: 28px -36px;
    background-color: #00bcd2;
}

.bouton_tools_bar__icon_src .icon-phone {
    color: #489ecf;
}

.bouton_tools_bar__icon_src .sd-icon {
    background-color: white;
    padding: 11px;
    border-radius: 50%;
}

.bouton_tools_bar__icon_side_bar .bouton_tools_bar__icon_tooltip {
    background: #00bcd2;
}

.bouton_tools_bar__icon_src i {
    font-size: 32px;
    margin-top: 7px;
    margin-left: 7px;
}

.devis-express:hover {
    border: 1px solid #000;
    background-color: #fff;
    color: #000 !important;
}

.bouton_tools_bar__icon_tooltip {
    font-size: 13px;
    width: 207px;
    height: 60px;
    line-height: 25px;
    text-align: left;
    transition: all .2s ease;
    padding: 16px 20px;
    box-sizing: border-box;
    border-radius: 0;
    display: block;
    float: right;
    color: inherit;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: -.5px;
}

.one-line-height {
    line-height: 30px;
}

.bouton_tools_bar__icon div.bouton_tools_bar__icon_src {
    display: inline-block;
    width: 60px;
    height: 46px;
    line-height: 41px;
    border-radius: 30px 0 0 30px !important;
    transition: opacity .2s ease;
    color: inherit;
    font-size: 26px;
    padding-top: 6px;
    padding-bottom: 8px;
}

.bouton_tools_bar__icon_side_bar .bouton_tools_bar__icon_tooltip {
    background: #fff;
    border: 2px solid #00bcd2;
    color: #00bcd2;
    font-family: arial;
    padding: 6px 24px;
    line-height: 22px;
}

.bouton_tools_bar__icon_side_bar .bouton_tools_bar__icon_tooltip b {
    font-size: 23px;
    text-transform: none;
    text-align: center;
    display: block;
}

.bouton_tools_bar__icon_side_bar .bouton_tools_bar__icon_tooltip span {
    display: block;
    text-transform: none;
    text-align: center;
}

.devis_express_button .bouton_tools_bar__icon_tooltip b,
.devis_express_button .bouton_tools_bar__icon_tooltip span {
    color: #c13768;
}

.devis_express_button .bouton_tools_bar__icon_tooltip {
    border: 2px solid #c13768;
    color: #c13768;
    padding-top: 17px;
}

.titre_large::after {
    background: url(../images/mobile.triangle.png) left top no-repeat;
}

.titre_large {
    font-family: 'gravitybook';
    color: #FFF;
    background: #df2062;
}

.devis_express_button.bouton_tools_bar__icon_side_bar div.bouton_tools_bar__icon_src {
    background-color: #c13768;
}

.bouton_tools_bar__icon {
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: relative;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    left: 0;
    white-space: nowrap;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin-bottom: 2px;
}

@media (max-width: 960px) {
    a.demander-devis {
        float: none;
        width: 34%;
        display: block;
        margin: 10px auto 0;
    }

    .contact-h3 {
        font-size: 22px;
        margin-top: 6px;
    }

    a.devis-express {
        width: auto !important;
        float: left;
        line-height: 21px !important;
        height: 24px !important;
        text-align: center;
        padding: 10px 22px;
        margin: 6px 16px 17px;
    }
}

@media (max-width: 1050px) {

    #menu_fixed .logo_top img,
    #menu_fixed.sticky .logo_top img {
        transform: scale(1);
        width: 61px !important;
        margin-top: 0px;
        height: auto;
    }
}