:root {
    --main: #2022AA;
    --hover: #0054ff;
    --text: #000;
    --background: #fff;
    --blanc: #fff;
}

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

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


section {
    position: relative;
    /*  overflow: hidden; */
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--blanc);
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 2000;
    overflow: hidden;
}

@keyframes pulse {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.95);
    }
}

#loader img {
    animation: pulse 3s infinite;
}

body {
    /* font-family: 'Museo Sans', sans-serif; */
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    padding: 86px 0px 0px 0px;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    background-color: #f5f5f5;
}


header {
    position: fixed;
    width: 100%;
    display: block;
    top: 0px;
    z-index: 1024;
    left: 0px;
    background: #ffffff;
    padding: 20px 0px;
}

header>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}

body>header>div>figure {
    margin: 0px;
}

body>header>div>nav>ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0px;
}

body>header>div>nav>ul>li>a {
    display: block;
    color: var(--main);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    position: relative;
    letter-spacing: 0px;
    padding: 14px 10px;
    position: relative;
}

#btn_cta li {
    list-style-type: none !important;
}

#btn_cta .btn {
    font-size: .8vw;
    padding: 1.4vw 2vw;
    display: inline-flex;
    height: 3vw;
    margin-bottom: 0;
    margin-top: 0;
}

#btn_cta .btn span {
    margin-right: 8px;
}

body>header>div>nav>ul>li:last-child>a:hover:before {
    /*  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232022aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */
}

/* Footer */
body>footer {
    padding-top: 94px;
    background: #fff;
    padding-bottom: 25px;
}

body>footer>div:nth-child(1),
body>footer>div:nth-child(2) {
    width: 100%;
    /* max-width: 1244px; */
    max-width: 85%;
    margin: auto;
    position: relative;
}



body>footer>div:nth-child(1)>p:nth-child(1),
body>footer>div:nth-child(1)>p:nth-child(2) {
    margin-top: 0px;
    text-align: center;
}


body>footer>div:nth-child(1)>p:nth-child(1) {
    margin-bottom: 6px;
}

body>footer>div:nth-child(1)>p:nth-child(1)>a {
    font-size: 18px;
    letter-spacing: .5px;
    text-decoration: none;
    font-weight: 300;
}

body>footer>div:nth-child(1)>p:nth-child(2) {
    margin-bottom: 72px;
}

body>footer>div:nth-child(1)>p:nth-child(2)>a {
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.5px;
}

body>footer>div:nth-child(1)>ul {
    justify-content: center;
}

body>footer>div:nth-child(1)>ul,
body>footer>div:nth-child(2)>ul {
    display: flex;

    padding: 0px;
    list-style: none;
}

body>footer>div:nth-child(1)>ul {
    margin-bottom: 128px;
}

body>footer>div:nth-child(1)>ul>li>a {
    text-transform: uppercase;
    color: var(--main);
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none;
    padding: 12px 20px;
    letter-spacing: 0.1px;
    position: relative;
}

body>footer>div:nth-child(1)>ul>li>a:before {
    content: '';
    background: var(--main)1c;
    position: absolute;
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    transition: .4s;
    opacity: 0;
}

body>footer>div:nth-child(1)>ul>li>a:hover:before {
    transition: opacity .4s;
    opacity: 1;
}

body>footer>div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body>footer>div:nth-child(2)>p,
body>footer>div:nth-child(2)>ul>li>a {
    color: var(--text);
    /* font-weight: 300; */
    font-size: .7rem;
    letter-spacing: 0;
    opacity: .8;
}

body>footer>div:nth-child(2)>ul {
    margin-right: 90px
}

body>footer>div:nth-child(2)>ul>li>a {
    text-decoration: none;
    padding: 0px 20px 8px;
}


body>footer>div:nth-child(2)>a {
    position: fixed;
    background: var(--main);
    height: 60px;
    width: 60px;
    z-index: 15;
    bottom: 56px;
    transform: translate(-50%, 50%);
    right: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body>footer>div:nth-child(2)>a>svg {
    width: 30px;
    transition: .4s;
}

body>footer>div:nth-child(2)>a:hover>svg {
    width: 25px;
    transition: .4s;
}

body>footer>div:nth-child(2)>a>svg>path {
    fill: #fff;
}

/* module videos */

#jobgenius_video {
    overflow: hidden;
}

#jobgenius_video .hero_bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#jobgenius_video .video {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    padding-top: 56.25%;
    z-index: -1;
    top: 0px;
    position: absolute;
    left: 0px;
}

#slider {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    padding-top: 0%;
    z-index: -1;
    top: 0px;
    position: absolute;
    left: 0px;
    height: 100%;
}

section#jobgenius_categorie {
    background: #fff;
}

#jobgenius_video #slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



#jobgenius_video>div:nth-child(1)>iframe {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-0%, 50%);
    filter: grayscale(1)
}

#jobgenius_video>div:nth-child(1):after {
    content: '';
    /* background-image: linear-gradient(265deg, rgb(32 34 170 / 28%) 0%, rgb(32 34 170 / 50%) 76%); */
    background-color: black;
    opacity: 0.4;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    top: 0px;
}

#jobgenius_video>div:nth-child(1):after.opening {
    background-color: rgb(32 34 170);
    opacity: 0.4;
}


#jobgenius_video>div:nth-child(2) {
    display: flex;
    /* max-width: 940px; */
    max-width: 64%;
    margin: auto;
    /* height: 586px; */
    height: 68vh;
    min-height: 580px;
    max-height: 680px;
    align-items: center;
    position: relative;
    z-index: 10;
}

#jobgenius_video>div:nth-child(2)>div {
    /* max-width: 408px; */
    max-width: 60%;
}

#jobgenius_video>div:nth-child(2)>div>h1 {
    font-weight: 300;
    /* font-size: 54px; */
    font-size: 3.5rem;
    margin-bottom: 1rem;
    /*  filter: invert(1); */
    line-height: 1;
    color: white;
}

#jobgenius_video>div:nth-child(2)>div>h1>span {
    font-weight: 700;
    display: block;
}

#jobgenius_video>div:nth-child(2)>div>p {
    font-size: 13px;
    color: #000;
    line-height: 20px;
    /* opacity: .5; */
    /*  filter: invert(1); */
    margin-bottom: 1rem;
    display: block;
    color: white;
}

#jobgenius_video>div:nth-child(2)>div>ul {
    display: flex;
    padding: 0px;
    list-style: none;
}

#jobgenius_a_propos li {
    font-size: 0.885vw;
    opacity: .6;
}

#jobgenius_a_propos #a_propos_nav li,
#jobgenius_a_propos .a_propos_image li,
#jobgenius_a_propos li::marker {
    opacity: 1 !important;
}

#jobgenius_video>div:nth-child(2)>div>ul>li>a,
#jobgenius_categorie>p>a,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a {
    color: #ffffffeb;
    background: var(--main);
    padding: 12px 20px 12px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: .4s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    height: 40px;
}

#jobgenius_a_propos>div>div:nth-child(2)>div>ul>li>a.active {
    color: var(--hover);
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>.btn {
    background: #ffffff36;
    border: 1px solid #fff0;
}

/* #jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(1)>a:before, */
#jobgenius_categorie>p>a:before,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a:before {
    content: '';
    /*  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */
    display: inline-block;
    height: 16px;
    width: 16px;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>a {
    display: flex;
    justify-content: center;
    align-items: center;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>a>svg {
    fill: white;
    margin-left: .5vw;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>.btn span:after {
    content: '';
    /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>'); */
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: contain;
    margin-left: 16px;
    opacity: .9;
}


/* module cartes relative */


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


#jobgenius_cartes {
    position: relative;
    /* margin-top: -48px; */
    margin-top: -2.5rem;
    z-index: 11;
    padding-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
}


#jobgenius_cartes>div {
    display: flex;
    /* max-width: 830px; */
    max-width: 58%;
    margin: auto;
}


.bloc_emploi {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.bloc_emploi:hover {
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: all .2s ease-in-out;
}

#jobgenius_cartes>div>div {
    width: 100%;
}

.bloc_emploi>h2 {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--main);
    padding-top: 20px;
    position: relative;
    margin-bottom: 10px;
}

.bloc_emploi>h2>a {
    color: var(--main);
    background: #c0c1e3;
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    margin-top: 0px;
    margin-right: 0px;
    height: 40px;
    border-top-right-radius: 6px;
}



.bloc_emploi>h2>a>svg {
    height: 14px;
}

.bloc_emploi>h2,
.bloc_emploi>p:nth-child(2),
.bloc_emploi>p:nth-child(3) {
    /* padding-left: 46px; */
    padding-left: 24px;
    padding-right: 30px;
}

.bloc_emploi>p:nth-child(2) {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    padding-right: 22px;
    margin-bottom: 30px;
}

.bloc_emploi>p:nth-child(3) {
    text-align: right;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-right: 20px;
    padding-bottom: 1rem;
}

.bloc_emploi>p:nth-child(3)>a {
    color: var(--main);
    text-decoration: none;
}

/* module catégories */

#jobgenius_categorie,
#jobgenius_avantages,
#jobgenius_temoignages,
#jobgenius_gallerie,
#jobgenius_a_propos {
    padding: 40px 0px;

}

#jobgenius_categorie,
#jobgenius_gallerie,
#jobgenius_cta {
    opacity: 0;
    transform: translateY(100px);
}


#jobgenius_categorie>div:nth-child(1),
#jobgenius_avantages>div:nth-child(1),
#jobgenius_temoignages>div:nth-child(1),
#jobgenius_gallerie>div:nth-child(1) {
    text-align: center;
    max-width: 35%;
    margin-left: auto;
    margin-right: auto;
}

#jobgenius_categorie>div>h2,
#jobgenius_avantages>div>h2,
#jobgenius_temoignages>div>h2,
#jobgenius_gallerie>div>h2 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: .5rem;
}

#jobgenius_categorie>div>p,
#jobgenius_avantages>div>p,
#jobgenius_temoignages>div>p,
#jobgenius_gallerie>div>p {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .6;
    line-height: 18px;
    padding-right: 22px;
    margin-bottom: 2rem;
}

#jobgenius_categorie>p {
    text-align: center;
}

#jobgenius_categorie>div:nth-child(2) {
    display: flex;
}

@media (min-width: 640px){
    .categorie_slider > .swiper-wrapper{
        justify-content: center;
    }
}

#jobgenius_categorie .swiper_content {
    overflow: hidden !important;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(1),
#jobgenius_categorie>div:nth-child(2)>div:nth-child(3) {
    width: 15%;
    align-items: center;
    display: flex;
    justify-content: center;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(1)>div,
#jobgenius_categorie>div:nth-child(2)>div:nth-child(3)>div {
    display: none;
    height: 100%;
    align-items: center;
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(1)>div>svg,
#jobgenius_categorie>div:nth-child(2)>div:nth-child(3)>div>svg {
    transform: scale(1.5)
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2) {
    width: 70%;
}


#jobgenius_categorie>div:nth-child(3) {
    max-width: 38%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 0.5rem;
}

#input_du_slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 10px;
    height: 2px;
    background: #ccc;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

#input_du_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    background-color: var(--main);
    border-radius: 100%;
    border: none;
    transition: .2s ease-in-out;
}

#input_du_slider::-moz-range-thumb {
    height: 10px;
    width: 10px;
    background-color: var(--main);
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out;
}

#input_du_slider::-webkit-slider-thumb {
    box-shadow: 0 0 0 10px #c0c2e3;
}

#input_du_slider:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 10px #c0c2e3;
}

#input_du_slider:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 10px #c0c2e3;
}

#input_du_slider::-moz-range-thumb {
    box-shadow: 0 0 0 10px #c0c2e3;
}

#input_du_slider:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px #c0c2e3;
}

#input_du_slider:focus::-moz-range-thumb {
    box-shadow: 0 0 0 10px #c0c2e3;
}

.value2 {
    display: none;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a {
    display: block;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
    border-radius: 6px;
    background: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
}

#jobgenius_categorie .card_avantage:hover .main_img_categorie {
    transform: scale(1.1);
}


#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>figure {
    margin: 0px;
    position: relative;
    overflow: hidden;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>figure>img {
    display: block;
    max-width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    ;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>figure>img:nth-child(1),
#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a:hover>figure>img:nth-child(2) {
    opacity: 1;
    transition: opacity .6s;
    transition: all 0.6s ease-in-out;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a:hover>figure>img:nth-child(1),
#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>figure>img:nth-child(2) {
    opacity: 0;
    transition: opacity .6s;
    transition: all 0.6s ease-in-out;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>figure>img:nth-child(2) {
    position: absolute;
    top: 0px;
    left: 0px;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>div {
    padding: 1rem;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>div>h3 {
    font-weight: 400;
    font-size: .8rem;
    margin-bottom: 0px;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>div>p {
    font-size: .7rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    margin-bottom: 0px;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a>span {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
    display: inline-block;
    background-size: 16px;
    opacity: .9;
    background-color: var(--main);
    position: absolute;
    margin-top: -50px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    left: 50%;
    transform: translate(-50%, -0%);
    opacity: 0;
    transition: .5s;
}

#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div>a:hover>span {
    opacity: 1;
    transition: .5s;
    margin-top: -14px;
}


#jobgenius_categorie>div:nth-child(2)>div:nth-child(2)>div>div>div.swiper-slide>div {
    height: auto;
    padding-bottom: 2rem;
}


/* Avantage ici*/

/* #jobgenius_a_propos */

#jobgenius_a_propos>div {
    width: 100%;
    max-width: 70%;
    margin: auto;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;

}

#jobgenius_a_propos>div>div:nth-child(1),
#jobgenius_a_propos>div>div:nth-child(2) {
    width: 50%;
}


#jobgenius_a_propos>div>div:nth-child(2)>div {
    padding-left: 4rem;
}

#jobgenius_a_propos>div>div:nth-child(2)>div>h2 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 20px;
    margin-bottom: 0px;
}


#jobgenius_a_propos>div>div:nth-child(2)>div>ul {
    display: flex;
    list-style: none;
    padding: 0px;
    margin-top: 8px;
}

#jobgenius_a_propos>div>div:nth-child(2)>div>ul>li>a {
    display: block;
    color: var(--main);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: .8rem;
    position: relative;
    letter-spacing: 0px;
    padding: 10px 0px;
    margin-right: 2rem;
}

#jobgenius_a_propos>div>div:nth-child(2)>div>div>h3 {
    font-size: .8rem;
}

#jobgenius_a_propos>div>div:nth-child(2)>div>div>div>p {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    padding-right: 22px;
    margin-bottom: 1rem;
}

#jobgenius_a_propos>div>div:nth-child(2)>div>div>div>p:last-child {
    margin-bottom: 1.5rem;
}

#jobgenius_a_propos>div>div:nth-child(2)>div>.a_propos_infos,
#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image {
    display: none
}

#jobgenius_a_propos>div>div:nth-child(2)>div>.a_propos_infos.active,
#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image.active {
    display: block;
}

#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    list-style: none;
    padding: 0px;
}

#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li {
    position: relative;
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
}

#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(1) {
    flex: 0 0 100%;
    max-width: 100%;
}

#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(1)>a>img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 286px;
    margin-bottom: 10px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
}


#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(2),
#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(3),
#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(4) {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(2)>a>img,
#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(3)>a>img,
#jobgenius_a_propos>div>div:nth-child(1)>.a_propos_image>ul>li:nth-child(4)>a>img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 166px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
}

/* jobgenius_cta */



#jobgenius_cta>div {
    max-width: 70%;
    margin: auto;
    background: var(--main);
    color: #fff;
    position: relative;
    padding: calc(5rem + 6px) 0px;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
}

#jobgenius_cta>div>h2 {
    font-weight: 300;
    font-size: 2.2rem;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
}

#jobgenius_cta>div>ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0px;
}



#jobgenius_cta>div>ul>li>a {
    color: var(--main);
    background: var(--background);
    padding: 10px 20px 10px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--main);
    transition: .4s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    border: none;
}

#jobgenius_cta>div>ul>li>a>span {
    /*    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232022AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */
    display: inline-block;
    height: 1vw;
    width: 1vw;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;
}

#jobgenius_cta>div>ul>li>a:hover>span {
    /*  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */
}

#jobgenius_cta>div>ul>li>a:before {
    /*   content: ''; */
    /*   background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#2022AA" stroke="%232022aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>'); */
    display: inline-block;
    height: 16px;
    width: 16px;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;
}

/* Témoignages */

.fancybox__content {
    background-color: transparent !important;
}

#jobgenius_temoignages>div:nth-child(2) {
    max-width: 70%;
    margin: auto;
    width: 100%;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 6px;
    background: #fff;
    transition: all .3s ease-in-out;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div:hover {
    transition: all .3s ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>div:nth-child(1) {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>div:nth-child(1)>figure {
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-right: 10px;
    display: flex;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>div:nth-child(1)>figure>img {
    width: 34px;
    height: auto;
    margin: 0px;
    border-radius: 100%;
}

div:nth-child(2)>div>div>div>div>div:nth-child(1)>h3 {
    font-weight: 600;
    font-size: .85rem;
    margin: 0px;
    width: calc(100% - 78px);
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>div:nth-child(1)>a {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-share-2"><circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"></line><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"></line></svg>');
    height: 34px;
    width: 34px;
    background-size: 18px;
    opacity: .5;

    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    transition: .4s;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div:hover>div:nth-child(1)>a {
    background-color: #f5f5f5;
    transition: .4s;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>figure {
    margin: 0px;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>figure>a>img,
#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>figure>a>iframe {
    display: block;
    max-width: 100%;
    height: 164px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>p {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}


#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>ul {
    padding-left: 1rem;
    padding-right: 1rem;
    list-style: none;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>ul>li:nth-child(1) {
    color: var(--main);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    position: relative;
    letter-spacing: 0px;
}

#jobgenius_temoignages>div:nth-child(2)>div>div>div>div>ul>li:nth-child(2) {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    font-size: 11px;
    position: relative;
    letter-spacing: 0px;
    color: var(--main);
    padding-bottom: 1rem;
}

/* jobgenius_gallerie  */

#jobgenius_gallerie>div:nth-child(2) {
    max-width: 70%;
    margin: auto;
    width: 100%;
}

#jobgenius_gallerie>div:nth-child(2)>ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    list-style: none;
    padding: 0px;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

#jobgenius_gallerie>div:nth-child(2)>ul>li {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    flex: 0 0 20%;
    max-width: 20%;
}

#jobgenius_gallerie>div:nth-child(2)>ul>li>a {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: #eaeaec;
    margin-bottom: 20px;
    border-radius: 8px;
    cursor: pointer;
}

#jobgenius_gallerie>div:nth-child(2)>ul>li>a>img {
    display: block;
    max-width: 100%;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
}

#jobgenius_gallerie>div:nth-child(2)>ul>li>a>img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}


body>header>div>a {
    display: none;
}

#jobgenius_cta {
    padding-bottom: 80px;
}


/* jobgenius_avantages */

#jobgenius_avantages>div:nth-child(2) {
    display: flex;
}

#jobgenius_avantages>div:nth-child(2)>div:nth-child(1),
#jobgenius_avantages>div:nth-child(2)>div:nth-child(3) {
    width: 15%;
    align-items: center;
    display: flex;
    justify-content: center;
}

#jobgenius_avantages>div:nth-child(2)>div:nth-child(2) {
    width: 70%;
}

#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div {
    overflow: hidden;
}


#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: #eaeaec;
    margin-bottom: 20px;
    border-radius: 8px;
}

#jobgenius_avantages>div:nth-child(2)>div>div>div>div>div:hover {
    box-shadow: 0 0 10px 0 rgba(43, 59, 10, .1);
}

#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div>div>div>div:before {
    content: '';
    background: var(--main);
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transform: scale(0);


}

#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div>div>div>div:hover:before {
    transform: scale(1);
}

#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div>div>div>div:hover>div>svg g {
    fill: #fff;
}

@keyframes rotate {
    0% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div>div>div>div:hover:hover>div>div>svg {
    animation: rotate 2s infinite;
    /* L'animation durera 2 secondes */
}


#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div>div>div>div:hover>div>h3 {
    color: #fff;
    font-weight: 600;
}

#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div>div {
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
}

#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div>div>svg,
#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div>div>img {
    height: 50px;
    width: auto;
    /*  margin-top: 10px; */
}

#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div>div>svg>path {
    fill: var(--main);
}



#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div>div>h3 {
    font-size: .80rem;
    font-weight: normal;
    font-weight: 300;
    padding: 15px 20px 0px 20px;
    width: 100%;
}

#jobgenius_titre.jobgenius_titre_centrer>div>h1 {
    text-align: center;
    margin-bottom: 0px;
}

#jobgenius_image_avec_fond:before {
    height: 100px;
    content: '';
    background: var(--main);
    position: absolute;
    display: block;
    top: 0px;
    width: 100%;
    z-index: -1;
}

#jobgenius_image_avec_fond>div,
section#jobgenius_texte_image>div,
#jobgenius_colonne>div {
    width: 100%;
    max-width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

#jobgenius_image_avec_fond>div>figure {
    margin: 0px;
}

#jobgenius_image_avec_fond>div>figure>img {
    display: block;
    max-width: 100%;
    border-radius: 0.5vw;
}

section#jobgenius_texte_image,
#jobgenius_colonne {
    padding: 40px 0px;
}

section#jobgenius_texte_image>div>div:nth-child(1) {
    width: 50%;
}

section#jobgenius_texte_image>div>div:nth-child(2) {
    width: 40%;
}

section#jobgenius_texte_image>div>div>img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

section#jobgenius_texte_image>div {
    display: flex;
}

#jobgenius_texte_image.jobgenius_texte_image_gauche>div>div:nth-child(1) {
    display: flex;
    order: 2;
}

#jobgenius_texte_image.jobgenius_texte_image_gauche>div>div:nth-child(2) {
    order: 1;
}

section#jobgenius_texte_image>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#jobgenius_texte_image>div>div:nth-child(2)>h2 {
    display: inline-block;
    font-weight: 300;
}

#jobgenius_texte_image>div>div:nth-child(2)>h2>span,
#jobgenius_colonne>div>div>h3 {
    font-weight: 600;
}

#jobgenius_texte_image>div>div:nth-child(2)>p:nth-child(2),
#jobgenius_colonne>div>div>p:nth-child(2) {
    font-size: .8rem;
    font-weight: bold;
    opacity: 1;
}

#jobgenius_texte_image>div>div:nth-child(2)>p,
#jobgenius_colonne>div>div>p {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    padding-right: 22px;
    margin-bottom: 1rem;
}

#jobgenius_texte_image>div>div:nth-child(2)>p:last-child,
#jobgenius_colonne>div>div>p:last-child {
    opacity: 1;
}

#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a,
#jobgenius_colonne>div>div>p:last-child>a {
    color: #ffffffeb;
    background: var(--main);
    padding: 12px 20px 12px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: .4s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    height: 40px;
    color: #fff;
}

#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a:before,
#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a:after,
#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a:before,
#jobgenius_colonne>div>div>p:last-child>a:after,
#jobgenius_colonne>div>div>p:last-child>a:before {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a:before,
#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a:after,
#jobgenius_colonne>div>div>p:last-child>a:before,
#jobgenius_colonne>div>div>p:last-child>a:after {
    background: var(--hover);
    content: '';
    position: absolute;
    z-index: -1;
}

#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a:hover,
#jobgenius_colonne>div>div>p:last-child>a:hover {
    color: #fff;
    background: transparent;
}


#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a,
#jobgenius_colonne>div>div>p:last-child>a {
    overflow: hidden;
    position: relative;
}

#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a:after,
#jobgenius_colonne>div>div>p:last-child>a:after {
    /*background-color: #f00;*/
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
}

#jobgenius_texte_image>div>div:nth-child(2)>p>a:hover:after,
#jobgenius_colonne>div>div>p:last-child>a:hover:after {
    height: 100%;
    width: 135%;
}


#jobgenius_gallerie>div:nth-child(2)>ul>li {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    flex: 0 0 20%;
    max-width: 20%;
}

#jobgenius_colonne {
    display: flex;
    flex-wrap: wrap;
    /*  margin-right: -10px;
    margin-left: -10px; */
    list-style: none;

}

#jobgenius_colonne.deux>div>div {
    width: 49%;
    padding: 0px 10px;
}

#jobgenius_colonne.trois>div>div {
    width: 32%;
    padding: 0px 10px;
}

main>section:last-child {
    padding-bottom: 80px !important;
}

#jobgenius_categorie>p>a,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a,
#jobgenius_categorie>p>a:after,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a:after,
#jobgenius_cta>div>ul>li>a,
/* #jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>.btn, */
#jobgenius_gallerie>div:nth-child(2)>ul>li>a>img,
#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div>div>div>div:before,
#jobgenius_avantages>div:nth-child(2)>div:nth-child(2)>div>div>div>div:hover:before,
body>footer>div:nth-child(1)>ul>li>a:before,
body>footer>div:nth-child(1)>ul>li>a:hover:before {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(1)>a:before,
#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(1)>a:after,
#jobgenius_categorie>p>a:before,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a:before,
#jobgenius_categorie>p>a:after,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a:after {
    background: var(--hover);
    content: '';
    position: absolute;
    z-index: -1;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(1)>a:hover,
#jobgenius_categorie>p>a:hover,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a:hover {
    color: #fff;
    background: transparent !;
}


#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(1)>a,
#jobgenius_categorie>p>a,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a {
    overflow: hidden;
    position: relative;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(1)>a::after,
#jobgenius_categorie>p>a:after,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a:after {
    /*background-color: #f00;*/
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(1)>a:hover:after,
#jobgenius_categorie>p>a:hover:after,
#jobgenius_a_propos>div>div:nth-child(2)>div>div>p>a:hover:after {
    height: 100%;
    width: 135%;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>.btn:hover {
    color: #fff;
    background: transparent;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>.btn:hover:after {
    height: 100%;
    width: 135%;
}


#jobgenius_video>div:nth-child(2)>div>ul>li:nth-child(2)>.btn>span {
    background-image: none !important;
}

#jobgenius_cta>div>ul>li>a:hover,
#jobgenius_gallerie>div:nth-child(2)>ul>li>a:hover>img,
body>footer>div:nth-child(1)>ul>li>a {
    transform: scale(1.05);
}

#jobgenius_cta>div>ul>li>a:hover {
    transform: scale(1);
}

body>header>div>nav>ul>li>a:before {
    content: '';
    position: absolute;
    transition: transform .5s ease;
}

body>header>div>nav>ul>li>a:before {
    left: 14px;
    bottom: 0;
    width: calc(100% - 28px);
    height: 2px;
    background: var(--main);
    transform: scaleX(0);
}

body>header>div>nav>ul>li>a:hover:before {
    transform: scaleX(1);
}

.logo {
    transition: all .3s ease-in-out;
    opacity: 1;
}

.logo:hover {
    transition: all .3s ease-in-out;
    opacity: .8;
}

/* A désactiver si besoin */

#jobgenius_categorie>div>h2,
#jobgenius_avantages>div>h2,
#jobgenius_temoignages>div>h2,
#jobgenius_gallerie>div>h2,
#jobgenius_a_propos>div>div:nth-child(2)>div>h2 {
    font-size: 1.5rem;
}


#jobgenius_categorie>div>h2>span,
#jobgenius_avantages>div>h2>span,
#jobgenius_temoignages>div>h2>span,
#jobgenius_gallerie>div>h2>span,
#jobgenius_a_propos>div>div:nth-child(2)>div>h2>span {
    display: inline-block;
    font-weight: 600;
}



.job {
    display: block;
    max-width: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    top: -2px;
    display: none;
}

/* Modules recherche */

#jobgenius_recherche {
    display: flex;
    align-items: center;
    background: var(--main);
    padding: 80px 0px;
}

#jobgenius_recherche>div {
    width: 100%;
    max-width: 85%;
    margin: auto;
}


#jobgenius_recherche>div>h1 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1.24px;
}

#jobgenius_recherche>div>h1>span {
    font-weight: 300;
}

#jobgenius_recherche>div>form {
    display: block;
    max-width: 80%;
}

#jobgenius_recherche>div>form button,
#jobgenius_recherche>div>form select {
    display: block;
    height: 40px;
    position: relative;
}

#jobgenius_recherche>div>form select {
    margin-top: 20px;
    line-height: 18px;
    margin-bottom: 20px;
    background-color: #ffffffe8;
    border: 0;
    margin-right: 14px;
    padding: 10px 20px 10px 1.7vw;
    width: 50%;
    height: 3vw;
    border-radius: 6px;
    color: var(--main);
    text-transform: uppercase;
    font-size: .83vw;
    font-weight: 700;
    letter-spacing: .5px;
    outline: 0;
    box-shadow: none;
}

#jobgenius_recherche select::-webkit-select-placeholder {
    color: var(--main);
}

#jobgenius_recherche select::-moz-placeholder {
    color: var(--main);
    opacity: 1;
}

#jobgenius_recherche select:-ms-select-placeholder {
    color: var(--main);
}

#jobgenius_recherche select:-moz-placeholder {
    color: var(--main);
    opacity: 1;
}


#jobgenius_recherche>div>form select:nth-child(1) {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232022aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-briefcase"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path></svg>');

}

#jobgenius_recherche>div>form select:nth-child(2) {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232022aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-map-pin"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');

}


#jobgenius_recherche>div>form select:nth-child(1),
#jobgenius_recherche>div>form select:nth-child(2) {
    background-repeat: no-repeat;
    background-position: 0.6vw;
    background-size: 0.87vw;
}


#jobgenius_recherche .btn {
    overflow: hidden;
    position: relative;
    color: #ffffffeb;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1.3vw;
    border-radius: 1.5vw;
    font-size: .85vw;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin: 0;
    color: var(--main);
    border: 0px;
    min-width: 140px;
    cursor: pointer;
}



#jobgenius_recherche .btn span {
    /*  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232022aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>'); */
    display: inline-block;
    height: 1vw;
    width: 1vw;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;
}

#jobgenius_recherche .btn:hover span {
    /*  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */

}

#jobgenius_recherche .btn:before,
#jobgenius_recherche .btn:after {
    background: var(--hover);
    content: '';
    position: absolute;
    z-index: -1;
}

#jobgenius_recherche .btn:hover,
#jobgenius_recherche .btn:focus,
#jobgenius_recherche .btn {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#jobgenius_recherche .btn:hover {
    color: #fff;
    background: transparent;
}

#jobgenius_recherche .btn:after {
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
}

#jobgenius_recherche .btn:hover:after {
    height: 100%;
    width: 135%;
}

#jobgenius_recherche>div>ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
}

#jobgenius_recherche>div>ul>li>a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 10px;
    display: block;
}

#jobgenius_recherche>div>ul>li>a.active {
    background: white;
    color: var(--main);
    border: 1px solid var(--main);
}

#jobgenius_recherche>div>ul>li>a:hover {
    background-color: #fff;
    color: var(--main);
    transition: all .3s ease-in-out;
}

#jobgenius_emploi {
    padding: 40px 0px;
}

#jobgenius_emploi>div {
    width: 100%;
    max-width: 85%;
    margin: auto;
}

#single_emploi {
    max-width: 86vw;
    margin: 7vw auto;
}

#jobgenius_emploi>div:nth-child(1)>p {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .6;
    line-height: 18px;
    padding-right: 22px;
    margin-bottom: 20px;
}

#jobgenius_emploi>div:nth-child(2) {
    display: flex;
    justify-content: space-between;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1) {
    width: calc(26% + 5px);
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(2) {
    max-width: 70%;
    width: 100%;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a {
    color: inherit;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: all 0.2s ease-in-out;
    opacity: .75;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a {
    color: inherit;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
    border-radius: 6px;
    display: block;
    padding: 20px;
    margin-bottom: 20px;
}


#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a>div:nth-child(1) {
    margin-bottom: 10px;
}


#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a>div:nth-child(1)>span {
    font-size: .7rem;
    margin-top: 0px;
    line-height: 18px;
    margin-bottom: 0px;
    color: var(--main);
    margin-right: 10px;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a>div:nth-child(2) {
    font-size: 14px;
    color: var(--main);
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a>div:nth-child(3) {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    padding-right: 22px;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 10px;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>a>div:nth-child(4) {
    color: var(--main);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    text-align: right;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>ul {
    display: flex;
    padding: 0px;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>ul>li>a,
#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>ul>li>span {
    text-decoration: none;
    font-size: 12px;
    color: inherit;
    opacity: .5;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 2px;
}

#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>ul>li>span.current,
#jobgenius_emploi>div:nth-child(2)>div:nth-child(1)>ul>li>a:hover {
    background: var(--main);
    opacity: 1;
    color: #fff;
    font-weight: 600;
    border-radius: 100%;
}

/* Share box */
.share-container {
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    margin-bottom: 60px !important;
    width: fit-content;
}

/* Style for the "Partager" link */
.toggle-share {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    opacity: 1 !important;
}

.toggle-share:hover {
    color: var(--main-hover);
}

/* Style for the share block */
.share-block {
    display: none;
    opacity: 0;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    z-index: 2;
    top: 40px;
    transition: all 0.3 ease-in-out;
}

.icon_share {
    margin-left: 8px;
}

.share_btn {
    font-size: .87vw;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--main);
}

.share-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.share-block ul li {
    margin: 0 10px;
}

.share-block a {
    text-decoration: none;
    color: #333;
    display: flex;
    font-size: .87vw;
    align-items: center;
}

.share-block a:hover {
    color: var(--main);
}

/* Show the share block on hover */
.share-container:hover .share-block {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: all 0.3 ease-in-out;
}


div#job_infos>div {
    color: inherit;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(43, 59, 93, .1);
    border-radius: 6px;
    display: block;
    padding: 40px;
    margin-bottom: 0;
}

#job_infos>div>p:nth-child(1) {
    display: block;
    color: var(--main);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: .8rem;
    position: relative;
    letter-spacing: 0px;
    margin-right: 2rem;
}

#job_infos>div>p:nth-child(1)>a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

#job_infos>div>p:nth-child(1)>a>svg {
    height: 16px;
    margin-right: 6px;
    display: none;
}

#job_infos>div>h2 {
    font-size: 2rem;
    padding-bottom: 20px;
    color: var(--main);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#job_infos>div>p:nth-child(3) {
    font-size: 14px;
    color: var(--main);
    position: relative;
    font-weight: 600;

}

#job_infos>div>ul {
    display: block;
    list-style: none;
    padding: 0px;
    margin-bottom: 40px;
}

#job_infos>div>ul>li {
    font-size: 14px;
    color: var(--main);
    position: relative;
    font-weight: 600;
}

#job_infos>div>ul>li>span {
    font-weight: normal;
}

#job_infos>div>div {
    margin-bottom: 40px;
}

#job_infos>div>div>h3 {
    font-size: 14px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}



#job_infos>div>div>p,
#job_infos>div>div>ul {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    padding-right: 22px;
}


#job_infos>div>p:nth-last-child(2)>a {
    font-size: 14px;
    color: var(--main);
    position: relative;
    font-weight: 600;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

#job_infos>div>p:nth-last-child(2)>a>svg {
    height: 16px;
}

#job_infos>div>p:last-child>a {
    overflow: hidden;
    position: relative;
    color: #ffffffeb;
    background: var(--main);
    padding: 12px 20px 12px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    height: 40px;
}

#job_infos>div>p:last-child>a:hover {
    color: #fff;
    background: transparent;
}

#job_infos>div>p:last-child>a>span,
#jobgenius_texte_image>div>div:nth-child(2)>p:last-child>a>span,
#jobgenius_colonne>div>div>p:last-child>a>span {
    /*  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */
    display: inline-block;
    height: 16px;
    width: 16px;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;
}

#job_infos>div>p:last-child {
    margin-bottom: 0px;
}

#formulaire_postuler {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    list-style: none;
    padding: 0px;
}

#formulaire_postuler>div {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    flex: 0 0 50%;
    max-width: 50%;
}

#formulaire_postuler>div#zone_d_upload,
#formulaire_postuler>div:nth-child(6),
#formulaire_postuler>div:last-child,
#formulaire_postuler>div:nth-last-child(2),
#formulaire_postuler>div:nth-last-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

#formulaire_postuler>div:not(#zone_d_upload)>input,
#formulaire_postuler>div:not(#zone_d_upload)>textarea {
    font-size: .8;
    line-height: 18px;
    margin-bottom: 20px;
    height: 46px;
    display: block;
    width: 100%;
    padding: 20px 20px 20px 20px;
    border-radius: 8px;
    border: 1px solid var(--main);
    color: var(--main);
    font-family: 'Poppins';
}

#formulaire_postuler>div:not(#zone_d_upload)>textarea {
    height: 120px;
    font-family: 'Poppins';
}

#formulaire_postuler>div:not(#zone_d_upload)>input::-webkit-input-placeholder,
#formulaire_postuler>div:not(#zone_d_upload)>textarea::-webkit-input-placeholder {
    color: var(--main);
}

#formulaire_postuler>div:not(#zone_d_upload)>input::-moz-placeholder,
#formulaire_postuler>div:not(#zone_d_upload)>textarea::-moz-placeholder {
    color: var(--main);
    opacity: 1;
}

#formulaire_postuler>div:not(#zone_d_upload)>input:-ms-input-placeholder,
#formulaire_postuler>div:not(#zone_d_upload)>textarea:-ms-input-placeholder {
    color: var(--main);
}

#formulaire_postuler>div:not(#zone_d_upload)>input:-moz-placeholder,
#formulaire_postuler>div:not(#zone_d_upload)>textarea:-moz-placeholder {
    color: var(--main);
    opacity: 1;
}



#formulaire_postuler>div:nth-last-child(2)>label {
    font-size: .8rem;
    margin-top: 0px;
    line-height: 18px;
    padding-right: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

#formulaire_postuler>div:nth-last-child(2)>label>input {
    margin-right: 10px;
    cursor: pointer;
}

#formulaire_postuler>div:nth-last-child(2)>label a {
    color: var(--main);
    text-decoration: none;
}

#formulaire_postuler>div>button,
#formulaire_postuler>div>a {
    overflow: hidden;
    position: relative;
    color: #ffffffeb;
    background: var(--main);
    padding: 12px 20px 12px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: .4s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    height: 40px;
    border: 0px;
    cursor: pointer;
}

#formulaire_postuler>div:last-child {
    text-align: center;
}

#formulaire_postuler>div>button>span,
#formulaire_postuler>div>a>span {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
    display: inline-block;
    height: 16px;
    width: 16px;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;

}

#formulaire_postuler>div>button {
    display: none;
}

div#zone_d_upload {
    margin-bottom: 4px;
}

div#zone_d_upload>div {
    background: #e7e7ee;
    padding: 40px;
    cursor: pointer;
    border-radius: 6px;
}

#zone_d_upload>div>ul {
    list-style: none;
    padding: 0px;
    text-align: center;
    margin: 0px;
}

#zone_d_upload>div>ul>li:nth-child(1)>svg {
    height: 16px;
}

#zone_d_upload>div>ul>li:nth-child(2) {
    color: var(--main);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
}

#zone_d_upload>div>ul>li:nth-child(3) {
    padding: 20px 0px;
}

#zone_d_upload>div>ul>li:nth-child(4) {
    font-size: 12px;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    padding-right: 22px;
}

#zone_d_upload>div>ul>li:nth-child(3)>span {
    overflow: hidden;
    position: relative;
    color: #ffffffeb;
    background: var(--main);
    padding: 12px 20px 12px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: .4s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    height: 40px;
    border: 1px solid var(--main);
}

#zone_d_upload>div>ul>li:nth-child(3)>span>span {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-upload-cloud"><polyline points="16 16 12 12 8 16"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"></path><polyline points="16 16 12 12 8 16"></polyline></svg>');
    display: inline-block;
    height: 16px;
    width: 16px;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;

}

span#alerte {
    color: #ec0000;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

ul#liste_des_fichiers {
    list-style: none;
    padding: 0px;
}

#liste_des_fichiers>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid #aca9a9;
    border-radius: 6px;
}

#liste_des_fichiers>li>div>span:nth-child(1) {
    display: block;
    width: 100%;
    width: 100%;
    font-size: 12px;
    color: var(--main);
    position: relative;

    padding-top: 6px;
    font-weight: 600;
    line-height: 12px;
}

#liste_des_fichiers>li>div>span:nth-child(2),
#liste_des_fichiers>li>div>span:nth-child(3) {
    font-size: 12px;
    margin-top: 0px;
    opacity: .5;
    line-height: 12px;
    padding-right: 10px;
}

#liste_des_fichiers>li>button {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ff2e2e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-trash"><polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path></svg>');
    background-color: #ff2e2e1c;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    border-radius: 100%;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    border: 0px;
    cursor: pointer;
}

#liste_des_fichiers>li>button:hover {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-trash"><polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path></svg>');
    background-color: #ff2e2e;
}


/* Job infos - candidatures */

#jobgenius_emploi.div_candidature_spontanee>div {
    max-width: 70%;
}

#jobgenius_emploi.div_candidature_spontanee #job_infos>div>p:nth-child(3) {
    margin-bottom: 2rem;
}

#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(5)>div>label {
    color: var(--main);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(5) {
    margin-bottom: 1rem;
}

#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(5),
#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(6),
#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(7) {
    flex: 0 0 100%;
    max-width: 100%;

}

#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(5)>div {
    padding: 20px 20px 20px 20px;
    border-radius: 8px;
    border: 1px solid var(--main);
    color: var(--main);
}

#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(5)>div>div>label {
    font-size: .8rem;
    margin-top: 0px;
    line-height: 18px;
    padding-right: 22px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

#jobgenius_emploi.div_candidature_spontanee #formulaire_postuler>div:nth-child(5)>div>div>label>input {
    margin-right: 10px;
    cursor: pointer;
}

/* Fin job infos condidature */

#jobgenius_titre {
    display: flex;
    align-items: center;
    background: var(--main);
    padding: 80px 0px;
    z-index: 1;
}

#jobgenius_titre div {
    width: 100%;
    max-width: 70%;
    margin: auto;
}

#jobgenius_titre>div>h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1.24px;
}

#jobgenius_titre>div>p:nth-child(1) {
    font-size: 14px;
    color: #fff;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0px;
}

#jobgenius_titre>div>p:nth-child(3) {
    color: #fff;
    font-size: .8rem;
    margin-top: 0px;
    line-height: 18px;
    padding-right: 0px;
    margin-bottom: 0px;
}

#jobgenius_video_centrer {
    position: relative;
}

#jobgenius_video_centrer>div {
    width: 100%;
    max-width: 70%;
    margin: auto;
}

#jobgenius_video_centrer:before {
    height: 100px;
    content: '';
    background: var(--main);
    position: absolute;
    display: block;
    top: 0px;
    width: 100%;
    z-index: -1;
}

#jobgenius_video_centrer>div>div>img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

#jobgenius_video_centrer>div>div>a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main);
    border-radius: 15px;
}


#jobgenius_video_centrer>div>div>a>svg {
    height: 20px;
    width: 18px;
    position: relative;
    left: 2px;
}

#jobgenius_video_centrer>div>div>a:hover {
    background: #fff;
}

#jobgenius_video_centrer>div>div>a:hover>svg polygon#Rectangle {
    fill: var(--main);
}

#jobgenius_video_centrer>div>div {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

#video_player_pop_up {
    display: none;
    position: fixed;
    top: 0px;
    z-index: 1025;
    background: var(--main);
    height: 100vh;
    width: 200%;
    max-width: 100% !important;
    justify-content: center;
    align-items: center;
}

.video_visible #video_player_pop_up {
    display: flex;

}

#video_player_pop_up>iframe {
    width: 100%;
    height: 600px;
    border: 0px;
    z-index: 1026;
    position: relative;
}

#video_player_pop_up>a {
    width: 100%;
    height: 100vh;
    left: 0px;
    position: fixed;
    padding: 40px;
    text-align: right;
    color: #fff;
}

#jobgenius_video_centrer>div>p {
    text-align: center;
    margin: 40px 0px 80px 0px;
}

#jobgenius_video_centrer>div>p>a {
    overflow: hidden;
    position: relative;
    color: #ffffffeb;
    background: var(--main);
    padding: 12px 20px 12px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    height: 40px;
}

#jobgenius_video_centrer>div>p>a>span {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>');
    display: inline-block;
    height: 16px;
    width: 16px;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;
}

#jobgenius_title_text {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 4.167vw 0 2.083vw 0px;
}

#jobgenius_title_text h2 {
    font-size: 1.458vw;
    color: var(--main);
    position: relative;
    font-weight: 600;
}

#jobgenius_title_text p {
    opacity: .5;
    font-size: .83vw;
}

#jobgenius_formulaire {
    padding: 40px 0px;
}

#jobgenius_formulaire>div {
    width: 100%;
    max-width: 65%;
    margin: auto;
}

#jobgenius_formulaire form {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    list-style: none;
    padding: 0px;
}

#jobgenius_formulaire form>div {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    flex: 0 0 50%;
    max-width: 50%;
}

#jobgenius_formulaire>div>form>div:nth-child(3),
#jobgenius_formulaire>div>form>div:nth-child(4),
#jobgenius_formulaire>div>form>div:nth-child(5),
#jobgenius_formulaire>div>form>div:nth-child(6) {
    flex: 0 0 100%;
    max-width: 100%;
}

#jobgenius_formulaire form>div>input,
#jobgenius_formulaire form>div>select {
    line-height: 18px;
    margin-bottom: 20px;
    height: 46px;
    display: block;
    width: 100%;
    padding: 20px 20px 20px 20px;
    border-radius: 8px;
    border: 1px solid var(--main);
    color: var(--main);
    font-family: 'Poppins';
}

#jobgenius_formulaire form>div>select {
    padding: 0px 10px 0px 10px;
}

#jobgenius_formulaire form>div>button {
    overflow: hidden;
    position: relative;
    color: #ffffffeb;
    background: var(--main);
    padding: 12px 20px 12px 20px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: .4s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 11px;
    margin-right: 15px;
    height: 40px;
    border: 0px;
    cursor: pointer;
}

#jobgenius_formulaire form>div>button>span {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
    display: inline-block;
    height: 16px;
    width: 16px;
    background-size: contain;
    margin-right: 6px;
    margin-left: -6px;
    opacity: .9;
}

#jobgenius_formulaire>div>form>div:nth-child(6) {
    text-align: center;
    padding: 20px 0px;
}

#jobgenius_formulaire>div>h2 {
    font-size: 16px;
    color: var(--main);
    position: relative;
    font-weight: 600;
}

#jobgenius_formulaire>div>h2>span {
    font-weight: 300;
}

#jobgenius_formulaire>div>p {
    font-size: .8rem;
    margin-top: 0px;
    opacity: .5;
    line-height: 18px;
    margin-bottom: 40px;
    padding-right: 22px;
}


#jobgenius_formulaire>div>form>div:nth-child(5)>label {
    font-size: .8rem;
    margin-top: 0px;
    line-height: 18px;
    padding-right: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

#jobgenius_formulaire>div>form>div:nth-child(5)>label>input {
    margin-right: 10px;
    cursor: pointer;
}

#jobgenius_formulaire>div>form>div:nth-child(5)>label a {
    color: var(--main);
    text-decoration: none;
}


#jobgenius_scroll>a {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 40px;
    width: 40px;
    background: #bdd6e6;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    color: var(--main);
    z-index: 2;
    position: relative;
}



/* .fiche_emploi {
    display: none;
}

.fiche_emploi.active {
    display: block;
} */

#jobgenius_emploi.div_candidature_spontanee #job_infos>div>p:nth-child(1)>a>svg {
    display: none;
}

#contact_form {
    width: 100%;
    padding: 4vw 0;
}

#contact_form .form_container {
    max-width: 80vw;
    margin: 0 auto;
}


/* Hover effect  */

#zone_d_upload>div>ul>li:nth-child(3)>span:hover {
    background: #282be8;
}

#job_infos>div>p:last-child>a:hover,
#formulaire_postuler>div>button:hover,
#formulaire_postuler>div>a:hover,
#jobgenius_video_centrer>div>p>a:hover,
#jobgenius_formulaire form>div>button:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    transform: scale(1.05);
    color: #fff;
}

#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div>div>h3 {
    color: white;
}


/* Forcer en deux lignes max  */

#jobgenius_avantages>div:nth-child(2)>div>div:nth-child(1)>div>div>div>div>h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* -webkit-line-clamp: none; */
    overflow: hidden;
}

/* Correction mobile V2 */

#_categorie_emploi,
#_avantages,
#_temoignages,
#_a_propos,
#_nous_joindre {
    position: relative;
    top: -100px;
}

#_emploi_vedettes {
    position: relative;
    top: -200px;
}


/* Début boutton  */

#jobgenius_cta>div>ul>li>a:before,
#jobgenius_cta>div>ul>li>a:hover:before {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#jobgenius_cta>div>ul>li>a:after {
    background: var(--hover);
    content: '';
    position: absolute;
    z-index: -1;
}

#jobgenius_cta>div>ul>li>a:hover {
    color: #fff;
    background: transparent;
}


#jobgenius_cta>div>ul>li>a {
    overflow: hidden;
    position: relative;
}

#jobgenius_cta>div>ul>li>a:after {
    /*background-color: #f00;*/
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
}

#jobgenius_cta>div>ul>li>a:hover:after {
    height: 100%;
    width: 135%;
}

#jobgenius_cta>div>ul>li>a:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

/* Fin bouton */

/* complianz */
#policy_priv {
    margin: 0 auto 100px;
    line-height: 1.3;
    font-size: 16px;
    max-width: 1580px !important;
}

#policy_priv h2 {
    font-size: 22px;
}

@media screen and (max-width: 1023px) {
    #policy_priv {
        width: 90%;
        padding: 125px 16px 100px;
    }
}

#cmplz-document {
    margin: 0 auto !important;
    max-width: 1580px !important;
    padding: 0 16px
}

#cmplz-document li {
    font-size: 16px;
    line-height: 1.2em;
    margin-top: 0;
}

#cmplz-document p {
    line-height: 1.2em !important;
    font-size: 16px !important;
}

#cmplz-document div {
    margin: 8px 0;
}

#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div,
#cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div {
    grid-template: none;
    grid-template-columns: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1921px) {

    #cmplz-document.cmplz-document,
    #policy_priv {
        max-width: 1920px !important;
    }
}