html {
    overflow-x: hidden;
}

body.hidden {
    overflow-y: hidden;
}

body {
    overflow: visible !important;
}

.mfc-dark * {
    color: white !important;
}

h1,
h2,
h3 {
    line-height: 0.8;
}

strong {
    font-weight: normal !important;
    font-size: inherit !important;
}

p {
    color: rgb(97, 97, 97);
}

.no-break {
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
}

*[mfc-border="none"] {
    border: 0;
}

.mfc-effect {
    transition: all .7s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.mfc-opacity-effect {
    opacity: .5;
}

.mfc-opacity-effect:hover {
    opacity: 1;
}

.mfc-shadow-effect {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.205);
}

.hover-zoom-effect:hover {
    transform-origin: center;
    transform: scale(1.02);
}

.mfc-d-flex {
    display: flex;
}

.mfc-flex-row {
    flex-direction: row;
}

.mfc-flex-col {
    flex-direction: column;
}

.mfc-flex-space-between {
    justify-content: space-between;
}

.mfc-bg-white {
    background-color: white;
}

.ef-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mfc-transaction-container {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.mfc-transaction-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 40px;
    margin: 0;
    justify-content: center;
    width: 100%;
}

.mfc-transaction-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px 0 0 0;
    width: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.253);
    background-color: white;
    align-self: center;
    justify-self: center;
    cursor: pointer;
    transition: all .8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.mfc-trans-status {
    position: absolute;
    top: 5px;
    right: 5px;
    width: max-content;
    background: #A5967A;
    padding: 2px 12px;
    color: white;
}

.mfc-transaction-item:hover {
    transform: scale(1.03);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.253);
}

.mfc-item-head {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.mfc-item-head img {
    width: 220px !important
}

.mfc-item-head h3 {
    margin: 0;
    color: #114862;
}

.mfc-item-content {
    /* margin: 30px 0 10px 0; */
}

.mfc-item-content p {
    text-align: center;
    padding: 0 20px;
    color: gray;
}

.mfc-item-content .mfc-item-subject-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.mfc-item-content .mfc-item-subject-logo img,
.mfc-trans-placeholder {
    max-height: 90px !important;
    /* max-width: 30% !important; */
    height: 90px;
    min-height: 60px;

    margin: 4px;
}

.mfc-item-date {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 30px;
}

.mfc-item-date svg {
    width: 15px;
    margin-right: 6px;
}

.mfc-item-date svg path {
    fill: none;
    stroke-width: 1;
    stroke: #A5967A;
}

.mfc-item-date p {
    line-height: 0;
    color: #A5967A;
}

.mfc-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-height: 90px;
    padding: 0 20px;
    background-color: #114862;
}

.mfc-item-footer h5 {
    color: white;
}

.mfc-item-countries-box {
    display: flex;
    justify-content: center;
}


.mfc-item-countries-box .mfc-box {
    width: 40px;
    height: 40px;
    margin: 5px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mfc-item-countries-box img {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover !important;
}

/*BOUTON DISPLAY FILTER */

.mfc-display-filter {
    margin: 12px 0;
}

.mfc-open-filter {
    padding: 10px 12px;
    background-color: #A5967A;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 0px;
    cursor: pointer;
}

.mfc-open-filter svg {
    width: 18px;
    margin: 0 6px 0 0;
    fill: white !important;
}

.mfc-filter-close-box svg path {
    fill: #A5967A;
}

/*Filter */
.mfc-filter-box {
    position: fixed;
    left: 0;
    top: 20%;
    width: 250px;
    height: 80%;
    background-color: white;
    z-index: 99999;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transform-origin: left;
    transform: translateX(-100%);
    transition: all .7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mfc-filter-box.active {
    transform: translateX(0);
}

.mfc-filter-content {
    background-color: rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    padding: 30px 15px;
}

.mfc-filter-content input,
.mfc-filter-content select {
    padding: 12px 8px;
    border-width: 0;
    width: 100%;
    display: block;
    box-sizing: border-box;
    background-color: white !important;
    margin: 10px 0;
    outline: none;
}

.mfc-filter-close-box {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    z-index: 3;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


/* FENETRE CONTEXTUELLE*/
.mfc-transactions-item-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #114862f5;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: left;
    transform: scaleX(0);
    transition: all .6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mfc-transactions-item-container.active {
    transform: scaleX(1);
}

.mfc-transaction-window-item {
    background-color: white;
    width: 500px;
    position: relative;
    box-sizing: border-box;
    padding: 40px;
    max-width: 550px;
    max-height: 80%;
    margin: 0 2%;
}

.mfc-trans-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mfc-trans-header-item {
    width: 30%;
}

.mfc-trans-header-item img {
    width: 100%;
}

.mfc-trans-header-item.mfc-trans-logo img {
    width: 30% !important;
}

@media screen and (max-width: 768px) {
    .mfc-transaction-items {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
        gap: 20px;
    }

}

@media screen and (max-width: 458px) {
    .mfc-transaction-items {
        grid-template-columns: repeat(1, minmax(250px, 1fr));
        gap: 20px;
    }

}

/*END TRANSACTION********************************************************************/

/*START NEW **********************************************************************/



.mfc-news-container {
    padding: 0;
}

/* STARTI HERO STYLE */
.mfc-news-hero {
    position: relative;
    height: 90vh;
}

.mfc-news-hero h1,
.mfc-news-hero h2,
.mfc-news-hero h3,
.mfc-news-hero p {
    color: white;
}

.mfc-hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: relative;
}

.mfc-hero-img-bg div {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    width: 100px;
}

.mfc-hero-img-bg div img {
    width: 100%;
    opacity: 0.6;
}

.mfc-hero-img-bg img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
    object-position: center;
}

.mfc-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: end;
    align-items: flex-start;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.432);
}

.mfc-hero-item {
    margin: 0 2%;
}

.mfc-footer-cta.hero {
    display: flex;
    justify-content: left;
    align-items: center;
}

.mfc-footer-cta.hero a {
    margin: 0 20px 0 0 !important;
}

/*END HERO STYLE */

.mfc-news-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 20px;
}

.mfc-new-card {
    display: flex;
    justify-content: space-between;
    background-color: white;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.322);
    position: relative;
    flex-direction: column;
}

.mfc-new-card div.mfc-left-side {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mfc-new-card div.mfc-left-side img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.mfc-bg-top-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #11486248;
    box-sizing: border-box;
}

.mfc-hero-head-section {
    max-width: 800px;
}


.mfc-new-card div.mfc-right-side {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

div.mfc-news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

div.mfc-news-card-footer div {
    width: 100%;
    overflow: hidden;
}

div.mfc-news-card-footer div img {
    width: 100%;
    left: -15%;
    position: relative;
}

/*START SINGLE STYLE */
.mfc-single-title {
    max-width: 600px;
}

.mfc-new-single-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    position: relative;
    align-items: start;
}

.mfc-single-ilustration-img {
    align-self: center;
    width: 100%;
}

.mfc-single-ilustration-img img {
    object-fit: cover;
    aspect-ratio: 16/6;
    width: 100%;
    height: 100%;
}

.mfc-new-single-right-side {
    position: sticky;
    top: 100px;
    background-color: white;
    padding: 0 0 20px 30px;
    color: white;
}

.mfc-new-single-right-side.mfc-dark {
    background-color: #114862;
}

.mfc-single-paragraphe {
    background-color: white;
    padding: 40px;
}

.mfc-single-paragraphe h3 {
    font-size: 3rem !important;
}

.mfc-single-paragraphe * {
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .mfc-flex-row {
        flex-direction: column;
    }

    .mfc-news-feature-secondary-button {
        display: none !important;
    }

    .mfc-news-items {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }

    .mfc-new-single-content {
        display: block;
    }

    .mfc-new-single-right-side {
        display: none;
    }

    .mfc-form-grid,
    .mfc-transaction-items {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .mfc-new-card {
        flex-direction: column !important;
    }

    .mfc-new-card .mfc-left-side,
    .mfc-new-card .mfc-right-side {
        width: 100% !important;
    }

    .mfc-news-card-footer {
        display: flex;
        flex-direction: column;
    }

    .mfc-footer-cta {
        width: 100% !important;
    }

    div.mfc-news-card-foot {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .mfc-news-items {
        grid-template-columns: repeat(1, minmax(250px, 1fr));
    }
}

/*CARRIERE FORM START STYLE */
.mfc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.mfc-form-control {
    width: 100%;
    box-sizing: border-box;
    outline: none;
    padding: 15px 20px !important;
    color: gray;
    background-color: white !important;
    border: 0;
    justify-content: space-between !important;

}

.intl-tel-input {
    width: 100% !important;
}

.intl-tel-input input {
    padding: 15px 20px 15px 60px !important;
}

.mfc-form-control[type="file"]::file-selector-button {
    background-color: white;
    border: 0;
}

label {
    color: gray;
}

label button svg {
    width: 10px;
    height: 10px;
}

label button svg path {
    fill: gray;
}

.mfc-form-control[type="file"] {
    display: none;
}

textarea.mfc-form-control {
    height: 150px;
}

label button,
label .mfc-call-to-action,
label select {
    border: 1px solid #CCC !important;
}

label select {
    line-height: 1.7 !important;
    box-shadow: none !important;
}

.selected-flag {
    padding-left: 22px !important;
}

.mfc-submit-button {
    margin-top: 20px;
}

/* CARRIERE ACHIVE STYLE ******/
.mfc-card-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    box-sizing: border-box;
}

.mfc-card {
    padding: 40px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
}

.mfc-carrie-content h3 {
    color: #A5967A !important;
    margin: 10px 0 !important;
}

/* INFORMATION */
.mfc-infos {
    overflow: hidden;
    background-color: #114862;
    color: white;
    /* padding: 10px 0; */
    height: 30px;
}

.mfc-marquee {
    display: inline-block;
    width: 100vw;
}

.mfc-marquee p,
.mfc-marquee a {
    display: inline-block;
    margin: 0 50px;
    font-size: 16px !important;
    text-decoration: none;
    color: white !important;
}

/*END SCROLL INFORMATIONS*/

/*SPLIDE *****/
.splide {
    padding: 0 !important;
}

.splide__arrow svg {
    fill: #114862 !important;
}

.splide__arrow svg:hover {
    fill: #A5967A !important;
}

.splide__slide .mfc-new-card {
    margin: 0 5px;
}

/** TEMA SPLIDE HERO */
.mfc-team-bg-slide ul li img {
    object-fit: contain;
    width: 100%;
}

.splide[team] {
    padding: 0;
}

.mfc-team-hero-slider-overlay {
    height: 100%;
    background-color: #114862e1;
    display: flex;
    justify-content: center;
    align-items: center;
}