/* ====================== Gestion couleur ======================== */

.bouton,
#menu_button:before,
#menu_button span,
#menu_button:after {
    background: #29abe2;
}
.cercle:after {
    border-color: #048045;
}

/* === Vert Secondaire : #96BE0E === */
.infos-contact {
    border-color: #96be0e;
}
h2:after {
    background: #96be0e;
}
.bouton:before {
    background: #296796;
}

/* ======================== GENERAL =============================*/
*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
html,
body {
    margin: 0;
    padding: 0;
    height: 100%; /* needed for container min-height */
    font-family: 'lato', arial, sans-serif;
    font-size: 16px;
    color: #808080;
    background-image: url(../images/background.jpg);
    background-size: cover;
    background-position: center center;
    overflow-x: hidden;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    cursor: pointer;
}
a,
p,
li,
input {
    font-family: 'lato', arial, sans-serif;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
button {
    cursor: pointer;
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?-xgy8fw');
    src: url('../fonts/icomoon.eot?#iefix-xgy8fw') format('embedded-opentype'),
        url('../fonts/icomoon.woff?-xgy8fw') format('woff'), url('../fonts/icomoon.ttf?-xgy8fw') format('truetype'),
        url('../fonts/icomoon.svg?-xgy8fw#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^='icon-'],
[class*=' icon-'],
.icone {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 2em;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

i:before {
    font-size: 0.6em;
    vertical-align: bottom;
}
.icon-tel:before {
    content: '\e974';
}
.icon-fax:before {
    content: '\e921';
}
.icon-mail:before {
    content: '\ea11';
}

.wrapper {
    display: block;
    height: 100%;
    width: 100%;
}

#content-container {
    min-height: 100%;
    margin: auto;
    position: relative;
    padding-top: 4px;
}
.section {
    max-width: 1200px;
    margin: auto;
}

#content {
    display: block;
    margin: auto;
    min-height: 100%;
    padding-bottom: 350px;
}
.fond-blanc {
    background: #fff;
}
b {
    font-weight: bold;
    color: #000;
}
.miseenvaleur {
    font-weight: bold;
}
h1 {
    font-size: 3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: bold;
}
h1 {
    color: #58646a;
}
h2 {
    font-size: 1.6em;
    position: relative;
    margin-bottom: 10px;
    font-weight: lighter;
}
h3 {
    font-size: 1.2em;
    font-weight: bold;
}
p {
    margin: 10px 0;
    text-align: justify;
    line-height: 1.4em;
}
.titrepage {
    text-align: center;
}
h3.titrepage {
    margin-bottom: 30px;
    margin-top: 30px;
}

/* ============================= UI  ================== */
/* === bouton txt =========*/
.bouton {
    background: #29abe2;
    text-align: center;
    padding: 15px 20px;
    color: #fff;
    font-weight: bold;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 25px;
    overflow: hidden;
    display: inline-block;
    min-width: 100px;
    position: relative;
    z-index: 5;
    margin: 20px auto;
    cursor: pointer;
}

.bouton:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    z-index: -1;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.bouton:hover::before {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

/* ====================== HEADER ======================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 98;
    height: 65px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-align: center;
    left: 0;
}
/* =============== NAVIGATION ===============*/
#logo {
    display: inline-block;
    position: absolute;
    color: #fff;
    background: #e6e6e6;
    padding: 20px;
    width: 180px;
    left: 50%;
    margin-left: -90px;
    top: 0;
    z-index: 99;
}
#logo img {
    width: 100%;
}
#nav_header {
    width: 100%;
    font-size: 13px;
    margin: 0 0;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    background: #fff;
    border-bottom: 2px solid #eee;
}

.menu {
    display: inline-block;
    padding-left: 0;
    width: 350px;
}

.menu-gauche {
    text-align: right;
    margin-right: 200px;
}

.menu-droit {
    text-align: left;
}
.menu > li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 30px;
    padding-right: 30px;
    padding: 30px;
}
.menu > li > a {
    display: block;
    padding: 0 2px 6px;
    font-size: 13px;
    color: #666;
    font-family: 'Lato';
    text-transform: uppercase;
    -webkit-font-smoothing: subpixel-antialiased !important;
}

/* ====================================================== NAV mobile ================================================== */
/* ================================== BOUTON MENU RESPONSIVE ===========================*/
#menu_button {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    top: 4px;
    z-index: 999;
    cursor: pointer;
    display: none;
}
#menu_button:before {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}
#menu_button:after {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
#menu_button span {
    display: block;
}
#menu_button.active span {
    opacity: 0;
}

#menu_button.active:after {
    width: 80%;
    left: 10%;
}

#menu_button:before,
#menu_button span,
#menu_button:after {
    content: '';
    height: 3px;
    left: 10%;
    margin-top: -1px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    width: 80%;
}
#menu_button:after {
    width: 80%;
    left: 10%;
}

#menu_button.active:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
#menu_button.active:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.logo_responsive {
    width: 100px;
    position: absolute;
    left: 5px;
    top: 5px;
    display: none;
}

/* =============== NAVIGATION MOBILE ===============*/

@media only screen and (max-width: 960px) {
    #content-container {
        padding-top: 65px;
    }
    #logo {
        width: 130px;
        position: absolute;
        left: 10px;
        top: 5px;
        margin: 0;
        background: #fff;
    }
    .logo_responsive {
        display: block;
    }
    .logo {
        display: none;
    }

    #menu_button {
        display: block;
    }
    /* NAV */
    .nav-menu {
        display: table;
        vertical-align: bottom;
        height: 100%;
        width: 100%;
    }

    #nav_header {
        position: fixed;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        top: 0;
        margin: 0;
        background: #fff;
        height: 100%;
        right: 0;
        width: auto;
        padding-top: 80px;
        transform: transformX(110%);
        -webkit-transform: translateX(110%);
        -moz-transform: translateX(110%);
        -ms-transform: translateX(110%);
        -o-transform: translateX(110%);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
        -o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
    }

    #nav_header ul {
        display: block;
        width: 100%;
        min-width: 200px;
    }
    #nav_header ul li {
        border: medium none;
        display: block;
        text-align: right;
        border-bottom: 1px solid #dedede;
        display: block;
        vertical-align: middle;
        height: auto;
        padding-left: 0;
        padding-right: 0;
    }
    #nav_header ul li.active a {
        background: #29abe2;
    }
    #nav_header ul li.active a {
        color: #fff;
    }

    #nav_header ul li a {
        display: block;
        width: 100%;
        padding: 20px;
        transition: all 0.5s ease 0s;
        /* line-height: 2.3em; */
        /* font-weight: bold; */
        color: #666;
        text-decoration: none;
        text-transform: none;
        font-size: 1em;
        text-align: right;
        font-family: Lato, sans-serif;
    }

    #nav_header ul li:last-child a {
        border-bottom: none;
    }

    #nav_header ul li a:hover,
    #nav_header ul li a:focus {
        background: #dedede;
        color: #000;
    }

    /* === navigation ouverte ====*/

    #nav_header.active {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .menu > li {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* ====================================================================================== HOME ======================================================================================*/
.slide {
    background-position: center center;
    background-size: cover;
    max-height: 400px;
}

.text_ck table {
    border: none !important;
    width: 90% !important;
}
.text_ck table td {
    padding: 5px !important;
    border: none !important;
}
.text_ck table td {
    padding: 5px !important;
    border: none !important;
}
.text_ck tr:nth-child(even) {
    background: #e9e9e9;
}
.text_ck tr:nth-child(odd) {
    background: #f6f6f6;
}
.text_ck tr td p {
    text-align: left !important;
}

.slide .section {
    padding: 190px 0 180px 0;
    text-align: center;
    max-width: 850px;
}

.slide h2 {
    line-height: 1.2em;
    color: #fff;
    text-align: center;
    font-weight: 400;
    text-shadow: 2px 1px 1px #444;
}
#home_bloc {
    padding: 40px 0;
}

.item-image .titre {
    vertical-align: center;
    color: #fff;
    font-size: 1.5em;
    font-weight: lighter;
    min-height: 90px;
    padding: 0 20px;
    height: 100px;
    line-height: 100px;
    text-align: center;
}
.item-image .titre p {
    vertical-align: middle;
    display: inline-block;
    line-height: normal; /* on rétablit le line-height */
    text-align: left;
}
.item-image .image-container {
    background-size: cover;
    background-position: center center;
    height: 300px;
}

.item-image:nth-child(n) {
    background: #0071bc;
}
.item-image:nth-child(2n) {
    background: #29abe2;
}
.item-image:nth-child(3n) {
    background: #4d4d4d;
}
.item-image:nth-child(4n) {
    background: #0071bc;
}

/* =================== Cercles ======== */
.cercle-container {
    text-align: center;
    border-radius: 50%;
}
.cercle {
    position: relative;
    width: 80%;
    background-size: cover;
    background-position: center center;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.7);
    display: block;
    margin: auto;
}
.cercle:after {
    border-width: 2px;
    border-style: solid;
    position: absolute;
    width: 110%;
    left: -5%;
    content: '';
    display: block;
    top: -5%;
    height: 110%;
    border-radius: 50%;
}

.cercle:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.cercle-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}
.cercle-content div {
    display: table;
    width: 100%;
    height: 100%;
}
.cercle-content span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white;
}

/* ====================== Page contact =================== */
.infos-contact {
    padding: 15px 0;
    border-bottom-width: 2px;
    border-style: solid;
    font-size: 1.2em;
}
.infos-contact a {
    color: #000;
}
.infos-contact i {
    height: 15px;
    margin-top: -12px;
    display: inline-block;
}
.contact h3 {
    margin-top: 20px;
}
.container-image {
    text-align: center;
}
.container-image img {
    display: block;
    margin: auto;
    width: 100%;
}
.social-media a {
    display: inline-block;
    margin: 12px;
    position: relative;
    height: 50px;
}
.social-media a:first-child {
    margin-left: 0;
}
.social-media img {
    height: 100%;
    display: block;
}
/* ====================== Footer ======================== */
footer {
    background: #70ceef;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}
#infos_contact {
    padding: 80px 10%;
    text-align: left;
    background: #0071bc;
    font-size: 1.2em;
}

#googlemap {
    padding: 0;
}
#googlemap iframe {
    border: none;
    display: block;
}

#bottom-footer {
    background: #29abe2;
    text-align: center;
    padding: 15px;
}
footer a {
    color: #fff;
}

/* ====================== Icones ======================== */
.icon-twitter:before {
    content: '\e618';
}
.icon-calendrier:before {
    content: '\e80b';
}
.icon-plus:before {
    content: '\e80c';
}
.icon-brief:before {
    content: '\e800';
}
.icon-relevant:before {
    content: '\e801';
}
.icon-interest:before {
    content: '\e802';
}
.icon-technical:before {
    content: '\e803';
}
.icon-overview:before {
    content: '\e804';
}
.icon-right:before {
    content: '\e805';
}
.icon-left:before {
    content: '\e806';
}
.icon-business:before {
    content: '\e807';
}
.icon-bottom:before {
    content: '\e808';
}
.icon-top:before {
    content: '\e809';
}

/* ======== GRILLE TABLEAU ============*/
.table {
    display: table;
    width: 100%;
}
.cell {
    display: table-cell;
    vertical-align: top;
    z-index: 2;
    position: relative;
}

.cell_30 {
    width: 30%;
}
.cell_33 {
    width: 33.3%;
}
.cell_60 {
    width: 60%;
    padding-right: 5%;
}
.cell_40 {
    width: 40%;
    padding-left: 5%;
}
.cell_70 {
    width: 70%;
}
.cell_25 {
    width: 25%;
}

.cell_50 {
    width: 50%;
}

.cell img,
.colonne img {
    max-width: 100%;
}
/* ======== GRILLE inline-block ============*/
.section {
    clear: both;
    padding: 0px;
}

/*  COLUMN SETUP  */
.colonne {
    display: block;
    float: left;
    margin: 1% 0 1% 1.6%;
}
.colonne:first-child {
    margin-left: 0;
}

/*  GROUPING  */
.group:before,
.group:after {
    content: '';
    display: table;
}
.group:after {
    clear: both;
}
.group {
    zoom: 1; /* For IE 6/7 */
}

/*  GRID OF THREE  */
.colonne_25 {
    width: 23.8%;
}
.colonne_33 {
    width: 32.2%;
}

.colonne_50 {
    width: 49.2%;
}

/* ================================== PAGE =============================== */
.bloc_titre {
    text-align: center;
    background: #29abe2;
    padding: 170px 0 20px 0;
    color: #fff;
}
.bloc_titre .titre {
    padding-top: 20px;
    font-size: 2em;
    font-weight: lighter;
}
.item-image .titre {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.item-image .texte {
    color: #fff;
    padding: 20px;
    font-weight: 300;
}

#bloc_contenu {
    padding-top: 40px;
    padding-bottom: 30px;
}

#contenu_site {
    width: 100%;
    background: #fff;
    color: #000;
}
.responsive_content {
    margin: 0 auto;
    width: 1020px;
}

h3 {
    color: #29abe2;
    font-size: 200%;
    margin: 10px;
    margin-left: 0;
}
h4 {
    color: #0071bc;
    font-size: 150%;
    margin: 10px;
    margin-left: 0;
}

/* ------------------------------------------------ */
/* Pour page contact */
/* ------------------------------------------------ */

input[type='text'],
input[type='password'],
.form_contact input,
textarea,
.div_element_inscription input[type='text'],
.div_element_inscription input[type='password'],
.div_element_inscription select {
    padding: 10px !important;
    margin: 10px !important;
    box-shadow: 2px 2px 2px 2px #ddd;
    border: none;

    width: 90% !important;
    /* background:none;
  border:0 !important; */
}

.form_contact input[type='submit'] {
    background: #29abe2;
    border: 0 !important;
    color: #fff;
}

.form_contact td {
    vertical-align: middle;
}
.form_contact small {
    font-size: 10px;
    font-style: italic;
    color: #666;
}

@media only screen and (max-width: 1200px) {
    .responsive_content {
        width: 100%;
        margin: 5px;
        padding-right: 10px;
    }
    header {
        border: 2px solid #ddd;
    }
    .section {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
}
@media only screen and (max-width: 960px) {
    .slide .section {
        padding: 10px 0;
    }

    .bloc_titre img {
        display: none;
    }

    .bloc_titre {
        padding-top: 0px;
    }
    .item-image {
        width: 49.2%;
    }
    .item-image:nth-child(2n + 1) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 720px) {
    #content {
        padding-bottom: 300px !important;
    }
    .cell {
        width: 100%;
        margin: 0;
        display: block;
        padding: 20px;
    }
    footer #infos_contact {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .colonne {
        width: 100%;
        margin: 10px 0;
    }
    .cercle {
        margin: 30px auto;
    }
}
