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

html,
body {
    /* overflow-x: hidden; */
}

img {
    max-width: 100%;
}

.top-bar {
    background-color: #365E43;
}

.top-bar-inner {
    display: flex;
    min-height: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    gap: 60px;
}

.top-bar-nav-items {
    display: flex;
    gap: 30px;
    padding: 0 30px 0 0;
    border-right: solid 1px #fff;
}

.top-bar-nav-items .top-bar-nav-item a,
.social-items .social-item {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 1;
}

.social-items .social-item::before {
    content: '';
    width: calc(100% + 15px);
    aspect-ratio: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    background-color: #fff;
    z-index: -1;
    opacity: 0;
    transition: all .25s cubic-bezier(.65, .05, .36, 1);
    box-shadow: 0 0 12px rgba(0, 0, 0, .2);
}

.social-items .social-item:hover {
    color: #B42F27;
    transition: color .3s ease-in-out;
}

.social-items .social-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.social-items {
    display: flex;
    gap: 18px;
    padding: 0 0 0 30px;
}

.main-menu-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-menu-nav-items {
    display: flex;
    gap: 15px;
    padding: 0 15px;
}

.main-menu-nav-items .main-menu-nav-item {
    color: #B42F27;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 15px;
    max-width: 170px;
    display: inline-flex;
    text-align: center;
}

.slider-item {
    position: relative;
    height: 600px;
}

.slider-item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #5d708179;
}

.slider-item-content {
    position: absolute;
    bottom: 150px;
    width: 85%;
    z-index: 5;
    padding: 0 0 0 130px;
}

.slider-item-body,
.slider-item-body p,
.slider-item-body span {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}

.slider-item-action a {
    display: flex;
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    width: 200px;
    height: 50px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.slider-item-action a::after,
.block-pres-action a::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.slider-item-action a:hover::after,
.block-pres-action a:hover::after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

#homeSlider .owl-dots button.owl-dot.active {
    background-color: #B42F27;
}

#homeSlider .owl-dots button.owl-dot {
    border: 2px solid #fff;
    background-color: transparent;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

#homeSlider .owl-dots {
    position: absolute;
    right: 140px;
    bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slider-item-action {
    margin-top: 15px;
    position: relative;
    top: 28px;
}

.strategic-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 80px;
}

.strategic-carousel {
    width: calc(100% - 260px);
}



.strategic-nav {
    height: 550px;
    width: 260px;
    /* background-color: rgba(42, 45, 56, 0.829); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px 50px 0px;
}

.strategic-nav-items {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    background-color: #fff;
    overflow-y: scroll;
    cursor: pointer;
}

.strategic-nav-items::-webkit-scrollbar {
    width: 10px;
}

.strategic-nav-items::-webkit-scrollbar-track {
    background-color: #A6A69A;
    border-left: solid 2px #fff;
    border-right: solid 2px #fff;
}

.strategic-nav-items::-webkit-scrollbar-thumb {
    background-color: #B42F27;
    height: 6px;
}

.strategic-nav-item {
    color: #6C7179;
    font-size: 20px;
    font-weight: bold;
    display: block;
    padding: 20px 0 20px 12px;
    position: relative;
    transition: color .3s ease-in-out;
}

.strategic-nav-item::before {
    content: '';
    height: 0;
    width: 4px;
    background-color: #B42F27;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .3s ease-in-out;
}

.strategic-nav-item:hover,
.strategic-nav-item.strategic-nav-item-active {
    color: #B42F27;
}

.strategic-nav-item:hover::before,
.strategic-nav-item.strategic-nav-item-active::before {
    height: 40px;
    opacity: .5;
}

.strategic-item {
    display: block;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    position: relative;
}

.strategic-item-img {
    height: 100%;
    width: 100%;
}

.owl-carousel .owl-item .strategic-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heading-lg h1 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    padding: 30px 0;
    color: #B42F27;
}

.heading-lg h1::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #B42F27;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.strategic-item-body {
    visibility: hidden;
    display: flex;
    position: absolute;
    padding: 20px 20px 20px;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    background-color: #B42F27;
    border-radius: 0 0 30px 30px;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    opacity: 0;
}

.strategic-item:hover .strategic-item-body {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.strategic-item-body,
.strategic-item-body p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.strategic-item-body span {
    color: #fff;
    font-size: 16px;
}

.strategic-item-label {
    position: absolute;
    top: 15px;
    left: 20px;
    background-color: #B42F27;
    width: 140px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 5px 10px;
}

.prospective-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.prospective-left {
    width: 350px;
}

.prospective-right {
    width: calc(100% - 370px);
    height: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    padding: 20px;
    text-align: center;
    border-radius: 25px;

}

.prospective-item img {
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}

.prospective-item:hover img {
    -webkit-filter: blur(4px);
    /* Safari 6.0 - 9.0 */
    filter: blur(4px);
    transform: scale(1.09);
}

.prospective-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px;
    gap: 15px;
}

.prospective-item {
    width: 100%;
    height: 212px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);

}

.prospective-item-label {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0000006e;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    padding: 0 25px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.prospective-item-label:hover {
    color: #fff;
    background-color: #a20b0b94;

}

.heading-md h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0;
    color: #B42F27;
}

.prospective-desc {
    font-size: 18px;
    text-align: left;
}

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

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

.prospective-action a {
    display: flex;
    background-color: #B42F27;
    width: 190px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.prospective-action a::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.prospective-action a:hover::after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

.prospective-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 0 0;
}

.strategic-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0 35px 0;
    width: 100%;
}

.strategic-action a {
    display: flex;
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    width: 190px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}


.strategic-action a::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.strategic-action a:hover::after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

section.prospective {
    background: rgba(214, 215, 218, 0.28);
    padding: 0 0 40px 0;
}

.publications-item.item-up {
    padding-top: 60px;
}

.publications-item {
    padding-left: 10px;
    padding-right: 10px;
}

section.meet {
    background-color: #6E0309;
}

.meet-inner .meet-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.first-slider-publication .list-box-flash-date span:first-child {
    margin-right: 0;
}

.show-list-flash_info .list-box-flash-date span:first-child {
    margin-right: 0;
}

.show-list-flash_info .list-box-flash-description {
    min-height: auto !important;
    height: auto;
}

.list_rapports .list-box-flash-date span:first-child {
    margin-right: 0;
}

.meet-item {
    flex-grow: 1;
    width: 40%;
    display: flex;
    gap: 10px;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
}

.detail_publication_rapport-strategique section.show-list-flash_info .col-lg-4 {
    display: block;
}

#publication_carde .list-box-flash-date span:first-child {
    margin-right: 0;
}

.meet-item-img {
    flex-grow: 1;
    width: 60%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    background: #B42F27;
}

.meet-item-img img {
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    opacity: 1;
}

.meet a.meet-item:hover {
    transition: box-shadow .3s ease-in-out;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.meet a.meet-item:hover .meet-item-body p {
    color: #B42F27;
    transition: color .3s ease-in-out;
}

.meet a.meet-item:hover img,
.events-social:hover img,
.publications .strategic-item:hover img,
.second_lien_social .strategic-item:hover img {
    opacity: .75;
    transform: scale(1.1);
}

.meet-item-body {
    flex-grow: 1;
    width: 40%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px 10px;
}

.meet-item-body,
.meet-item-body p {
    font-size: 15px;
    font-weight: bold;
    color: #6C7179;
}

.meet-date {
    font-size: 16px;
    font-weight: normal;
    color: #B42F27;
}

.meet-label {
    position: absolute;
    top: 15px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #B42F27;
    width: 160px;
    border-radius: 22px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

section.meet .heading-lg h1 {
    color: #fff;
}

section.meet .heading-lg h1::after {
    background-color: #fff;
}

.meet-actions {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.meet-actions a {
    display: flex;
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    width: 190px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    border: solid 1px #FED25F;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.meet-actions a::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.meet-actions a:hover::after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

.flash-info-inner .flash-info-items {
    display: flex;
    gap: 20px;
}

.media-lib-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0 15px 0;
}

.media-lib-filter button {
    display: flex;
    background-color: #fff;
    width: 190px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    border: solid 1px #FED25F;
}

.media-lib-filter button:hover,
.media-lib-filter button.media-btn-active {
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    color: #262626;
}

.media-video-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.media-video-item,
.media-photo-item {
    width: 23%;
    height: 230px;

}

.media--video {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.media--video--cover {
    width: 100%;
    height: 100%;
}

.media--video .media--video--cover img {
    width: 100%;
    height: 100%;
}

.media--video .video-icon {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-video-item.video-item-down,
.media-photo-item.video-item-down {
    padding: 50px 0 0 0;
}

section.media-lib {
    background: rgba(214, 215, 218, 0.28);
}

.top-bar-nav-item {
    position: relative;
}

.top-bar-nav-item:hover>.top-bar-item-subs {
    display: block;
}

.top-bar-item-subs .top-bar-sub-item a {
    color: #000;
    font-weight: normal;
}

.top-bar-item-subs-inner {
    background-color: #fff;
    width: max-content;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    gap: 21px;
    height: 50px;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-bottom: solid 1px #B42F27;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
}

.top-bar-item-subs {
    position: absolute;
    background-color: transparent;
    width: auto;
    display: none;
    left: 0;
    top: 19px;
    z-index: 99;
    padding: 24px 0 0 0;
}

footer {
    background-color: rgba(214, 215, 218, .28);
}

.top-footer .top-footer-inner .heading-lg h2 {
    color: #B42F27;
}

.top-footer .top-footer-inner .heading-lg h2::after {
    background-color: #fff;
}

.top-footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.top-footer-body p {
    font-size: 18px;
    color: #FFF;
}

.top-footer-btn a {
    display: flex;
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    width: 190px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}


.top-footer-btn a::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.top-footer-btn a:hover::after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

.top-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006e;
}

.top-footer {
    background-image: url("../imgs/top-footer-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 120px;
}

.top-footer-inner {
    position: relative;
    z-index: 2;
}

.newsletter-container {
    background-color: #365E43;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 130px;
    padding: 0 50px;
    border-radius: 10px;
    margin-top: -65px;
    z-index: 3;
    position: relative;
}

.newsletter-form .form--row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.newsletter-form .form--row input[type=submit] {
    display: flex;
    background-color: #B42F27;
    width: 125px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;

}

.newsletter-form .form--row input[type=text] {
    border: none;
    height: 46px;
    width: 300px;
    border-radius: 25px 0 0 25px;
    margin-right: -20px;
    padding: 0 29px 0 10px;
}

.newsletter-form .form--row input[type=text]:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.newsletter-info {
    font-size: 35px;
    color: #fff;
    max-width: 50%;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    border-bottom: solid 1px #ffffff7a;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social .footer-social-label {
    color: #B42F27;
}

.social-items .social-item {
    color: #B42F27 !important;
}

/* .footer-social-items .footer-social-item :hover{
    color: #fff;

}
.footer-social-items .footer-social-item{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.footer-social-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
} */

.footer-navs {
    padding: 30px 0;
}

.footer-nav-label {
    font-size: 18px;
    color: #B42F27;
    font-weight: bold;
    padding: 0 0 20px 0;
}

.footer-nav-item {
    color: #B42F27;
    font-size: 16px;
    line-height: 2;
}

.bottom-footer a {
    position: relative;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: "solid";
    text-decoration-style: "solid";
    -webkit-text-decoration-color: rgba(224, 60, 49, 0);
    text-decoration-color: rgba(224, 60, 49, 0);
    text-decoration-thickness: 2px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

/* .bottom-footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 0;
  height: 2px;
  transition: width .25s ease-in-out;
} */
.bottom-footer a:hover {
    color: #B42F27;
    -webkit-text-decoration-color: #eaeaea;
    text-decoration-color: #eaeaea;
}

/* .bottom-footer a:hover::after {
  width: 100%;
} */

.bottom-footer .social-item::after {
    display: none;
}

.footer-nav-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-nav-items a {
    color: #B42F27;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-copyright {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0 20px 0;
}

.copyright-txt {
    font-size: 14px;
    color: #B42F27;
}

.copyright-nav-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.copyright-nav-item :hover {
    color: #B42F27;
}

.copyright-nav-item {
    font-size: 14px;
    font-weight: bold;
    color: #B42F27;
}

#strategicCarousel .owl-nav,
#publicationsCarousel .owl-nav {
    position: absolute;
    top: -40px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#mediaCarousel .owl-nav {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

#mediaCarousel .owl-nav * {
    pointer-events: auto;
}

#strategicCarousel .owl-nav button,
#mediaCarousel .owl-nav button,
#publicationsCarousel .owl-nav button {
    width: 35px;
    height: 35px;
    display: flex;
    background-color: #fff;
    border: solid 2px #B42F27;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #B42F27;
    transition: all .3s ease-in-out;
}

#strategicCarousel .owl-nav button:hover,
#mediaCarousel .owl-nav button:hover,
#publicationsCarousel .owl-nav button:hover {
    color: #fff;
    background-color: #B42F27;
}

#publicationsCarousel .owl-nav {
    top: -70px;
    right: 170px;
}

.strategic-item-container {
    padding: 10px 15px;
}

.strategic-item-type {
    color: #6C7179;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0 0 0;
}


.publications-carousel {
    padding-left: 160px;
    width: calc(100% + 160px);
}



#popupVideo,
#popupPhoto {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0000007d;
    padding: 80px;
    z-index: 20;
}

.popup-video-inner,
.popup-photo-inner {
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.popup-video-body {
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.popup-video-body iframe {
    width: 100%;
    height: 100%;
}

.popup-video-header,
.popup-photo-header {
    text-align: right;
    padding: 0 0 10px 0;
}

button.popup-video-close,
button.popup-photo-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
}

.popup-video-desc,
.popup-photo-desc {
    background-color: #fff;
    height: 90px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 18px;
    padding: 0 30px;
}

.popup-photo-carousel,
#mediaCarousel,
#mediaCarousel .owl-carousel,
#mediaCarousel .owl-stage-outer {
    max-height: 100%;
    height: 100%;
}

.media-carousel-img img {
    width: 100%;
    height: 100%;
}

.media-carousel-img {
    width: 100%;
    height: 100%;
}

.popup-photo-body {
    background-color: #fff;
    width: 100%;
    height: calc(100% - 120px);
}

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

.newsletter-form form label,
.newsletter-form form div.description,
.newsletter-form form div#edit-message {
    display: none;
}

.newsletter-form form {
    display: flex;
}

.newsletter-form form input.form-email {
    min-width: 250px;
    width: 100%;
    border: none;
    height: 46px;
    border-radius: 25px 0 0 25px;
    padding: 0 30px 0 10px;
    outline: 0;
}

.newsletter-form form .field--name-mail {
    min-width: 250px;
    width: 100%;
    margin-right: -20px;
}

.newsletter-form form input[type=submit] {
    display: flex;
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    width: 125px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    border: none;
}

/* Style lahcen */

/* Style lahcen */
/* page flash info */

/* Style lahcen */
/* page flash info */

/* page flash info */

@font-face {
    font-family: "Lato Black";
    src: url("../webfonts/Lato-Black.ttf");
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "Lato Bold";
    src: url("../webfonts/Lato-Black.ttf");
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "Lato Italic";
    src: url("../webfonts/Lato-Italic.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Lato Light";
    src: url("../webfonts/Lato-Light.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Lato Regular";
    src: url("../webfonts/Lato-Regular.ttf");
    font-display: swap;
}

.banner_ires {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 264px;
}

.banner_ires .showcase-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(93, 112, 129, 0.79);
    z-index: 10;
    mix-blend-mode: multiply;
}

.banner_ires img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.showcase-titre-h1 {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 12;
    font-size: 40px;
    font-family: "Lato Bold", sans-serif;
}

.ires-breadcrumb ul li:not(:last-child):after {
    content: ' - ';
    margin-left: 5px;
    margin-right: 5px;
    color: #6E0309;
}

.ires-breadcrumb {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 38px;
}

.ires-breadcrumb ul {
    display: flex;
    margin: 0px;
}

.paginations-list .pagination-success {
    display: flex;
    justify-content: center;
}

.paginations-list li a {
    height: 44px;
    width: 45px;
    font-family: "Lato Regular", sans-serif;
    border-radius: 10px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paginations-list .next-page a,
.paginations-list .last-page a,
.paginations-list .first-page a,
.paginations-list .previous-page a {
    background: #B42F27;
    color: #fff;
}

.paginations-list li:nth-last-child(2) a {
    /* background: #B42F27;
    color: #fff; */
}

.paginations-list li a {
    color: #787D79;
}

.ires-breadcrumb ul li:last-child {
    color: #6E0309;
    font-family: "Lato Bold", sans-serif;
}

.ires-breadcrumb ul li a {
    color: #6E0309;
    font-family: "Lato Regular", sans-serif;
    display: inline-block;
}

ul,
li {
    list-style: none;
    padding: 0px;
}

.list_rapports .list-box-flash-paragraphe h2,
.list_rapports .list-box-flash-date span,
.list_rapports .list-box-flash-paragraphe h2 a {
    color: #fff;
}

.list_rapports .list-box-flash-paragraphe h2 {
    height: 112px;
}

.list-box-flash-paragraphe h2 {
    font-family: "Lato Bold", sans-serif;
    font-size: 18px;
    color: #6C7179;
    line-height: 30px;

}

.list-box-flash-img img {
    height: 100%;
    width: 100%;
    position: relative;
    object-fit: cover;
}

.list-box-flash-description {
    min-height: 198.1px;
    height: 198.1px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all_nature_centric .list-box-flash {
    margin-bottom: 15px;
    margin-top: 15px;
}

.detail-events-social p a:hover {
    color: #B42F27;
    transition: color .3s ease-in-out;
}

.list-box-flash {
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    transition: all .3s ease-in-out;
}

.list-box-flash:hover {
    box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.45);
}

.list-box-flash:hover .list-box-flash-img img {
    opacity: .65;
    transform: scale(1.09);
}

.list-box-flash-date span:first-child {
    margin-right: 9px;
}

.list-box-flash-date span {
    font-size: 15px;
    font-family: "Lato Regular", sans-serif;
    color: #B42F27;
}

section.paginations-list.text-center {
    padding: 20px 0;
}

.slider_cetrale .testmonial_area_holder .mediatheque-videos--carousel .owl-nav {
    top: 50%;
}

.categorie-list-flash h3 {
    font-weight: bold;
    font-family: "Lato Bold", sans-serif;
    position: absolute;
    color: #fff;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 10px 5px;
    /* top: 8px;
    left: 20px; */
    background-color: #B42F27BA;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    width: 180px;
    border-radius: 42px;
    letter-spacing: 0.4px;
    text-shadow: 0 0 2px #6C7179;
    text-align: center;
}

.paginations-list li {
    margin: 0 10px;
}

.description-detail span {
    font-size: 14px;
    color: #B42F27;
}

.description-detail p {
    font-family: "Lato Light", sans-serif;
    font-size: 18px;
    color: #021726;
    line-height: 30px;
}

.share-detail h2 {
    font-family: "Lato Bold", sans-serif;
    color: #45403D;
    font-size: 30px;
}

.img-detail img {
    width: 100%;
    height: 100%;
}

/* .paginations-list li a:hover {
    background: #fff;
    color: #B42F27;
    border: 1px solid #B42F27;
} */
.paginations-list .active a {
    color: #6E0309;
}

.categorie-list-flash {
    position: absolute;
    top: 15px;
    left: 20px;
}

.flash_info,
.all_domaines_strategique {
    padding-bottom: 83px;
}

/* page detail flash */
.description-detail>div span {
    padding-left: 15px !important;
    font-family: "Lato Regular", sans-serif;
}

.img-detail {
    /* height: 432.65px; */
}

.social-Share li {
    height: 36px;
    margin-right: 17px;
    width: 36px;
    background: #787D79;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.social-Share li:hover {
    background: #FED25F;
}
.social-Share li:hover a{
    color: #262626;
}

.social-Share ul {
    display: flex;
}

.description-detail>div {
    padding-bottom: 20px;
}

.share-detail {
    padding-top: 27px;
    border-top: 1px solid #787D79;
    width: 40%;
}

.social-Share {
    padding-top: 20px;
}

.description-detail>div span {
    padding: 33px 0;
    display: block;
}

.social-Share li a {
    color: #fff;
}

.lire_notre_actualites {
    background: rgba(214, 215, 218, 0.28);
    padding: 60px 0;
    padding-bottom: 80px !important;
}

.list-box-flash {
    background: #fff;
}

.lire_notre_actualites .list-box-flash {
    margin-bottom: 0;
}

.title-page-ires h2 {
    font-family: "Lato Bold", sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 40px;
    color: #B42F27;
}

.cadre_decouvrir_plus {
    padding: 60px 0;
}

.img_decouvrir_plus {
    height: 340px;
}

.img_decouvrir_plus img {
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
}

.subtitle_decouvrir_plus {
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subtitle_decouvrir_plus h3 {
    font-size: 25px;
    font-family: "Lato Regular", sans-serif;
    color: #fff;

}

.subtitle_decouvrir_plus {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

section.cadre_decouvrir_plus .row .col-lg-3:nth-child(odd) .subtitle_decouvrir_plus {
    background: #B42F27;
}

/* rgba(110, 3, 9, 0.28) */
section.cadre_decouvrir_plus .row .col-lg-3:nth-child(even) .subtitle_decouvrir_plus {
    background: #6C7179;
}

section.cadre_decouvrir_plus .row .col-lg-3:nth-child(even) {
    position: relative;
    top: 50px;
}

.cadre_decouvrir_plus,
.prospective_selon_deatil {
    position: relative;
    padding-bottom: 150px;
}

section.first--prospectives {
    padding: 10px 0 40px 0;
}

section.base_de_donnes {
    padding-bottom: 95px;
}

.img-prospective-detail .info--img-detail h5 {
    font-size: 18px;
    position: relative;
    color: #6C7179;
    text-align: center;
    padding-left: 15px;

}

.base_de_donnes .col-lg-6 a:hover h2,
.base_de_donnes .col-lg-6 a:hover p {
    color: #fff;
}

.base_de_donnes .col-lg-6 a:hover {
    background: #B42F27;
}

.body-prospective-detail .date-publicatoin-deatil {
    margin-top: 0;
    position: relative;
    top: 0;
}

.body-prospective-detail {
    border-radius: 24px;
    padding: 37px;
    background: #fff;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 20%);
}

.body-prospective-detail p {
    line-height: 30px;
    color: #021726;
    font-size: 18px;
}

.info--img-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 121px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.info--img-detail h3 {
    font-size: 18px;
    color: #6E0309;
    line-height: 30px;
    text-align: center;
}

.cadre_decouvrir_plus:after {
    content: '';
    height: 55%;
    width: 100%;
    position: absolute;
    background: #6E0309;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
}

section.cadre_decouvrir_plus .col-lg-3 {
    z-index: 666;
}

.newsletter-container {
    top: -60px;
    margin-top: 0;
}

.list-box-flash-description {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.list-box-flash-img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* .list-box-flash:hover .list-box-flash-description {
    background-color: #B42F27;
    transition: all .1s;
} */
.list-box-flash:hover {
    background-color: #B42F27;
    transition: all .1s;
}

.list-box-flash:hover h2 {
    color: #fff;
    transition: all .5s;
}

.list-box-flash:hover .list-box-flash-date span {
    color: #fff;
    transition: all .5s;
}

.newsletter-info {
    font-family: "Lato Regular", sans-serif;
}

.top-bar-nav-items .top-bar-nav-item,
.main-menu-nav-items .main-menu-nav-item span {
    font-family: "Lato Bold", sans-serif;
}

.at-custom-sidebar-btns {
    display: none !important;
}

.box_decouvrir_plus {
    border-radius: 10px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
}

.footer-social .footer-social-label {
    font-family: "Lato Bold", sans-serif;
    font-size: 20px;
}

.footer-nav-label span {
    font-family: "Lato Bold", sans-serif;
}

.footer-nav-item {
    font-family: "Lato Light", sans-serif;
}

.copyright-txt span {
    font-family: "Lato Regular", sans-serif;
    font-weight: bold;
}

.copyright-nav-item {
    font-family: "Lato Regular", sans-serif;
}

.top-bar-nav-items .top-bar-nav-item a span {
    font-family: "Lato Bold", sans-serif;
}

/* End List flash **************/

/* page flash info */

@font-face {
    font-family: "Lato Black";
    src: url("../webfonts/Lato-Black.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Lato Bold";
    src: url("../webfonts/Lato-Black.ttf");
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "Lato Italic";
    src: url("../webfonts/Lato-Italic.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Lato Light";
    src: url("../webfonts/Lato-Light.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Lato Regular";
    src: url("../webfonts/Lato-Regular.ttf");
    font-display: swap;
}

.banner_ires {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 264px;
}

.banner_ires .showcase-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(93, 112, 129, 0.79);
    z-index: 10;
    mix-blend-mode: multiply;
}

.banner_ires img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.showcase-titre-h1 {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 12;
    font-size: 40px;
    font-family: "Lato Bold", sans-serif;
}

.ires-breadcrumb ul li:not(:last-child):after {
    content: ' - ';
    margin-left: 5px;
    margin-right: 5px;
    color: #6E0309;
}

.ires-breadcrumb {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 38px;
}

.ires-breadcrumb ul {
    display: flex;
    margin: 0px;
    flex-wrap: wrap;
}

.paginations-list .pagination-success {
    display: flex;
    justify-content: center;
}

.paginations-list li a {
    height: 44px;
    width: 45px;
    font-family: "Lato Regular", sans-serif;
    border-radius: 10px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paginations-list .next-page a,
.paginations-list .last-page a,
.paginations-list .first-page a,
.paginations-list .previous-page a {
    background: #FED25F;
    color: #262626;
}

.paginations-list li:nth-last-child(2) a {
    /* background: #B42F27;
    color: #fff; */
}

.paginations-list li a {
    color: #787D79;
}

.ires-breadcrumb ul li:last-child {
    color: #6E0309;
    font-family: "Lato Bold", sans-serif;
}

.ires-breadcrumb ul li a {
    color: #6E0309;
    font-family: "Lato Regular", sans-serif;
    display: inline-block;
}

ul,
li {
    list-style: none;
    padding: 0px;
}

.list-box-flash-paragraphe h2 {
    font-family: "Lato Bold", sans-serif;
    font-size: 18px;
    color: #6C7179;
    line-height: 30px;
    /* word-break: break-all; */
}

.list-box-flash-img {
    overflow: hidden;
    position: relative;
    height: 375px;
}

.list-box-flash-img img,
.publications .strategic-item:hover img {
    height: 100%;
    width: 100%;
    position: relative;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.strategic-item:hover img {
    transition: all .3s ease-in-out;
}

.list-box-flash-description {
    min-height: 234.1px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 27px;
}

.flash-info .list-box-flash {
    /* add margin bottom HP */
    margin-bottom: 10px;
}

.list-box-flash {
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    overflow: hidden;
}

.list-box-flash-date span:first-child {
    margin-right: 9px;
    padding-bottom: 10px;
}

.list-box-flash-date span {
    padding-right: 10px;
    font-size: 15px;
    font-family: "Lato Regular", sans-serif;
    color: #365E43;
}

#meet-list .list-box-flash-date span.category_rencontre {
    margin-left: 0 !important;
}

section.paginations-list.text-center {
    padding: 20px 0;
}

.categorie-list-flash h3 {
    /* font-family: "Lato Bold";
    background: #B42F27;
    position: absolute;
    font-size: 18px;
    color: #fff;
    padding: 14px 19px;
    border-radius: 10px;
    width: 140px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center; */
}

.paginations-list li {
    margin: 0 10px;
}

.description-detail span {
    font-size: 14px;
    color: #B42F27;
}

.description-detail p {
    font-family: "Lato Light", sans-serif;
    font-size: 18px;
    color: #021726;
    line-height: 30px;
}

.share-detail h2 {
    font-family: "Lato Bold", sans-serif;
    color: #45403D;
    font-size: 30px;
}

.img-detail img {
    width: 100%;
    height: 100%;
}

/* .paginations-list li a:hover {
    background: #fff;
    color: #B42F27;
    border: 1px solid #B42F27;
} */
.paginations-list .active a {
    color: #6E0309;
}

.categorie-list-flash {
    position: absolute;
    top: 15px;
    left: 20px;
}

.flash_info,
.vocabulaire_ressource,
.recrutement_ressource,
.all_panel_international {
    padding-bottom: 83px;
}

/* page detail flash */
.description-detail>div span {
    padding-left: 15px !important;
    font-family: "Lato Regular", sans-serif;
}

.img-detail {
    /* height: 432.65px; */
}

.social-Share li {
    height: 36px;
    margin-right: 17px;
    width: 36px;
    background: #787D79;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.social-Share li:hover {
    background: #FED25F;
}

.social-Share ul {
    display: flex;
}

.description-detail>div {
    padding-bottom: 20px;
}

.share-detail {
    padding-top: 27px;
    border-top: 1px solid #787D79;
    width: 40%;
}

.description-detail p>span {
    font-weight: bold;
    display: contents !important;
    color: #021726;
}

.social-Share {
    padding-top: 20px;
}

.telecharger--link h3 {
    font-size: 18px;
    font-family: "Lato Bold", sans-serif;
    background: #FED25F;
    color: #262626;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.show-list-flash_info .col-lg-4 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 10px;
}

.show-list-flash_info .list-box-flash-img {
    height: 390px;
}

.list-box-flash:hover .telecharger--link h3 {
    color: #262626;
    background: #fff;
}

.description-detail>div span {
    /*padding: 33px 0;
    display: block;*/
    padding: 0;
    display: inline;
}

embed {
    max-width: 100%;
}

.social-Share li a {
    color: #fff;
}

.lire_notre_actualites {
    background: rgba(214, 215, 218, 0.28);
    padding: 60px 0;
}

.list-box-flash {
    background: #fff;
}

.lire_notre_actualites .list-box-flash {
    margin-bottom: 0;
}

.title-page-ires h2 {
    font-family: "Lato Bold", sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 40px;
    color: #B42F27;
}

.cadre_decouvrir_plus {
    padding: 60px 0;
}

.img_decouvrir_plus {
    height: 340px;

}

.img_decouvrir_plus img {
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all .3s ease-in-out;
    opacity: 1;
}

.box_decouvrir_plus:hover img {
    /* opacity: .75; */
    transform: scale(1.2);
}

.subtitle_decouvrir_plus {

    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subtitle_decouvrir_plus h3 {
    font-size: 25px;
    font-family: "Lato Regular", sans-serif;
    color: #fff;

}

.subtitle_decouvrir_plus {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

section.cadre_decouvrir_plus .row .col-lg-3:nth-child(odd) .subtitle_decouvrir_plus {
    background: #B42F27;
}

/* rgba(110, 3, 9, 0.28) */
section.cadre_decouvrir_plus .row .col-lg-3:nth-child(even) .subtitle_decouvrir_plus {
    background: #6C7179;
}

section.cadre_decouvrir_plus .row .col-lg-3:nth-child(even) {
    position: relative;
    top: 50px;
}

.cadre_decouvrir_plus {
    position: relative;
    padding-bottom: 150px;
}

.cadre_decouvrir_plus:after {
    content: '';
    height: 55%;
    width: 100%;
    position: absolute;
    background: #6E0309;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
}

section.cadre_decouvrir_plus .col-lg-3 {
    z-index: 666;
}

.newsletter-container {
    top: -60px;
    margin-top: 0;
}

.list-box-flash-description {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.list-box-flash-img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.detail_publication_detail .categorie-lien-social h4 {
    margin-bottom: 30px;
}

/* .list-box-flash:hover .list-box-flash-description {
    background-color: #B42F27;
    transition: all .1s;
} */
.list-box-flash:hover {
    background-color: #FED25F;
    /* background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%); */
    transition: all .1s;
}

.list-box-flash:hover h2 {
    color: #262626;
    transition: all .5s;
}

.list-box-flash:hover .list-box-flash-date span {
    color: #262626;
    transition: all .5s;
}

.newsletter-info {
    font-family: "Lato Regular", sans-serif;
}

.top-bar-nav-items .top-bar-nav-item,
.main-menu-nav-items .main-menu-nav-item span {
    font-family: "Lato Bold", sans-serif;
}

.at-custom-sidebar-btns {
    display: none !important;
}

.box_decouvrir_plus {
    border-radius: 10px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
}

.footer-social .footer-social-label {
    /* font-family: "Lato Regular"; */
}

.footer-nav-label span {
    font-family: "Lato Bold", sans-serif;
}

.footer-nav-item {
    font-family: "Lato Light", sans-serif;
}

.copyright-txt span {
    font-family: "Lato Regular", sans-serif;
    font-weight: bold;
}

.copyright-nav-item {
    font-family: "Lato Regular", sans-serif;
}

.top-bar-nav-items .top-bar-nav-item a span {
    font-family: "Lato Bold", sans-serif;
}

/* End List flash **************/

/*  */
/* / / page 404 / / */
.title-404 h2 {
    font-family: "Lato Regular", sans-serif;
    font-size: 22px;
    color: #021726;
}

.page_404 {
    padding-bottom: 120px;
    text-align: center;
}

.btn_404 {
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_404 a {
    font-family: "Lato Bold", sans-serif;
    background: #B42F27;
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    letter-spacing: 1px;
}

.img-404 {
    height: 306px;
}

.img-404 img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.title-404 {
    padding-bottom: 35px;
}

/* / / page search / / */
.ires_search {
    padding-bottom: 65px;
}

.search_result_content input {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    outline: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid #ffffff !important;
    border-bottom: 1px solid #787D79 !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.result-title h2 {
    font-family: "Lato Regular", sans-serif;
    color: #B42F27;
    font-size: 30px;
}

.search_result_para {
    margin: 13px 0;
}

.search_result_para p {
    font-family: "Lato Regular", sans-serif;
    color: #6E0309;
    font-size: 18px;
}

.btn_search input {
    background: #B42F27;
    border: 0px solid;
    border-radius: 10px;
    padding: 10px;
    width: 135.54px;
    color: #fff;
    font-weight: bold;
    font-family: "Lato Bold", sans-serif;
}

.filter_search select {
    background: #787d7929;
    font-weight: bold;
    font-family: "Lato Bold", sans-serif;
    border: 0px solid;
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    width: 196px;
    font-size: 18px;
    color: #B42F27;
    outline: none;
}

.filter_search {
    display: flex;
    padding: 0 0;
}

.btn_search {
    padding-left: 30px;
}

.filter_search select {
    background-image: url("../imgs/flash_info/arrow_forme.png");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.img-result-search {
    height: 181px;
}

.img-result-search img {
    height: 100%;
}

.show-description-search span {
    color: #B42F27;
    font-family: "Lato Regular", sans-serif;
    font-size: 14px;
}

.show-description-search h3,
.show-description-search h3 a {
    font-family: "Lato Bold", sans-serif;
    font-size: 22px;
    color: #021726;
    line-height: 30px;
    padding: 14px 0 5px 0;
}

.show-description-search p {
    font-family: "Lato Light", sans-serif;
    line-height: 30px;
    font-size: 18px;
    color: #000000;
}

.show-description-search {}

.card-all .col-lg-8 .show-description-search {
    padding-left: 20px;
}

.card-all .row {
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 55, 114, 0.09);
}

section.page_search .container:last-child .card-all .row {
    border-bottom: 0px solid rgba(0, 55, 114, 0.09);
}

.search_result_content input::placeholder {
    color: rgba(108, 113, 121, 0.33);
    font-family: "Lato Regular", sans-serif;
}

.search_result_content {
    padding: 20px 0;
}

/* / / page phototheque / / */
.ires_phototheque {
    padding-bottom: 65px;
}

.page_phototheque .container {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    /* Your container needs a fixed height, and it
      needs to be taller than your tallest column. /
    height: 960px;

    /* / / Optional / / */
    background-color: #f7f7f7;
    border-radius: 3px;
    padding: 20px;
    width: 60%;
    margin: 40px auto;
    counter-reset: items;
}

.page_phototheque .item {
    margin-right: 15px;
    cursor: pointer;
    width: 32%;
    position: relative;
    margin-bottom: 2%;
    border-radius: 10px;
    color: #fff;

    box-sizing: border-box;
}

.page_phototheque .item>.all_box_phototheque img {
    /* / / position: relative; / / */
    border-radius: 10px;
}

.all_box_phototheque .gallrey_icon {
    position: absolute;
    bottom: 32px;
    right: 20px;
    z-index: 99;
    height: 22px;
    width: 24px;
}

.page_phototheque .item .all_box_phototheque:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 113, 121, 0.37);
    border-radius: 10px;
}

.all_box_videotheque:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 113, 121, 0.24);
    border-radius: 10px;
}

.page_phototheque,
.all-videotheque_lightbox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    padding: 40px 0 0 0;
}

/* / / Re-order items into 3 rows / / */
.page_phototheque .item:nth-of-type(3n+1) {
    /* height: 307px;width: 305px; */
}

.page_phototheque .item:nth-of-type(3n+2) {
    /* height: 254px; width: 231px;    position: relative;
    top: -39px; */
}

.page_phototheque .item:nth-of-type(3n+3) {
    /* height: 263px;width: 264px; */
}

.page_phototheque .item:nth-of-type(4n) {
    /* height: 228px; width: 228px;    position: relative;
    top: -39px; */
}

.page_phototheque .item:nth-of-type(3n+2) {
    margin-top: -68px;
}

/* / Force new columns /
  / rgba(108, 113, 121, 0.37) /
  /  / */
.page_phototheque .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all_box_phototheque {
    position: relative;
}

/* / / popup / / */
.video-popup {
    z-index: 2222;
    display: none;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: auto;
    position: fixed;
    top: 0;
}

.popup-bg {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 400;
    z-index: 2222;
}

.video-popup .popup-content {
    z-index: 6033;
    background: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
}

.video-popup .popup-content {
    background: none;
    width: 35%;
}

#presPopup .popup-content {
    width: 65%;
}

.img-content-popup {
    height: 310px;
}

.img-content-popup span {
    display: none;
}

.img-content-popup img {
    height: 100%;
    width: 100%;
}

.page_phototheque .video-popup {
    z-index: 20000;
}

.element_popup p {
    font-family: "Lato Regular", sans-serif;
    font-size: 20px;
    color: #0C1C2B;
    margin-bottom: 0;
}

.element_popup {
    padding: 10px 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.img-content-popup img {
    object-fit: cover;
}

.share_phototheque .social-Share li a {

    color: #B42F27;
}

.share_phototheque li {
    background: transparent;
}

.share_phototheque .social-Share li:hover {
    background: transparent;
}

.share_phototheque .social-Share img {
    height: 26.16px;
}

.share_phototheque .social-Share li a i {
    font-size: 25px;
}

.page_phototheque .owl-nav .owl-next,
div#nextprev button span#next {
    position: relative;
    right: 50px;
    left: auto !important;
    background: none;
}

div#nextprev button {
    background: transparent;
    border: 0;
}

.page_phototheque .owl-nav .owl-prev,
.page_phototheque .owl-nav .owl-next,
div#nextprev button span {
    position: relative;
    left: 50px;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    background: #fff !important;
    border-radius: 10px;
    border: 1px solid #B42F27 !important;
}

.page_phototheque .owl-nav,
div#nextprev button {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

div#nextprev button {
    top: 50%;
    height: 0;
}

.page_phototheque .owl-nav .owl-prev i,
.page_phototheque .owl-nav .owl-next i,
div#nextprev button span i {
    width: 100%;
    color: #B42F27;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all_box_videotheque:hove .detail-box-video {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    align-items: center;
    width: 100%;
    height: 100%;
    display: block;

}

.page_videotheque .gallrey_icon img {
    object-fit: none;
}

.page_phototheque .item>.all_box_phototheque .gallrey_icon img {
    border-radius: 0;
}

.videotheque-pop-up .video-popup .popup-content iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.videotheque-video--src {
    display: none;
}

.all_box_videotheque {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease-in-out;

}

.all_box_videotheque,
.all_box_phototheque {
    height: 300px;
}

.phototheque-popup .modal-content {
    background-color: transparent;
}

.phototheque-popup .modal-body {
    overflow-y: visible;
    height: 466px;
    padding: 0;
}

.phototheque-popup .modal-body iframe {
    width: 100%;
    height: 100%;
}

.phototheque-popup .modal-footer {
    display: block;
    padding: 0;
    border-top: 0px solid #dee2e6;
}

span.bloc-gallrey-titre {
    /* display: none; */
    color: #fff;
}

.phototheque-popup .element_popup {
    margin: 0;
}

.page_phototheque .owl-nav .owl-next:hover {
    background: #B42F27 !important;
}

.page_phototheque .owl-nav .owl-prev:hover i,
.page_phototheque .owl-nav .owl-next:hover i {
    color: #fff;
}

.page_phototheque .owl-nav .owl-prev:hover {
    background: #B42F27 !important;
}

.img-content-popup p {
    display: none;
}

.video-popup .popup-content .popup-photo-header {
    text-align: right;
}

.modal-body .popup-photo-header {
    text-align: right;
    position: relative;
    top: -14px;
}

.modal-body .popup-photo-header button i {
    color: #fff;
    font-size: 30px;
    padding-top: 9px;
}

.modal-body .popup-photo-header button {
    background: transparent;
    border: 0;
}

.video-popup .popup-content button.popup-photo-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
}

.page_phototheque>.item .all_box_videotheque img {
    transition: all .3s ease-in-out;
}

.all_box_videotheque:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

.all_box_videotheque:hover>img {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    transform: scale(1.09);
}

.item_slider_video .gallrey_icon,
.item_slider_video .all_box_videotheque img {
    display: none;
}

.item_slider_video .videotheque-video--src {
    display: block;
}

.phototheque-popup .pop-img {
    height: 466px;
}

.phototheque-popup div#nextprev button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

div#nextprev span {
    position: relative;
    left: 50px;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    background: #fff !important;
    border-radius: 10px;
    border: 1px solid #B42F27 !important;
}

div#nextprev span i {
    width: 100%;
    color: #B42F27;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phototheque-popup div#nextprev button {
    background: transparent;
    border: 0;
}

.phototheque-popup span#next {
    position: relative;
    right: 50px;
    left: auto !important;
    background: none;
}

.phototheque-popup span#next {
    position: relative;
    right: 50px;
    left: auto !important;
    background: none;
}

#gallery-pop-up-video #popupbg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    z-index: 1000;

}

#gallery-pop-up-video div#popupbg>span {
    right: 29px;
    top: 45px;
    z-index: 8888;
}

#gallery-pop-up-video #popup {
    background: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    background: none;
    width: 65%;

}

#gallery-pop-up-video #popup {
    z-index: 4000;
}

#gallery-pop-up-video #popup>.pop-img {
    height: 100%;
    width: 100%;
    position: relative;
}

#gallery-pop-up-video #popup .pop-img>img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0px;
    /* pointer-events: none; */
}

#popupbg #close {
    display: flex;
    justify-content: right;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
}

#gallery-pop-up-video #popup .pop-img iframe {
    width: 100%;
    border: 0px;
    height: 466px;
    /* display: none; */
}

#popupbg .pop-details {
    height: 116px;
    padding: 0 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pop-details span {
    font-family: "Lato Regular", sans-serif;
    font-size: 22px;
    color: #0C1C2B;
    margin-bottom: 0;
}

.pop-details a {
    color: #B42F27;
}

.pop-details a i {
    font-size: 25px;
}

.pop-details div:last-child {
    display: flex;
    width: 78px;
    justify-content: space-around;
    align-items: center;
}

.img-detail>div {
    height: 600px;
}

.img-detail>div img {
    border-radius: 10px;
    object-fit: cover;
}

#flash-info-home .strategic-item {
    display: initial;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: initial;
    position: initial;
}

.slider-container .owl-carousel .owl-item img {
    height: 100%;
    object-fit: cover;
}

.strategic-studies .strategic-item,
.publications .publications-item a {
    height: 543px;
}

.meet a.meet-item {
    height: 270px;
}

.meet .box-date span {
    margin-right: 9px;
    font-size: 15px;
    font-family: "Lato Regular", sans-serif;
    color: #365E43;
}

.box-date span {
    font-family: "Lato Regular", sans-serif;
    margin-right: 9px;
    font-size: 19px;
}

.top-footer h2 {
    color: #fff !important;
}

.videotheque_lightbox .item {
    margin-right: 14px;
}

/* all H6 - H1 */
.heading-lg h2 {
    font-size: 40px;
    font-family: "Lato Black", sans-serif;
    font-weight: bold;
    text-align: center;
    padding: 30px 0;
    color: #B42F27;
}

.slider-container .slider-item-content h1,
.slider-container .slider-item-content .slider-item-body>span {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    font-family: "Lato Bold", sans-serif;
}

.heading-lg h2::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #365E43;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.slider-item-action a {
    font-family: "Lato Bold", sans-serif;
}

.strategic-nav-item {
    font-family: "Lato Bold", sans-serif;
}

.strategic-item-label>span {
    font-family: "Lato Black", sans-serif;
    font-weight: bold;
}

.strategic-item-body p {
    font-family: "Lato Bold", sans-serif;
    font-weight: bold;
}

.strategic-item-type {
    font-family: "Lato Bold", sans-serif;
}

.prospective h3 {
    font-family: "Lato Black", sans-serif;
    font-size: 24px;
    color: #B42F27;
}

.all_box_phototheque .title-phototheque {
    position: absolute;
    bottom: 0;
    background: rgba(9, 9, 9, 0.71);
    height: 89px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    transition: all .35s ease-in-out;
    width: 100%;
}

.all_box_videotheque:hover .detail-box-video {
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    width: 100%;
}

.all_box_videotheque .title-phototheque {
    position: absolute;
    bottom: 0;
    background: rgba(9, 9, 9, 0.71);
    height: 89px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
}

.title-phototheque h3 {
    padding: 0px 45px 0 25px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    text-align: left;
    display: block;
    width: 100%;

    height: 60px;
    overflow: hidden;
    font-family: "Lato Bold", sans-serif;
}

.categorie-lien-social h4 {
    font-family: "Lato Bold", sans-serif;
    background: #B42F27;
    font-size: 18px;
    color: #fff;
    padding: 10px 19px;
    border-radius: 10px;
    width: max-content;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.all_box_phototheque:hover .title-phototheque,
.all_box_videotheque:hover .title-phototheque {
    height: 100%;
    border-radius: 10px;
    background: rgba(162, 12, 11, 0.44);
}

.all_box_videotheque:hover .title-phototheque {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filter-wp form {
    display: flex;
    padding: 11px 0 37px 0;
}

.filter-wp select,
.filter-champs input {
    background: #787d7929;
    border: 0 solid;
    border-radius: 10px;
    padding: 5px 35px 9px 10px;
    width: auto;
    font-size: 16px;
    color: #6e0309;
    outline: none;
    font-weight: 700;
    appearance: none;
    height: 45px;
}

.filter-parent .filter-champs input[type=text] {
    width: 185px;
}

.filter-wp select {
    background-image: url("../imgs/down-arrow.png");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.list--para-recrutement h2 {
    color: #B42F27;
    font-size: 22px;
    font-family: 'Lato Bold', sans-serif;
    padding: 15px 0;
}

.ressources_prospectives .paragraph--prospectives p {
    font-family: 'Lato Regular', sans-serif;
    color: #021726;
}

section.first--prospectives .list--para-recrutement ul li:last-child {
    padding-bottom: 0px;
}

section.first--prospectives .list--para-recrutement ul li {
    padding-bottom: 20px;

}

.all-list-para-recrutement p,
section.first--prospectives .list--para-recrutement ul li {
    font-size: 18px;
    color: #021726;

    font-family: 'Lato Regular', sans-serif;
    line-height: 30px;
}

section#table--recrutement tbody td a {
    color: #6E0309;
    font-size: 18px;
    font-family: 'Lato Bold', sans-serif;
}

section#table--recrutement tbody th {
    color: #021726;
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
}

.vocabulaire_ressource select,
.vocabulaire_ressource input,
.recrutement_ressource input,
.recrutement_ressource select {
    background: #fff;
}

.all_list_rapports,
.vocabulaire_ressource,
.prev-vocabulaire_ressource,
.recrutement_ressource,
.all_panel_international {
    background: rgba(214, 215, 218, 0.28);
    /* padding-top: 40px; */
}

section.first-slider-publication {
    background: #fff;
}

.img-slider-publication {
    width: 60%;
    overflow: hidden;
}


.all_list_rapports section.filter-parent {
    padding-top: 140px;
}

.filter-champs input::placeholder {
    font-size: 17px;
    color: #6E0309;
    outline: none;
    font-weight: bold;
}

.item--publication {
    display: flex;
    height: 543px;
    justify-content: space-between;
}

.filter-champs.submit-filter input {
    font-family: "Lato Bold", sans-serif;
    background: #FED25F;
    position: absolute;
    font-size: 18px;
    color: #262626;
    padding: 10px;
    border-radius: 10px;
    width: 140px;
    position: relative;
}

.img-slider-publication img {
    width: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.img-slider-publication:hover img {
    opacity: .75;
    transform: scale(1.1);
}

.filter-wp form .filter-champs {
    margin-right: 25px;
}

.slider-publication .owl-nav {
    position: absolute;
    right: 65px;
    bottom: 50px;
    display: flex;
}

.detail-slider-publication .list-box-flash-description .list-box-flash-paragraphe h2>a {
    width: auto;
    color: #fff;
    display: block;
    background: transparent;
    padding: 6px 0;
}

.all_box_videotheque:hover .gallrey_icon {}

.all_box_videotheque:hover .title-phototheque h3 {
    max-width: max-content;
    text-align: left;
    height: auto !important;
}

.all_box_videotheque:hover .gallrey_icon {
    height: 39px;
    width: 39px;
    position: absolute;
    bottom: 25px;
    right: 16px;

}

.detail-box-video .title-phototheque h3 {
    padding: 0;
    max-width: 270px;
}

.detail-box-video .title-phototheque {
    width: 100%;
    padding: 0px 45px 0 25px;
    display: flex;
    justify-content: space-between;
}

.detail-box-video .title-phototheque {
    width: 100%;
}

.all_box_phototheque:hover .title-phototheque h3,
.all_box_videotheque:hover .title-phototheque h3 {
    overflow: inherit;
    height: 100%;
    display: flex;
    align-items: center;
}

/*  */
.carde_list {
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    padding: 40px;
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: space-between;
}

.list--card--prospective_selon .carde_list {
    border-radius: 10px;
    margin-bottom: 0;
}

.all_types_de_veille {
    padding-bottom: 30px;
}

.content_carde_title h2 {
    color: #021726;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
}

.content_carde_btn a {
    font-family: "Lato Regular", sans-serif;
    color: #B42F27;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.content_carde_list div:first-child>a::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.content_carde_list div:first-child>a:hover::after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

.all_rencontres .meet-inner .meet-items {
    padding-bottom: 34px;
}

.content_carde_title {
    padding: 35px 36px 35px 0px;
}

.icon-title-pdf span {
    font-family: "Lato Bold", sans-serif;
    color: #B42F27;
    font-size: 18px;
    display: flex;
}

.icon-title-pdf {
    display: flex;

    align-items: center;

    flex-direction: column;
}

.icon-title-pdf img {
    object-fit: none;
    padding: 5px;
    margin: auto;
    display: block;
}

.all_card_ires_ailleurs,
.all_rencontres,
.all_list_rapports,
.all_nature_centric,
.all_presentation,
.ressources_prospectives {
    padding-bottom: 83px;
}

section#meet-list {
    background-color: transparent;
}

#meet-list .meet-item {
    margin-bottom: 0px;
    width: 48%;
    flex-grow: initial;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
}

#meet-list .meet-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lire_notre_actualites .meet-item img {
    height: 100%;
}

#meet-list .meet-item-img {
    /* height: 219px; */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#meet-list .meet-label span,
#meet-list .meet-item-body p {
    font-family: "Lato Bold", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

#meet-list .meet-label,
.meet .meet-label,
.meet-label {
    font-size: 14px;
    padding: 5px;
    background-color: #B42F27A3;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 180px;
    border-radius: 42px;
    letter-spacing: 0.4px;
    text-shadow: 0 0 2px #6C7179;
}

.newsletter-form form .form-actions {
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.newsletter-form form .form-actions::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.newsletter-form form .form-actions:hover::after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

span.category_rencontre {
    display: flex;
}

span.category_rencontre {
    font-size: 18px;
    font-family: 'Lato Regular', sans-serif;
}

#meet-list .meet-item-body {
    padding: 20px 15px;
}

.list_rapports .list-box-flash-img {
    height: 375px;
    background: white;
}

.list_rapports .list-box-flash-img img {
    object-fit: cover;
}

.list_rapports .list-box-flash,
#publication_carde .list-box-flash {
    background-color: #6C7179;
}

.img-detail>img {
    border-radius: 10px;
}

.detail_publication_rapport-strategique section.show-list-flash_info {
    padding-top: 70px;
}

.date-publicatoin-deatil span {
    color: #B42F27;
    font-size: 14px;
}

.date-publicatoin-deatil {
    margin-top: -27px;
    position: relative;
    top: -34px;
}

.date-publicatoin-deatil span {
    color: #B42F27;
    font-size: 14px;
}

#publication_carde .list-box-flash-paragraphe h2,
#publication_carde .list-box-flash-date span {
    color: #fff;
}

#publication_carde .list-box-flash:hover {
    background-color: #B42F27 !important;
}

.list_rapports .list-box-flash:hover {
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    transition: all .1s;
}

.nature_centric .list-box-flash-img {
    height: 423px;
}

.nature_centric .list-box-flash-paragraphe h2 {
    font-size: 25px;
    color: #B42F27;
}

.nature_centric .list-box-flash-paragraphe p {
    font-size: 18px;
    color: #021726;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nature_centric .list-box-flash:hover h2,
.nature_centric .list-box-flash:hover p {
    color: #fff;
}

.page_videotheque .pop-details>div:first-child {
    max-width: 90%;
    width: 90%;
}

/* arrow */
.list_arrow {
    display: flex;
    width: 129px;
    justify-content: space-between;
    margin-top: -25px;
    position: relative;
    top: 52px;
}

.list_arrow span {
    height: 39.29px;
    width: 39.29px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #B42F27;
}

.list_arrow span i {
    color: #B42F27;
}

/* presentation */
.menu_scroll_presentation li a {
    color: #B42F27;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Lato Bold', sans-serif;
    position: relative;
    padding: 20px 0;
}

.menu_scroll_presentation ul {
    display: flex;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    justify-content: space-around;
    height: 70px;
    align-items: center;
    background: #fff;
}

.all_presentation section {
    padding: 60px 0;
}

.presentation_royaux_info h4 {
    color: #6E0309;
    font-size: 18px;
    font-family: 'Lato Bold', sans-serif;
}

.presentation_royaux_info h3 {
    color: #6E0309;
    font-size: 18px;
    font-family: 'Lato Bold', sans-serif;
}

.presentation_royaux_info p {
    font-size: 18px;
    color: #021726;
    font-family: 'Lato Light', sans-serif;
}

.presentation_royaux_img img {
    height: 100%;
    width: 100%;
}

.presentation_royaux_img {
    /* height: 575px; */
}

.presentation_royaux .col-lg-7,
.presentation_general .col-lg-9 {
    text-align: center;
    margin: auto;
}

.presentation_royaux_btn {
    cursor: pointer;
    font-family: "Lato Bold", sans-serif;
    background: #FED25F;
    font-size: 18px;
    color: #262626;
    padding: 14px 19px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    width: max-content;
}

.presentation_ires_info {
    overflow: hidden;
    height: 212px;
    transition: all .5s;
}

.showing--txt .presentation_ires_info {
    overflow: hidden;
    height: 100%;
}

.presentation_royaux_info {
    padding: 20px 20px;
}

.presentation_royaux_info p {
    padding: 20px 0;
}

.presentation_royaux_info h3 {
    padding: 20px 0;
}

.presentation_royaux_btn:hover {
    color: #262626;
}

.all_presentation p,
.all_presentation ul li {
    line-height: 30px;
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
}

.presentation_ires .presentation_royaux_img {
    height: 490px;
}

.presentation_ires .presentation_royaux_img>div {
    height: 490px;
}

.presentation_ires .presentation-body {
    margin-top: 25px;
}

.presentation_ires ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "\f04b";
    left: -5px;
    font-size: 14px;
    top: 2px;
}

.presentation_ires li {
    position: relative;
    padding-left: 15px;
}

.all_presentation p {
    /* margin-bottom: 0; */
}

.presentation_ires .col-lg-12 {
    /* padding-top: 30px; */
}

.presentation_ires .col-lg-12 p span {
    margin-bottom: 10px;
    display: block;
}

.les_trois_vocations h3 {
    font-size: 22px;
    color: #6E0309;
    font-family: 'Lato Bold', sans-serif;
    text-align: center;
    padding: 30px 0;
}

.presentation_organisation_content span a {
    color: #B42F27;
    font-weight: bold;
    font-family: 'Lato Bold', sans-serif;
}

.presentation_organisation_content span a:hover {
    color: #B42F27;
}

.presentation_organisation_content span,
.presentation_royaux_info p span {
    color: #021726;
    font-weight: bold;
    font-family: 'Lato Bold', sans-serif;
}

.presentation_organisation_content {
    text-align: left;
}

.presentation_organisation_content .presentation_royaux_btn {
    margin-bottom: 0 !important;
    display: block;
    justify-content: center;
    align-items: center;
    margin-top: 30px !important;
    width: max-content;
    margin: auto;
}

.presentation_general .presentation_royaux_img {
    height: 375px;
}

.presentation_general .col-lg-3 {
    display: flex;
    align-items: center;
}

.all_presentation .cadre_decouvrir_plus:after {
    content: '';
    height: 55%;
    width: 100%;
    position: absolute;
    background: #6E0309;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
}

.all_presentation .cadre_decouvrir_plus .title-page-ires,
.cadre_decouvrir_plus .title-page-ires {
    z-index: 10;
    position: relative;
}

.all_presentation .cadre_decouvrir_plus .title-page-ires h2,
.cadre_decouvrir_plus .title-page-ires h2 {
    color: #fff;
}

.presentation_ires,
.presentation_general {
    background-color: rgba(214, 215, 218, 0.28)
}

section.presentation_menu {
    padding-bottom: 0;
    padding-top: 5px !important;
}

html {
    scroll-behavior: smooth
}

.menu_scroll_presentation li .inclick-href {
    color: #B42F27;
}

.les_trois_vocations_icon {
    display: flex;
    justify-content: center;
}

.detail-vocation h4 {
    color: #6E0309;
    font-size: 19px;
    padding-top: 15px;
    font-family: 'Lato Bold', sans-serif;
}

.detail-vocation p {
    font-size: 15px;
    color: #000F26;
    line-height: 25px;
}

.les_trois_vocations_detail {
    display: flex;
    justify-content: space-between;
    width: 85%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
}

.detail-vocation {
    width: 222px;
}

.les_trois_vocations_detail .detail-vocation:nth-child(2) {
    text-align: center;
}

.les_trois_vocations_detail .detail-vocation:nth-child(3) {
    text-align: right;
}

.les_trois_vocations_detail .detail-vocation:nth-child(1):before {
    content: url(../imgs/flash_info/left--1.png);
    position: relative;
}

.les_trois_vocations_detail .detail-vocation:nth-child(3):before {
    content: url(../imgs/flash_info/right--1.png);
    right: 22px;
    position: relative;
}

.les_trois_vocations_detail .detail-vocation:nth-child(2):before {
    content: url(../imgs/flash_info/top--1.png);
    position: relative;
}

.ires_think_tank {
    position: relative;
}

.les_trois_vocations_detail .detail-vocation:nth-child(2) {
    text-align: center;
    position: absolute;
    top: -165%;
    left: 0;
    right: 0;
    margin: auto;
}

.ires_think_tank {
    margin-top: 235px;
}

.les_trois_vocations {
    padding-bottom: 60px;
}

/* page Domaines de veille stratégique */
.analyse_box_care span {
    display: block;
    position: relative;
    width: 20%;
    padding-left: 30px;
}

.detail_domaines_strategique p {
    line-height: 30px;
    color: #021726;
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
}

.analyse_box_care {
    display: flex;
    padding: 35px 0 40px 0;
}

.analyse_box {
    background-color: #EBEBEB;
    border-radius: 10px;
}

.all_box_domaines_strategique {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.analyse_box {
    width: 32%;
}

.analyse_box_title h2 {
    color: #B42F27;
    font-size: 25px;
    font-family: 'Lato Bold', sans-serif;
    padding: 30px 20px 0px 20px;
}

.detail_analyse_box span {
    font-size: 18px;
    color: #021726;
    font-family: 'Lato Light', sans-serif;
}

.analyse_box_title {
    padding-bottom: 25px;
    border-bottom: 1px solid #707070;
}

.analyse_box {

    margin-bottom: 20px;
}

.detail_analyse_box {
    padding: 30px 20px 40px 20px;
}

.detail_analyse_box span {
    padding-bottom: 20px;
    display: block;
    padding-left: 30px;
    position: relative;
}

.detail_analyse_box span:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 17px;
    left: 0;
    top: 3px;
}

.detail_analyse_box span:nth-child(1):before {
    background: #6E0309;
}

.detail_analyse_box span:nth-child(2):before {
    background: #B42F27;
}

.detail_analyse_box span:nth-child(3):before {
    background: #6C7179;
}

.analyse_box_care span:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 17px;
    left: 0;
    top: 3px;
}

.analyse_box_care span:nth-child(1):before {
    background: #6E0309;
}

.analyse_box_care span:nth-child(2):before {
    background: #B42F27;
}

.analyse_box_care span:nth-child(3):before {
    background: #6C7179;
}

/*  */
.first_lien_social .img_popup_lien_social {
    height: 430px;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* background-color: #B42F27;     */
    /* box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    background-image: linear-gradient(rgba(255,255,255,0), rgba(0,0,0,0.8)); */
    /* box-shadow: 7px 1px 14px 1px rgb(0 0 0 / 25%);
    background-image: linear-gradient(rgba(255,255,255,0), rgba(0,0,0,0.8)); */
}

.first_lien_social .img_popup_lien_social>div:first-child {

    mix-blend-mode: multiply;
    display: block;
    z-index: 99999;
    z-index: 39;
}

.detail_domaines_strategique span a {
    font-family: 'Lato Bold', sans-serif;
    font-size: 18px;
}

.img_popup_lien_social img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.first_lien_social .img_popup_lien_social:hover div:not(.icon--play-social) img {
    opacity: .65;
    transform: scale(1.12);
}

.events-social {
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.img-events-social img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.detail-events-social p,
.detail-events-social p a {
    font-size: 18px;
    color: #6C7179;
    font-family: 'Lato Bold', sans-serif;
}

.detail-events-social span {
    font-size: 16px;
    color: #B42F27;
    font-family: 'Lato Bold', sans-serif;
    padding-bottom: 25px;
    display: block;
}

.detail-events-social {
    padding-left: 20px;
}

.all-events-social .events-social:first-child {
    margin-bottom: 40px;
}

section.first_lien_social .col-lg-12 {
    margin-right: -15px;
    margin-left: -15px;
    padding-bottom: 15px;
}

.title_lien_social span {
    font-size: 20px;
    color: #fff;
    font-family: "Lato Regular", sans-serif;
}

.title_lien_social {
    position: absolute;
    bottom: 38px;
    left: 32px;
    padding: 0 20px;
    z-index: 99;
}

.icon--play-social>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon--play-social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 74.47px;
    margin: auto;
    height: 100%;
}

.second_lien_social .publications-item {
    width: 25%;
}

.second_lien_social #second_lien_social {
    display: flex;
}

section.first_lien_social {
    padding-bottom: 40px;
}

section.second_lien_social {
    background: rgba(214, 215, 218, 0.28);
    padding: 40px 0 6px 0;
}

.third_lien_social {
    padding: 40px 0 0 0;
}

.second_lien_social .strategic-item-body>span>span {
    padding-right: 10px;
}

.third_lien_social .strategic-action {
    padding: 40px 0 35px 0;
}

.second_lien_social .strategic-item {
    height: 543px;
}

.second_lien_social .publications-item:nth-child(even) {
    margin-top: 60px;
}

.subtitle_decouvrir_plus {
    padding: 0 8px;
    text-align: center;
}

section.four_decouvrir_plus {
    background: rgba(214, 215, 218, 0.28);
    padding: 40px 0 40px 0;
}

.testmonial_area_holder.owl-carousel {
    display: block;
}

.right {
    position: absolute;
    top: 0;
}

.testmonial_area_holder .owl-item.active.center {
    transform: scale(1.4);
    z-index: 12;
}

.testmonial_area_holder .owl-item {
    transition: all .3s ease-in-out;
}

.content_carde_list div:first-child>a {
    font-family: "Lato Bold", sans-serif;
    background: #B42F27;
    font-size: 18px;
    color: #fff;
    border-radius: 10px;
    padding: 10px 40px;
    margin-bottom: 30px;
    display: inline-block;
}

.testmonial_area_holder .item .owl-item {
    transform: scale(0.8);
}

.testmonial_area_holder .item {
    position: relative;
    cursor: pointer;
    width: 364px;
    height: 220.68px;
    border-radius: 13px;
}

.testmonial_area_holder .items .owl-stage-outer .owl-stage {
    top: 47px;
}

.testmonial_area_holder .owl-stage-outer {
    height: 314.68px;
}

.testmonial_area_holder .item:after {
    opacity: 0;
}

.testmonial_area_holder .item:after {
    content: '';
    display: block;
    background-image: url(../imgs/flash_info/ply-center.png);
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 43.47px;
    width: 43.47px;
    transform: translate(-50%, -50%);
    background-size: contain;
}

.testmonial_area_holder .owl-item.active.center .item:after {
    opacity: 1;
}

.testmonial_area_holder .owl-item.active.center .item:before {
    background: rgba(162, 12, 11, 0.44);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 10px;
}

.testmonial_area_holder .owl-nav {
    position: absolute;
    top: -80px;
    right: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testmonial_area_holder .popup-photo-close:hover {
    background-color: transparent !important;
}

.testmonial_area_holder .mediatheque-videos--carousel .owl-stage-outer {
    height: max-content;
    /* top: 22px; */
    overflow: initial;
}

.publications-carousel img {
    width: 100%;
    height: 100%;
}

.img-content-popup iframe {
    width: 100%;
    height: 100%;
}

.testmonial_area_holder .modal-body {
    overflow: hidden;
    padding: 0;
    min-height: 500px;
    height: 500px;
}

.testmonial_area_holder button.owl-next,
.testmonial_area_holder button.owl-prev {
    height: 44px;
    width: 44px;
    border: 1px solid #B42F27 !important;
    border-radius: 30px !important;
    display: flex;
    align-items: center;
    background: #fff !important;
    justify-content: center;
}

.slider-publication button.owl-prev,
.slider-publication button.owl-next {
    height: 44px;
    width: 44px;
    border: 1px solid #fff !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-publication button.owl-prev {
    position: relative;
    right: 15px;
}

.slider-publication button i {
    color: #fff;
}

.testmonial_area_holder button i {
    font-size: 21px;
    color: #B42F27;
}

.testmonial_area_holder button:hover {
    background-color: #B42F27 !important;
}

.testmonial_area_holder button:hover i {
    color: #fff;
}

.testmonial_area_holder .videotheque-video--src iframe {
    display: none;
    width: 100%;
}

.slider_cetrale .modal-mediatheque-videos .videotheque-video--src {
    height: 500px;
}

.testmonial_area_holder .item .videotheque-video--src {
    display: block;
    position: absolute;
    bottom: 30px;
    margin: auto;
    width: 100%;
    text-align: center;
}

.testmonial_area_holder .videotheque-video--src span.gallrey-titre {
    font-size: 12px;
    color: #fff;
    font-family: 'Lato Regular', sans-serif;
    text-align: center;
    margin: auto;
    width: 100%;
}

.testmonial_area_holder .videotheque-video--src span.gallrey-titre {
    opacity: 0;
}

.testmonial_area_holder .owl-item.active.center .videotheque-video--src span.gallrey-titre {
    opacity: 1;
}

.detail-slider-publication {
    background: #B42F27;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    width: 40%;
    align-items: center;
}

.slider-publication {
    position: relative;
    top: 94px;
    margin-top: -74px;
}

.slider-publication .owl-stage-outer {
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    border-radius: 10px;
}

.slider-publication button:hover {
    background: #fff !important;
}

.slider-publication button:hover i {
    color: #B42F27;
}

.detail-slider-publication h2,
.detail-slider-publication span {
    color: #fff;
}

.detail-slider-publication .list-box-flash-paragraphe {
    padding: 30px 0;
}

.detail-slider-publication .list-box-flash-date span:first-child {
    padding-bottom: 30px;
}

.detail-slider-publication .list-box-flash-description a {
    font-family: "Lato Bold", sans-serif;
    background: #fff;
    font-size: 18px;
    color: #B42F27;
    padding: 6px 19px;
    border-radius: 10px;
    width: auto;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs-inner-text-box {
    display: none;
    padding: 30px 0;
}

.tabs-inner-text-box:first-child {
    display: block;
}

.tabs-inner-text-box .page_phototheque .item {
    margin-right: 14px;
    margin-top: 0;
}

button.infos-de-linsta-parent-tab {
    background: #6C7179;
    color: #fff;
    border: 0;
}

.tabs-inner-text-box .page_phototheque {
    padding-top: 0;
}

button.infos-de-linsta-parent-tab.tab-active-bg {
    background: #FED25F;
    color: #262626;
}

.lire_notre_actualites .meet-item-img {
    /* height: 220px; */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

section.lire_notre_actualites .meet-item {
    height: 270px;
}

.tabs-inner-text-box section#gallery-pop-up-video {
    padding: 40px 0px 0px;
}

.slider_cetrale .owl-carousel,
.slider_cetrale .modal-mediatheque-videos .videotheque-video--src {
    display: block;
}

.modal-mediatheque-videos .modal-content {
    background-color: transparent;
    border: 0px solid rgba(0, 0, 0, .2);
    z-index: 6033;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    background: none;
    overflow: auto;
    height: 600px;
}

div#showing {
    transition-duration: .3s;
    display: flex;
    align-items: center;
    margin: 0 !important;
}

.modal-mediatheque-videos .modal-dialog {
    max-width: 65%;
    width: 65%;
}

.modal-mediatheque-videos .modal-footer {
    border-top: 0px solid rgb(222, 226, 230);
    height: 116px;
    padding: 0 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testmonial_area_holder .videotheque-video--src iframe {
    display: block !important;
    height: 411px;
}

.testmonial_area_holder .modal-body {
    /* overflow-y: auto; */
    padding: 0;
}

.testmonial_area_holder .mediatheque-videos--carousel .owl-nav {

    position: absolute;
    top: 55%;
    right: auto;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

span.bloc-gallrey-titre {
    position: absolute;
    font-family: "Lato Regular", sans-serif;
    font-size: 22px;
    color: #0C1C2B;
    margin-bottom: 0;
    height: 116px;
    padding: 0 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.all_presentation .presentation_royaux_btn {
    display: inline-block;
}

.lire_notre_actualites .meet-item {
    margin-bottom: 0px;
    width: 48%;
    flex-grow: initial;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
}

.lire_notre_actualites .meet-items.col-lg-12 {
    display: flex;
    justify-content: space-between;
}

.filter-parent .filter-champs input {
    padding: 9px;
    margin-top: 0;
}

.element_popup div:last-child {
    display: flex;
    width: 78px;
    justify-content: space-between;
    align-items: center;
}

/* .element_popup div:first-child {
    max-width: 90%;
    width: 90%;
} */
.element_popup div:first-child {
    max-width: 90%;
    width: 90%;
}

#multilangue--ires #dropdownMenuButton {
    font-size: 18px;
    font-family: 'Lato Regular', sans-serif;
    color: #fff;
    width: 88px;
    display: flex;
    text-transform: capitalize;
    justify-content: space-around;
}

#multilangue--ires span.language-link,
#multilangue--ires a.language-link {
    width: 100%;
    display: block;
    text-transform: capitalize;
    color: #fff;
    padding: 5px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

.lang-inline {
  gap: 5px;
}

#multilangue--ires span.language-link {
  opacity: .65;
}

#multilangue--ires a.language-link:hover {
    background-color: #B42F27;
    color: #fff;
}

.top-bar-nav-items .top-bar-nav-item a>span:after {
    border-bottom: solid 4px #ffffff;
    content: '';
    width: 0;
    height: 5px;
    position: absolute;
    left: 0;
    text-align: center;
    display: block;
    margin: auto;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.top-bar-nav-items .top-bar-nav-item a>span:hover:after {
    width: 36px;
    opacity: 1;
}

.showmostdropdown>li>a {
    font-size: 16px;
    font-family: 'Lato Regular', sans-serif;
    color: #000000;
}

.li_with_arrow a.list-product-cat:after {
    content: "\f078";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    color: #B42F27;
    float: right;
}
/*
div#multilangue--ires::after {
    content: "";
    background-image: url(../imgs/flash_info/multi--langue.png);
    position: absolute;
    top: auto;
    width: 16px;
    height: 7px;
    right: -18px;
    background-size: contain;
    background-repeat: no-repeat;
}
*/

div#multilangue--ires {
    left: 0px !important;
}

div#multilangue--ires .dropdown-menu {
    top: 0 !important;
    min-width: 100px;
}

#multilangue--ires:hover .dropdown-menu {
    /* display: block;
    position: absolute;
    top: 57px; */
}

div#multilangue--ires .btn:focus {
    outline: 0;
    box-shadow: initial;
}

div#multilangue--ires .dropdown-toggle::after {
    display: none;
}

.media-lib .videotheque_lightbox .item,
div#phototheque--box .views-element-container .item {
    margin-right: 0px;
}

.media--items.media-video-items.page_phototheque.videotheque_lightbox {
    padding-top: 90px;
}

div#phototheque--box .views-element-container {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    padding: 40px 0 0 0;
    gap: 20px;
    display: flex;
}

.publications .publications-carousel {
    width: auto;
}

.all-videotheque_lightbox .item {
    margin-right: 13px !important;
    cursor: pointer;
    width: 32%;
    position: relative;
    margin-bottom: 2%;
    border-radius: 10px;
    color: #fff;
    box-sizing: border-box;
}

div#multilangue--ires {
    height: 40px;
    display: flex;
    align-items: center;
    left: 13px;
}

/* / Menu style / */
.menu-level-1 {
    /* position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 20;
    padding-right: 0px;
    padding-left: 0px;
    top: 110px;
    display: none; */
    position: absolute;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 20;
    padding: 45px 0;
    top: 65px;
    opacity: 0;
    visibility: hidden;
    transform: scale(.65);
    transform-origin: top center;
    transition: all .3s ease-in-out, opacity .2s ease-in-out;
}

.hover-stable-line .menu-level-1 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

section.meet h2 {
    color: #fff;
}

section.meet h2:after {
    background-color: #fff;
}

.main-menu .main-menu-inner {
    justify-content: space-between;
    position: relative;
}

.main-menu .main-menu-nav-items>ul {
    display: flex;
    margin-bottom: 0;
}



@media (min-width: 992px) {
    .header-inner {
        height: 142px;
    }

    .main-menu .main-menu-inner>div:not(.search) {
        flex-grow: 1;
    }

    .main-menu .main-menu-nav-items>ul {
        justify-content: space-between;
        width: 100%;
        padding-right: 20px;
    }
}

@media (min-width: 1200px) {
    .header-inner {
        height: 180px;
    }
}

.main-menu .main-menu-nav-items ul li {
    margin: 0 0px 0 auto;
}

.main-menu .main-menu-nav-items {
    padding: 0 0px 0 15px;
}

.main-menu .main-menu-nav-items .menu-subs-inner ul li {
    margin: 19px 0px 19px 0px;
}

.menu-subs-inner {
    border-top: solid 1px rgba(112, 112, 112, 0.5);
    background-color: #fff;
    padding-top: 15px;
    padding-top: 15px;
    border-bottom: solid 1px rgba(112, 112, 112, 0.5);
    box-shadow: 0 14px 11px -2px rgb(0 0 0 / 12%);
}

/* .main-menu .main-menu-nav-items>ul>li:nth-child(1) .menu-subs-inner{
    padding-top: 20px;
} */
.main-menu .main-menu-nav-items>ul>li:nth-child(2) .menu-subs-inner {
    padding-top: 0px;
}

.menu-level-1>.menu-subs-inner>ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 5px 20px;
    margin: 0;
}

.menu-subs-col {
    padding: 0 15px;
    box-sizing: border-box;
    /* border-right: solid 1px rgba(112, 112, 112, 0.5); */
    height: 100%;
}

.main-menu .main-menu-nav-items>ul>li:nth-child(1) .sub-menu-item-title img {

    height: 229px;
    position: absolute;
    width: 355px;
    max-width: initial;
    top: 11px;
}

.menu--item-title span {
    font-size: 16px;
    color: #6E0309;
    font-family: 'Lato Bold', sans-serif;
}

.sub-menu-item-title a {
    font-size: 16px;
    color: #000000;
    font-family: 'Lato Regular', sans-serif;
    position: relative;
    transition: all .3s ease-in-out;
}

.sub-menu-item-title a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #B42F27;
    transition: width .3s ease-in-out;
}

.sub-menu-item-title a:hover {
    color: #B42F27;
}

.sub-menu-item-title a:hover::after {
    width: 100%;
}

.main-menu .menu--item-subs ul>li {
    padding: 0;
    margin: 20px 0;
}

/* sous menu */
/* .main-menu .main-menu-nav-items>ul>li:nth-child(3) .menu-subs-inner {
    padding-top: 0;
} */

.main-menu .main-menu-nav-items>ul>li:nth-child(3) .menu--item-subs.menu-level-2 ul {
    display: flex;
    justify-content: space-between;
}

/* .main-menu .main-menu-nav-items>ul>li:nth-child(3) .menu-level-1>.menu-subs-inner>ul {
    display: block;
} */

/*  */
/* .main-menu .main-menu-nav-items>ul>li:nth-child(4) .menu-subs-inner {
    padding-top: 0;
} */

.main-menu .main-menu-nav-items>ul>li:nth-child(4) .menu--item-subs.menu-level-2 ul {
    display: flex;
    justify-content: space-between;
}

/* .main-menu .main-menu-nav-items>ul>li:nth-child(4) .menu-level-1>.menu-subs-inner>ul {
    display: block;
} */

.main-menu .main-menu-nav-items>ul>li:nth-child(4) .sub-menu-item-title a,
.main-menu .main-menu-nav-items>ul>li:nth-child(3) .sub-menu-item-title a,
.main-menu .main-menu-nav-items>ul>li:nth-child(2) .sub-menu-item-title a {
    font-size: 16px;
    color: #6E0309;
    font-family: 'Lato Bold', sans-serif;
}

.main-menu .main-menu-nav-items>ul>li:nth-child(2) .menu-subs-inner>ul {
    display: block;
}

.main-menu .main-menu-nav-items>ul>li:nth-child(2) .menu--item-subs.menu-level-2 ul {
    display: grid;
    grid-gap: 6px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.img--menu {
    width: 300px;
    height: 250px;
    position: absolute;
    top: 0;
    right: 0;
}

.img--menu img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main-menu .main-menu-nav-items>ul>li:nth-child(2) .menu--item-subs.menu-level-2 {
    display: flex;
    position: relative;
    justify-content: space-between;
}

section.second_lien_social .container-fluid {
    overflow-x: hidden;
}

li.hover-stable-line:hover>a {
    /* border-bottom: solid 2px #B42F27;
    position: relative;
    content: '';
    top: 11px;
    left: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100px;
    margin: auto;
    display: block; */

}

li .main-menu-nav-item span::after {
    border-bottom: solid 4px #B42F27;
    content: '';
    width: 0;
    height: 10px;
    position: absolute;
    left: 0;
    text-align: center;
    display: block;
    margin: auto;
    right: 0;
    transition: all .3s ease-in-out;
    opacity: 0;
}

li.hover-stable-line .main-menu-nav-item span::after {
    opacity: 1;
    width: 80%;
}

#publication_carde .list-box-flash-description {
    min-height: 247px;
}

.publications .box-date span {
    font-size: 18px;
}

.second_lien_social .strategic-item-body span {
    font-size: 18px;
}

.show-list-flash_info .list-box-flash-img>div {
    height: 390px;
}

.list-box-flash-paragraphe span {
    font-family: "Lato Bold", sans-serif;
    font-size: 18px;
    color: #6C7179;
    line-height: 30px;
}

.show-list-flash_info .list-box-flash-date {
    display: flex;
    margin-top: 15px;
}

.list-box-flash:hover .list-box-flash-paragraphe span {
    color: #fff;
    transition: all .5s;
}

a.main-menu-nav-item>span {
    position: relative;
}

/* Table  */
.table--vocabulaire .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    background-color: #fff;
}

#table--vocabulaire .table {
    width: 94%;
}

.table--vocabulaire thead {
    background-color: #6E0309;
    color: #fff;
}

.table--vocabulaire {
    padding-bottom: 30px;
}

.table--vocabulaire .table thead th {
    vertical-align: bottom;
    border-bottom: 0px solid #dee2e6;
    font-size: 22px;
    font-family: 'Lato Bold', sans-serif;
    padding: 15px 30px;

}

.table--vocabulaire .table thead th:first-child {
    border-top-left-radius: 10px;
}

.table--vocabulaire .table thead th:last-child {
    border-top-right-radius: 10px;
}

.table--vocabulaire tbody th {
    color: #6E0309;
    font-size: 18px;
    font-family: 'Lato Bold', sans-serif;
    width: 30%;
    text-transform: capitalize;
    padding: 30px;
}

.table--vocabulaire tbody tr {
    width: 100%;
}

.table--vocabulaire tbody td {
    font-size: 16px;
    color: #021726;
    line-height: 30px;
    padding: 30px;
    width: 70%;
}

.all-card--vocabulaire .card {
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    background-color: #fff;
    padding: .375rem .75rem;
}

.all-card--vocabulaire {}

.all-card--vocabulaire .btn-link:focus,
.all-card--vocabulaire .btn-link:hover {
    text-decoration: none;
}

.all-card--vocabulaire .btn:focus {
    outline: 0;
    box-shadow: INHERIT;
}

.all-card--vocabulaire .card-header:first-child {
    border-radius: 0;
    border-bottom: 0px solid rgba(0, 0, 0, .125);
    background: transparent;
}

.all-card--vocabulaire .card-body {
    font-size: 22px;
    color: #021726;
    line-height: 30px;
}

.all-card--vocabulaire .card-header button {
    color: #B42F27;
    font-size: 22px;
    font-family: 'Lato Bold', sans-serif;
}

.all-card--vocabulaire button.btn.btn-link {
    width: 100%;
    display: flex;
    padding: 0;
    position: relative;
    justify-content: space-between;
}

.all-card--vocabulaire button:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "\f062";
    right: 0;
    font-size: 31px;
    top: 2px;
}

.all-card--vocabulaire button.d-flex.align-items-center.justify-content-between.btn.btn-link.collapsed:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "\f063";
    right: 0;
    font-size: 26px;

}

.all-card--vocabulaire {}

.table--vocabulaire {}

section#publication_carde {
    padding-bottom: 100px;
}

.date-publicatoin-deatil span {
    display: flex;
    align-items: center;
}

.date-publicatoin-deatil span i {
    padding-right: 15px;
}

#publication_carde .col-lg-4 {
    position: relative;
    top: 17px;
}

div#block-onglets {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

#block-onglets ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    border-bottom: solid 1px #B42F27;
    justify-content: center;
}

div#block-onglets ul li a {
    display: inline-block;
    padding: 15px 15px;
    color: #B42F27;
    font-size: 18px;
    font-family: 'Lato Regular', sans-serif;
}

#meet-list h2 {
    color: #B42F27;
}

.second_lien_social .publications-carousel {
    padding-left: initial;
    width: auto;
}

form#user-login-form {
    padding-top: 20px;
}

form#user-login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 91px;
}

form#user-login-form>div {
    margin-bottom: 10px;
}

div#block-mainpagecontent {
    /* width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px; */
}

form#user-login-form label {
    font-family: 'Lato Regular', sans-serif;
    font-size: 18px;
}

form#user-login-form input {
    outline: none;
    border: 1px solid #B42F27;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 13px;
}

form#user-login-form div#edit-name--description {
    max-width: 500px;
}

form#user-login-form input[type="submit"] {
    padding: 10px 43px;
    text-indent: 0px;
    margin: 20px 0px;
    color: white;
    transition: all .2s ease-in-out;
    background-color: #B42F27;
}

span.show--hover {
    opacity: 0;
}

.testmonial_area_holder .owl-item.active.center span.show--hover {
    position: absolute;
    bottom: 8px;
    padding: 0 17px;
    font-size: 14px;
    font-family: 'Lato Regular', sans-serif;
    color: #fff;
    opacity: 1;
}

.main-menu .contextual-region {
    position: initial;
}

.publications .owl-stage-outer {
    overflow-x: clip;
}

section.all-accordion {
    padding: 40px 0;
}

.first_lien_social .img_popup_lien_social>div:first-child {
    height: 435px;
    cursor: pointer;
}

.events-social .img-events-social img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.events-social .img-events-social {
    height: 194px;
    overflow: hidden;
    flex: 0 0 220px;
}

.img_holder img {
    height: 100%;
    border-radius: 10px;
}

.img_holder {
    height: 220px;
}

.block-form-search {
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    right: 0;
    width: 100%;
    height: 85px;
    padding-top: 12px;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    border-top: 4px solid var(--red-500);
    display: none;
    border-bottom: 2px solid #B42F27;
    z-index: 22;
}

.block-form-search input[type="text"] {
    width: 90%;
    padding: 5px 10px;
    background: transparent;
    margin-left: 34px;
    border: none;
    border-bottom: 1px solid #B42F27;
    outline: none;
    margin-top: 7px;
}

.btn-close-form-search {
    cursor: pointer;
    background: #B42F27;
    color: #fff;
    margin-right: 34px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px;
}

.block-form-search form {
    display: flex;
}

.submit--search input {
    width: 27px;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid;
    border-color: #707070;
    outline: 0;
    background-repeat: no-repeat;
    color: transparent;
}

.search>i {
    color: #B42F27;
    font-size: 20px;
}

.search {
    cursor: pointer;
}

/* .submit--search:before {
    content: "\f002";
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    font-weight: var(--fa-style,900);
    color: #B42F27;
    font-size: 20px;
} */
.submit--search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
}

.submit--search input {
    display: inline-block;
    background: transparent;
    position: absolute;
    transform: translate(0%, -55%);
    border: 0;
    margin: 0;
    padding: 0;
    height: 20px;
    width: 20px;
    background-image: url(../imgs/flash_info/search---icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 50%;
}

section.lire_notre_actualites .meet-items.col-lg-12 {
    position: relative;
    top: -15px;
}

.paragraph--prospectives p {
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
    line-height: 30px;
}

section.first--prospectives ul li {
    position: relative;
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
    line-height: 30px;
    padding-left: 26px;
}

section.first--prospectives ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "o";
    content: "\f04b";
    left: 0;
    font-size: 15px;
    top: 2px;
}

section.first--prospectives ul {
    padding-left: 30px;
}

section.Last--prospectives {
    background-color: rgba(214, 215, 218, 0.28);
    padding-top: 60px;
    padding-bottom: 100px;
}

.carre-5 {
    max-width: 50%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    background: #B42F27;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-bottom: 80px;

}

.box-carre:nth-child(1),
.box-carre:nth-child(2) {
    border-bottom: 2px solid #fff;
}

.box-carre {
    height: 201px;
    width: 50%;
    cursor: pointer;
    align-items: center;
    display: flex;
    text-align: center;

}

.box-carre h3 {
    width: 100%;
    color: #fff;
    font-size: 24px;
    font-family: 'Lato Bold', sans-serif;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carre-5 .box-carre:nth-child(3) {
    background: #B42F27;
    width: 174px;
    height: 174px;
    outline: 2px solid;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(45deg);
    top: 111px;
    position: absolute;
    left: 0px;
    right: 3px;
    margin: auto;
    background-color: #B42F27;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;

    text-align: center;
    font-weight: bold;

}

.box-carre:nth-child(1) h3,
.box-carre:nth-child(2) h3 {
    position: relative;
    top: -18px;
}

.box-carre:nth-child(4) h3,
.box-carre:nth-child(5) h3 {
    position: relative;
    bottom: -27px;
    padding: 0 17px;
}

.carre-5 .box-carre:nth-child(3) h3 {
    transform: rotate(-45deg);
    text-align: center;
}

.box-carre:nth-child(1),
.box-carre:nth-child(4) {
    border-right: 2px solid #fff;
}

.box-carre:hover,
.carre-5 .box-carre:nth-child(3):hover {
    background: #6E0309;
}

.box-carre a {
    width: 100%;
}

.img--prospective-selon img {
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
}

.img--prospective-selon {
    height: 343.87px;
}

.title--prospective-selon h2 {
    font-size: 18px;
    color: #B42F27;
    font-family: 'Lato Bold', sans-serif;
    line-height: 30px;
}

.title--prospective-selon {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 97px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
}

section.list-prospective-selon {
    padding-bottom: 100px;
}

.prospective_selon,
.prospective_selon_deatil,
.all_types_de_veille {
    background-color: rgba(214, 215, 218, 0.28);
}

.box-prospective-selon {
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    border-radius: 10px;
}

section.list-prospective-selon .col-lg-4 {
    margin-bottom: 30px;
}

section.list-prospective-selon .col-lg-4 a:hover .title--prospective-selon {
    background: #B42F27;
}

.all_types_de_veille section.all-accordion {
    padding-top: 0;
}

section.list-prospective-selon .col-lg-4 a:hover .title--prospective-selon h2 {
    color: #fff;
}

.img-card--prospective>div {
    height: 266.69px;
}

.img-card--prospective img {
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.prospective-detail {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.body-prospective-detail {
    width: 70%;
}

.img-prospective-detail {
    width: 265.7px;
    height: 100%;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    border-radius: 10px;

}

.prospective-detail .info--img-detail h5:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #6C7179;
    position: absolute;
    content: "\f3c5";
    left: 0;
    font-size: 15px;
    top: 2px;
}

.body-prospective-detail .date-publicatoin-deatil span {
    font-size: 18px;
}

.body-prospective-detail .date-publicatoin-deatil span img {
    padding-right: 10px;
}

.prospective-detail-card h3 {
    padding: 30px 0;
    color: #6E0309;
    font-family: 'Lato Bold', sans-serif;
}

li .inclick-href {
    position: relative;
}

.all_presentation ul li {
    height: 100%;
}

li .inclick-href:after {
    border-bottom: solid 2px #B42F27;
    content: '';
    border-width: 4px;
    width: 100px;

    position: absolute;
    left: 0;
    text-align: center;
    display: block;
    margin: auto;
    right: 0;
    bottom: 0;
}

.presentation_menu ul li a:hover:after {
    border-bottom: solid 2px #B42F27;
    content: '';
    border-width: 4px;
    width: 62px;

    position: absolute;
    left: 0;
    text-align: center;
    display: block;
    margin: auto;
    right: 0;
    bottom: 0;
}

.menu_scroll_presentation li a {

    display: flex;
}

section.presentation_menu.menu_fixed {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
}

.main-menu.menu_fixed {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.panel_international .menu_scroll_presentation li a {
    padding: 0px 20px;
    font-family: 'Lato Regular', sans-serif;
    text-align: center;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.panel_international .menu_scroll_presentation li {
    text-align: center;
    height: 100%;
}

.panel_international .inclick-href:after,
.panel_international .inclick-href:after,
.panel_international ul li:hover a:after {
    height: auto;
    bottom: 0;
}

.menu_scroll_presentation li {
    position: relative;
}

.panel_international_accordion .img--prospective-selon {
    height: 245px;
}

.panel_international_accordion .title--prospective-selon {
    background: #6C7179;
}

.panel_international_accordion .title--prospective-selon h2 {
    color: #fff;
}

.panel_international_accordion .col-lg-3 a:hover .title--prospective-selon {
    background: #B42F27;
}

.panel_international_accordion .col-lg-3 {
    margin-bottom: 30px;
}

section.first--prospectives ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "o";
    content: "\f04b";
    left: 0;
    font-size: 15px;
    top: 2px;
}

.panel_international_accordion .card ul li:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "o";
    content: "\f04b";
    left: -5px;
    font-size: 15px;
    top: 2px;
}

.panel_international_accordion ul li {
    position: relative;
}

.panel_international_accordion ul {
    padding-left: 0;
}

.panel_international_accordion ul li {
    position: relative;
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
    line-height: 30px;
    padding-left: 14px;
}

.panel_international_accordion p {
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
    line-height: 30px;
}

.panel_international_accordion .card-body h3 {
    text-align: center;
    color: #B42F27;
    font-size: 18px;
    /* letter-spacing: 2px; */
    padding: 30px 0;
    font-family: 'Lato Bold', sans-serif;
}

.img-panel_international img {
    width: 100%;
    height: 100%;
    object-fit: none;
}

.img-panel_international {
    /* height: 573px; */
}

.panel_international_accordion li a {
    color: #B42F27;
    font-family: 'Lato Bold', sans-serif;
}

.panel_international_accordion p strong,
.panel_international_accordion li strong,
section.first--prospectives ul li strong {
    font-family: 'Lato Bold', sans-serif;
}

.filter-affiche span {
    color: #6E0309;
    font-size: 18px;
    font-family: 'Lato Bold', sans-serif;
}

.filter-affiche-select select {
    width: 100px;
}

section.all-table--vocabulaire .row {
    width: 100%;
}

section.filter-affiche form {
    justify-content: right;
    position: relative;
    right: 20px;
    float: right;
}

section.filter-affiche {
    margin-top: -88px;
}

.filter-mots-cecle span {
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6E0309;
    font-size: 18px;
    font-family: 'Lato Bold', sans-serif;
    margin-bottom: 10px;
}

.filter-mots-cecle {
    display: flex;
    z-index: 99;
    flex-direction: column;
    position: relative;
    top: 87px
}

section.filter-mots form {
    justify-content: right;
    position: relative;
    right: 37px;
}

section.filter-mots {
    margin-top: 36px;
    position: absolute;
    width: 100%;
}

.filter-mots-cecle span:hover {
    color: #fff;
    background: #B42F27;
}

.filter-mots-cecle span,
.filter-wp select {
    cursor: pointer;
}

.panel_international_gallery .videotheque_lightbox .item {
    margin-right: 0;
    margin-top: 0;
}

.panel_international_gallery .gallrey_icon img {
    object-fit: none;
}

.panel_international_gallery h2::after {
    opacity: 0;
    display: none;
}

.panel_international_gallery .media--items {
    padding-top: 25px !important;
}

.body--international h2 {
    color: #B42F27;
    padding-bottom: 20px;
    font-size: 22px;
    font-family: 'Lato Bold', sans-serif;
    text-align: center;
}

.body--international p {
    font-size: 22px;

    color: #021726;
    line-height: 30px;
    font-family: 'Lato Regular', sans-serif;
}

.body--international {
    padding: 25px 0;
}

.btn--international a {
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    height: 91px;
    color: #B42F27;
    font-family: 'Lato Bold', sans-serif;
    font-size: 18px;
    background: #fff;
    width: 49%;
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wysiwyg-title .btn--international a:hover {
    color: #262626;
    background: #FED25F;
    transition: all .3s ease-in-out;
}

.btn--international {
    display: flex;
    justify-content: space-evenly;
}

section.panel-international-body {
    padding: 0px 0 30px 0;
}

.all-card--vocabulaire .card .card-header>h2 {
    color: #B42F27;
    font-size: 22px;
    font-family: 'Lato Bold', sans-serif;
    padding-top: 20px;
}

#phototheque--box .item {
    margin-right: 14px;
    /* margin-top: 0; */
}

.all_box_videotheque .gallrey_icon {
    height: 39px;
    width: 39px;
    position: absolute;
    bottom: 25px;
    right: 16px;
}

.body--presentation-glossaire p {
    font-size: 18px;
    color: #021726;
    line-height: 30px;
}

.body--presentation-glossaire a {
    display: flex;
    background-color: #B42F27;
    width: 90%;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
}

section.presentation_glossaire .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.base_de_donnes h2 {
    font-size: 25px;
    color: #B42F27;
    text-align: left;
    width: 100%;
    font-family: 'Lato Bold', sans-serif;
}

ul.ascenseur-fix li {
    margin-bottom: 10px;
}

ul.ascenseur-fix a {
    height: 20px;
    width: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    justify-content: center;
    color: #6E0309;
    font-size: 12px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
}

ul.ascenseur-fix li .inclick-href:after {
    display: none;
}

.body--glossaire h3,
.body--glossaire h2 {
    margin-bottom: 0;
}

.body--glossaire {
    margin: 25px 0;
}

.body--glossaire h3,
.body--glossaire p {
    margin-bottom: 25px;
}

.body--glossaire h2 {
    margin-bottom: 25px;
    color: #B42F27;
    font-size: 60px;
    text-transform: capitalize;
}

ul.ascenseur-fix a.inclick-href {
    background: #B42F27;
    color: #fff;
}

ul.ascenseur-fix li:hover a {
    background: #B42F27;
    color: #fff;
}

.body--glossaire h3 {
    font-size: 18px;
    color: #6E0309;
}

.ascenseur-fix {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    left: -52px;
}

section.base_de_donnes p {
    color: #021726;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}

.base_de_donnes .col-lg-6 {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.all_base_de_donnes,
.all_presentation_glossaire_marocain {
    background-color: rgba(214, 215, 218, 0.28);
}

.base_de_donnes .col-lg-6 a {
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
    width: 100%;
}

.presentation_glossaire,
.content--body--glossaire {
    padding-bottom: 83px;
}

.img--presentation-glossaire img {
    height: 100%;
    width: 100%;
}

.img--presentation-glossaire {
    height: 573px;
}

#section--mobile,
div#main-menu-responsive {
    display: none;
}

ul#menu-second-main-mobile {
    display: none;
}

/* Style Gallery slider */
.blocks-gallery-grid {
    width: 100%;
}

.blocks-gallery-grid .owl-stage {
    background-color: rgba(30, 144, 255, 0.2);
}

.blocks-gallery-grid .owl-item {
    padding: 0;
    position: relative;
    opacity: 0.5;
}

.blocks-gallery-grid figure {
    margin: 0;
}

.blocks-gallery-grid .owl-item img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.blocks-gallery-grid .center {
    opacity: 1;
    transform: scale(1.005);
    transition: 0.5s ease-in-out;
    z-index: 9999;
}

.blocks-gallery-grid .owl-controls .owl-nav {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
}

.blocks-gallery-grid .owl-nav .owl-prev,
.blocks-gallery-grid .owl-nav .owl-next {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-100%);
    width: 50px;
    height: 50px;
    color: white !important;
    background-color: #B42F27 !important;
    transition: all 0.3s ease-in-out;
}

.blocks-gallery-grid .owl-nav .owl-prev {
    left: 10px;
}

.blocks-gallery-grid .owl-nav .owl-next {
    right: 10px;
}

.blocks-gallery-grid .owl-nav .owl-prev:hover {
    opacity: 0.95;
    left: 0;
}

.blocks-gallery-grid .owl-nav .owl-next:hover {
    opacity: 0.95;
    right: 0;
}

.blocks-gallery-grid .owl-thumbs {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
}

.blocks-gallery-grid .owl-thumb-item {
    width: 90px;
    flex: 0 0 90px;
    height: 90px;
    border: none;
    background: none;
    padding: 0;
    opacity: 0.7;
    overflow: hidden;
    margin: 20px 10px;
}

.blocks-gallery-grid .owl-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blocks-gallery-grid .owl-thumb-item.active {
    opacity: 1;
}

.blocks-gallery-grid .owl-thumb-item.active img {
    position: relative;
}

/* END/ Style Gallery slider */

/* Resposnive */
/* Resposnive */
.strategic-studies .strategic-item-container {
    /* padding: 15px 0 0px 15px; */
}

.strategic-studies .strategic-item-container .strategic-item-label {
    margin-top: 10px;
    margin-left: 10px;
}

/* page wysiwyg */
.wysiwyg-title h1,
.wysiwyg-title h2,
.wysiwyg-title h3,
.wysiwyg-title h4 {
    color: #B42F27;
}

.wysiwyg-title .img-detail {
    margin: 25px 0;
}

.wysiwyg-title p,
.all_wysiwyg p {
    font-family: "Lato Light", sans-serif;
    font-size: 18px;
    color: #021726;
    line-height: 30px;
}

.wysiwyg-accordion .img-detail {
    margin: 5px 0 25px 0;
}

.body--detail li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "o";
    content: "\f04b";
    left: 0;
    font-size: 15px;
    top: 2px;
}

.body--detail li,
.last-list--detail li {
    position: relative;
    font-size: 18px;
    font-family: 'Lato Light', sans-serif;
    line-height: 30px;
    padding-left: 26px;
}

.last-list--detail li {

    counter-increment: item;
}

.last-list--detail li:before {
    margin-right: 10px;
    content: counter(item);
    border-radius: 100%;
    color: #B42F27;
    width: 1.2em;
    text-align: center;
    display: inline-block;
}

.body--detail ul,
.last-list--detai ul {
    padding-left: 30px;
}

.wysiwyg-detail .img-detail {
    margin: 25px 0 25px 0;
}

.all_wysiwyg section:nth-child(even) {
    background: rgba(214, 215, 218, 0.28);
}

.all_wysiwyg section {
    padding: 50px 0;
}

.all_wysiwyg section:first-child {
    padding-top: 0;
}

.all_wysiwyg section:last-child {
    padding-bottom: 100px;
}

.content_carde_btn.btn-wrap-tr a {
    background: #fff !important;
    color: #B42F27 !important;
    border: 1px solid #B42F27;
}

/* page bibliographie */
.all_bibliographie {
    padding-bottom: 83px;
    background: rgba(214, 215, 218, 0.28);
}

.all_bibliographie .filter-parent {
    padding-top: 40px;
}

.all_bibliographie .second_lien_social {
    background: transparent;
    padding: 0;
}

.all_bibliographie .second_lien_social #second_lien_social-box {
    display: flex;
    flex-wrap: wrap;
}

.all_bibliographie .second_lien_social .publications-item {
    width: 33%;
}

.all_bibliographie .second_lien_social .publications-item:nth-child(even) {
    margin-top: 0;
}

section#box--all_bibliographie span {
    font-family: 'Lato Light', sans-serif;
}

.all_wysiwyg section.second_lien_social,
.all_wysiwyg section#meet-list {
    padding: 50px 0 0 0;
}

.all_wysiwyg section:last-child {
    padding-bottom: 145px;
}

.all_wysiwyg .strategic-item-body p {
    font-family: "Lato Bold", sans-serif !important;
    font-weight: bold;
    color: #fff !important;
}

.all_discours_royaux {
    padding-bottom: 83px;
}

.card_ires_ailleurs .content_carde_list div:first-child>a {
    background: transparent;
    color: #B42F27;
    border: 1px solid #B42F27;
}

.meet-item-img img {
    object-fit: cover;
}

/* my style 16/12/2022  */
.publications .owl-carousel .owl-item .strategic-item-img img {
    object-fit: cover;
}

.page_phototheque .item img {
    object-fit: cover;
}

.events-social .img-events-social img {
    width: 410px;
    transition: all .3s ease-in-out;
}

.all_lien_social {
    padding-bottom: 45px;
}

.strategic-item-label {
    padding: 10px 10px;
}

.box-carre a {
    color: #fff;
    font-family: 'Lato Bold', sans-serif;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategic-item-label {
    font-size: 14px !important;
    padding: 10px 5px;
    width: 180px;
}

.rencontres_detail section.lire_notre_actualites .owl-thumbs {
    display: none;
}

.all_presentation section.panel_international_gallery {
    padding: 0;
    padding-bottom: 0;
}

.all_presentation section.wysiwyg-accordion {
    padding-bottom: 0 !important
}

/* .all_presentation p strong  a, .all_presentation p a strong , .all_presentation p a{
        color: #B42F27;
    } */
.detail_domaines_strategique span a {
    color: #B42F27;
}

.panel_international_gallery .page_phototheque .item {
    margin-top: 0;
}

.all_presentation #popupbg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    z-index: 1000;
}

.publications .owl-stage-outer {
    padding: 10px 0 !important;
}

.publications .strategic-item-img {
    height: 543px;
}

/* .strategic-studies .strategic-item-type {
        text-align: right;
    } */
.publications .owl-stage-outer,
.strategic-inner .owl-stage-outer {
    padding: 0 6px;
}
.footer-logo img {
    width: 140px;
    height: auto;
  }

.top-footer-body {
    width: 75%;
}

.top-footer-btn {
    width: 25%;
    display: flex;
    justify-content: right;
}

.page_phototheque .item {
    margin-bottom: 0%;
}

.page_phototheque .item {
    position: relative;
    top: 15px;
}

.footer-social a.social-item {
    margin-right: 5px;
}

.footer-brand {
    margin-top: -60px;
    z-index: 5;
    position: relative;
}

.all-events-social>div:last-child img {
    object-fit: cover;
}

.detail-events-social p {
    padding-right: 18px;
}

section.second_lien_social .strategic-item-img img {
    object-fit: cover;
}

.strategic-item-body {
    width: 100%;
}

.second_lien_social #second_lien_social {
    flex-wrap: wrap;
}

.cadre_decouvrir_plus .img_decouvrir_plus {
    height: 440px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.strategic-studies .strategic-action {
    padding: 40px 0 40px 0;
}

.main-menu ul li:first-child .menu-subs-inner ul>.menu-subs-col {
    width: 25%;
}

.detail-events-social p a,
.detail-events-social p {
    padding-right: 30px;
    font-family: 'Lato Regular', sans-serif;
}

.all_list_rapports .list-box-flash {
    margin-bottom: 25px;
}

.list_rapports .list-box-flash-paragraphe h2 {
    height: 112px;
    /* display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden; */
}

.detail_domaines_strategique p a {
    color: #6E0309;
}

.ires_phototheque .page_phototheque .item {
    margin-bottom: 2%;
}

footer {
    position: relative;
    z-index: 333;
}

footer::after {
    content: "";
    background-image: url(https://ires.ma/themes/custom/ires/assets/imgs/flash_info/footer.png);
    position: absolute;
    top: auto;
    width: 423px;
    height: 600px;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.bg-contact-page .contact-top {
    background-color: #fff;
    margin: 44px 0px;
    border-radius: 13px;
    box-shadow: 0 0 13px 1px rgb(0 0 0 / 16%);
    display: flex;
}

.bg-contact-page .infos-coord {
    width: 50%;
    padding: 50px;
}

.bg-contact-page .local-ministere {
    width: 50%;
}

.bg-contact-page iframe {
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 13px;
    border-top-right-radius: 13px;
}

.bg-contact-page .infos-coord h2 {
    font-size: 30px;
    font-weight: bold;
    color: #B42F27;
}

.bg-contact-page .infos-coord .adress i {
    color: #B42F27;
    margin-right: 10px;
    margin-top: 8px;
}

.bg-contact-page .pre-contact {
    margin-top: 28px;
    font-size: 20px;
}

.bg-contact-page span.contact-infos a,
.bg-contact-page span.contact-infos i {
    color: #B42F27;
}

.bg-contact-page .infos-coord span.adress {
    font-size: 20px;
    display: inline-flex;
    margin-top: 15px;
}

.bg-contact-page span.contact-infos {
    margin: 5px 0;
}

.bg-contact-page .tel-mail-box {
    display: flex;
    margin: 5px 0 20px 0;
    flex-direction: column;
}

.bg-contact-page i {
    padding-right: 10px;
}

.bg-contact-page .infos-coord span.adress {
    font-size: 20px;
    display: inline-flex;
}

.bg-contact-page span.contact-infos a {
    font-size: 20px;
}

.bg-contact-page .contact-form {
    background-color: #fff;
    margin: 44px 0px;
    border-radius: 13px;
    padding: 55px 55px 55px 70px;
    box-shadow: 0 0 13px 1px rgb(0 0 0 / 16%);
}

.bg-contact-page label {
    margin-left: 10px;
    color: #B42F27;
    font-weight: bold;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 40px;
    outline: none;
    border: none;
    margin-right: 25px;
    padding: 0;
    color: #6C7179;
    border-radius: 13px;
    padding: 16px 10px 16px 36px;
    border: 1px solid #6C7179;
    position: relative;
    font-size: 18px;
    height: 162px;
    text-indent: 0;
}

.contact-form .js-form-item-terms-of-service a {
    color: #6C7179;
}

.contact-form .form-actions input[type="submit"] {
    /* width: auto!important; */
    margin-bottom: 40px;
    outline: none;
    border: none;
    margin-right: 25px;
    padding: 0;
    color: #262626;
    border-radius: 13px;
    padding: 17px 87px;
    text-indent: 0;
    font-size: 18px;
    position: relative;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 25px;
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    font-family: 'Lato Bold', sans-serif;
    transition: all 0.3s;
}

.contact-form form .js-form-item:not(.js-form-type-checkbox) input,
.contact-form form select,
.contact-form form textarea {
    width: 100%;
    margin-bottom: 40px;
    outline: none;
    border: none;
    margin-right: 25px;
    padding: 0;
    color: #717272;
    border-radius: 13px;
    padding: 16px 10px 16px 36px;
    border: 1px solid #707070;
    position: relative;
    font-size: 18px;
    font-family: 'Lato Regular', sans-serif;
    text-indent: 0;
}

.contact-form .form-actions {
    text-align: center;
}

.contact-form .js-form-type-textfield,
.contact-form .js-form-type-email,
.contact-form .form-item-telephone {
    width: 49%;
    margin: 3px;
}

.contact-form form .js-form-item {
    display: inline-block;
}

.contact-form form .js-form-type-textarea {
    width: 100%;
}

section.bg-contact-page {
    padding: 40px 0 100px 0;
    background-color: rgba(214, 215, 218, 0.28);
}

.contact-form form .js-form-item-objet {
    width: 100%;
}

.contact-form form .js-form-item-objet input {
    width: 100%;
}

.bg-contact-page .social-items a {
    font-size: 30px;
    font-weight: bold;
    color: #B42F27;
}

.bg-contact-page .social-items {
    display: flex;
    margin-top: 30px;
    justify-content: space-evenly;
    padding: 0 55px;
}

.bg-contact-page .social-items .social-item:hover::before {
    display: none;
    opacity: 0;
}

.sitemap_menu ul {
    list-style: none;
    padding: 0;
    padding-left: 5rem;
    margin: 0;
    position: relative;
}

.sitemap_menu ul li {
    position: relative;
    padding: .875rem 1.5rem;
}

.sitemap_menu ul li:after,
.sitemap_menu ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-width: 1px;
    z-index: 0;
    border-color: #B42F27;
}

.sitemap_menu ul li:after {
    top: 1.5em;
    left: -1.1em;
    width: 1.5em;
    border-top-style: solid;
}

.sitemap_menu ul ul {
    padding-left: 30px;
    margin-top: 10px;
}

.sitemap_menu ul li:before {
    position: absolute;
    top: 0;
    left: -1.1em;
    height: 145%;
    border-top-style: none;
    border-left-style: solid;
}

.section-one-metire.sitemap_menu {
    padding: 40px 0 177px 0;
}

.sitemap_menu span {
    font-size: 25px;
}

.sitemap_menu a {
    font-family: 'Lato Regular', sans-serif !important;

}

.sitemap_menu a:hover::after {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.sitemap_menu a {
    position: relative;
}

.sitemap_menu a,
.sitemap_menu span {
    font-family: 'Lato Bold', sans-serif;
    font-size: 1.125rem;
    color: #B42F27;
    text-decoration: none;
}

.sitemap_menu a::after {
    content: "";
    border-bottom: solid 2px #B42F27;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.75;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.sitemap_menu ul li:last-child:before {
    border-left: none;
}

section.second_lien_social .strategic-item-img img {
    transition: all .3s ease-in-out;
}

.menu-subs-inner {
    position: relative;
    z-index: 333;
}

.menu-subs-inner:before {
    content: "";
    background-image: url(https://ires.ma/themes/custom/ires/assets/imgs/flash_info/menu.png);
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.panel_international_accordion ul li:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B42F27;
    position: absolute;
    content: "o";
    content: "\f04b";
    left: -5px;
    font-size: 15px;
    top: 2px;
}

.detail_publication_detail .list-box-flash-description {
    height: auto;
}

.panel_international_accordion .menu_scroll_presentation ul li:after {
    opacity: 0;
}

.bg-contact-page {}

.bg-contact-page {}

.bg-contact-page {}

#flash-info-home .list-box-flash-date span {
    padding-right: 0px;
    /* padding-left: 0; */
}

#meet-list .list-box-flash-date span:first-child {
    margin-left: 9px;
    margin-right: 0;
}

section.show-list-flash_info {
    padding: 15px 0 30px 0;
}

.btn_search {
    padding-left: 30px;
    position: absolute;
    top: 12px;
    right: 0;
}

.search_result form {
    position: relative;
}

.search_result form .btn_search input {
    font-weight: bold;
    font-family: "Lato Bold", sans-serif;
    display: inline-block;
    background: transparent;
    position: absolute;
    transform: translate(0%, -55%);
    border: 0;
    margin: 0;
    padding: 0;
    height: 20px;
    width: 20px;
    background-image: url(../imgs/flash_info/search---icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 50%;
    color: transparent;
}

.search_result .btn_search {
    padding-left: 30px;
    position: absolute;
    top: 44px;
    right: 17px;
}

.meet .meet-item-body p {
    font-size: 18px;
}

#meet-list .meet-item-body {
    font-size: 15px;
}

.top-bar-nav-items .top-bar-nav-item .top-bar-item-subs a span {
    font-family: 'Lato Regular', sans-serif;
}

.all_nature_centric .list-box-flash-description {
    min-height: 210px;
}

.first_lien_social .img-content-popup>div {
    height: 620px;
}

.all_nature_centric .list-box-flash-paragraphe {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

input[type="text"] {
    padding-left: 15px !important;
}

.filter-glossaire {
    position: fixed;
    top: 50%;
    right: 0px;
    width: 100%;
    background-color: #463032;
    transition: all .4s linear;
    z-index: 9999;
}

.filter-glossaire form {
    position: absolute;
    height: 100%;
    top: 0;
    right: -700px;
    width: 700px;
    background-color: #463032;
    z-index: 20;
    display: flex;
    align-items: center;
    animation-timing-function: ease-in-out;
    transition-duration: .3s;
}

.filter-mots-glossaire {
    display: flex;
    align-items: center;
}

section.news-detait-body h3 {
    padding: 10px 0;
}

.top-bar-item-subs .top-bar-sub-item a:hover {
    color: #B42F27;
}

.top-bar-item-subs .top-bar-sub-item a {
    position: relative;
    transition: all .3s ease-in-out;
}

.top-bar-nav-items .top-bar-nav-item .top-bar-item-subs a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #B42F27;
    transition: width .3s ease-in-out;

}

.top-bar-nav-items .top-bar-nav-item .top-bar-item-subs a:hover::after {
    width: 100%;
}

.carde_list .list-box-flash-date span {
    padding-right: 0;
}

.content_carde_btn a:hover {
    color: #6E0309;
    transition: color .3s ease-in-out;
}

/* .content_carde_btn a{
        text-decoration-line: underline;
    } */
.content_carde_title h2:hover {
    color: #B42F27;
    transition: color .3s ease-in-out;
}

.action-gototop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: block;
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #B42F27;
    margin: 0;
    opacity: 0;
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    pointer-events: none;
    padding: 0;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
}

.action-gototop.is-visible {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.action-gototop i {
    position: absolute;
    vertical-align: middle;
    color: #B42F27;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.action-gototop:hover {
    background: #B42F27;
    transition: color .3s ease-in-out;
}

.action-gototop:hover i {
    color: #fff;
    transition: color .3s ease-in-out;
}

div#nextprev button span:hover {
    background: #B42F27 !important;
    transition: color .3s ease-in-out;
}

div#nextprev button span:hover i {
    color: #ffff;
}

.wysiwyg-title .btn--international a {
    color: #262626;
    background: #fff;
    height: 80px;
    width: 42%;
}

.btn--international {
    margin-top: 40px;
}

.all_presentation .wysiwyg-title {
    padding-bottom: 25px;
}

section#box--all_bibliographie .publications-item {
    margin-bottom: 30px;
}

.filter-champ:empty {
    display: none;
}

.all_card_ires_ailleurs .content_carde_title+.content_carde_title {
    padding: 0;
}

.first_lien_social .detail-events-social p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.img_popup_lien_social.popup-btn:after {
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
    height: 50%;
    border-radius: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.content_carde_btn a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #B42F27;
    transition: width .3s ease-in-out;
}

.content_carde_btn a:hover::after {
    width: 100%;
}

.content_carde_btn img {
    position: relative;
    top: -4px;
}

.panel_international_accordion .img--prospective-selon>div {
    height: 245px;
}

.panel_international_accordion .title--prospective-selon h2 {
    text-align: center;
}

.all_presentation ul {
    padding-left: 25px;
}

.filter-champs.submit-filter>div {
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.filter-champs.submit-filter>div:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.filter-champs.submit-filter>div:hover:after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

.panel_international_accordion .popup-content ul li:after {
    opacity: 0;
}

.all_presentation.all-accordion.panel_international_accordion section.wysiwyg-card {
    padding-bottom: 0;
}

.all_presentation.all-accordion.panel_international_accordion section.panel_international_gallery {
    padding-bottom: 30px;
}

.panel_international_accordion .menu_scroll_presentation ul {
    padding-left: 0;
}

.title--prospective-selon div {
    width: 70%;
    margin: auto;
}

.all_presentation .menu_scroll_presentation ul {
    padding-left: 0;
}

.panel_international_accordion>div>div:first-child section {
    padding-top: 0;
}

.remove--espace--acc {
    padding-bottom: 0;
}

.wysiwyg-accordion .collapse:not(.show) {
    display: block;
}

.wysiwyg-accordion .all-card--vocabulaire button:before {
    opacity: 0;
}

.wysiwyg-accordion .all-card--vocabulaire button.btn.btn-link {
    pointer-events: none;
}

/* .wysiwyg-accordion .all-card--vocabulaire .card-body {
        padding: 0;
    } */
div#accordion .card:first-child h3 {
    padding: 0;
}

section.base_de_donnes {
    padding-top: 0 !important;
}

.all_bibliographie section#box--all_bibliographie {
    padding-top: 30px;
}

.all_list_rapports .views-element-container+section.filter-parent {
    padding-top: 46px;
}

.all_list_rapports.remove--espace--publication section.filter-parent {
    padding-top: 140px;
}

section.wysiwyg-title.remove--espace--bd section.base_de_donnes {
    padding: 0;
}

section.wysiwyg-title.remove--espace--bd {
    padding: 0;
}

.all_bibliographie .second_lien_social .strategic-item,
.all_bibliographie .second_lien_social .strategic-item-img {
    height: 220px;
    text-align: center;
}

.all_bibliographie section.second_lien_social .strategic-item-img img {
    object-fit: contain;
}

.top-bar-nav-item>span {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

section#gallery-pop-up-video .testmonial_area_holder button.owl-next {
    right: auto;
}

section#gallery-pop-up-video .testmonial_area_holder button.owl-prev {
    left: auto;
}

a.presentation_royaux_btn {
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

a.presentation_royaux_btn:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

a.presentation_royaux_btn:hover:after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

.block--db section.base_de_donnes h2 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 118px;
}

.block--db section.base_de_donnes p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block--db>div>h2 {
    font-family: "Lato Bold", sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 40px;
    color: #B42F27;
}

.block--db section.base_de_donnes .col-lg-4 a {
    border-radius: 10px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    overflow: hidden;
    display: block;
    padding: 30px;
}

.block--db section.base_de_donnes {
    padding-bottom: 50px;
}

.all-card--vocabulaire .card .card-body img.align-center {
    object-fit: cover;
    height: 100%;
    width: 70%;
}

.all-card--vocabulaire .card .card-body .img-detail>div {
    height: auto;
}

.panel_international_accordion .card .card-body div h3 br:first-child {
    display: none;
}

div#edit-actions {
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.all_discours_royaux div#edit-actions {
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.all_discours_royaux div#edit-actions input {
    font-family: "Lato Bold", sans-serif;
    background: #B42F27;
    font-size: 18px;
    color: #fff;
    border-radius: 10px;
    width: 140px;
    position: relative;
    padding: 9px;
    margin-top: 0;
    outline: none;
    font-weight: bold;
    appearance: none;
    height: 45px;
    border: 0px solid;
}

.all_discours_royaux #edit-actions:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .4;
    position: absolute;
    top: -50px;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
    width: 50px;
}

.all_discours_royaux #edit-actions:hover:after {
    left: 120%;
    transition: all .55s cubic-bezier(.19, 1, .22, 1);
}

.all_discours_royaux form>div {
    margin-right: 25px;
}

img.img--wisy {
    object-fit: cover;
    height: 100%;
    width: 70%;
    margin: auto;
    text-align: center;
    display: block;
    float: none;
}

.all-card--vocabulaire .card .card-body .img-detail>div img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    width: 70%;
    margin: auto;
    text-align: center;
    display: block;
    float: none;
}

.all-card--vocabulaire button.btn.btn-link {
    text-align: left;
}

.social-items .social-item {
    color: #B42F27 !important;
}

.top-bar-social .social-items .social-item {
    color: #fff !important;
}

.top-bar-social .social-items .social-item:hover i {
    color: #B42F27 !important;
}

.list-box-flash:hover h3 {
    color: #fff;
}

.list-box-flash-paragraphe h3 {
    font-family: "Lato Bold", sans-serif;
    font-size: 18px;
    color: #6c7179;
    line-height: 30px;
}

.newsletter_listing {
    padding-bottom: 50px;
}

.newsletter_listing .list-box-flash-description {
    height: auto;
    min-height: auto;
}

.filter-parent .filter-champs input[type=text]::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #6e030961;
    opacity: 1;
    /* Firefox */
}

.filter-parent .filter-champs input[type=text]:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #6e030961;
}

.filter-parent .filter-champs input[type=text]::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #6e030961;
}
/* logo */
a.main-menu-logo img {
    width: 200px;
    object-fit: contain;
    height: 90px;
}

@media screen and (min-width: 767px) {
    a.main-menu-logo img {
        width: 180px;
        object-fit: contain;
        height: 130px;
        margin-top: -11px;
    }
}

@media (min-width: 1199px) {
    .slider_cetrale .testmonial_area_holder button.owl-prev {
        position: relative;
        left: 50px;
    }

    .slider_cetrale .testmonial_area_holder button.owl-next {
        position: relative;
        right: 50px;
    }

    .prospective-right {
        padding: 20px 40px;
    }

    .prospective .prospective-desc p {
        height: 112px;
    }

    .prospective .heading-md {
        padding: 20px 0;
    }

    .prospective .prospective-img {
        max-width: none;
        height: 340px;
    }

    .prospective .prospective-action {
        padding: 20px 0 15px 0;
    }

    .prospective .prospective-img img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .strategic-studies .strategic-item {
        height: 504px;
    }

    .strategic-studies .strategic-inner {
        padding: 0 64px;
    }

    #toolbar-administration+.dialog-off-canvas-main-canvas div#multilangue--ires .dropdown-menu {
        top: -4px !important;
	right:-15px !important;
    }

    #multilangue--ires #dropdownMenuButton {
        pointer-events: none;
    }

    #multilangue--ires:hover .dropdown-menu {
        will-change: transform;
        position: absolute;
        transform: translate3d(0px, 41px, 0px);
        top: 0px;
        display: block;
        left: -19px;
    }

    div#multilangue--ires .dropdown-menu {
        /* top: 8px !important;
            min-width: 100px; */
    }


    .newsletter-form form .form-actions {
        padding-right: 33px;
        border-radius: 25px;
    }

    section.cadre_decouvrir_plus .container-fluid,
    section.second_lien_social .container-fluid {
        width: 95%;
    }

    .bottom-footer .footer-nav-items a {
        max-width: 73%;
        line-height: 27px;
        margin-bottom: 14px;
    }

    section#publication_carde {
        padding-bottom: 125px !important;
    }

    #box--all_bibliographie .publications-carousel {
        padding-top: 30px;
    }

}

@media (max-width: 1199px) {

    .contact-form .js-form-type-textfield,
    .contact-form .js-form-type-email,
    .contact-form .form-item-telephone {
        width: 100%;
        margin: 3px;
    }

    .panel_international_accordion .img--prospective-selon {
        height: auto;
    }

    .panel_international_accordion .title--prospective-selon h2 {
        text-align: center;
    }

    .menu-level-1 {
        top: 37px;
    }

    div#multilangue--ires .dropdown-menu {
        top: 8px !important;
        min-width: 100px;
    }

    .detail-events-social p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .newsletter-form form input[type=submit] {
        margin-right: 40px;
    }

    div#section--mobile img {
        height: 80px;
        object-fit: none;
    }

    .filter-wp select,
    .filter-champs input {
        width: 169px;
    }

    .slider-item-content {
        top: 100px;
        bottom: 0;
    }

    .page_phototheque .item:nth-of-type(3n+2) {
        margin-top: 0;
    }

    a.main-menu-logo {
        width: 120px;
    }

    .strategic-studies .strategic-item,
    .publications .publications-item a {
        height: 300px;
    }

    a.main-menu-logo img {
        width: 100%;
    }

    .top-bar-nav-items {
        gap: 18px;
    }

    .main-menu .main-menu-nav-items ul li {
        margin: 0 0px 0 10px;
    }

    .top-bar-nav-items .top-bar-nav-item a,
    .social-items .social-item {
        font-size: 14px;
    }

    .search {
        position: relative;
        left: 4px;
        top: 4px;
    }

    .main-menu-nav-items .main-menu-nav-item {
        font-size: 15px;
    }

    .strategic-studies .strategic-inner {
        align-items: center;
    }

    .strategic-studies .strategic-nav-item {
        padding: 15px 0;
    }

    .strategic-item-body p,
    .box-date span {
        font-size: clamp(14px, 1rem, 18px);
    }

    .prospective img {
        width: 100%;
    }

    .slider-item {
        height: 430px;
    }

    .page_phototheque {
        justify-content: space-between;
    }

    .page_phototheque .item {
        margin-right: 0;
        width: 47% !important;
        top: 0 !important;
    }

    .all_box_phototheque {
        height: 300px;
    }

    .ires_phototheque {
        padding-bottom: 175px;
    }
}

@media (max-width: 991px) {
  #main-menu-responsive .social-items .social-item {
    color: #B42F27 !important;
  }
    #multilangue--ires #dropdownMenuButton_1 {
        font-size: 18px;
        width: 57px;
        text-indent: -60px;
        color: #B42F27;
    }

    body,
    html {
        overflow-x: hidden;
    }

    .all-card--vocabulaire .card .card-body img.align-center {
        width: 100%;
    }

    .all_discours_royaux form>div {
        margin-right: 0;
    }

    .all_discours_royaux form select,
    .all_discours_royaux form input {
        width: 100%;
    }

    .all_discours_royaux div#edit-actions {
        margin-top: 10px;
        text-align: center;
        display: block;
    }

    .block--db section.base_de_donnes .col-lg-4 a {
        margin-bottom: 15px;
    }

    .block--db section.base_de_donnes h2 {
        height: auto;
    }

    .search_result .btn_search {
        top: 15px;
        right: 26px;
    }

    .bg-contact-page .contact-top {
        display: block;
    }

    .bg-contact-page .local-ministere {
        width: 100%;
        height: 259px;
    }

    .bg-contact-page .infos-coord {
        width: 100%;
        text-align: center;
    }

    .newsletter-info {
        max-width: 50%;
    }

    .newsletter-form {
        max-width: 50%;
    }

    .newsletter-form form input[type=submit] {
        margin-right: 76px;
    }

    .publications #publicationsCarousel .owl-nav {
        right: 0 !important;
        left: auto;
    }

    .meet-inner .meet-items {
        display: block;
    }

    #mobile-top-bar-nav .top-bar-item-subs-inner img {
        display: none;
    }

    .pop-details span {
        font-size: 16px;
    }

    .meet-item {
        width: 100%;
        margin-bottom: 16px;
    }

    #mobile-top-bar-nav .top-bar-item-subs-inner {
        display: block;
        gap: 21px;
        height: auto;
        position: inherit;
    }

    #mobile-top-bar-nav .top-bar-nav-item {
        border-bottom: 1px solid #707070;
    }

    #mobile-top-bar-nav .top-bar-nav-item:last-child {
        border-bottom: 0px solid #707070;
    }

    #mobile-top-bar-nav a {
        font-size: 18px !important;
        color: #B42F27 !important;
        font-family: 'Lato Bold', sans-serif;
        padding: 10px 20px;
    }

    #mobile-top-bar-nav .top-bar-nav-items {
        display: block;
    }

    .no-arrow .fa-chevron-down:before {
        display: none;
    }

    section.second_lien_social {
        padding: 40px 0 42px 0;
    }

    .filter-wp form {
        padding: 11px 0 0px 0;
    }

    .filter-parent .filter-champs input {
        position: inherit;
    }

    .show--close span.btn-menu-left {
        color: transparent !important;
    }

    .show--close span.btn-menu-left:after {
        background-image: url(../imgs/flash_info/close--icon-menu.png);
        width: 39px;
        HEIGHT: 39px;
        color: #fff !important;
        z-index: 99999;
        content: '';
        position: absolute;
        left: 0;
    }

    .block-form-search-mobile {
        padding: 0 15px;
    }

    .block-form-search-mobile input {
        background-color: #E1E1E1;
        outline: none;
        border: none;
        border-radius: 10px;
        height: 55px;
        width: 100%;
        padding: 0 20px;
    }

    .block-form-search-mobile .submit--search input {
        display: none;
    }

    .block-form-search-mobile input[type="submit"] {
        display: inline-block;
        background: transparent;
        right: 17px;
        top: auto;
        border: 0;
        margin: 0;
        padding: 0;
        height: 100%;
        width: 20px;
        background-image: url(../imgs/flash_info/icon---search.png);
        background-repeat: no-repeat;
        color: #e1e1e1;
        background-position: right;
        float: right;
        position: absolute;
        background-size: contain;
        top: 0;
        color: transparent;
    }

    .submit--search-mobile {
        position: relative;
    }

    ul#menu-second-main-mobile {
        display: block;
    }

    li.loop-mobile {
        border-bottom: 1px solid #707070;
    }

    li.loop-mobile:last-child {
        border-bottom: 0px solid #707070;
    }

    div#multilangue--ires::after {
        top: 19px;
    }

    .menu-subs-col {
        padding: 0 0px !important;
    }

    .menu--item-no-child a {
        font-size: 16px !important;
        font-family: 'Lato Regular', sans-serif;
        color: #000000 !important;
    }

    .show--menu div#mySidenav {
        width: 100%;
        top: 120px;
    }

    div#section--mobile .container>div {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    #section--mobile a.main-menu-logo {
        width: auto;
    }

    .main-menu-inner {
        display: none;
    }

    #section--mobile .main-menu-nav {
        display: none;
    }

    #section--mobile div#main-menu-responsive {
        display: block;
    }

    .container.flex-responsive span {
        font-size: 30px;
        color: #B42F27;
        position: relative;
    }

    .container.flex-responsive {
        padding-left: 0;
    }

    #section--mobile a.main-menu-logo {
        width: 209px;
    }

    div#multilangue--ires::after {
        right: 0px;
    }

    ul#menu-second-main-mobile {
        padding: 0px 0px;
    }

    .li_with_arrow a.inverse_arrow:after {
        transform: rotate(180deg);
        display: block;
    }

    div#at-custom-mobile-bar {
        display: none;
    }

    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 120px;
        left: 0;
        background-color: #F3F3F3;
        overflow-x: hidden;
        transition: 0.5s;
        /* padding-top: 60px; */
    }

    .sidenav {
        display: block;
        z-index: 999;
    }

    .list-product-nav>li a.list-product-cat {
        color: #fff;
        padding: 10px 20px;
        /* background-color: #004b96; */
    }

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 15px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

    .list-product-nav a {

        display: block;
        text-decoration: none;
    }

    .glyphicon {
        position: relative;
        top: 0px;
        display: inline-block;
        float: right;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-right: 10px;
    }

    #section--mobile {
        display: block;
        padding: 20px 0;
    }

    .list-product-subnav {
        background: #E1E1E1;
        display: none;
        border: solid 1px #e9e9e9;
    }

    .glyphicon-menu-up .fa-chevron-down:before {
        transform: rotate(180deg);
        display: block;
    }

    #main-menu-responsive .menu-mobile-show .list-product-subnav {
        display: none;
        padding: 0px 42px 0px 0px;
    }

    #main-menu-responsive .showmostdropdown {
        max-height: 1000px;
        overflow: hidden;
        display: block !important;
    }

    section.all-accordion.panel_international_accordion .card-body {
        padding: 1.25rem !important;
    }

    section.lire_notre_actualites .col-lg-4 {
        margin-bottom: 20px;
    }

    .all-card--vocabulaire button:before {
        font-size: 20px !important;
    }

    .all-card--vocabulaire .card-header {
        padding: 0 10px;
    }

    .ires_phototheque {
        padding-bottom: 78px;
    }

    .detail-box-video .title-phototheque h3 {
        max-width: 266px;
    }

    .img-result-search img {
        width: 100%;
    }

    .img--presentation-glossaire {
        height: auto;
    }

    .img-panel_international img {
        object-fit: contain;
    }

    .panel_international_accordion .col-lg-3 {
        margin-bottom: 30px;
        padding: 0;
    }

    .btn--international a {
        margin-bottom: 20px;
    }

    .btn--international a {
        width: 100%;
    }

    .btn--international {
        display: block;
    }

    .panel_international_accordion ul {
        padding-left: 0;
    }

    .card_ires_ailleurs .list-box-flash-date span {
        color: #B42F27;
    }

    .content_carde_btn {
        padding-bottom: 20px;
    }

    .ascenseur-fix {
        position: fixed;
        right: 10px;
        top: 18px;
        z-index: 99999;
        overflow-x: scroll;
        height: 100%;
        padding: 25px 16px;
    }

    .filter-wp form {
        display: block;
        max-width: 400px;
        margin: auto;
    }

    .all_box_domaines_strategique {
        display: block;
    }

    .paginations-list li {
        margin: 0 4px;
    }

    section.paginations-list.text-center {
        padding: 6px 0;
    }

    .paginations-list li a {
        height: 30px;
        width: 30px;
    }

    .filter-wp form .filter-champs {
        margin-right: 0;
        margin-top: 10px;
        text-align: center;
        display: block;
        justify-content: center;
    }

    .filter-wp {
        margin: 0px 0 40px 0;
    }

    .table--vocabulaire .table {
        overflow-x: scroll;
        display: block;
    }

    section.all-table--vocabulaire .row {
        width: auto;
    }

    section.all-accordion .card-body {
        padding: 0;
    }

    .filter_search {
        display: block;
    }

    .filter_search select,
    .btn_search input {
        width: 100%;
    }

    .btn_search {
        padding-left: 0;
        margin-top: 30px
    }

    .all-card--vocabulaire .card-header button {
        text-align: left;
    }

    .filter-champs select,
    .filter-champs input {
        width: 100%;
        margin: 10px 0;
    }

    .analyse_box {
        width: 100%;
    }

    .analyse_box_care span {
        width: 100%;
    }

    .analyse_box_care {
        display: block;
    }

    .lire_notre_actualites .meet-items.col-lg-12 {
        justify-content: space-between;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .lire_notre_actualites .meet-item {
        margin-bottom: 30px;
        width: 100%;
    }

    .lire_notre_actualites .meet-item:last-child {
        margin-bottom: 0px;
    }

    .second_lien_social #second_lien_social {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
    }

    .second_lien_social .publications-item {
        width: 46%;
    }

    .testmonial_area_holder .item {
        width: auto;
    }

    .all-events-social .events-social:first-child {
        margin-top: 40px;
    }

    .menu_scroll_presentation,
    .presentation_royaux_img,
    .les_trois_vocations_detail .detail-vocation:nth-child(1):before,
    .les_trois_vocations_detail .detail-vocation:nth-child(2):before,
    .les_trois_vocations_detail .detail-vocation:nth-child(3):before {
        display: none;
    }

    #meet-list .meet-item {
        width: 100%;
    }

    .read--more {
        text-align: center;
    }

    .les_trois_vocations_detail .detail-vocation:nth-child(2) {
        text-align: center;
        position: initial;
        top: auto;
        left: 0;
        right: 0;
        margin: auto;
    }

    .les_trois_vocations {
        padding-bottom: 0px;
    }

    .ires_think_tank {
        margin-top: auto;
    }

    .les_trois_vocations_detail .detail-vocation:nth-child(3) {
        text-align: center;
    }

    .les_trois_vocations_detail {
        display: block;
        justify-content: center;
        width: 50%;
        position: inherit;
        top: 50%;
        left: auto;
        right: auto;
        margin: auto;
        text-align: center;
    }

    .detail-vocation {
        width: 100%;
        margin: 25px 0;
    }

    .carre-5 {
        max-width: 100%;
    }

    .prospective-detail {
        display: block;
    }

    .presentation_general .col-lg-12.text-center {
        position: absolute;
        top: -41px;
    }

    .presentation_general .row {
        flex-direction: column-reverse;
        position: relative;
    }

    .img_decouvrir_plus {
        height: 296px;
    }

    .presentation_general .row {
        position: relative;
        top: 20px;
    }

    .presentation_royaux_btn {
        margin: 30px auto;
    }

    .presentation_general .presentation_royaux_img {
        display: block;
        margin: auto;
    }

    .all_presentation .presentation_royaux_btn {
        display: block;
    }

    .ires-breadcrumb {
        padding: 38px 0;
    }

    section.first--prospectives ul {
        padding-left: 0;
    }

    .ires-breadcrumb ul {
        flex-wrap: wrap;
    }

    .prospective .prospective-item {
        height: 170px;
    }

    .body-prospective-detail {
        width: 100%;
        margin-top: 30px;
    }

    .img-prospective-detail {
        width: 100%;
    }

    .main-menu-nav,
    .search,
    .top-bar {
        display: none;
    }

    .prospective .prospective-img img {
        height: 100%;
    }

    .slider-item-content {
        width: 74%;
        padding: 0 0 0 55px;
    }

    .slider-container .slider-item-content h1,
    .slider-container .slider-item-content .slider-item-body>span {
        font-size: 40px;
    }

    .newsletter-form form input.form-email {
        min-width: 175px;
        width: 175px;
    }

    .newsletter-form form .field--name-mail {
        min-width: 175px;
    }

    .top-bar-nav-items .top-bar-nav-item a span {
        font-size: 13px;
    }

    .strategic-studies .strategic-inner {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .publications-carousel {
        padding-left: 0;
    }

    .header-inner .top-bar-inner {
        justify-content: flex-start;
    }

    .social-items {
        gap: 10px;
        position: relative;
        left: auto;
        padding: 7px 0 0 0px;
        display: flex;
        justify-content: center;
    }

    .top-bar-nav-items {
        padding: 0 10px 0 0px;
        gap: 9px;
    }

    #multilangue--ires #dropdownMenuButton {
        font-size: 18px;
        width: 57px;
        text-indent: -60px;
        color: #B42F27;
    }

    div#multilangue--ires::after {
        content: "\f078";
        font-family: var(--fa-style-family, "Font Awesome 6 Free");
        font-weight: var(--fa-style, 900);
        color: #B42F27;
    }

    .publications-carousel {
        max-width: 100%;
        display: block;
    }

    .list-product-cat {
        font-size: 18px !important;
        color: #B42F27 !important;
        font-family: 'Lato Bold', sans-serif;
    }

    .li_with_arrow a.list-product-cat {
        font-size: 16px !important;
    }

    #publicationsCarousel .owl-nav {
        right: 0 !important;
    }

    .share-detail {
        width: 100%;
    }

    .flash_info_detail section.lire_notre_actualites .col-lg-4 {
        margin-bottom: 20px;
    }

    .flash_info_detail section.lire_notre_actualites .col-lg-4 {
        margin-bottom: 20px;
    }

    .cadre_decouvrir_plus .row .col-lg-3 {
        padding-bottom: 20px;
    }

    .cadre_decouvrir_plus .row .col-lg-3:last-child {
        padding-bottom: 0px;
    }

    section.cadre_decouvrir_plus .row .col-lg-3:nth-child(even) {
        top: auto;
    }

    #meet-list .meet-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .home-main-content .block-pres-inner {
        padding-bottom: 30px;
    }

    .home-main-content .block-pres-body,
    .home-main-content .block-iip-body {
        padding-top: 0;
        padding-bottom: 0;
    }

    .home-main-content .block-pres-body .block-pres-desc,
    .home-main-content .block-iip-desc {
        width: 100%;
        text-align: justify;
        padding: 0;
    }

    .home-main-content .block-pres-body .bolck-pres-video,
    .home-main-content .bolck-iip-action {
        margin: 0 auto 10px;
        order: -1;
        width: 100%;
        max-width: 280px;
        transform: translateX(-20px);
    }

    .home-main-content .bolck-iip-action {
        transform: none;
    }

    .block-pres-action {
        display: flex;
        justify-content: center;
    }

    .meet .meet-item-body p,
    .strategic-item-body p {
        display: -webkit-box;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    span.gallrey-titre {
        display: block;
        text-align: center;
    }

    .all_presentation .presentation_royaux_btn {
        width: auto;
    }

    .first-slider-publication .img-slider-publication img {
        border-bottom-left-radius: 0;
    }

    .publications .strategic-item-body p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .first-slider-publication .detail-slider-publication .list-box-flash-description a {
        font-size: 14px;
    }

    .first-slider-publication .detail-slider-publication .list-box-flash-paragraphe {
        padding: 5px 0;
    }

    .first-slider-publication .list-box-flash-description {
        min-height: auto;
        height: auto;
    }

    .nature_centric .list-box-flash-paragraphe p {
        line-height: 23px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    #popupbg .pop-details {
        padding-top: 20px !important;
    }

    .section-one-metire.sitemap_menu .fa-chevron-down:before {
        opacity: 0;
    }

    .sitemap_menu ul li:before {
        height: 131%;
    }

    .contact-form form .js-form-item:not(.js-form-type-checkbox) input,
    .contact-form form select,
    .contact-form form textarea {
        margin-bottom: 5px;
    }

    .bg-contact-page .infos-coord {
        padding: 15px;
    }

    .bg-contact-page .contact-form {
        margin: 10px 0px;
        padding: 55px 15px 55px 15px;
    }

    .contact-form .form-actions input[type="submit"] {
        border-radius: 10px;
        padding: 17px 15px;
    }

    footer::after {
        display: none;
    }

    div#multilangue--ires .dropdown-menu {
        top: 37px !important;
        left: -12px !important;
    }

    .list-box-flash-paragraphe h2 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cadre_decouvrir_plus .img_decouvrir_plus {
        height: 300px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .top-footer-btn {
        width: auto;
    }

    .strategic-item .strategic-item-body {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    section#meet-list .list-box-flash-date span {
        color: #B42F27 !important;
    }

    form#user-login-form input {
        width: 100%;
    }

    .page_phototheque .item {
        margin: 20px 0;
    }

    .content_carde_list div:first-child>a {
        display: block;
        width: 100%;
        font-size: 15px;
        text-align: center;

    }

    .paginations-list .pagination-success {
        flex-wrap: wrap;
    }

    form#user-login-form {
        display: block;
        padding: 12px 15px 66px 15px;
    }

    .title-phototheque h3 {
        padding: 0px 43px 0 15px !important;
        font-size: 16px;
    }

    .all_bibliographie .second_lien_social .publications-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .all_bibliographie .second_lien_social #second_lien_social {
        display: block;
    }

    .all_bibliographie .publications-item .strategic-item-body {
        height: 100%;
        display: block;
        position: relative;
        padding: 24px 20px;
        opacity: 1;
        transform: translateY(0);
        visibility: inherit;
    }

    .img-detail>div {
        height: auto;
    }

    .img-detail {
        height: auto !important;
    }

    .first_lien_social .img_popup_lien_social>div:first-child {
        height: auto;
    }

    .events-social {
        display: block;
    }

    .detail-slider-publication .list-box-flash-description a {
        font-size: 16px;
    }

    .events-social .img-events-social img {
        width: 100%;
    }

    .first_lien_social .img_popup_lien_social {
        height: auto !important;
    }

    .detail-events-social {
        padding: 20px 20px;
    }

    section.first_lien_social {
        padding-bottom: 10px;
    }

    .img-events-social img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }

    .strategic-studies .strategic-item-container .strategic-item-body {
        height: 200px;
        bottom: 20px;
    }

    .copyright-nav {
        padding-bottom: 30px;
    }

    .slider-container .owl-carousel .owl-item img {
        object-fit: cover;
    }

    .strategic-studies .strategic-item {
        box-shadow: initial;
    }

    .meet-item-body {
        padding: 24px 20px;
    }

    #section--mobile a.main-menu-logo {
        width: 120px;
    }

    div#section--mobile img {
        object-fit: contain;
    }

    .sidenav {
        height: -webkit-fill-available;
    }

    section#publication_carde {
        padding-bottom: 48px;
    }

    .testmonial_area_holder .videotheque-video--src iframe,
    .modal-mediatheque-videos .modal-content,
    #gallery-pop-up-video #popup .pop-img iframe,
    .img-content-popup {
        height: 247px;
        min-height: 247px;
    }

    #gallery-pop-up-video #popup {
        width: 90%;
    }

    .modal-dialog-scrollable .modal-content {
        overflow: initial;
    }

    #popupbg .pop-details,
    .element_popup {
        height: auto;
        display: block;
        padding: 0 15px;
    }

    .pop-details div:last-child,
    .element_popup div:last-child {
        width: 100%;
        padding: 15px 0;
        justify-content: space-evenly;
    }

    div#nextprev button span#next,
    .owl-next {

        right: 0 !important;
    }

    .modal-mediatheque-videos .modal-dialog {
        max-width: 90%;
        width: 90%;
    }

    .modal-mediatheque-videos .modal-dialog {
        max-width: initial;
        width: initial;
    }

    .popup-content {
        width: 90%;
    }

    .element_popup {
        padding-top: 20px;
    }

    div#nextprev button span#prev,
    .owl-prev {

        left: 0 !important;
    }

    .testmonial_area_holder .mediatheque-videos--carousel .owl-nav {
        top: 28%;
    }

    section.meet.third_lien_social .owl-carousel {
        display: block;
        opacity: 1;
    }

    .page_videotheque .pop-details>div:first-child,
    .element_popup div:first-child {
        max-width: 100%;
        width: 100%;
        height: 60px;
        overflow: hidden;
        text-align: center;
    }

    .span.bloc-gallrey-titre {
        max-width: 100%;
        width: 100%;
        height: auto;
        overflow: hidden;
        text-align: center;
    }

    .box-carre a {
        color: #B42F27;
        justify-content: center;
    }

    .card-header button {
        font-size: 18px !important;
        padding: 0 10px 0 0 !important;
    }

    .carre-5 .box-carre:nth-child(3) {
        align-items: center !important;
        display: flex !important;
    }

    #meet-list .container .meet-inner .meet-item-body {
        height: auto;
    }

    .list_rapports .list-box-flash-paragraphe h2 {
        height: auto;
    }

    .blocks-gallery-grid .owl-nav {
        display: none;
    }

    .show-list-flash_info .col-lg-4 {
        display: block;
    }

    .detail-slider-publication {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .carre-5 .box-carre:nth-child(3) a {
        color: #fff !important;
    }

    section#meet-list .container {
        padding-right: 15px;
    }

    .card-all .col-lg-8 .show-description-search {
        padding-top: 20px;
    }

    #meet-list .meet-item {
        margin-bottom: 30px;
    }

    .img-slider-publication {
        width: 100%;
    }

    .item--publication {
        display: block;
    }

    .body--presentation-glossaire a {
        display: block;
        width: 100%;
        height: auto;
        font-size: 16px;
        padding: 10Px;
        text-align: center;
    }

    .detail-slider-publication {
        width: 100%;
    }

    .detail-slider-publication {
        border-top-right-radius: 0;
    }

    .item--publication {
        height: auto;
    }

    .slider-publication .owl-nav {
        display: none;
    }

    .first-slider-publication .container {
        padding-right: 0px;
    }

    .slider-publication .owl-stage-outer {
        box-shadow: initial;
    }

    .all_list_rapports .owl-item {
        box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
        position: relative;
        border-radius: 30px !important;
    }

    .slider-publication {
        margin-top: 0;
    }

    .img-slider-publication img {
        border-top-right-radius: 10px;
    }

    .ires_phototheque .page_phototheque {
        padding: 7px;
    }

    .ires_phototheque {
        padding-bottom: 84px;
    }

    .nature_centric .list-box-flash-img {
        height: 256px;
    }

    .content_carde_list div:first-child>a {
        margin-bottom: 0;
    }

    .img-detail {
        height: 229.65px;
    }

    section.lire_notre_actualites .row {
        margin-left: 0px;
    }

    .img-detail img {
        object-fit: cover;
    }

    section.lire_notre_actualites {
        padding-bottom: 20px;
    }

    section.lire_notre_actualites h2 {
        position: relative;
        top: -15px;
    }

    .img-404 {
        height: 190px;
    }

    section.lire_notre_actualites .col-lg-4 {
        margin-bottom: 20px;
        padding-left: 0px;
    }

    .prospective-item.inclick-href span.prospective-item-label {
        background-color: #B42F27;
        color: #fff;
    }

    .show-list-flash_info .media-lib-filter {
        flex-direction: column;
        width: 100%;
        overflow-x: scroll;
        display: -webkit-inline-box;
        height: 56px;
        justify-content: flex-start;
        background-color: #fff;
        cursor: pointer;
        gap: 10px;
        padding: 0;
    }

    .meet-item-img {
        border-top-right-radius: 30px !important;
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    section.lire_notre_actualites .meet-items.col-lg-12 {
        top: auto;
    }

    .lire_notre_actualites .meet-item:last-child {
        display: block;
    }

    .lire_notre_actualites .meet-item-img {
        width: 100%;
    }

    .page_phototheque .item {
        margin-right: 0 !important;
    }

    section.lire_notre_actualites .container {
        padding-right: 0;
    }

    section.lire_notre_actualites .owl-dots {
        display: none;
    }

    .cadre_decouvrir_plus .row .col-lg-3 {
        padding-left: 0;
    }

    section.cadre_decouvrir_plus .container {
        padding-right: 0;
    }

    section.cadre_decouvrir_plus .row.owl-carousel.owl-loaded.owl-drag {
        margin-left: 0px;
    }

    .cadre_decouvrir_plus .owl-dots {
        display: none;
    }

    section.first_lien_social .col-lg-12 {
        margin-left: -15px;
    }

    .presentation_royaux_info {
        padding: 20px 0px;
    }

    .detail-events-social span {
        padding-bottom: 5px;
    }

    .title_lien_social {
        left: 27px;
        padding: 0 0px;
    }

    .media-lib-filter button {
        width: 125px;
    }

    .first_lien_social .img_popup_lien_social {
        height: 267px;
    }

    .box-carre h3 {
        font-size: 20px;
    }

    .les_trois_vocations_detail {
        width: 70%;
    }

    .second_lien_social .owl-dots {
        display: none;
    }

    .third_lien_social .strategic-action {
        padding-right: 15px;
    }

    .title-page-ires h2 {
        font-size: 25px;
        padding-bottom: 10px;
    }

    #meet-list .meet-item-body {
        height: 170px;
    }

    .publications-item {
        padding-left: 0;
        padding-right: 0;
    }

    #meet-list .meet-item {
        height: 100%;
    }

    section#presentation_1 {
        padding-bottom: 0;
    }

    .presentation_royaux_info img {
        width: 43px;
        height: auto;
    }

    .box-carre {
        color: #6E0309;
        background: #fff;
    }

    .box-carre:nth-child(4) h3,
    .box-carre:nth-child(5) h3 {
        position: relative;
        bottom: auto;
        padding: 0 7px;
    }

    .box-carre {
        height: 59px;
    }

    .box-carre:nth-child(1) h3,
    .box-carre:nth-child(2) h3 {
        position: relative;
        top: auto;
    }

    .box-carre a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .box-carre {
        border-radius: 15px;
        width: 100%;
        margin-bottom: 25px !important;
        /* height: 59px; */
    }

    .carre-5 {
        overflow: initial;
    }

    .carde_list {
        display: block;
        padding: 20px;
    }

    .carre-5 .box-carre:nth-child(3) {
        background: #B42F27;
        width: 174px;
        height: 174px;
        outline: 0;
        border-radius: 15px;
        overflow: initial;
        transform: initial;
        top: auto;
        position: initial;
        left: 0px;
        right: auto;
        margin: auto;
        background-color: #6E0309;
        display: block;

        color: #fff;
        font-size: 24px;
        text-align: center;
        font-weight: bold;
        width: 100%;
        height: 102px;
    }

    .showcase-titre-h1 {
        font-size: 28px;
    }

    .carre-5 .box-carre:nth-child(3) h3 {
        transform: initial;
        color: #fff;
    }

    .icon-title-pdf img {
        display: none;
    }

    .icon-title-pdf {
        align-items: baseline;
    }

    .box-carre h3 {
        color: #6E0309;
        padding: 0 5px;
    }

    .carre-5 {
        background: transparent;
    }

    .box-carre:hover,
    .carre-5 .box-carre:nth-child(3):hover {
        background: #fff;
    }

    .content_carde_title {
        padding: 12px 0 20px 0px;
    }

    .body-prospective-detail {
        padding: 20px;
    }

    .meet-item-body {
        width: 100%;
        height: 200px;
    }

    .media-lib-filter {
        justify-content: space-evenly;
    }

    .testmonial_area_holder .item {
        width: auto;
    }

    .testmonial_area_holder .owl-item.active.center {
        transform: scale(1);
    }

    .testmonial_area_holder .owl-nav {
        display: none;
    }

    .third_lien_social .owl-carousel .owl-stage-outer {
        /* height: 404px; */
    }

    .top-footer {
        padding-bottom: 90px;
    }

    .footer-social {
        display: block;
    }

    .strategic-action {
        padding-right: 15px;
    }

    span.strategic-nav-item.strategic-nav-item-active {
        color: #fff;
        background-color: #B42F27;
        padding-left: 11px;
    }

    span.strategic-nav-item.strategic-nav-item-active::before {
        display: none;
    }

    .slider-item {
        height: 366px;
    }

    .footer-nav-items {
        max-height: 0;
        transition: max-height .4s ease;
        overflow: hidden;
        margin-bottom: 0;
    }

    .heading-lg h2 {
        font-size: 25px;
    }

    .footer-nav .footer-nav-label:before {
        content: "\f078";
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        float: right;
        text-rendering: auto;
    }

    .footer-nav.niveau--footer .footer-nav-label:before {
        transform: rotate(180deg);
    }

    .footer-nav.niveau--footer .footer-nav-items {
        max-height: 1000px;
        transition: max-height 2s ease;
        padding-bottom: 10px;
        /* padding-inline-start: 15px; */
    }

    #flash-info-home .container,
    section.second_lien_social .container-fluid {
        padding-right: 0;
    }

    .footer-copyright {
        display: block;
    }

    #flash-info-home .row {
        margin-left: 0px;
    }

    .second_lien_social .strategic-item {
        height: 100%;
    }

    .publications-item .strategic-item-body {
        height: 100%;
        display: flex;
        position: relative;
        padding: 24px 20px;
    }

    .second_lien_social .strategic-item-img {
        height: 300px;
    }

    .second_lien_social .publications-item {
        width: 100%;
    }

    .footer-navs .col-xs-12.col-md-3 .footer-nav {
        border-bottom: solid 1px #fff;
    }

    .footer-nav-label {
        padding: 0;
        margin: 20px 0;
    }

    .footer-navs .col-xs-12.col-md-3:first-child .footer-nav {
        border-top: solid 1px #fff;
    }

    .copyright-nav-items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: left;
        text-align: left;
        width: 100%;
        gap: 15px;
    }

    .publications .strategic-item-img {
        height: 300px;
    }

    .publications .publications-item a {
        height: 489px;
    }

    .publications .strategic-item .strategic-item-body {
        height: 200px;
    }

    .publications .publications-item {
        padding-left: 0px;
    }

    #flash-info-home .container .col-lg-4 {
        padding-left: 0px;
        padding-right: 0;
    }

    .strategic-studies .heading-lg,
    section.publications .strategic-action {
        padding-right: 15px;
    }

    section.publications .container-fluid,
    section.meet .container {
        padding-right: 0;
    }

    .meet .container .meet-actions {
        padding-right: 15px !important;
    }

    .meet a.meet-item {
        display: block;
    }

    .meet .meet-item-img {
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .meet .meet-item-img {
        height: 283.24px;
    }

    .meet .owl-dots {
        display: none;
    }

    .meet a.meet-item {
        width: 100%;
    }

    .meet .container .meet-item-img {
        width: 100%;
    }

    .strategic-action {}

    .strategic-studies .strategic-item {
        height: auto;
    }

    .strategic-studies .strategic-item-img {
        height: 300px;
    }

    .strategic-studies .strategic-item-type {
        /* display: none; */
    }

    .strategic-studies .strategic-nav-items::-webkit-scrollbar {
        width: 10px;
        display: none;
    }

    .strategic-studies .strategic-nav-items::-webkit-scrollbar {
        height: 15px;
        border-radius: 50px;
        display: none;
    }

    /* / Track / */
    .strategic-studies .strategic-nav-items::-webkit-scrollbar-track {
        background: #E1E1E1;
        width: 15px;
        border-radius: 10px;
        display: none;
    }

    .strategic-studies .owl-nav.disabled {
        display: none !important;
    }

    .strategic-studies .strategic-item .strategic-item-body {
        height: 200px;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    /* / Handle / */
    .strategic-studies .strategic-nav-items::-webkit-scrollbar-thumb {
        background: #0A2F66;
        border-radius: 50px;
        display: none;
    }

    .strategic-studies .strategic-nav-items::-webkit-scrollbar-thumb:hover {
        background: #0A2F66;
        display: none;
    }

    .strategic-studies .strategic-inner,
    .strategic-studies .container-fluid,
    section.cadre_decouvrir_plus .container-fluid {
        padding-right: 0;
    }

    .prospective .prospective-items {
        display: flex;
        flex-direction: unset;
    }

    .strategic-studies .strategic-nav-item {
        cursor: pointer;
        /* / / width: 163px; / / */
        font-size: 16px;
        padding: 13px 11px;
        margin-right: 5px;
        border-radius: 13px;
        display: flex;
        background-color: #787d7930;
        color: #6E0309;
        width: auto;
        height: 48px;
        border-radius: 25px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
    }

    .strategic-studies .strategic-item-container {
        padding: 10px 0px;
    }

    .strategic-studies .strategic-inner {
        display: block;
    }

    .strategic-studies .strategic-nav {
        height: auto;
        width: 100%;
        padding: 0;
        display: flex;
        position: relative;
        margin: 20px 0px;
    }

    .strategic-studies .strategic-nav-items {
        flex-direction: column;
        width: 100%;
        overflow-x: scroll;
        display: -webkit-inline-box;
        height: 56px;
        justify-content: flex-start;
        background-color: #fff;
        cursor: pointer;
    }

    .strategic-studies .strategic-inner {
        display: block;

    }

    .strategic-studies .strategic-carousel {
        width: auto;
    }

    .strategic-studies {}

    .strategic-studies {}

    .prospective-left {
        width: 100%;
    }

    .slider-container .slider-item-content h1,
    .slider-container .slider-item-content .slider-item-body>span {
        font-size: 28px;
    }

    .slider-item-content {
        width: 100%;
        padding: 0 15px;

    }

    .meet-inner .meet-items {
        display: block;
    }

    .meet a.meet-item {
        width: 100%;
    }

    #homeSlider .owl-dots button.owl-dot {
        margin: 0 5px;
    }

    .publications-item.item-up {
        padding-top: 0;
    }

    .newsletter-info {
        padding-bottom: 10px;
        max-width: 100%;
        text-align: center;
    }

    .social-items .social-item {
        margin: 0px 8px;
    }

    #main-menu-responsive .social-items {
        margin-top: 30px;
    }

    #main-menu-responsive .social-items .social-item {
        color: #B42F27;
        padding: 8px;
    }

    .footer-brand {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: -31px;
        border-bottom: solid 0px #ffffff7a;
    }

    .footer-social {
        gap: 40px;
        padding-top: 7px;
        justify-content: center;
    }

    .footer-navs {
        padding-top: 60px;
    }

    .footer-logo {
        padding-bottom: 20px;
    }

    .newsletter-form form input.form-email {
        min-width: 100%;
        width: 100%;
    }

    .newsletter-form form .field--name-mail {
        min-width: 130px;
    }

    .media--items.media-video-items.page_phototheque.videotheque_lightbox {
        padding-top: 30px;
    }

    .media-lib .page_phototheque .item:nth-child(1),
    .media-lib .page_phototheque .item:nth-child(2) {
        display: flex;
    }

    .media-lib .page_phototheque .item {
        display: none;
    }

    /* .meet .meet-inner .meet-item:nth-child(1),
    .meet .meet-inner .meet-item:nth-child(2) {
        display: flex;
    }

    .meet .meet-inner .meet-item {
        display: none;
    } */

    .newsletter-container {
        padding: 30px 15px;
        border-radius: 0;
        margin: 0;
    }

    .prospective-right {
        width: 100%;
    }

    .newsletter-info h2 {
        font-size: 18px;
    }

    #strategicCarousel .owl-nav,
    #publicationsCarousel .owl-nav {
        top: -99px;
        display: none;
    }

    .publications .publications-carousel {
        /* margin-top: 20% !important; */
    }

    .footer-navs .row .col {
        max-width: 100%;
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }

    .top-footer-content {
        display: flex;
        text-align: center;
        margin: auto;
        flex-direction: column;
    }

    .bottom-footer-inner.container .container {
        padding: 0;
    }

    .footer-copyright,
    .footer-navs .row {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bottom-footer-inner.container {
        padding: 0;
    }

    #homeSlider .owl-dots {
        position: absolute;
        right: auto;
        bottom: 21px;
        display: block;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin: auto;
        text-align: center;
        width: 100%;
    }

    #homeSlider .owl-dots {
        bottom: 21px;
        display: block;
        gap: 16px;
    }

    .meet .meet-items .meet-item {
        margin-bottom: 20px;
    }

    .meet .meet-items .meet-item:last-child {
        margin-bottom: 0;
    }

    .page_phototheque .item {
        width: 100% !important;
        height: 278px !important;
        margin-right: 0;
    }

    .page_phototheque {
        display: flex;
        padding: 0 0 0 0;
    }

    .all_box_phototheque {
        width: 100%;
        height: 278px !important;
    }

    .all_box_videotheque {
        width: 100%;
        height: 278px !important;
    }

    .detail-box-video .title-phototheque h3 {
        max-width: 260px;
    }

    .cadre_decouvrir_plus {
        padding-bottom: 110px;
    }

    .meet a.meet-item {
        height: 478.5px;
    }

    .flash-info .owl-dots {
        display: none;
    }

    .list-box-flash-description {
        min-height: 212.1px;
    }

    .flash-info .list-box-flash-description {
        background-color: #B42F27;
    }

    .flash-info .list-box-flash-paragraphe h2,
    .list-box-flash-date span {
        color: #fff;
    }

    .meet-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .all_box_phototheque,
    .page_phototheque .item {
        height: 247px;
    }

    .prospective .prospective-item {
        height: 100px;
    }

    .prospective .prospective-item-label {
        background-color: #fff;
        color: #B42F27;
        font-size: 15px;
        padding: 0 11px;

    }

    .prospective h3 {
        font-size: 20px;
    }

    .prospective .prospective-items {
        padding: 10px 0px;
        gap: 5px;
    }

    .slider-container .slider-item-content {
        bottom: auto;
        top: 50%;
        transform: translate(0%, -50%);
        text-align: center;
    }

    .slider-container .slider-item-action a {
        margin: auto;
    }
}

.owl-thumbs {
    display: none;
}

.rencontres_detail .owl-thumbs {
    display: block;
}

.block-pres-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding: 35px 0;
}

.block-pres-body .block-pres-desc {
    width: calc(60% - 15px);
    padding: 0 40px 0 0;
    font-size: 18px;
    color: #45403D;
}

.block-pres-body .bolck-pres-video {
    width: calc(40% - 15px);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 25px 25px 0px 0px #B42F27;
    cursor: pointer;
    transition: all 0.5s;
    margin: auto 0;
}

.bolck-pres {
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.block-pres-body .bolck-pres-video:hover {
    scale: 105%;
    box-shadow: 15px 15px 0px 0px #B42F27, 25px 25px 12px 0 rgba(0, 0, 0, 0.25);
}


.block-pres-action a {
    display: flex;
    background-color: #FED25F;background-image: linear-gradient(90deg,#d9a920 0%, #fbd042 53.97%, #d9a920 100%);
    width: 190px;
    height: 46px;
    border-radius: 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #262626;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
}


.block-pres-inner {
    padding-bottom: 60px;
    padding-top: 30px;
}

.pres-video-cover {
    width: 100%;
    height: 100%;
}

.pres-video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.pres-video-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgb(0 0 0 / 23%);
}

.block-pres-action {
    padding: 20px 0;
}

.bolck-iip {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 60px 0;
    background-attachment: fixed;
}

.block-iip-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0;
    align-items: center;
}

.block-iip-desc {
    width: calc(50% - 15px);
    padding: 30px 40px 0 0;
    font-size: 18px;
    color: #45403D;
}

.bolck-iip-action {
    width: calc(50% - 15px);
}

.bolck-iip-action a {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.5s;
}

.bolck-iip-action a:hover {
    scale: 105%;
    box-shadow: 0px 0px 13px 1px rgb(0 0 0 / 17%);
}

.bolck-iip-img {
    width: calc(100% - 100px);
    padding: 15px 0;
}

.pres-video-icon img {
    width: 70px;
}

#presPopup iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.copyright-txt a {
    color: #B42F27;
}

/* add section publication */
.accedez-maintenant:after {
    content: "";
    background-image: url(../imgs/flash_info/bg--2.png);
    position: absolute;
    width: 378px;
    height: 100%;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    right: 0;
}

.img----accedez img {
    width: 100%;
    height: 100%;
}

.detail--accedez {
    width: 70%;
}

.img----accedez {
    height: 334px;
    width: 334px;
    z-index: 10;
}

section.sc--accedez-maintenant {
    padding: 30px 0 75px 0;
}

.accedez-maintenant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F4F4F5;
    border-radius: 10px;
    box-shadow: 1px 1px 12px 0px rgb(0 0 0 / 25%);
    padding: 40px;
    position: relative;
}

.detail--accedez p {
    font-size: 18px;
    color: #6C7179;
}

.detail--accedez h4 {
    font-size: 25px;
    color: #B42F27;
    font-weight: bold;
}

.detail--accedez h5 {
    font-size: 18px;
    font-family: "Lato Bold";
    background: #B42F27;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    width: max-content;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .detail--accedez {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .detail--accedez {
        width: 100%;
    }

    .img----accedez {
        height: 100%;
        width: 100%;
    }

    .detail--accedez h5 {
        width: 100%;
        margin-bottom: 30px;
    }

    .accedez-maintenant {
        display: block;
        padding: 20px;
    }
}

/*
.menu-subs-inner ul li:nth-child(1) {
  display: none;
}
*/

#sliding-popup.sliding-popup-bottom {
    padding: 6px 15px;
    background: #848484;
}
#sliding-popup .popup-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: none;
}
#sliding-popup .popup-content:before,
#sliding-popup .popup-content:after {
    content: " ";
    display: table;
}
#sliding-popup .popup-content:after {
    clear: both;
}
#sliding-popup .popup-content #popup-text {
    max-width: none;
    margin: 0;
    float: none;
}
#sliding-popup .popup-content #popup-text p {
    font-size: 18px;
    font-weight: 100;
}
#sliding-popup .popup-content #popup-buttons {
    max-width: none;
    float: none;
    margin: 0;
}
#sliding-popup .popup-content #popup-buttons button {
    padding: 0;
    margin: 6px;
    text-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
}
#sliding-popup .popup-content #popup-buttons button:hover {
    color: #000;
    background: none;
    opacity: 0.8;
    text-decoration: underline;
}
