body, html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
@font-face {
    font-family: 'Avenir-Black';
    src: url('css/font/Avenir-Black.eot');
    src: url('css/font/Avenir-Black.eot?#iefix') format('embedded-opentype'),
    url('css/font/Avenir-Black.svg#Avenir-Black') format('svg'),
    url('css/font/Avenir-Black.ttf') format('truetype'),
    url('css/font/Avenir-Black.woff') format('woff'),
    url('css/font/Avenir-Black.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir-Heavy';
    src: url('css/font/Avenir-Heavy.eot');
    src: url('css/fontAvenir-Heavy.eot?#iefix') format('embedded-opentype'),
    url('css/font/Avenir-Heavy.svg#Avenir-Heavy') format('svg'),
    url('css/font/Avenir-Heavy.ttf') format('truetype'),
    url('css/font/Avenir-Heavy.woff') format('woff'),
    url('css/font/Avenir-Heavy.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

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

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


/* ======== TYPO ======== */
.heavy {
    font-family: 'Avenir-Heavy';
    font-weight: normal;
}

.black {
    font-family: 'Avenir-Heavy';
    font-weight: normal;
}

.book {
    font-family: 'Avenir-Book';
    font-weight: normal;
}

h1 {
    font-size: 36px !important;
    font-family: 'Avenir-Heavy' !important;
    line-height: 38px !important;
}

h5 {
    font-size: 17px !important;
    line-height: 32px !important;
}

p {
    font-size: 15px;
    line-height: 1.69;
}

@media (min-width: 768px) {
    h1 {
        font-size: 48px !important;
        line-height: 58px !important;
    }

    h2 {
        font-size: 48px !important;
        line-height: 56px !important;
    }

    h3 {
        font-size: 34px !important;
        line-height: 41px !important;
    }

    p {
        font-size: 15px;
        line-height: 1.69;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 58px !important;
        line-height: 56px !important;
    }
}

@media (min-width: 768px) {
    .mobile-visible{
        display: none!important;
    }
}

/* ======== COLOR ======== */
.bleu {
    color: #002D4D;
}

.back-bleu {
    background: #002D4D;
}

.bleu-light {
    color: #E8F1F7;
}

.back-bleu-light {
    background: #E8F1F7;
}

.orange {
    color: #CC5166;
}

.back-orange {
    background-color: #CC5166;
}

.blanc {
    color: #FFF;
}

.back-blanc {
    background: #FFF;
}

/* ======== BUTTON ======== */

.btn-circle, .btn-circle-twit, .btn-circle-in {
    border-radius: 50%;
    border: 1.5px solid #CC5166;
    color: #CC5166;
    width: 45px;
    height: 45px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    font-family: 'Avenir-Medium';
    font-size: 18px;
    vertical-align: middle;
}

.btn-circle {
    background: none;
}

.btn-circle:hover, #decouvrir:hover .btn-circle {
    background-color: #CC5166;
    color: #FFF;
}

.btn-circle:after {
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    border-top: 1.5px solid #CC5166;
    border-right: 1.5px solid #CC5166;
    -webkit-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    transform: rotate(405deg);
    height: 12px;
    width: 12px;
}

.btn-circle:hover:after, #decouvrir:hover .btn-circle:after {
    border-top: 1.5px solid #FFF;
    border-right: 1.5px solid #FFF;
}

.btn-circle-blanc {
    border-radius: 50%;
    border: 1.5px solid #FFF;
    color: #FFF;
    width: 45px;
    height: 45px;
    background: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    font-family: 'Avenir-Medium';
    font-size: 18px;
    vertical-align: middle;
}

.btn-circle-blanc:hover {
    background: #FFF;
    color: #CC5166;
}

.btn-circle-blanc:after {
    content: '';
    position: absolute;
    top: 13px;
    left: 11px;
    border-top: 1.5px solid #FFF;
    border-right: 1.5px solid #FFF;
    -webkit-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    transform: rotate(405deg);
    height: 14px;
    width: 14px;
}

.btn-circle-blanc:hover:after {
    border-top: 1.5px solid #CC5166;
    border-right: 1.5px solid #CC5166;
}

.btn-circle-in {
    background: transparent url('images/in.png') no-repeat;
    background-position: center center;
    margin-right: 20px;
}

.btn-circle-in:hover {
    background: #CC5166 url('images/in-blanc.png') no-repeat;
    background-position: center center;
}

.btn-circle-twit {
    background: transparent url('images/twitter.png') no-repeat;
    background-position: center center;
}

.btn-circle-twit:hover {
    background: #CC5166 url('images/twitter-blanc.png') no-repeat;
    background-position: center center;
}

button:focus, .slick-slide:focus {
    outline: 0;
}

/* ======== TIMELINE ======== */
#timeline {
    display: none;
    position: fixed;
    top: 40%;
    left: 60px;
    width: 30px;
    z-index: 300;
}

#timeline ul {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#timeline ul li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #B3C6D7;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    margin-bottom: 32px;
    cursor: pointer;
}

#timeline ul li.active {
    background: #CC5166;
    position: relative;
    border: 1px solid #CC5166;
}

#timeline ul li.active::before {
    content: "";
    width: 40px;
    height: 40px;
    border: 1px solid #CC5166;
    border-radius: 40px;
    position: absolute;
    top: -17px;
    left: -17px;
}

@media (min-width: 1440px) {
    #timeline {
        display: block;
    }
}

/* ======== MENU ======== */
#menu ul {
    display: none;
}

#burger-menu {
    background: #002946;
    float: right;
    padding: 16px 16px 10px 16px;
    font-size: 10px;
    color: #FFF;
    position: fixed;
    top: 20px;
    right: 20px;
    text-align: right;
    cursor: pointer;
    z-index: 99;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;

}

svg#bubble-menu {
    width: 26px;
}

#burger-menu:hover {
    background: #00233c;
}

#block-telephone {
    padding: 17px 16px 15px 16px;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #CC5166;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
}

svg#telephone {
    width: 28px;
    height: 27px;
}

#block-telephone:hover {
    background: #941C32
}

#block-telephone {
    z-index: 90;
}

/*#espace-client {*/
/*position: fixed;*/
/*}*/

#menu-over {
    background: url('images/back-menu-over-small-device.jpg') no-repeat;
    background-size: cover;
    top: 0;
    position: fixed;
    right: -510px;
    z-index: 99;
    width: 100%;
    padding: 20px 20px 100px 20px;
    overflow-y: scroll;
    max-height: 100%;
}

#fermer {
    padding-top: 5px;
    cursor: pointer;
}

#menu-over ul {
    list-style-type: none;
    margin: 76px 0 0 0;
    padding: 0 0 0 30px;
}

#menu-over ul li {
    margin-bottom: 36px;
}

#menu-over ul li a {
    text-transform: uppercase;
    color: #FFF;
    font-family: 'Avenir-Medium', sans-serif;
    font-size: 18px;
}

#menu-over ul li a:hover {
    text-decoration: none;
}

#menu-over img#img-espace-client {
    margin-left: 20px;
}

#menu-over .bottom {
    margin-top: 118px;
}

#menu-over .bottom .mentions, #menu-over .bottom .copy {
    font-size: 12px;
    color: #FFF;
}

#menu-over .bottom .copy {
    float: left;
    margin-right: 0;
}

#menu-over .bottom .mentions {
    float: right;
}

#top .logo-top {
    float: left;
}

#top #fermer {
    float: right;
    text-align: right;
}

#droits {
    display: none;
}

#scroll {
    text-align: center;
}

@media (min-width: 320px) {
    #block-telephone {
        position: fixed;
        bottom: 20px;
        right: 20px;
    }

    #burger-menu, #block-telephone {
        width: 60px;
        height: 60px;
    }

    #burger-menu {
        position: fixed;
        right: 20px;
        top: 20px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    #menu-over {
        right: -767px;
    }
}

@media (min-width: 768px) {
    #top #fermer {
        text-align: right;
    }

    #burger-menu {
        right: 50px;
        top: 50px;
    }

    #block-telephone {
        position: fixed;
        right: 30px;
    }
    .programme-page  #block-telephone{
        bottom: 175px;
    }
    #menu-over {
        background: url('images/back-menu-over.png');
        width: 510px;
        height: 100vh;
        padding: 50px 50px 50px 95px;
    }

    #menu-over ul {
        margin: 60px 0 0 0;
        padding: 0;
    }

    #menu-over .bottom {
        margin-top: 90px;
    }

    #fermer {
        padding-top: 15px;
    }

    #menu-over .espace-client {
        padding-left: 0;
        margin-top: 0;
    }

    #droits {
        display: block;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .block-menu-land {
        width: 65%;
        margin: 0 auto;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .menu-land-g {
        float: left;
    }

    .menu-land-d {
        float: right;
    }

    #menu-over ul {
        width: 100%;
        margin: 42px 0 0 0;
    }

    #menu-over .espace-client {
        margin-top: 0;
        width: 100%;
        text-align: center;
        float: left;
    }
}

@media (min-width: 1024px) {
    #burger-menu {
        top: 40px;
        right: 60px;
    }
}

@media (min-width: 1200px) {
    .programme-page #block-telephone{
        display: none;
    }
}

@media (min-width: 1440px) {
    #menu {
        padding-top: 14px;

    }

    #menu ul {
        display: block;
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    #menu ul li {
        display: inline-block;
        margin-right: 52px;
    }

    #menu ul li a, #menu ul li a:visited {
        color: #FFF;
        font-size: 12px;
        font-family: 'Avenir-Medium';
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        text-decoration: none;
    }

    #menu ul li a:after, #menu ul li a:visited:after {
        content: '';
        height: 1px;
        position: absolute;
        top: 20px;
        left: 0;
        width: 0;
        background: #CC5166;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
    }

    #menu ul li a:hover:after, #menu ul li a:visited:hover:after {
        width: 20px;
    }

    #burger-menu, #block-telephone {
        width: 70px;
        height: 70px;
    }

    #burger-menu {
        padding: 19px 19px 10px 19px;
        font-size: 12px;
        right: 30px;
        top: 66px;
    }

    #block-telephone {
        top: 136px;
        right: 30px;
        padding: 20px 18px 18px 19px;
        position: fixed;
    }

    svg#bubble-menu {
        width: 32px;
    }

    svg#telephone {
        width: 33px;
        height: 32px;
    }

    /*#espace-client {*/
    /*display: block;*/
    /*top: 50px;*/
    /*right: 25px;*/
    /*}*/

    #menu-over ul {
        margin: 136px 0 0 0;
        padding: 0;
    }

    #menu-over .bottom {
        margin-top: 118px;
    }
}

.links-espace  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 100px;
}
.links-espace a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    text-decoration: none;

}
.links-espace img {
    margin-right: 10px;
}
.espace-client a {
    padding-right: 17px;
    border-right: 1px solid #fff;
}
.espace-client img {
    margin-top: -7px;
}
.espace-parenaire a {
    padding-left: 17px;
}

.espace-parenaire img {
    margin-top: -4px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .espace-client a {
        text-transform: uppercase;
    }
    .espace-parenaire a {
        text-transform: uppercase;
    }
}

/* ======== BANNER ======== */
#top-banner {
    background: #002946;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}
#top-banner .wrapper {
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 30px;
}
#top-banner .wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    line-height: 35px;
    text-decoration: none;

}
#espace-client a {
    border-left: 1px solid rgba(255,255,255,.1);
    border-right: 1px solid rgba(255,255,255,.1);
    padding: 0 50px;
}
#espace-client img {
    margin-top: -7px;
}
#espace-parenaire a {
    border-left: 1px solid rgba(255,255,255,.1);
    padding-left: 50px;
}

#espace-parenaire img {
    margin-top: -5px;
}

#top-banner .wrapper img {
    margin-right: 10px;
}
@media (max-width: 1439px) {
    #top-banner {
        display: none;
    }
}
#banner {
    background: url('images/background-banner-1920.jpg') no-repeat #002d4d;
    background-size: 100% auto;
    position: relative;
}

#block-texte {
    margin-top: 112px;
    padding: 0 40px;
}

.intro, .block-filet {
    float: left;
}

.block-filet {
    padding-top: 7px;
    margin-right: 13px;
    margin-bottom: 15px;
}
.block-filet.placeholder {
    margin-bottom: 0;
    padding-top: 0;
    margin-top: -6px;
}
.filet {
    width: 20px;
    height: 1px;
}

.intro {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
}

.text-intro {
    margin-top: 20px;
    font-size: 15px;
    line-height: 23px;
}

#decouvrir {
    display: none;
}

#decouvrir-txt-btn {
    cursor: pointer;
    margin-right: 9px;
}

#btn-banner {
    margin-left: 12px;
}
#block-bottom {
    position: relative;
    padding-top: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#block-bottom h2 {
    margin-bottom: 63px;
}
#block-bottom h3 {
    margin-bottom: 15px;
}
#block-bottom .table-block {
    padding: 30px 0 0;
    clear: both;
}
#block-bottom table {
    max-width: 330px;
    width: 100%;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,.1);
}

#block-bottom table .orange {
    font-size: 18px;
}

#block-bottom table td {
    padding: 10px 0;
}

#block-bottom table tr:first-child td {
    padding-top: 30px;
}
#block-bottom .blanc.mini-hide{
    /* max-width: 400px; */
}
@media (min-width: 1900px) {
    #block-bottom .blanc.mini-hide{
        max-width: none;
    }
}
.contact-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}
.contact-link.contact-link-prev-p {
    margin-top: 15px;
}
.contact-link p {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 13px;
    margin-bottom: 0;
}
.contact-link a {
    display: block;
    position: relative;
    width: 45px;
    height: 45px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-link a img {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.contact-link a img.icon {
    opacity: 1;
}

.contact-link a img.hover {
    opacity: 0;
}

.contact-link a:hover img.hover {
    opacity: 1;
}

.contact-link a:hover img.icon {
    opacity: 0;
}


/* Ajouts jérémy slider Programmes */
.txt-real {
    margin: 7px 0 0;
    color: #fff;
    line-height: 1.5;
    max-width: 330px;
}
.col-slider {
    padding-bottom: 20px;
}

#block-bottom .programmes-slider {
    width: 780px;
    height: 330px;
}
#block-bottom .programmes-slider .item {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    transition-delay: 0s !important;
    background-image: linear-gradient(180deg, rgba(0,45,77,0.60) 0%, rgba(0,45,77,0.80) 100%);
}
#block-bottom .programmes-slider .item .fake-clickable {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block;
}

#block-bottom .programmes-slider .item.slick-active .fake-clickable {
    display: none;
}
#block-bottom .programmes-slider .item .bottom-right {
    opacity: 1;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}
#block-bottom .programmes-slider .item:not(.slick-current) {
  /* transition-delay: 0s; */
  position: relative;
}
#block-bottom .programmes-slider .item.slick-active+.slick-slide .bottom-right {
  opacity: 0.3;
}
#block-bottom .programmes-slider .item.slick-active+.slick-slide {
    opacity: 1;
}
#block-bottom .programmes-slider .bottom-right {
    position: relative;
    display: block;
    outline: none !important;
}
#block-bottom .programmes-slider .item h3 {
    font-size: 28px !important;
}
#block-bottom .item[data-slide="1"] .bottom-right {
    background: url('images/home_slide/blanche-slider-hp.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="2"] .bottom-right {
    background: url('images/home_slide/faceA-slider-hp.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="3"] .bottom-right {
    background: url('images/home_slide/cholet-slider-hp.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="4"] .bottom-right {
    background: url('images/home_slide/home-slide-banchais.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="5"] .bottom-right {
    background: url('images/home_slide/home-slide-mlk.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="6"] .bottom-right {
    background: url('images/home_slide/home-slide-lize.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="7"] .bottom-right {
    background: url('images/home_slide/home-slide-joxe.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="8"] .bottom-right {
    background: url('images/home_slide/home-slide-coty.jpg') no-repeat;
    background-size: cover;
}
#block-bottom .item[data-slide="9"] .bottom-right {
    background: url('images/home_slide/home-slide-clos.jpg') no-repeat;
    background-size: cover;
}

#block-bottom .programmes-slider .slick-list {
    
    
}
#block-bottom .programmes-slider .slick-prev, 
#block-bottom .programmes-slider .slick-next {
    top: inherit;
    bottom: -55px;
}
#block-bottom .programmes-slider .slick-next {
    left: 200px;
    background: url('images/arrow-next-actu.png') no-repeat;
    background-position: center top;
}

#block-bottom .programmes-slider .slick-prev {
    left: 20px;
    background: url('images/arrow-prev-actu.png') no-repeat;
    cursor: pointer;
}

#block-bottom .programmes-slider .slick-prev:before {
    content: '';
}

#block-bottom .programmes-slider .slick-next:before {
    content: '';
}

#block-bottom .nav-actu {
    text-align: left;
    padding-top: 0;
    padding-right: 0;
    font-size: 14px;
    font-family: 'Avenir-Heavy', sans-serif;
    cursor: pointer;
    position: absolute;
    bottom: -20px;
    left: 50px;
    margin-left: 0 !important;
}

#block-bottom .nav-actu,
#block-bottom .nav-actu .first {
    color: #fff;
}

#block-bottom .nav-actu .active {
    color: #CC5166 !important;
}

#block-bottom .navbar-actu {
    height: 1.2px;
    width: 94px;
    vertical-align: middle;
    display: inline-block;
    background: #fff;
}

#block-bottom .progress {
    height: 1.2px !important;
    background: #fff !important;
    display: inline-block !important;
    position: relative;
}

/*#block-bottom .progress:before {*/
    /*content:"";*/
    /*width: 50%;*/
    /*height: 1.2px !important;*/
    /*background: #CC5166;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*z-index: 5;*/
    /*transition: all ease-in-out 0.4s;*/
/*}*/
#block-bottom .progress .line{
    height: 1.2px !important;
    background: #CC5166;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    transition: all ease-in-out 0.4s;
    width: 0;
}
/*#block-bottom .progress.full:before {*/
    /*width: 100%;*/
/*}*/

#block-bottom .point.active {
    background: #CC5166 !important;
}

#block-bottom .point-left-actu {
    display: inline-block;
    background: #fff;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    margin-right: -4px;
    border-radius: 50%;
    vertical-align: middle;
}

#block-bottom .point-right-actu {
    display: inline-block;
    background: #fff;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    margin-left: -4px;
    border-radius: 50%;
}
.col-txt-slide {
    min-height: 490px !important;
}

@media (min-width: 320px) {
    #banner {
        background: url('images/background-banner-375.jpg') no-repeat #002d4d;
        background-size: 100% auto;
        padding: 20px;
    }

    #logo {
        width: 135px;
        height: 50px;
    }
    .block-mini {
        width: 312px;
        margin: 0 auto;
    }
    .col-txt-slide {
        padding-left: 0 !important;
    }
    .col-txt-slide .txt-real {
        font-size: 14px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    #block-texte {
        width: 75%;
        margin-top: 45%;
    }
}

@media (max-width: 767px) {
    .txt-fil {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #banner {
        /*min-height: 667px;*/
        padding-bottom: 57px;
    }
    .block-slider {
        position: relative;
        padding-bottom: 40px;
    }
    #block-bottom .nav-actu {
        bottom: 0;
        left: 15px;
    }
    #block-bottom .point-left-actu {
        margin-left: 2px;
    }
    #block-bottom .point-right-actu {
        margin-right: 3px;
    }
    .clear-both {
        clear: both;
    }
    .bottom-left {
        padding: 30px 40px 0 0;
    }
    #block-bottom .contact-link {
        display: block;
        text-align: center;
    }    
    #block-bottom .contact-link a {
        margin: 10px auto 0;
    }

    #block-bottom .navbar-actu {
        width: 145px;
    }
    #block-bottom .programmes-slider .slick-prev {
        left: 0;
    }
    #block-bottom .programmes-slider .slick-next {
        left: 220px;
    }
    #block-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 30px;
    }
    #block-bottom h2 {
        margin-bottom: 33px;
        padding-top: 10px;
        font-size: 36px;
    }
    #block-bottom .mobile-image {
        margin-bottom: 31px;
        width: 100%;
        max-width: 312px;
        display: block;
    }
    #block-bottom .bottom-right {
        width: 236px;
        height: 160px;
    }
    #block-bottom .programmes-slider {
        width: 100%;
        height: 160px;
    }
    #block-bottom .programmes-slider .item {
        position: relative;
        width: 236px !important;
        height: 160px !important;
        margin: 0 20px 0 0 !important;
    }
    #block-bottom .programmes-slider .item {
        width: 236px !important;
        height: 160px !important;
    }
    .block-mini .content-txt-slide h2 {
        font-size: 24px;
        margin-top: 5px;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    #banner {
        /*min-height: 667px;*/
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    #banner {
        background: url('images/background-mobile-paysage.png') no-repeat;
        background-size: cover;
        padding: 26px;
        min-height: 375px;
    }

    #block-texte {
        width: 90%;
        margin-top: 38px;
        padding: 0 20px;
    }

    #block-texte h1 {
        max-width: 80%;
    }
}

@media (min-width: 768px) {
    #block-bottom .mobile-image {
        display: none;
    }
    #banner {
        background: url('images/background-banner-768-2.jpg') no-repeat #002d4d;
        background-size: 100% auto;
        padding: 50px;
        /*min-height: 950px;*/
    }
    
    #block-bottom .bottom-right {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 330px;
        height: 330px;
        background-position: center center;
    }

    #logo {
        width: 160px;
        height: 60px;
    }

    #block-texte {
        margin-top: 41%;
        padding: 0;
        position: relative;
        padding-bottom: 150px;
    }

    .text-intro {
        margin-top: 14px;
        line-height: 26px;
    }

    #decouvrir {
        display: block;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px;
        color: #FFF;
        margin-top: 18px;
    }
    #scroll {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 0;
    }
    .col-txt-slide {
        padding-left: 15px !important;
    }
    .block-mini {
        width: auto;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #banner {
        /*min-height: 950px !important;*/
        padding-bottom: 100px;
    }
    #block-bottom .programmes-slider .item {
        width: 330px !important;
    }
    #block-bottom h2 {
        width: 600px;
    }
    .col-txt-slide {
        min-height: 510px !important;
    }
}

@media (min-width: 1024px) {
    #banner {
        background: url('images/background-banner-1024.jpg') no-repeat #002d4d;
        background-size: 100% auto;
        padding: 40px 60px 121px 60px;
        min-height: 870px;
    }
    #block-bottom .programmes-slider .item {
        width: 330px !important;
    }
    #logo {
        width: 184px;
        height: 69px;
    }

    #block-texte {
        margin-top: 90px;
        padding: 0 0 100px 44px;
    }

    #decouvrir {
        margin-top: 24px;
    }
    #block-bottom h2 {
        width: 1000px;
    }
}

@media (min-width: 1440px) {
    #banner {
        background: url('images/background-banner-1440.jpg') no-repeat #002d4d;
        background-size: 100% auto;
        padding-bottom: 139px;
        padding-top: 75px;
    }
    #block-bottom .bottom-right {
        width: 550px;
        height: 330px;
        background-size: cover;
    }

    #block-bottom .content-txt-slide {
        min-height: 490px;
    }
    #block-bottom .content-txt-slide .blanc.mini-hide {
        width: 1000px;
    }
    #block-bottom .programmes-slider .item {
        width: 550px !important;
    }
    #block-bottom .bottom-left {
        padding-bottom: 5px;
    }
    #banner #block-texte div, #banner #block-texte h1, #banner #block-texte p {
        padding-left: 0;
        padding-right: 0;
    }

    #block-texte {
        margin: 120px auto 0 auto;
        width: 1040px;
        padding: 0 0 100px 0;
    }

    .block-filet {
        margin-bottom: 23px;
    }

    .text-intro {
        margin-top: 26px;
        max-width: 376px;
        margin-bottom: 41px;
    }
    .col-txt-slide .txt-real {
        font-size: 15px;
    }
}

@media (min-width: 1920px) {
    #banner {
        background: url('images/background-banner-1920.jpg') no-repeat #002d4d;
        background-size: 100% auto;
        padding-bottom: 145px;
    }

    #block-texte {
        width: 1500px;
        margin: 170px auto 0 auto;
        padding: 0 0 150px 0;
    }
}

/* ======== EQUIPE ======== */

#equipe {
    background: #E8F1F7;
}

#block-contenu-central {
    z-index: 10;
}

.block-image-equipe img {
    cursor: pointer;
}

#personne-2, #personne-3 {
    display: none;
}

.block-linkedin a, .block-linkedin a:hover {
    color: #002D4D;
    text-decoration: none;
}

.block-linkedin .btn-circle {
    margin-left: 10px;
}

html.sr .image-fondateur {
    visibility: hidden;
}

.twit {
    margin-left: 30px;
}

.block-contenu-central,
#block-bottom {
    width: 312px;
    margin: 0 auto;
}

#equipe {
    padding-top: 59px;
    padding-bottom: 0;
    position: relative;
}

#equipe .block-contenu-central div {
    padding-left: 0;
    padding-right: 0;
}

#block-text-equipe {
    width: 284px;
}

#block-txt-fiche {
    display: none;
}

.block-personne-texte {
    width: 294px;
}

.personne-titre {
    letter-spacing: 1px;
    font-size: 12px;
    margin-top: 16px;
}

.block-citation {
    font-size: 15px;
}

#logo-figranne {
    display: none;
}

.block-slogan {
    margin-top: 31px;
}

.txt-slogan {
    font-size: 17px;
    line-height: 26px;
}

.block-filet-slogan {
    padding-top: 13px;
}

.block-qualite {
    font-size: 15px;
    line-height: 36px;
}

.block-linkedin {
    font-size: 13px;
    margin-top: 26px;
    letter-spacing: 1px;
}

.block-image-equipe {
    display: none;
    float: left;
}

.block-image-equipe img {
    z-index: 20;
}

.active-equipe {
    -webkit-box-shadow: 3px 6px 33px -7px rgba(105, 105, 105, 1);
    box-shadow: 3px 6px 33px -7px rgba(105, 105, 105, 1);
}

#img-personne-1, #img-personne-2, #img-personne-3 {
    width: 220px;
    height: 370px;
}

#block-txt-fiche-smart {
    display: block;
    margin-top: 25px;
}

#block-txt-fiche-smart h3 {
    margin-top: 26px;
}

#block-txt-fiche-smart .personne-titre {
    margin-top: 12px;
}

#block-txt-fiche-smart .block-slogan {
    margin-top: 14px;
}

.photo-smart {
    width: 270px;
}

#equipe button.slick-prev, #equipe button.slick-next {
    width: 36px;
    height: 36px;
    top: 135px;
}

#equipe button.slick-prev {
    background: url('images/prev-slide-equipe.png') no-repeat;
    left: -20px;
}

#equipe button.slick-next {
    background: url('images/next-slide-equipe.png') no-repeat;
    right: -18px;
}

#equipe button.slick-prev:before, #equipe button.slick-next:before {
    content: none;
}

@media (max-width: 325px) {
    #equipe button.slick-next {
        right: 6px;
    }

    #equipe button.slick-prev {
        z-index: 80;
        left: 3px;
    }

    #equipe .block-filet {
        margin-left: 15px;
    }

    #equipe h2 {
        padding-left: 15px;
    }

    #equipe .intro {
        font-size: 11px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    #equipe .block-contenu-central {
        width: 90%;
    }

    .photo-smart {
        width: 100%;
    }

    .block-slogan {
        width: 100%;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .slick-slide img {
        float: right;
    }

    .photo-smart {
        width: 50%;
    }

    .ne {
        width: 45%;
        float: left;
    }

    #equipe button.slick-next {
        right: -23px;
    }

    #equipe button.slick-prev {
        left: -25px;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    #block-txt-fiche-smart {
        display: none;
    }

    .block-contenu-central,
    #block-bottom,
    .block-mini {
        width: 670px;
        margin: 0 auto;
    }
    .block-mini .float-left {
        clear: both;
    }

    .block-mini {
        padding-top: 77px;
    }

    #equipe {
        padding-top: 87px;
        padding-bottom: 61px;
        position: relative;
    }

    #equipe .block-contenu-central div {
        padding-left: 0;
        padding-right: 0;
    }

    #block-text-equipe {
        width: 284px;
    }

    #block-txt-fiche {
        margin-top: 44px;
        margin-right: 0;
        display: block;
    }

    .block-personne-texte {
        width: 260px;
    }

    .personne-titre {
        letter-spacing: 1px;
        font-size: 12px;
        margin-top: 16px;
    }

    .block-citation {
        font-size: 15px;
    }

    #logo-figranne {
        display: block;
        position: absolute;
        top: 50px;
        right: 0px;
    }

    #logo-figranne img {
        width: 285px;
    }

    .block-slogan {
        margin-top: 31px;
    }

    .txt-slogan {
        font-size: 17px;
        line-height: 26px;
    }

    .block-filet-slogan {
        padding-top: 13px;
    }

    .block-qualite {
        font-size: 15px;
        line-height: 36px;
    }

    .block-linkedin {
        font-size: 13px;
        margin-top: 26px;
        letter-spacing: 1px;
    }

    .block-image-equipe {
        display: block;
        margin-left: 0px;
    }

    .block-image-equipe img {
        z-index: 20;
    }

    #img-personne-1, #img-personne-2, #img-personne-3 {
        width: 117px;
        height: 199px;
    }

    #img-personne-2 {
        margin-left: 20px;
    }

    #img-personne-3 {
        margin-left: 20px;
    }
    #block-bottom .col-sm-12 {
        padding-left: 0;
        padding-right: 0;
        clear: both;
    }
}

@media (min-width: 1024px) {
    .block-contenu-central,
    .block-mini {
        width: 900px;
        margin: 0 auto;
        padding-top: 76px;
    }
    #block-bottom {
        width: 900px;
        margin: 0 auto;
        padding-top: 55px;
    }
    .block-mini .float-left {
        clear: both;
    }
    #equipe {
        padding-top: 47px;
        padding-bottom: 61px;
        position: relative;
    }

    #block-txt-fiche {
        margin-top: 68px;
        margin-right: 0;
    }

    .block-personne-texte {
        width: 294px;
    }

    #logo-figranne {
        position: absolute;
        top: 90px;
        right: 0px;
    }

    #logo-figranne img {
        width: 295px;
    }

    .block-slogan {
        margin-top: 31px;
    }

    .txt-slogan {
        font-size: 17px;
        line-height: 26px;
    }

    .block-filet-slogan {
        padding-top: 13px;
    }

    .block-qualite {
        font-size: 15px;
        line-height: 36px;
    }

    .block-linkedin {
        font-size: 13px;
        margin-top: 26px;
        letter-spacing: 1px;
    }

    .block-image-equipe {
        margin-left: 65px;
    }

    .block-image-equipe img {
        z-index: 20;
    }

    #img-personne-1, #img-personne-2, #img-personne-3 {
        width: 163px;
        height: 372px;
    }

    #img-personne-2 {
        margin-left: 20px;
    }

    #img-personne-3 {
        margin-left: 20px;
    }
}

@media (min-width: 1440px) {
    .block-contenu-central,
    #block-bottom {
        width: 1040px;
        margin: 0 auto;
    }

    #block-text-equipe {
        width: 294px;
    }

    .block-personne-texte {
        width: 294px;
    }

    #logo-figranne {
        top: 50px;
        right: 20px;
    }

    .block-slogan {
        margin-top: 54px;
    }

    .txt-slogan {
        font-size: 17px;
        line-height: 26px;
    }

    .block-image-equipe {
        margin-left: 35px;
    }

    #img-personne-1, #img-personne-2, #img-personne-3 {
        width: 220px;
        height: 370px;
    }
    #equipe {
        padding-top: 32px;
    }
}

@media (min-width: 1920px) {
    .block-contenu-central,
    #block-bottom {
        width: 1280px;
        margin: 0 auto;
    }

    .block-image-equipe {
        float: right;
    }
    #img-personne-1, #img-personne-2, #img-personne-3 {
        width: 242px;
        height: 407px;
    }
    #img-personne-2,
    #img-personne-3 {
        margin-left: 43px;
    }
    #equipe {
        padding-top: 89px;
    }
}

/* ======== METIERS ======== */
#metiers {
    background: url('images/back-metier.png') no-repeat;
    padding-top: 51px;
    background-size: cover;
    background-position: top center;
    height: 780px;
    padding-bottom: 184px;
}

#metier-ligne-txt-2, #metier-ligne-txt-3 {
    opacity: 0.5;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
}

#metier-ligne-txt-1 {
    opacity: 1;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
}

#metier-ligne-txt-3 {
    float: left;
}

#metier-ligne-txt-2 {
    float: left;
}

.metier-ligne-txt {
    cursor: pointer;
}

#image-block-contenu-metier-2 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.img-metier-off, .img-metier-on {
    cursor: pointer;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
}

.colonne-picto {
    width: 55px;
}

.colonne-texte {
    width: 227px;
    float: left;
}

#block-metier-droit {
    margin-top: 30px;
}

#block-metier-droit div.titre {
    font-size: 32px;
    letter-spacing: 2.85px;
    text-transform: uppercase;
    text-align: right;
    padding: 0 0 0 10px;
    float: left;
}

#block-metier-bleu {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 282px;
    float: left;
}

.block-contenu-metier-bleu {
    color: #FFF;
    margin-bottom: 24px;
}

.block-contenu-metier-bleu img.fleche {
    margin-left: 13px;
}

.img-metier-on, .img-metier-off {
    margin-right: 20px;
    margin-left: -34px;
    margin-top: -10px;
}

#block-img-metier-1 {
    margin-top: 16px;
}

.img-metier-off, .img-metier-on {
    width: 70px;
    height: 70px;
}

@media (max-width: 325px) {
    .img-metier-on, .img-metier-off {
        margin-right: 20px;
        margin-left: -19px;
        margin-top: -10px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    #metiers .block-contenu-central {
        width: 90%;
    }

    #block-metier-bleu {
        width: 100%;
    }
}

@media (max-width: 767px) {
    #metiers h3 {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .colonne-texte {
        width: 240px;
        float: right;
    }

    #metiers {
        padding-top: 51px;
        background: #E8F1F7;
        padding-bottom: 64px;
        padding-left: 0;
        height: 561px;
    }

    #metiers .block-contenu-central div {
        padding-left: 0;
        padding-right: 0;
        float: left;
    }

    #metiers-texte {
        padding: 74px 0 0 0;

    }

    #metiers-texte p {
        max-width: 276px;
    }

    p#trois-metiers {
        margin-top: 44px;
    }

    #block-metier-droit {
        float: right;
        margin-top: 0;
    }

    #block-metier-droit div.titre {
        font-size: 35px;
        letter-spacing: 3.11px;
        padding: 0 24px 0 0;
        float: right;
    }

    #block-metier-bleu {
        padding-top: 40px;
        padding-bottom: 10px;
        width: 334px;
        float: right !important;
    }

    .block-contenu-metier-bleu {
        color: #FFF;
        margin-bottom: 24px;
    }

    .block-contenu-metier-bleu img.fleche {
        margin-left: 13px;
    }

    .img-metier-on, .img-metier-off {
        margin-right: 20px;
        margin-left: -42px;
        margin-top: -10px;
        width: 87px;
        height: 87px;
    }

    #metier-ligne-txt-2 {
        float: right;
    }

    #metier-ligne-txt-3 {
        float: right;
    }

    #block-img-metier-1 {
        margin-top: 0px;
    }

    #image-block-contenu-metier-2 {
        margin-top: 32px;
        margin-bottom: 42px;
    }

    .colonne-picto {
        width: 62px;
    }

}

@media (min-width: 1024px) {

    #metiers {
        padding-top: 51px;
        background: #E8F1F7 url('images/back-metier.png') no-repeat;
        background-size: contain;
        background-position: top center;
        height: 561px;
        padding-bottom: 166px;
    }

    #metiers-texte {
        padding: 115px 0 0 0;

    }

    #metiers-texte p {
        max-width: 480px;
    }

    p#trois-metiers {
        margin-top: 44px;
    }

    #block-metier-droit div.titre {
        font-size: 41px;
        letter-spacing: 3.65px;
        padding: 0 24px 0 0;
    }

    #block-metier-bleu {
        padding-top: 50px;
        padding-bottom: 10px;
        padding-right: 50px !important;
        width: 370px;
    }

    .img-metier-off {
        margin-right: 46px;
    }

    .img-metier-on {
        margin-right: 36px;
    }

    .img-metier-off {
        width: 87px;
        height: 87px;
    }

    .colonne-picto {
        width: 67px;
    }
}

@media (min-width: 1440px) {
    p#trois-metiers {
        margin-top: 30px;
    }

    #block-metier-bleu {
        padding-right: 50px !important;
    }
}

/* ======== DIGITAL ======== */

#text-digital {
    float: left;
}

#txt-dig-2 {
    padding-left: 0;
}

#digital {
    background: #E8F1F7 url('images/img-back-digital-375.png') no-repeat;
    background-size: contain;
}

#block-bleu-digital {
    margin-top: 330px;
}

#block-orange-digital {
    margin-top: -100px;
    padding-top: 68px;
    width: 336px;
    float: left;
    padding-left: 35px;
    padding-right: 25px;
    padding-bottom: 25px;
}

#text-digital {
    margin-top: 50px;
}

#block-orange-digi {
    padding-top: 0px;
    width: 100%;
}

@media (min-width: 376px) and (max-width: 767px) {
    #digital {
        background: #E8F1F7 url('images/img-back-digital.jpg') no-repeat;
        background-size: contain;
    }
}

@media (min-width: 768px) {
    #digital {
        background: url('images/img-back-digital.jpg') no-repeat;
        background-size: contain;
    }

    #block-bleu-digital {
        margin-top: 400px;
    }

    #block-orange-digital {
        margin-top: -100px;
        padding-top: 68px;
        width: 718px;
        float: left;
        padding-left: 50px;
        padding-right: 0;
        padding-bottom: 50px;
    }

    #text-digital {
        margin-top: 50px;
        min-width: 668px;
    }

    #block-orange-digi {
        padding-top: 0px;
        width: 596px;
    }
}

@media (min-width: 1024px) {
    #digital {
        background: url('images/img-back-digital-1024.jpg') no-repeat;
        background-size: cover;
    }

    #block-bleu-digital {
        margin-top: 620px;
    }

    #block-orange-digital {
        margin-top: -100px;
        padding-top: 72px;
        width: 964px;
        float: left;
        padding-left: 60px;
        padding-bottom: 72px;
    }

    #block-orange-digi {
        width: 825px;
    }

    #text-digital {
        margin-top: 40px;
    }

}

@media (min-width: 1280px) {
    #digital {
        background: url('images/img-back-digital-1280.jpg') no-repeat;
        background-size: cover;
    }

    #txt-dig-2 {
        padding-left: 15px;
    }

    #text-digital {
        margin-top: 50px;
    }
}

@media (min-width: 1440px) {
    #digital {
        background: #E9F1F7 url('images/img-back-digital-1920.png') no-repeat;
        background-size: cover;
    }

    #block-bleu-digital {
        margin-top: 620px;
    }

    #block-orange-digital {
        margin-top: -100px;
        padding-top: 90px;
        width: 1310px;
        padding-bottom: 68px;
        padding-left: 0;
    }

    #block-orange-digi {
        float: right;
        padding-right: 70px;
        width: 1110px;
    }

    #txt-dig-1, #txt-dig-2 {
        width: 490px;
    }
}

@media (min-width: 1920px) {
    #digital {
        background: #E9F1F7 url('images/img-back-digital-1920.png') no-repeat;
        background-size: cover;
    }

    #block-orange-digital {
        width: 1720px;
    }

    #block-orange-digi {
        width: 1390px;
        padding-right: 120px;
    }

    #txt-dig-1, #txt-dig-2 {
        width: 622px;
    }
}

/* ======== VALEURS ======== */
.picto-valeur {
    opacity: 0.66;
    vertical-align: middle;
}

.block-picto-valeur {
    padding-left: 0px;
    width: 66px;
    float: left;
}

.border-valeur {
    border-top: 1px solid #D5E2ED;
}

.contenu-valeurs .titre {
    padding-top: 7px;
}

.contenu-valeurs .titre, .contenu-valeurs .contenu-texte, .collapse .contenu-texte, .collapse {
    color: #FFF;
    font-family: 'Avenir-Book', sans-serif;
    text-align: left;
}

.contenu-valeurs .contenu-texte {
    display: none;
}

.ligne-valeur {
    cursor: pointer;
    font-size: 15px;
    line-height: 26px;
}

.ligne-valeur, .contenu-valeurs, .plus-moins {
    float: left;
}

.plus-moins {
    float: right;
    padding-top: 7px;
}

.plus-moins-img {
    cursor: pointer;
}

#valeurs {
    background: #002D4D;
    padding-top: 50px;
    padding-bottom: 82px;
}

#valeurs .card {
    background: none;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #D5E2ED;
    border-radius: 0;
}

#valeurs .card-header {
    margin: 18px 0 18px 0;
    padding: 0;
    border-bottom: none;
    background: none;
}

#valeurs .card-header .btn {
    padding: 0 0 0 0;
    width: 100%;
}

#valeurs .card-body {
    padding: 0 50px 25px 100px;
}

#block-droit-valeur {
    width: 100%;
    float: left;
    padding-top: 25px;
}

.ligne-valeur {
    width: 305px;
    padding: 18px 0 9px 0;
}

.contenu-valeurs {
    float: left;
    width: 200px;
    padding-left: 28px;
}

@media (max-width: 325px) {
    .contenu-valeurs {
        width: auto;
        padding-left: 0px;
    }

    #valeurs {
        padding: 50px 20px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    #valeurs .block-contenu-central {
        width: 90%;
    }
}

@media (min-width: 768px) {
    #valeurs {
        background: #002D4D;
        padding-top: 72px;
        padding-bottom: 82px;
    }

    #block-droit-valeur {
        padding-top: 82px;
    }

    #block-gauche-valeur {
        width: 262px;
    }

    .contenu-valeurs {
        float: left;
        width: 514px;
        padding-left: 28px;
    }

    .contenu-valeurs .titre {
        padding-top: 4px;
    }

    .ligne-valeur {
        width: 605px;
        padding: 0;
    }

    .border-valeur {
        padding-top: 16.5px;
        margin-top: 18px;
    }

    #valeur-titre-1 {
        padding-top: 13px;
    }

    #valeur-plus-1 {
        padding-top: 10px;
    }

    #valeur-titre-2 {
        padding-top: 8px;
    }

    #valeur-plus-2 {
        padding-top: 5px;
    }

    #valeur-titre-3 {
        padding-top: 6px;
    }

    #valeur-plus-3 {
        padding-top: 4px;
    }

    #valeur-titre-4 {
        padding-top: 8px;
    }

    #valeur-plus-4 {
        padding-top: 5px;
    }

    #valeur-titre-5 {
        padding-top: 0px;
    }

    #valeur-plus-5 {
        padding-top: 0px;
    }

    #valeur-titre-6 {
        padding-top: 8px;
    }

    #valeur-plus-6 {
        padding-top: 5px;
    }
}

@media (max-width: 768px) {
    .links-espace {
        padding: 55px 0 0 30px;
    }
    #block-orange-digital {
        width: 100%;
    }

    .adresse-label {
        width: 90px;
    }

    .block-g-contact, .block-d-contact {
        margin-left: 0;
    }

    form#form-contact input {
        width: 100%;
    }

    form#form-contact textarea {
        width: 100%;
    }

    #valeurs .card-body {
        padding: 0 10px 25px 10px;
    }
    #block-bottom h3 {
        font-size: 24px;
    }
    .block-filet.placeholder {
        clear: left;
    }
}

@media (min-width: 1024px) {
    #valeurs {
        background: #002D4D url('images/carte-bleu.png') no-repeat;
        background-position: 20px 80px;
        padding-top: 117px;
        padding-bottom: 82px;
        min-height: 880px;
    }

    #block-droit-valeur {
        width: 606px;
        float: right;
        padding-top: 82px;
    }

    #block-gauche-valeur {
        width: 262px;
    }

    .contenu-valeurs {
        float: left;
        width: 500px;
        text-align: left;
        padding-left: 28px;
    }

    .ligne-valeur {
        width: 590px;
    }

    #valeur-titre-1 {
        padding-top: 13px;
    }

    #valeur-plus-1 {
        padding-top: 10px;
    }

    #valeur-titre-2 {
        padding-top: 8px;
    }

    #valeur-plus-2 {
        padding-top: 5px;
    }

    #valeur-titre-3 {
        padding-top: 6px;
    }

    #valeur-plus-3 {
        padding-top: 4px;
    }

    #valeur-titre-4 {
        padding-top: 8px;
    }

    #valeur-plus-4 {
        padding-top: 5px;
    }

    #valeur-titre-5 {
        padding-top: 0px;
    }

    #valeur-plus-5 {
        padding-top: 0px;
    }

    #valeur-titre-6 {
        padding-top: 8px;
    }

    #valeur-plus-6 {
        padding-top: 5px;
    }
}

@media (min-width: 1280px) {
    #valeurs {
        background: #002D4D url('images/carte-bleu.png') no-repeat;
        background-position: 50px 80px;
    }
}

@media (min-width: 1440px) {
    #valeurs {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    #block-droit-valeur {
        width: 645px;
        float: right;
        padding-top: 0;
    }

    #block-gauche-valeur {
        width: 262px;
    }

    .contenu-valeurs {
        float: left;
        width: 514px;
        padding-left: 28px;
    }

    .contenu-valeurs .titre {
        padding-top: 5px;
    }

    .ligne-valeur {
        width: 645px;
    }

    .border-valeur {
        padding-top: 16.5px;
        margin-top: 18px;
    }

    #valeur-titre-1 {
        padding-top: 13px;
    }

    #valeur-plus-1 {
        padding-top: 10px;
    }

    #valeur-titre-2 {
        padding-top: 8px;
    }

    #valeur-plus-2 {
        padding-top: 5px;
    }

    #valeur-titre-3 {
        padding-top: 6px;
    }

    #valeur-plus-3 {
        padding-top: 4px;
    }

    #valeur-titre-4 {
        padding-top: 8px;
    }

    #valeur-plus-4 {
        padding-top: 5px;
    }

    #valeur-titre-5 {
        padding-top: 0px;
    }

    #valeur-plus-5 {
        padding-top: 0px;
    }

    #valeur-titre-6 {
        padding-top: 8px;
    }

    #valeur-plus-6 {
        padding-top: 5px;
    }
}

@media (min-width: 1920px) {
    #valeurs {
        background: #002D4D url('images/carte-bleu.png') no-repeat;
        background-position: 233px 100px;
    }

    #valeur-titre-1 {
        padding-top: 13px;
    }

    #valeur-plus-1 {
        padding-top: 10px;
    }

    #valeur-titre-2 {
        padding-top: 8px;
    }

    #valeur-plus-2 {
        padding-top: 5px;
    }

    #valeur-titre-3 {
        padding-top: 6px;
    }

    #valeur-plus-3 {
        padding-top: 4px;
    }

    #valeur-titre-4 {
        padding-top: 8px;
    }

    #valeur-plus-4 {
        padding-top: 5px;
    }

    #valeur-titre-5 {
        padding-top: 0px;
    }

    #valeur-plus-5 {
        padding-top: 0px;
    }

    #valeur-titre-6 {
        padding-top: 8px;
    }

    #valeur-plus-6 {
        padding-top: 5px;
    }
}

/* ======== ACTU ======== */
#actus {
    padding-top: 57px;
    padding-left: 15px;
}

.txt-actu {
    margin-top: 27px;
}

#block-caroussel {
    width: 300px;
    margin-left: 12px
}

.devActu {
    min-height: 560px;
}

#listing-actu div.mr {
    margin-right: 20px;
}

#actu-bk-txt {
    width: 275px;
}

#blocActu {
    width: 100%;
    min-height: 400px;
}

.block-txt-actu {
    display: none;
    width: 100%;
    float: left;
}

.titre-ac {
    width: 100%;
    float: left;
}

.lire-article {
    font-size: 13px;
    font-family: 'Avenir-Heavy', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.txt-actu-complet {
    display: none;
}

#btn-lire {
    margin-left: 17px;
}

.slick-list {
    margin: 0 -20px;
}

.slick-slide {
    margin: 0px 20px;
    /* opacity: 0; */
    width: 220px;
    /* -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out; */
}

.slick-slide.slick-active {
    /* opacity: 1;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in; */
}

.block-vignette {
    position: relative;
    cursor: pointer;
}

.block-vignette:focus {
    outline: 0 none !important;
}

.download {
    width: 120%;
    background: url('images/download.png') no-repeat;
    position: absolute;
    top: 100px;
    left: 0;
}

.filtre-actu {
    width: 120%;
    background: url('images/filtre-actu.png') no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

#listing-actu .slick-prev, #listing-actu .slick-next {
    top: 109%;
}

#listing-actu .slick-next {
    right: 0;
    background: url('images/arrow-next-actu-orange.png') no-repeat;
    background-position: center center;
}

#listing-actu .slick-prev {
    left: 0px;
    background: url('images/arrow-prev-actu-orange.png') no-repeat;
    cursor: pointer;
}

#listing-actu .slick-prev:before {
    content: '';
}

#listing-actu .slick-next:before {
    content: '';
}

.nav-actu {
    text-align: right;
    padding-top: 22px;
    padding-right: 33px;
    font-size: 14px;
    font-family: 'Avenir-Heavy', sans-serif;
    cursor: pointer;
}

.nav-actu .first {
    color: #CC5166;
}

.nav-actu .last {
    color: #BACBDB;
    font-family: 'Avenir-Book', sans-serif;
}

.navbar-actu {
    height: 1.2px;
    width: 94px;
    vertical-align: middle;
    display: inline-block;
    background: #BACBDB;
}

.progress {
    height: 1.2px !important;
    background: #BACBDB !important;
    display: inline-block !important;
}

.point-left-actu {
    display: inline-block;
    background: #CC5166;
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-radius: 50%;
}

.point-right-actu {
    display: inline-block;
    background: #BACBDB;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
}

#liste-des-actus {
    float: left;
    width: 300px;
}

#liste-des-actus ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#liste-des-actus ul li {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

#actu-bk-txt, #block-caroussel {
    display: none;
}

#actu-bk-txt-smart {
    display: block;
}

.img-vignette-ac {
    width: 170px;
    height: 170px;
    float: left
}

.contenu-actu-smart {
    float: left;
    min-height: 80px;
    position: relative;
    width: 140px;
    margin-left: 10px;
}

.contenu-actu-smart .titre {
    font-size: 20px;
    line-height: 20px;
    font-family: 'Avenir-Heavy', sans-serif;
}

.contenu-actu-smart .txt {
    font-size: 15px;
    line-height: 18px;
    font-family: 'Avenir-Book', sans-serif;
}

.contenu-actu-smart .lire {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Avenir-Heavy', sans-serif;
    position: absolute;
    bottom: 0;
}

#liste-des-actus {
    position: relative;
}

#liste-des-actus button.slick-prev, #liste-des-actus button.slick-next {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 100%;
    margin-top: 50px;
}

#liste-des-actus button.slick-prev:before, #liste-des-actus button.slick-next:before {
    content: none;
}

#liste-des-actus button.slick-prev {
    background: url('images/prev-actu-smart.png') no-repeat;
    left: 25px;
}

#liste-des-actus button.slick-next {
    background: url('images/next-actu-smart.png') no-repeat;
    right: 0;
}

#liste-des-actus .txt-completed {
    display: none;
}

@media (max-width: 325px) {
    #liste-des-actus button.slick-next {
        right: 25px;
    }
}

@media (min-width: 375px) {
    .download {
        width: 260px;
        height: 133px;
        background: url('images/download.png') no-repeat;
        background-size: cover;
        position: absolute;
        top: 38px;
        left: 0;
    }
}

@media (max-width: 767px) {
    #blocActu {
        width: 100%;
        min-height: 400px;
        margin: 0 auto;
    }

    /*#actu-bk-txt-smart, #liste-des-actus, .slick-list.draggable, .img-vignette-ac {
        width: 100%;
    }*/
    #actu-bk-txt-smart {
        width: 100%;
    }

    #liste-des-actus {
        position: relative;
        margin-left: -150px;
        left: 50%;
    }

    .titre-ac {
        width: 100%;
        float: left;
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .download {
        width: 100%;
        height: 133px;
        background: url(images/download.png) no-repeat;
        background-size: cover;
        position: absolute;
        bottom: 0px;
        left: 0;
        background-position: left;
    }
}

@media (max-width: 768px) {

    #actus {
        padding-right: 15px;
    }

    .img-vignette-ac {
        width: 100%;
        height: 170px;
        background-size: cover !important;
        position: relative;
    }

    .contenu-actu-smart {
        width: 100%;
        margin-top: 30px;
        margin-left: 0px;
    }

    .download {
        width: 260px;
        height: 133px;
        background: url('images/download.png') no-repeat;
        background-size: cover;
        position: absolute;
        top: 38px;
        left: 0;
    }

    #listing-actu div {
        padding: 0;
        height: 371px;
    }

    #actu-bk-txt {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    #actu-bk-txt-smart {
        display: none;
    }

    #actus {
        padding-top: 100px;
        padding-left: 0;
    }

    #actu-bk-txt, #block-caroussel {
        display: block;
    }

    .block-contenu-central-actu {
        width: 670px;
        margin: 0 auto;
    }

    .block-txt-actu {
        width: 380px;
    }

    #listing-actu ul {
        margin: 0 0 0 50px;
    }

    #block-caroussel {
        width: 270px;
        margin-left: 130px
    }

    #blocActu {
        margin-left: 0;
        padding-left: 44px;
    }

    #listing-actu .slick-prev {
        left: 32px;
        background: url('images/arrow-prev-actu-orange.png') no-repeat;
        cursor: pointer;
        background-position: center center;
    }

    #listing-actu .slick-next {
        right: 15px;
    }

    .download {
        width: 120%;
        background: url('images/download.png') no-repeat;
        position: absolute;
        top: 238px;
        left: 0;
    }

    .nav-actu {
        margin-right: 12px;
    }
}

@media (min-width: 1024px) {
    #actus {
        padding-top: 130px;
    }

    .block-contenu-central-actu {
        width: 934px;
        margin: 0 auto;
    }

    #img-actu-2 {
        display: inline-block;
    }

    #listing-actu ul {
        margin: 0 0 0 20px;
    }

    #blocActu {
        margin-left: 34px;
    }

    #block-caroussel {
        width: 460px;
        margin-left: 135px;
    }

    #listing-actu .slick-prev {
        left: 230px;
    }

    .nav-actu {
        margin-right: 0;
    }

    #listing-actu .slick-next {
        right: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .slick-slide img {
        width: 100%;
        height: auto;
    }

    #listing-actu div {
        height: 306px;
    }

    .filtre-actu {
        width: 100%;
    }

    .download {
        width: 100%;
        background: url('images/download.png') no-repeat;
        position: absolute;
        top: 198px;
        left: 0;
        background-size: contain;
    }
}

@media (min-width: 1280px) {
    #block-caroussel {
        width: 700px;
        margin-left: 135px;
    }

    #listing-actu .slick-prev {
        left: 490px;
    }

    #blocActu {
        margin-left: 100px;
    }
}

@media (min-width: 1440px) {
    #blocActu {
        margin-left: 200px;
    }

    #actus {
        padding-top: 150px;
    }

    .block-contenu-central-actu {
        width: 1180px;
        margin: 0 auto;
    }

    .block-txt-actu {
        width: 380px;
    }

    #block-caroussel {
        width: 760px;
        margin-left: 146px;
    }

    #listing-actu .slick-prev {
        left: 528px;
        padding: 20px;
    }

    #listing-actu .slick-next {
        padding: 20px;
        right: -2px;
    }

    .filtre-actu {
        width: 120%;
        background: url('images/filtre-actu.png') no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        height: 371px;
    }

    .download {
        width: 108%;
        background: url('images/download.png') no-repeat;
        position: absolute;
        top: 239px;
        left: 0;
        height: 371px;
        background-size: contain;
    }
}

@media (min-width: 1920px) {
    #blocActu {
        margin-left: 320px;
        padding-left: 0;
    }
}

@media (max-width: 1439px) and (min-width: 1171px) {
    #block-caroussel {
        width: 686px;
        margin-left: 0;
        position: absolute;
        right: -140px;
    }
}

@media (max-width: 1170px) and (min-width: 1024px) {
    #block-caroussel {
        width: 460px;
        margin-left: 0;
        position: absolute;
        right: 0px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #blocActu {
        width: 670px;
        margin: 0 auto;
    }

    #block-caroussel {
        width: 270px;
        margin-left: 70px;
    }

    #actu-bk-txt, .block-txt-actu {
        width: 280px;
    }
}

@media (min-width: 1025px) and (max-width: 1170px) and (orientation: landscape) {
    .slick-slide img {
        height: 371px;
    }

    #listing-actu div {
        height: 307px;
        margin-top: 0;
    }

    #listing-actu .slick-prev {
        left: 214px;
    }

    #listing-actu .slick-next {
        right: 15px;
    }

    .nav-actu {
        padding-top: 18px;
        text-align: left;
        margin-left: 250px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    #blocActu {
        width: 1000px;
        margin: 0 auto;
        position: relative;
        padding-left: 0;
    }

    #actu-bk-txt, .block-txt-actu {
        width: 320px;
    }

    #block-caroussel {
        position: absolute;
        right: -110px;
    }
}

@media (min-width: 1920px) {
    #blocActu {
        width: 1280px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    #blocActu {
        width: 900px;
        margin: 0 auto;
        position: relative;
    }

    #actu-bk-txt, .block-txt-actu {
        width: 220px;
    }

    #actu-bk-txt, .block-txt-actu {
        width: 300px;
    }
}

@media (min-width: 1024px) and (max-width: 1240px) {
    #actu-bk-txt, .block-txt-actu {
        width: 250px;
    }
}

/* ======== PARTENAIRES ======== */

#partenaires {
    padding-top: 80px;
    padding-bottom: 42px;
}

#block-logo-partenaires {
    margin-top: 25px;
}

.ligne-logo-partenaire {
    margin-bottom: 30px;
}

.axa {
    width: 53px;
    margin-right: 65px;
    margin-left: 30px;
}

.bp {
    width: 134px;
    margin-right: 0px;
}

.fondasol {
    margin-top: 30px;
    width: 109px;
    margin-right: 36px;

}

.hemon {
    width: 125px;
}

.iso {
    width: 60px;
    margin-right: 62px;
    margin-left: 30px;
}

.palatine {
    width: 125px;
    margin-right: 0;
}

.socotec {
    width: 64px;
    margin-right: 65px;
    margin-left: 30px;
    margin-top: 30px;
}

.sma {
    width: 112px;
    margin-top: 30px;
}

@media (max-width: 325px) {
    #partenaires .block-filet {
        margin-left: 15px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    #partenaires .block-contenu-central {
        width: 90%;
    }
}

@media (min-width: 768px) {
    #partenaires {
        padding-top: 54px;
        padding-bottom: 42px;
    }

    #partenaires .block-filet, #partenaires h2 {
        padding-left: 0;
    }

    #block-logo-partenaires {
        margin-top: 54px;
    }

    .ligne-logo-partenaire {
        margin-bottom: 40px;
    }

    .axa {
        width: 53px;
        margin-right: 94px;
        margin-left: 0;
    }

    .bp {
        width: 134px;
        margin-right: 76px;
    }

    .fondasol {
        margin-top: 0;
        width: 109px;
        margin-right: 44px;

    }

    .hemon {
        width: 125px;
    }

    .iso {
        width: 60px;
        margin-right: 94px;
        margin-left: 0;
    }

    .palatine {
        width: 125px;
        margin-right: 100px;
    }

    .socotec {
        width: 64px;
        margin-right: 80px;
        margin-left: 0;
        margin-top: 0;
    }

    .sma {
        width: 112px;
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    html.sr .image-partenaire {
        visibility: hidden;
    }

    #partenaires {
        padding-top: 150px;
        padding-bottom: 42px;
    }

    .axa {
        width: 71px;
        margin-right: 94px;
    }

    .bp {
        width: 184px;
        margin-right: 100px;
    }

    .fondasol {
        width: 147px;
        margin-right: 94px;

    }

    .hemon {
        width: 169px;
    }

    .iso {
        width: 82px;
        margin-right: 94px;
    }

    .palatine {
        width: 170px;
        margin-right: 130px;
    }

    .socotec {
        width: 87px;
        margin-right: 130px;
    }

    .sma {
        width: 172px;
    }

}

@media (min-width: 1440px) {
    #block-logo-partenaires {
        margin-top: 60px;
    }

    .ligne-logo-partenaire {
        margin-bottom: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .axa {
        width: 82px;
        margin-right: 134px;
    }

    .bp {
        width: 211px;
        margin-right: 96px;
    }

    .fondasol {
        width: 169px;
        margin-right: 117px;

    }

    .hemon {
        width: 194px;
    }

    .iso {
        width: 94px;
        margin-right: 120px;
    }

    .palatine {
        width: 194px;
        margin-right: 142px;
    }

    .socotec {
        width: 100px;
        margin-right: 172px;
    }

    .sma {
        width: 172px;
    }

}

@media (min-width: 1920px) {
    #partenaires .block-contenu-central div:not(.block-filet) {
        padding: 0;
    }
}

/* ======== CONTACT ======== */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #CC5166 inset;
    color: #FFF;
}

#block-adresse {
    display: block;
}

#block-adresse-tab {
    display: none;
}

@media (max-width: 325px) {
    #contact .block-contenu-central {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #block-adresse {
        display: none;
    }

    #block-adresse-tab {
        display: block;
        margin-top: 40px;
        margin-bottom: 64px;
    }

    #block-adresse-tab #block-questions {
        margin-top: 0;
    }
}

#contact {
    background: #E8F1F7 url('images/img-back-contact-2-375.png') no-repeat;
    background-size: contain;
    padding-top: 250px;
}

#block-formulaire-contact {
    padding: 50px 25px;
}

.block-g-contact, .block-d-contact {
    margin-left: -15px;
}

#block-adresse {
    margin-top: 30px;
    padding-right: 0;
    padding-left: 0;
}

#logo-opus {
    display: none;
}

.social-block{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}
@media (max-width: 1023px) {
    .social-block{
        border-top: 0;
    }
}
@media (max-width: 767px) {
    .social-block{
        padding-top: 0;
        margin-bottom: 50px;
    }
}
.social-block .social-link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 100%;
}
.social-block span{
    font-size: 15px;
    margin-right: 30px;
}
@media (max-width: 360px){
    .social-block span{
        margin-right: 10px;
    }
}
.social-block ul{
    padding: 0;
    margin: 0;
}
.social-block ul:after{
    content: '';
    display: table;
    width: 100%;
    clear: both;
}
.social-block li{
    list-style: none;
    float: left;
    margin-right: 20px;
}
@media (max-width: 360px){
    .social-block li{
        margin-right: 10px;
    }
}
.social-block li:last-child{
    margin-right: 0;
}
.social-block img, .social-block svg{
    width: auto;
    height: 60%;
    display: block;
    margin-top: 1px;
    color: white;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.social-block .social-link{
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.social-block .social-link:hover{
    background: white;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.social-block .social-link:hover svg{
    color: #CC5166;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

form#form-contact label {
    width: 30%;
    font-size: 15px;
    color: #FFF;
    font-family: 'Avenir-Book';
}

form#form-contact input[type=radio] {
    width: 50px;
}

form#form-contact input {
    width: 270px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #FFF;
    background: none;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-size: 15px;
    color: #FFF;
    font-family: 'Avenir-Book';
    padding-left: 0px;
    padding-right: 10px;
}

form#form-contact textarea {
    border: 1px solid #FFF;
    width: 88%;
    background: none;
    height: 81px;
    color: #FFF;
    padding-right: 10px;
    padding-left: 10px;
}

form#form-contact #civ-m {
    margin-left: 18px;
}

form#form-contact input::-webkit-input-placeholder {
    color: #FFF;
}

form#form-contact input::-moz-placeholder {
    color: #FFF;
}

form#form-contact input:-ms-input-placeholder {
    color: #fff;
}

form#form-contact input:-ms-input-placeholder {
    color: #fff;
}

form#form-contact input::-ms-input-placeholder {
    color: #fff;
}

form#form-contact input::placeholder {
    color: #fff;
}

/* civilite */
label.container, label.container-check {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.container input, label.container-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #CC5166;
    border-radius: 50%;
    border: 1px solid #FFF;
    width: 20px;
    height: 20px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container input:checked ~ .checkmark {
    /* background-color: #FFF;*/
}

.container .checkmark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.container-check input:checked ~ .checkmark-check::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #FFF;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -8px;
}

.checkmark-check {
    position: absolute;
    top: 0;
    left: 1px;
    height: 20px;
    width: 20px;
    background-color: #CC5166;
    border: 1px solid #FFF;
    width: 20px;
    height: 20px;
}

.checkmark-check:after {
    content: "";
    position: absolute;
    display: none;
}

.container-check input:checked ~ .checkmark-check {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.container-check input:checked ~ .checkmark-check::before {
    content: "";
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border: 1px solid #fff;
    position: absolute;
    top: -4px;
    left: -8px;
}

#accepte, #valide {
    margin-top: 24px;
}

#valide {
    letter-spacing: 1px;
}

#mentions-footer {
    margin-top: 60px;
}

form#form-contact label.error {
    color: #002D4D;
    font-size: 12px;
    width: 100%;
}

#prenom-error {
    position: absolute;
    top: 46px;
    left: 16px;
}

#nom-error {
    position: absolute;
    top: 46px;
    left: 15px;
}

#civilite-error {
    position: absolute;
    top: -30px;
    left: 0;
}

#email-error, #tel-error, #maskedphone-error {
    position: absolute;
    top: 130px;
    left: 15px;
}

#contenant-block-copy {
    margin-bottom: 24px;
}

.copy {
    margin-right: 20px;
}

#block-formulaire-contact {
    padding: 43px 30px 0 30px;
}

#block-adresse {
    margin-top: 30px;
    padding-right: 0;
    padding-left: 0;
}

.adresse-label {
    width: 110px;
}

#block-questions {
    margin-top: 25px;
    margin-bottom: 25px;
}

#accepte {
    padding-right: 25px;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Avenir-Book', sans-serif;
}

#accepte label.container-check {
    height: 50px;
}

input.smart {
    display: block;
}

input.large {
    display: none;
}

@media (max-width: 325px) {
    form#form-contact label {
        width: 26%;
    }

    form#form-contact #civ-m {
        margin-left: 33px;
    }
}

@media (max-width: 374px) {
    .links-espace {
        padding: 55px 0 0 0;
    }
    .links-espace .espace-client a {
        padding-right: 10px;
    }
    .links-espace .espace-parenaire a {
        padding-left: 10px;
    }
    #block-adresse div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .adresse-contenu {
        /*text-align: right;*/
    }
}

@media (max-width: 767px) {
    .adresse-contenu {
        width: 185px;
    }
}

@media (max-width: 768px) {
    #contact .block-contenu-central {
        width: 90%;
    }

    .adresse-label {
        width: 90px;
    }

    .block-g-contact, .block-d-contact {
        margin-left: 0;
    }

    form#form-contact input {
        width: 100%;
    }

    form#form-contact textarea {
        width: 100%;
    }

    form#form-contact #civ-m {
        margin-bottom: 35px;
    }
}

@media (min-width: 768px) {
    input.smart {
        display: none;
    }

    input.large {
        display: block;
    }

    .block-g-contact, .block-d-contact {
        margin-left: 0;
    }

    form#form-contact textarea {
        width: 100%;
    }

    #accepte {
        padding-right: 0;
    }

    #block-formulaire-contact {
        padding: 0;
    }

    form#form-contact input {
        width: 331px;
    }

    #contact {
        background: url('images/back-contact.jpg') no-repeat;
        background-size: contain;
        padding-top: 308px;
    }

    .block-mentions-copy {
        width: 366px;
        margin: 0 auto;
        font-size: 15px;
        color: #FFF;
    }

    #contenant-block-copy {
        margin-bottom: 24px;
    }

    .copy {
        margin-right: 20px;
        float: left;
    }

    #block-formulaire-contact {
        padding: 43px 0px 0 0px;
    }

    #block-adresse {
        margin-top: 30px;
        padding-right: 0;
        padding-left: 0;
    }

    .adresse-label {
        width: 110px;
    }

    #block-questions {
        margin-top: 25px;
        margin-bottom: 0;
    }

    #bt-mention-smart {
        display: none;
    }
}

@media (min-width: 1024px) {
    #contact {
        background: url('images/back-contact.jpg') no-repeat;
        background-size: contain;
        padding-top: 400px;
    }

    .block-mentions-copy {
        width: 366px;
        margin: 0 auto;
        font-size: 15px;
        color: #FFF;
    }

    #contenant-block-copy {
        margin-bottom: 24px;
    }

    .copy {
        margin-right: 20px;
        float: left;
    }

    #block-formulaire-contact {
        padding: 83px 65px 0 65px;
    }

    #block-adresse {
        margin-top: 30px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .adresse-label {
        width: 110px;
    }

    #block-questions {
        margin-top: 45px;
    }

    form#form-contact input {
        width: 200px;
    }
}

@media (min-width: 1280px) {
    #contact {
        background: url('images/back-contact.jpg') no-repeat;
        background-size: contain;
        padding-top: 442px;
    }
}

@media (min-width: 1440px) {
    #logo-opus {
        display: block;
        padding: 39px 41px 29px 40px;
    }

    #logo-opus svg {
        width: 184px;
    }

    .block-mentions-copy {
        width: 450px;
        margin: 0 auto;
        font-size: 15px;
        color: #FFF;
    }

    #contenant-block-copy {
        margin-bottom: 24px;
    }

    .copy {
        margin-right: 20px;
        float: left;
    }

    #block-formulaire-contact {
        padding: 83px 65px 0 65px;
        border-left: 140px solid #002D4D;
    }

    #block-adresse {
        margin-top: 30px;
    }

    .adresse-label {
        width: 110px;
    }

    #block-questions {
        margin-top: 25px;
    }

    form#form-contact input {
        width: 235px;
    }
}

@media (min-width: 1920px) {
    #contact .block-contenu-central {
        margin: 0 0 0 128px;
    }

    #civ-m {
        margin-bottom: 28px;
    }

    form#form-contact input {
        width: 297px;
    }
}

/* ======== ESPACE CLIENT ======== */

body.espace {
    background: #CC5166;
}

#espace-client-page {
    background: url('images/back-espace-client.jpg') no-repeat;
    background-size: cover;
    height: 100vh;
    padding: 53px 0 0 0;
}

.block-form-espace-client {
    width: 400px;
    margin: 110px auto;
    padding: 51px 43px;

}

.block-form-espace-client h5 {
    position: relative;
}

.block-form-espace-client h5:after {
    content: '';
    width: 24px;
    height: 2px;
    background: #FFF;
    position: absolute;
    bottom: 0px;
    left: 0;
}

p#p-connect {
    margin-top: 36px;
}

#client-connect input {
    border: 1px solid #FFF;
    height: 55px;
    width: 306px;
    background: none;
    color: #FFF;
    padding: 0 20px;
}

#client-connect label {
    font-size: 15px;
    font-family: 'Avenir-Heavy', sans-serif;
    color: #FFF;
    margin-top: 26px;
}

#retour {
    position: absolute;
    top: 91px;
    left: 63px;

}

#retour a, #retour a:hover {
    font-size: 13px;
    text-transform: uppercase;
    color: #FFF;
}

#erreur {
    text-align: center;
    color: #FFF;
}

.pop-contain {
    background: rgba(0, 45, 77, 0.7);
    height: 100%;
    min-height: 100%;
    width: 100%;
    z-index: 200;
    position: absolute;
    top: 0;
    left: 0;
}

.pop {
    background-color: #CC5166;
    padding: 80px 25px 50px 25px;
    vertical-align: middle;
    width: 93%;
    margin-top: 80px;
    text-align: center;
}

#popin {
    position: relative;
}

#fermer-pop {
    position: absolute;
    top: 20px;
    right: 20px;
}

.title-pop {
    font-size: 26px;
    text-transform: uppercase;
    color: #FFF;
    font-family: 'Avenir-Heavy', sans-serif;
}

.conseiller {
    font-size: 18px;
    font-family: 'Avenir-Medium', sans-serif;
    color: #FFF;
    margin-top: 35px;
}

@media (max-width: 767px) {
    .block-form-espace-client {
        width: 100%;
        margin: 70px auto;
        padding: 51px 43px;
    }

    #client-connect input {
        width: 90%;
    }

    #retour {
        top: 10px;
        left: 20px;
    }

    #client-connect label {
        width: 100%;
    }

}

@media (min-width: 768px) {
    .pop {
        margin: 0 auto;
        margin-top: 125px;
        width: 80%;
        padding: 96px 62px 97px 63px;
    }

    .title-pop {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .pop {
        margin-top: 255px;
        width: 60%;
        padding: 96px 172px 97px 173px;
    }
}

/* ========= MENTIONS LEGALES ====== */

button.close {
    color: #FFF !important;
}

#mentions-legales {
    display: none;
}

#mentionsLegales h4 {
    font-size: 26px;
    color: #FFF;
    line-height: 25px;
    font-family: Avenir-Heavy;
}

#mentionsLegales .modal-dialog {
    max-width: 100%;
}

#mentionsLegales .modal-content {
    background-color: #CC5166;
    padding: 15px 25px 55px 25px;
    color: #FFF;
}

#mentionsLegales .modal-header {
    text-align: center;
    border: none;
}

#mentionsLegalesTitle.modal-title {
    font-size: 30px;
    color: #FFF;
    line-height: 36px;
    font-family: 'Avenir-Heavy', sans-serif;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #mentionsLegales .modal-dialog {
        max-width: 60%;
    }
}

/* ========= FOOTER ====== */
.mentions {
    cursor: pointer;
}

#bt-mention {
    cursor: pointer;
    display: none;
}

#btn-mention-smart {
    display: block;
}

#mentions-footer {
    float: left;
}

@media (min-width: 768px) {
    #bt-mention {
        display: block;
    }

    #btn-mention-smart {
        display: none;
    }

    #mentions-footer {
        float: none;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    #mentions-footer {
        width: 100%;
    }

    .adresse-label {
        width: 110px;
    }
}

@media (min-width: 1024px) {
    #mentions-footer {
        float: none;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .mini-hide {
        display: none!important;
    }
}
@media (min-width: 1440px) {
    .lg-hide {
        display: none!important;
    }
}
@media (max-width: 767px) {
    .mobile-hide {
        display: none!important;
    }
}

/* ========= PROGRAMME PAGE BANNER ====== */
.programme-page #banner {
    position: relative;
    padding: 0;
    /*min-height: 568px!important;*/
    min-height: 100vh; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    min-height: -webkit-fill-available;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0,45,77,1)),to(rgba(0,45,77,0)));
    background: -o-linear-gradient(left, rgba(0,45,77,1) 0%,rgba(0,45,77,0) 100%);
    background: linear-gradient(to right, rgba(0,45,77,1) 0%,rgba(0,45,77,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002d4d', endColorstr='#00002d4d',GradientType=1 ); /* IE6-9 */
}
.programme-page .hero-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.programme-page .hero-slider .slick-list {
    /*left: 20px;*/
}
@media (max-width: 767px) {
    .programme-page .hero-slider .slick-list {
        left: 0;
    }
}

.programme-page .hero-slider .slick-track {
    height: 100vh;
}
.programme-page .hero-slider .slide {
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 568px!important;
    margin: 0;
    opacity: 1;
}
.programme-page .hero-slider .slide.right{
    background-position: right center;
}
@media (max-width: 1024px) {
    .programme-page .hero-slider .slide.right{
        background-position: center;
    }
}
.programme-page .hero-slider .slick-active{
    opacity: 1;
}
@media (max-width: 767px) {
    .programme-page .hero-slider .slide{
        margin: 0;
    }
}
.programme-page #mentionsLegales .modal-content {
    background-color: #002D4D;
}

.modal--red .modal-dialog{
    width: calc(100% - 1rem);
    max-width: 1500px;
    color: white;
}
.modal--red .modal-content{
    background: #CC5166;
    padding: 30px 60px 30px 40px;
}
@media (max-width: 575px) {
    .modal--red .modal-content{
        padding: 20px 40px 30px 20px;
    }
}
.modal--red .modal-header{
    border: none;
    padding: 0 0 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.modal--red .modal-header .close{
    padding: 0;
    margin: 0 -28px 0 0;
    position: relative;
    width: 28px;
    height: 28px;
    opacity: 1;
}
.modal--red .close:before,.modal--red .close:after{
    content: '';
    display: block;
    position: absolute;
    width: 120%;
    height: 4px;
    border-radius: 2px;
    background: white;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal--red .close:after{
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal--red .close span{
    display: none;
}

.modal--red #mentionsLegalesTitle.modal-title{
    font-size: 26px;
    text-transform: initial;
    line-height: 1;
}

.modal--red .modal-body{
    padding: 0;
}

.hero-slider-buttons {
    position: absolute;
    bottom: 300px;
    left: 15px;
    outline: none;
}
@media (max-width: 767px) {
    .hero-slider-buttons{
        bottom: 33px;
        left: 30px;
    }
}
.hero-slider-button {
    width: 24px;
    height: 16px;
    border: none;
    background: transparent;
    background-image: url(./images/hero-slider-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80%;
    cursor: pointer;
}
.hero-slider-button:focus{
    outline: 0;
}
.hero-slider-prev {
    margin-right: 30px;
}

.hero-slider-next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.programme-page{
    overflow: hidden!important;
    font-family: Avenir-Book;
}
.programme-page #banner .container,
.programme-page main .container,
.programme-page #footer .container {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 15px 0;
}
@media (max-width: 1199px) {
    .programme-page #banner .container,
    .programme-page main .container,
    .programme-page #footer .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (max-width: 767px) {
    .programme-page #banner .container,
    .programme-page main .container,
    .programme-page #footer .container{
        padding-left: 28px;
        padding-right: 28px;
    }
}
.programme-page #banner .container {
    position: relative;
    height: 100%;
}
@media (max-width: 649px) {
    .programme-page #banner .container {
        height: 100vh;
    }
}
@media (max-width: 767px) {
    .programme-page #banner .container {
        min-height: 450px;
    }
}
.programme-page #banner {
    height: 100vh;
}
@media (max-width: 767px) {
    .programme-page #banner{
        height: auto;
    }
}
.programme-page main {
    position: relative;
    padding-bottom: 10px;
}
@media (max-width: 1199px) {
    .programme-page main {
        padding-bottom: 0;
    }
}

.programme-page main .container {
    position: relative;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.programme-page main::before {
    content: none;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 200px;
    background-color: #002d4d;
}
.programme-page main::after {
    content: none;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    display: block;
    width: 20%;
    height: 400px;
    background-color: #002d4d;
}
.programme-page #block-texte {
    width: 100%;
    padding: 0;
    /*margin-top: 130px;*/
}

.programme-page #block-texte > div{
    width: 100%;
    display: block;
}

.programme-page .placeholder {
    width: 24px;
    height: 32px;
}

.programme-page .intro {
    font-size: 13px;
    margin-bottom: 30px;
    float: none;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .programme-page .intro{
        font-size: 11px;
        margin-bottom: 10px;
    }
}
.programme-page .address{
    font-size: 20px;
}
.programme-page .rect-blocks{
    margin-top: 45px;
    margin-top: 45px;
}

.programme-page #banner #block-texte h1 {
    margin-bottom: 30px;
    font-size: 50px;
    line-height: 1.12;
}

.programme-page .pseudo-tag {
    border: 1px solid #CC5166;
    padding: 6px 16px;
    font-size: 14px;
    margin-right: 15px;
}
.programme-page .pseudo-tag sup{
    font-family: 'Avenir-Medium';
    font-size: 50%;
    font-weight: 400;
    top: -.8em;
    letter-spacing: 0.07em;
}

@media (max-width: 767px) {
    .programme-page .pseudo-tag{
        padding: 6px 17px;
        font-size: 14px;
        margin-right: 5px;
        display: inline-block;
        margin-bottom: 5px;
    }
}

.programme-page .pseudo-tag:last-child {
    margin-right: 0;
}

.programme-page .block-info {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 140px;
    background-color: #CC5166;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .programme-page .block-info{
        padding: 10px 0px;
    }
}

.programme-page .block-info-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
    padding: 10px 20px;
    border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
    .programme-page .block-info-item{
        padding: 20px;
    }
}

.programme-page .block-info-item:last-child {
    border: none;
}

.programme-page .block-info-item p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.programme-page .block-info-item .heavy {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 0;
}
.programme-page .block-info-item sup{
    font-size: 63.5%;
    top: -.8em;
}

@media (max-height: 600px) {
    .programme-page #banner .container,
    .programme-page #banner {
        /*height: 900px;*/
    }

    .programme-page .block-inf {
        position: static;
    }
}
@media (max-width: 767px) {
    .programme-page .intro.address {
        font-size: 13px;
        letter-spacing: normal;
    }
    .programme-page #block-texte {
        margin: 0;
        margin-left: 5px;
        top: 40%;
        position: relative;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    .programme-page .block-info {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100vw;
        height: auto;
        margin-left: 0;
    }
    .programme-page .block-info-item {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .programme-page .hero-slider .slide,
    .programme-page #banner {
        /*min-height: 780px!important;*/
    }
    /*.programme-page #banner .container,*/
    /*.programme-page main .container,*/
    /*.programme-page #footer .container{*/
    /*padding: 30px 50px 0;*/
    /*}*/
    .programme-page #footer .container{
        padding-bottom: 30px;
    }
    .programme-page main .container {
        padding-top: 0;
    }
    .programme-page #block-texte {
        /*margin-top: 150px;*/
        margin: 0;
        top: 40%;
        -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
        transform: translate(0,-50%);
    }
    .programme-page .block-info {
        padding: 30px 0;
    }

    .programme-page .block-info-item {
        border-right: 1px solid #fff;
        border-bottom: none;
    }
    .hero-slider-buttons {
        bottom: 75px;
        left: 50px;
    }
}

@media (min-width: 1200px) {
    .programme-page #block-texte {
        /*margin-top: 170px;*/
    }
    .programme-page main::before,
    .programme-page main::after {
        content: '';
    }
    .hero-slider-buttons {
        left: 15px;
    }
}
.programme-page .logo{
    margin-left: 15px;
}
@media (max-width: 575px) {
    .programme-page .logo{
        margin-left: 10px;
    }
}
@media (min-width: 1440px) {
    .programme-page .logo {
        left: 50%;
        position: relative;
        margin-left: calc(-50vw + 50px);
    }
}


main {
    background-color: #e8f1f7;
}
.programme-page main .program-left {
    width: 60%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.programme-page main .program-right {
    width: 100%;
    position: fixed;
    z-index: -2;
    opacity: 0;
    top: -250%;
    max-width: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.programme-page main .program-right.open {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 100%;
    z-index: 4;
    opacity: 1;
}
@media (max-width: 1199px) {
    .programme-page main .program-right.open{
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        z-index: 1000;
    }
}

.program-right.open .form-wrapper {
    padding-top: 0;
}

.program-right.open .form-wrapper form {
    max-width: 100%;
    height: 100vh;
    overflow-y: scroll;
}
@media (max-width: 1199px){
    .program-right.open .form-wrapper{
        width: 100%;
        height: 100%;
        max-height: 100%;
        overflow: hidden;
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }
    .program-right.open .form-wrapper form {
        /*max-width: 100%;*/
        /*height: auto;*/
        /*max-height: 100vh;*/
        /*overflow: auto;*/
        margin: 0 auto;
        height: auto;
        max-height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling:touch;
    }
}
@media (max-width: 767px){
    .program-right.open .form-wrapper{
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 1200px) {
    .programme-page #block-texte {
        /*margin-top: 170px;*/
    }
    .programme-page main::before,
    .programme-page main::after {
        content: '';
    }
    .programme-page main .program-right {
        max-width: 300px;
    }
    .programme-page main .program-right {
        opacity: 1;
    }
}


/* ========= PROGRAMME PAGE RESIDENCE BLOCK ====== */
.residence {
    position: relative;
    z-index: 1;
    background-color: #002d4d;
    color: #fff;
    padding: 45px 30px;
}
@media (max-width: 767px) {
    .residence{
        padding: 45px 30px 60px;
        margin: 0 -30px;
    }
}
/*.residence::before,*/
/*.residence::after {*/
    /*content: '';*/
    /*position: absolute;*/
    /*z-index: 1;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*width: 16px;*/
    /*background-color: #002d4d;*/
/*}*/
/*.residence::before {*/
    /*left: -15px;*/
/*}*/
/*.residence::after {*/
    /*right: -15px;*/
/*}*/
.residence::before{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: -99em;
    left: -99em;
    background-color: #002d4d;

}
@media (max-width: 767px) {
    .residence::before,
    .residence::after{
        display: none;
    }
}
.residence .title {
    font-size: 34px;
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .residence .title{
        font-size: 30px;
    }
}

.residence p {
    max-width: 640px;
    width: 100%;
    font-size: 17px;
    margin-bottom: 35px;
    font-family: Avenir-Book;
}

.residence ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 17px;
}

.residence ul li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 64px;
}
@media (max-width: 575px) {
    .residence ul li{
        padding-left: 50px;
    }
}

.residence ul li:last-child {
    margin-bottom: 0;
}

.residence ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    width: 24px;
    height: 1px;
    background-color: #CC5166;
}

.closePopup {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    width: 42px;
    height: 42px;
    background-color: transparent;
    background-image: url(./images/close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: none;
}
@media (max-width: 419px) {
    .closePopup{
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 768px) {
    .residence {
        padding: 65px 0;
    }
    /*.residence::before,*/
    /*.residence::after {*/
        /*width: 51px;*/
    /*}*/

    /*.residence::before {*/
        /*left: -50px;*/
    /*}*/
    /*.residence::after {*/
        /*right: -50px;*/
    /*}*/
}

@media (min-width: 1200px) {
    .programme-page main .program-right {
        display: block;
    }
    .residence {
        padding: 65px 30px 65px 0;
        min-height: 400px;
    }
    /*.residence::before,*/
    /*.residence::after {*/
        /*content: none;*/
    /*}*/
    .residence::before{
        right: 0;
        left: -999em;
    }
    .programme-page main .program-right {
        position: static;
        max-width: 40%;
        width: 100%;
        z-index: 1;
    }
    .programme-page main .program-right .closePopup {
        display: none;
    }
}
/* ========= PROGRAMME PAGE GALLERY BLOCK ====== */
.gallery {
    padding: 60px 0;
}
@media (max-width: 575px) {
    .gallery {
        padding: 50px 0;
    }
}
.gallery .title,
.program .title,
.appartements .title {
    font-family: 'Avenir-Heavy', sans-serif;
    font-size: 30px;
    font-weight: normal;
    color: #002d4d;
    margin-bottom: 25px;
}

.gallery .article{
    display: block;
    margin-top: 20px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 67.3%;
    overflow: hidden;
}
.gallery-slider .slick-list{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.gallery-slider .slick-track{
    height: 100%;
}
.gallery-slider img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.gallery-slider .slick-slide{
    height: 100%;
    opacity: 1;
}
.gallery-slider .slick-active{
    opacity: 1;
}
.gallery .slick-next,
.gallery .slick-prev {
    position: absolute;
    z-index: 1;
}

.gallery .slick-next {
    right: 20px;
}

.gallery .slick-prev {
    left: 20px;
}

.gallery .slick-next::before,
.gallery .slick-prev::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    background-image: url(./images/slider-arrow.svg);
    background-repeat: no-repeat;
    background-size: 55%;
    background-position: center center;
    opacity: 1;
}

.gallery .slick-next::before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}
@media (max-width: 575px) {
    .gallery .slick-next::before,
    .gallery .slick-prev::before{
        width: 30px;
        height: 30px;
    }
}

.gallery .slick-slide {
    margin: 0;
}

@media (min-width: 767px) {
    .gallery-slider {
        padding-bottom: 63%;
    }
    .gallery .slick-next {
        right: 40px;
    }

    .gallery .slick-prev {
        left: 40px;
    }
}
@media (min-width: 1200px) {
    .gallery {
        padding: 100px 0 100px;
    }
}
/* ========= PROGRAMME PAGE PROGRAM BLOCK ====== */
.program {
    margin-bottom: 100px;
}
@media (max-width: 1199px) {
    .program {
        margin-bottom: 60px;
    }
}
.program-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -25px;
}
.program .left,.program .right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 25px;
}
.program .right .program-list li{
    width: 100%;
}
@media (max-width: 767px) {
    .program .left{
        margin-bottom: 20px;
    }
}
.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    position: relative;
    padding-left: 20px;
    font-family: 'Avenir-Book', sans-serif;
    font-size: 17px;
    margin-bottom: 20px;
    color: #002d4d;
    /*width: 69%;*/
}

.program-list li:last-child {
    margin-bottom: 0;
}

.program-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    display: block;
    width: 8px;
    height: 8px;
    background-color: #CC5166;
}

@media (min-width: 767px) {
    .program-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
@media (min-width: 1200px) {
    .program-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (min-width: 1440px) {
    .program-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

/* ========= PROGRAMME PAGE APPARTMENTS BLOCK ====== */
.appartements {
    color: #002d4d;
    margin-bottom: 70px;
}
@media (max-width: 767px) {
    .appartements p{
        font-size: 17px;
    }
}
.appartements .table-title{
    text-align: right;
    font-size: 26px;
    color: #d2e1ec;
    -webkit-transform: translateY(11px);
    -ms-transform: translateY(11px);
    transform: translateY(11px);
}
.appartements table {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 25px;
}

.appartements article{
    font-size: 15px;
}

.appartements table tr {
    background-color: #dae7f0;
    border-bottom: 1px solid #fff;
}

.appartements table tr:last-child {
    border-bottom: none;
}

.appartements table tr td{
    padding: 15px;
    font-size: 17px;
    font-family: Avenir-Book;
}
.appartements table tr td:first-child{
    font-family: 'Avenir-Heavy';
}

.appartements table tr td:last-child {
    text-align: right;
}
@media (max-width: 767px) {
    .appartements table{
        margin-top: -18px;
    }
    .appartements table tr{
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 15px;
    }
    .appartements table tr td{
        display: block;
        padding: 0;
    }
    .appartements table tr td:last-child {
        text-align: left;
    }
}
@media (min-width: 768px) {
    .appartements .table-title {
        font-size: 56px;
        line-height: 1;
        padding: 0;
    }
}
@media (min-width: 1200px) {
    /*.appartements {*/
    /*padding-left: 100px;*/
    /*}*/
}
/* ========= PROGRAMME PAGE VISIT BLOCK ====== */
.visit {
    position: relative;
}
@media (min-width: 1200px) {
    .visit{
        margin-bottom: 120px;
    }
}
@media (max-width: 767px) {
    .visit {
        margin: 0 -30px;
    }
}
.programme-page .visit .container {
    display: block;
    /*padding: 30px 0 0;*/
}
@media (max-width: 1199px) {
    .programme-page .visit .container{
        padding: 0 0 0 50px;
    }
}
@media (max-width: 767px) {
    .programme-page .visit .container{
        padding: 0 30px;
    }
}
.visit .container .program-left {
    position: relative;
    width: 100%;
    height: 490px;
    background-color: #002d4d;
    padding: 40px 0;
    background: #002d4d url('./images/visit-bg.jpg') center bottom no-repeat;
    background-size: 100%;
    padding-left: 30px;
}
.visit .container .program-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(53%, #002d4d), to(transparent));
    background: -o-linear-gradient(top, #002d4d 53%, transparent);
    background: linear-gradient(to bottom, #002d4d 53%, transparent);
}
.visit .container .program-left .title {
    margin-bottom: 20px;
}
@media (max-width: 1199px) {
    .visit .container .program-left{
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .visit .container .program-left{
        padding: 40px 20px 260px 30px;
        height: auto;
        background-size: 100%!important;
    }
}

.visit .title p {
    font-size: 34px;
    margin: 0;
    line-height: 1.09;
    font-weight: normal;
}

@media (max-width: 575px) {
    .visit .title p {
        font-size: 30px;
    }
}

.visit .title,
.visit .visit-features {
    position: relative;
    z-index: 0;
}

.visit .visit-item {
    position: relative;
    padding-left: 55px;
}

.visit .visit-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 19px;
    height: 25px;
    background-image: url(./images/icon-tag.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.visit .visit-item:last-child::before {
    width: 31px;
    height: 19px;
    left: 0;
    background-image: url(./images/hand-shake.svg);
}

.visit .visit-item p {
    font-size: 17px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .visit .visit-item::before{
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        top: 4px;
    }
}

@media (min-width: 768px) {
    .visit .container .program-left {
        height: 390px;
        background: #002d4d url('./images/visit-bg.jpg') right center no-repeat;
    }
    .visit .container .program-left::before {
        background: -webkit-gradient(linear, left top, right top, color-stop(53%, #002d4d), to(transparent));
        background: -o-linear-gradient(left, #002d4d 53%, transparent);
        background: linear-gradient(to right, #002d4d 53%, transparent);
    }
    .visit::before {
        content: '';
        position: absolute;
        z-index: 0;
        bottom: 0;
        left: 0;
        height: 390px;
        width: 50%;
        background-color: #002d4d;
    }
}
@media (max-width: 1199px) {
    .visit .container .program-left{
        background-size: 50%;
    }
    .visit .container .program-left::before {
        background: -moz-linear-gradient(left, rgba(0,45,77,1) 0%, rgba(0,45,77,1) 55%, rgba(0,45,77,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, rgba(0,45,77,1) 0%,rgba(0,45,77,1) 55%,rgba(0,45,77,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, rgba(0,45,77,1) 0%,rgba(0,45,77,1) 55%,rgba(0,45,77,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002d4d', endColorstr='#00002d4d',GradientType=1 ); /* IE6-9 */
    }
}
@media (max-width: 767px){
    .visit .container .program-left::before{
        height: auto;
        bottom: 0;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, #002d4d), to(#002d4d4a));
        background: -o-linear-gradient(top, #002d4d 55%, #002d4d4a);
        background: linear-gradient(to bottom, #002d4d 55%, #002d4d4a);
    }
}
@media (min-width: 1200px) {
    .programme-page main .visit > .container {
        max-width: 1270px;
        width: 100%;
        margin: 0 auto;
        /*padding: 30px 50px 0;*/
    }
    .visit .container .program-left {
        /*max-width: 643px;*/
        max-width: 744px;
        width: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        padding-left: 0;
    
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .visit .container .program-left > * {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .form-wrapper form {
        max-width: 400px;
    }

}

/* ========= PROGRAMME PAGE CONTACT BLOCK ====== */
.form-wrapper {
    position: relative;
    margin-top: 70px;
    float: right;
}
@media (max-width: 1199px) {
    .form-wrapper{
        margin: 0 auto;
        left: 0;
        right: 0;
        top: 0;
        max-height: 100vh;
    }
}
@media (min-width: 1200px) {
    .form-wrapper.fixed{
        position: fixed;
        top: 0;
        margin-top: 0;
        right: 15px;
        width: 400px;
    }
    .form-wrapper.fixed--bottom{
        position: absolute;
        margin: 0;
        left: auto;
        right: 15px;
        bottom: 0;
        top: auto;
        width: 400px;
    }
}
.form-wrapper .form-error{
    display: none;
}
@media (min-width: 1270px) {
    .form-wrapper.fixed--bottom{
        right: 70px;
    }
    .form-wrapper.fixed{
        left: 50%;
        margin-left: 220px;
    }
}
.form-wrapper form {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    -webkit-box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.09);
    background-color: #e8f1f7;
}
.form-wrapper input[type="email"] + .form-error,.form-wrapper input[name="telephone"] + .form-error{
    display: block;
    color: #b94a48;
    font-size: 12px;
    text-align: left;
}

.form-header {
    text-align: center;
    padding: 30px 30px 0;
}

.form-header h2 {
    font-size: 30px!important;
    text-align: center;
    color: #002d4d;
    margin-bottom: 20px;
}
.form-header h2 br{
    display: none;
}
@media (max-width: 419px) {
    .form-header h2{
        line-height: 1.07;
        max-width: 270px;
        margin: 0 auto 20px;
    }
}

.form-header > p {
    text-align: center;
    color: #002d4d;
    font-size: 17px;
    margin-bottom: 0;
    margin-bottom: 20px;
    line-height: 1.35;
}
.form-header > p:first-of-type {
    margin-bottom: 0;
}
.form-header > a {
    display: block;
    margin: 0 auto;
    max-width: 210px;
    width: 100%;
    height: 52px;
    border-radius: 26px;
    background-color: #CC5166;
    text-decoration: none;
    padding-left: 60px;
    background-image: url(./images/telephone.svg);
    background-repeat: no-repeat;
    background-position: 2px center;
    background-size: 48px;
    margin-bottom: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-top: 5px;
    text-align: left;
    pointer-events: none;
}
@media (max-width: 767px) {
    .form-header > a{
        pointer-events: all;
    }
}
.form-header > a:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 0 15px 5px #ccc;
    box-shadow: 0 0 15px 5px #ccc;
}
.form-header > a  p{
    margin-bottom: 0;
}
.form-header > a  p:first-child{
    font-size: 18px;
}
.form-header > a  p:last-child{
    font-size: 12px;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}
.form-body {
    position: relative;
    text-align: center;
    padding: 0 30px 30px;
}
.form-body::before, .form-body::after  {
    content: '';
    position: absolute;
    top: 8px;
    display: block;
    width: 36%;
    height: 1px;
    background-color: #002d4d;
    opacity: 0.5;
}
.form-body::before {
    left: 29px;
}
.form-body::after {
    right: 29px;
}
.form-body > span:first-of-type {
    font-size: 12px;
    color: #002d4d;
    margin-bottom: 20px;
    display: block;
}
.form-body h3 {
    margin-bottom: 15px;
}
.form-body h3 > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 0;
    color: #002d4d;
    line-height: 1.35;
}
.form-body .wish {
    margin-bottom: 20px;
}
.form-body .wish p {
    text-align: center;
    font-size: 15px;
    line-height: 1.1;
    color: #002D4D;
    margin-bottom: 0;
}
.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}
.form-body .input-group-checkbox {
    text-align: center;
    margin: 25px auto;
}
@media (max-width: 575px) {
    .form-body .input-group-checkbox{
        max-width: 340px;
    }
}
.form-body .input-group-checkbox label {
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    vertical-align: middle;
}
.form-body .input-group-checkbox label:hover {
    -webkit-box-shadow: 0 0 15px 5px #ccc;
    box-shadow: 0 0 15px 5px #ccc;
}
.form-body .input-group-checkbox label > span {
    position: relative;
    display: block;
    min-height: 50px;
    width: 100%;
    padding: 0 5px;
    font-size: 15px;
    color: #002d4d;
    background-color: #dae7f0;
    -webkit-transition-property: padding-left;
    -o-transition-property: padding-left;
    transition-property: padding-left;
    transition-property: padding-left;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
}
@media (max-width: 419px) {
    .form-body .input-group-checkbox label > span{
        line-height: 1.07;
        padding-top: 7px;
        padding-bottom: 7px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.form-body .input-group-checkbox label:first-of-type,
.form-body .input-group-checkbox label:last-of-type {
    max-width: 140px;
    width: 100%;
}
.form-body .input-group-checkbox label:last-of-type > span {
    line-height: 50px;
    padding: 0 5px;
}
/*.form-body .input-group-checkbox label > span::before {*/
/*content: '+';*/
/*position: absolute;*/
/*left: 15px;*/
/*top: 50%;*/
/*transform: translateY(-50%);*/
/*color: #002d4d;*/
/*font-size: 15px;*/
/*}*/
.form-body .input-group-checkbox label > input:checked + span {
    background-color: #CC5166;
    color: #fff;
    background-image: url(./images/checked.svg);
    background-repeat: no-repeat;
    background-position: 8px center;
    background-size: 15px;
    font-family: Avenir-Heavy, sans-serif;
    padding-left: 15px;
    -webkit-transition-property: padding-left;
    -o-transition-property: padding-left;
    transition-property: padding-left;
    transition-property: padding-left;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
}
.form-body .input-group-checkbox label > input:checked + span::before {
    content: none;
}
@media (max-width: 419px) {
    .form-body .input-group-checkbox label > input:checked + span{
        padding-left: 25px;
        background-position: 12px center;
    }
    .form-body .input-group-checkbox label:first-child span{
        padding-left: 32px;
        background-position: 15px center;
        text-align: left;
    }
    .form-body .input-group-checkbox label:first-child > input:checked + span{
        padding-left: 40px;
        background-position: 15px center;
    }
}
@media (max-width: 359px) {
    .form-body .input-group-checkbox label:first-of-type, .form-body .input-group-checkbox label:last-of-type{
        max-width: 120px;
    }
    .form-body .input-group-checkbox label:first-child span{
        padding-left: 25px;
    }
    .form-body .input-group-checkbox label > input:checked + span{
        padding-left: 15px;
        background-position: 4px center;
    }
    .form-body .input-group-checkbox label:first-child > input:checked + span{
        padding-left: 30px;
        background-position: 10px center;
    }
}
.form-body .input-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
}
.form-body .input-group::after {
    content: '*';
    position: absolute;
    top: 0;
    right: 0;
    color: #CC5166;
    font-size: 18px;
}
.form-body .input-group label {
    position: relative;
    width: 40%;
    text-align: left;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: text-dcoration 0.3s ease-in-out;
    -o-transition: text-dcoration 0.3s ease-in-out;
    transition: text-dcoration 0.3s ease-in-out;
}
.form-body .input-group label:hover > span {
    text-decoration: underline;
}
.form-body .input-group label > span{
    position: relative;
    font-size: 15px;
    color: #002D4D;
}
.form-body .input-group label:first-of-type {
    text-align: right;
}
.form-body .input-group label:first-of-type > span{
    padding-right: 35px;
}
.form-body .input-group label:last-of-type > span{
    padding-left: 35px;
}
.form-body .input-group label:first-of-type > span::after,
.form-body .input-group label:last-of-type > span::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 23px;
    height: 23px;
    border: solid 1px rgba(0, 45, 77, 0.21);
    background-color: #dae7f0;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.form-body .input-group label:first-of-type > span::after {
    right: 0;
}
.form-body .input-group label:last-of-type > span::before {
    left: 0;
}
.form-body .input-group label input:checked + span::after,
.form-body .input-group label input:checked + span::before {
    border: 6px solid #CC5166;
    background-color: #fff;
}
.form-body .input-field {
    margin-bottom: 10px;
}
.form-body .input-field:last-of-type {
    margin-bottom: 30px;
}
.form-body .input-field input {
    width: 100%;
    border: none;
    background-color: #dae7f0;
    padding: 15px;
    height: 45px;
}
.form-body .input-field input.error{
    background-color: #CC5166;
}
.form-body .input-field input::-webkit-input-placeholder {
    font-size: 15px;
    color: #002D4D;
    opacity: 0.6;
}
.form-body .input-field input::-moz-placeholder {
    font-size: 15px;
    color: #002D4D;
    opacity: 0.6;
}
.form-body .input-field input:-ms-input-placeholder {
    font-size: 15px;
    color: #002D4D;
    opacity: 0.6;
}
.form-body .input-field input::-ms-input-placeholder {
    font-size: 15px;
    color: #002D4D;
    opacity: 0.6;
}
.form-body .input-field input::placeholder {
    font-size: 15px;
    color: #002D4D;
    opacity: 0.6;
}
.form-body .input-field-policy {
    margin-top: 25px;
    position: relative;
    padding-left: 25px;
    text-align: left;
}
.form-body .input-field-policy.has-error .form-text{
    color: #b94a48;
}
.form-body .form-text {
    color: #607e94;
    font-size: 12px;
    line-height: 1.5;
    text-align: justify;
}
.form-body .input-field-policy .policy {
    position: absolute;
    left: 0;
    top: 2px;
    display: inline;
    width: 20px;
    height: 20px;
    background-color: #dae7f0;
    margin-bottom: 35px;
    cursor: pointer;
}
.form-body .input-field-policy p {
    color: #5e7d93;
}
.form-body .input-field-policy a {
    color: inherit;
    text-decoration: underline;
}
.form-body .input-field-policy a:hover {
    text-decoration: none;
}
.form-body .form-text-block > span.form-text{
    text-align: center;
    margin-bottom: 15px;
}
.form-body .form-text-block > a.form-text {
    text-align: center;
    text-decoration: underline;
    margin-bottom: 15px;
}
.form-body .form-text-block > a.form-text:hover {
    text-decoration: none;
}
.form-body > button {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    width: 250px;
    height: 60px;
    border: 1px solid #002d4d;
    background-color: #002D4D;
    border-radius: 30px;
    margin: 25px auto;
    cursor: pointer;
    -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
    transition: -webkit-box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.form-body > button:hover {
    -webkit-box-shadow: 0 0 15px 5px #ccc;
    box-shadow: 0 0 15px 5px #ccc;
}

.input-group-checkbox-investor {
    /*display: none;*/
}
.form-body  .input-group-checkbox-investor label > input:checked + span{
    background-position: 15px center;
}

.input-group-checkbox-investor h3 {
    font-size: 18px!important;
    text-align: center;
    color: #002d4d;
}

.success-message {
    position: fixed;
    top: 15px;
    left: 50%;
    width: 95%;
    -webkit-transform: translate(-50%, -50px);
    -ms-transform: translate(-50%, -50px);
    transform: translate(-50%, -50px);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #002d4d;
    padding: 20px 45px 20px 20px;
    max-width: 1170px;

}
.success-message.show {
    z-index: 6;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 1;
}
.success-message p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    line-height: 1.35;
}

.success-message button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 25px;
    background-color: transparent;
    border: none;
}

@media (min-width: 419px) {
    .form-body .input-group-checkbox label:first-of-type {
        max-width: 194px;
        width: 100%;
    }
    .form-body .input-group-checkbox label:last-of-type {
        max-width: 120px;
    }
    .form-body .input-group-checkbox label > span {
        line-height: 50px;
    }
}

@media (min-width: 768px) {
    .form-body .input-group-checkbox label:last-of-type {
        max-width: 195px;
    }
    .form-body .input-group label.has-error .book:before,.form-body .input-group label.has-error .book:after{
        border-color: #CC5166;
    }
    .input-field {
        display: inline-block;
        width: 49.6%;
    }
    .input-field-address {
        /*background-color: red;*/
        display: block;
        width: 100%;
    }

    .input-group-checkbox-investor {
        display: block;
    }

    /*.program-right.open .form-wrapper form {*/
        /*margin-top: 2vh;*/
        /*max-width: 95%;*/
        /*height: 96vh;*/
    /*}*/
}

@media (min-width: 1200px) {
    .form-wrapper form {
        max-width: 400px;
    }
    .input-field {
        display: block;
        width: 100%;
    }
    .input-group-checkbox-investor {
        display: none;
    }
    .form-body .input-group-checkbox label:last-of-type {
        max-width: 140px;
    }
}


/* ========= FOOTER BLOCK ====== */
.footer {
    background-color: #002d4d;
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 25px;
}

.footer-copy {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 50px;
}

.footer-copy span {
    display: block;
}

.footer-phoneWrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 55px;
}
.footer-logo svg {
    max-width: 160px;
    width: 100%;
}

.footer address,
.footer address p {
    margin-bottom: 0;
    font-size: 13px;
}

.footer .footer-copy,
.footer .footer-phone {
    position: relative;
}

.footer .footer-phone{
    pointer-events: none;
}
@media (max-width: 767px) {
    .footer .footer-phone{
        pointer-events: all;
    }
}

.footer .footer-copy > p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 13px;
}

.footer .footer-phone:last-child .footer-phoneWrapper {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer .footer-copy .heavy {
    margin-left: 20px;
}

.footer-phone {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #CC5166;
    margin-right: 25px;
}

.footer-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 70px;
    height: 70px;
    background-color: rgba(217, 74, 131, 0.5);
    border-radius: 50%;
}

.footer-phone svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.footer-contact {
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.footer-contact p {
    margin-bottom: 0;
}
.footer-contact p{
    font-size: 13px;
}
.footer-contact .phone {
    font-size: 24px;
    margin-bottom: 0;
    pointer-events: none;
}
.footer-contact .phone:hover {
    color: white;
    text-decoration: none;
}
@media (max-width: 767px) {
    .footer-contact .phone {
        pointer-events: all;
    }
}
@media (min-width: 768px) {
    .footer .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .footer-logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 0;
    }

    .footer-copy {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 0;
    }

    .footer-copy span {
        display: block;
    }

    .footer-phoneWrapper {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .footer-copy span {
        display: inline-block;
    }
}

.disabled-link{
    pointer-events: none;
}
@media (max-width: 767px) {
    .programme-page #footer .container{
        padding: 35px 30px 40px;
    }
    .footer{
        text-align: center;
    }
    .footer-logo{
        margin-bottom: 50px;
    }
    .footer-phone{
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }
    .footer-phone svg#telephone{
        width: 23px;
    }
    .footer-phone:before{
        width: 46px;
        height: 46px;
    }
    .footer-contact{
        margin-top: 3px;
    }
    .footer-phoneWrapper{
        margin-bottom: 50px;
    }
    .footer-contact .phone{
        font-size: 18px;
        line-height: 1;
    }
    .footer-contact p{
        font-size: 10px;
    }
    .footer-copy{
        margin-bottom: 0;
    }
    .footer .footer-copy > p{
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin: 0;
    }
}

.modal-open, .modal-open .programme-page,.modal-open main, .modal-open .container{
    height: 100vh;
    min-width: auto;
    overflow: hidden;
}



/*new block with table*/
.custom_table{
    width: 100%;
    background: #dae7f0;
}
.custom_table tr{
    border-bottom: 1px solid #fff;
}
.custom_table td{
   padding: 18px 30px;
   font-size: 18px;
   color: #002d4d;
}
.custom_table tr:last-child{
    border-bottom: none;
}

@media(max-width: 640px){
    .custom_table td{
        padding: 10px 10px;
        font-size: 15px;
        color: #002d4d;
    }
    .custom_table td:last-child span{
        display: block;
    }
}

/*new start popup*/
#start{
    text-align: center;
}
#start .modal-content{
    background-color: #d8d8d8;
}
#start h2{
    margin: 0;
    font-size: 48px;
    font-family: 'Avenir-Heavy';
    color: #002d4d;
    line-height: 1.375;
}
#start .modal-body{
    padding: 50px 25px;
}
#start .modal-dialog:before{
    top: -20px;
    left: -20px;
}
#start .modal-dialog:after{
    bottom: -20px;
    right: -20px;

}
#start .modal-dialog:before,
#start .modal-dialog:after{
    content: '';
    width: 50%;
    height: 50%;
    background: #CC5166;
    display: block;
    position: absolute;
}
#start .modal-dialog{
    max-width: 600px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin: 0;
}
@media(max-width: 767px){
    #start .modal-dialog{
        width: calc(100% - 40px);
    }

}
#start .modal-content{
    border-radius: 0;
    border: none;
    position: relative;
    z-index: 1;
}
#start h2 span{
    color: #CC5166;
}
#start .startflex{
    display: flex;
    flex-flow: row wrap;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#start .start_big{
    line-height: 1.68;
    margin: 0;
    font-family: 'Avenir-Book';
    font-size: 28px;
    color: #002d4d;
}
#start p{
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Avenir-Book';
    color: #002d4d;
    margin: 15px 0 30px;
}
#start .startflex>*{
    width: 100%;
}
#start .custom_close{
    width: 100%;
    text-align: center;
}
#start .close{
    width: 44px;
    height: 44px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    color: #CC5166;
    border: 1px solid #CC5166;
    cursor: pointer;
    text-align: center;
    line-height: 43px;
    font-size: 30px;
    transition-duration: 0.3s;
    position: relative;
    float: none;
}
#start .close:before{
    transform: rotate(45deg);
    left: 21px;
}
#start .close:after{
    transform: rotate(-45deg);
    right: 21px;
}
#start .close:before,
#start .close:after{
    display: block;
    height: 36px;
    position: absolute;
    content: '';
    background: #CC5166;
    width: 1px;
    top: 3px;
    transition-duration: 0.3s;
    /*left: 2px;*/
}
#start .close:hover:before,
#start .close:hover:after{
    background: #fff;
}
#start .close:hover{
    background: #CC5166;
}

@media(max-width: 767px){
    #start h2{
        font-size: 30px;
    }
    #start .start_big{
        font-size: 22px;
        line-height: 1.4;
    }
    #start p{
        font-size: 16px;
        margin-bottom: 20px;
    }
}
/**
*
* MAJ - 22/03/2021
*
**/
.custom_table .vendu p {
    text-transform: uppercase;
    color: #ffffff;
    background-color: #CC5166;
    font-weight: bold;
    width: fit-content;           
    width: -moz-fit-content;   
    width: -webkit-fit-content; 
    margin: 0;
    padding: 0 10px;
}