/* -------------------------------- 

Primary style

-------------------------------- */
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: "Open Sans", sans-serif;
    color: #030d18;
    background-color: #f0eee1;
}

a {
    color: #f5484a;
    text-decoration: none !important;
}

img {
    max-width: 100%;
}

label.error{ font-size:10px; color:#A7181A}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    /*width: 90%;
  max-width: 768px;
  margin: 0 auto;*/
}

    .cd-container:after {
        content: "";
        display: table;
        clear: both;
    }

.has-top-margin {
    /* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}

@media only screen and (max-width: 992px) {
    .tabs nav ul li {
        width: 30% !important;
    }

    .tabs nav a {
        display: inline !important;
    }

    .wrap-owl-top {
        width: 100% !important;
    }

    .wrap-owl-bottom {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1170px) {
    .has-top-margin {
        -webkit-animation: animate-margin-top 0.3s;
        -moz-animation: animate-margin-top 0.3s;
        animation: animate-margin-top 0.3s;
    }
}

@-webkit-keyframes animate-margin-top {
    0% {
        margin-top: 100px;
    }

    100% {
        margin-top: 70px;
    }
}

@-moz-keyframes animate-margin-top {
    0% {
        margin-top: 100px;
    }

    100% {
        margin-top: 70px;
    }
}

@keyframes animate-margin-top {
    0% {
        margin-top: 100px;
    }

    100% {
        margin-top: 70px;
    }
}
/* -------------------------------- 

Navigation

-------------------------------- */
.cd-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background-color: #030d18;
    z-index: 3;
}

@media only screen and (min-width: 768px) {
    .cd-header {
        height: 60px;
        background-color: #000;
        box-shadow: none;
    }

    #cd-logo {
        margin: 23px 0 0 5%;
    }

    #cd-placeholder-3 .itemPlace3 .wrapIntro-item {
        margin-bottom: 150px !important;
    }
}

#cd-logo {
    float: left;
    margin: 8px 15px;
}

    #cd-logo img {
        display: block;
    }

@media only screen and (max-width: 768px) {
    #cd-intro {
        margin-top: 0px !important;
    }

    .responsiveLogo {
        margin-left: 10px;
    }

    .tabs nav ul li {
        width: 100% !important;
    }

    .cd-primary-nav img {
        margin: 20px auto;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-owl-bottom p {
        padding: 20px 0px !important;
    }

    .wrap-pop-up {
        padding: 1em 0 !important;
    }

    .head-pop-up p {
        font-size: 20px !important;
    }

    .head-pop-up {
        padding-bottom: 1em !important;
    }

    .cd-popup-container {
        margin: 1em auto !important;
    }

    .wrap-pop-up {
        height: 450px;
        overflow-y: scroll !important;
    }

    .wrap-content-des h2 {
        display: none;
    }
}

@media only screen and (min-width: 1170px) {
    #cd-logo.is-hidden {
        /* assign a position fixed and move outside the viewport (on the left) */
        opacity: 0;
        position: fixed;
        left: -20%;
        margin-left: 0;
        -webkit-transition: left 0.3s, opacity 0.3s;
        -moz-transition: left 0.3s, opacity 0.3s;
        transition: left 0.3s, opacity 0.3s;
    }

        #cd-logo.is-hidden.slide-in {
            /* slide in when the secondary navigation gets fixed */
            left: 5%;
            opacity: 1;
        }
}

.cd-primary-nav {
    /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
    float: right;
    /*margin-right: 5%;*/
    width: 44px;
    height: 100%;
    background: url("../img/cd-icon-menu.svg") no-repeat center center;
    background-size: 44px 44px;
}

    .cd-primary-nav ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

        .cd-primary-nav ul.is-visible {
            -webkit-transform: translateY(50px);
            -moz-transform: translateY(50px);
            -ms-transform: translateY(50px);
            -o-transform: translateY(50px);
            transform: translateY(50px);
            background-color: #000101;
        }

            .cd-primary-nav ul.is-visible li {
                float: right;
                margin-right: 20px;
            }

/*.cd-primary-nav a {
        display: block;
        height: 60px;
        line-height: 15px;
        padding-left: 5%;
        background: #000101;
        border-top: 1px solid #051426;
        color: #f0eee1;
    }*/

@media only screen and (min-width: 768px) {
    .cd-primary-nav {
        /* reset navigation values */
        width: auto;
        height: auto;
        background: none;
    }

        .cd-primary-nav ul {
            position: static;
            width: auto;
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
            transform: translateY(0);
        }

            .cd-primary-nav ul.is-visible {
                -webkit-transform: translateY(0);
                -moz-transform: translateY(0);
                -ms-transform: translateY(0);
                -o-transform: translateY(0);
                transform: translateY(0);
            }

        .cd-primary-nav li {
            display: inline-block;
            margin-right: 20px;
            float: right;
        }

            .cd-primary-nav li img {
                margin-top: 20px;
            }
}

/* -------------------------------- 

Intro

-------------------------------- */
#cd-intro {
    position: relative;
    /*height: 300px;*/
    background: url(../img/intro-background.jpg) no-repeat center center;
    background-size: cover;
    z-index: 2;
}

    #cd-intro #cd-intro-tagline {
        max-width: 1170px;
        margin: 0 auto;
        text-align: center;
        padding-top: 60px;
    }

.content-intro h1 {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    text-transform: uppercase;
}

.content-intro p {
    color: #fff;
    line-height: 1.5;
    font-size: 17px;
    text-align: left;
    margin: 20px 0;
}

.content-intro span {
    color: #d2492a;
    line-height: 1.5;
    font-size: 20px;
    float: left;
    margin: 10px 0px;
    font-weight:bold;
}

@media only screen and (min-width: 1170px) {
}

.cd-btn {
    display: inline-block;
    padding: 1em 1.8em;
    background-color: rgba(245, 72, 74, 0.9);
    margin-top: 1em;
    border-radius: 20em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
}

.no-touch .cd-btn:hover {
    background-color: #f5484a;
}

@media only screen and (min-width: 1170px) {
    .cd-btn.is-hidden {
        /* assign a position fixed and move outside the viewport (on the right) */
        opacity: 0;
        position: fixed;
        right: -20%;
        top: 0;
        padding: .8em 1.2em;
        margin: 14px 0 0;
        -webkit-transition: right 0.3s, opacity 0.3s;
        -moz-transition: right 0.3s, opacity 0.3s;
        transition: right 0.3s, opacity 0.3s;
    }

        .cd-btn.is-hidden.slide-in {
            /* slide in when the secondary nav gets fixed */
            right: 5%;
            opacity: 1;
        }
}

/* -------------------------------- 

Secondary Fixed Navigation

-------------------------------- */
.cd-secondary-nav {
    position: relative;
    z-index: 3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .cd-secondary-nav ul {
        /* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
        position: fixed;
        width: 90%;
        max-width: 400px;
        right: 5%;
        bottom: 20px;
        border-radius: 0.25em;
        background: rgba(3, 13, 24, 0.96);
        visibility: hidden;
        z-index: 1;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 100% 100%;
        -moz-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
        -o-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
        -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
        -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
        transition: transform 0.3s, visibility 0s 0.3s;
    }

        .cd-secondary-nav ul.is-visible {
            visibility: visible;
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
            -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
            transition: transform 0.3s, visibility 0s 0s;
        }

    .cd-secondary-nav li a {
        display: block;
        padding: 1.6em;
        border-bottom: 1px solid #092645;
        color: #f0eee1;
    }

    .cd-secondary-nav li:last-child a {
        border-bottom: none;
    }

@media only screen and (min-width: 1170px) {
    .cd-secondary-nav {
        z-index: 1;
        /*height: 100px;*/
        background-color: #061a35;
        -webkit-transition: height 0.3s;
        -moz-transition: height 0.3s;
        transition: height 0.3s;
    }

        .cd-secondary-nav nav, .cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
            height: 100%;
        }

        .cd-secondary-nav ul {
            /* reset navigation values */
            position: static;
            width: auto;
            max-width: 100%;
            visibility: visible;
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            text-align: center;
            background-color: transparent;
        }

        .cd-secondary-nav li {
            /*display: inline-block;
    margin-left: -4px;*/
            float: left;
        }

            .cd-secondary-nav li a {
                position: relative;
                text-align: center;
                display: block;
                padding: 30px 25px 30px 25px;
                border-bottom: none;
                -webkit-transition: padding 0.2s;
                -moz-transition: padding 0.2s;
                transition: padding 0.2s;
                border-right: 1px solid #656262;
            }

            .cd-secondary-nav li:nth-of-type(1) a {
                padding: 25px 25px 25px 25px;
            }

            .cd-secondary-nav li a b {
                text-transform: uppercase;
                font-size: 13px;
                font-size: 0.8125rem;
                font-weight: 700;
                color: rgba(240, 238, 225, 0.7);
            }

            .cd-secondary-nav li a span {
                position: absolute;
                display: inline-block;
                width: 40px;
                height: 40px;
                top: 18px;
                left: 50%;
                right: auto;
                -webkit-transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -o-transform: translateX(-50%);
                transform: translateX(-50%);
                background-repeat: no-repeat;
                background-image: url(../img/cd-nav-icons.svg);
                -webkit-transition: opacity 0.2s;
                -moz-transition: opacity 0.2s;
                transition: opacity 0.2s;
            }

            .cd-secondary-nav li a:hover b, .cd-secondary-nav li a.active b {
                color: #f0eee1;
            }

            .cd-secondary-nav li a.active {
                background-color: #244562;
                border-bottom: 5px solid #00a7e8;
            }

            .cd-secondary-nav li a:hover {
                background-color: #244562;
                border-bottom: 5px solid #00a7e8;
            }



            .cd-secondary-nav li:nth-child(1) a span {
                background-position: 0 0;
            }

            .cd-secondary-nav li:nth-child(2) a span {
                background-position: -40px 0;
            }

            .cd-secondary-nav li:nth-child(3) a span {
                background-position: -80px 0;
            }

            .cd-secondary-nav li:nth-child(4) a span {
                background-position: -120px 0;
            }

            .cd-secondary-nav li:nth-child(5) a span {
                background-position: -160px 0;
            }

        .cd-secondary-nav.is-fixed {
            /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
            /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
            position: fixed;
            left: 0;
            top: 0;
            height: 80px;
            width: 100%;
        }

        .cd-secondary-nav.animate-children {
            /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
            /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

            .cd-secondary-nav.animate-children li a {
                padding: 30px 25px 30px 25px;
            }

            .cd-secondary-nav.animate-children li:nth-of-type(1) a {
                padding: 25px 25px 25px 25px;
            }

            .cd-secondary-nav.animate-children li a span {
                opacity: 0;
            }
}

.cd-secondary-nav-trigger {
    position: fixed;
    bottom: 20px;
    right: 5%;
    width: 44px;
    height: 44px;
    background: rgba(3, 13, 24, 0.96);
    border-radius: 0.25em;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 2;
}

    .cd-secondary-nav-trigger span {
        /* the span element is used to create the menu icon */
        position: absolute;
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #f0eee1;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        -webkit-transition: background 0.3s;
        -moz-transition: background 0.3s;
        transition: background 0.3s;
    }

        .cd-secondary-nav-trigger span::before, .cd-secondary-nav-trigger span::after {
            content: '';
            position: absolute;
            background: inherit;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .cd-secondary-nav-trigger span::before {
            right: -10px;
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -ms-transform: rotate(0);
            -o-transform: rotate(0);
            transform: rotate(0);
        }

        .cd-secondary-nav-trigger span::after {
            left: -10px;
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -ms-transform: rotate(0);
            -o-transform: rotate(0);
            transform: rotate(0);
        }

    .cd-secondary-nav-trigger.menu-is-open {
        background: transparent;
    }

        .cd-secondary-nav-trigger.menu-is-open span {
            background: rgba(240, 238, 225, 0);
            width: 20px;
            height: 2px;
        }

            .cd-secondary-nav-trigger.menu-is-open span::before, .cd-secondary-nav-trigger.menu-is-open span::after {
                background: #f0eee1;
                width: 100%;
                height: 100%;
                border-radius: 0;
                top: 0;
                left: 0;
            }

            .cd-secondary-nav-trigger.menu-is-open span::before {
                -webkit-transform: rotate(135deg);
                -moz-transform: rotate(135deg);
                -ms-transform: rotate(135deg);
                -o-transform: rotate(135deg);
                transform: rotate(135deg);
            }

            .cd-secondary-nav-trigger.menu-is-open span::after {
                -webkit-transform: rotate(225deg);
                -moz-transform: rotate(225deg);
                -ms-transform: rotate(225deg);
                -o-transform: rotate(225deg);
                transform: rotate(225deg);
            }

@media only screen and (min-width: 1170px) {
    .cd-secondary-nav-trigger {
        display: none;
    }

    #cd-placeholder-2, #cd-placeholder-3, #cd-placeholder-4, #cd-placeholder-5 {
        padding-top: 4em !important;
    }

    #cd-placeholder-1 {
        padding: 6em 0;
    }
}
@media only screen and (max-width: 1170px) {
    #cd-placeholder-2, #cd-placeholder-3, #cd-placeholder-4, #cd-placeholder-5 {
        padding-top: 2em;
    }

    #cd-placeholder-1 {
        padding: 3em 0;
    }
    .outils {
        font-size:25px !important;
    }
        .outils:before {
            margin:0 5px 8px 0px;
        }
        .outils:after {
            margin:0 5px 8px 5px;
        }
}
@media only screen and (max-width: 1300px) {
}

@media only screen and (min-width: 1200px) {
    .wrap-content-des h2:after {
        width: 300px;
    }

    .wrap-content-des h2:before {
        width: 300px;
    }

    .itemPlace3 .body-itemPlace3 {
        height: 1050px;
        min-height: 1050px;
        max-height: 1050px;
        overflow: hidden;
        margin-bottom: 30px;
    }
}
/* -------------------------------- 

Placeholder Sections

-------------------------------- */
.cd-section {
    margin: 0 auto;
}

    .cd-section h2 {
        font-size: 34px;
        margin-bottom: .6em;
        font-weight: 500;
    }

    .cd-section p {
        line-height: 1.6;
    }

@media only screen and (min-width: 1170px) {
    .cd-section {
        margin: 0 auto;
    }

        .cd-section h2 {
            font-size: 34px;
            font-size: 1.875rem;
        }

        .cd-section p {
            font-size: 20px;
            font-size: 1.25rem;
        }
}

#cd-intro {
    background: url(../img/bg_intro.jpg) no-repeat center;
    background-size: cover;
    margin-top: 60px;
}

#cd-placeholder-1 {
    background: url(../img/bg1.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

    #cd-placeholder-1 h2, #cd-placeholder-2 h2, #cd-placeholder-3 h2, #cd-placeholder-4 h2, #cd-placeholder-5 h2 {
        margin: 60px 0;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5;
        margin-top: 0px;
        font-weight:bold;
    }

        #cd-placeholder-1 h2 span, #cd-placeholder-2 h2 span, #cd-placeholder-3 h2 span, #cd-placeholder-4 h2 span, #cd-placeholder-5 h2 span {
            color: #fff;
            line-height: 1.5;
        }

#cd-placeholder-2 {
    background: url(../img/bg2.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

#cd-placeholder-3 {
    background: url(../img/bg3.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

#cd-placeholder-4 {
    background: url(../img/bg4.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

#cd-placeholder-5 {
    background: url(../img/bg5.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.intro-item {
    margin-bottom: 20px;
}

    .intro-item:nth-child(1) .wrapIntro-item {
        background-color: #3f9c35;
    }

    .intro-item:nth-child(2) .wrapIntro-item {
        background-color: #3ccedf;
    }

    .intro-item:nth-child(3) .wrapIntro-item {
        background-color: #d2492a;
    }

.wrapIntroImg {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
}

    .wrapIntroImg img {
        margin: 0 auto;
        padding: 25px;
    }

.wrapIntro-item {
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
}

    .wrapIntro-item span {
        color: #fff;
        font-size: 15px;
        font-weight:bold;
    }

.wrapExpertise-item {
    background-color: #061a35;
    padding: 25px;
    height: 370px;
    max-height: 370px;
    min-height: 370px;
    overflow: hidden;
}

    .wrapExpertise-item img {
        padding-bottom: 25px;
        margin: 0 auto;
    }

.Expertise-item-green {
    color: #3f9c35;
}

.Expertise-item-blue {
    color: #3ccedf;
}

.Expertise-item-orange {
    color: #d2492a;
}

.Expertise-item span {
    font-size: 25px;
    font-weight: bold;
}

.Expertise-item {
    margin-bottom: 20px;
}

    .Expertise-item ul {
        padding-top: 20px;
    }

        .Expertise-item ul li {
            color: #fff;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

.listGreen li {
    background: url(../img/arrow-green.png) 0px 5px no-repeat;
    padding-left: 20px;
    margin-bottom: 5px;
}

.listBlue li {
    background: url(../img/arrow-blue.png) 0px 5px no-repeat;
    padding-left: 20px;
    margin-bottom: 5px;
}

.listOrange li {
    background: url(../img/arrow-orange.png) 0px 5px no-repeat;
    padding-left: 20px;
    margin-bottom: 5px;
}

.Organisation-item {
    margin-bottom: 20px;
}

    .Organisation-item:nth-child(2n) .wrapOrganisation-item {
        background-color: #1d4a86;
    }

    .Organisation-item:nth-child(2n+1) .wrapOrganisation-item {
        background-color: #0068b0;
    }

.wrapOrganisationImg {
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
}

.wrapOrganisation-item {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
}

    .wrapOrganisation-item img {
        padding: 25px;
        margin: 0 auto;
    }

    .wrapOrganisation-item span {
        color: #fff;
        font-size: 22px;
    }

    .wrapOrganisation-item p {
        font-size: 16px;
        color: #fff;
    }

.Une-item {
    margin-bottom: 20px;
}

    .Une-item:nth-child(2) .wrapUne-item {
        background-color: transparent;
    }

        .Une-item:nth-child(2) .wrapUne-item h2 {
            margin: 40px !important;
        }

.wrapUne-item {
    overflow: hidden;
    background-color: #0068b0;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
}

.Une-info {
    padding: 10px 15px 10px 15px;
    height:100%;
}

    .Une-info span {
        font-size: 22px;
        color: #fff;
        line-height: 1.5;
    }

    .Une-info p {
        font-size: 15px;
        line-height: 1.5;
        color: #fff;
    }

    .Une-info img {
        margin: 0px auto;
        margin-left:40%;
        position:absolute;
        bottom:20px;
    }

.footer {
    background-color: #7d97a6;
    padding: 10px 0px;
}

    .footer p {
        font-size: 14px;
        color: #fff;
        margin: 15px 0;
        line-height: 1.5;
    }

    .footer span {
        font-weight: bold;
    }

    .footer .socialMenu {
        margin: 10px 0;
    }

        .footer .socialMenu li {
            float: left;
            margin-right: 10px;
        }

.itemPlace3 .body-itemPlace3 {
    border-right: 2px solid #3485ab;
    padding: 0px 30px;
}

.itemPlace3:last-child .body-itemPlace3 {
    border-right: none;
}

.itemPlace3 .body-itemPlace3 .top-itemPlace3 {
    border-bottom: 2px solid #061a35;
    height: 540px;
    min-height: 540px;
    max-height: 540px;
    overflow: hidden;
}

/*.bottom-itemPlace3 {
    margin-bottom: 10px;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    overflow: hidden;
}*/

.bottom-itemPlace3 ul {
    margin-left: 10px;
    margin-bottom: 30px;
}

    .bottom-itemPlace3 ul li {
        text-align: left;
        font-size: 18px;
        margin-bottom: 10px;
        background: url(../img/circle.png) 0px 7px no-repeat;
        padding-left: 20px;
        line-height:1.5;
    }

.head-bottom-itemPlace3 img {
    margin: 0px !important;
    float: left;
}

.head-bottom-itemPlace3 span {
    float: left;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 50px;
}

.itemPlace3 img {
    margin: 0 auto;
}

#cd-placeholder-3 .itemPlace3 .wrapIntro-item {
    width: 160px;
    margin: 0 auto;
    max-height: 130px !important;
    min-height: 130px !important;
    height: 130px !important;
}

.itemPlace3 .body-itemPlace3 .top-itemPlace3 p {
    color: #000 !important;
    padding: 10px !important;
    font-weight:500;
    font-size:16px;
}

    .itemPlace3 .body-itemPlace3 .top-itemPlace3 p strong {
        font-size: 25px;
        font-weight:bold;
    }

#cd-placeholder-3 .itemPlace3:nth-of-type(1) .wrapIntro-item {
    background: url(../img/des1.png) no-repeat;
}

#cd-placeholder-3 .itemPlace3:nth-of-type(2) .wrapIntro-item {
    background: url(../img/des2.png) no-repeat;
}

#cd-placeholder-3 .itemPlace3:nth-of-type(3) .wrapIntro-item {
    background: url(../img/des3.png) no-repeat;
}

#cd-placeholder-3 .itemPlace3 .wrapIntro-item span {
    font-size: 13px;
}

#cd-placeholder-3 .itemPlace3 .wrapIntroImg {
    height: 85px !important;
    min-height: 85px !important;
    max-height: 85px !important;
}

.serviceAssoc, .Encadrement {
    overflow: hidden;
    clear: both;
}

    .serviceAssoc img, .Encadrement img {
        margin: 0 auto;
    }

    .serviceAssoc p {
        padding: 0 5% !important;
        color: #000 !important;
        font-size:15px !important;
        font-weight:500;
    }

    .Encadrement p {
        color: #000 !important;
    }

.item-serviceAssoc {
    height: 230px;
    min-height: 230px;
    max-height: 230px;
    overflow: hidden;
}

.item-encadrement {
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
}

.titleObjectRESSOURCES {
    overflow: hidden;
    clear: both;
    text-align:center;
}

    .titleObjectRESSOURCES img {
        float: left;
        margin-right: 10px;
    }

    .titleObjectRESSOURCES span {
        font-size: 22px;
        text-transform: uppercase;
        font-weight: bold;
        line-height: 40px;
        color: #fff;
    }

.owl-item .item img {
    width: 100%;
}

.owl-item .item {
    padding: 20px;
}

.wrap-owl-bottom p {
    padding: 0px 20px !important;
}

.wrap-owl-top {
    width: 90%;
    margin: 0 auto;
}

.wrap-owl-bottom {
    width: 80%;
    margin: 0 auto;
}

.fr-language, .en-language {
    margin: 15px 0;
}

@media only screen and (max-width: 500px) {
    .wrapExpertise-item {
        padding: 25px;
        height: 480px;
        max-height: 480px;
        min-height: 480px;
    }
    .fixed-button-pop-up {
        top:220px !important;
    }
}

.wrap-pop-up {
    background-color: #fff;
    overflow: hidden;
    padding: 3em;
}

.head-pop-up {
    padding-bottom: 2em;
}

    .head-pop-up p {
        font-size: 25px;
        font-weight: bold;
        line-height: 1.5;
    }

    .head-pop-up span {
        color: #08a0e4;
    }

.body-pop-up {
    text-align: left;
    line-height: 1.5;
}

    .body-pop-up ul li {
        position: relative;
        margin: 10px 0;
    }

        .body-pop-up ul li span {
            position: absolute;
            top: 5px;
        }

.send-message {
    background-color: #02a7e8 !important;
    padding: 1em 1em;
}

.fixed-button-pop-up {
    position: fixed;
    top: 475px;
    left: -60px;
    z-index: 1000;
    line-height: 10px !important;
    -ms-transform: rotate(270deg); /* IE 9 */
    -webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */
    transform: rotate(270deg);
    border-radius: 0px !important;
    height: 80px !important;
}

    .fixed-button-pop-up i {
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
        transform: rotate(90deg);
        margin-right: 0px !important;
        margin-bottom: 5px;
    }

.wrap-content-des-title {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    margin: 0px !important;
    position: absolute;
    top: 180px;
}

    .wrap-content-des-title:after {
        display: inline-block;
        margin: 0 0 8px 20px;
        height: 3px;
        content: " ";
        text-shadow: none;
        background-color: #000;
    }

    .wrap-content-des-title:before {
        display: inline-block;
        margin: 0 20px 8px 0;
        height: 3px;
        content: " ";
        text-shadow: none;
        background-color: #000;
    }

.wrap-content-des {
    overflow: hidden;
    clear: both;
    position: relative;
}

.wrap-content-des-title img {
    display: inline-block;
    margin: 0 20px -8px 0;
}

div.page {
     position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 0px 20px;
    background-color: #fff;
    margin-left: 0px;
}

    div.page ul li {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 5px;
        line-height:1.3;
    }

.toggle-box {
    display: none;
}

    .toggle-box + label {
        cursor: pointer;
        display: block;
        font-weight: bold;
        line-height: 21px;
        margin-bottom: 5px;
        overflow: hidden;
        width: 30px;
        margin: 5px auto;
    }

        .toggle-box + label + div {
            display: none;
            margin-bottom: 10px;
        }

    .toggle-box:checked + label + div {
        display: block;
    }

    .toggle-box + label:before {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        color: #FFFFFF;
        content: url(../img/plus2.png);
        display: block;
        float: left;
        font-weight: bold;
        text-align: center;
    }

    .toggle-box:checked + label:before {
        content: "\2212";
        background-color: #4F5150;
        width: 20px;
        line-height: 20px;
        margin-right: 5px;
        height: 20px;
    }


.outils {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
    margin-top: 0px;
    font-size: 20px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

    .outils img {
        margin: 10px 0px -12px 0px;
    }

    .outils:after {
        display: inline-block;
        margin: 0 5px 12px 5px;
        height: 3px;
        content: " ";
        text-shadow: none;
        background-color: #000;
        width: 40px;
    }

    .outils:before {
        display: inline-block;
        margin: 0 5px 12px 0;
        height: 3px;
        content: " ";
        text-shadow: none;
        background-color: #000;
        width: 40px;
    }
.owl-item .item p {
    font-style:italic;
}
