/* CSS personnalisé ici */

/***** REGLES GENERALES *****/

*,
*:after,
:before {
    box-sizing: border-box;
    /*inclut la padding et la bordure dans la largeur et la hauteur totales de l'élément*/
    margin: 0;
    /*réintialiser les padding et les marges à 0*/
    padding: 0;
    border: 0;
}

ul {
    list-style-type: none;
}

a {
    /* mes éléments <a> ne sont plus soulignés*/
    text-decoration: none;
}

/***** CSS PERSONNALISÉ ASTRA *****/

#bloc_formulaire{
	position: sticky;
	top:50px;
	z-index: 9999;
	width: 450px;
}
.nf-form-fields-required{
	visibility:hidden;
}
.nf-form-content {
	margin-top:-50px;
}
.bloc_formulaire{
	position:sticky;
}
.ast-above-header-wrap  {
	background-color : black;
}
.wp-block-button__link{
	font-size:14px !important;
	border-radius:5px !important;
}

/***** HEADER *****/

ul {
    list-style-type: none;
}

a {
    /* mes éléments <a> ne sont plus soulignés*/
    text-decoration: none;
}

html {
    font-family: Nunito, sans-serif;
}

/***** MOBILE *****/

.navbar-mobile__menu {
    height: 70px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-right: 20px;
}

.navbar-mobile__logo {
    height: 100%;
    max-width: 200px;
    width: 100%;
    cursor: pointer;
    outline: none;
    position: relative;
    margin: 0px 20px;
    display: flex;
    align-items: center;
}

.navbar-mobile__logo img {
    width: 100%;

}

.navbar-mobile__buttons {
    height: 100%;
    display: flex;
    flex-flow: row;
    -webkit-box-align: center;
    align-items: center;
    column-gap: 6px;
}

.navbar-mobile__button {
    display: flex;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    background-color: rgb(49, 83, 151);
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.navbar-mobile__button svg {

    width: 24px;
    height: 24px;
}

.navbar-mobile__search-button {
    outline: none;
    margin: 0px 0px 0px 10px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(49, 83, 151);
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
    border: 2px solid rgb(49, 83, 151);
    width: 40px;
    height: 40px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 5px;
}

.navbar-mobile__contact-link {
    background-color: rgb(49, 83, 151);
    color: rgb(255, 255, 255);
}

.navbar-mobile__contact-link svg {
    transform: rotate(90deg);
}




.navbar-mobile__sider-social-links {
    display: none;
    flex-flow: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 15px 0px;
    gap: 10px;
    margin-right: 10px;
}

.navbar-mobile__links {
    display: flex;
    flex-flow: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    gap: 10px;
    background-color: rgb(215, 217, 235);
    padding: 10px;
}

.navbar-mobile__link {
    width: 44px;
    height: 44px;
    background: rgb(49, 83, 151);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 500px;
}

.navbar-mobile__link img {
    height: 23px;
    color: rgb(255, 255, 255);
}



/***** HEADER DESKTOP *****/

.navbar-desktop {
    background-color: rgb(255, 255, 255);
    z-index: 150;
}

.navbar-desktop__menu {
    display: none;
    flex-flow: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 15px;
    z-index: 100;
    position: relative;
    background-color: rgb(0, 0, 0);
}

.navbar-desktop__links {
    display: flex;
    gap: 0;
}

.navbar-desktop__link {
    text-decoration: none;
    font-weight: 300;
    margin-right: 10px;
    color: rgb(255, 255, 255);
    line-height: 1;
    font-size: 16px;
}

.navbar-desktop__link:last-child {
    border-right: 1px solid rgb(255, 255, 255);
}


.navbar-desktop__link:hover {
    text-decoration: underline;
    color: rgb(255, 255, 255);
}

.navbar-desktop__link-bordered {
    padding: 0px 10px;
    border-left: 1px solid rgb(255, 255, 255);
    margin: 0px;
}

.navbar-desktop__description {
    display: none;
    background-color: rgb(255, 255, 255);
    color: rgb(105, 105, 105);
    text-align: center;
    padding: 8px 10px;
    margin: 0px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    position: relative;
    box-shadow: rgb(240, 241, 242) 0px 3px 4px;
}

.navbar-desktop__description p {
    margin: 0;
}

.navbar-desktop__social-links {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.navbar-desktop__social-links a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.navbar-desktop__social-links img {
    height: 17px;
    width: auto;
    color: rgb(255, 255, 255);
    margin: 0px;
    padding: 0px 5px;
}

.navbar-desktop__menu-secondary {
    height: 90px;
    display: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-flow: row;
    position: relative;
    padding: 0px 20px;
}

.navbar-desktop__logo {
    height: 100%;
    max-width: 200px;
    width: 100%;
    cursor: pointer;
    z-index: 100;
    outline: none;
    position: relative;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.navbar-desktop__logo img {
    width: 100%;

}

.navbar-desktop__logo img {
    object-fit: contain;
}

.navbar-desktop__menu-secondary .navbar-desktop__links {
    z-index: 100;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    position: relative;

}

.navbar-desktop__menu-secondary .navbar-desktop__links .navbar-giant-menu-toggler {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.navbar-desktop__menu-secondary .navbar-giant-menu-toggler svg {
    height: 20px;
    transition: transform 0.2s;
    margin-left: 5px;
}



.navbar-desktop__menu-secondary .navbar-desktop__link {
    outline: none;
    border: none;
    padding: 0px;
    text-decoration: none;
    color: rgb(40, 41, 49);
    margin: 0px 10px;
    cursor: pointer;
    transition: color 0.2s;
    width: fit-content;
    font-weight: 400;
}

/* BOUTONS HEADER */

.navbar-desktop__jobs-link {
    outline: none;
    margin: 0px 0px 0px 10px;
    text-decoration: none;
    color: rgb(49, 83, 151);
    background-color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    border: 2px solid rgb(49, 83, 151);
    height: 38px;
    line-height: 1;
    font-size: 16px;
}

.navbar-desktop__jobs-link:hover {
    background-color: rgb(40, 41, 49);
    border-color: rgb(40, 41, 49);
    color: rgb(255, 255, 255) !important;
}

.navbar-desktop__contact-link {
    outline: none;
    margin: 0px 0px 0px 10px;
    text-decoration: none;
    color: rgb(255, 255, 255) !important;
    background-color: rgb(49, 83, 151);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
    border: 2px solid rgb(49, 83, 151);
    height: 38px;
    line-height: 1;
    font-size: 16px;
}

.navbar-desktop__contact-link:hover {
    background-color: rgb(40, 41, 49);
    border-color: rgb(40, 41, 49);
}

.navbar-desktop__search-container {}

.navbar-desktop__search-button {
    height: 38px;
    width: 38px;
    border-radius: 5px;
    outline: none;
    margin: 0px 0px 0px 10px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(49, 83, 151);
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
    border: 2px solid rgb(49, 83, 151);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 5px;
    padding: 1px 6px;
}

.navbar-desktop__search-button:hover {
    background-color: rgb(40, 41, 49);
    border-color: rgb(40, 41, 49);

}

.navbar-desktop__search-button img {
    padding: 4px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
}

/* MENU MOBILE */

.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: 900;
    transition: all 0.2s ease-in-out;
}

.background-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(4, 4, 15, 0.4);
    z-index: 899;
    opacity: 0;
    display: none;
    transition: all 0.2s ease-in-out;

}

.background-visibility {
    opacity: 1;
    display: block;
}

.menu-mobile.open-overlay {
    width: 100%;
}

@media (min-width: 768px) {

    .menu-mobile.open-overlay {
        width: 350px;
    }

}

.menu-mobile__close {
    height: 70px;
    width: 70px;
    position: absolute;
    top: 0px;
    right: 0px;
    border: none;
    padding: 0px;
    margin: 0px;
    background-color: transparent;
    cursor: pointer;
    z-index: 15;
}

.menu-mobile__close svg {
    height: 23px;
}

.menu-mobile__body {
    background-color: rgb(0, 0, 0);
    height: 100%;
    width: 100%;
    margin: 0px;
    padding-top: 70px;
    padding-bottom: 20px;
    overflow-y: auto;
}

.menu-mobile__content {
    height: 100%;
    overflow-y: auto;
}

.menu-mobile__links {
    display: flex;
    flex-flow: column;
}

.menu-mobile__links:first-child {
    border-bottom: 1px solid rgb(255, 255, 255);
}

.menu-mobile__link {
    display: block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    padding: 15px 10px;
    background-color: transparent;
    border: none;
    margin: 0px;
    cursor: pointer;
    outline: none;
}

/* GIANT MENU TOOLS*/

.arrow-tools,
.arrow-jobs {
    transition: transform 0.3s ease;
}

.arrow-tools.rotated {
    transform: rotate(180deg);
}

.arrow-jobs.rotated {
    transform: rotate(180deg);
}

.navbar-desktop__link.navbar-desktop__link-secondary.grayed {
    color: rgb(192, 197, 206);
}

.navbar-desktop__link.navbar-desktop__link-secondary.grayed svg path {
    fill: rgb(192, 197, 206);
}


.menu-jobs {
    padding: 20px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0px;
    right: 0px;
    top: 70px;
    margin: 0px;
    z-index: 150;
    box-shadow: rgb(227, 228, 228) 0px 12px 10px;
    display: none;
    opacity: 0;
    transition: 300ms linear;
}

.menu-jobs__block {
    margin-bottom: 20px;
}

.menu-jobs__block:last-child {
    margin-bottom: 0;
}

.menu-jobs__title {
    margin-top: 10px;
    padding: 5px 10px;
    display: block;
    color: rgb(40, 41, 49);
    width: max-content;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.menu-jobs__title:hover {
    background-color: rgb(231, 51, 51);
    color: rgb(255, 255, 255);
}

.menu-jobs__title.selected {
    background-color: rgb(231, 51, 51);
    color: rgb(255, 255, 255);
}

.menu-jobs__block-title {
    font-size: 16px;
    color: rgb(137, 137, 137);
    transition: background-color 0.2s, color 0.2s;
    width: max-content;
    border-radius: 50px;
    padding: 5px 10px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
    margin-bottom: 10px;
}


.menu-jobs__block-description {
    opacity: 0;
    height: 0px;
    overflow: hidden;
    font-size: 14px;
    color: rgb(137, 137, 137);
    transition: color 0.2s, opacity 0.2s ease-out;
    white-space: pre-line;
    margin-bottom: 0;
    margin-left: 20px;
}


.menu-jobs__block-title.selected {
    background-color: rgb(231, 51, 51);
    color: rgb(255, 255, 255);
}

.menu-jobs__block-description.selected {
    opacity: 1;
    height: auto;
}

.menu-jobs__tag {
    display: none;
}

.menu-jobs__text {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: rgb(40, 41, 49);
}



.menu-tools {
    padding: 20px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0px;
    right: 0px;
    top: 70px;
    margin: 0px;
    z-index: 150;
    box-shadow: rgb(227, 228, 228) 0px 12px 10px;
    display: none;
    opacity: 0;
    transition: 300ms linear;
}

.menu-open {
    opacity: 1;
    display: block;
}

.menu-tools__container {
    display: flex;
    flex-flow: row;
    -webkit-box-pack: center;
    justify-content: center;
}

.menu-tools__column {
    flex: 1 1 0%;
    padding: 10px 20px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    border-right: 1px solid rgb(219, 219, 219);
}

.menu-tools__column:last-child {
    flex: 1 1 0%;
    padding: 10px 20px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    border-right: none;
}

.menu-tools__link {
    line-height: 1;
    outline: none;
    border: none;
    margin: 0px;
    padding: 5px 10px;
    display: block;
    color: rgb(40, 41, 49);
    width: max-content;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    font-size: 16px
}

.menu-tools__link:last-child {
    margin-bottom: 0;
}

.menu-tools__link:hover {
    background-color: rgb(231, 51, 51);
    color: rgb(255, 255, 255);
}

.menu-tools__link-more {
    font-weight: 700;
}

.menu-tools__button {
    outline: none;
    border: none;
    margin: auto 0px 0px;
    text-decoration: none;
    color: rgb(255, 255, 255) !important;
    background-color: rgb(49, 83, 151);
    border-radius: 10px;
    width: 100%;
    height: 50px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0px 5px;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1;
    font-size: 16px;
}

.menu-tools__button:hover {
    background-color: rgb(40, 41, 49);
}

.menu-tools__column:nth-child(2n) .menu-tools__button {
    background-color: rgb(40, 41, 49);
}

.menu-tools__column:nth-child(2n) .menu-tools__button:hover {
    background-color: rgb(49, 83, 151);
}

.menu-tools__text {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: rgb(40, 41, 49);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* MENU JOBS */

.menu-jobs__container {
    display: flex;
    flex-flow: row;
    max-width: 1300px;
    margin: 0px auto;
}

.menu-jobs__column {
    flex: 1 1 0%;
    padding: 10px 20px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    border-right: 1px solid rgb(219, 219, 219);
}

.menu-jobs__column.menu-jobs__double-column {
    flex: 2 1 0%;
    max-width: none;
}

.menu-jobs__column:last-child {
    flex: 1 1 0%;
    padding: 10px 20px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    border-right: none;
}

.menu-jobs__link {
    font-weight: 700;
    line-height: 1;
    outline: none;
    border: none;
    margin: 0px;
    padding: 5px 10px;
    display: block;
    color: rgb(40, 41, 49);
    width: max-content;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
}

.menu-jobs__link:last-child {
    margin-bottom: 0;
}

.menu-jobs__link:hover {
    background-color: rgb(231, 51, 51);
    color: rgb(255, 255, 255);
}

.menu-jobs__link-more {
    font-weight: 700;
}

.menu-jobs__button {
    outline: none;
    border: none;
    margin: auto 0px 0px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(49, 83, 151);
    border-radius: 10px;
    width: 100%;
    height: 50px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0px 5px;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1;
}





@media (min-width: 768px) {

    .navbar-mobile__menu {
        margin-right: 0;
    }

    .navbar-mobile__buttons {
        align-items: normal;
        column-gap: 0px;
    }

    .navbar-mobile__search-button {
        border-radius: 0px;
        width: 70px;
        height: 100%;
    }

    .navbar-mobile__button {
        background-color: rgb(0, 0, 0);
        width: 70px;
        height: 100%;
        border-radius: 0px;
    }

    .navbar-mobile__sider-social-links {
        display: flex;
    }


    .navbar-mobile__links {
        display: none;
    }

    .navbar-desktop__description {
        display: block;
    }

}

@media (min-width: 1099.98px) {

    .navbar-mobile__menu {
        display: none;
    }

    .navbar-desktop__menu-secondary {
        display: flex;
    }

    .navbar-desktop__menu {
        display: flex;
    }

    .background-overlay {
        background-color: rgba(255, 255, 255, 0.8);
        z-index: 99;

    }

}

/***** FOOTER *****/


.footer {
    background-color: rgb(218, 218, 218);
    padding: 60px 20px;
    font-family: Nunito, sans-serif !important;
}

.footer__container {
    max-width: 1000px;
    margin: 0px auto;
}

.footer__primary {
    display: flex;
    flex-direction: column;
}

.footer__secondary {
    display: flex;
    flex-direction: column;
    margin: 0px;
    border-top: 1px solid rgb(167, 167, 167);
    padding-top: 20px;

}

.footer__column {
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px 0px 20px;
}

.footer__title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: rgb(40, 41, 49);
    font-weight: 700;

}

.footer__title:not(:last-child) {
    margin-bottom: 10px;
}

.footer__link {
    padding: 8px 0px;
    text-decoration: none;
    color: rgb(40, 41, 49);
}

.footer__link:hover {
    text-decoration: underline;
    color: inherit;
}

@media screen and (min-width: 576px) {

    .footer__secondary {
        flex-direction: row;
        -webkit-box-pack: center;
        justify-content: center;
    }

    .footer__secondary .footer__link {
        margin: 0px 5px;
    }
}

@media screen and (min-width: 768px) {

    .footer__primary {
        flex-flow: wrap;
    }

    .footer__primary .footer__column {
        flex: 1 1 50%;
    }

}

@media screen and (min-width: 992px) {
    .footer__primary {
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .footer__primary .footer__column {
        flex: initial;
    }
}