@import url('pagination.css');

@font-face {
    font-family: 'MarkPro';
    src: url('../fonts/MarkPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MarkMedium';
    src: url('../fonts/MarkPro-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MarkBold';
    src: url('../fonts/MarkPro-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MarkLight';
    src: url('../fonts/MarkPro-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MarkBook';
    src: url('../fonts/MarkPro-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MarkHeavyItalic';
    src: url('../fonts/MarkPro-HeavyItalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MarkExtraLight';
    src: url('../fonts/MarkPro-ExtraLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

p {
    font-family: 'MarkPro';
    font-size: 18px;
    color: #515151;
    margin: 0;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/*------------    header    -----------*/

.header {
    position: relative;
    padding: 20px 0;
}
.header .row{
    align-items: center;
}
.menu{
    text-align: right;
}
.menu_top{
    border-bottom: 1px solid #ed1c24;
    margin-bottom: 25px;
    padding: 10px 0;
}
.menu_top li{
    display: inline-block;
}
.menu_top li a{
    font-family: 'MarkPro';
    font-size: 15px;
    color: #6c6c6c;
}
.menu_top li samp{
    font-family: 'MarkPro';
    font-size: 15px;
    color: #6c6c6c;
    padding: 0 13px;
}
.menu_langue{
    padding: 0 35px 0 45px;
}
.menu_langue label{
    font-family: 'MarkExtraLight';
    font-size: 15px;
    color: #585858;
    padding-right: 10px;
}
.select_langue{
    display: inline-block;
}
.select_langue select{
    font-family: 'MarkBold';
    font-size: 15px;
    color: #585858;
    text-transform: uppercase;
    border: 0;
    outline: none;
}
.menu_top li button{
    background: #ed1c24;
    border: 0;
    padding: 20px 25px;
    outline: none;
}
.menu_bottom li{
    display: inline-block;
    margin-left: 60px;
}
.menu_bottom li:first-child{
    margin-left: 0;
}
.menu_bottom li a{
    font-family: 'MarkBold';
    font-size: 18px;
    color: #585858;
}




.hamburger, .langue_and_search{
    display: none;
}
@media (min-width: 1200px) and (max-width: 1399px){
    .menu_bottom li{
        margin-left: 40px;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    .menu_langue {
        padding: 0 25px 0 30px;
    }
    .menu_bottom li{
        margin-left: 25px;
    }
    .menu_bottom li a{
        font-size: 16px;
    }
}
@media (max-width: 991px){
    .menu{
        position: fixed;
        top: 0;
        width: 400px;
        height: 100vh;
        display: flex;
        justify-content: center;
        background: #19366f;
        transition: .7s ease;
        -webkit-transition: .7s ease;
        -moz-transition: opacity .7s ease;
        overflow-y: auto;
        text-align: unset;
    }
    .menu ul{
        padding-top: 90px;
    }
    .menu ul li{
        display: block;
        margin-left: 0;
        padding-bottom: 30px;
        text-align: unset;
    }
    .menu ul li:last-child{
        margin-bottom: 40px;
    }
    .menu_top li a, .menu_bottom li a{
        color: #fff;
    }
    .menu_top li samp{
        display: none;
    }
    .hamburger{
        z-index: 9999;
        width: 45px;
        height: 60px;
        cursor: pointer;
        display: inline-block;
        position: relative;
        padding-top: 7px;
    }
    .hamburger button{
        background: transparent;
        border: 0;
        outline: none;
        position: relative;
        top: 0;
        width: 45px;
        height: 40px;
    }
    .hamburger samp, .hamburger .ferme{
        font-family: 'MarkPro';
        font-size: 10px;
        color: #3c62ad;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        text-align: right;
    }
    .hamburger .ferme{
        display: none;
    }
    .hamburger.animate samp{
        display: none;
    }
    .hamburger.animate .ferme{
        display: block;
        letter-spacing: 0;
    }
    /*.hamburger.animate{
        position: absolute;
        top: 0;
        left: 0;
    }*/
    .bar,
    .bar:after,
    .bar:before {
        height: 4px;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .bar {
        transform: translateY(25px);
        background: #3c62ad;
        transition: all 0ms 300ms;
        position: absolute;
        top: -9px;
        width: 33px;
        right: 0;
    }
    .bar.animate {
        background: rgba(255, 255, 255, 0);
    }
    .bar:before {
        content: "";
        position: absolute;
        right: 0;
        top: -13px;
        background: #3c62ad;
        width: 45px;
        transition: bottom 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .bar:after {
        content: "";
        position: absolute;
        right: 0;
        top: 13px;
        width: 45px;
        background: #3c62ad;
        transition: top 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .bar.animate:after {
        background: #3c62ad;
        top: -2px;
        transform: rotate(45deg);
        transition: top 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 40px;
        height: 4px;
    }
    .bar.animate:before {
        background: #3c62ad;
        top: -3px;
        transform: rotate(-45deg);
        transition: bottom 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 40px;
        height: 4px;
    }
    .show_menu {
        left: 0;
        opacity:1;
        z-index: 999;
    }
    .hide_menu {
        opacity:0;
        left: -400px;
    }
    .menu_mobile{
        display: inline-flex;
        align-items: center;
        justify-content: end;
        width: 100%;
    }
    .langue_and_search{
        display: inline-block;
        margin-bottom: 0;
        margin-right: 20px !important;
        text-align: right;
    }
    .menu_langue, .menu_top li:last-child{
        display: none !important;
    }
    .langue_and_search .menu_langue, .langue_and_search li:last-child{
        display: inline-block !important;
    }
    .langue_and_search li button {
        padding: 15px 20px;
    }
    .menu_top{
        margin-right: 50px;
    }
}
@media (max-width: 767px){
    .menu_langue{
        padding: 0;
    }
}
@media (max-width: 575px){
    .menu{
        width: 100%;
    }
    .menu_langue label{
        display: none;
    }
    .langue_and_search li button {
        padding: 10px 15px;
    }
    .bar.animate:before, .bar.animate:after{
        background: #ed1c24;
    }
    .hamburger.animate samp, .hamburger.animate .ferme{
        color: #ed1c24;
    }
    /*.langue_and_search{
        width: 100%;
        text-align: right;
    }*/
}


/*------------    footer    -----------*/

.footer {
    background: #2f3c55;
    padding: 80px 0;
}

.logo_footer {
    text-align: center;
}

.menu_footer {
    margin: 60px 0;
}

.menu_footer ul,
.footer_bottom ul {
    text-align: center;
}

.menu_footer ul li,
.footer_bottom ul li {
    display: inline-block;
    margin-left: 60px;
    margin-bottom: 15px;
}

.menu_footer ul li:first-child,
.footer_bottom ul li:first-child {
    margin-left: 0;
}

.menu_footer ul li a {
    font-family: 'MarkMedium';
    font-size: 18px;
    color: #fff;
}

.footer_bottom ul li {
    font-family: 'MarkPro';
    font-size: 15px;
    color: #fff;
    margin-left: 80px;
}

.footer_bottom ul li a:first-child {
    margin-left: 20px;
}

.footer_bottom ul li a {
    margin-left: 10px;
}
.sub_footer label a {
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    display: inline-block;
}
.sub_footer label a:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}
@media (max-width: 767px) {
    .menu_footer ul li {
        width: 49%;
        margin-left: 0;
    }
    .footer_bottom ul li {
        margin-left: 0;
        display: block;
    }
}


/*-----------  Home Page ----------*/

.switcher_home {
    position: relative;
}
.switcher_home video {
    width: 100%;
    z-index: -1;
    position: relative;
}
.titre_accueil {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgb(0 0 0 / 30%);
    text-align: -webkit-left;
}
.titre_accueil h1 {
    font-family: 'MarkBold';
    font-size: 4vmax;
    color: #fff;
    text-align: center;
}
.titre_accueil h1 span{
    display: block;
}

.content_produit_home {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 30%) 100%);
    pointer-events: none;
}
.content_produit_home h2{
    margin-top: 20px;
}
.content_produit_home h2 a {
    font-family: 'MarkBold';
    font-size: 30px;
    color: #fff;
}
.produit_home_items {
    margin-top: -75px;
    margin-bottom: 50px;
}
@media(min-width: 768px) and (max-width: 991px) {
    .content_produit_home h2 a {
        font-size: 20px;
    }
    .content_produit_home img {
        width: 55px;
    }
}
@media(max-width: 767px) {
    .item_produit_home {
        margin-bottom: 20px;
    }
    .produit_home_items {
        margin-top: 0px;
        margin-bottom: 50px;
    }
}
@media(max-width: 575px) {
    .content_produit_home h2 a {
        font-size: 20px;
    }
    .item_produit_home {
        margin-bottom: 20px;
    }
}


/* A propos Home */

.propos_home, .img_propos_home {
    position: relative;
}
.content_propos_home {
    padding-left: 35px;
}
.content_propos_home h3 {
    font-family: 'MarkLight';
    font-size: 40px;
    color: #385eab;
    margin-top: 10px;
}
.content_propos_home p{
    font-family: 'MarkLight';
    font-size: 18px;
    color: #626262;
    margin: 40px 0;
    line-height: 35px;
}
.content_propos_home a{
    font-family: 'MarkMedium';
    font-size: 18px;
    color: #ed1c24;
    position: relative;
}
.content_propos_home a:after{
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    background: url('../images/right_propos_home.png') no-repeat;
    height: 18px;
    width: 36px;
}
.logo_coge_absolu {
    position: absolute;
    left: 12px;
    top: 0;
    width: 160px;
}
/*.logo_coge_absolu {
    position: absolute;
    left: 20px;
    top: -185px;
    z-index: -1;
}*/
@media (min-width: 992px) and (max-width: 1400px) {
    /*.logo_coge_absolu {
        width: 260px;
    }*/
    .content_propos_home h3{
        font-size: 30px;
    }
    .content_propos_home p{
        line-height: 30px;
        margin: 30px 0;
    }
}
/*@media (min-width: 992px) and (max-width: 1199px){
    .content_propos_home h3{
        font-size: 30px;
    }
    .content_propos_home p{
        line-height: 30px;
        margin: 30px 0;
    }
}*/
@media(max-width: 991px) {
    .propos_home .row{
        flex-direction: column-reverse;
    }
    .content_propos_home {
        padding-left: 0;
        margin-bottom: 40px;
    }
}
@media(max-width: 767px) {
    .content_propos_home h3{
        font-size: 28px;
    }
    .logo_coge_absolu{
        width: 100px;
    }
}


/*  produit promotion nouveauté */

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    font-family: 'MarkMedium';
    color: #385eab;
    background-color: transparent;
    border-color: transparent;
}

.nav-link {
    font-family: 'MarkExtraLight';
    font-size: 40px;
    color: #626262;
    padding: 0.5rem 3rem 0.5rem 0;
}

.custom_tabs li:first-child::after {
    content: '|';
    position: absolute;
    right: 18px;
    top: 6px;
    font-size: 40px;
    color: #dbdbdb;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #385eab;
}

.custom_tabs li:last-child a {
    font-family: 'MarkBold';
    font-size: 17px;
    color: #ed1c24;
    padding: 16px 20px;
    border: #ed1c24 1px solid;
}

.custom_tabs li:last-child {
    align-self: center;
    margin-left: auto;
}
.item_produit {
    border: 2px solid #bdbdbd;
    padding: 15px;
    text-align: center;
    height: 400px;
    cursor: pointer;
}
.item_produit li {
    padding-bottom: 20px;
}
.item_produit .img_produit{
    position: relative;
    margin-bottom: 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item_produit .img_produit img{
    height: 150px;
}
.item_produit .img_marque_produit{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item_produit .img_marque_produit img{
    height: 45px;
}
.item_produit h3{
    line-height: 0;
    margin-top: 20px;
}
.item_produit h3 a {
    font-family: 'MarkMedium';
    font-size: 13px;
    color: #ed1c24;
    line-height: 1;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
.item_produit h4 {
    font-family: 'MarkMedium';
    font-size: 24px;
    color: #464646;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
/*.item_produit img {
    display: inline !important;
    width: auto !important;
}*/
.content_marque_produits .item_produit{
    margin-bottom: 30px;
}
.promotion_slider .owl-nav {
    position: absolute;
    top: -30px;
    right: 0;
    background-color: #ed1c24;
}
.promotion_slider .owl-prev img {
    padding: 20px !important;
}
.promotion_slider .owl-next img {
    padding: 20px !important;
}
.content_list_produits .item_produit{
    margin-bottom: 30px;
}
@media(max-width: 767px) {
    .custom_tabs li:last-child {
        align-self: center;
        margin-left: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .custom_tabs li:last-child a {
        font-size: 15px;
        padding: 14px 18px;
    }
    .nav-link {
        font-size: 35px;
    }
    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        font-size: 35px;
    }
    .custom_tabs li:first-child::after {
        font-size: 30px;
    }
}

@media(max-width: 489px) {
    .nav-link {
        font-size: 25px;
        padding: 0.5rem 1.2rem 0.5rem 0;
    }
    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        font-size: 25px;
    }
    .custom_tabs li:first-child::after {
        font-size: 20px;
        top: 10px;
        right: 7px;
    }
    .custom_tabs li:nth-child(2) button {
        padding-right: 0;
    }
}


/* Nos marque home */

.nos_partenaire_home {
    margin-bottom: 60px;
}
.titre_partenaire_home{
    text-align: center;
    margin-bottom: 60px;
}
.titre_partenaire_home h2{
    font-family: 'MarkBold';
    font-size: 85px;
    color: #e3e2e2;
    line-height: 1
}
.titre_partenaire_home p{
    font-family: 'MarkMedium';
    font-size: 24px;
    color: #546585;
    line-height: 1;
}
.partenaire {
    padding-top: 12vmax;
}
.titre_header_partenaire h2 {
    font-family: 'MarkLight';
    color: #2a86d8;
    font-size: 50px;
}
.para_partenaire_qsn p {
    font-family: 'MarkPro';
    color: #272727;
    font-size: 16px;
    padding-top: 50px;
}
.partenaire_home.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.partenaire_home .owl-nav button{
    position: absolute;
    top: 50%;
    margin-top: -12px;
}
.partenaire_home .owl-prev {
    left: 0;
}
.partenaire_home .owl-next {
    right: 0;
}
#references_home .item_partenaire_home img{
    height: 100px;
}
.voir_plus_partenaires{
    text-align: right;
    margin-top: 30px;
}
.voir_plus_partenaires a{
    font-family: 'MarkBold';
    font-size: 17px;
    color: #fff;
    background: #ed1c24;
    padding: 15px 20px;
    border: #ed1c24 1px solid;
    border-radius: 3px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
}
.voir_plus_partenaires a:hover{
    color: #ed1c24;
    background: transparent;
}
@media(max-width: 767px) {
    .titre_partenaire_home h2{
        font-size: 50px;
        line-height: 60px;
    }
    .titre_partenaire_home p{
        font-size: 20px;
    }
}
@media(max-width: 575px) {
    .titre_partenaire_home h2{
        font-size: 35px;
    }
    .titre_partenaire_home p{
        font-size: 18px;
    }
    .nos_partenaire_home{
        margin-bottom: 50px;
    }
    .voir_plus_partenaires{
        text-align: center;
    }
    .voir_plus_partenaires a{
        font-size: 15px;
    }
}


/* mega Home */

.content_mega_home p{
    font-family: 'MarkPro';
    font-size: 25px;
    color: #575757;
    padding-bottom: 40px;
    line-height: 45px;
}
.content_mega_home span{
    font-family: 'MarkBold';
}
.content_mega_home a{
    font-family: 'MarkPro';
    font-size: 25px;
    color: #2bd1f4;
    position: relative;
}
.content_mega_home a:after{
    content: '';
    position: absolute;
    top: 2px;
    right: -60px;
    background: url('../images/next_mega_home.png') no-repeat;
    height: 21px;
    width: 41px;
}
@media (max-width: 575px){
    .content_mega_home p{
        font-size: 18px;
        line-height: 35px;
    }
    .content_mega_home a{
        font-size: 18px;
    }
}


/* Realisation Home */

.header_realisation_home ul {
    display: flex;
    align-items: center;
}

.header_realisation_home li {
    font-family: 'MarkMedium';
    font-size: 48px;
    color: #ed1c24;
}
.header_realisation_home li:last-child {
    font-family: 'MarkPro';
    font-size: 21px;
    color: #626262;
    padding-left: 30px;
}
.item_nos_produit_home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 50%) 100%);
    pointer-events: none;
}
.item_nos_produit_home li:last-child a {
    font-family: 'MarkBold';
    color: #ffffff;
    font-size: 20px;
}
.item_nos_produit_home li:first-child a {
    font-family: 'MarkPro';
    color: #ffffff;
    font-size: 18px;
}
.item_nos_produit_home ul {
    position: absolute;
    bottom: 5%;
    left: 5%;
}
.realisation_home .owl-nav {
    position: absolute;
    top: -90px;
    right: 0;
}

.realisation_home .owl-prev {
    margin-right: 20px;
}
.realisation_home.owl-carousel .owl-item img{
    width: 100%;
}
@media(max-width: 767px) {
    .header_realisation_home ul {
        align-items: flex-start;
        flex-direction: column;
    }
    .header_realisation_home li:last-child {
        padding-left: 0px;
    }
    .header_realisation_home li{
        font-size: 30px;
    }
}

/* Evenement Home & Page */

.evenment_home {
    background-color: #f0f5ff;
    padding: 80px 0;
}

.header_evenement_home ul {
    display: flex;
}

.header_evenement_home li:first-child {
    font-family: 'MarkMedium';
    font-size: 48px;
    color: #385eab;
}

.header_evenement_home li:last-child a {
    font-family: 'MarkBold';
    font-size: 17px;
    color: #ed1c24;
    padding: 16px 20px;
    border: #ed1c24 1px solid;
}

.header_evenement_home li:last-child {
    align-self: center;
    margin-left: auto;
}

.item_evenement {
    background-color: #fff;
    box-shadow: 2px 19px 41px #dbe5fb;
    z-index: 1;
    margin-top: 100px;
}
.img_event a{
    display: block;
    height: 300px;
    width: 100%;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -ms-background-size: cover !important;
}
.item_evenement h5{
    height: 120px;
    padding: 30px 15px;
    display: flex;
    align-items: center;
}
.item_evenement h5 a{
    font-family: 'MarkMedium';
    font-size: 24px;
    color: #464646;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
.date_event_home {
    background-color: #ed1c24;
    padding: 9px 20px;
    border-radius: 0 25px 0 0;
    position: absolute;
    top: -65px;
    right: -14px;
}
.date_event_home li {
    font-family: 'MarkBold';
    font-size: 30px;
    color: #fff;
    text-align: center;
    line-height: 1;
}
.date_event_home li:first-child {
    font-family: 'MarkBold';
    font-size: 60px;
    color: #fff;
}
.date_event_home li:last-child {
    font-family: 'MarkBold';
    font-size: 14px;
    color: #fff;
}
@media(max-width: 1199px) {
    .item_evenement h5 a{
        font-size: 19px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .date_event_home{
        top: -45px;
    }
    .date_event_home li:first-child {
        font-size: 45px;
    }
    .date_event_home li {
        font-size: 20px;
    }
    .date_event_home {
        padding: 9px 16px;
    }
}
@media(max-width: 767px) {
    .header_evenement_home ul {
        flex-direction: column;
    }
    .header_evenement_home li:last-child {
        align-self: center;
        margin-left: initial;
        margin-top: 20px;
        margin-bottom: 50px;
    }
    .header_evenement_home li:last-child a {
        font-size: 14px;
        padding: 10px 6px;
    }
    .header_evenement_home li:first-child {
        font-size: 35px;
        align-self: center;
    }
    .item_evenement h5{
        height: auto;
    }
    .item_evenement h5 a{
        display: block;
    }
}
@media(max-width: 575px) {
    .date_event_home{
        top: -45px;
        right: -10px;
    }
    .date_event_home li:first-child {
        font-size: 45px;
    }
    .date_event_home li {
        font-size: 20px;
    }
    .date_event_home {
        padding: 9px 16px;
    }
    .item_evenement{
        margin-top: 60px;
    }
    .item_evenement li:last-child {
        font-size: 18px;
    }
}

/*  Evenement selected  */

.evenement_selected h2{
    font-family: 'MarkBold';
    font-size: 35px;
    color: #ed1c24;
}
.evenement_selected label{
    font-family: 'MarkMedium';
    font-size: 18px;
    color: #385eab;
    display: block;
    margin: 10px 0 30px;
}
.description_event p{
    font-family: 'MarkPro';
    font-size: 18px;
    line-height: 35px;
    margin-top: 30px;
}
@media (max-width: 575px){
    .evenement_selected h2{
        font-size: 24px;
    }
    .description_event p{
        text-align: justify;
    }
}




/* references Home */


/* rejoindre Home */

.rejoindre {
    background: url('../images/rejoindre_background.jpg') no-repeat;
    padding: 195px 0;
    background-size: cover;
}
.content_rejoindre_home p {
    font-family: 'MarkMedium';
    font-size: 45px;
    color: #ffffff;
    text-align: center;
}
.content_rejoindre_home a {
    font-family: 'MarkMedium';
    font-size: 18px;
    color: #ffffff;
    background-color: #ed1c24;
    padding: 16px 20px;
    border-radius: 30px;
    margin-left: 40px;
}
@media(max-width: 1199px) {
    .content_rejoindre_home {
        flex-direction: column !important;
    }
    .content_rejoindre_home a {
        margin-left: 0;
        margin-top: 20px;
    }
}

/*  Switcher Pages  */

.switcher{
    background: url(../images/switcher_pages.jpg) no-repeat;
    background-size: cover;
    height: 150px;
    width: 100%;
    align-items: center;
    display: flex;
}
.titre_pages h1{
    font-family: 'MarkMedium';
    font-size: 55px;
    color: #fff;
    text-align: center;
    position: relative;
}
.titre_pages h1:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    margin: auto;
    background: #ed1c24;
    width: 150px;
    height: 4px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
@media (max-width: 767px){
    .titre_pages h1{
        font-size: 35px;
    }
}
@media (max-width: 575px){
    .titre_pages h1{
        font-size: 25px;
    }
    .titre_pages h1:after{
        width: 100px;
        bottom: -15px;
    }
}

/*  Menu Pages  */

.menu_pages ul{
    border-bottom: 1px solid #a5d3fc;
    padding-bottom: 30px;
    margin-bottom: 70px;
    text-align: center;
}
.menu_pages ul li{
    display: inline-block;
    margin-right: 100px;
}
.menu_pages ul li:last-child{
    margin-right: 0;
}
.menu_pages ul li a{
    font-family: 'MarkLight';
    font-size: 22px;
    color: #2f3c55;
    padding-bottom: 30px;
}
.menu_pages ul li a:hover{
    font-family: 'MarkBold';
}
.menu_pages ul li.selected a{
    font-family: 'MarkBold';
    font-size: 24px;
    border-bottom: 6px solid #ed1c24;
    pointer-events: none;
}
@media (max-width: 767px){
    .menu_pages ul{
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 50px;
    }
    .menu_pages ul li{
        display: block;
        margin-right: 0;
        margin-bottom: 45px;
    }
    .menu_pages ul li a{
        padding-bottom: 15px;
    }
}


/*  Page Apropos  */

.content_page{
    padding: 80px 0 100px;
}
.img_apropos{
    margin-left: 30px;
    float: right;
}
.text_apropos h2{
    font-family: 'MarkLight';
    font-size: 48px;
    color: #ed1c24;
    line-height: 1;
}
.text_apropos h3{
    font-family: 'MarkBold';
    font-size: 36px;
    color: #385eab;
    margin: 20px 0 30px;
    line-height: 1;
}
.text_apropos p{
    font-family: 'MarkLight';
    font-size: 18px;
    color: #626262;
    margin-bottom: 50px;
    line-height: 35px;
    text-align: justify;
}
@media (max-width: 1399px){
    .img_apropos{
        max-width: 530px;
    }
}
@media (max-width: 1199px){
    .text_apropos h2{
        font-size: 35px;
    }
    .text_apropos h3{
        font-size: 25px;
        margin: 15px 0 25px;
    }
}
@media (max-width: 991px){
    .img_apropos{
        max-width: 100%;
        float: unset;
        margin-left: 0;
        margin-bottom: 30px;
        text-align: center;
    }
}
@media (max-width: 991px){
    .text_apropos p {
        margin-bottom: 30px;
        line-height: 32px;
    }
}


/*  Page partenaires  */

.item_partenaire{
    margin-bottom: 30px;
}
.img_partenaire{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 0 30px;
    border: 1px solid #f5f5f5;
}
.img_partenaire img{
    max-height: 150px;
}
.item_partenaire h3{
    line-height: 0;
    text-align: center;
    margin-top: 15px;
}
.item_partenaire h3 a{
    font-family: 'MarkLight';
    font-size: 20px;
    color: #385eab;
    line-height: 1
}
@media (max-width: 575px){
    .item_partenaire h3 a{
        font-size: 16px;
    }
    .img_partenaire{
        height: 150px;
    }
    .img_partenaire img{
        max-height: 110px;
    }
}

/*  Carrières  */

.content_offres .container .row{
    align-items: center;
    border-bottom: 1px solid #a5d3fc;
    padding: 70px 0;
}
.content_offres .container .row:first-child{
    padding-top: 40px;
}
.content_offres .container .row:last-child{
    border-bottom: 0;
}
.text_offres h2{
    font-family: 'MarkMedium';
    font-size: 24px;
    color: #c94848;
    margin-bottom: 45px;
}
.text_offres p{
    font-family: 'MarkLight';
    font-size: 20px;
    color: #4b4b4b;
}
.text_offres ul li{
    font-family: 'MarkLight';
    font-size: 18px;
    color: #4b4b4b;
    padding-top: 15px;
}
.text_offres ul{
    padding-left: 20px;
}
.link_postuler{
    text-align: center;
}
.link_postuler a{
    font-family: 'MarkMedium';
    font-size: 17px;
    color: #fff;
    padding: 15px 45px;
    background: #ed1c24;
    border-radius: 30px;
    display: inline-block;
}
.content_candidature p{
    margin-bottom: 80px;
}
.content_candidature_offre .text_offres{
    margin-bottom: 80px;
}
@media (max-width: 767px){
    .link_postuler{
        text-align: unset;
        margin-top: 35px;
    }
    .content_offres .container .row{
        padding: 40px 0;
    }
    .content_candidature p, .content_candidature_offre .text_offres{
        margin-bottom: 50px;
    }
}

/*  Réalisations  */

.item_realisation{
    margin-bottom: 60px;
}
.item_realisation h2{
    font-family: 'MarkBold';
    font-size: 22px;
    color: #3a4052;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
.item_realisation h3{
    font-family: 'MarkPro';
    font-size: 18px;
    color: #385eab;
    margin: 10px 0 15px;
}
.plus_realisation a{
    font-family: 'MarkMedium';
    font-size: 16px;
    color: #fff;
    position: relative;
    background: #ed1c24;
    padding: 15px 65px 15px 35px;
    display: inline-block;
    border-radius: 30px;
}
.plus_realisation a:after{
    content: '';
    position: absolute;
    top: 20px;
    right: 23px;
    background: url('../images/right_arrow_white.png') no-repeat;
    width: 25px;
    height: 13px;
}
#galerie_slider_thumbnail .sky .galerie_slider_thumbnail img{
    opacity: .5;
}
#galerie_slider_thumbnail .galerie_slider_thumbnail img {
    opacity: 1;
}
.video_source{
    position: relative;
}
.video_source:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: url('../images/play.png') no-repeat;
    width: 70px;
    height: 70px;
    background-size: contain; 
}
@media (max-width: 575px){
    .item_realisation h2{
        display: block;
    }
}

/*  Notre réseaux  */

.content_reseaux .row{
    align-items: center;
}
.titre_reseaux{
    font-family: 'MarkLight';
    font-size: 30px;
    color: #ed1c24;
    line-height: 1;
}
.nom_region{
    font-family: 'MarkBold';
    font-size: 48px;
    color: #385eab;
    margin-bottom: 50px;
    line-height: 1;
}
.item_reseau ul li{
    font-family: 'MarkBook';
    font-size: 18px;
    color: #626262;
    padding-bottom: 40px;
    display: flex;
    max-width: 490px;
}
.item_reseau ul li:last-child{
    padding-bottom: 0;
}
.item_reseau ul li img {
    padding-right: 20px;
    height: fit-content;
}
.titre_reseau_home {
    font-family: 'MarkMedium';
    font-size: 48px;
    color: #ed1c24;
    margin-bottom: 50px;
}
.reseaux_home .item_reseau ul li{
    padding-bottom: 20px;
}
.reseaux_home .nom_region{
    margin-bottom: 30px;
}
.owl-theme .owl-dots .owl-dot span{
    background: #385eab8a;
    width: 12px;
    height: 12px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #385eab;
}
@media (max-width: 1199px){
    .nom_region {
        font-size: 40px;
        margin-bottom: 35px;
    }
    .item_reseau ul li{
        padding-bottom: 25px;
    }
}
@media (max-width: 991px){
    .content_reseaux{
        padding-top: 50px;
    }
    .slider_reseaux{
        margin-bottom: 30px;
    }
}
@media (max-width: 575px){
    .content_reseaux .col-12:last-child{
        padding: 0;
    }
    .titre_reseau_home{
        font-size: 30px;
        margin-bottom: 30px;
    }
    .titre_reseaux{
        font-size: 20px;
    }
    .reseaux_home .nom_region{
        font-size: 24px;
    }
}

/*  Chemin pages  */

.section_breadcrumbs{
    margin-bottom: 30px;
}
.section_breadcrumbs ul li{
    display: inline-block;
}
.section_breadcrumbs ul li a{
    font-family: 'MarkPro';
    font-size: 16px;
    color: #515151;
}
.section_breadcrumbs ul li:last-child a{
    pointer-events: none;
}
.section_breadcrumbs ul li samp{
    font-size: 16px;
    padding: 0 7px;
    color: #515151;
}


/*  Page produits - Categorie */

.content_produits .row{
    justify-content: center;
}
.content_produits .item_produit_home{
    margin-bottom: 30px;
}

/*  Page produits - Famille */

.titre_categorie_selected{
    font-family: 'MarkMedium';
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}
.item_famille{
    margin-bottom: 30px;
}
.text_famille_produit {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}
.cover_famille_produit{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}
.text_famille_produit h3{
    margin-top: 30px;
    line-height: 0;
}
.text_famille_produit h3 a{
    font-family: 'MarkMedium';
    font-size: 24px;
    color: #fff;
    line-height: 1;
}
@media (max-width: 575px){
    .titre_categorie_selected{
        font-size: 26px;
    }
}

/*  Page List produits  */

.content_list_produits .titre_categorie_selected{
    text-align: left;
}
.list_sous_familles li{
    padding: 40px 0;
    border-bottom: 1px solid #dedede;
}
.list_sous_familles li:last-child{
    border-bottom: 0;
}
.list_sous_familles li a{
    font-family: 'MarkPro';
    font-size: 18px;
    color: #395da9;
}
.list_sous_familles li a:hover{
    font-family: 'MarkBold';
}
.list_sous_familles li.selected a{
    font-family: 'MarkBold';
    font-size: 20px;
    pointer-events: none;
}

/*  Produit selected  */

.content_produit_selected .section_breadcrumbs{
    margin-bottom: 50px;
}
.content_produit_selected .row{
    align-items: center;
    margin-bottom: 80px;
}
.img_detaits_produit{
    text-align: center;
}
.text_details_produit h2{
    font-family: 'MarkBold';
    font-size: 30px;
    color: #ed1c24;
    line-height: 1;
    margin: 15px 0 5px;
}
.text_details_produit h3{
    font-family: 'MarkMedium';
    font-size: 15px;
    color: #626262;
}
.description_details_produit p{
    font-family: 'MarkLight';
    font-size: 20px;
    color: #4b4b4b;
    line-height: 35px;
    text-align: justify;
    margin-top: 30px;
}
.description_details_produit ul{
    padding-left: 20px;
}
.description_details_produit ul li{
    font-family: 'MarkLight';
    font-size: 18px;
    color: #4b4b4b;
    margin-top: 15px;
}
.fichier_devis_produit{
    margin-top: 60px;
}
.fichier_devis_produit li{
    display: inline-block;
    margin-right: 20px;
}
.fichier_devis_produit li:last-child{
    margin-right: 0;
}
.fichier_devis_produit li a{
    font-family: 'MarkMedium';
    font-size: 17px;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    display: inline-block;
}
.titre_produits_recommandes{
    font-family: 'MarkBold';
    font-size: 30px;
    color: #ed1c24;
    margin-bottom: 50px;
}
.color_blue{
    background: #385eab;
}
.color_red{
    background: #ed1c24;
}
@media (max-width: 767px){
    .text_details_produit h2, .titre_produits_recommandes{
        font-size: 24px;
    }
    .fichier_devis_produit li a{
        font-size: 16px;
        padding: 15px 30px;
        margin-bottom: 20px;
    }
}

/*  Page contact  */

.titre_page_entire{
    font-family: 'MarkMedium';
    font-size: 48px;
    color: #ed1c24;
    margin-bottom: 60px;
}
.text_input{
    margin-bottom: 70px;
}
.text_input label{
    font-family: 'MarkPro';
    font-size: 17px;
    color: #3d3d3d;
    margin-bottom: 20px;
}
.text_input input, .text_input select, .text_input textarea{
    width: 90%;
    height: 45px;
    font-family: 'MarkPro';
    font-size: 17px;
    color: #3d3d3d;
    outline: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
.text_input textarea{
    width: 100%;
    height: 100px;
    resize: none;
}
.form_submit{
    font-family: 'MarkMedium';
    font-size: 24px;
    color: #fff;
    background: #ed1c24;
    border-radius: 30px;
    border: 0;
    width: 250px;
    height: 50px;

}
samp.error{
    font-family: 'MarkPro';
    font-size: 14px;
    color: #ed1c24;
    margin-top: 10px;
    display: block;
}
.footer_contact.container-full .row{
    margin-left: 0;
    margin-right: 0;
} 
.footer_contact.container-full .row .col-md-6{
    padding-left: 0;
    padding-right: 0;
} 
.map {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    margin-bottom: -70px;
}
.map iframe {
    height: 600px;
    width: 100%;
    position: relative;
    top: -60px;
    border: none;
}
.info_contact{
    background: #385eab;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}
.info_contact ul{
    max-width: 500px;
}
.info_contact ul li{
    font-family: 'MarkLight';
    font-size: 20px;
    color: #fff;
    display: flex;
    padding-bottom: 50px;
}
.info_contact ul li:last-child{
    padding-bottom: 0;
}
.info_contact ul li samp{
    width: 30px;
    margin-right: 15px;
}
.info_contact ul li span{
    display: block;
}
.info_contact ul li a{
    margin-right: 30px;
}
.close_contact{
    background: transparent;
    border: 0;
    position: absolute;
    right: 20px;
}
.close_contact span{
    font-size: 30px;
    line-height: 0.7;
}
@media (max-width: 991px){
    .text_input input, .text_input select{
        width: 100%;
    }
}
@media (max-width: 767px){
    .titre_page_entire{
        font-size: 24px;
        margin-bottom: 40px;
    }
    .info_contact{
        padding: 30px 15px;
    }
    .map iframe{
        height: 450px;
    }
}



.g-recaptcha{
    margin-bottom: 30px;
}













