.barre {
    -webkit-animation: barre 5s ease infinite;
    -moz-animation: barre 5s ease infinite;
    -o-animation: barre 5s ease infinite;
    -ms-animation: barre 5s ease infinite;
    animation: barre 5s ease infinite;
}

@keyframes barre {
    from {
        transform: rotate(20deg);
    }
    50% {
        transform: rotate(-20deg);
    }
    to {
        transform: rotate(20deg);
    }
}

.waterWings {
    -webkit-animation: waterWings 5s ease infinite;
    -moz-animation: waterWings 5s ease infinite;
    -o-animation: waterWings 5s ease infinite;
    -ms-animation: waterWings 5s ease infinite;
    animation: waterWings 5s ease infinite;
}

@keyframes waterWings {
    from {
        opacity: 1;
    }
    25% {
        opacity: 0.20;
    }
    50% {
        opacity: 0.50;
    }
    75% {
        opacity: 0.15;
    }
    to {
        opacity: 1;
    }
}

.anchor {
    -webkit-animation: anchor 5s ease infinite;
    -moz-animation: anchor 5s ease infinite;
    -o-animation: anchor 5s ease infinite;
    -ms-animation: anchor 5s ease infinite;
    animation: anchor 5s ease infinite;
}

@keyframes anchor {
    from {
        opacity: 1;
    }
    25% {
        opacity: 0.20;
    }
    50% {
        opacity: 0.50;
    }
    75% {
        opacity: 0.15;
    }
    to {
        opacity: 1;
    }
}

.boat {
    -webkit-animation: boat 4s ease infinite;
    -moz-animation: boat 4s ease infinite;
    -o-animation: boat 4s ease infinite;
    -ms-animation: boat 4s ease infinite;
    animation: boat 4s ease infinite;
}

@keyframes boat {
    from {
        transform: rotate3d(0, 0, 1, 3deg);
    }
    50% {
        transform: rotate3d(0, 0, 1, -3deg);
    }
    to {
        transform: rotate3d(0, 0, 1, 3deg);
    }
}

.arrowPush {
    margin-top: -5px;
    -webkit-animation: bounce 1s ease infinite;
    -moz-animation: bounce 1s ease infinite;
    -o-animation: bounce 1s ease infinite;
    -ms-animation: bounce 1s ease infinite;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
    to {
        transform: translateY(0);
    }
}

@-webkit-keyframes bounce-right {
    0% {
        left: -30%;
        -webkit-animation-timing-function: ease-in;
    }
    37% {
        left: 0;
        -webkit-animation-timing-function: ease-out;
    }
    55% {
        left: -7.5%;
        -webkit-animation-timing-function: ease-in;
    }
    73% {
        left: 0;
        -webkit-animation-timing-function: ease-out;
    }
    82% {
        left: -2.1%;
        -webkit-animation-timing-function: ease-in;
    }
    91% {
        left: 0;
        -webkit-animation-timing-function: ease-out;
    }
    96% {
        left: -0.6%;
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes bounce-right {
    0% {
        left: -30%;
        -moz-animation-timing-function: ease-in;
    }
    37% {
        left: 0;
        -moz-animation-timing-function: ease-out;
    }
    55% {
        left: -7.5%;
        -moz-animation-timing-function: ease-in;
    }
    73% {
        left: 0;
        -moz-animation-timing-function: ease-out;
    }
    82% {
        left: -2.1%;
        -moz-animation-timing-function: ease-in;
    }
    91% {
        left: 0;
        -moz-animation-timing-function: ease-out;
    }
    96% {
        left: -0.6%;
        -moz-animation-timing-function: ease-in;
    }
    100% {
        left: 0;
    }
}

@keyframes bounce-right {
    0% {
        left: -30%;
        -moz-animation-timing-function: ease-in;
    }
    37% {
        left: 0;
        -moz-animation-timing-function: ease-out;
    }
    55% {
        left: -7.5%;
        -moz-animation-timing-function: ease-in;
    }
    73% {
        left: 0;
        -moz-animation-timing-function: ease-out;
    }
    82% {
        left: -2.1%;
        -moz-animation-timing-function: ease-in;
    }
    91% {
        left: 0;
        -moz-animation-timing-function: ease-out;
    }
    96% {
        left: -0.6%;
        -moz-animation-timing-function: ease-in;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes bounce-left {
    0% {
        right: -70%;
        -webkit-animation-timing-function: ease-in;
    }
    37% {
        right: 0;
        -webkit-animation-timing-function: ease-out;
    }
    55% {
        right: -17.5%;
        -webkit-animation-timing-function: ease-in;
    }
    73% {
        right: 0;
        -webkit-animation-timing-function: ease-out;
    }
    82% {
        right: -4.9%;
        -webkit-animation-timing-function: ease-in;
    }
    91% {
        right: 0;
        -webkit-animation-timing-function: ease-out;
    }
    96% {
        right: -1.4%;
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        right: 0;
    }
}

@-moz-keyframes bounce-left {
    0% {
        right: -70%;
        -moz-animation-timing-function: ease-in;
    }
    37% {
        right: 0;
        -moz-animation-timing-function: ease-out;
    }
    55% {
        right: -17.5%;
        -moz-animation-timing-function: ease-in;
    }
    73% {
        right: 0;
        -moz-animation-timing-function: ease-out;
    }
    82% {
        right: -4.9%;
        -moz-animation-timing-function: ease-in;
    }
    91% {
        right: 0;
        -moz-animation-timing-function: ease-out;
    }
    96% {
        right: -1.4%;
        -moz-animation-timing-function: ease-in;
    }
    100% {
        right: 0;
    }
}

@keyframes bounce-left {
    0% {
        right: -70%;
        -moz-animation-timing-function: ease-in;
    }
    37% {
        right: 0;
        -moz-animation-timing-function: ease-out;
    }
    55% {
        right: -17.5%;
        -moz-animation-timing-function: ease-in;
    }
    73% {
        right: 0;
        -moz-animation-timing-function: ease-out;
    }
    82% {
        right: -4.9%;
        -moz-animation-timing-function: ease-in;
    }
    91% {
        right: 0;
        -moz-animation-timing-function: ease-out;
    }
    96% {
        right: -1.4%;
        -moz-animation-timing-function: ease-in;
    }
    100% {
        right: 0;
    }
}

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,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: inherit;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

body {
    overflow-x: hidden;
}

.msgHome {
    position: absolute;
    vertical-align: middle;
    display: inline-block;
    padding: 0;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 2;
}

.msgHome .textMsgHome {
    margin-left: 15px;
    font-family: 'AvenirBlack', Arial, sans-serif;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    position: absolute;
}

.msgHome .textMsgHome .textItaMsgHome {
    font-family: 'AvenirLightOblique', Arial, sans-serif;
    display: block;
    margin-top: 10px;
}

header {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header .left {
    width: 50%;
    height: 85px;
    line-height: 85px;
    text-align: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    padding: 0 15px;
}

header .left img {
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -30px;
    width: 236px;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header .left .logoblanc {
    opacity: 0;
}

header .right {
    width: 50%;
    height: 85px;
    line-height: 85px;
    text-align: right;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    padding: 0 15px;
}

header .right .menu-button {
    display: inline-block;
    vertical-align: middle;
    height: 24px;
    line-height: 22px;
    float: none;
    position: relative;
    padding-right: 30px;
}

header .right .menu-button .textMenu {
    font-family: 'AvenirRoman', Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    color: #004482;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

header .right .menu-button .menu-toggle {
    z-index: 2;
    width: 22px;
    height: 4px;
    padding: 8px 0;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: -11px;
    right: 0;
}

header .right .menu-button .menu-toggle span {
    height: 2px;
    display: block;
    overflow: hidden;
    text-indent: 100%;
    border-radius: 2px;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #004482;
    opacity: 1;
}

header .right .menu-button .menu-toggle:before,
header .right .menu-button .menu-toggle:after {
    left: 0;
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #004482;
}

header .right .menu-button .menu-toggle:before {
    top: 0;
}

header .right .menu-button .menu-toggle:after {
    bottom: -2px;
}

header .fond-blanc {
    position: fixed;
    padding: 0 15px;
    height: 85px;
    line-height: 85px;
    width: 100%;
    overflow: hidden;
    opacity: 1;
    top: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
    background-color: #ffffff;
    border-bottom: 1px solid #004482;
}

header.white .fond-blanc {
    background-color: transparent;
    border-color: transparent;
}

header.white .left .logoblanc {
    opacity: 1;
}

header.white .left .logobleu {
    opacity: 0;
}

header.white .right .menu-button .textMenu {
    color: #ffffff;
}

header.white .right .menu-button .menu-toggle:before,
header.white .right .menu-button .menu-toggle:after,
header.white .right .menu-button .menu-toggle span {
    background-color: #ffffff;
}

header.up .right .menu-button .textMenu {
    color: #ffffff;
}

header.up .right .menu-button .menu-toggle:before,
header.up .right .menu-button .menu-toggle:after,
header.up .right .menu-button .menu-toggle span {
    background-color: #ffffff;
}

header.up .right .menu-button .menu-toggle:before {
    transform: rotate(45deg);
    top: 50%;
}

header.up .right .menu-button .menu-toggle:after {
    transform: rotate(-45deg);
    top: 50%;
}

header.up .right .menu-button .menu-toggle span {
    opacity: 0;
}

header.up .left .logoblanc {
    opacity: 0;
}

header.up .left .logobleu {
    opacity: 1;
}

.menu.in .left-menu {
    left: 0;
}

.menu.in .right-preview {
    right: 0;
}

.menu.in .right-preview .listNavMenu {
    margin-left: 10px;
    opacity: 1;
}

.menu .left-menu {
    width: 61%;
    height: 100%;
    position: fixed;
    z-index: 10;
    left: -61%;
    background-color: #ffffff;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.menu .left-menu .msgHome .textMsgHome {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    height: 78%;
    width: 100%;
    margin-left: 30px;
    font-family: 'AvenirBlack', Arial, sans-serif;
    font-size: 20px;
    color: #00345f;
}

.menu .right-preview {
    width: 40%;
    height: 100%;
    position: fixed;
    right: -40%;
    background-color: #00345f;
    z-index: 9;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.menu .right-preview .listNavMenu {
    width: 100%;
    height: 100%;
    padding-top: 30%;
    margin-left: 40px;
    opacity: 0.5;
    overflow: auto;
    -webkit-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}

.menu .right-preview .listNavMenu .navMenu {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu .right-preview .listNavMenu .navMenu li.linkMenu {
    position: relative;
    float: left;
    margin: 0 0 25px 3%;
    padding: 0;
    width: 97%;
    text-align: left;
    line-height: 50px;
}

.menu .right-preview .listNavMenu .navMenu li.linkMenu a.linkMenu {
    float: left;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'AvenirRoman', Arial, sans-serif;
    font-size: 37px;
    color: #ffffff;
    opacity: 0.3;
}

.menu .right-preview .listNavMenu .navMenu li.linkMenu a.linkMenu:hover {
    text-decoration: none;
    opacity: 1;
}

.menu .right-preview .change-langue {
    float: left;
    width: 100%;
    color: #ffffff;
    padding: 0 0 20px 3%;
    line-height: 20px;
    font-size: 17px;
}

.menu .right-preview .change-langue a {
    color: #ffffff;
    padding: 0 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu .right-preview .change-langue a:hover,
.menu .right-preview .change-langue a.active {
    color: #1dc0ad;
}

.menu-home .header {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/homeFull2.jpg") no-repeat left bottom;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menu-home .header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #002542;
    opacity: 0.3;
    z-index: 1;
}

.menu-home .header.full {
    top: 0;
}

.menu-home .header .textMsgHome {
    position: relative;
    text-align: center;
    font-size: 25px;
    line-height: 30px;
}

.menu-home .header .pushScroll {
    text-align: center;
    position: absolute;
    bottom: 200px;
    left: 50%;
    margin-left: -35px;
    z-index: 2;
}

.menu-home .header .pushScroll .push {
    background-color: transparent;
    border: 1px #ffffff solid;
    width: 39px;
    height: 51px;
    margin-left: auto;
    margin-right: auto;
}

.menu-home .header .pushScroll .push:focus {
    outline: none;
}

.menu-home .menuSousHeader {
    height: 130px;
    float: left;
    width: 100%;
    left: 0;
    bottom: inherit;
    margin-top: -130px;
    z-index: 3;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: fixed;
    top: 0;
}

.menu-home .menuSousHeader.bottom {
    top: 100%;
}

.menu-home .menuSousHeader .subMenu {
    height: 130px;
    padding: 0;
    position: relative;
}

.menu-home .menuSousHeader .subMenu a {
    display: inline-block;
    text-align: left;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    padding: 0 10px;
}

.menu-home .menuSousHeader .subMenu a:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-home .menuSousHeader .subMenu .subMenuTxt {
    height: 80%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.menu-home .menuSousHeader .subMenu .subMenuTxt .titleSubMenu {
    color: #ffffff;
    font-size: 16px;
    line-height: 100%;
    padding: 11% 0 0 0;
    margin: 0 0 10px 0;
    width: 100%;
    font-family: 'AvenirHeavy', Arial, sans-serif;
}

.menu-home .menuSousHeader .subMenu .subMenuTxt .subTitleSubMenu {
    color: #ffffff;
    font-size: 12px;
    width: 100%;
    font-family: 'AvenirLight', Arial, sans-serif;
}

.menu-home .menuSousHeader .subMenu .arrowSubMenu {
    width: 100%;
    height: 10%;
    text-align: right;
}

.menu-home .menuSousHeader .subMenu.subMenu1 {
    background-color: #002542;
}

.menu-home .menuSousHeader .subMenu.subMenu2 {
    background-color: #00345f;
}

.menu-home .menuSousHeader .subMenu.subMenu3 {
    background-color: #004680;
}

.menu-home .menuSousHeader .subMenu.subMenu4 {
    background-color: #0053a0;
}

.menu-home .menuSousHeader .subMenu.subMenu5 {
    background-color: #0061bb;
}

.container {
    width: 100%;
    max-width: 1200px;
}

section {
    float: left;
    width: 100%;
    background-color: #ffffff;
    margin: 0;
    padding-top: 85px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

section .title1 {
    font-family: 'AvenirBlack', Arial, sans-serif;
    font-size: 65px;
    line-height: 65px;
    color: #699dca;
    opacity: 0.5;
    padding-left: 30px;
    margin: 0;
    text-transform: uppercase;
    float: left;
    width: 100%;
}

section .title2 {
    font-family: 'AvenirMedium', Arial, sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #004482;
    float: left;
}

section .title2.title2plus {
    font-size: 20px;
}

section .title2.title2Big {
    font-size: 60px;
    font-weight: 800;
}

section .textBig {
    font-family: 'Baskerville', Arial, sans-serif;
    font-size: 25px;
    color: #525260;
    margin: 30px;
    text-align: center;
    font-weight: bold;
}

section .textBig .mini {
    font-size: 15px;
    display: inline-block;
    line-height: 25px;
    font-weight: normal;
}

section .textSection {
    font-family: 'AvenirMedium', Arial, sans-serif;
    font-size: 12px;
    color: #1f1f2c;
    text-align: justify;
}

section .zoneTexteLibre {
    text-align: center;
}

section .more {
    float: left;
    width: 100%;
}

section .more a {
    margin: 20px 0 0 0;
    padding: 0;
    font-family: 'AvenirMedium', Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #004482;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .more a:before {
    content: "\f178";
    font-family: 'fontAwesome';
    padding: 0;
    margin-left: 0;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

section .more a:hover {
    text-decoration: none;
    color: #1dc0ad;
}

section .more img {
    margin-left: -30px;
    margin-right: 30px;
}

section .bloc-gris {
    float: left;
    width: 100%;
    height: 100%;
    padding: 40px;
    background-color: #ebeef1;
    position: relative;
    z-index: 1;
}

section .bloc-gris:after {
    content: '';
    width: 100%;
    height: 100%;
    left: 20px;
    top: -20px;
    border: 1px #b2bbc7 solid;
    position: absolute;
    z-index: 1;
}

section .carousel {
    padding: 0 70px;
    float: left;
    width: 100%;
}

section .carousel .item .logo-ref {
    float: left;
    width: 20%;
    opacity: 0.85;
    text-align: center;
    line-height: 150px;
}

section .carousel .item .logo-ref img {
    display: inline-block;
    max-width: 90%;
    width: auto;
    height: auto;
}

section .carousel .carousel-control {
    width: 70px;
    opacity: 1;
    background: transparent none;
    line-height: 130px;
    -ms-filter: none;
    filter: none;
}

section .carousel .carousel-control .icon {
    display: inline-block;
    width: 35px;
    height: 20px;
    line-height: 20px;
    text-shadow: none;
}

section .carousel .carousel-control .icon:after {
    font-family: "fontAwesome";
    font-size: 14px;
    color: #004482;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .carousel .carousel-control.right .icon:after {
    content: "\f178";
}

section .carousel .carousel-control.left .icon:after {
    content: "\f177";
}

section .carousel .carousel-control:hover .icon:after {
    color: #1dc0ad;
}

section .bloc-home {
    float: left;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

section .bloc-home .titleSection {
    margin-bottom: 50px;
}

section .bloc-home#title .homeTitle {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

section .bloc-home#title .homeTitle .homeTitleLine1 {
    margin: 10px 0;
}

section .bloc-home#title .homeTitle .homeTitleLine1,
section .bloc-home#title .homeTitle .homeTitleLine2-light {
    font-family: 'AvenirLight', Arial, sans-serif;
    font-size: 65px;
    color: #002542;
    line-height: 50px;
}

section .bloc-home#title .homeTitle .homeTitleLine2 {
    font-family: 'AvenirBlack', Arial, sans-serif;
    font-size: 45px;
    color: #0053a0;
    display: block;
    margin-top: 20px;
}

section .bloc-home#title .homeTitle .homeTitleLine2-light {
    font-size: 45px;
}

section .bloc-home#title .homeTitle .arrowHomeMsg {
    position: relative;
    z-index: 10;
}

section .bloc-home#title .homeTitle .lineHomeMsg {
    position: relative;
    z-index: 1;
    margin-top: -9px;
    background-color: #002542;
    height: 1px;
}

section .bloc-home#numbers .boxNumPicto {
    float: left;
    width: 100%;
    text-align: center;
    height: 150px;
    line-height: 150px;
    padding: 0;
}

section .bloc-home#numbers .boxNumPicto .pictoPeople {
    max-width: 95%;
}

section .bloc-home#numbers .boxNumPicto .boxNumBarre {
    float: left;
    width: 33.333333333333336%;
    text-align: center;
}

section .bloc-home#numbers .boxNumPicto .boxNumBarre .pictoBarreNum {
    max-width: 95%;
    opacity: 0.2;
}

section .bloc-home#numbers .boxNumber {
    float: left;
    width: 100%;
    text-align: center;
    height: 190px;
    padding: 0;
}

section .bloc-home#numbers .boxNumber .textBoxNum {
    height: 100%;
    padding-top: 25px;
    border: 6px solid rgba(255, 255, 255, 0.5);
}

section .bloc-home#numbers .boxNumber .textBoxNum.boxNumBlue {
    background-color: #004482;
}

section .bloc-home#numbers .boxNumber .textBoxNum.boxNumGreen {
    background-color: #1dc0ad;
}

section .bloc-home#numbers .boxNumber .textBoxNum .number {
    font-family: 'AvenirBlack', Arial, sans-serif;
    font-size: 55px;
    color: #ffffff;
    padding: 0;
    margin: 0;
}

section .bloc-home#numbers .boxNumber .textBoxNum .number .odometer-formatting-mark {
    font-size: 0;
    width: 10px;
    display: inline-block;
}

section .bloc-home#numbers .boxNumber .textBoxNum .textNum {
    font-family: 'AvenirRoman', Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    padding: 0;
    margin: 0;
}

section .bloc-home#numbers .colNumbersRight {
    padding-right: 35px;
}

section .bloc-home#numbers .box25ans {
    height: 320px;
    margin-top: 20px;
}

section .bloc-home#numbers .box25ans .txt25ans {
    position: relative;
    z-index: 2;
}

section .bloc-home#numbers .box25ans .pictoBoat25 {
    float: right;
}

section .bloc-home#numbers .box25ans .title2 {
    float: left;
    width: 100%;
    margin-top: -30px;
}

section .bloc-home#numbers .box25ans .textSection {
    float: left;
    width: 100%;
    font-size: 14px;
    max-width: 410px;
}

section .bloc-home#numbers .box25ans .more {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 3;
    padding-left: 40px;
}

section .bloc-home#values .boxValues {
    margin: 30px 0;
    position: relative;
}

section .bloc-home#values .boxValues:before {
    content: '';
    position: absolute;
    display: block;
    z-index: 1;
    left: 80px;
    top: -20px;
    right: 0;
    bottom: -30px;
    border: 1px rgba(64, 87, 115, 0.2) solid;
}

section .bloc-home#values .boxValues .boxValue {
    text-align: center;
    font-family: 'Avenir-Book', Arial, sans-serif;
    font-size: 20px;
    color: #ffffff;
    overflow: hidden;
    padding-bottom: 25px;
    position: relative;
    z-index: 2;
}

section .bloc-home#values .boxValues .boxValue .value {
    position: relative;
}

section .bloc-home#values .boxValues .boxValue .value .hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -30px;
    z-index: 15;
}

section .bloc-home#values .boxValues .boxValue .value .hover:hover~.zoneTextValue {
    top: 0;
    width: 100%;
    margin: 0;
    left: 0;
    height: 100%;
}

section .bloc-home#values .boxValues .boxValue .value .hover:hover~.zoneTextValue span {
    height: auto;
}

section .bloc-home#values .boxValues .boxValue .value .zoneTextValue {
    margin-top: -30px;
    background-color: #004482;
    width: 200px;
    height: 60px;
    line-height: 60px;
    margin-right: auto;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -100px;
    z-index: 10;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .bloc-home#values .boxValues .boxValue .value .zoneTextValue .txtValue {
    margin: 0;
    display: inline-block;
    font-size: 20px;
}

section .bloc-home#values .boxValues .boxValue .value .zoneTextValue span {
    line-height: 20px;
    display: inline-block;
    font-size: 14px;
    padding: 0 8px;
    height: 0;
    overflow: hidden;
}

section .bloc-home#values .boxValues .boxValue .value .imgValue {
    border-top: 6px #d7dbe1 solid;
    width: 100%;
    position: relative;
    z-index: 5;
}

section .bloc-home#values .boxValues .boxValue .value .imgValue img {
    width: 100%;
}

section .bloc-home#values .boxValues .boxValueText {
    z-index: 2;
    padding-top: 50px;
}

section .bloc-home#values .boxValues .boxValueText:before {
    content: '';
    position: absolute;
    display: block;
    right: 30px;
    top: 10px;
    height: 150px;
    left: -10px;
    background: transparent url("../img/pattern-pointgris.png") repeat;
    opacity: 0.1;
    z-index: 1;
}

section .bloc-home#values .boxValues .boxValueText .textValeurs {
    position: relative;
    z-index: 2;
}

section .bloc-home#values .textBig {
    max-width: 470px;
    display: inline-block;
}

section .bloc-home#team .photo-groupe {
    float: left;
    width: 100%;
    margin-top: -30px;
    position: relative;
    padding-right: 20px;
}

section .bloc-home#team .photo-groupe img {
    float: left;
    width: 100%;
    position: relative;
    z-index: 2;
}

section .bloc-home#team .photo-groupe:after {
    content: '';
    position: absolute;
    border: 1px rgba(64, 87, 115, 0.2) solid;
    top: -20px;
    left: 20px;
    right: 0;
    bottom: 40px;
    z-index: 1;
}

section .bloc-home#team .zoneTexteLibre {
    padding-top: 50px;
}

section .bloc-home#expertises .rowExpertise {
    min-height: 280px;
    text-align: center;
}

section .bloc-home#expertises .rowExpertise .textBig {
    font-size: 22px;
}

section .bloc-home#expertises .rowExpertise .expertise {
    height: 300px;
    text-align: left;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise {
    float: left;
    width: 100%;
    position: relative;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise:before {
    content: '';
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    opacity: 0;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise>img {
    float: left;
    width: 100%;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: rotateY(0);
    opacity: 1;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise:after {
    content: '';
    position: absolute;
    background-color: #004482;
    left: -10px;
    bottom: 30px;
    width: 60px;
    height: 3px;
    z-index: 10;
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise .infoExpertise {
    display: none !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    transform: rotateY(90deg);
    padding: 10px;
    text-align: center;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise .infoExpertise div {
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise .infoExpertise img {
    display: inline-block;
    max-width: 90%;
    max-height: 70px;
    width:auto;
    height:auto;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .border {
    position: absolute;
    left: 10px;
    bottom: 10px;
    height: 100%;
    width: 100%;
    background: #ebeef1;
    border: 1px solid #ebeef1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

section .bloc-home#expertises .rowExpertise .expertise .nameExpertise {
    font-family: 'AvenirMedium', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #004482;
    float: left;
    width: 100%;
    margin-top: 7px;
    padding-left: 10px;
}

section .bloc-home#expertises .rowExpertise .txtExpertise {
    height: 300px;
}

section .bloc-home#expertises .rowExpertise .expertBarreBleu {
    float: right;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
}

section .bloc-home#expertises .rowExpertise .title2 {
    width: 100%;
}

section .bloc-home#references {
    margin-top: -50px;
}

section .bloc-home#references .nav-tabs {
    margin: 0;
}

section .bloc-home#references .nav-tabs li {
    background-color: #f5f6f8;
    border: 1px solid #d9dde3;
    border-right: none;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

section .bloc-home#references .nav-tabs li:last-of-type {
    border-right: 1px solid #d9dde3;
}

section .bloc-home#references .nav-tabs li.active {
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

section .bloc-home#references .nav-tabs li a {
    background-color: transparent;
    border: none;
    border-radius: 0 0;
    padding: 0;
    font-size: 9.5px;
    line-height: 15px;
    font-family: 'AvenirLight', Arial, sans-serif;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

section .bloc-home#references .nav-tabs li a.ref1 {
    color: #002542;
}

section .bloc-home#references .nav-tabs li a.ref2 {
    color: #00345f;
}

section .bloc-home#references .nav-tabs li a.ref3 {
    color: #004680;
}

section .bloc-home#references .nav-tabs li a.ref4 {
    color: #0053a0;
}

section .bloc-home#references .nav-tabs li a.ref5 {
    color: #0061bb;
}

section .bloc-home#references .nav-tabs li a p {
    padding: 0;
    margin: 0;
}

section .bloc-home#references .nav-tabs li a p.refTitle {
    font-family: 'AvenirHeavy', Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
}

section .bloc-home#references .tab-content {
    position: relative;
    padding-top: 160px;
}

section .bloc-home#references .tab-content .tab-pane {
    border: 1px solid #d9dde3;
    border-top: none !important;
    margin-top: -1px;
    padding: 10px;
    height: 160px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    z-index: 0;
}

section .bloc-home#references .tab-content .tab-pane.active {
    z-index: 1;
}

section .bloc-home#references .linkAllRef {
    margin: 0;
    padding: 0 15px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    background-color: #004482;
}

section .bloc-home#references .linkAllRef .more {
    color: #ffffff;
    float: none;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
}

section .bloc-home#references .linkAllRef .more:before {
    content: "\f178";
    font-family: "fontAwesome";
    padding: 0;
    margin-left: 0;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

section .bloc-home#references .linkAllRef .more:hover {
    color: #1dc0ad;
}

section .bloc-home#references .textRef {
    padding: 15px;
    text-align: center;
}

section .bloc-home#references .textRef .textSection {
    font-size: 15px;
}

section .bloc-home#references .linesRef {
    padding: 0;
    height: 3px;
    margin-top: -30px;
}

section .bloc-home#references .linesRef:before,
section .bloc-home#references .linesRef:after {
    content: '';
    background-color: #004086;
    width: 60px;
    height: 3px;
    bottom: 0;
    position: absolute;
    display: inline-block;
    z-index: 10;
}

section .bloc-home#references .linesRef:before {
    left: -15px;
}

section .bloc-home#references .linesRef:after {
    right: -15px;
}

section .bloc-home#proximity .rowProximite {
    margin-right: 5px;
}

section .bloc-home#proximity .rowProximite .title2 {
    font-size: 20px;
}

section .bloc-home#proximity .rowProximite .bloc-gris {
    height: 300px;
    margin-bottom: 50px;
    background: none;
}

section .bloc-home#proximity .rowProximite .bloc-gris:after {
    display: none;
}

section .bloc-home#proximity .rowProximite .boxProx {
    text-align: center;
    width: 90%;
    height: 300px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

section .bloc-home#proximity .rowProximite .boxProx a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    text-decoration: none;
    z-index: 2;
    position: relative;
}

section .bloc-home#proximity .rowProximite .boxProx a:hover+.borderCity {
    top: 0;
    right: 0;
}

section .bloc-home#proximity .rowProximite .boxProx a:hover .lineWhiteBig {
    width: 100%;
}

section .bloc-home#proximity .rowProximite .boxProx .borderCity {
    width: 100%;
    height: 300px;
    margin-left: 20px;
    position: absolute;
    z-index: 1;
    top: -20px;
    right: -20px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid #004482;
}

section .bloc-home#proximity .rowProximite .boxProx.boxParis a {
    background-color: #243c84;
}

section .bloc-home#proximity .rowProximite .boxProx.boxParis .borderCity {
    border-color: #243c84;
}

section .bloc-home#proximity .rowProximite .boxProx.boxLyon a {
    background-color: #3e5673;
}

section .bloc-home#proximity .rowProximite .boxProx.boxLyon .borderCity {
    border-color: #3e5673;
}

section .bloc-home#proximity .rowProximite .boxProx.boxNantes a {
    background-color: #1dc0ad;
}

section .bloc-home#proximity .rowProximite .boxProx.boxNantes .borderCity {
    border-color: #1dc0ad;
}

section .bloc-home#proximity .rowProximite .boxProx.boxStrasbourg a {
    background-color: #3356ca;
}

section .bloc-home#proximity .rowProximite .boxProx.boxStrasbourg .borderCity {
    border-color: #3356ca;
}

section .bloc-home#proximity .rowProximite .boxProx.boxToulouse a {
    background-color: #243c84;
}

section .bloc-home#proximity .rowProximite .boxProx.boxToulouse .borderCity {
    border-color: #243c84;
}

section .bloc-home#proximity .rowProximite .boxProx .boxCity {
    width: 100%;
    height: 70%;
    line-height: 160px;
    position: relative;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

section .bloc-home#proximity .rowProximite .boxProx .boxCity img {
    max-height: 80%;
    max-width: 80%;
    opacity: 0.4;
    vertical-align: bottom;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

section .bloc-home#proximity .rowProximite .boxProx .boxCityText .lineWhiteBig {
    background-color: #ffffff;
    width: 65%;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

section .bloc-home#proximity .rowProximite .boxProx .boxCityText .address {
    font-family: 'AvenirMedium', Arial, sans-serif;
    font-size: 13px;
    color: #ffffff;
}

section .bloc-home#proximity .rowProximite .boxProx .boxCityText .address.nameCity {
    font-weight: 600;
    font-size: 16px;
}

section .bloc-home#proximity .rowProximite .zoneTexteLibre .textBig {
    font-size: 28px;
    margin-top: 20px;
    line-height: 35px;
    position: relative;
    z-index: 2;
}

section .bloc-home#proximity .rowProximite .zoneTexteLibre .textBig .mini {
    display: block;
    font-size: 18px;
}

section .ban-haut-page {
    float: left;
    width: 100%;
    max-height: 440px;
    overflow: hidden;
    position: relative;
}

section .ban-haut-page>img {
    float: left;
    width: 100%;
    height: 100% !important;
    position: relative;
    z-index: 1;
}

section .ban-haut-page.sans-contact {
    max-height: 360px;
}

section .ban-haut-page .infos-contact {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: #00345f;
}

section .ban-haut-page .infos-contact .container {
    position: relative;
}

section .ban-haut-page .infos-contact .nom {
    float: left;
    width: 100%;
    text-align: left;
    padding-right: 645px;
}

section .ban-haut-page .infos-contact .nom>span {
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    font-family: 'Gotham Bold', Arial, sans-serif;
    font-size: 15px;
    color: #ffffff;
}

section .ban-haut-page .infos-contact .nom>span span {
    display: inline-block;
}

section .ban-haut-page .infos-contact .nom>span span:first-of-type {
    text-transform: uppercase;
    opacity: 0.3;
    margin-right: 10px;
}

section .ban-haut-page .infos-contact .nom>span span:last-of-type {
    font-size: 20px;
}

section .ban-haut-page .infos-contact .liens {
    position: absolute;
    right: 15px;
    top: 0;
    width: 640px;
    text-align: right;
}

section .ban-haut-page .infos-contact .liens>div {
    display: inline-block;
    vertical-align: middle;
    width: 29%;
    margin-left: 2%;
}

section .ban-haut-page .infos-contact .liens>div:first-of-type {
    margin-left: 0;
}

section .ban-haut-page .infos-contact .liens>div a {
    display: block;
    width: 100%;
    height: 45px;
    line-height: 43px;
    border: 1px solid #ffffff;
    padding: 0 10px 0 45px;
    text-align: center;
    position: relative;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 0;
}

section .ban-haut-page .infos-contact .liens>div a>span {
    display: inline-block;
    vertical-align: middle;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
}

section .ban-haut-page .infos-contact .liens>div a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    text-align: center;
    height: 100%;
    font-size: 24px;
    line-height: inherit;
    color: #ffffff;
}

section .ban-haut-page .infos-contact .liens>div a:hover {
    top: -3px;
}

section .ban-haut-page .infos-contact .liens .linkedin {
    width: 35%;
}

section .ban-haut-page .infos-contact .liens .linkedin a {
    background: #ffffff;
}

section .ban-haut-page .infos-contact .liens .linkedin a:before {
    color: #00345f;
    font-size: 22px;
}

section .ban-haut-page .infos-contact .liens .linkedin a>span {
    color: #00345f;
}

section .fil-ariane {
    float: left;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
}

section .fil-ariane .container>div {
    display: inline-block;
    vertical-align: middle;
}

section .fil-ariane .container>div+div:before {
    content: '';
    display: inline-block;
    margin: 0 8px;
    width: 22px;
    height: 10px;
    background: url("../img/arrow-grey.png") no-repeat center;
    background-size: contain;
}

section .fil-ariane a {
    display: inline-block;
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #00345f;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .fil-ariane a:hover {
    color: #1dc0ad;
}

section .fil-ariane span {
    display: inline-block;
    font-family: "Gotham Bold", Arial, sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #00345f;
}

section .content-site {
    float: left;
    width: 100%;
    margin: 10px 0 50px 0;
}

section .content-site .titre-page {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

section .content-site .titre-page .titre {
    display: inline-block;
    width: 100%;
    font-family: "Gotham Bold", Arial, sans-serif;
    font-size: 25px;
    line-height: 28px;
    color: #002542;
    text-transform: uppercase;
}

section .content-site .titre-page .sous-titre {
    display: inline-block;
    width: 100%;
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
    color: #58575e;
}

section .content-site .content-page {
    float: left;
    width: 100%;
}

section .content-site .content-page .zone-texte {
    float: left;
    width: 100%;
    margin-bottom: 50px;
}

section .content-site .content-page .zone-texte h2,
section .content-site .content-page .zone-texte h3,
section .content-site .content-page .zone-texte h4 {
    float: none;
    width: 100%;
    margin: 15px 0;
}

section .content-site .content-page .zone-texte h2:first-child,
section .content-site .content-page .zone-texte h3:first-child,
section .content-site .content-page .zone-texte h4:first-child {
    margin-top: 0;
}

section .content-site .content-page .zone-texte h2 {
    font-family: "Gotham Bold", Arial, sans-serif;
    font-size: 25px;
    line-height: 25px;
    color: #58575e;
}

section .content-site .content-page .zone-texte h2.title-blue {
    color: #0061bb;
}

section .content-site .content-page .zone-texte h2.title-green {
    color: #1dc0ad;
}

section .content-site .content-page .zone-texte h3 {
    font-family: "Gotham", Arial, sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #58575e;
}

section .content-site .content-page .zone-texte p {
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 13px;
    line-height: 17px;
    color: #58575e;
    margin-bottom: 10px;
    text-align: justify;
}

section .content-site .content-page .zone-texte strong {
    font-family: "Gotham", Arial, sans-serif;
    font-weight: normal;
    color: #000000;
}


section .content-site .content-page .zone-texte a {
    color: #000000;
    text-decoration: underline;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .content-site .content-page .zone-texte a:hover {
    color: #1dc0ad;
}

section .content-site .content-page .zone-texte ul {
    margin-bottom: 10px;
}

section .content-site .content-page .zone-texte ul li {
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 13px;
    line-height: 17px;
    color: #58575e;
    list-style-type: none;
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

section .content-site .content-page .zone-texte ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    height: 1px;
    width: 4px;
    margin-right: 6px;
    background: #58575e;
}

section .content-site .content-page .zone-texte ul li.list-blue,
section .content-site .content-page .zone-texte ul li.list-green {
    padding-left: 30px;
}

section .content-site .content-page .zone-texte ul li.list-blue:before,
section .content-site .content-page .zone-texte ul li.list-green:before {
    width: 20px;
    height: 3px;
    top: 8px;
}

section .content-site .content-page .zone-texte ul li.list-blue:before {
    background: #0061bb;
}

section .content-site .content-page .zone-texte ul li.list-green:before {
    background: #1dc0ad;
}

section .content-site .content-page .zone-texte ul ul {
    padding-left: 15px;
}

section .content-site .content-page .zone-texte img {
    max-width: 100%;
    height: auto !important;
    margin: 20px 0;
}

section .content-site .content-page .zone-texte .alignleft {
    float: left;
    margin-right: 20px;
}

section .content-site .content-page .zone-texte .exemple {
    float: left;
    width: 100%;
    margin: 5px 0;
    background: #00345f;
    padding: 30px 30px 30px 200px;
    position: relative;
    min-height: 120px;
}

section .content-site .content-page .zone-texte .exemple:before {
    content: '';
    width: 170px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -40px;
    background: url("../img/bateau-blanc.svg") no-repeat center;
    background-size: contain;
}

section .content-site .content-page .zone-texte .exemple:after {
    content: '';
    width: 10px;
    height: 90px;
    position: absolute;
    left: 170px;
    top: 50%;
    margin-top: -45px;
    background: url("../img/vague-verticale.svg") no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

section .content-site .content-page .zone-texte .exemple .titre-exemple {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

section .content-site .content-page .zone-texte .exemple .txt-exemple {
    color: #ffffff;
    font-size: 13px;
    margin: 0;
}

section .content-site .content-page .zone-texte .form-contact {
    float: left;
    width: 100%;
    text-align: center;
}

section .content-site .content-page .zone-texte .form-contact form {
    display: inline-block;
    width: 100%;
    max-width: 800px;
    text-align: left;
}

section .content-site .content-page .zone-texte .form-contact .form-group {
    float: left;
    width: 48%;
    margin: 0 0 15px 0;
}

section .content-site .content-page .zone-texte .form-contact .form-group:nth-of-type(2),
section .content-site .content-page .zone-texte .form-contact .form-group:nth-of-type(4) {
    float: right;
}

section .content-site .content-page .zone-texte .form-contact .form-group:nth-of-type(5),
section .content-site .content-page .zone-texte .form-contact .form-group:nth-of-type(6),
section .content-site .content-page .zone-texte .form-contact .form-group:nth-of-type(7) {
    width: 100%;
}

section .content-site .content-page .zone-texte .form-contact .form-group label {
    float: left;
    width: 100%;
    padding: 0;
    text-align: left;
    font-weight: normal;
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
}

section .content-site .content-page .zone-texte .form-contact .form-group>div {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

section .content-site .content-page .zone-texte .form-contact .form-group input[type='text'],
section .content-site .content-page .zone-texte .form-contact .form-group input[type='email'],
section .content-site .content-page .zone-texte .form-contact .form-group input[type='tel'],
section .content-site .content-page .zone-texte .form-contact .form-group textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #c2c8d8;
    box-shadow: none !important;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
}

section .content-site .content-page .zone-texte .form-contact .form-group input[type='text']:focus,
section .content-site .content-page .zone-texte .form-contact .form-group input[type='email']:focus,
section .content-site .content-page .zone-texte .form-contact .form-group input[type='tel']:focus,
section .content-site .content-page .zone-texte .form-contact .form-group textarea:focus {
    outline: none;
    border-color: #58575e;
}

section .content-site .content-page .zone-texte .form-contact .form-group textarea {
    padding: 10px;
    max-width: 100%;
    height: auto;
    min-height: 100px;
}

section .content-site .content-page .zone-texte .form-contact .form-group input[type='submit'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    float: right;
    width: auto;
    padding: 0 40px;
    margin-top: 10px;
    background: #004482;
    box-shadow: none !important;
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 15px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
    color: #ffffff;
}

section .content-site .content-page .zone-texte .form-contact .form-group input[type='submit']:focus {
    outline: none;
}

section .content-site .content-page .zone-texte .form-contact .form-group input[type='submit']:hover {
    color: #1dc0ad;
}

section .content-site .content-page .zone-texte .contact {
    float: left;
    width: 100%;
    margin-bottom: -20px;
    padding-top: 100px;
}

section .content-site .content-page .zone-texte .contact:first-of-type {
    padding-top: 20px;
}

section .content-site .content-page .zone-texte .contact .photo {
    float: left;
    width: 15%;
    max-height: 250px;
    overflow: hidden;
}

section .content-site .content-page .zone-texte .contact .photo img {
    width: 100%;
    margin: 0;
}

section .content-site .content-page .zone-texte .contact .photo+.infos {
    width: 83%;
    margin-left: 2%;
}

section .content-site .content-page .zone-texte .contact .photo+.map+.infos {
    margin: 0 2%;
    width: 51%;
}

section .content-site .content-page .zone-texte .contact .map {
    float: right;
    width: 30%;
}

section .content-site .content-page .zone-texte .contact .map+.infos {
    width: 68%;
    margin-right: 2%;
}

section .content-site .content-page .zone-texte .contact .map .mapp-container {
    width: 100% !important;
    margin: 0 !important;
}

section .content-site .content-page .zone-texte .contact .map .mapp-container .mapp-canvas-panel,
section .content-site .content-page .zone-texte .contact .map .mapp-container .mapp-canvas {
    width: 100% !important;
    height: 250px !important;
}

section .content-site .content-page .zone-texte .contact .infos {
    float: left;
    width: 100%;
}

section .content-site .content-page .zone-texte .contact .infos>* {
    float: left;
    clear: both;
    margin: 0;
}

section .content-site .content-page .zone-texte .contact .infos .fonction {
    font-family: "Gotham Bold", Arial, sans-serif;
    color: #004482;
    font-size: 16px;
    line-height: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #004482;
}

section .content-site .content-page .zone-texte .contact .infos .fonction a {
    text-decoration: none;
    color: #004482;
}

section .content-site .content-page .zone-texte .contact .infos .fonction a:hover {
    color: #1dc0ad;
}

section .content-site .content-page .zone-texte .contact .infos .nom {
    font-family: "Gotham Bold", Arial, sans-serif;
    color: #000000;
    font-size: 20px;
}

section .content-site .content-page .zone-texte .contact .infos .adresse {
    font-family: "Gotham Book", Arial, sans-serif;
    color: #004482;
    font-size: 15px;
    margin: 5px 0;
}

section .content-site .content-page .zone-texte .contact .infos .tel,
section .content-site .content-page .zone-texte .contact .infos .fax,
section .content-site .content-page .zone-texte .contact .infos .email,
section .content-site .content-page .zone-texte .contact .infos .plan {
    margin-top: 5px;
    font-family: 'AvenirMedium', Arial, sans-serif;
    color: #000000;
    font-size: 14px;
    letter-spacing: 0.4px;
}

section .content-site .content-page .zone-texte .contact .infos .email,
section .content-site .content-page .zone-texte .contact .infos .plan {
    float: left;
    font-size: 15px;
    clear: both;
    margin-top: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .content-site .content-page .zone-texte .contact .infos .email:hover,
section .content-site .content-page .zone-texte .contact .infos .plan:hover {
    color: #1dc0ad;
}

section .content-site .content-page .titre-bloc {
    float: left;
    width: 100%;
    text-align: center;
}

section .content-site .content-page .titre-bloc .titre {
    font-family: "Gotham Bold", Arial, sans-serif;
    font-size: 25px;
    color: #004680;
    margin-bottom: 15px;
}

section .content-site .content-page .prestations {
    float: left;
    width: 100%;
}

section .content-site .content-page .prestas-pmeeti {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
    row-gap: 4rem;
    margin-bottom: 5rem;
}

section .content-site .content-page .prestas-pmeeti .pmeeti.col-span-1 {
    grid-column: span 1;
}

section .content-site .content-page .prestas-pmeeti .pmeeti.col-span-2 {
    grid-column: span 2;
}

section .content-site .content-page .prestations .grand {
    width: 66% !important;
}

section .content-site .content-page .prestations .margin {
    margin-right: 0 !important;
}

section .content-site .content-page .prestations .prestation {
    float: left;
    margin-right: 2%;
    margin-bottom: 4%;
    width: 32%;
    background: #c2c8d8;
    height: 300px;
    position: relative;
}

section .content-site .content-page .prestations .pmeeti {
    background: #c2c8d8;
    height: 300px;
    position: relative;
}

section .content-site .content-page .prestations .prestation .visuel, section .content-site .content-page .prestations .pmeeti .visuel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

section .content-site .content-page .prestations .prestation .visuel img, section .content-site .content-page .prestations .pmeeti .visuel img {
    position: absolute;
    left: -300px;
    right: -300px;
    margin: auto;
    top: -300px;
    bottom: -300px;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}

section .content-site .content-page .prestations .prestation a, section .content-site .content-page .prestations .pmeeti a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

section .content-site .content-page .prestations .prestation a:hover~.nom, section .content-site .content-page .prestations .pmeeti a:hover~.nom {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 30px;
}

section .content-site .content-page .prestations .prestation .nom, section .content-site .content-page .prestations .pmeeti .nom {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 70px;
    line-height: 70px;
    bottom: -20px;
    padding: 0 10px;
    text-align: center;
    background: #004482;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .content-site .content-page .prestations .prestation .nom span, section .content-site .content-page .prestations .pmeeti .nom span {
    display: inline-block;
    vertical-align: middle;
    line-height: 18px;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    max-height: 54px;
    overflow: hidden;
}

section .content-site .content-page .partenaires {
    float: left;
    width: 100%;
    margin: 50px 0;
    position: relative;
}

section .content-site .content-page .partenaires:before {
    content: '';
    position: absolute;
    left: 24px;
    top: -24px;
    width: 100%;
    height: 100%;
    border: 1px solid #c2c8d8;
    opacity: 0.5;
    z-index: 1;
}

section .content-site .content-page .partenaires:after {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    width: 60px;
    height: 60px;
    background: url("../img/barre.svg") no-repeat center;
    background-size: contain;
    z-index: 3;
    -webkit-animation: barre 5s ease infinite;
    -moz-animation: barre 5s ease infinite;
    -o-animation: barre 5s ease infinite;
    -ms-animation: barre 5s ease infinite;
    animation: barre 5s ease infinite;
}

section .content-site .content-page .partenaires>div {
    float: left;
    width: 100%;
    background: #1dc0ad;
    padding: 30px;
    position: relative;
    z-index: 2;
}

section .content-site .content-page .partenaires .titre-bloc .titre {
    color: #ffffff;
    position: relative;
    padding-bottom: 25px;
}

section .content-site .content-page .partenaires .titre-bloc .titre:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: #ffffff;
    left: 50%;
    margin-left: -50px;
    bottom: 10px;
}

section .content-site .content-page .partenaires .liste-partenaires {
    float: left;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

section .content-site .content-page .partenaires .liste-partenaires p {
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 15px;
    line-height: 28px;
    margin: 0;
    color: #ffffff;
}

section .content-site .content-page .partenaires .liste-partenaires p strong {
    font-family: "Gotham", Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
}

section .content-site .content-page .partenaires .liste-partenaires p a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .content-site .content-page .partenaires .liste-partenaires p a:hover {
    color: #004482;
}

section .content-site .content-page .partenaires .liste-partenaires p+p {
    margin-top: 10px;
}

section .content-site .content-page .references {
    float: left;
    width: 100%;
    margin-bottom: 50px;
}

section .content-site .content-page .references .carousel {
    border: 1px solid #c2c8d8;
    padding: 0 90px;
}

section .content-site .content-page .references .carousel .carousel-control {
    width: 90px;
    line-height: 120px;
}

section .content-site .content-page .references .carousel .carousel-control .icon:after {
    font-size: 20px;
}

section .content-site .content-page .references .linesRef {
    padding: 0;
    height: 3px;
    margin-top: -30px;
}

section .content-site .content-page .references .linesRef:before,
section .content-site .content-page .references .linesRef:after {
    content: '';
    background-color: #004086;
    width: 75px;
    height: 4px;
    bottom: 0;
    position: absolute;
    display: inline-block;
    z-index: 10;
}

section .content-site .content-page .references .linesRef:before {
    left: -15px;
}

section .content-site .content-page .references .linesRef:after {
    right: -15px;
}

section .content-site .content-page .liste-univers {
    float: left;
    width: 100%;
    margin-top: 30px;
}

section .content-site .content-page .liste-univers .univers {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

section .content-site .content-page .liste-univers .univers .titre {
    font-family: "Gotham Bold", Arial, sans-serif;
    font-size: 20px;
}

section .content-site .content-page .liste-univers .univers .sous-titre {
    font-family: "Gotham Book", Arial, sans-serif;
    font-size: 14px;
    color: #000000;
}

section .content-site .content-page .liste-univers .univers:nth-of-type(1) a {
    color: #002542;
}

section .content-site .content-page .liste-univers .univers:nth-of-type(2) a {
    color: #00345f;
}

section .content-site .content-page .liste-univers .univers:nth-of-type(3) a {
    color: #004680;
}

section .content-site .content-page .liste-univers .univers:nth-of-type(4) a {
    color: #0053a0;
}

section .content-site .content-page .liste-univers .univers:nth-of-type(5) a {
    color: #0061bb;
}

section .content-site .content-page .liste-univers .univers a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .content-site .content-page .liste-univers .univers a:hover {
    color: #1dc0ad;
}

section .content-site .content-page .actualites {
    float: left;
    width: 100%;
}

section .content-site .content-page .actualites .bloc-actualites {
    float: left;
    width: 100%;
    margin: 30px 0;
    background: rgba(194, 200, 216, 0.2);
    position: relative;
    padding: 25px 0;
}

section .content-site .content-page .actualites .bloc-actualites:before {
    content: '';
    position: absolute;
    left: 24px;
    top: -24px;
    width: 100%;
    height: 100%;
    border: 1px solid #c2c8d8;
    opacity: 0.5;
    z-index: 1;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus {
    float: left;
    width: 100%;
    position: relative;
    z-index: 2;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel {
    padding: 0 90px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .carousel-control {
    width: 90px;
    line-height: 180px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .carousel-control .icon:after {
    font-size: 20px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef {
    padding: 0;
    height: 3px;
    margin-top: -30px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef:before,
section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef:after {
    content: '';
    background-color: #004086;
    width: 75px;
    height: 4px;
    bottom: 0;
    position: absolute;
    display: inline-block;
    z-index: 10;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef:before {
    left: -15px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef:after {
    right: -15px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu {
    float: left;
    width: 25%;
    height: 170px;
    padding: 0 10px;
    margin-bottom: 10px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu a {
    float: left;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu a:hover .lien {
    color: #1dc0ad;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .titre {
    float: left;
    width: 100%;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 14px;
    color: #004482;
    line-height: 16px;
    max-height: 48px;
    overflow: hidden;
    margin-bottom: 2px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .date {
    float: left;
    width: 100%;
    font-family: "AvenirRoman", Arial, sans-serif;
    font-style: italic;
    font-size: 12px;
    color: #c2c8d8;
    margin-bottom: 10px;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .txt {
    float: left;
    width: 100%;
    font-family: "AvenirRoman", Arial, sans-serif;
    font-size: 13px !important;
    color: #000000;
    line-height: 15px;
    max-height: 60px;
    overflow: hidden;
    opacity: 0.6;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .lien {
    float: left;
    width: 100%;
    margin: 10px 0;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 11px;
    color: #004482;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .lien:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 7px;
    background: url("../img/arrowBlue.png") no-repeat;
    margin-right: 5px;
}


/* Grid Builder Start */
section .content-site .content-page .wpgb-card-wrapper .grille-titre a {
    font-family: "Gotham", Arial, sans-serif;
    font-size: 14px;
    color: #004482;
    margin-bottom: 2px;
    line-height: 16px;
    text-decoration: none;
}

section .content-site .content-page .wpgb-card-wrapper .grille-titre a:hover {
    color: #1dc0ad;
}

section .content-site .content-page .wpgb-card-wrapper .grille-date {
    font-family: "AvenirRoman", Arial, sans-serif;
    font-style: italic;
    font-size: 12px;
    color: #c2c8d8;
    margin-bottom: 10px;
}

section .content-site .content-page .wpgb-card-wrapper .grille-texte {
    font-family: "AvenirRoman", Arial, sans-serif;
    font-size: 13px;
    color: #000000;
    line-height: 15px;
    opacity: 0.6;
}

section .content-site .content-page .wpgb-card-wrapper .grille-lire-plus {
    margin: 10px 0;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 11px;
    color: #004482;
    text-decoration: none;
}

section .content-site .content-page .wpgb-card-wrapper .grille-lire-plus:hover {
    color: #1dc0ad;
    background-color: transparent;
}

section .content-site .content-page .wpgb-wrapper .wpgb-page:before {
    display: none;
}


/* Grid Builder End */

section .carousel .item .logo-ref {
    line-height: 120px;
}

section.prestation .content-site .titre-page .titre {
    color: #0061bb;
}

section.prestation .content-site .content-page .titre-bloc {
    text-align: left;
}

section.page-error .visuel {
    float: left;
    width: 100%;
    margin-bottom: -150px;
    position: relative;
}

section.page-error .visuel img {
    float: right;
    width: 120%;
    position: relative;
    z-index: 1;
}

section.page-error .visuel .txt {
    position: absolute;
    top: 10%;
    right: 5%;
    max-width: 90%;
    z-index: 2;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
}

section.page-error .visuel .txt p {
    display: block;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 16px;
    color: #004482;
    line-height: 30px;
    text-align: center;
}

section.page-error .visuel .txt .liens {
    display: block;
    text-align: center;
    margin-top: 20px;
}

section.page-error .visuel .txt .liens a {
    display: inline-block;
    vertical-align: middle;
    height: 45px;
    line-height: 45px;
    background: #004482;
    padding: 0 40px;
    margin: 0 5px;
    color: #ffffff;
    position: relative;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 14px;
}

section.page-error .visuel .txt .liens a:after {
    content: '';
    position: absolute;
    left: 5px;
    top: -5px;
    width: 100%;
    height: 100%;
    border: 1px solid #004482;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

section.page-error .visuel .txt .liens a:hover:after {
    left: 0;
    top: 0;
}

footer {
    float: left;
    width: 100%;
    background-color: #00224b;
}

footer .listFooter .listBureaux,
footer .listFooter .listNavFooter {
    width: 75%;
    margin-top: 10px;
    margin-left: 0;
}

footer .listFooter .listBureaux .listTitle,
footer .listFooter .listNavFooter .listTitle,
footer .listFooter .listBureaux .subtitle1,
footer .listFooter .listNavFooter .subtitle1,
footer .listFooter .listBureaux .subtitle2,
footer .listFooter .listNavFooter .subtitle2 {
    line-height: 40px;
    color: #ffffff;
}

footer .listFooter .listBureaux .listTitle a,
footer .listFooter .listNavFooter .listTitle a,
footer .listFooter .listBureaux .subtitle1 a,
footer .listFooter .listNavFooter .subtitle1 a,
footer .listFooter .listBureaux .subtitle2 a,
footer .listFooter .listNavFooter .subtitle2 a {
    font-family: 'AvenirRoman', Arial, sans-serif;
    color: #ffffff;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

footer .listFooter .listBureaux .listTitle a:hover,
footer .listFooter .listNavFooter .listTitle a:hover,
footer .listFooter .listBureaux .subtitle1 a:hover,
footer .listFooter .listNavFooter .subtitle1 a:hover,
footer .listFooter .listBureaux .subtitle2 a:hover,
footer .listFooter .listNavFooter .subtitle2 a:hover {
    text-decoration: none;
    color: #1dc0ad;
    opacity: 1;
}

footer .listFooter .listBureaux .listTitle.subtitle2 a,
footer .listFooter .listNavFooter .listTitle.subtitle2 a,
footer .listFooter .listBureaux .subtitle1.subtitle2 a,
footer .listFooter .listNavFooter .subtitle1.subtitle2 a,
footer .listFooter .listBureaux .subtitle2.subtitle2 a,
footer .listFooter .listNavFooter .subtitle2.subtitle2 a {
    opacity: 0.8;
    line-height: 16px;
    display: inline-block;
    vertical-align: middle;
}

footer .listFooter .listBureaux .listTitle.subtitle1,
footer .listFooter .listNavFooter .listTitle.subtitle1,
footer .listFooter .listBureaux .subtitle1.subtitle1,
footer .listFooter .listNavFooter .subtitle1.subtitle1,
footer .listFooter .listBureaux .subtitle2.subtitle1,
footer .listFooter .listNavFooter .subtitle2.subtitle1,
footer .listFooter .listBureaux .listTitle.subtitle2,
footer .listFooter .listNavFooter .listTitle.subtitle2,
footer .listFooter .listBureaux .subtitle1.subtitle2,
footer .listFooter .listNavFooter .subtitle1.subtitle2,
footer .listFooter .listBureaux .subtitle2.subtitle2,
footer .listFooter .listNavFooter .subtitle2.subtitle2 {
    border-bottom: 1px #4d6581 solid;
}

footer .listFooter .listBureaux .listTitle.listTitle a,
footer .listFooter .listNavFooter .listTitle.listTitle a,
footer .listFooter .listBureaux .subtitle1.listTitle a,
footer .listFooter .listNavFooter .subtitle1.listTitle a,
footer .listFooter .listBureaux .subtitle2.listTitle a,
footer .listFooter .listNavFooter .subtitle2.listTitle a {
    font-size: 15px;
}

footer .footerRight {
    padding-left: 30px;
    padding-top: 10px;
}

footer .footerRight .titleFooter {
    font-family: 'AvenirRoman', Arial, sans-serif;
    font-size: 15px;
    color: #ffffff;
    line-height: 40px;
}

footer .footerRight .circularlinks {
    margin-top: 5px;
    margin-bottom: 20px;
}

footer .footerRight .circularlinks .circularLink {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 27px;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

footer .footerRight .circularlinks .circularLink:hover {
    background-color: #1dc0ad;
}

footer .footerRight .circularlinks .circularLink i {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #ffffff;
}

footer .footerRight .linkBottom {
    margin-top: 10px;
    display: inline-block;
    margin-right: 10px;
}

footer .footerRight .linkBottom:hover {
    opacity: 0.90;
}

footer .footerRight .linkBottom img {
    height: 45px;
}

footer .mentions {
    margin: 30px 0 0 0;
    line-height: 50px;
    text-align: center;
    border-top: 1px #4d6581 solid;
    font-family: 'AvenirLight', Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
}

footer .mentions .textMentions {
    margin-bottom: 0;
}

footer .mentions .textMentions a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

footer .mentions .textMentions a:hover {
    text-decoration: none;
    color: #1dc0ad;
}

@media (min-width: 540px) {
    section .bloc-home#proximity .rowProximite .boxProx a:hover .boxCity {
        transform: rotateY(-180deg);
    }
    section .bloc-home#proximity .rowProximite .boxProx a:hover .boxCity img {
        opacity: 0.05;
    }
    section .bloc-home#proximity .rowProximite .boxProx a:hover .boxCity .adresse {
        opacity: 1;
    }
    section .bloc-home#proximity .rowProximite .boxProx .boxCity .adresse {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: rotateY(180deg);
        opacity: 0;
        color: #ffffff;
        -webkit-transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }
    section .bloc-home#proximity .rowProximite .boxProx .boxCity .adresse span {
        display: inline-block;
        vertical-align: middle;
        line-height: 25px;
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .menu .left-menu .msgHome .textMsgHome {
        font-size: 17px;
    }
    .menu .right-preview .listNavMenu {
        padding-top: 32%;
    }
    .menu .right-preview .listNavMenu .navMenu li.linkMenu a.linkMenu {
        font-size: 32px;
    }
    .menu-home .menuSousHeader>.row {
        margin: 0;
    }
    .menu-home .menuSousHeader .subMenu {
        width: 20%;
        margin: 0;
    }
    section .title1 {
        font-size: 50px;
    }
    section .title2 {
        font-size: 28px;
    }
    section .title2.title2Big {
        font-size: 40px;
    }
    section .textBig {
        font-size: 20px;
    }
    section .bloc-home {
        margin-bottom: 30px;
    }
    section .bloc-home .titleSection {
        margin-bottom: 60px;
    }
    section .bloc-home#title .homeTitle .homeTitleLine1 {
        font-size: 55px;
        line-height: 40px;
    }
    section .bloc-home#title .homeTitle .homeTitleLine2,
    section .bloc-home#title .homeTitle .homeTitleLine2-light {
        font-size: 40px;
        line-height: 40px;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue {
        width: 160px;
        height: 45px;
        line-height: 45px;
        margin-left: -80px;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue .txtValue {
        font-size: 17px;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue span {
        font-size: 13px;
    }
    section .bloc-home#team .photo-groupe {
        padding-right: 20px;
    }
    section .bloc-home#team .photo-groupe:after {
        top: -20px;
        left: 20px;
        bottom: 20px;
    }
    section .bloc-home#expertises .rowExpertise .textBig {
        font-size: 20px;
    }
    section .bloc-home#references .textRef .textBig br {
        display: none;
    }
    section .bloc-home#proximity .rowProximite .boxProx {
        width: 100%;
    }
    section .bloc-home#proximity .rowProximite .boxProx .borderCity {
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 992px) {
    header .left,
    header .right {
        height: 70px;
        line-height: 70px;
    }
    header .left img,
    header .right img {
        width: auto;
        height: 50px;
        margin-top: -25px;
    }
    header .fond-blanc {
        height: 70px;
        line-height: 70px;
    }
    .menu .left-menu {
        width: 56%;
        right: -56%;
    }
    .menu .left-menu .msgHome .textMsgHome {
        font-size: 15px;
    }
    .menu .right-preview {
        width: 45%;
        right: -45%;
    }
    .menu .right-preview .listNavMenu .navMenu li.linkMenu a.linkMenu {
        font-size: 27px;
    }
    .menu-home .menuSousHeader {
        height: 110px;
        margin-top: -110px;
    }
    .menu-home .menuSousHeader .subMenu {
        height: 110px;
    }
    .menu-home .menuSousHeader .subMenu .subMenuTxt .titleSubMenu {
        font-size: 13px;
        padding-top: 12%;
    }
    .menu-home .menuSousHeader .subMenu .subMenuTxt .subTitleSubMenu {
        font-size: 10px;
    }
    section {
        padding-top: 70px;
    }
    section .title2 {
        font-size: 21px;
    }
    section .bloc-gris {
        padding: 30px;
    }
    section .bloc-gris:after {
        left: 10px;
        top: -10px;
    }
    section .bloc-home .titleSection {
        margin-bottom: 40px;
    }
    section .bloc-home#title .homeTitle .homeTitleLine1 {
        font-size: 40px;
        line-height: 30px;
    }
    section .bloc-home#title .homeTitle .homeTitleLine2,
    section .bloc-home#title .homeTitle .homeTitleLine2-light {
        font-size: 30px;
        line-height: 30px;
    }
    section .bloc-home#numbers .colNumbersRight {
        padding-right: 35px;
    }
    section .bloc-home#numbers .boxNumber {
        height: 150px;
    }
    section .bloc-home#numbers .boxNumber .textBoxNum {
        padding-top: 15px;
    }
    section .bloc-home#numbers .box25ans {
        margin-top: 10px;
        height: 290px;
    }
    section .bloc-home#values .boxValues:before {
        left: 50px;
        bottom: -20px;
    }
    section .bloc-home#values .boxValues .boxValue {
        width: 33.333333333333336%;
    }
    section .bloc-home#values .boxValues .boxValueText {
        width: 100%;
        padding-top: 10px;
        padding-left: 70px;
    }
    section .bloc-home#values .boxValues .boxValueText:before {
        display: none;
    }
    section .bloc-home#team .zoneTexteLibre {
        padding-top: 10px;
    }
    section .bloc-home#team .textBig br {
        display: none;
    }
    section .bloc-home#expertises .rowExpertise .expertise {
        height: auto;
        text-align: left;
        margin-bottom: 30px;
    }
    section .bloc-home#expertises .rowExpertise .expertise .nameExpertise {
        height: 50px;
    }
    section .bloc-home#expertises .rowExpertise .txtExpertise {
        height: auto;
    }
    section .bloc-home#expertises .rowExpertise .txtExpertise.txtExpertise1 {
        margin-top: -50px;
        margin-bottom: 50px;
    }
    section .bloc-home#expertises .rowExpertise .txtExpertise.txtExpertise2 {
        display: none;
    }
    section .bloc-home#proximity .rowProximite {
        height: auto;
        margin-bottom: 30px;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity {
        text-align: center;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx {
        width: 100%;
        max-width: 300px;
        display: inline-block;
    }
    section .bloc-home#proximity .rowProximite .bloc-gris {
        height: auto;
    }
    section .ban-haut-page .infos-contact {
        height: auto;
        min-height: 50px;
        padding: 10px 0;
        line-height: 50px;
    }
    section .ban-haut-page .infos-contact .nom {
        padding-right: 550px;
    }
    section .ban-haut-page .infos-contact .liens {
        width: 550px;
    }
    section .ban-haut-page .infos-contact .liens>div a {
        height: 40px;
        line-height: 38px;
        padding: 0 10px 0 40px;
    }
    section .ban-haut-page .infos-contact .liens>div a:before {
        width: 40px;
        font-size: 18px !important;
    }
    section .ban-haut-page .infos-contact .liens>div a>span {
        font-size: 12px;
        line-height: 14px;
    }
    section .content-site .content-page .prestations .prestation {
        height: 250px;
    }
    footer .footerRight {
        padding-left: 15px;
        text-align: center;
    }
    footer .footerRight .linkBottom {
        margin: 5px;
    }
    footer .footerRight .linkBottom img {
        height: 40px;
    }
}

@media (min-width: 768px) {
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise .infoExpertise {
        display: block !important;
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise:hover:before {
        left: 0;
        bottom: 0;
        opacity: 0;
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise:hover:after {
        left: 0;
        opacity: 0;
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise:hover>img {
        transform: rotateY(-180deg);
        opacity: 0;
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise:hover .infoExpertise {
        opacity: 1;
        transform: rotateY(0);
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise:hover .infoExpertise img {
        opacity: 1;
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise .visuExpertise:hover+.border {
        left: 0;
        bottom: 0;
        background: #ffffff;
        border-color: #004482;
    }
}

@media (min-width: 768px) and (max-width: 1000px) {
    section .content-site .content-page .prestas-pmeeti {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .menu .left-menu .msgHome {
        display: none;
    }
    .menu .right-preview {
        width: 60%;
        right: -60%;
        z-index: 10;
    }
    .menu .right-preview .listNavMenu {
        padding-top: 60px;
        padding-left: 20px;
    }
    .menu .right-preview .listNavMenu .navMenu li.linkMenu {
        margin-bottom: 8px;
    }
    .menu .right-preview .listNavMenu .navMenu li.linkMenu a.linkMenu {
        font-size: 20px;
        line-height: 30px;
    }
    .menu-home .header .pushScroll {
        bottom: 240px;
    }
    .menu-home .menuSousHeader {
        margin-top: -200px;
        height: 200px;
    }
    .menu-home .menuSousHeader .subMenu {
        width: 100%;
        margin: 0;
        float: left;
        height: 40px;
    }
    .menu-home .menuSousHeader .subMenu .subMenuTxt {
        height: 40px;
        line-height: 40px;
    }
    .menu-home .menuSousHeader .subMenu .subMenuTxt .titleSubMenu {
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        text-align: left;
        font-size: 14px;
        line-height: 19px;
    }
    .menu-home .menuSousHeader .subMenu .subMenuTxt .subTitleSubMenu {
        display: none;
    }
    .menu-home .menuSousHeader .subMenu .arrowSubMenu {
        height: 40px;
        line-height: 40px;
        position: absolute;
        right: 10px;
        top: 0;
        width: 20px;
    }
    section .title1 {
        font-size: 32px;
        line-height: 32px;
        padding-left: 15px;
    }
    section .title2 {
        font-size: 22px;
    }
    section .title2.title2Big {
        font-size: 35px;
    }
    section .title2.title2plus {
        font-size: 15px;
    }
    section .titleSection img {
        width: 40px;
    }
    section .textBig {
        font-size: 21px;
    }
    section .textBig .mini {
        font-size: 14px;
        line-height: 17px;
    }
    section .bloc-gris {
        padding: 20px;
    }
    section .bloc-gris:after {
        left: 10px;
        top: -10px;
    }
    section .bloc-home .titleSection {
        margin-bottom: 30px;
    }
    section .bloc-home#numbers .colNumbersRight {
        padding-right: 25px;
    }
    section .bloc-home#numbers .box25ans {
        margin-top: 20px;
        height: auto;
        padding-bottom: 70px;
    }
    section .bloc-home#numbers .box25ans .more {
        bottom: 30px;
        padding-left: 20px;
    }
    section .bloc-home#numbers .box25ans .pictoBoat25 {
        max-width: 20%;
    }
    section .bloc-home#numbers .box25ans .title2 {
        width: 80%;
        margin-top: -10px;
    }
    section .bloc-home#numbers .box25ans .textSection {
        width: 80%;
    }
    section .bloc-home#values .boxValues:before {
        left: 15px;
        bottom: 0;
        right: -5px;
        top: -10px;
    }
    section .bloc-home#values .boxValues .boxValue {
        width: 50%;
        padding-left: 5px;
        padding-right: 5px;
    }
    section .bloc-home#values .boxValues .boxValue .value .imgValue {
        border-width: 4px;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue {
        width: 140px;
        height: 35px;
        line-height: 35px;
        margin-left: -70px;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue .txtValue {
        font-size: 14px;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue span {
        font-size: 12px;
        line-height: 15px;
        padding: 0 5px;
        margin-top: -3px;
    }
    section .bloc-home#values .boxValues .boxValueText {
        width: 50%;
        padding-top: 20px;
        padding-left: 15px;
    }
    section .bloc-home#team .photo-groupe {
        margin-top: 10px;
    }
    section .bloc-home#team .zoneTexteLibre {
        padding-top: 0;
        margin-top: -20px;
    }
    section .bloc-home#expertises .rowExpertise {
        margin-bottom: 30px;
    }
    section .bloc-home#expertises .rowExpertise .textBig {
        font-size: 20px;
        margin: 15px;
    }
    section .bloc-home#references .tab-content .tab-pane .linesRef {
        margin-top: -70px;
    }
    section .bloc-home#references .tab-content .tab-pane .linesRef:before {
        left: -10px;
        width: 40px;
    }
    section .bloc-home#references .tab-content .tab-pane .linesRef:after {
        right: -10px;
        width: 40px;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx {
        max-width: inherit;
        margin-bottom: 30px;
    }
    section .bloc-home#proximity .rowProximite .bloc-gris {
        margin-bottom: 30px;
    }
    section .ban-haut-page .infos-contact {
        position: relative;
        float: left;
        width: 100%;
        min-height: inherit;
        line-height: 40px;
    }
    section .ban-haut-page .infos-contact .nom {
        padding-right: 0;
    }
    section .ban-haut-page .infos-contact .nom>span {
        font-size: 12px;
    }
    section .ban-haut-page .infos-contact .nom>span span:last-of-type {
        font-size: 16px;
    }
    section .ban-haut-page .infos-contact .liens {
        position: relative;
        float: left;
        width: 100%;
        right: 0;
    }
    section .ban-haut-page .infos-contact .liens>div {
        float: left;
        width: 30%;
    }
    section .ban-haut-page .infos-contact .liens .linkedin {
        width: 36%;
    }
    section .fil-ariane {
        margin: 10px 0;
    }
    section .fil-ariane a,
    section .fil-ariane span {
        font-size: 12px;
    }
    section .fil-ariane .container>div+div:before {
        width: 15px;
    }
    section .content-site .titre-page {
        margin-bottom: 20px;
    }
    section .content-site .titre-page .titre {
        font-size: 21px;
        line-height: 25px;
    }
    section .content-site .titre-page .sous-titre {
        font-size: 13px;
        line-height: 15px;
    }
    section .content-site .content-page .zone-texte {
        margin-bottom: 30px;
    }
    section .content-site .content-page .zone-texte h2,
    section .content-site .content-page .zone-texte h3,
    section .content-site .content-page .zone-texte h4 {
        margin-bottom: 15px;
    }
    section .content-site .content-page .zone-texte h2~h2,
    section .content-site .content-page .zone-texte h3~h2,
    section .content-site .content-page .zone-texte h4~h2,
    section .content-site .content-page .zone-texte h2~h3,
    section .content-site .content-page .zone-texte h3~h3,
    section .content-site .content-page .zone-texte h4~h3,
    section .content-site .content-page .zone-texte h2~h4,
    section .content-site .content-page .zone-texte h3~h4,
    section .content-site .content-page .zone-texte h4~h4 {
        margin-top: 15px;
    }
    section .content-site .content-page .zone-texte h2 {
        font-size: 20px;
        line-height: 20px;
    }
    section .content-site .content-page .zone-texte h3 {
        font-size: 18px;
        line-height: 18px;
    }
    section .content-site .content-page .zone-texte .exemple {
        padding: 20px 20px 20px 120px;
        min-height: 90px;
    }
    section .content-site .content-page .zone-texte .exemple:before {
        width: 100px;
        height: 60px;
        margin-top: -30px;
    }
    section .content-site .content-page .zone-texte .exemple:after {
        height: 70px;
        left: 100px;
        margin-top: -35px;
    }
    section .content-site .content-page .zone-texte .exemple .titre-exemple {
        margin-bottom: 10px;
    }
    section .content-site .content-page .zone-texte .contact {
        margin-bottom: -40px;
        padding-top: 80px;
    }
    section .content-site .content-page .zone-texte .contact .map {
        display: none;
    }
    section .content-site .content-page .zone-texte .contact .map+.infos {
        width: 100%;
    }
    section .content-site .content-page .zone-texte .contact .photo {
        width: 20%;
    }
    section .content-site .content-page .zone-texte .contact .photo~.infos {
        width: 77% !important;
        margin-left: 3% !important;
    }
    section .content-site .content-page .zone-texte .contact .infos {
        margin-right: 0 !important;
    }
    section .content-site .content-page .zone-texte .contact .infos .fonction {
        font-size: 15px;
        line-height: 15px;
        padding-bottom: 7px;
        margin-bottom: 7px;
    }
    section .content-site .content-page .zone-texte .contact .infos .nom {
        font-size: 17px;
    }
    section .content-site .content-page .zone-texte .contact .infos .adresse {
        font-size: 14px;
        margin: 2px 0;
    }
    section .content-site .content-page .zone-texte .contact .infos .tel,
    section .content-site .content-page .zone-texte .contact .infos .fax,
    section .content-site .content-page .zone-texte .contact .infos .email,
    section .content-site .content-page .zone-texte .contact .infos .plan {
        margin-top: 4px;
        font-size: 13px;
    }
    section .content-site .content-page .titre-bloc .titre {
        font-size: 22px;
    }
    section .content-site .content-page .prestations .prestation {
        height: 230px;
        width: 49% !important;
        margin-bottom: 5%;
    }
    section .content-site .content-page .prestations .prestation .nom, section .content-site .content-page .prestas-pmeeti .pmeeti .nom {
        left: 10px;
        right: 10px;
        height: 65px;
        line-height: 65px;
    }
    section .content-site .content-page .prestations .prestation .nom span, section .content-site .content-page .prestas-pmeeti .pmeeti .nom span {
        line-height: 18px;
        font-size: 12px;
    }
    section .content-site .content-page .prestations .prestation a:hover~.nom, section .content-site .content-page .prestas-pmeeti .pmeeti a:hover~.nom {
        padding: 0 20px;
    }

    /* special Presta PME et ETI */
    section .content-site .content-page .prestas-pmeeti {
        display: flex;
        flex-direction: column;
        row-gap: 3rem;
    }

    section .content-site .content-page .prestations .pmeeti {
        width: 100%;
    }

    .pmeeti.col-span-1, .pmeeti.col-span-2 {
        grid-column: auto; 
    }

    section .content-site .content-page .partenaires {
        margin: 30px 0;
    }
    section .content-site .content-page .partenaires:before {
        left: 10px;
        top: -10px;
    }
    section .content-site .content-page .partenaires:after {
        left: 20px;
        top: 10px;
        width: 50px;
        height: 50px;
    }
    section .content-site .content-page .partenaires>div {
        padding: 15px;
    }
    section .content-site .content-page .partenaires .titre-bloc .titre {
        padding-bottom: 20px;
    }
    section .content-site .content-page .partenaires .liste-partenaires {
        margin-top: 0;
    }
    section .content-site .content-page .partenaires .liste-partenaires p {
        font-size: 14px;
        line-height: 24px;
    }
    section .content-site .content-page .partenaires .liste-partenaires p strong {
        font-size: 15px;
    }
    section .content-site .content-page .liste-univers {
        margin-top: 20px;
    }
    section .content-site .content-page .liste-univers .univers .titre {
        font-size: 16px;
    }
    section .content-site .content-page .liste-univers .univers .sous-titre {
        font-size: 13px;
    }
    section .content-site .content-page .references .carousel {
        padding: 0 60px;
    }
    section .content-site .content-page .references .carousel .carousel-control {
        width: 60px;
    }
    section .content-site .content-page .references .linesRef:after,
    section .content-site .content-page .references .linesRef:before {
        width: 65px;
        height: 3px;
    }
    section .content-site .content-page .actualites .bloc-actualites {
        margin: 15px 0;
        padding: 15px 0;
    }
    section .content-site .content-page .actualites .bloc-actualites:before {
        left: 10px;
        top: -10px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel {
        padding: 0 60px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .carousel-control {
        width: 60px;
        line-height: 90px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu {
        height: 90px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .txt {
        display: none;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .date {
        margin-bottom: 0;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef:after,
    section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef:before {
        width: 65px;
        height: 3px;
    }
    section.page-error .visuel {
        margin-bottom: -50px;
    }
    section.page-error .visuel .txt {
        left: 50px;
        right: 50px;
        top: 50px;
        max-width: inherit;
    }
    #button-pme-eti-1, #button-pme-eti-2 {
        width: 100%!important;
        margin-top: 1rem!important;
    }
}

@media (max-width: 540px) {
    header .left,
    header .right {
        height: 60px;
        line-height: 60px;
        padding: 0 10px;
    }
    header .left img,
    header .right img {
        height: 40px;
        margin-top: -20px;
        left: 10px;
    }
    header .fond-blanc {
        height: 60px;
        line-height: 60px;
    }
    header.up .right .menu-button .textMenu {
        color: #004482;
    }
    header.up .right .menu-button .menu-toggle span,
    header.up .right .menu-button .menu-toggle:before,
    header.up .right .menu-button .menu-toggle:after {
        background-color: #004482;
    }
    header.up .fond-blanc {
        background-color: #ffffff;
    }
    .menu .left-menu {
        width: 100%;
        left: -100%;
    }
    .menu .right-preview {
        width: 90%;
        height: 100%;
        right: -90%;
        margin-top: 60px;
        z-index: 10;
    }
    .menu .right-preview .listNavMenu {
        padding-top: 5%;
        padding-left: 0;
    }
    .menu .right-preview .listNavMenu .navMenu li.linkMenu {
        margin-left: 2%;
        margin-bottom: 9px;
    }
    .menu .right-preview .listNavMenu .navMenu li.linkMenu a.linkMenu {
        font-size: 15px;
        line-height: 20px;
    }
    .menu-home .header .textMsgHome {
        font-size: 20px;
        line-height: 25px;
    }
    .menu-home .header .pushScroll {
        bottom: 30px;
    }
    .menu-home .menuSousHeader {
        display: none;
    }
    section {
        padding-top: 60px;
    }
    section .title1 {
        font-size: 25px;
        line-height: 25px;
        padding-left: 10px;
    }
    section .title2 {
        font-size: 18px;
    }
    section .title2.title2Big {
        font-size: 25px;
    }
    section .titleSection img {
        width: 35px;
    }
    section .textBig {
        font-size: 16px;
        margin: 10px;
    }
    section .more a {
        font-size: 13px;
    }
    section .bloc-home .titleSection {
        margin-bottom: 10px;
    }
    section .bloc-home#title .homeTitle {
        margin-top: 10px;
    }
    section .bloc-home#title .homeTitle .homeTitleLine1 {
        font-size: 28px;
        line-height: 25px;
    }
    section .bloc-home#title .homeTitle .homeTitleLine2 {
        font-size: 17px;
        margin-top: 10px;
        line-height: 20px;
    }
    section .bloc-home#title .homeTitle .homeTitleLine2-light {
        font-size: 21px;
        line-height: 24px;
    }
    section .bloc-home#numbers .textBig {
        margin: 20px 10px;
    }
    section .bloc-home#numbers .rowNumbers>div:first-of-type {
        padding-right: 5px;
    }
    section .bloc-home#numbers .rowNumbers>div:last-of-type {
        padding-left: 5px;
    }
    section .bloc-home#numbers .boxNumPicto {
        height: 120px;
        line-height: 120px;
    }
    section .bloc-home#numbers .boxNumber {
        height: 100px;
    }
    section .bloc-home#numbers .boxNumber .textBoxNum {
        padding-top: 13px;
        border-width: 3px;
    }
    section .bloc-home#numbers .boxNumber .textBoxNum .number {
        font-family: 'AvenirBlack', Arial, sans-serif;
        font-size: 25px;
    }
    section .bloc-home#numbers .boxNumber .textBoxNum .textNum {
        font-size: 14px;
    }
    section .bloc-home#numbers .colNumbersRight {
        padding-right: 25px;
    }
    section .bloc-home#numbers .box25ans .pictoBoat25 {
        display: none;
    }
    section .bloc-home#numbers .box25ans .title2,
    section .bloc-home#numbers .box25ans .textSection {
        width: 100%;
    }
    section .bloc-home#values .barre {
        width: 35px;
    }
    section .bloc-home#team .boat {
        width: 35px;
    }
    section .bloc-home#team .photo-groupe {
        padding-right: 10px;
    }
    section .bloc-home#team .photo-groupe:after {
        top: -10px;
        left: 10px;
        bottom: 10px;
    }
    section .bloc-home#team .zoneTexteLibre {
        margin-top: 0;
    }
    section .bloc-home#expertises .waterWings,
    section .bloc-home#expertises .barre {
        width: 35px;
    }
    section .bloc-home#expertises .titleSection {
        margin-bottom: 20px;
    }
    section .bloc-home#expertises .title2 {
        font-size: 16px;
    }
    section .bloc-home#expertises .title2.title2plus {
        font-size: 13px;
    }
    section .bloc-home#expertises .colExpertBottom {
        display: none;
    }
    section .bloc-home#expertises .rowExpertise {
        margin-bottom: 10px;
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise {
        padding-left: 0;
    }
    section .bloc-home#expertises .rowExpertise .expertise .pictoExpertise:after {
        left: -10px;
        bottom: 20px;
    }
    section .bloc-home#expertises .rowExpertise .expertise .nameExpertise {
        font-size: 11px;
        padding-left: 0;
    }
    section .bloc-home#expertises .rowExpertise .textBig {
        font-size: 16px;
        margin: 10px;
    }
    section .bloc-home#references {
        display: none;
    }
    section .bloc-home#proximity .anchor {
        width: 35px;
    }
    section .bloc-home#proximity .rowProximite {
        margin-bottom: 0;
        margin-right: -15px;
    }
    section .bloc-home#proximity .rowProximite .bloc-gris {
        margin: 10px 0;
    }
    section .bloc-home#proximity .rowProximite .zoneTexteLibre:before {
        display: none;
    }
    section .bloc-home#proximity .rowProximite .zoneTexteLibre .textBig {
        margin-top: 10px;
        font-size: 18px;
        line-height: 20px;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity {
        width: 100%;
        margin-bottom: 10px;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx {
        max-width: inherit;
        height: 120px;
        line-height: 120px;
        margin: 0;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .borderCity {
        display: none;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .boxCity {
        width: 32%;
        display: inline-block;
        float: left;
        line-height: 120px;
        height: 100%;
        text-align: center;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .boxCity img {
        max-width: 65px;
        max-height: 90px;
        display: inline-block;
        vertical-align: middle;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .boxCity .adresse {
        display: none;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .boxCityText {
        width: 68%;
        display: inline-block;
        vertical-align: middle;
        line-height: 16px;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .boxCityText .address {
        font-size: 11px;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .boxCityText .address.nameCity {
        font-size: 16px;
        margin-bottom: 5px;
    }
    section .bloc-home#proximity .rowProximite .boxProxCity .boxProx .boxCityText .lineWhiteBig {
        width: 50%;
        height: 2px;
    }
    section .carousel {
        display: none;
    }
    section .ban-haut-page .infos-contact {
        line-height: inherit;
    }
    section .ban-haut-page .infos-contact .nom {
        margin-bottom: 5px;
    }
    section .ban-haut-page .infos-contact .nom>span {
        font-size: 11px;
    }
    section .ban-haut-page .infos-contact .nom>span span:first-of-type {
        opacity: 0.5;
    }
    section .ban-haut-page .infos-contact .nom>span span:last-of-type {
        font-size: 15px;
    }
    section .ban-haut-page .infos-contact .liens>div {
        width: auto !important;
        margin-left: 10px;
    }
    section .ban-haut-page .infos-contact .liens>div a {
        padding: 0;
        width: 45px;
        height: 35px;
        line-height: 33px;
    }
    section .ban-haut-page .infos-contact .liens>div a:before {
        width: 100%;
        font-size: 20px !important;
    }
    section .ban-haut-page .infos-contact .liens>div a>span {
        display: none;
    }
    section .content-site .titre-page .titre {
        font-size: 18px;
        line-height: 22px;
    }
    section .content-site .content-page .titre-bloc .titre {
        font-size: 19px;
        margin-bottom: 10px;
    }
    section .content-site .content-page .zone-texte {
        margin-bottom: 15px;
    }
    section .content-site .content-page .zone-texte p {
        font-size: 14px;
    }
    section .content-site .content-page .zone-texte ul li {
        font-size: 14px;
    }
    section .content-site .content-page .zone-texte ul li.list-blue,
    section .content-site .content-page .zone-texte ul li.list-green {
        padding-left: 20px;
    }
    section .content-site .content-page .zone-texte ul li.list-blue:before,
    section .content-site .content-page .zone-texte ul li.list-green:before {
        width: 10px;
        height: 2px;
        top: 9px;
    }
    section .content-site .content-page .zone-texte h2,
    section .content-site .content-page .zone-texte h3,
    section .content-site .content-page .zone-texte h4 {
        margin-bottom: 10px;
    }
    section .content-site .content-page .zone-texte h2~h2,
    section .content-site .content-page .zone-texte h3~h2,
    section .content-site .content-page .zone-texte h4~h2,
    section .content-site .content-page .zone-texte h2~h3,
    section .content-site .content-page .zone-texte h3~h3,
    section .content-site .content-page .zone-texte h4~h3,
    section .content-site .content-page .zone-texte h2~h4,
    section .content-site .content-page .zone-texte h3~h4,
    section .content-site .content-page .zone-texte h4~h4 {
        margin-top: 10px;
    }
    section .content-site .content-page .zone-texte h2 {
        font-size: 16px;
        line-height: 18px;
    }
    section .content-site .content-page .zone-texte h3 {
        font-size: 15px;
        line-height: 16px;
    }
    section .content-site .content-page .zone-texte .exemple {
        padding: 10px 10px 10px 80px;
    }
    section .content-site .content-page .zone-texte .exemple:before {
        width: 60px;
        height: 40px;
        margin-top: -20px;
    }
    section .content-site .content-page .zone-texte .exemple:after {
        left: 60px;
        width: 5px;
    }
    section .content-site .content-page .zone-texte .exemple .titre-exemple {
        font-size: 15px;
        margin-bottom: 5px;
    }
    section .content-site .content-page .zone-texte .exemple .txt-exemple {
        font-size: 12px;
    }
    section .content-site .content-page .zone-texte .contact {
        margin-bottom: -50px;
        padding-top: 70px;
    }
    section .content-site .content-page .zone-texte .contact:first-of-type {
        padding-top: 0;
    }
    section .content-site .content-page .zone-texte .contact .infos .fonction {
        font-size: 12px;
        line-height: 13px;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    section .content-site .content-page .zone-texte .contact .infos .nom {
        font-size: 14px;
    }
    section .content-site .content-page .zone-texte .contact .infos .adresse {
        font-size: 12px;
    }
    section .content-site .content-page .zone-texte .contact .infos .tel,
    section .content-site .content-page .zone-texte .contact .infos .fax,
    section .content-site .content-page .zone-texte .contact .infos .email,
    section .content-site .content-page .zone-texte .contact .infos .plan {
        margin-top: 2px;
        font-size: 12px;
    }
    section .content-site .content-page .prestations .prestation {
        height: 150px;
        width: 100% !important;
        margin-bottom: 20px;
        margin-right: 0;
    }
    section .content-site .content-page .prestations .prestation .nom {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 20px;
        height: 45px;
        line-height: 45px;
    }
    section .content-site .content-page .prestations .prestation .nom span {
        line-height: 16px;
        font-size: 11px;
        max-height: 32px;
    }
    section .content-site .content-page .partenaires:after {
        left: 10px;
    }
    section .content-site .content-page .partenaires .liste-partenaires p {
        font-size: 13px;
        line-height: 20px;
    }
    section .content-site .content-page .partenaires .liste-partenaires p strong {
        font-size: 13px;
    }
    section .content-site .content-page .partenaires .liste-partenaires p+p {
        margin-top: 5px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel {
        display: block;
        padding: 0 10px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .carousel-control {
        display: none;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .item {
        float: left;
        width: 100%;
        display: block;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu {
        float: left;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .carousel .actu .titre {
        max-height: inherit;
        font-size: 12px;
        line-height: 15px;
    }
    section .content-site .content-page .actualites .bloc-actualites .content-actus .linesRef {
        display: none;
    }
    section.univers .references,
    section.prestation .references {
        display: none;
    }
    section.page-error .visuel {
        margin-bottom: -50px;
    }
    section.page-error .visuel .txt {
        left: 10px;
        right: 10px;
        top: 10px;
        padding: 15px;
    }
    section.page-error .visuel .txt p {
        font-size: 13px;
        line-height: 20px;
    }
    section.page-error .visuel .txt .liens {
        margin-bottom: 10px;
    }
    section.page-error .visuel .txt .liens a {
        height: 35px;
        line-height: 35px;
        padding: 0 20px;
        font-size: 13px;
    }
    footer .footerLeft {
        display: none;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 10px;
    }
    section .title1 {
        font-size: 20px;
        line-height: 20px;
        padding-left: 0;
    }
    section .titleSection img {
        margin-left: -5px;
    }
    section .bloc-home#values .boxValues {
        margin: 0;
    }
    section .bloc-home#values .boxValues:before {
        left: 5px;
        bottom: 0;
        right: -5px;
        top: -5px;
    }
    section .bloc-home#values .boxValues .boxValue {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    section .bloc-home#values .boxValues .boxValue .value .imgValue {
        max-height: 150px;
        overflow: hidden;
    }
    section .bloc-home#values .boxValues .boxValue .value .hover {
        display: none;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue {
        width: 100%;
        height: auto;
        left: 0;
        margin-left: 0;
        position: relative;
        margin-top: 0;
    }
    section .bloc-home#values .boxValues .boxValue .value .zoneTextValue span {
        height: auto;
    }
    section .bloc-home#values .boxValues .boxValueText {
        width: 100%;
        padding-top: 0;
        padding-left: 15px;
        padding-bottom: 10px;
    }
    section .bloc-home#expertises .rowExpertise .expertise {
        width: 50%;
        margin-bottom: 10px;
    }
    section .bloc-home#expertises .rowExpertise .expertise .nameExpertise {
        font-size: 10px;
        height: 30px;
    }
    section .bloc-home#expertises .rowExpertise .txtExpertise {
        display: none;
    }
    section .bloc-home#proximity .bloc-gris:after {
        left: 5px;
        top: -5px;
    }
    section .content-site .content-page .zone-texte .form-contact .form-group {
        width: 100% !important;
        margin-bottom: 10px;
    }
    section .content-site .content-page .zone-texte .form-contact .form-group label {
        font-size: 12px;
    }
    section .content-site .content-page .zone-texte .form-contact .form-group input[type='text'],
    section .content-site .content-page .zone-texte .form-contact .form-group input[type='email'],
    section .content-site .content-page .zone-texte .form-contact .form-group input[type='tel'] {
        height: 35px;
    }
}

/* CPT BUREAUX */
#bureaux {
    font-family: 'Gotham Book', Arial, sans-serif;
    h2 {
        font-family: 'Gotham Bold', Arial, sans-serif;
        font-size: 25px;
        line-height: 30px;
        color: #002542;
        margin-bottom: 25px;
    }
    p {
        font-size: 15px;
        line-height: 22px;
        color: #58575E;
        text-align: justify;
    }
    li {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 10px;
        text-align: justify;
    }
    strong {
        font-family: 'Gotham Bold', Arial, sans-serif;
    }
    a {
        text-decoration: underline;
    }
    .boxImage {
        position: relative;
        z-index: 10;
        img {
            position: relative;
            z-index: 9;
        }
        .borderImage {
            width: 95%;
            height: 100%;
            position: absolute;
            z-index: 1;
            bottom: -25px;
            left: 15px;
            border: 1px solid #699DCA;
        }
        .bluebar::after {
            content: '';
            position: absolute;
            background-color: #004482;
            right: -15px;
            top: 45px;
            width: 80px;
            height: 8px;
            z-index: 10;
            opacity: 1;
        }
    }
    #bureaux-header {
        position: relative;
        .ban-haut-page {
            #thumbnail-overlay {
                background-color: #00345F;
                position: absolute;
                height: 100%;
                width: 100%;
                z-index: 1;
                opacity: 0.5;
            }
            #bureaux-h1 {
                padding-left: 15px;
                font-family: 'Gotham Bold', Arial, sans-serif;
                font-size: 65px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 2;
                width: 100%;
                max-width: 1200px; 
                margin: 0 auto; 
                text-align: left; 
                color: #FFF; 
            }
        }
    }
    #section1 {
        float: none;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 0 100px 15px;
        h2 {
            text-transform: uppercase;
        }
        #section1-subcontainer {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 3rem;
            img {
                width: 93%;
                height: 100%;
                object-fit: cover;
            }
        }   
        #section1-subcontainer > * {
            box-sizing: border-box; 
            max-width: 100%;
            /* max-height: 450px; */
        }
    }
    #section2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        div {
            padding: 5% 10%;
            font-size: 18px;
            line-height: 28px;
        }
        #section2-left {
            background-color: #F5F6F8;
            li, ul, strong, p {
                color: #002542;
            }
        }
        #section2-right {
            background-color: #D9E6F2;
            li, ul, strong, p {
                color: #002542;
            }
        }
    }
    #section4 {
        float: none;
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 0 100px 15px;
        a {
            text-decoration: underline;
        }
        h2 {
            text-transform: uppercase;
        }
        #section4-top{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 3rem;
            img {
                width: 94%;
                height: 96%;
                object-fit: cover;
            }
            .bluebar::after {
                top: 60px;
            }
            .borderImage {
                height: 95%;
                bottom: -5px;
            }
        }   
        #section4-top > *, #section4-bottom > * {
            box-sizing: border-box; 
            max-width: 100%;
            max-height: 450px;
        }
        #section4-bottom {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 3rem;
            margin-top: 50px;
            .boxImage {
                display: grid;
                .borderImage {
                    bottom: -25px;
                    left: 0px;
                }
                .bluebar::after {
                    left: -15px;
                    top: 240px;
                }
            }
            img {
                max-height: 400px;
                width: 95%;
                object-fit: cover;
                justify-self: flex-end;
            }
        }
    }
    #section5 {
        float: none;
        display: grid;
        grid-template-columns: 1fr 3fr;
        column-gap: 5rem;
        padding: 5% 12%;
        background-color: #D9E6F2;
        h2 {
            text-transform: uppercase;
        }
        #section5-left {
            .boxImage {
                .bluebar::after {
                    left: -50px;
                    top: 325px;
                }
                .borderImage {
                    width: 100%;
                    bottom: -25px;
                    left: -25px;
                }
            }
            img {
                width: 417px;
                height: 375px;
                object-fit: cover;
            }
        }
        #section5-right {
            p {
                color: #002542;
            }
        }
    }
    #section5 > * {
        box-sizing: border-box; 
        max-width: 100%;
    }
    #section6 {
        float: none;
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 0 100px 15px;
        #section6-subcontainer {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1.5fr;
            column-gap: 5rem;
            p, span, a, h3 {
                color: #002542;
            }
            a {
                text-decoration: underline;
            }
            .boxImage {
                display: flex;
                img {
                    width: 78%;
                    height: 90%;
                    object-fit: cover;
                    align-self: flex-end;
                }
                .borderImage {
                    width: 80%;
                    height: 90%;
                    bottom: 20px;
                }
                .bluebar::after {
                    right: 10px;
                    top: 70px
                }
            }
        }
        iframe {
            width: 100%;
            max-height: 350px;
        }
    }
    #section6 > * {
        box-sizing: border-box; 
        max-width: 100%;
    }
}


@media (max-width: 992px) {
    #bureaux {
        h2 {
            font-size: 20px;
            line-height: 27px
        }
        /* p {
            font-size: 15px;
            line-height: 20px;
        } */
        .bluebar, .borderImage {
            display: none;
        }
        #bureaux-header {
            .ban-haut-page {
                #bureaux-h1 {
                    font-size: 25px;
                    padding-left: 25px;
                }
            }
            .fil-ariane {
                .container {
                    padding: 10px 25px;
                }
            }
        }
        .boxParagraphe {
            margin-bottom: 20px;
        }
        #section1 {
            padding: 25px;
            #section1-subcontainer {
                grid-template-columns: 1fr;
                width: 100%;
                img {
                    width: 100%;
                }
            }
            #section1-subcontainer > * {
                width: 100%;
            }
        }
        #section2 {
            grid-template-columns: 1fr;
            div {
                padding: 40px;
                font-size: 15px;
                line-height: 20px;
            }
        }
        #section4 {
            padding: 25px; 
            #section4-top {
                grid-template-columns: 1fr;
                img {
                    width: 100%;
                }
            }
            #section4-bottom {
                grid-template-columns: 1fr;
                margin-top: 20px;
                img {
                    width: 100%;
                    margin-bottom: 20px;
                }
            }
            #section4-top > *, #section4-bottom > * {
                box-sizing: border-box; 
                width: 100%;
            }
        }
        #section5 {
            grid-template-columns: 1fr;
            padding: 25px;
            #section5-left {
                img {
                    width: 100%;
                }
            }
            #section5-right {
                h2 {
                    margin-bottom: 20px;
                    margin-top: 20px; 
                }
            }
        }
        #section6 {
            padding: 25px;
            h2 {
                text-align: center;
            }
            #section6-subcontainer {
                .boxImage {
                    justify-content: center;
                }
                grid-template-columns: 1fr;
                img {
                    max-width: 100%;
                    width: 100%;
                    justify-self: center;
                }
                div {
                    margin-bottom: 20px;
                    margin-top: 20px;
                    text-align: center;
                }
                #section6-subcontainer-texte {
                    margin-bottom: 40px;
                }
            }
        }
    }

}

#nos-bureaux {
   .content-site {
        margin-bottom: 8rem;
    .content-page {
        a:hover {
            color: #1dc0ad;
        }
        h2 {
            font-family: "Gotham Bold", Arial, sans-serif;
            font-size: 20px;
            margin-top: 1rem;
        }
        .liste-univers {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            column-gap: 2rem;
            img {
                width: 100%;
                height: 250px;
                object-fit: cover;
            }
            a:last-child img {
                object-position: right;
            }
        }
    }
   }
}

@media (min-width: 767px) and (max-width:992px) {
    #nos-bureaux {
        .content-site {
         .content-page {
             .liste-univers {
                 grid-template-columns: repeat(2, 1fr);
                 grid-template-rows: repeat(2, 1fr);
                 column-gap: 2rem;
                 row-gap: 2rem;
             }
         }
        }
     }
}

@media (max-width: 767px) {
    #nos-bureaux {
        .content-site {
             margin-bottom: 50px;
         .content-page {
             .liste-univers {
                 grid-template-columns: 1fr;
                 grid-template-rows: repeat(4, 1fr);
                 row-gap: 2rem;
             }
         }
        }
     }
}
