﻿.spinner {
    position: fixed;
    top: 0;
    left: 0;
    background: #222;
    height: 100%;
    width: 100%;
    z-index: 100001;
    margin-top: 0;
    color: #fff;
    font-size: 1em
}

    .spinner .spin {
        position: relative;
        top: 50%;
        left: 48%;
        padding-top: 20px
    }

.cube1, .cube2 {
    background-color: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out
}

.cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

@-webkit-keyframes sk-cubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5)
    }

    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg)
    }

    75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5)
    }

    100% {
        -webkit-transform: rotate(-360deg)
    }
}

@keyframes sk-cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5)
    }

    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg)
    }

    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg)
    }

    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5)
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg)
    }
}

header .hamburger {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 10px
}

    header .hamburger .icon-bar, header .hamburger .icon-bar::before, header .hamburger .icon-bar::after {
        position: absolute;
        width: 33px;
        height: 5px;
        transition-timing-function: ease;
        transition-duration: .15s;
        transition-property: transform;
        border-radius: 4px;
        background: #cebeae
    }

    header .hamburger .icon-bar {
        top: 50%
    }

        header .hamburger .icon-bar::before, header .hamburger .icon-bar::after {
            content: '';
            display: block;
            transition: bottom .08s ease-out 0s,top .08s ease-out 0s,opacity 0s linear
        }

        header .hamburger .icon-bar::before {
            top: -10px
        }

        header .hamburger .icon-bar::after {
            bottom: -10px
        }

    header .hamburger:hover .icon-bar::before {
        top: 0;
        transition: bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;
        opacity: 0
    }

    header .hamburger:hover .icon-bar::after {
        transition: bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;
        opacity: 0;
        bottom: 0
    }

.overlay, .overlay-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #cebeae
}

    .overlay .overlay-close, .overlay .overlay-mobile-close, .overlay-mobile .overlay-close, .overlay-mobile .overlay-mobile-close {
        position: absolute;
        left: 20px;
        top: 20px;
        z-index: 100;
        display: inline-block;
        cursor: pointer;
        border: 0;
        background: transparent;
        outline: 0;
        overflow: hidden
    }

        .overlay .overlay-close .icon, .overlay .overlay-mobile-close .icon, .overlay-mobile .overlay-close .icon, .overlay-mobile .overlay-mobile-close .icon {
            position: relative;
            background: #fff;
            line-height: 22px;
            width: 30px;
            height: 30px;
            text-align: center;
            font-size: 36px;
            color: #cebeae;
            -webkit-transition: .4s all;
            transition: .4s all;
            border-radius: 2px
        }

        .overlay .overlay-close:hover, .overlay .overlay-mobile-close:hover, .overlay-mobile .overlay-close:hover, .overlay-mobile .overlay-mobile-close:hover {
            opacity: 0.7
        }

    .overlay nav, .overlay-mobile nav {
        text-align: center;
        position: relative;
        top: 40%;
        font-size: 21px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

@media screen and (max-width: 480px) {
    .overlay nav, .overlay-mobile nav {
        font-size: 15px
    }
}

.overlay nav > ul, .overlay-mobile nav > ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative
}

    .overlay nav > ul > li, .overlay-mobile nav > ul > li {
        display: block
    }

        .overlay nav > ul > li.inactive a, .overlay nav > ul > li.current-menu-item-inactive a, .overlay-mobile nav > ul > li.inactive a, .overlay-mobile nav > ul > li.current-menu-item-inactive a {
            color: #b09d87
        }

        .overlay nav > ul > li a, .overlay-mobile nav > ul > li a {
            font-weight: 300;
            display: block;
            color: #fff;
            padding: 15px;
            -webkit-transition: transform 0.6s;
            transition: transform 0.6s
        }

        .overlay nav > ul > li > ul.sub-menu, .overlay-mobile nav > ul > li > ul.sub-menu {
            list-style-type: none;
            margin: 15px 0 15px;
            padding: 0;
            display: none
        }

            .overlay nav > ul > li > ul.sub-menu a, .overlay-mobile nav > ul > li > ul.sub-menu a {
                padding: 5px;
                font-size: 16px;
                letter-spacing: 0;
                -webkit-transition: all 280ms ease-in-out;
                -moz-transition: all 280ms ease-in-out;
                transition: all 280ms ease-in-out
            }

                .overlay nav > ul > li > ul.sub-menu a:before, .overlay-mobile nav > ul > li > ul.sub-menu a:before {
                    backface-visibility: hidden;
                    border: 1px solid rgba(255,255,255,0);
                    bottom: 0px;
                    content: " ";
                    display: block;
                    margin: 0 auto;
                    position: relative;
                    -webkit-transition: all 280ms ease-in-out;
                    -moz-transition: all 280ms ease-in-out;
                    transition: all 280ms ease-in-out;
                    width: 0
                }

                .overlay nav > ul > li > ul.sub-menu a:hover, .overlay nav > ul > li > ul.sub-menu a:active, .overlay-mobile nav > ul > li > ul.sub-menu a:hover, .overlay-mobile nav > ul > li > ul.sub-menu a:active {
                    letter-spacing: 5px
                }

                    .overlay nav > ul > li > ul.sub-menu a:hover:before, .overlay nav > ul > li > ul.sub-menu a:active:before, .overlay-mobile nav > ul > li > ul.sub-menu a:hover:before, .overlay-mobile nav > ul > li > ul.sub-menu a:active:before {
                        backface-visibility: hidden;
                        border: 1px solid rgba(255,255,255,0.5);
                        transition: width 350ms ease-in-out;
                        width: 70%;
                        bottom: auto;
                        top: 0;
                        width: 70%
                    }

.overlay .logo, .overlay-mobile .logo {
    text-align: center;
    margin-bottom: 30px
}

    .overlay .logo a, .overlay-mobile .logo a {
        display: inline-block
    }

.overlay nav > ul > li:hover > a, .overlay nav > ul > li.current-menu-item > a, .overlay nav > ul > li.selected > a, .overlay-mobile nav > ul > li:hover > a, .overlay-mobile nav > ul > li.current-menu-item > a, .overlay-mobile nav > ul > li.selected > a {
    font-weight: normal;
    transform: scale(1.5)
}

.overlay-hugeinc {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
    width: 20%
}

    .overlay-hugeinc.open {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
        z-index: 999;
        width: 20%
    }

@media screen and (max-width: 767px) {
    .overlay-hugeinc.open {
        width: 100%
    }
}

.overlay-hugeinc nav {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

    .overlay-hugeinc nav > ul {
        opacity: 0.4;
        -webkit-transform: translateY(-25%) rotateX(35deg);
        transform: translateY(-25%) rotateX(35deg);
        -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
        transition: transform 0.5s, opacity 0.5s
    }

.overlay-hugeinc.open nav > ul {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg)
}

.overlay-hugeinc.close nav > ul {
    -webkit-transform: translateY(25%) rotateX(-35deg);
    transform: translateY(25%) rotateX(-35deg)
}

.navbar-toggle {
    color: #cebeae;
    cursor: pointer;
    background: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    outline: 0
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: block;
        float: left;
        text-align: left;
        position: absolute;
        top: 0px
    }
}

a:focus, input:focus, textarea:focus, button:focus {
    outline: none !important
}

.form-control:focus {
    border-color: #cebeae;
    box-shadow: none
}

.logo_wrap {
    position: relative
}

.marron {
    background: #cebeae;
    color: #fff
}

.breadcrumb {
    position: fixed;
    left: 20%;
    z-index: 99;
    background: #fff;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem
}

    .breadcrumb li a {
        font-weight: 300;
        color: #cebeae
    }

    .breadcrumb li.active {
        font-weight: 700;
        color: #cebeae
    }

    .breadcrumb li + li::before {
        padding: 0 5px;
        color: #cebeae;
        content: "";
        font-family: "FontAwesome";
        font-weight: 300
    }

@media screen and (max-width: 1023px) {
    #content .breadcrumb {
        display: none
    }
}

@media screen and (max-width: 1023px) {
    #header-mobile .breadcrumb {
        position: absolute;
        right: 10px;
        left: inherit;
        top: 15px
    }
}

@media screen and (max-width: 540px) {
    #header-mobile .breadcrumb {
        position: initial;
        background: rgba(206,191,172,0.4)
    }
}

.kc-elm {
    padding: 0px
}

.home #header-block .logo_desc {
    margin-top: 40px
}

.home .download {
    display: none
}

.home-video {
    overflow: hidden
}

@media screen and (min-width: 480px) and (max-width: 1023px) {
    .home-video {
        -moz-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }
}

@media screen and (max-width: 479px) {
    .home-video {
        -moz-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.home-video h2.name {
    margin: 0 0 0 -4px
}

#header-mobile .logo_desc p {
    color: #808285;
    margin-top: 10px;
    font-size: 11px;
    margin-right: 15px
}

#header-block {
    width: 20%;
    position: relative
}

@media screen and (max-width: 1023px) {
    #header-block {
        display: none
    }
}

#header-block .logo_wrap {
    display: flex;
    height: 100%;
    align-items: center
}

#header-block .logo_desc {
    flex: 1;
    padding: 0 15px;
    margin-top: 0
}

#header-block p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #808285
}

#home-videos .flex-about {
    opacity: 0;
    color: #f1f1f1;
    position: relative;
    font-size: 10px;
    text-align: left;
    padding: 0 15px;
    transform: rotate(0deg);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    bottom: 0;
    line-height: 16px
}

@media screen and (max-width: 479px) {
    #home-videos .flex-about {
        padding: 0px 15px
    }
}

#home-videos .flex-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.4);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 10;
    width: 23%
}

    #home-videos .flex-overlay > h2 {
        position: relative;
        width: 95%;
        min-width: 230px;
        top: 90%;
        left: 15px;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform-origin: left top 0;
        -webkit-transition: all 500ms ease-out;
        -moz-transition: all 500ms ease-out;
        -ms-transition: all 500ms ease-out;
        -o-transition: all 500ms ease-out;
        transition: all 500ms ease-out
    }

    #home-videos .flex-overlay > h3 {
        position: relative;
        width: 95%;
        min-width: 230px;
        top: 110%;
        left: 15px;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 0 -4px;
        text-transform: uppercase;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform-origin: left top 0;
        -webkit-transition: all 500ms ease-out;
        -moz-transition: all 500ms ease-out;
        -ms-transition: all 500ms ease-out;
        -o-transition: all 500ms ease-out;
        transition: all 500ms ease-out
    }

    #home-videos .flex-overlay .flex-about > p {
        font-size: 16px;
    }

        #home-videos .flex-overlay > h2 a {
            color: #fff
        }

            #home-videos .flex-overlay > h2 a:hover {
                opacity: .8
            }

#home-videos .number {
    position: absolute;
    left: 10px;
    top: 20px;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    z-index: 5
}

    #home-videos .number::after {
        content: "";
        display: block;
        height: 2px;
        background: #fff;
        margin-top: 8px
    }

#home-videos .flex-video {
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
    z-index: 2
}

    #home-videos .flex-video video {
        position: absolute;
        z-index: -1;
        display: none;
        background: rgba(255,255,255,0.7)
    }

        #home-videos .flex-video video.fullWidth {
            width: 120%;
            min-height: 100%
        }

@media screen and (min-height: 724px) {
    #home-videos .flex-video video.fullWidth {
        width: 220%;
        margin-left: -50%
    }

    #home-videos .flex-video video.fullWidth2 {
        width: 220%;
        margin-left: -110%
    }

    #home-videos .flex-video video.fullWidth3 {
        width: 220%;
        margin-left: -80%
    }
}

#home-videos .flex-video .video-container {
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-size: cover
}

#home-videos .fullscreen {
    background: url("../img/fullscreen.png") no-repeat center;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 11
}

    #home-videos .fullscreen:hover {
        cursor: pointer
    }

#home-videos > div {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
    background-size: cover;
    background-position: center
}

    #home-videos > div:hover .flex-overlay {
        top: unset;
        bottom: -10px;
        height: auto;
        background: rgba(205,190,172,0.7);
        width: 100%;
        padding: 15px 0 10px
    }

        #home-videos > div:hover .flex-overlay > h2.name {
            top: 7%;
            transform: rotate(0deg);
            margin-bottom: 5px;
            left: 20px
        }

@media screen and (max-width: 767px) {
    #home-videos > div:hover .flex-overlay > h2.name {
        margin-top: 5px
    }
}

#home-videos > div:hover .flex-overlay .flex-about {
    opacity: 1
}

#home-videos > div:hover .number {
    color: #000
}

    #home-videos > div:hover .number::after {
        background: #cebeae
    }

#home-videos > div:hover .fullscreen {
    display: inline-block !important
}

#content {
    width: 100%;
    position: relative
}

.site-interne #header-block {
    padding-top: 12%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 99;
    width: 20%
}

    .site-interne #header-block .logo_wrap {
        display: block;
        height: auto
    }

.site-interne h2, .site-interne p, .site-interne li, .site-interne h1 {
    color: #cebeae
}

.site-interne h2, .site-interne h1 {
    position: relative;
    text-transform: uppercase;
    font-size: 25px
}

.interne .entry-content section.kc-elm.kc_row {
    position: relative;
    padding-right: 14.3%
}

@media screen and (max-width: 1023px) {
    .interne .entry-content section.kc-elm.kc_row {
        padding-right: 0
    }
}

.interne .entry-content section.kc-elm.kc_row.left-padding {
    padding-left: 20%
}

@media screen and (max-width: 1023px) {
    .interne .entry-content section.kc-elm.kc_row.left-padding {
        padding-left: 0
    }
}

.interne .entry-content section.kc-elm.kc_row.left-padding.kc_div_bg {
    padding-right: 0
}

@media screen and (max-width: 1023px) {
    .interne .entry-content section.kc-elm.kc_row.left-padding.kc_div_bg .kc-wrap-columns {
        width: 100%
    }
}

.interne .entry-content section.kc-elm div[class^="kc"] {
    height: 100%;
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.interne .entry-content section.kc-elm div.content-text {
    display: block;
    height: auto;
    padding: 15px 15px 15px 35px
}

    .interne .entry-content section.kc-elm div.content-text div {
        display: block;
        height: auto
    }

@media screen and (max-width: 479px) {
    .interne .entry-content section.kc-elm {
        padding-top: 30px
    }

        .interne .entry-content section.kc-elm:first-of-type {
            padding: 0
        }

        .interne .entry-content section.kc-elm .valeur-ajoute {
            padding: 25px
        }

        .interne .entry-content section.kc-elm:last-of-type {
            padding-bottom: 0
        }

        .interne .entry-content section.kc-elm div[class^="kc"] {
            display: block;
            height: auto
        }
}

.full-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    height: 100%
}

.metier {
    color: #cebeae;
    width: 100%
}

    .metier span {
        font-size: 10em;
        font-weight: 700;
        opacity: .5;
        line-height: 1
    }

@media screen and (max-width: 479px) {
    .metier span {
        font-size: 5em
    }
}

.metier > article {
    padding: 0 35px 0 15px
}

@media screen and (max-width: 1023px) {
    .metier > article {
        padding: 0 15px
    }
}

span.grand {
    font-size: 10em;
    font-weight: 700;
    opacity: .5;
    line-height: 1;
    color: #cebeae
}

.download {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.5);
    color: rgba(0,0,0,0.5);
    text-transform: uppercase;
    margin-top: 15px;
    position: relative;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

    .download:after {
        content: "";
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.5);
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s
    }

    .download:hover {
        color: #fff
    }

        .download:hover:after {
            height: 100%
        }

    .download.blanc {
        background: none;
        border-color: #fff;
        color: #fff;
        float: right;
        font-size: 12.5px
    }

.rating-table p {
    font-size: 12px
}

.fullscreen-bg {
    background-size: cover;
    background-position: center;
    height: 100%;
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%
}

.contact-form7 {
    margin-left: 40px
}

@media screen and (min-width: 1024px) {
    .contact-form7 {
        margin-right: 20px
    }
}

@media screen and (max-width: 1023px) {
    .contact-form7 {
        margin: 0 auto;
        width: 90%
    }
}

@media screen and (max-width: 479px) {
    .contact-form7 {
        padding: 20px 0
    }
}

.contact-form7 input, .contact-form7 textarea {
    border-color: #cebeae
}

    .contact-form7 input:-ms-input-placeholder, .contact-form7 textarea:-ms-input-placeholder {
        color: #cebeae
    }

    .contact-form7 input::-ms-input-placeholder, .contact-form7 textarea::-ms-input-placeholder {
        color: #cebeae
    }

    .contact-form7 input::placeholder, .contact-form7 textarea::placeholder {
        color: #cebeae
    }

    .contact-form7 input[type="submit"] {
        font-weight: 700;
        font-size: 15px;
        background: none;
        outline: none;
        text-transform: uppercase;
        box-shadow: none;
        padding: 5px 10px;
        color: #ac9983;
        border: 1px solid rgba(0,0,0,0.2);
        cursor: pointer
    }

div.wpcf7-response-output {
    color: #808285
}

    div.wpcf7-response-output.wpcf7-mail-sent-ok {
        border-color: #ac9983
    }

.scroll-link {
    position: absolute;
    bottom: 42px;
    left: 47%;
    text-align: center;
    min-width: 125px;
    z-index: 90;
    background: rgba(205,190,172,0.85);
    padding: 10px 0
}

@media screen and (max-width: 1023px) {
    .scroll-link {
        left: 43%
    }
}

.scroll-link > span {
    font-weight: 700;
    color: #fff;
    max-width: 125px;
    display: block
}

.scroll-link i {
    color: #fff;
    font-size: 19px
}

@media screen and (max-width: 479px) {
    .scroll-link {
        overflow: hidden;
        bottom: -25px;
        left: 35%
    }

        .scroll-link ::after {
            width: 22px;
            height: 22px
        }

        .scroll-link > span {
            text-indent: -40em
        }

            .scroll-link > span::after {
                margin: 15px auto
            }
}

#button-scroll {
    position: fixed;
    top: 50%;
    right: 25px
}

@media screen and (max-width: 1023px) {
    #button-scroll {
        display: none
    }
}

#button-scroll a {
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: flex-end
}

    #button-scroll a span.rond {
        display: inline-block;
        width: 15px;
        height: 15px;
        background: #fff;
        border-radius: 50%;
        opacity: .5
    }

    #button-scroll a span.text {
        font-weight: 700;
        display: none;
        position: absolute;
        width: 110px;
        right: 25px;
        text-align: center
    }

    #button-scroll a.active span.rond {
        background: #fff;
        opacity: 1
    }

    #button-scroll a.active span.text {
        display: inline-block;
        color: #fff
    }

#button-scroll.with-color a span.rond {
    background: #cebeae;
    opacity: .5
}

#button-scroll.with-color a.active span.rond {
    opacity: 1
}

#button-scroll.with-color a.active span.text {
    display: inline-block;
    color: #cebeae
}

.contact_equipes {
    padding-left: 20px
}

    .contact_equipes p {
        color: #fff;
        margin-bottom: 0;
        font-size: 16px
    }

    .contact_equipes img {
        margin: 0
    }

.box_icones {
    width: 142px;
    text-align: center
}

@media screen and (max-width: 1023px) {
    .box_icones {
        margin: 0 auto;
        width: auto
    }
}

.rating-table {
    width: 100%
}

    .rating-table .ratings .rating {
        margin-bottom: 10px;
        background: #fff
    }

        .rating-table .ratings .rating p {
            display: inline-block;
            width: 60%;
            margin: 0
        }

            .rating-table .ratings .rating p:first-of-type {
                padding-left: 30px;
                width: 38%;
                text-align: left
            }

            .rating-table .ratings .rating p:last-of-type {
                text-align: center
            }

@media screen and (max-width: 556px) {
    .rating-table {
        display: block !important
    }

        .rating-table .ratings {
            padding-right: 0
        }
}

.origine strong {
    font-size: 25px;
    opacity: .2;
    display: inline-block;
    width: 49%;
    text-align: center
}

    .origine strong:nth-child(3n) {
        width: 100%
    }

#certifications .cert_group {
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap
}

#certifications .cert_logo {
    width: 45%;
    border: 1px solid #dadada;
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 5px;
    margin-bottom: 15px
}

    #certifications .cert_logo:nth-child(2n+1) {
        margin-right: 8%
    }

    #certifications .cert_logo img {
        width: 100%;
        height: auto
    }

#references {
    padding-left: 20%
}

    #references h1 {
        font-size: 25px;
        color: #cebeae
    }

        #references h1 span {
            display: inline-block
        }

            #references h1 span::after {
                content: "";
                height: 2px;
                display: block;
                width: 50%;
                margin: 10px auto;
                background: #808285;
                border-radius: 5px
            }

    #references .kc-ref {
        display: -ms-flexbox;
        display: -moz-flexbox;
        display: -webkit-flex;
        display: flex;
        height: 100%;
        align-items: center
    }

@media screen and (max-width: 1023px) {
    #references {
        padding-left: 0
    }
}

@media screen and (max-width: 575px) {
    #references .ref {
        padding: 20px
    }
}

.kc_text_block + .aero_button {
    width: 100%;
    text-align: left
}

#certifications {
    width: 100%;
    padding: 0 15px
}

.nav > li > a:focus, .nav > li > a:hover {
    background: none
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99
}

    #footer .lang-toggle {
        display: inline-block;
        background: url("../img/toggle.png") no-repeat center;
        width: 13px;
        height: 8px;
        margin-left: 2px;
        background-size: contain
    }

    #footer p {
        margin: 0
    }

.footer-copyright {
    text-align: right;
    padding: 0 25px
}

.footer-content {
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between
}

    .footer-content > div {
        display: inline-block !important
    }

        .footer-content > div.footer-link {
            margin-left: auto
        }

        .footer-content > div .dropdown-menu {
            top: auto;
            min-width: 60px;
            background-color: rgba(0,0,0,0.7);
            left: -20px !important;
            z-index: 100
        }

            .footer-content > div .dropdown-menu li > a {
                display: block;
                text-align: center
            }

                .footer-content > div .dropdown-menu li > a:hover {
                    background: #fff
                }

    .footer-content .copy-wrapper {
        margin-left: 20px
    }

video::-webkit-media-controls-current-time-display, video::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-mute-button, video::-webkit-media-controls-timeline {
    display: none !important
}

#header-mobile {
    display: none
}

    #header-mobile #trigger-mobile-overlay {
        margin-top: 0;
        padding: 10px 0;
        position: absolute
    }

    #header-mobile .logo_desc {
        margin-left: 50px;
        padding: 10px 0
    }

        #header-mobile .logo_desc > a {
            display: inline-block
        }

@media screen and (max-width: 1023px) {
    #header-mobile {
        display: block
    }
}

@media screen and (max-width: 1023px) {
    #home-videos .w-100 {
        display: none
    }

    .content-text.ratings {
        margin-top: 10%
    }

        .content-text.ratings > div {
            overflow: auto
        }

    section.kc-elm .kc-wrap-columns {
        width: 100%
    }
}

@media screen and (max-width: 998px) {
    section.kc-elm .kc-wrap-columns {
        margin: 0 !important;
        position: relative
    }
}

@media screen and (max-width: 600px) {
    #qualification span.grand {
        font-size: 7em
    }
}

@media screen and (min-width: 480px) {
    .d-sm-none {
        display: none !important
    }
}

@media screen and (max-width: 479px) {
    .content-desc {
        margin-bottom: 5px
    }

    .scroll-link {
        left: 38%;
        display: none
    }

    .a-propos section.kc-elm {
        padding: 0px 15px 67px 15px
    }

    .a-propos .scroll-link {
        bottom: -15px
    }

    .a-propos h2 {
        margin: 20px 0 10px
    }

    .contact_equipes {
        display: block;
        margin: 0 auto;
        padding-left: 0
    }

        .contact_equipes > div.contact {
            width: 50;
            margin: 15px 0
        }
}

.aero_content {
    width: 100%
}

.home-video > a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 22
}
/*# sourceMappingURL=styles.css.map */
