/*************************************
* GLOBAL
*************************************/
:root {
    --text-color-black: #333;
    --text-color-white: #fff;
    --text-color-grey: #949494;
    --text-color-dark-grey: #636363;
    --bg-color-red: #e02222;
    --bg-color-dark-red: #d61313;
    --bg-color-white: #fff;
    --bg-color-dark-white: #dedede;
    --bg-color-black: #1d1d1d;
    --bg-color-light-black: #2f2f2f;
    --bg-color-dark-grey: #3c3c3c;
    --bg-color-pink: #ffd1d1;
    --bg-color-light-pink: #fff2ec;
    --bg-color-light-grey: #ededed;
    --bg-color-grey: #c7c7c7;
    --bg-color-success: #22e042;
    --bg-color-error: #e02222;
}
.btn.btn-red {
    color: var(--text-color-white);
    background-color: var(--bg-color-red);
    border-color: var(--bg-color-red);
}
.btn.btn-red:hover {
    color: var(--text-color-white);
    background-color: var(--bg-color-dark-red);
    border-color: var(--bg-color-dark-red);
}
.btn.btn-white {
    color: var(--text-color-black);
    background-color: var(--bg-color-white);
    border-color: var(--bg-color-white);
}
.btn.btn-white:hover {
    color: var(--text-color-black);
    background-color: var(--bg-color-dark-white);
    border-color: var(--bg-color-dark-white);
}
.btn.btn-black {
    color: var(--text-color-white);
    background-color: var(--bg-color-dark-grey);
    border-color: var(--bg-color-dark-grey);
}
.btn.btn-black:hover {
    color: var(--text-color-white);
    background-color: var(--bg-color-light-black);
    border-color: var(--bg-color-light-black);
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    width: 100%;
    min-height: 100vh;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color-black);
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-size: 14px;
}

.candidate > main, .client > main,  main.dispatch{
    display: block !important;
    position: unset;
}
/*************************************
* TOP SECTION
*************************************/
.top-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 100vh;
}
.top-section nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.menu {
    display: flex;
    align-items: center;
    padding: 0 3rem 2rem 3rem;
}
.menu .logo {
    width: 18rem;
}
.menu li {
    margin: 0.8rem;
}
.menu a {
    text-decoration: none;
    color: var(--text-color-white);
}
.menu .btn-signin {
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-weight: 500;
}
.menu .btn-signup {
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-weight: 500;
}
.menu .dropdown-button {
    display: none;
    margin-left: auto;
}
.menu .dropdown-button button {
    color: var(--text-color-white);
    background: none;
    border: none;
}
.menu .dropdown-button .fa-bars {
    font-size: 40px;
}
.menu .dropdown-content {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.top-section h1 {
    color: var(--text-color-white);
    font-size: 6em;
    font-weight: 600;
    margin-bottom: 5rem;
}
.top-section .scroll-arrow {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
}
form.find-job input {
    width: 100%;
    border-radius: 10px;
    padding: 0.4rem 1rem;
    border: none;
    font-weight: 600;
}
form.find-job button {
    border-radius: 10px;
    padding: 0.4rem 1rem;
    font-weight: 600;
}
form.find-job input,
form.find-job button {
    margin-right: 1rem;
}
.top-title-container {
    width: 100%;
    height: 100%;
    position: absolute;
}
.top-title {
    position: relative;
    top: 20%;
}

/*************************************
* INFO SECTION
*************************************/
.info-section {
    height: 15rem;
}
.info-section h2.text-red {
    color: var(--bg-color-dark-red);
}

/*************************************
* LINK SECTION
*************************************/
.link-section {
    background-color: var(--bg-color-dark-red);
    padding: 2.5rem 0 2rem 0;
    margin-bottom: 6rem;
}
.link-section .img-signup,
.link-section .img-jobs {
    width: 26rem;
    height: 17rem;
    border-radius: 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.link-section .img-signup {
    background-image: url('../images/vitrine/vitrine_ordi_ee.png');
}
.link-section .img-jobs {
    background-image: url('../images/vitrine/vitrine_job_de.jpg');
}
.link-section .btn-section-link {
    margin-top: 2rem;
    padding: 0.3rem 0;
    width: 14rem;
    font-weight: 600;
    border-radius: 20px;
}



/*************************************
* NOTICE SECTION
*************************************/
.notice-section .notice-container {
    display: flex;
    align-items: unset;
    justify-content: unset;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}
.notice-section {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.notice-section article {
    flex: 0 0 auto;
}
.notice-section h2 span {
    color: var(--bg-color-dark-red);
}
.notice-section .notice-container::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: var(--bg-color-dark-white);
}
.notice-section .notice-container::-webkit-scrollbar-thumb {
    background-color: var(--text-color-grey);
}
.notice-section .scroll-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
    z-index: -1;
}

/*************************************
* FOOTER
*************************************/
footer.footer {
    margin-top: 6rem;
}
footer.footer nav {
    background-color: var(--bg-color-dark-grey);
}
footer.footer nav ul {
    height: 7rem;
}
footer.footer nav ul li {
    margin: 0 2rem;
}
footer.footer nav ul li > a {
    color: var(--text-color-white) !important;
    text-decoration: none !important;
    font-weight: 500;
}
footer.footer > p {
    background-color: var(--bg-color-black);
    color: var(--text-color-white);
    text-align: center;
    padding: 0.5rem 0;
    margin: 0;
}
footer.footer a.link-white {
    color: var(--text-color-white);
}

/*************************************
* DISPATCH
*************************************/
.dispatch .logo {
    width: 33rem;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.dispatch .btn.btn-access {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem;
    width: 12rem;
    font-weight: 500;
    border-radius: 12px;
    z-index: 2;
}
.dispatch .main-container {
    display: flex;
}
.dispatch .main-container article {
    overflow: hidden;
    width: 100%;
}
.dispatch .main-container article > a {
    height: 100vh;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color-white);
    filter: grayscale(60%);
    transition: transform 0.3s;
}
.dispatch .main-container article > a:hover {
    filter: grayscale(10%);
}
.dispatch .link-client {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/vitrine_clients_couleurs.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.dispatch .link-candidate {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/vitrine_candidats_couleurs.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.dispatch .link-client:hover {
    background: url('../images/vitrine/vitrine_clients_couleurs.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.dispatch .link-candidate:hover {
    background: url('../images/vitrine/vitrine_candidats_couleurs.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.dispatch .main-container article > a:hover {
    transform: scale(1.03);
}
.dispatch .main-container article > a > h1 {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 3.2em;
}
.dispatch .main-container article > a > h2 {
    font-weight: 500;
    font-size: 2.8em;
}

/*************************************
* SIGNIN
*************************************/
.signin {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(../images/vitrine/bg_login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.signin > header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}
.signin > header .logo {
    height: 5rem;
}
.signin > main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.signin > main form {
    width: 100%;
    max-width: 32rem;
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
    margin: 1rem;
    margin-top: -15rem;
    background-color: var(--bg-color-white);
}
.signin > main form .error {
    background-color: rgb(255 0 0 / 8%);
    border-radius: 4px;
    color: var(--bg-color-red);
    padding: 0.5rem 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.signin > main form .success {
    background-color: rgb(9 255 0 / 8%);
    border-radius: 4px;
    color: var(--bg-color-success);
    padding: 0.5rem 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.signin > main form .error p,
.signin > main form .success p {
    margin: 0;
}
.signin > main form .signin-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.signin > main form .signin-row label {
    font-weight: 600;
    font-size: 18px;
}
.signin > main form .signin-row > input {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--bg-color-grey);
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-black);
    width: 100%;
}
.signin > main form .btn-signin {
    border-radius: 25px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
}
.signin > main form .btn-signup {
    border-radius: 25px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    padding: 0.6rem 1rem;
    background-color: var(--bg-color-light-grey);
    border-color: var(--bg-color-light-grey);
}
.signin > main form .btn-link {
    color: var(--bg-color-dark-red);
    width: 100%;
    text-align: right;
    margin-bottom: 1rem;
}

/*************************************
* SIGNUP
*************************************/
.signin.signup > main form {
    margin-top: 1rem;
    max-width: 42rem;
}
.signin.signup > main form .signin-row label.control-label.required::after {
    content: '*';
    color: var(--bg-color-dark-red);
    font-weight: 600;
    font-size: 18px;
}
.signin.signup > main form .signin-row .error-field ul {
    margin: 0;
    color: var(--bg-color-dark-red);
    margin-top: 5px;
    padding-left: 5px;
    font-weight: 500;
    font-size: 14px;
}
.link-red {
    color: var(--bg-color-dark-red);
}

.error-message{
    color: var(--error);
    font-weight: bold;
}

/*************************************
* CANDIDATE
*************************************/
.candidate .top-section h1 {
    font-size: 5em;
    text-align: center;
}
.candidate .top-section {
    background-image: url('../images/vitrine/vitrine_happy_freelancer_50.png');
}
.candidate .top-section .top-title .shape {
    background: var(--bg-color-red);
    padding: 0 60px;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 14% 100%);
    width: 28rem;
    display: block;
    margin: 0 auto;
    font-size: 5rem;
}
.candidate footer.footer nav .btn-client-signin {
    color: var(--text-color-black) !important;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-weight: 500;
}
.candidate .info-section h2 {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}
.candidate .link-section {
    display: flex;
    align-items: center;
    justify-content: center;
}
.candidate .link-section article {
    margin: 0 5rem;
}
.candidate .notice-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    font-size: 36px;
}
.candidate .notice-section article {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color-dark-red);
    width: 22rem;
    margin: 0 1.5rem;
    border-radius: 45px;
    padding: 1rem;
    padding-bottom: 1rem;
}
.candidate .notice-section .img-guillemet {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.5rem;
}
.candidate .notice-section p {
    color: var(--text-color-white);
    line-height: 18px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3rem;
}
.candidate .notice-section .name {
    color: var(--text-color-white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.candidate .notice-section .hired {
    font-size: 13px;
    margin-bottom: 1rem;
    font-style: italic;
}
.candidate .parrainage-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00000082;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
}
.candidate .parrainage-popup .popup-content {
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 0px 5px #6b6b6b;
}
.candidate .parrainage-popup .popup-content > img {
    width: 32rem;
    border-radius: 8px;
}
.candidate .parrainage-popup .popup-content > a {
    position: absolute;
    top: 17rem;
    right: 38px;
    background-color: #212121;
    color: var(--text-color-white);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0px 0px 5px #888888;
}
.candidate .parrainage-popup .popup-content > .close-button {
    position: absolute;
    top: -25px;
    right: -25px;
    border: none;
    background-color: var(--bg-color-red);
    width: 50px;
    height: 50px;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    outline: none;
    color: var(--text-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/*************************************
* CANDIDATE - Who are we
*************************************/
.candidate.whoarewe .top-title {
    top: 38%;
}
.candidate.whoarewe .top-section {
    margin-bottom: 4rem;
    background-image: url(../images/vitrine/fist_check.webp);
}
.candidate.whoarewe .history-section {
    background-color: var(--bg-color-light-grey);
    margin: 0 auto;
    border-radius: 4px;
    font-size: 20px;
    padding: 2rem;
    max-width: 80rem;
    margin-bottom: 5rem;
}
.candidate.whoarewe .history-section > h2 {
    font-size: 1.7em;
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
}
.candidate.whoarewe .history-section > h2 > span {
    color: var(--bg-color-dark-red);
}
.candidate.whoarewe .history-section > p {
    margin-bottom: 2rem;
}
.candidate.whoarewe .eeinfo-section {
    font-size: 24px;
    margin-bottom: 10rem;
    text-align: right;
}
.candidate.whoarewe .eeinfo-section > article:first-of-type {
    text-align: left;
    max-width: 80rem;
    margin: 0 auto;
    margin-bottom: 6rem;
}
.candidate.whoarewe .eeinfo-section > article:last-of-type {
    color: var(--text-color-white);
    background-color: var(--bg-color-dark-red);
    text-align: center;
    padding: 2rem;
}
.candidate.whoarewe .eeinfo-section h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.6em;
    margin-bottom: 3rem;
}
.candidate.whoarewe .eeinfo-section h2 > span {
    color: var(--text-color-black);
}
.candidate.whoarewe .gain-section {
    display: flex;
    align-items: center;
    font-size: 21px;
    margin: 0 auto;
    max-width: 80rem;
    margin-bottom: 5rem;
}
.candidate.whoarewe .gain-section h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.6em;
    margin-bottom: 3rem;
}
.candidate.whoarewe .gain-section h2 span {
    color: var(--bg-color-dark-red);
}
.candidate.whoarewe .gain-section ul li {
    margin-bottom: 1rem;
}
.candidate.whoarewe .gain-section > img {
    width: 22rem;
    margin-left: 5rem;
    border-radius: 4px;
}
.candidate.whoarewe .discover-section {
    background-color: var(--bg-color-light-pink);
    margin-bottom: 3rem;
}
.candidate.whoarewe .discover-section > h2 {
    background-color: var(--bg-color-dark-red);
    color: var(--text-color-white);
    text-align: center;
    text-transform: uppercase;
    padding: 3rem 0;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}
.candidate.whoarewe .discover-section > iframe {
    width: 55rem;
    height: 30rem;
    margin: 0 auto;
    display: block;
    border: none;
    margin-bottom: 3rem;
}
.candidate.whoarewe .discover-section > .mobile-links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.candidate.whoarewe .discover-section > .mobile-links img {
    margin-bottom: 3rem;
}
.candidate.whoarewe .discover-section > .mobile-links img.android {
    width: 18rem;
}
.candidate.whoarewe .discover-section > .mobile-links img.ios {
    width: 15rem;
}
.candidate.whoarewe .whatisit-section {
    margin: 0 auto;
    max-width: 80rem;
    margin-bottom: 12rem;
}
.candidate.whoarewe .whatisit-section > h2 {
    font-weight: 600;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 3rem;
}
.candidate.whoarewe .whatisit-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}
.candidate.whoarewe .whatisit-section article {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 18rem;
    height: 12rem;
    border-radius: 25px;
    margin: 0 3rem;
}
.candidate.whoarewe .whatisit-section article p {
    position: absolute;
    z-index: 3;
    text-align: center;
    color: var(--text-color-white);
    font-weight: 500;
    font-size: 18px;
    padding: 0 1rem;
    margin: 0;
}
.candidate.whoarewe .whatisit-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    z-index: 2;
}
.candidate.whoarewe .whatisit-section .bg-img.img-1 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url(../images/vitrine/always_available_for_my_customer.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.candidate.whoarewe .whatisit-section .bg-img.img-2 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url(../images/vitrine/teenagers_thumbs.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.candidate.whoarewe .whatisit-section .btn.view-offers {
    margin: 0 auto;
    display: block;
    width: fit-content;
    font-size: 28px;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
}
/*************************************
* CANDIDATE - Who are we
*************************************/
.candidate.job-ad .top-title {
    top: 22%;
}
.candidate.job-ad .top-title-container {
    height: auto;
    top: 18%;
}
.candidate.job-ad .top-section {
    height: 65vh;
    margin-bottom: 0;
    background-image: url(../images/vitrine/happy_woman.webp);
}
.candidate.job-ad .job-ad-section > h2 {
    text-align: center;
    margin-bottom: 5rem;
}
.candidate.job-ad .job-ad-section .banner {
    background-color: var(--bg-color-dark-red);
    color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
}
.candidate.job-ad .job-ad-section .setting-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 0.5rem 0;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
.candidate.job-ad .job-ad-section .setting-menu li {
    margin: 0 2rem;
}
.candidate.job-ad .job-ad-section .setting-menu input,
.candidate.job-ad .job-ad-section .setting-menu select {
    width: 100%;
}
.candidate.job-ad .job-ad-section .search-result {
    text-align: center;
    padding: 0.5rem 0 1rem 0;
    font-weight: 500;
}
.candidate.job-ad .job-ad-section #search_job_input,
.candidate.job-ad .job-ad-section #job_contract_type,
.candidate.job-ad .job-ad-section #city_job_input {
    border-radius: 10px;
    padding: 0.4rem 1rem;
    border: none;
    font-weight: 500;
    font-size: 18px;
    outline: none;
}
.candidate.job-ad .job-ad-section #job_contract_type {
    cursor: pointer;
}
.candidate.job-ad .job-ad-section .city-job-container {
    position: relative;
}
.candidate .top-section .city-job-container {
    position: relative;
    width: 100%;
    margin-right: 1rem;
}
.candidate .list_city_adress {
    background-color: var(--bg-color-white);
    color: var(--text-color-black);
    display: none;
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1rem 0;
    margin: 0;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
    max-height: 400px;
    overflow: auto;
    font-size: 14px;
}
.candidate .list_city_adress.dropdown_list_open {
    display: block;
}
.candidate .list_city_adress > li {
    list-style-type: none;
    margin: 0 !important;
}
.candidate .list_city_adress a {
    display: block;
    padding: 0.3rem 0 0.3rem 1rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.candidate .list_city_adress a:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
.candidate.job-ad .job-ad-section .input-range {
    position: relative;
}
.candidate.job-ad .job-ad-section .input-range > input::before {
    content: 'Distance : ' attr(data-value) ' km';
    color: var(--text-color-white);
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.candidate.job-ad .job-ad-section .input-range > input {
    -webkit-appearance: none;
    width: 15rem;
    height: 10px;
    border-radius: 5px;
    background: var(--bg-color-dark-white);
    outline: none;
}
.candidate.job-ad .job-ad-section .input-range > input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 25px;
    border-radius: 4px;
    background: var(--bg-color-white);
    cursor: pointer;
}
.candidate.job-ad .job-ad-section .input-range > input::-moz-range-thumb {
    width: 15px;
    height: 25px;
    border-radius: 4px;
    background: var(--bg-color-white);
    cursor: pointer;
}
.candidate.job-ad .job-ad-section .input-range::after {
    content: '100 km';
    color: var(--text-color-white);
    position: absolute;
    top: 28px;
    right: 0;
    font-size: 12px;
}
.candidate.job-ad .job-ad-section .input-range::before {
    content: '0 km';
    color: var(--text-color-white);
    position: absolute;
    top: 28px;
    left: 0;
    font-size: 12px;
}
.candidate.job-ad .job-ad-section .job-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 9rem;
    width: 86rem;
    margin: 0 auto;
}
.candidate.job-ad .job-ad-section .job-list > article {
    width: 19.5rem;
    box-shadow: rgb(0 0 0 / 20%) 0px 3px 3px -2px, rgb(0 0 0 / 14%) 0px 3px 4px 0px, rgb(0 0 0 / 12%) 0px 1px 8px 0px;
    background-color: var(--bg-color-white);
    border-radius: 15px;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s;
}
.candidate.job-ad .job-ad-section .job-list > article:hover {
    transform: translateY(-3px);
}
.candidate.job-ad .job-ad-section .job-list .job-picture {
    position: relative;
    width: 100%;
    height: 10rem;
    border-radius: 15px 15px 0 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.candidate.job-ad .job-ad-section .job-list .job-picture > .badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bg-color-dark-red);
    border-radius: 0 15px;
    padding: 0.5rem 1rem;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-white);
}
.candidate.job-ad .job-ad-section .job-list main {
    display: block !important;
    padding: 2rem 1rem;
}
.candidate.job-ad .job-ad-section .job-list main h3 {
    text-align: center;
    color: var(--bg-color-dark-red);
    font-size: 26px;
    font-weight: 600;
}
.candidate.job-ad .job-ad-section .job-list main p {
    text-align: center;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.candidate.job-ad .job-ad-section .job-list footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 1rem 2.5rem 1rem;
    margin-top: auto;
}
.candidate.job-ad .job-ad-section .job-list footer .see-offer,
.candidate.job-ad .job-ad-section .job-list footer .apply {
    padding: 0.3rem 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 15px;
}
.candidate.job-ad .loading-spinner {
    margin: 0 auto;
    display: block;
    margin-top: 5rem;
    visibility: hidden;
}
.candidate.job-ad .loading-spinner.visible {
    margin: 0 auto;
    display: block;
    margin-top: 5rem;
    visibility: visible;
}
.candidate.job-ad .job-ad-section .job-list .no-job-ad {
    margin: 0 auto;
    font-size: 18px;
}
#scroll_top_btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0px 3px 5px -1px rgb(0 0 0 / 20%), 0px 6px 10px 0px rgb(0 0 0 / 14%), 0px 1px 18px 0px rgb(0 0 0 / 12%);
    opacity: 0;
    transition: opacity 0.4s;
}
#scroll_top_btn.show {
    opacity: 1;
}
.offer-modal .job-picture {
    width: 100%;
    height: 10rem;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 0.5rem;
}
.offer-modal #back_btn {
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
    background-color: var(--bg-color-white);
    border: none;
    width: 60px;
    height: 50px;
    border-radius: 0 0 50% 0;
    padding-right: 1rem;
    padding-bottom: 1rem;
    font-size: 20px;
    z-index: 3;
}
.offer-modal #back_btn .fa-arrow-left {
    transition: transform 0.3s;
}
.offer-modal #back_btn:hover .fa-arrow-left {
    transform: translateX(-5px);
}
.offer-modal h1 {
    font-weight: 600;
    margin: 0;
}
.offer-modal .address {
    display: block;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
}
.offer-modal .publication-date {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--text-color-grey);
}
.offer-modal .week-working-time,
.offer-modal .job-contract-type,
.offer-modal .job-contract-salary {
    margin: 0;
    font-size: 16px;
}
.offer-modal .job-contract-salary {
    margin-bottom: 1rem;
}
.offer-modal .week-working-time > .fa-clock,
.offer-modal .job-contract-type > .fa-file-contract,
.offer-modal .job-contract-salary > .fa-money-bill-wave-alt {
    min-width: 2rem;
    color: var(--text-color-grey);
}

/*************************************
* CANDIDATE/CLIENT - Contact
*************************************/
div.contact .menu a {
    color: var(--text-color-black);
    font-weight: 500;
}
div.contact .menu a.btn-signin {
    color: var(--text-color-white);
}
.candidate.contact .menu a.btn-signup {
    background-color: var(--bg-color-dark-white);
    border-color: var(--bg-color-dark-white);
}
div.contact .top-section {
    height: 7rem;
    background: none;
}
div.contact .contact-section article:first-of-type {
    background-color: var(--bg-color-dark-red);
    color: var(--text-color-white);
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    padding: 3rem 0 5rem 0;
}
div.contact .contact-section article:first-of-type h2 {
    font-size: 2.3em;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
}
div.contact .contact-section article:first-of-type > p {
    font-weight: 500;
}
div.contact .contact-section article:last-of-type {
    margin: 0 auto;
    width: 100%;
    max-width: 55rem;
    margin-top: -4rem;
    background-color: var(--bg-color-white);
    border-radius: 25px;
    padding: 2rem 3rem 5rem 3rem;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
div.contact .contact-section article:last-of-type > p {
    text-align: right;
    font-weight: 600;
}
div.contact .contact-section .text-red {
    color: var(--bg-color-dark-red);
    font-weight: 600;
    font-size: 18px;
}
div.contact .contact-section form .contact-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative;
}
div.contact .contact-section form .contact-row.error input,
div.contact .contact-section form .contact-row.error textarea {
    border-color: var(--bg-color-dark-red);
}
div.contact .contact-section form .contact-row.error .input-container {
    position: relative;
}
div.contact .contact-section form .contact-row.error .input-container::after {
    font-family: 'Font Awesome 5 Free';
    content: '\f057';
    display: inline-block;
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    right: 12px;
    top: 8px;
    color: var(--bg-color-dark-red);
}
div.contact .contact-section form .contact-row .error-field {
    display: none;
    margin: 0;
    color: var(--bg-color-dark-red);
    margin-top: 5px;
    padding-left: 5px;
    font-weight: 500;
    font-size: 14px;
}
div.contact .contact-section form .contact-row.error .error-field {
    display: block;
}
div.contact .contact-section form label {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 1rem;
}
div.contact .contact-section form input[type='text'],
div.contact .contact-section form input[type='tel'],
div.contact .contact-section form input[type='email'],
div.contact .contact-section form textarea {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--bg-color-grey);
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-black);
    width: 100%;
}
div.contact .contact-section form textarea {
    border-radius: 25px 25px 0 25px;
}
div.contact .contact-section form .file-input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 15px;
    cursor: pointer;
}
div.contact .contact-section form .file-input > div {
    display: flex;
    width: 100%;
    align-items: center;
}
div.contact .contact-section form .file-input:hover {
    background-color: var(--bg-color-light-grey);
}
div.contact .contact-section form .plus {
    color: var(--text-color-white);
    background: var(--bg-color-dark-red);
    padding: 1rem;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
    font-size: 18px;
}
div.contact .contact-section form #file_preview {
    margin-left: auto;
    width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}
div.contact .contact-section form #file_preview .fa-file {
    margin-right: 5px;
}
form .terms-checkbox {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
form .terms-checkbox input[type='checkbox'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -border-radius: 4px;
    height: 30px;
    width: 30px;
    min-width: 30px;
    background: var(--bg-color-white);
    border: 1px solid var(--bg-color-grey);
    margin-right: 1rem;
    outline: none;
    border-radius: 4px;
    position: relative;
}
form .terms-checkbox input[type='checkbox']:checked {
    background: var(--bg-color-dark-red);
}
form .terms-checkbox input[type='checkbox']:checked::after {
    font-family: 'Font Awesome 5 Free';
    content: '\f00c';
    display: inline-block;
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color-white);
}
form .btn.btn-submit {
    margin: 0 auto;
    display: block;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.6rem 3rem;
    border-radius: 50px;
}
div.contact form .contact-address {
    text-align: center;
    margin-top: 15px;
    font-weight: 400;
    font-size: 14px;
}
div.contact form .contact-address > a {
    color: var(--bg-color-red);
    font-weight: 600;
}

/*************************************
* CLIENT
*************************************/
.client .top-section {
    background-image: url('../images/vitrine/vitrine_client_hire.png');
}
.client .top-section .top-title .shape {
    background: var(--bg-color-red);
    padding: 0 60px;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 14% 100%);
    width: 28rem;
    display: inline-block;
    margin-left: -40px;
}
.client .top-section .top-title {
    left: 10%;
    width: 90%;
}
.client .top-section h1,
.client .top-section h2 {
    margin-bottom: 2rem;
    color: var(--text-color-white);
}
.client .top-section .top-title .btn-who-we-are {
    padding: 0.5rem 2rem;
    font-weight: 500;
    font-size: 22px;
}
.client .info-section h2 {
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
}
.client .info-section .btn-work-together {
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 22px;
    border-radius: 8px;
}
.client .link-section {
    margin-bottom: 3rem;
}
.client .link-section h2 {
    text-align: center;
    color: var(--text-color-white);
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: 38px;
}
.client .link-section .row {
    margin: 3rem 0;
}
.client .link-section article {
    position: relative;
    width: 15rem;
    height: 11rem;
    border-radius: 25px;
    margin: 0 3rem;
}
.client .link-section a:hover .bg-img {
    background-size: 110% 110%;
}
.client .link-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    transition: background-size 0.3s;
}
.client .link-section .bg-img.img-1 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/Compta.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.client .link-section .bg-img.img-2 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/Sante.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.client .link-section .bg-img.img-3 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/Agroalimentaire.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.client .link-section .bg-img.img-4 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/Industrie.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.client .link-section .bg-img.img-5 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/Bois.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.client .link-section .bg-img.img-6 {
    background: linear-gradient(0deg, rgb(25 25 25 / 50%), rgb(25 25 25 / 50%)), url('../images/vitrine/Chimie.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.client .link-section .text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 1;
}
.client .link-section .text p {
    text-align: center;
    margin: 0;
    color: var(--text-color-white);
    font-size: 18px;
    font-weight: 600;
}
.client .link-section .btn-interested {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 1rem;
    color: var(--text-color-black) !important;
    padding: 0.5rem 2rem;
    font-weight: 600;
    font-size: 20px;
    border-radius: 8px;
}
.client .notice-section h2 {
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 600;
    font-size: 36px;
}
.client .notice-section .notice-container {
    padding-top: 3rem;
}
.client .notice-section article {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--bg-color-pink);
    width: 20rem;
    margin: 0 1.5rem;
    border-radius: 8px;
    padding: 1rem;
    padding-bottom: 1rem;
}
.client .notice-section .img-guillemet {
    width: 3.5rem;
    height: 3.5rem;
    position: absolute;
    top: -42px;
}
.client .notice-section article .comment {
    color: var(--text-color-black);
    margin-top: 1.5rem;
    font-weight: 500;
    line-height: 20px;
    font-size: 18px;
    margin-bottom: 2rem;
}
.client .notice-section .author {
    margin-top: auto;
    background-color: var(--bg-color-white);
    border-radius: 28px;
    padding: 1rem 1rem 1rem 1.5rem;
    margin-bottom: 1rem;
    height: 78px;
}
.client .notice-section .author .name {
    line-height: 18px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.client .notice-section .author .job {
    line-height: 14px;
    font-size: 11px;
    font-weight: 500;
    margin: 0;
}
.client .notice-section .author img {
    height: 2.8rem;
}
.client > footer.footer nav a.btn-contact-us {
    color: var(--text-color-black) !important;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
}
.client > footer.footer nav a.btn-client-signin {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
}

/*************************************
* CLIENT - Who are we
*************************************/
.client.whoarewe .top-title {
    left: initial;
    width: initial;
    top: 38%;
}
.client.whoarewe .top-title h1 {
    text-align: center;
}
.client.whoarewe .top-section {
    background-image: url(../images/vitrine/vitrine_client_whoarewe.webp);
}
.client.whoarewe .info-section h2 {
    text-transform: uppercase;
}
.client.whoarewe .info-section h2 > span {
    color: var(--bg-color-dark-red);
}
.client.whoarewe .info-section h2 > span.grey {
    color: var(--text-color-dark-grey);
}
.client.whoarewe .description-section {
    background-color: var(--bg-color-light-grey);
    margin: 0 auto;
    border-radius: 4px;
    font-size: 20px;
    padding: 2rem;
    max-width: 80rem;
    margin-bottom: 6rem;
}
.client.whoarewe .description-section > p {
    margin-bottom: 2rem;
}
.client.whoarewe .whereweare-section {
    margin: 0 auto;
    font-size: 20px;
    max-width: 80rem;
    margin-bottom: 12rem;
}
.client.whoarewe .whereweare-section h2 {
    font-size: 1.8em;
    margin-bottom: 3rem;
}
.client.whoarewe .whereweare-section h2 > span {
    color: var(--bg-color-dark-red);
}
.client.whoarewe .whereweare-section p.bold {
    margin: 1.8rem 0 3.5rem 0;
}
.client.whoarewe .whereweare-section .btn.contact-us {
    margin: 0 auto;
    display: block;
    width: fit-content;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 50px;
}

/*************************************
* CLIENT - 1DoTech
*************************************/
.client.dotech .top-title {
    left: initial;
    width: initial;
    top: 38%;
}
.client.dotech .top-section {
    background-image: url(../images/vitrine/img_1dotech.png);
}
.client.dotech .info-section h2 {
    text-transform: uppercase;
}
.client.dotech .description-section {
    background-color: var(--bg-color-light-grey);
    margin: 0 auto;
    border-radius: 4px;
    font-size: 20px;
    padding: 2rem;
    max-width: 80rem;
    margin-bottom: 6rem;
}
.client.dotech .description-section > p {
    margin-bottom: 2rem;
}
.client.dotech .bottom-center{
    text-align: center;
}
.client.dotech .bottom-center p{
    margin-bottom: 2rem;
}
.client.dotech .bottom-center a{
    color: var(--text-color-white);
    background-color: var(--bg-color-black);
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
}

/*************************************
* CLIENT - philosophy
*************************************/
.client.philosophy .top-title {
    left: initial;
    width: initial;
    top: 38%;
}
.client.philosophy .top-title h1 {
    text-align: center;
}
.client.philosophy .top-section {
    background-image: url(../images/vitrine/philosophy.webp);
    margin-bottom: 7rem;
}
.client.philosophy .eeinfo-section article {
    margin: 0 auto;
    font-size: 20px;
    max-width: 80rem;
    margin-bottom: 3rem;
}
.client.philosophy .eeinfo-section article:last-of-type {
    margin-bottom: 8rem;
}
.client.philosophy .eeinfo-section h2 {
    font-size: 1.7em;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.client.philosophy .eeinfo-section h2 > span {
    color: var(--bg-color-dark-red);
}
.client.philosophy .eeinfo-section > h3 {
    background-color: var(--bg-color-dark-red);
    color: var(--text-color-white);
    text-align: center;
    text-transform: uppercase;
    padding: 3rem 0;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}
.client.philosophy .monitoring-section {
    margin: 0 auto;
    font-size: 20px;
    max-width: 80rem;
    margin-bottom: 3rem;
    text-align: right;
}
.client.philosophy .monitoring-section h2 {
    font-size: 1.7em;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.client.philosophy .monitoring-section h2 > span {
    color: var(--bg-color-dark-red);
}
.client.philosophy .visibility-section {
    background-color: var(--bg-color-light-grey);
    font-size: 20px;
    margin-bottom: 3rem;
    padding: 3rem 0;
}
.client.philosophy .visibility-section article {
    margin: 0 auto;
    max-width: 80rem;
}
.client.philosophy .visibility-section h2 {
    font-size: 1.7em;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.client.philosophy .visibility-section h2 > span {
    color: var(--bg-color-dark-red);
}
.client.philosophy .ambition-section {
    margin: 0 auto;
    font-size: 20px;
    max-width: 80rem;
    margin-bottom: 12rem;
    text-align: center;
}
.client.philosophy .ambition-section h2 {
    font-size: 1.7em;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.client.philosophy .ambition-section h2 > span {
    color: var(--bg-color-dark-red);
}
.client.philosophy .ambition-section p {
    margin-bottom: 6rem;
}
.client.philosophy .ambition-section p > span {
    color: var(--bg-color-dark-red);
    font-weight: 600;
}
.client.philosophy .ambition-section .btn.contact-us {
    margin: 0 auto;
    display: block;
    width: fit-content;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 50px;
}

#legalTitle {
    text-align: center;
    margin-bottom: 25px;
}

#legalDiv {
    width: 50%;
    margin: auto;
}

/*************************************
* RESPONSIVE
*************************************/
@media all and (max-width: 1400px) {
    .menu {
        flex-direction: column;
    }
    .menu .menu-left {
        width: 100%;
    }
    .menu .dropdown-button {
        display: block;
    }
    .menu .dropdown-content {
        display: none;
        margin: 0;
        flex-direction: column;
    }
    .menu.unwrap {
        background-color: var(--bg-color-white);
        transition: all 0.3s;
        box-shadow: 0 0 5px var(--bg-color-dark-grey);
    }
    .menu.unwrap .dropdown-button button {
        color: var(--bg-color-black);
    }
    .menu.unwrap .dropdown-content {
        display: flex !important;
    }
    .menu.unwrap a {
        color: var(--bg-color-black);
    }
    .menu.unwrap a.btn-signin {
        color: var(--bg-color-white);
    }
    .menu.unwrap a.btn-signup {
        background-color: var(--bg-color-dark-white);
    }
    .candidate.whoarewe .history-section {
        max-width: 70rem;
    }
    .candidate.whoarewe .eeinfo-section {
        text-align: center;
        padding: 0;
    }
    .candidate.whoarewe .eeinfo-section article:first-of-type {
        padding: 0 1rem;
    }
    .candidate.whoarewe .gain-section {
        padding: 0 1rem;
    }
    .client .info-section h2 {
        font-size: 28px;
    }
    .client.whoarewe .description-section {
        width: auto;
        margin: 0 1rem;
        margin-bottom: 6rem;
    }
    .client.whoarewe .whereweare-section {
        width: auto;
        margin: 0 1rem;
        margin-bottom: 12rem;
    }
    .client.philosophy .eeinfo-section article,
    .client.philosophy .monitoring-section {
        width: auto;
        margin: 0 1rem;
        margin-bottom: 3rem;
    }
    .client.philosophy .visibility-section article {
        width: auto;
        margin: 0 1rem;
    }
    .client.philosophy .ambition-section {
        width: auto;
        margin: 0 1rem;
        margin-bottom: 12rem;
    }
    div.contact .menu .dropdown-button button {
        color: var(--text-color-black);
    }
    div.contact .contact-section article:last-of-type {
        margin: 0 2rem;
        margin-top: -4rem;
        width: auto;
        max-width: none;
    }
    .candidate.job-ad .job-ad-section .setting-menu {
        font-size: 21px;
    }
    .candidate.job-ad .job-ad-section .job-list {
        width: 72rem;
    }
    .candidate.job-ad .job-ad-section .job-list > article {
        width: 21.97rem;
    }
    .candidate.job-ad .job-ad-section .setting-menu li {
        margin: 0 1rem;
    }
}
@media all and (max-width: 1200px) {
    .signin {
        background: none;
    }
    .signin > header,
    .signin > main {
        display: none;
    }
    .top-section .scroll-arrow {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}
@media all and (max-height: 600px) and (orientation: landscape) {
    .top-section .scroll-arrow {
        display: none;
    }
}
@media all and (max-width: 1150px) {
    .top-section h1 {
        font-size: 5em;
    }
    .candidate .top-section h1 {
        font-size: 3.6em;
    }
    .candidate .top-section .top-title .shape {
        font-size: 4rem;
        width: 25rem;
    }
    .client .top-section h1 {
        font-size: 4em;
    }
    .client .top-section .top-title .shape {
        padding: 0 40px;
        width: 19rem;
        margin-left: -20px;
    }
    .candidate .info-section h2 {
        font-size: 20px;
    }
    .candidate .link-section article {
        margin: 0 3rem;
    }
    .client .link-section article {
        margin: 0 0.5rem;
    }
    .link-section .img-signup,
    .link-section .img-jobs {
        width: 17rem;
        height: 12rem;
    }   
    .client .notice-section article {
        margin: 0 1rem;
    }
    .client .notice-section article .comment {
        font-size: 16px;
    }
    .client .notice-section .author img {
        height: 1.5rem;
    }
    .candidate.whoarewe .history-section {
        margin: 0 1rem;
        margin-bottom: 5rem;
        width: auto;
    }
    .candidate.whoarewe .gain-section > img {
        width: 16rem;
    }
    .client.philosophy .eeinfo-section article,
    .client.philosophy .monitoring-section,
    .client.philosophy .visibility-section article {
        text-align: center;
    }
    footer.footer nav ul li {
        margin: 0 0.5rem;
    }
    footer.footer nav ul li > a {
        font-size: 12px;
    }
    .candidate.job-ad .job-ad-section .setting-menu {
        font-size: 15px;
    }
    .candidate.job-ad .job-ad-section .input-range > input::before {
        top: -20px;
    }
    .candidate.job-ad .job-ad-section .input-range::before,
    .candidate.job-ad .job-ad-section .input-range::after {
        top: 24px;
    }
    .candidate.job-ad .job-ad-section .job-list > article {
        width: 18.85rem;
    }
    .candidate.job-ad .job-ad-section .job-list {
        width: 63rem;
    }
}
@media all and (max-width: 1000px) {
    .dispatch .main-container article > a > h1 {
        font-size: 1.8em;
    }
    .dispatch .main-container article > a > h2 {
        font-size: 1.7em;
    }
    .candidate.whoarewe .discover-section > iframe {
        width: 100%;
        padding: 0 1rem;
        height: 25rem;
    }
    .candidate.whoarewe .gain-section {
        flex-direction: column;
    }
    .candidate.whoarewe .gain-section h2 {
        text-align: center;
    }
    .candidate.whoarewe .gain-section ul {
        margin-bottom: 4rem;
    }
    .candidate.whoarewe .gain-section > img {
        width: 22rem;
        margin-left: 0;
    }
    .candidate.whoarewe .discover-section > h2 {
        font-size: 1.5rem;
    }
    .client.whoarewe .whereweare-section h2 {
        text-align: center;
    }
    div.contact .contact-section article:first-of-type {
        font-size: 16px;
    }
    div.contact .contact-section form label {
        font-size: 16px;
    }
    div.contact .contact-section form .contact-row .error-field {
        font-size: 12px;
    }
    div.contact .contact-section form .terms-checkbox {
        font-size: 14px;
    }
    .candidate.job-ad .job-ad-section .setting-menu {
        font-size: 14px;
    }
    .candidate.job-ad .job-ad-section .job-list > article {
        width: 23rem;
    }
    .candidate.job-ad .job-ad-section .banner {
        margin-bottom: 4rem;
    }
    .candidate.job-ad .job-ad-section .job-list {
        width: 50rem;
    }

    .candidate.job-ad .job-ad-section .setting-menu {
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
        margin: 0 auto;
    }
    .candidate.job-ad .job-ad-section .setting-menu li {
        margin: 0.5rem;
    }
    .candidate.job-ad .job-ad-section .city-job-container {
        margin-bottom: 2rem !important;
    }
    .candidate.job-ad .job-ad-section .input-range > input {
        width: 100%;
    }
}
@media all and (max-width: 800px) {
    .top-section h1 {
        font-size: 4em;
    }
    .candidate .top-section h1 {
        font-size: 2.8em;
    }
    .candidate .top-section .top-title .shape {
        font-size: 3.5rem;
        width: 22rem;
    }
    .client .top-section h1 {
        font-size: 3em;
    }
    .client .top-section h2 {
        font-size: 1.5em;
    }
    .client .top-section .top-title .shape {
        padding: 0 30px;
        width: 14rem;
        margin-left: -10px;
    }
    .client .top-section .top-title .btn-who-we-are {
        font-size: 18px;
    }
    .find-job {
        flex-direction: column;
    }
    form.find-job input,
    form.find-job button {
        margin: 0;
        margin-bottom: 1rem;
    }
    .candidate .top-section .city-job-container {
        margin-right: 0;
    }
    .candidate .link-section article {
        margin: 0 1rem;
    }
    .client .link-section .row {
        margin: 0;
        flex-direction: column;
    }
    .client .link-section article {
        margin: 1rem 0;
    }
    .client .link-section .btn-interested {
        margin-top: 1.5rem;
    }   
    .client .notice-section h2 {
        margin-bottom: 3rem;
    }
    .client .notice-section .author img {
        height: 2.8rem;
    }
    .candidate.whoarewe .history-section,
    .candidate.whoarewe .eeinfo-section,
    .candidate.whoarewe .gain-section {
        font-size: 18px;
    }
    .candidate.whoarewe .discover-section > h2 {
        font-size: 1rem;
        padding: 2rem 0;
    }
    .candidate.whoarewe .discover-section > .mobile-links img.android {
        width: 12rem;
    }
    .candidate.whoarewe .discover-section > .mobile-links img.ios {
        width: 10rem;
    }
    .candidate.whoarewe .whatisit-section article {
        margin: 0 1rem;
    }
    .candidate.whoarewe .whatisit-section .btn.view-offers {
        font-size: 24px;
    }
    .info-section {
        height: 12rem;
    }
    .client .info-section h2 {
        font-size: 22px;
        margin: 0;
    }
    .client.whoarewe .description-section {
        font-size: 18px;
    }
    .client.whoarewe .whereweare-section {
        font-size: 18px;
    }
    .client.whoarewe .whereweare-section .btn.contact-us,
    .client.philosophy .ambition-section .btn.contact-us {
        font-size: 24px;
    }
    .client.philosophy .eeinfo-section article,
    .client.philosophy .monitoring-section,
    .client.philosophy .visibility-section,
    .client.philosophy .ambition-section {
        font-size: 16px;
    }
    .client.philosophy .eeinfo-section > h3 {
        font-size: 1.4rem;
        padding: 2rem 0;
    }
    div.contact .contact-section article:first-of-type {
        font-size: 12px;
    }
    div.contact .contact-section article:last-of-type {
        padding: 1rem 2rem 4rem 2rem;
    }
    footer.footer nav ul {
        height: auto;
        flex-direction: column;
        padding: 1rem 0;
    }
    footer.footer nav ul li {
        margin: 0.4rem 0;
    }
    .candidate.job-ad .job-ad-section .setting-menu {
        font-size: 12px;
    }
    .candidate.job-ad .job-ad-section .input-range > input::before {
        font-size: 12px;
        top: -20px;
    }
    .candidate.job-ad .job-ad-section .input-range::before,
    .candidate.job-ad .job-ad-section .input-range::after {
        top: 18px;
    }
    .candidate.job-ad .job-ad-section .job-list > article {
        width: 22.5rem;
        margin: 1rem auto;
    }
    .candidate.job-ad .job-ad-section .job-list {
        width: 100%;
        justify-content: center;
    }      
}

@media all and (max-width: 600px) {
    .menu {
        padding: 0;
    }
    .menu .logo {
        width: 14rem;
    }
    .candidate .top-section h1 {
        font-size: 1.8em;
    }
    .candidate .top-section .top-title .shape {
        font-size: 3rem;
        width: 19rem;
        margin-bottom: 1rem;
    }
    .client .top-section h1 {
        font-size: 2em;
        margin-bottom: 1rem;
    }
    .client .top-section .top-title .shape {
        padding: 0px 15px;
        width: 9rem;
        margin-left: -5px;
    }
    .client .top-section h2 {
        font-size: 1em;
        margin-bottom: 1rem;
    }
    .client .top-section .top-title .btn-who-we-are {
        font-size: 12px;
    }
    .top-section h1 {
        font-size: 3em;
    }
    .candidate .info-section h2 {
        font-size: 14px;
        padding: 0 0.5rem;
    }

    .client .info-section h2 {
        font-size: 22px;
    }
    .client .info-section .btn-work-together {
        font-size: 18px;
    }
    .link-section {
        flex-direction: column;
    }
    .client .link-section h2 {
        font-size: 26px;
    }
    .candidate .link-section article {
        margin: 1rem 0;
    }
    .client .notice-section h2 {
        font-size: 26px;
    }
    .candidate .notice-section h2 {
        font-size: 2em;
    }
    .candidate .notice-section h2 > span {
        display: block;
    }
    footer.footer > p {
        font-size: 12px;
    }
    .dispatch .logo {
        width: 22rem;
    }
    .dispatch .main-container {
        flex-direction: column;
    }
    .dispatch .main-container article > a {
        height: 50vh;
    }
    .dispatch .btn.btn-access {
        left: 1rem;
        width: auto;
    }
    .candidate.whoarewe .discover-section > iframe {
        height: 15rem;
    }
    .candidate.whoarewe .history-section,
    .candidate.whoarewe .eeinfo-section,
    .candidate.whoarewe .gain-section {
        font-size: 16px;
    }
    .candidate.whoarewe .discover-section > h2 {
        font-size: 0.7rem;
    }
    .candidate.whoarewe .whatisit-section > div {
        flex-direction: column;
    }
    .candidate.whoarewe .whatisit-section article {
        margin: 1rem;
    }
    .client.philosophy .eeinfo-section > h3 {
        font-size: 1rem;
        padding: 1rem 0;
    }
    div.contact .contact-section article:first-of-type {
        font-size: 9px;
    }
    div.contact .contact-section form label,
    div.contact .contact-section article:last-of-type > p {
        font-size: 12px;
        margin-bottom: 0.5rem;
    }
    div.contact .contact-section form .contact-row .error-field {
        font-size: 10px;
    }
    div.contact .contact-section form .terms-checkbox {
        font-size: 12px;
    }        
    .candidate.job-ad .top-title-container {
        top: 25%;
    }
    .candidate.job-ad .job-ad-section > h2 {
        margin-bottom: 2rem;
        font-size: 24px;
    }
    .offer-modal h1 {
        font-size: 1.6rem;
    }
    .offer-modal .address {
        font-size: 14px;
    }
    .offer-modal .publication-date {
        font-size: 12px;
    }
    .offer-modal .week-working-time,
    .offer-modal .job-contract-type {
        font-size: 14px;
    }
    .candidate .parrainage-popup .popup-content > img {
        width: 100%;
    }
    .candidate .parrainage-popup .popup-content {
        margin: 0 3rem;
    }
    .candidate .parrainage-popup .popup-content > a {
        bottom: -42px;
        top: unset;
        left: 0;
        right: 0;
        text-align: center;
        background-color: var(--bg-color-red);
        box-shadow: unset;
    }
}
@media all and (max-width: 450px) {
    .menu .logo {
        width: 10rem;
    }
    .top-section h1 {
        font-size: 2em;
        margin-bottom: 2rem;
    }
    .candidate .top-section .top-title .shape {
        font-size: 2.5rem;
        width: 16rem;
        padding: 0 40px;
    }
    .candidate .top-section h1 {
        font-size: 1.5em;
    }
    footer.footer > p {
        font-size: 8px;
    }
    .dispatch .logo {
        width: 16rem;
        top: 3rem;
    }
    .candidate.whoarewe .history-section,
    .candidate.whoarewe .eeinfo-section,
    .candidate.whoarewe .gain-section {
        font-size: 14px;
    }
    .candidate.whoarewe .eeinfo-section h2,
    .candidate.whoarewe .gain-section h2 {
        font-size: 1.5em;
        margin-bottom: 1.5rem;
    }
    .candidate.whoarewe .gain-section > img {
        width: 16rem;
    }
    .candidate.whoarewe .gain-section ul {
        padding-left: 1rem;
    }
    .candidate.whoarewe .discover-section > h2 {
        font-size: 0.6rem;
    }
    .candidate.whoarewe .discover-section > iframe {
        height: 12rem;
        margin-bottom: 1rem;
    }
    .candidate.whoarewe .discover-section > .mobile-links img.android {
        width: 6rem;
        margin-bottom: 1rem;
    }
    .candidate.whoarewe .discover-section > .mobile-links img.ios {
        width: 5rem;
        margin-bottom: 1rem;
    }
    .candidate.whoarewe .whatisit-section > h2 {
        font-size: 1.8em;
        margin-bottom: 1rem;
    }
    .candidate.whoarewe .whatisit-section .btn.view-offers {
        font-size: 16px;
    }
    .info-section {
        height: 8rem;
    }
    .client .info-section h2 {
        font-size: 16px;
    }
    .client.whoarewe .description-section {
        font-size: 14px;
        padding: 1rem;
    }
    .client.whoarewe .whereweare-section h2 {
        font-size: 1.4em;
    }
    .client.whoarewe .whereweare-section {
        font-size: 14px;
    }
    .client.whoarewe .whereweare-section .btn.contact-us,
    .client.philosophy .ambition-section .btn.contact-us {
        font-size: 16px;
    }
    .client.philosophy .eeinfo-section article,
    .client.philosophy .monitoring-section,
    .client.philosophy .visibility-section,
    .client.philosophy .ambition-section {
        font-size: 13px;
    }
    .client.philosophy .eeinfo-section > h3 {
        font-size: 0.8rem;
    }
    .candidate.job-ad .job-ad-section .job-list > article {
        margin: 1rem;
    }
    div.contact .contact-section article:last-of-type {
        margin: 0 1rem;
        margin-top: -4rem;
        padding: 1rem 1rem 4rem 1rem;
    }
    div.contact .contact-section form .file-input {
        padding: 0.5rem;
    }
    div.contact .contact-section form .plus {
        padding: 0.7rem;
        height: 10px;
        width: 10px;
        font-size: 14px;
    }  
    .candidate.job-ad .job-ad-section .job-list footer .see-offer,
    .candidate.job-ad .job-ad-section .job-list footer .apply {
        font-size: 12px;
    }    
}
@media all and (max-width: 350px) {
    .client .top-section h1 {
        font-size: 1.5em;
    }
    .client .top-section .top-title .shape {
        width: 7rem;
    }    
    .client .notice-section h2 {
        font-size: 22px;
    }
    .candidate .notice-section article {
        width: 13rem;
    }
    .candidate .notice-section p {
        font-size: 14px;
    }
}
