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

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

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

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

@font-face {
    font-family: 'GarnetCapitalsThin';
    src: url('../css/fonts/GarnetCapitalsThin-Regular.woff2') format('woff2'),
        url('../css/fonts/GarnetCapitalsThin-Regular.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GarnetCapitalsBold';
    src: url('../css/fonts/GarnetCapitals-Bold.woff2') format('woff2'),
        url('../css/fonts/GarnetCapitals-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZonaBold';
    src: url('../css/fonts/ZonaPro-Bold.woff2') format('woff2'),
        url('../css/fonts/ZonaPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ZonaThin';
    src: url('../css/fonts/ZonaPro-Thin.woff2') format('woff2'),
        url('../css/fonts/ZonaPro-Thin.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


body {
    color: #515151;
    font-family: 'MarkPro';
    font-size: 16px;
    padding-top: 160px;
}

* {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: 'MarkPro';
    font-size: 16px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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


/*  Header  */

.header {
    padding: 5px 0px 40px 0;
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 9999;
    box-shadow: 2px 4px 9px 1px #000000a6;
}

.header .row {
    align-items: center;
}

.logo {
    display: inline-block;
    padding-left: 45px;
}

.menu::-webkit-scrollbar {
    width: 10px;
}

.menu::-webkit-scrollbar-track {
    border-radius: 10px;
}

.menu::-webkit-scrollbar-thumb {
    background: #e10006;
    border-radius: 10px;
}

.menu::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.menu {
    position: fixed;
    top: 0;
    width: 400px;
    height: 100vh;
    display: flex;
    justify-content: center;
    background: #9a0103;
    transition: .7s ease;
    -webkit-transition: .7s ease;
    -moz-transition: opacity .7s ease;
    padding-top: 100px;
    overflow-y: auto;
    text-align: unset;
}

.menu_ul {
    padding-bottom: 50px;
}

.menu_ul li a {
    font-family: 'MarkBold';
    font-size: 18px;
    color: #fff;
}

.menu_ul li {
    padding-top: 30px;
}

.sub_menu_ul {
    padding-left: 40px;
}

.sub_menu_ul li {
    padding-top: 10px;
}

.sub_menu_ul li a {
    font-family: 'MarkPro';
    font-size: 16px;
}

.hamburger_logo {
    display: inline-flex;
}

.hamburger {
    z-index: 9;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.hamburger button {
    background: transparent;
    border: 0;
    outline: none;
    position: absolute;
    top: 0;
    width: 45px;
    height: 30px;
}

.hamburger samp,
.hamburger .ferme {
    font-family: 'MarkPro';
    font-size: 9px;
    color: #e10006;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.hamburger .ferme {
    display: none;
}

.hamburger.animate samp {
    display: none;
}

.hamburger.animate .ferme {
    display: block;
    letter-spacing: 0;
    color: #fff;
}

.hamburger.animate {
    position: absolute;
    top: 45px;
    left: 30px;
}

.bar,
.bar:after,
.bar:before {
    height: 3px;
    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: #e10006;
    transition: all 0ms 300ms;
    position: absolute;
    top: -10px;
    width: 40px;
    left: 0;
}

.bar.animate {
    background: rgba(255, 255, 255, 0);
}

.bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
    background: #e10006;
    width: 40px;
    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;
    left: 0;
    top: 9px;
    width: 30px;
    background: #e10006;
    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: #fff;
    top: -8px;
    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: 35px;
    height: 3px;
}

.bar.animate:before {
    background: #fff;
    bottom: 0;
    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: 35px;
    height: 3px;
}

.show_menu {
    left: 0;
    opacity: 1;
    z-index: 999;
}

.hide_menu {
    opacity: 0;
    left: -400px;
}

.nav_header {
    text-align: center;
}

.nav_header li {
    display: inline-block;
    margin-right: 30px;
}

.nav_header li:last-child {
    margin-right: 0;
}

.nav_header li a {
    font-family: 'MarkBold';
    font-size: 16px;
    color: #3e3e3e;
}

.block_search_contact {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
}

.search {
    margin-right: 25px;
}

.search button {
    background: transparent;
    outline: none;
    border: 0;
}

.form_search {
    position: relative;
}

.form_search input {
    width: 100%;
    height: 50px;
    outline: none;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #d2d2d2;
    font-family: 'MarkPro';
    font-size: 18px;
    color: #000;
    padding-right: 15px;
}

.form_search button {
    position: absolute;
    right: 10px;
    top: 9px;
    background: transparent;
    outline: none;
    border: 0;
}

@media (min-width: 992px) and (max-width: 1399px) {
    .nav_header li {
        margin-right: 15px;
    }
}

/*@media (min-width: 768px) and (max-width: 991px){
    .nav_header li{
        margin-right: 15px;
    }
    .nav_header li a{
        font-size: 13px;
    }
    .logo {
        padding-left: 20px;
    }
}*/
@media (max-width: 991px) {
    .header .container {
        position: relative;
    }

    .header .col-lg-7 {
        display: none;
    }

    .hamburger_logo {
        display: block;
    }

    .hamburger {
        position: absolute;
    }

    .logo {
        display: block;
        padding-left: 0;
        text-align: center;
        padding-right: 40px;
    }

    .block_search_contact {
        position: absolute;
        right: 15px;
        top: 12px;
        width: auto;
    }
}

@media (max-width: 575px) {

    /*.search {
        margin-right: 30px;
    }
    .logo {
        display: inline-block;
        padding-left: 10px;
        width: 160px;
    }*/
    .text_decryptage.text_anchor_decryptage h3 a {
        font-size: 23px;
    }

    .menu {
        width: 100%;
    }

    .search {
        margin-right: 20px;
    }
}

/*  A la une  */

/*.block_la_une{
    margin-top: 30px;
}*/
.row_block_la_une .row {
    margin-top: 45px;
}

.titre_block {
    font-family: 'MarkBold';
    font-size: 29px;
    color: #e20613;
    position: relative;
    margin: 0;
}

.text_article_la_une {
    margin-top: 20px;
}

.img_article_la_une {
    width: 100%;
    height: 140px;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -ms-background-size: cover !important;
}

.img_article_la_une a {
    display: block;
    width: 100%;
    height: 100%;
}

.text_article_la_une label {
    font-family: 'MarkPro';
    font-size: 13px;
    color: #e20613;
}

.text_article_la_une h3 {
    line-height: 0;
    margin: 15px 0 40px;
}

.text_article_la_une h3 a {
    font-family: 'MarkBold';
    font-size: 17px;
    color: #373737;
    line-height: 20px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}

.preview_text_article_la_une {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}

.preview_text_article_la_une p {
    font-family: 'MarkPro';
    font-size: 16px;
    color: #383838;
    margin: 0;
    line-height: 30px;
}

.text_article_la_une_anchor {
    margin-top: 5px;
}

.text_article_la_une_anchor label {
    font-size: 17px;
}

.text_article_la_une_anchor h3 a {
    font-size: 25px;
    line-height: 30px;
}

.titre_actus_continu {
    font-family: 'GarnetCapitalsThin';
    font-size: 21px;
    color: #e20613;
    margin-bottom: 15px;
}

.item_actus_continu {
    padding: 15px 0;
    border-bottom: 1px solid #d3d3d3;
}

.block_actus_continu .item_actus_continu:last-child {
    border-bottom: 0;
}

.item_actus_continu label {
    font-family: 'MarkBold';
    font-size: 14px;
    color: #e20613;
    margin: 0;
}

.item_actus_continu h5 {
    margin-top: 5px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}

.item_actus_continu h5 a {
    font-family: 'MarkBold';
    font-size: 17px;
    color: #4c4c4c;
}

.slider_actus.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
    position: absolute;
    top: -35px;
    left: 230px;
    line-height: 1;
}

.slider_actus.owl-theme .owl-dots .owl-dot span {
    background: #f02c3f;
    width: 8px;
    height: 8px;
    margin: 5px 5px;
}

.slider_actus.owl-theme .owl-dots .owl-dot.active span,
.slider_actus.owl-theme .owl-dots .owl-dot:hover span {
    background: #f02c3f;
    width: 10px;
    height: 10px;
}

.link_voir_tous {
    text-align: center;
}

.link_voir_tous a {
    font-family: 'GarnetCapitalsThin';
    font-size: 14px;
    color: #1e79c2;
    border-bottom: 1px solid #1e79c2;
}

@media (min-width: 992px) and (max-width: 1399px) {
    .text_article_la_une_anchor h3 {
        margin: 15px 0 25px;
    }

    .text_article_la_une_anchor h3 a {
        font-size: 22px;
        line-height: 25px;
    }

    .text_article_la_une p {
        -webkit-line-clamp: 3;
        -moz-line-clamp: 3;
    }
}

@media (max-width: 991px) {
    .text_article_la_une h3 a {
        display: block;
    }

    .titre_actus_continu {
        margin-top: 30px;
    }

    .item_actus_continu h5 {
        display: block;
    }

    .text_article_la_une_anchor {
        margin-top: 15px;
    }
}

.mobilerelation {
    display: none;
}

@media (max-width: 767px) {
    .header {
        padding: 20px 0 10px 0px;
    }

    .nav_header {
        display: none;
    }

    .mobilerelation {
        display: block;
    }

    .mobilerelation {
        text-align: center;
        padding-top: 10px;
        width: 100%;
    }

    .mobilerelation a {
        display: inline-block;
        margin: 4px;
        color: #ed312e;
        text-decoration: underline;
        line-height: 33px;
    }

    .text_article_la_une_abs h3 {
        margin-bottom: 30px;
    }

    .text_article_la_une_abs h3,
    .text_article_la_une_abs label {
        font-size: 25px;
    }

    .text_article_la_une_abs h3:after {
        width: 100px;
        bottom: -16px;
    }

    .text_article_la_une p {
        display: block;
    }

    .img_article_la_une {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .text_article_la_une_abs {
        padding-left: 20px;
        width: 20px;
    }

    .text_article_la_une_abs h3 {
        margin-bottom: 20px;
    }

    .text_article_la_une_abs h3,
    .text_article_la_une_abs label {
        font-size: 20px;
    }

    .text_article_la_une_abs h3:after {
        width: 80px;
        bottom: -12px;
    }

    .text_article_la_une h4 a,
    .text_article_la_une h2 a {
        font-size: 24px;
    }

    .text_article_la_une p {
        text-align: justify;
    }

    .titre_actus_continu {
        margin-top: 40px;
    }
}

/*  La Quotidienne TV  */

.titre_quotidienne_tv {
    border-bottom: 1px solid #bdbdbd;
    position: relative;
    margin-bottom: 60px;
}

.titre_quotidienne_tv h2 {
    display: inline-block;
    margin: 0;
    padding-right: 20px;
    position: relative;
    top: 20px;
    background: #fff;
}

.titre_quotidienne_tv h2 a {
    font-family: 'MarkPro';
    font-size: 30px;
    color: #e20613;
}

.titre_quotidienne_tv img {
    padding-right: 30px;
}

.img_quotidienne_tv {
    width: 100%;
    height: 235px;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -ms-background-size: cover !important;
}

.item_quotidienne_tv .img_video {
    position: relative;
    display: block;
    height: 100%;
}

.item_quotidienne_tv .img_video:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: url('../images/play.png') no-repeat;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.item_quotidienne_tv label {
    font-family: 'MarkBold';
    font-size: 12px;
    color: #e73641;
    text-transform: uppercase;
    margin: 20px 0;
    display: block;
}

.item_quotidienne_tv h3 {
    line-height: 0;
}

.item_quotidienne_tv h3 a {
    font-family: 'MarkBold';
    font-size: 18px;
    color: #474747;
    margin: 0;
    line-height: 1.2;
}

.slider_quotidienne_tv.owl-theme .owl-nav [class*=owl-],
.slider_quotidienne_tv.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: transparent;
}

.slider_quotidienne_tv.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: -80px;
    background: #fff;
    padding-left: 10px;
}

@media (max-width: 767px) {
    .titre_quotidienne_tv h2 {
        top: 12px;
    }

    .titre_quotidienne_tv h2 a {
        font-size: 20px;
    }

    .titre_quotidienne_tv img {
        padding-right: 10px;
        width: 40px;
    }
}

@media (max-width: 450px) {
    .slider_quotidienne_tv.owl-theme .owl-nav {
        top: -45px;
        background: transparent;
    }
}

/*  Multi blocks  */

.titre_block a {
    font-family: 'MarkMedium';
    font-size: 11px;
    color: #06a1e2;
    text-transform: uppercase;
    margin-left: 25px;
    border-bottom: 1px solid #06a1e2;
    letter-spacing: 1px;
}

.item_multi_blocks_anchor {
    position: relative;
}

.text_multi_blocks_anchor {
    position: absolute;
    left: 10%;
    bottom: 10%;
    padding-right: 8%;
}

.text_multi_blocks_anchor label {
    font-family: 'MarkPro';
    font-size: 17px;
    color: #fff;
    margin-bottom: 20px;
}

.text_multi_blocks_anchor h3,
.text_multi_blocks h3 {
    line-height: 0;
    margin-bottom: 0;
}

.text_multi_blocks_anchor h3 a,
.text_multi_blocks h3 a {
    font-family: 'MarkBold';
    font-size: 29px;
    color: #fff;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}

.text_multi_blocks label {
    font-family: 'MarkMedium';
    font-size: 14px;
    color: #e20613;
    margin-bottom: 20px;
    margin-top: 20px;
}

.text_multi_blocks h3 a {
    font-size: 16px;
    color: #393939;
}

.item_multi_blocks_right .row {
    padding: 7px 0;
    border-bottom: 1px solid #d2d2d2;
}

.item_multi_blocks_right .row:last-child {
    border-bottom: 0;
}

.item_multi_blocks_right .row .col-lg-4 {
    padding-right: 0px;
    padding-left: 0px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .text_multi_blocks label {
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .item_multi_blocks_right .row .col-lg-4 {
        padding-right: calc(var(--bs-gutter-x)/ 2);
        padding-left: calc(var(--bs-gutter-x)/ 2);
    }
}

@media (max-width: 767px) {
    .text_multi_blocks_anchor label {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .text_multi_blocks_anchor h3 a {
        font-size: 20px;
    }

    .text_multi_blocks_anchor {
        left: 7%;
        padding-right: 4%;
    }
}

@media (max-width: 575px) {
    .item_multi_blocks_right .row {
        flex-direction: column-reverse;
        padding: 0;
        margin-top: 30px;
        border-bottom: 0px;
    }

    .item_multi_blocks_right .text-end {
        text-align: unset !important;
    }
}

/*  Plus d'info  */

.plus_info {
    margin-top: 70px;
}

.plus_info .col-lg-2 {
    position: relative;
}

.titre_plus_info {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 190px;
    transform: translateX(-10%) translateY(0) rotate(-90deg);
    -webkit-transform: translateX(-10%) translateY(0) rotate(-90deg);
    -moz-transform: translateX(-10%) translateY(0) rotate(-90deg);
}

.titre_plus_info h2 a {
    font-family: 'ZonaThin';
    font-size: 45px;
    color: #e20613;
    text-transform: uppercase;
}

.titre_plus_info h2 a span {
    font-family: 'MarkPro';
    display: block;
}

.item_plus_info {
    box-shadow: #efefef 0px 1px 20px 6px;
    border-radius: 7px;
    position: relative;
    cursor: pointer;
}

.item_plus_info img {
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
    width: 100%;
}

.img_plus_info {
    width: 100%;
    height: 200px;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -ms-background-size: cover !important;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.img_plus_info a {
    position: relative;
    display: block;
    height: 100%;
}

.text_plus_info {
    background: #fff;
    padding: 30px;
    min-height: 170px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.text_plus_info span {
    font-family: 'MarkMedium';
    font-size: 14px;
    color: #e20613;
}

.titre_text_plus_info {
    font-family: 'MarkBold';
    font-size: 16px;
    color: #3c3c3c;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    line-height: 23px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .text_plus_info {
        padding: 20px;
        min-height: 150px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .titre_plus_info {
        bottom: 100px;
    }
}

@media (max-width: 991px) {
    .item_plus_info {
        margin-bottom: 30px;
    }

    .titre_plus_info {
        position: unset;
        transform: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        width: 100%;
        margin-bottom: 30px;
    }

    .titre_plus_info h2 span {
        display: unset !important;
    }
}

@media (max-width: 767px) {
    .text_plus_info {
        min-height: unset;
        padding: 20px;
    }

    .titre_text_plus_info {
        display: block;
    }

    .img_plus_info {
        height: 24vmax;
    }
}

@media (max-width: 575px) {
    .titre_plus_info h2 a {
        font-size: 30px;
    }
}

/*   Footer   */

footer {
    background: #bd1824;
}

footer .footer_top {
    background: #ab202af7;
    padding: 12px 0;
}

footer .footer_top .footer_top_title h3 {
    color: #fff;
    font-size: 14px;
    font-family: MarkLight;
    margin: 0;
}

footer .footer_top .footer_top_title h3 b {
    color: #dc2225;
    font-size: 18px;
    font-family: MarkBold;
    text-transform: uppercase;
    display: block;
}

.news_letter_form {
    position: relative;
    width: 90%;
    height: 40px;
}

.news_letter_form input {
    position: absolute;
    width: 90%;
    height: 40px;
    border-radius: 0;
    border: 0px;
    outline: none;
    padding-left: 15px;
}

.news_letter_form .input_text_btn {
    position: absolute;
    width: 50px;
    height: 40px;
    right: 0;
    background: url(../images/input_logo.png) no-repeat no-repeat 14px 8px #c7090b;
    border: 0;
    font-size: 0;
}

.social_media_container .social_media_title h4 {
    color: #fff;
    font-size: 14px;
    font-family: MarkLight;
    line-height: 26px;
    text-transform: uppercase;
    line-height: 1.2;
}

.social_media_container .social_media_title h4 b {
    color: #dc2225;
    font-size: 16px;
    font-family: MarkBold;
    display: block;
}

.social_media_container .social_media {}

.social_media_container .social_media li {
    display: inline-block;
    margin-right: 15px;
}

.social_media_container .social_media li:last-child {
    margin-right: 0;
}

.social_media_container .social_media li a {
    width: 38px;
    height: 38px;
    display: block;
}

.social_media_container .social_media span {
    height: 100%;
    display: block;
    border-radius: 50%;
}

.social_media_container .social_media span.facebook {
    background: url(../images/socials/facebook.png) no-repeat no-repeat 0 0 #0a4ebc;
}

.social_media_container .social_media span.twitter {
    background: url(../images/socials/twitter.png) no-repeat no-repeat 0 0 #43bdef;
}

.social_media_container .social_media span.google {
    background: url(../images/socials/google.png) no-repeat no-repeat 0 -1px #e62b33;
}

.social_media_container .social_media span.youtube {
    background: url(../images/socials/youtube.png) no-repeat no-repeat 0 0 #ea332a;
}

.footer_bottom {
    padding: 30px 0;
}

.footer_bottom ul {
    padding-left: 30px;
}

.footer_bottom ul li {
    position: relative;
}

.footer_bottom ul li:before {
    content: ' ';
    width: 5px;
    height: 5px;
    background: #610001;
    display: block;
    border-radius: 10px;
    position: absolute;
    left: -20px;
    top: 11px;
}

.footer_bottom ul li a {
    font-family: MarkPro;
    font-size: 14px;
    color: #fff;
    line-height: 26px;
}

.logo_footer_container {
    text-align: center;
}

.logo_footer_container h3 {
    font-family: MarkPro;
    font-size: 12px;
    color: #fff;
    margin-top: 20px;
}

.logo_footer_container h3 b {
    font-family: MarkBold;
    font-size: 12px;
    color: #dc2225;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .social_media_container .social_media_title h4 {
        font-size: 12px;
    }

    .social_media_container .social_media li {
        margin-right: 12px;
    }

    .social_media_container .social_media li a {
        width: 30px;
        height: 30px;
    }

    .social_media_container .social_media span {
        background-size: contain !important;
    }
}

@media (max-width: 991px) {

    .news_letter_form,
    .news_letter_form input {
        width: 100%;
    }

    .social_media_title,
    .social_media {
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .news_letter_form {
        margin-top: 15px;
    }

    .footer_bottom ul {
        margin-top: 20px;
    }
}


/*   Page Détails  */

.content_details {
    margin-bottom: 70px;
}

.text_article_la_une h2 {
    line-height: 0;
    margin: 15px 0;
}

.text_article_la_une h2 a {
    font-family: 'MarkBold';
    font-size: 25px;
    color: #373737;
    line-height: 30px;
}

.text_article_details label {
    font-size: 17px;
}

.mini_list li {
    position: relative;
    font-family: 'MarkBold';
    font-size: 17px;
    color: #383838;
    padding-bottom: 30px;
    padding-left: 45px;
}

.mini_list li:last-child {
    padding-bottom: 0;
}

.mini_list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    background: url('../images/next.png') no-repeat;
    width: 11px;
    height: 21px;
}

.titre_article_interesse h2 {
    font-family: 'MarkPro';
    font-size: 31px;
    color: #e20613;
    margin-bottom: 40px;
    margin-top: 60px;
}

.lecture_recommande {
    margin-top: 60px;
}

.lecture_recommande .col-lg-4,
.lecture_recommande .col-lg-8 {
    padding: 0;
}

.img_lecture_recommande {
    background: url('../images/img_lecture_recommande.jpg') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.text_lecture_recommande {
    background: #2c4355;
    padding: 55px 20px 40px 30px;
    position: relative;
}

.text_lecture_recommande h6 {
    font-family: 'MarkBold';
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    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;
}

.text_lecture_recommande p {
    font-family: 'MarkPro';
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    line-height: 28px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}

.lecture_recommande_plus a {
    position: absolute;
    top: -20px;
    left: -40px;
    font-family: 'MarkBold';
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    background: #249eff;
    padding: 15px;
    line-height: 1;
}

.img_lecture_recommande_mobile {
    display: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mini_list li {
        font-size: 15px;
        padding-bottom: 30px;
        padding-left: 20px;
    }

    .mini_list li:before {
        left: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mini_list li {
        width: 49%;
        display: inline-flex;
    }
}

@media (max-width: 991px) {
    .mini_list {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .lecture_recommande .col-lg-4,
    .lecture_recommande .col-lg-8 {
        padding-right: calc(var(--bs-gutter-x)/ 2);
        padding-left: calc(var(--bs-gutter-x)/ 2);
    }

    .img_lecture_recommande {
        background: transparent;
    }

    .img_lecture_recommande_mobile {
        display: block;
        width: 100%;
    }

    .text_lecture_recommande {
        padding: 40px 20px 40px 20px;
    }

    .text_lecture_recommande h6,
    .text_lecture_recommande p {
        display: block;
    }

    .lecture_recommande_plus a {
        position: unset;
    }

    .lecture_recommande_plus {
        margin-top: 30px;
    }
}








.content_body {
    background: #353535;
}

.article_description_details p,
.article_description_details span {
    font-family: 'MarkPro';
    font-size: 17px;
    color: #4c4c4c;
}


.article_description_details strong,
.article_description_details p strong,
.article_description_details span strong,
.article_description_details strong span {
    font-family: 'MarkBold';
}


.slider_title_tab {
    position: relative;
    top: -10px;
}

.slider_title_tab h3 {
    margin-top: 0;
    font-size: 30px;
    font-family: 'sofia_probold';
    font-weight: 'bold';
    color: white;
    background: #b11616;
    max-width: 300px !important;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
}

.social_media_icons_details {}

.social_media_icons_details ul {
    display: flex;
    list-style: none;
}

.social_media_icons_details ul li {
    margin-right: 9px;
    position: relative;
}

.social_media_icons_details ul li.facebook_logo {
    display: inline-flex;
}

.social_media_icons_details ul li.facebook_logo::after {
    content: '298';
    display: block;
    font-size: 15px;
    padding-left: 8px;
    line-height: 37px;
    color: black;
    background: white;
    width: 40px;
}

.other_video_title {
    display: block;
    border-bottom: 1px solid #464545;
    margin-bottom: 30px;
}

.other_video_title h3 {
    font-size: 24px;
    font-family: 'GarnetCapitalsBold';
    border-bottom: 7px solid #b11616;
    padding-bottom: 5px;
    margin: 0;
    max-width: 155px;
}

.other_video_detail {}

.other_video_detail span {
    color: #f34a53;
}

.other_video_detail h3 {
    font-family: 'MarkBold';
    color: white;
    font-size: 15px;
}

.facebook_comments_plugin {
    margin-top: 30px;
    margin-bottom: 100px;
}

.list_tages {
    padding: 10px 0;
    border: 1px solid #e9ebee;
    border-left: none;
    border-right: none;
}

.list_tages .label {
    display: inline-block;
    background-color: #b91824;
}

.label,
.label a {
    font-family: 'MarkPro';
    padding: .4em .6em;
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1;
    color: #fff !important;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.espace-partage-article h6 {
    color: #d63461 !important;
    font-family: 'MarkBold';
    text-transform: uppercase;
    margin-top: 15px;
}

.list-reseaux-sociaux {
    display: block;
    margin: 10px auto;
    height: 38px;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

.list-reseaux-sociaux li {
    margin-right: 8px;
    float: left;
}

.list-reseaux-sociaux li a {
    display: block;
    width: 38px;
    height: 38px;
    background-image: url(../images/icon-suivi-nous.png);
    background-repeat: no-repeat;
    text-indent: -999999em;
}

.list-reseaux-sociaux li a.facboock {
    background-position: 0 0;
}

.list-reseaux-sociaux li a.googleplus {
    background-position: -40px 0;
}

.list-reseaux-sociaux li a.twiter {
    background-position: -82px 0;
}

.list-reseaux-sociaux li a.whatsapp {
    background-image: url(../images/whatsapp.png);
    background-position: center;
}


.list-reseaux-sociaux li a.linkdin {
    background-position: -168px 0px;
}


.article_description_details iframe {
    width: 100%;
}

.list_tages .label {
    display: inline-block;
}

@media (max-width:768px) {

    /*.list_tages .label {
       display: block;
	}*/
    .detail_article_left {
        float: none;
        clear: both;
        margin: 10px auto;
    }

    .detail_article_left>div {
        margin: auto;
    }
}

/*  Logos in the right side  */

.listpartenaire {
    position: relative;
    height: 0;
}

.listpartenaire .listpartenaire_a {
    display: block;
    position: fixed;
    right: 0;
    top: 20%;
    z-index: 999999999999;
    text-align: right;
}

.listpartenaire a {
    display: inline-block;
    width: 57px;
    height: 71px;
    margin-bottom: 15px;
    z-index: 9999999;
}

.listpartenaire_logo1 {
    background: url(../images/B2.png) no-repeat 0 0;
}

.listpartenaire_logo2 {
    background: url(../images/F2.png) no-repeat 0 0;
}

.listpartenaire a:hover {
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
    width: 200px;
}

.listpartenaire_logo1:hover {
    background: url(../images/B1.png) no-repeat 0 0;
}

.listpartenaire_logo2:hover {
    background: url(../images/F1.png) no-repeat 0 0;
}

/*  Page list articles  */

.content_list_articles,
.content_body_web,
.content_search {
    padding-top: 30px;
    padding-bottom: 70px;
}

.row_list_article .row {
    margin-top: 30px;
}

.list_articles_title h1 {
    padding-bottom: 15px;
    margin: 0;
    font-size: 30px;
    font-family: 'MarkBold';
    display: inline-block;
    padding-right: 20px;
}

.list_article_detail h2 {
    line-height: 0;
}

.list_article_detail h2 a {
    font-family: 'MarkBold';
    font-size: 20px;
    line-height: 24px;
    color: #2f2f2f;
    margin: 0;
}

.list_article_detail span {
    display: block;
    margin-top: 3px;
    color: #e20613;
    font-size: 11px;
    line-height: 24px;
    font-family: 'MarkPro';
}

.list_articles_title h3 {
    border-bottom: 6px solid #ffbb00;
    max-width: 140px !important;
    padding-bottom: 15px;
    margin: 0;
    font-size: 30px;
    font-family: 'ZonaBold';
}

.list_article_detail {
    margin-bottom: 25px;
}

.list_article_detail h3 {
    margin: 0;
    font-family: 'MarkBold';
    font-size: 20px;
    line-height: 24px;
    color: #2f2f2f;
}

.list_article_detail p {
    font-family: 'MarkLight';
    font-size: 14px;
    color: #8d8d8d;
    line-height: 22px;
    text-align: justify
}

/*  Pagination  */

/*.pagination_container_web_list{
	margin-top: 30px;
}*/
.pagination {
    margin-top: 30px;
    display: block;
}

.pagination_container {
    display: block;
    margin: 0 auto;
    text-align: center
}

.pagination_container .pagination>li>a {
    font-size: 16px;
    line-height: 30px;
    color: #474747;
    border: 0 !important;
    font-family: 'MarkLight';
}

.pagination_container .pagination>li:first-child>a {
    font-size: 0px;
    background: url('../images/first.png') no-repeat no-repeat center center;
}

.pagination_container .pagination>li:last-child>a {
    font-size: 0px;
    background: url('../images/last.png') no-repeat no-repeat center center;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #2f2f2f !important;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover,
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>span {
    background-color: #dc2224 !important;
    color: #fff !important;
}

.pagination_container_web_list .pagination li a {
    background: 0 0;
    border: none;
    color: #fff;
}

@media (max-width: 767px) {
    .list_articles_title h1 {
        font-size: 23px;
        padding-right: 0;
    }

    .list_article_detail h2 {
        margin-top: 15px;
    }
}

/*  Contact   */

.titre_decryptage_details {
    font-family: 'MarkMedium';
    font-size: 20px;
    color: #000;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.contact-form .form-control {
    box-shadow: none;
    border-color: #eee;
    height: 40px;
}

.form-group {
    margin-bottom: 15px;
}

.contact-form .textarea {
    min-height: 220px;
    resize: none;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.contact-form .main-btn {
    font-family: 'MarkPro';
    background: #9a0103;
    border-color: #9a0103;
    color: #fff;
    width: 100%;
    text-align: center;
}

samp.error {
    color: red;
    font-size: 11px;
    font-family: 'MarkMedium';
}

.contact-form .form-control.error {
    box-shadow: none;
    border-color: red;
}

.content_introuvable {
    padding: 50px 15px 100px 15px;
}

.content_introuvable .list_articles_title {
    margin-bottom: 30px;
}




.nav_header li a.stylemenustyle {
    color: white;
    background: #bd1622;
    padding: 5px 10px;
    border-radius: 7px;
}




.detail_article_left {
    float: left;
    margin: 10px;
}


.margin-top-30 {
    margin-top: 30px !important;
}

.band-center-marge {
    margin: 20px auto;
}

.styleheaderan {
    margin-bottom: 10px;
}

.detail_article_left>div div,
.detail_article_left>div iframe,
.band-center-marge>div,
.band-center-marge>div>iframe,
.band-center-marge>div>div {
    display: block !important;
    margin: 0px auto !important;
}

@media (max-width: 767px) {

    .detail_article_left {
        float: none !important;
        clear: both !important;
        margin: 10px auto !important;
    }

    .detail_article_left>div {
        display: block;
        margin: auto !important
    }

    .espacean {
        display: none !important;
    }

    .article_description_details iframe,
    .detail_article_left>div>div,
    .detail_article_left>div>iframe {
        display: block !important;
        margin: 0px auto !important;
        width: auto !important
    }

}

.img-responsive {
    max-width: 100%;
}

.item_webtv_detail a {
    font-size: 15px;
    text-decoration: none;
    font-family: 'MarkBold';
    font-size: 15px;
    line-height: 24px;
    color: #2f2f2f;
}

.item_webtv_detail span {
    font-weight: lighter;
    font-size: 10px;
    display: block;
    color: #f34a53;
    margin-top: 15px;
    margin-bottom: 7px;
}

b.par {
    text-transform: uppercase;
    color: #b2b2b2;
}