/* ----------------------------------

    01. COMMON STYLES
    02. MENU
    03.
    04.
    05.
    06.
    07.
    08.
    09.
    10.
    11.

---------------------------------- */
/* ===================================
Preloader
====================================== */
#main {
    display: none;
}

.loader_bg {
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader:before,
.loader:after {
    content: '';
    border: 1em solid #ff5733;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: .5s;

}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===================================
    01. COMMON STYLES
====================================== */

h1,
h2,
h3,
h4 {
    font-family: "Barlow";
}

p {
    color: #707070;
}

.descr p {
    color: inherit;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.container-fluid {
    padding-top: 100px;
    padding-bottom: 100px;
}

.title {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

button.btn_orange {
    background-color: #F37043;
    padding: 5px 30px;
    color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(243, 112, 67, 0.6);
    -moz-box-shadow: 0px 0px 20px 0px rgba(243, 112, 67, 0.6);
    box-shadow: 0px 0px 20px 0px rgba(243, 112, 67, 0.6);
    border: none;
    position: relative;
}

.btn_orange:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;

    background: rgba(243, 112, 67, 0.6);
    background-size: 400%;
    border-radius: 40px;
    opacity: 0;
    transition: 0.5s;
}

.btn_orange:hover:before {
    filter: blur(20px);
    opacity: 1;
}



button.btn_white {
    background: #fff;
    padding: 5px 30px;
    color: #105CA3;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.6);
    border: none;
    position: relative;
}

.btn_white:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;

    background: rgba(255, 255, 255, 0.6);
    background-size: 400%;
    border-radius: 40px;
    opacity: 0;
    transition: 0.5s;
}

.btn_white:hover:before {
    filter: blur(20px);
    opacity: 1;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

section.first_section {
    padding-top: 100px;
}

h2 {
    /* 	font-size: 3.75em; */
    font-size: min(max(1.5rem, 3.5vw), 3.5rem);
    text-transform: uppercase;
    margin-bottom: 0;
}

@supports (font-size: clamp(1.5rem, 3.5vw, 3.5rem)) {
    h2 {
        font-size: clamp(1.5rem, 3.5vw, 3.5rem);
    }
}

.leftWord {
    font-size: 2.5em;
    font-weight: bold;
    color: rgba(16, 92, 163, .15);
    position: absolute;
    top: 35%;
    left: 2%;
    right: auto;
    bottom: auto;
    line-height: 1;
    text-transform: uppercase;
    z-index: 5;
}

.leftWord_1440 {
    font-size: 1.5em;
    font-weight: bold;
    color: rgba(16, 92, 163, .3);
    line-height: 1;
    text-transform: uppercase;
    display: none;
    padding-bottom: 25px;
}

.section_blue .leftWord_1440 {
    color: rgba(255, 255, 255, .3);
}

.slick-dots li button:before {
    font-size: 12px;
    color: transparent;
    border: 1px solid #707070;
    border-radius: 100%;
}

.slick-dots li.slick-active button:before {
    background: #F37043;
    border: none;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(243, 112, 67, 1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(243, 112, 67, 1);
    box-shadow: 0px 0px 30px 0px rgba(243, 112, 67, 1);
    border-radius: 100%;
    color: transparent;
}

button,
.slick-slide {
    outline: none !important;
}

.hexa_div img.hexa_body {
    position: absolute;
    top: calc(-100vh - 140px);
    left: 0;
    right: 0;
    bottom: auto;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.abs {
    position: absolute;
}

.rel {
    position: relative;
}



/* ===================================
    02. MENU
====================================== */
menu {
    margin: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
    height: 100px;
}

.menu {
    padding-bottom: 5px;
    padding-top: 5px;
    display: flex;
    height: 100%;
}

#logoContainer {
    /* 		max-width: 200px; */
    height: 100%;
}

#logoContainer #logo {
    /* 			width: 100%; */
    height: 100%;
    padding: 10px;

}

.menuContainer {
    margin-right: 8vw;
    width: 100%;
}

.menuItem {
    display: flex;
    text-transform: uppercase;
    color: #707070;
    position: relative;
}

.menuMainItem {
    margin: auto;
    padding: 7px;
    position: relative;
}

.menuMainItem a {
    color: inherit;
    font-weight: normal;
    font-size: 14px;
}

.menuMainItem a:hover {
    color: #F37043;
    text-decoration: none;
}

.active_lang {
    font-weight: bold;
    color: #F37043;
}

.menuMainItem.active_lang a {
    font-weight: inherit;
}

.active_page {
    color: #F37043;
}

.menuMainItem {
    position: relative;
    z-index: 99;
}

.submenu {
    display: none;
    position: absolute;
    bottom: auto;
    background: #fff;
    font-size: 0.9em;
    width: max-content;
    left: -7px;
    padding-top: 14px;
    text-transform: none;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 85% 100%, 0 100%, 0 35%);
}

menu.menu_scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background: #fff;
    z-index: 999;
    height: 85px;
    animation-name: menu;
    animation-duration: .5s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
}

.menuContainermobile {
    display: none;
}

@keyframes menu {
    from {
        top: -100px;
    }

    to {
        top: 0;
    }
}


/* BURGER */

#burger {
    width: 32px;
    height: 24px;
    position: relative;
    margin: auto;
    margin-right: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

#burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #FF7643;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


#burger span:nth-child(1) {
    top: 0px;
}

#burger span:nth-child(2),
#burger span:nth-child(3) {
    top: 10px;
}

#burger span:nth-child(4) {
    top: 20px;
}

#burger.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

#burger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#burger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#burger.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}




/* ===================================
    03. HOMEPAGE
====================================== */
#presentation h3 {
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF7643;
    text-transform: uppercase;
    font-size: 50px;
    text-shadow: 2px 2px 2px #00000069;
    font-weight: bold;
}
/* ===================================
    03. BANNER
====================================== */

.jumnoBanner {
    height: calc(70vh - 100px);
    margin-top: 100px;
    position: relative;
    z-index: 5;
}

.jumnoBanner.type2 {
    height: 60vh;
}

.divjumnoBanner {
    clip-path: polygon(15% 0, 100% 0, 100% 65%, 85% 100%, 0 100%, 0 35%);
}

.imgBanner {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.containertitleBanner {
    position: absolute;
    width: 55%;
    top: 40%;
    right: 0;
    left: auto;
    bottom: auto;
    background: #00000087;
    border-right: none;
    padding: 40px 0 40px 40px;
}

.containertitleBanner h1 {
    color: #FF7643;
    font-size: min(max(1.75rem, 4.5vw), 5rem);
    text-transform: uppercase;
    line-height: 1;
    font-weight: 500;
}

@supports (font-size: clamp(1.75rem, 4.5vw, 5rem)) {
    .containertitleBanner h1 {
        font-size: clamp(1.75rem, 4.5vw, 5rem);
    }
}

.containertitleBanner .descr {
    color: #fff;
    font-size: 25px;
}
.linkForma {
    color: #707070;
    text-decoration: underline;
}
#videohistoire {
    cursor: pointer;
}
/* ===================================
    03. SECTION
====================================== */

.section_white h2 {
    color: #105CA3;
    padding-bottom: 75px;
}

.section_white .descr {
    padding-bottom: 50px;
    color: #707070;
    padding-left: 0;
}

.section_blue {
    color: #fff;
}

.section_blue h2 {
    padding-bottom: 75px;
    color: inherit;
}

.section_blue .descr {
    color: inherit;
    padding-bottom: 30px;
}


.fond_bleu {
    background: #105CA3;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 65%, 85% 100%, 0 100%, 0 35%);
}

.section_blue .leftWord {
    color: rgba(255, 255, 255, .15);
}

.section_histoire .image {
    height: 400px;
}


#videohistoire {
    outline: none;
    width: 100%;
}

.imageMotion {
    width: 80%;
    height: auto;
}

.motionDispo {
    font-size: 2.5vw;
    color: #FF7643;
    font-weight: 800;
    text-shadow: 2px 2px 3px #000000d9;
    top: 80%;
    left: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* ===================================
    03. BADGES
====================================== */

.section_white.section_formation .descr {
    padding-top: 50px;
    padding-bottom: 30px;
}

.badge_ {
    height: 220px;
    width: 200px;
}

.badge_droite {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    padding-left: 20px;

    font-size: 1.5em;
    font-weight: 300;
    color: #707070;
}

.badge_droite img {
    margin-left: -7px;
}


img.hexa_bleu {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}


.petit_badge {
    text-align: center;
}

.petit_badge img {
    height: 130px;
    width: 130px;
}

.badge_txt {
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: bold;
    color: rgba(255, 255, 255, .3);
}

.orange1 {
    color: #F37043;
}

.badgeModal {
    cursor: pointer;
}
.modalContainer .modal-dialog {
    max-width: 60vw;
    height: 60vh;
}

.modal-body {
    color: black;
}
.niveauText2, .niveauText3 {
    display: none;
}
.niveauAll {
    height: 33.33%;
    cursor: pointer;
}
.niveauAll img {
    width: 50%;
    margin-bottom: 20px;

}
.niveauAll img:first-child{
    /* transform: scale(1.1); */
}
.nivText h3 {
    color: #F37043;
    text-transform: uppercase;
}
.nivText h3 p{
    color: #F37043;
}
.badgeModal {
    transition: all 0.3s ease-in-out;
}
.badgeModal:hover {
    transform: scale(1.1);
}
/* ===================================
    03. ACTUS
====================================== */

.section_actu {
    overflow-x: hidden;
    position: relative;
}

.slick-actu:after {
    top: 0;
    left: -500px;
    right: auto;
    bottom: auto;
    height: 100%;
    width: 500px;
    background: white;
    content: '';
    position: absolute;
}

.slick-actu {
    margin-bottom: 100px !important;
}

.section_actu .slick-dots {
    bottom: -50px;
}

.slick-actu .slick-list {
    overflow: visible;
}

.actuSlick {
    color: #fff;
    position: relative;
    /* 	height: 265px; */
    transition: all 1s ease-in-out;
}

.actuBlock {
    background: rgba(243, 112, 67, .6);
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: auto;
    right: auto;
    width: 100%;
    animation-duration: 1s;
    animation-name: slideOut;
}



@keyframes slide {
    from {
        height: 20%;
        top: 80%;
    }

    to {
        height: 100%;
        top: 0;
    }
}

@keyframes slideOut {
    from {
        height: 100%;
        top: 0;
    }

    to {
        height: 20%;
        top: 80%;
    }
}

.actuName {
    font-size: .9em;
}

.actuDescr {
    display: none;
    font-size: 0.8em;
}

a.actuSlick:hover {
    color: #fff;
}

a.actuSlick:hover .actuBlock {
    animation-duration: 1s;
    animation-name: slide;
    animation-fill-mode: forwards;
}

a.actuSlick:hover .actuDescr {
    display: block;
}

.slick-dots li button:before {
    height: 15px;
    width: 15px;
}


/* ===================================
    00. PAERTENAIRES
====================================== */

.slick-partenaires {
    margin-bottom: 75px;
}

.slick-partenaires img {
    height: 70px;
}
.slick-partenaires .slick-dots {
    bottom: -55px;
}
.ope .slick-dots, .fina .slick-dots {
    display: none;
}
.slick-partenaires .slick-prev {
    bottom: -75px;
    right: auto;
    left: 47%;
    top: auto;
}

.slick-partenaires .slick-next {
    bottom: -75px;
    right: 47%;
    left: auto;
    top: auto;
}

.slick-prev:before,
.slick-next:before {
    background: transparent;
    color: #F37043;
    border-radius: 100%;

}

.sectionParte {
    padding-top: 0;
}

.financeurs .slick-track {
    display: flex;
    align-items: center;
}

.financeurs img {
    height: auto;
}

.etatDesLieux img {
    width: 70%;
}

.financeurs h4,
.partenaires h4 {
    color: #105CA3;
}

/* ===================================
    00. PAGE CV
====================================== */

.banner_cv {
    margin-top: 100px;
}

.banner_cv_img {
    height: 380px;
    margin-left: -15px;
    margin-right: -15px;
}

.banner_cv_pres {
    margin-top: -100px;
}

.banner_cv_pres .cv_infos {
    background: #F37043;
    /* 	border: 1px solid #F37043; */
    padding: 80px 30px 100px 30px;
    clip-path: polygon(25% 0, 100% 0, 100% 85%, 75% 100%, 0 100%, 0 15%);
    position: relative;
}

.banner_cv_pres .cv_infos:after {
    background: #fff;
    content: '';
    height: calc(100% - 2px);
    width: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: -1;
    clip-path: polygon(25% 0, 100% 0, 100% 85%, 75% 100%, 0 100%, 0 15%);
}

.banner_cv_pres img {
    height: 200px;
    width: 200px;
    margin: auto;
}

.cv_infos .cv_nom {
    color: #105CA3;
    font-weight: 600;
    font-size: 1.25em;
    padding-top: 10px;
}

.cv_infos span {
    color: #105CA3;
    font-weight: 300;
    padding: 5px 0;
}

#dl_cv {
    position: absolute;
    left: 30px;
    bottom: 30px;
    top: auto;
    right: auto;
    color: #F37043;
    font-size: .8em;
    cursor: pointer;
}


.banner_cv_pres h2 {
    color: #105CA3;
    padding-bottom: 40px;
}

.banner_cv_pres .descr {
    text-align: justify;
}

.cv_formation,
.cv_experience {
    border: 1px solid #F37043;
    padding: 50px 35px;
}

.cv_formation h3,
.cv_experience h3 {
    color: #105CA3;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 50px;
}

.list .date_1 {
    color: #105CA3;
    min-width: 25%;
}

.list .fonction_1 {
    color: #105CA3;
    font-weight: bold;
}

.CV_social {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.cv_social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ===================================
03. SECTION
====================================== */

.projet h2,
.partenaires h2,
.contact h2 {
    color: #105CA3;
}

.imageProjet {
    width: 100%;
    height: 100%;
}

.partenaires h3 {
    color: #105CA3;
    text-transform: uppercase;
}

.partenaires img {
    width: 225px;
}

.logoGr {
    width: 30%;
}

.partenaires hr {
    border-top: 1px solid rgb(0 0 0 / 15%);
}

.jobRow {
    height: 30vh;
    margin-bottom: 10%;
}

.space {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.contact a {
    color: #707070;
}

.containerDate h4 {
    font-size: 60px;
    font-weight: bolder;
    padding-bottom: 10px;
    color: #105CA3;
}

.slick-date .slick-track {
    padding-top: 25px;
    padding-bottom: 25px;
}

.date {
    width: 200px;
    height: 200px;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 3px 2px 8px #d0d0d0d1;
}

.slick-date {
    margin-bottom: 100px;
}

.type2 {
    padding-top: 0;
}
.linkPart {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    position: absolute;
}
/* ===================================
    00. PAGE FORMATIONS
====================================== */

.badge_formations {
    width: 100px;
}

.fond_formation_1 {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 50%;
    background: #F37043;
    z-index: -1;
    /* 	clip-path: polygon(15% 0, 100% 0, 100% 65%, 85% 100%, 0 100%, 0 35%); */
    display: none;
}


/* ===================================
    00. PAGE CONTACT
====================================== */

.contenuContact {
    /*   margin-top: 6em; */
    position: relative;
    color: #707070;
}

.contenuContact h3 {
    margin-bottom: 2em;
    font-weight: 900;
}

.contenuContact .bootstrapElement input {
    width: 100%;
    border: none;
    border-bottom: 3px solid #FF7643;
    outline: none;
    background-color: white;
    margin-bottom: 2em;
}

.contenuContact .bootstrapElement textarea {
    width: 100%;
    border: none;
    border-bottom: 3px solid #FF7643;
    outline: none;
    margin-right: 15px;
    margin-bottom: 0;

}

.contenuContact .contactButton {
    background-color: #FF7643;
    border: none;
    height: 4em;
    width: 45%;
    height: 4em;
    text-transform: uppercase;
    font-weight: 800;
    margin-left: 5px;
    margin-bottom: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    margin-left: 0;
    margin-bottom: 0;
    transition: all 0.2s ease-in-out;
    box-shadow: 4px -3px 1px 2px #FF7643;
    color: #fff;
}

.contenuContact .contactButton:hover {}

.other_section {
    padding-bottom: 0 !important;
}

.contact .mainRow .col.bootstrapElement:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainRow .row {
    width: 100%;
}

/* ===================================
    00. FOOTER
====================================== */

#footer {
    overflow: hidden;
}

#footer.container-fluid {
    padding-top: 75px;
    padding-bottom: 75px;
}

#footer .fond_polygon {
    background-color: #F37043;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 15% 100%);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer_logo {
    max-width: 300px;
    margin: auto;
}

.footer_info h4, .footer_social h4 {
    font-size: 40px;
}

.subfooter {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    top: auto;
    margin: auto;
    font-size: 0.8em;
}

.footer_icon_text {
    color: #fff;
    text-align: center;
}

.footer_icon svg {
    margin: auto;
}

.footer_social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;

}
.footer_social svg {
    transition: all 0.3s ease-in-out; 
}
.footer_social svg:hover {
    transform: scale(1.5);
}

.footer_social svg>path,
.footer_social #Soustraction_24,
.footer_social #Soustraction_25,
.footer_social #Tracé_757,
.footer_social #Tracé_758,
.footer_social #Tracé_759 {
    fill: #fff;
}

img.hexa_footer {
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.logofootermobile {
    display: none;
}

.contactLien,
.contactLien:hover {
    color: white;
}

.contactTitreFooter p {
    color: white;
}

.titreMaintenance {
    color: #105CA3;
    margin-top: 100px;
}

.menuPublication {
    list-style: none;
    display: inline-block;
}

.menuPublication .menuItem2 {
    cursor: pointer;
    margin: 0 20px 40px 20px;
    padding: 15px 25px 15px 25px;
    box-shadow: 2px 3px 12px #d85a007a;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.menuPublication .menuItem2 {
    color: #FF7643;
}

.menuPublication .menuItem2:hover {
    text-decoration: none;
}

.menuPublication .menuItem2:hover {
    background-color: #FF7643;
}

.menuPublication:hover .menuItem2 {
    color: white;
}

.actives {
    background-color: #FF7643 !important;
    color: white !important;
}

.maintenance-refs h4,
.production-refs h4 {
    color: #FF7643;
    text-transform: uppercase;
    text-decoration: underline;
}

.maintenance-refs p,
.production-refs p {
    color: black;
}

.maintenance-refs,
.production-refs {
    padding-bottom: 75px;
}

.maintenance-refs img,
.production-refs img {
    width: 60%;
}
.tabForma {
    width: 60%;
}
.logofooter {
    width: 90%;
}
@media screen and (max-width: 866px) {
    .tabForma {
        width: 100%;
    }
}
@media screen and (max-width: 650px) {

    .maintenance-refs img,
    .production-refs img {
        width: 100%;
    }
    
    .menuPublication .menuItem2 {
        cursor: pointer;
        margin: 0 0px 40px 0px;
        padding: 15px 25px 15px 25px;
        box-shadow: 2px 3px 12px #d85a007a;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }
}

/* ===================================
    00. MEDIA QUERIES
====================================== */
@media screen and (max-width: 1714px) {
    .leftWord_1440 {
        display: block;
    }

    .leftWord {
        display: none;
    }
}

@media screen and (max-width: 1440px) {
    .containertitleBanner h1 {
        /* 		font-size: 4em; */
    }

    h2 {
        /* 		font-size: 3em; */
    }

    .section_white h2,
    .section_blue h2 {
        padding-bottom: 50px;
    }

    section.first_section {
        /* 		padding-top: 150px; */
    }

    section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .footer_logo {
        max-width: 225px;
    }

    .section_histoire .image {
        height: 300px;
    }

    .badge_ {
        height: 165px;
        width: 150px;
    }

    .badge_droite img {
        max-width: 200px;
    }

    .fond_bleu {
        clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    }
}

@media screen and (max-width: 1367px) {
    .fond_bleu {
        clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    }

    .badge_ {
        height: 165px;
        width: 150px;
    }

    #videohistoire {
        width: 80%;
    }
    #presentation h3 {
        left: 40%;
    }
}

@media screen and (max-width: 1280px) {
    .containertitleBanner h1 {
        /* 		font-size: 3.5em; */
    }

    section.first_section {
        padding-top: 100px;
    }

    h2 {
        /* 		font-size: 2.5em; */
    }

    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer_logo {
        max-width: 200px;
    }

    .actuSlick {
        /* 		height: 200px; */
    }

    .actuName {
        font-size: .9em;
    }

    .badge_ {
        height: 115px;
        width: 100px;
    }

    .menuContainer {
        margin-right: 2vw;
    }

    .menuMainItem a {
        font-size: .85em;
    }

    #footer.container-fluid {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 1240px) {
    .section_histoire .image {
        height: 200px;
    }

    .menuContainer {
        margin-right: 0;
    }

    .section_histoire .image {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .logofootermobile {
        display: block;
    }

    .logofooter {
        display: none;
    }

    .menuItem {
        display: none;
    }

    #burger {
        display: block;
        z-index: 20;
        position: relative;
    }

    .containertitleBanner {
        width: 75%;
    }

    h2 {
        /* 		font-size: 2em; */
        padding-bottom: 35px;
    }

    .section_white .descr,
    .section_white h2,
    .section_blue h2 {
        padding-bottom: 35px;
    }

    section.first_section {
        padding-top: 75px;
    }

    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .badge_droite img {
        height: 30px;
    }

    .section_white.section_formation .descr {
        padding-top: 35px;
        padding-bottom: 20px;
    }

    #footer .fond_polygon {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
    }

    .menuItem {
        display: none;
    }

    .menuContainermobile {
        display: none;
        flex-direction: column;
        position: fixed;
        min-height: 100vh;
        width: 100vw;
        z-index: 10;
        background: rgba(255, 255, 255, .95);
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: auto;
        padding-top: 10%;
        padding-bottom: 200px;
    }

    .submenu {
        position: relative;
        display: block;
        background-color: transparent;
    }

    .menuContainermobile .lang_menu {
        flex-direction: column;
    }

    .menuMainItem {
        margin-left: 5% !important;
    }

    .menuMainItem a i {
        display: none;
    }

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

    .colForm {
        margin-bottom: 280px;
    }
    .slick-partenaires .slick-slide {
        padding-left: 25px;
    }
}

@media screen and (max-width: 992px) {
    .jumnoBanner {
        height: calc(70vh - 100px);
    }

    .containertitleBanner {
        width: 85%;
        top: 30%
    }

    .containertitleBanner h1 {
        /* 		font-size: 3em; */
    }

    .containertitleBanner .descr {
        font-size: 20px;
    }

    #videohistoire {
        width: 100%;
    }

    .slick-partenaires .slick-next {
        right: 46%;
    }

    .slick-partenaires .slick-prev {
        left: 46%;
    }

    .imageProjet {
        height: 360px;
    }

    .slick-date {
        margin-top: 50vh;
    }
    .actVid {
        margin-top: 450px;
    }
    #presentation h3 {
        left: 50%;
        font-size: 30px;
    }
    .modalContainer .modal-content {
        height: 90vh;
    }
}

@media screen and (max-width: 800px) {
    h2 {
        /* 		font-size: 1.75em; */
    }
}

@media screen and (max-width: 767px) {
    .section_histoire .image {
        margin-bottom: 20px;
    }

    .jumnoBanner {
        height: calc(60vh - 75px);
        margin-top: 75px;
    }

    .menuContainermobile {
        top: 75px;
    }

    menu {
        height: 75px;
    }

    .fond_bleu {
        clip-path: none;
    }

    .slick-partenaires .slick-next {
        right: 45%;
    }

    .slick-partenaires .slick-prev {
        left: 45%;
    }
    #presentation h3 {
        left: 50%;
        font-size: 24px;
    }
    .niveauAll img {
        width: 90%;
    }
    .nivText h3 {
        font-size: 25px;
    }
}

@media screen and (max-width: 576px) {
    .containertitleBanner .descr {
        font-size: 16px;
    }

    .section_white.section_formation .descr {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .footer_icon_text {
        font-size: .8em;
    }

    .footer_icon svg {
        width: 80%;
    }

    .badge_ {
        width: 80px;
        height: 92px;
    }

    .badge_droite img {
        max-width: 150px;
    }

    .badge_droite {
        font-size: 1.2em;
    }

    .leftWord_1440 {
        font-size: 1.25em;
    }

    .petit_badge img {
        height: 100px;
        width: 100%;
    }

    #logoContainer #logo {
        padding: 10px 0;
    }

    .menu {
        padding-left: 0;
    }

    button.btn_orange,
    button.btn_white {
        font-size: .8em;
    }

    .slick-partenaires img {
        height: 50px;
    }

    .pt-mobile {
        padding-top: 30px !important;
    }

    .pb-mobile {
        padding-bottom: 30px !important;
    }

    .leftWord_1440 {
        padding-bottom: 15px;
    }

    .section_histoire .image {
        height: 125px;
    }
    #presentation h3 {
        left: 50%;
        font-size: 22px;
    }
    .modalContainer .modal-dialog {
        max-width: 85vw;
        margin: auto;
    }
}

@media screen and (max-width: 480px) {
    .containertitleBanner .descr {
        font-size: 14px;
    }

    .slick-partenaires .slick-next {
        right: 44%;
    }

    .slick-partenaires .slick-prev {
        left: 44%;
    }

    .containertitleBanner {
        width: 90%;
        top: 25%;
    }

    p {
        font-size: .9em;
    }

    #footer .fond_polygon {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 25%);
    }
}

@media screen and (max-width: 420px) {
    .containertitleBanner {
        width: 95%;
        padding: 30px 0 30px 30px;

    }

    .slick-partenaires .slick-next {
        right: 43%;
    }

    .slick-partenaires .slick-prev {
        left: 43%;
    }

    .divjumnoBanner {
        clip-path: polygon(15% 0, 100% 0, 100% 75%, 85% 100%, 0 100%, 0 25%);
    }

    .colForm {
        margin-bottom: 320px;
    }
    #presentation h3 {
        left: 50%;
        font-size: 16px;
    }
}
@media screen and (max-width: 375px) {
    .nivText h3 {
        font-size: 20px;
        margin-top: -10px;
    }
}
@media screen and (max-width: 360px) {
    .slick-partenaires .slick-next {
        right: 41%;
    }

    .slick-partenaires .slick-prev {
        left: 41%;
    }

    .containertitleBanner {
        width: 97%;
        top: 20%;
        padding: 20px 5px 20px 20px;
    }
}
@media screen and (max-width: 320px) {
    #presentation h3 {
        left: 50%;
        font-size: 14px;
    }
}

@media screen and (max-width: 360px) and (max-height: 560px) {
    .jumnoBanner {
        height: calc(75vh - 75px);
    }
}