@font-face {
    font-family: 'Libre Franklin';
    src: url('/wp-content/uploads/fonts/Libre_Franklin/LibreFranklin-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Franklin';
    src: url('/wp-content/uploads/fonts/Libre_Franklin/LibreFranklin-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}


:root {
    --color-black: #000000;
    --color-white: #FFF;
    --color-purple: #9E307B;
    --color-green: #AEC736;
    --color-orange: #EE8C22;
    --color-pink: #C25692;
    --color-grey: #58595A;
}

* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}


ul, ol {
    list-style: none;
    padding-left: 0;
}

strong {
    font-weight: 650;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
    border: none;
}

.btn {
    display: inline-flex;
    font-size: clamp(14px, 2.7vw, 20px);
    line-height: 1.3;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 16px 31px;
    text-decoration: none;
    transition: linear .15s;
    cursor: pointer;
}

.btn--purple {
    background: var(--color-purple);
    color: var(--color-white);
}

.btn--purple:hover {
    background: var(--color-grey);
}

.btn--green {
    background: var(--color-white);
    color: var(--color-green);
}

.btn--green:hover {
    background: var(--color-grey);
    color: var(--color-white);
}

.btn--orange {
    background: var(--color-white);
    color: var(--color-orange);
}

.btn--orange:hover {
    background: var(--color-grey);
    color: var(--color-white);
}

.grecaptcha-badge {
    display: none !important;
}

html, body {
    color: var(--color-grey);
    font-family: 'Libre Franklin', sans-serif;
    font-style: normal;
    font-weight: 400;
}

.header__navigation {
    padding: clamp(40px, 7vw, 91px) 0 clamp(25px, 7vw, 47px) 0;
}

.header__navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header__navigation .header__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 clamp(50px, 7vw, 97px) 0;
}

.header__navigation .header__logo img {
    max-width: 90%;
}

.header__navigation .header__menu {
    width: calc(100% - clamp(85px, 7vw, 150px));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__navigation .header__menu .header__item a {
    color: var(--color-grey);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
}

.header__navigation .header__menu .header__item a::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -8px;
    left: 0;
    background: var(--color-grey);
    transition: linear .3s;
}

.header__navigation .header__menu .header__item a:hover::after {
    width: 100%;
}

.header__navigation .header__menu .header__item a.active {
    color: var(--color-purple);
    font-weight: 650;
}

.header__navigation .header__menu .header__item a.active::after {
    width: 100%;
    background: var(--color-purple)
}

.header__navigation .btn--menu {
    display: none;
}

.header__navigation .btn--menu {
    width: 40px;
    height: 40px;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    background: none;
    padding: 0;
    cursor: pointer;
    border: none;
    display: none;
}

.header__navigation .btn--menu .bar {
    width: 100%;
    height: 3px;
    background: var(--color-purple);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    transition: linear .15s;
}

.header__navigation .btn--menu .bar:nth-child(1) {
}

.header__navigation .btn--menu .bar:nth-child(2) {
    top: 9px;
}

.header__navigation .btn--menu .bar:nth-child(3) {
    top: 18px;
}

.header__navigation .btn--menu .btn--title {
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-black);
    display: block;
}

.header__navigation .btn--menu:hover .bar {
    background: var(--color-grey);
}

@media all and (max-width: 1000px) {
    .header__navigation .header__menu {
        display: none;
    }

    .header__navigation .btn--menu {
        display: flex;
    }
}


.modal--menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 9999;
    display: none;
}

.modal--menu.is-open {
    display: block;
}

.modal--menu .modal__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 clamp(14px, 5%, 25px);
}

.modal--menu .modal__logo {
    height: 40%;
    display: block;
}

.modal--menu .modal__logo img {
    height: 100%;
}

.modal--menu .btn--close {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    background: none;
    padding: 0;
    cursor: pointer;
    border: none;
}

.modal--menu .btn--close .bar {
    width: 100%;
    height: 3px;
    background: var(--color-purple);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    transition: linear .15s;

}

.modal--menu .btn--close .bar:nth-child(1) {
    transform: translate(0%, 12px) rotate(45deg);
}

.modal--menu .btn--close .bar:nth-child(2) {
    transform: translate(0%, 12px) rotate(-45deg);
}

.modal--menu .btn--close .btn--title {
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-black);
    display: block;
}

.modal--menu .btn--close:hover .bar {
    background: var(--color-grey);
}

.modal--menu .modal__content {
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 50px 0 50px 0;
}

.modal--menu .modal__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
    flex-shrink: 0;
}

.modal--menu .modal__list__item {
    width: 100%;
    text-align: center;
}

.modal--menu .modal__link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    text-transform: uppercase;

}

.modal--menu .modal__list__item--notices {
    margin-top: 12px;

}

.modal--menu .modal__list__item--notices .modal__link {
    font-size: 16px;
}

.modal--menu .modal__list__item--free {
    margin: 15px 0;
}

.modal--menu .modal__list__item--free .modal__link {
    background: var(--color-green);
    color: var(--color-white);
    font-size: 18px
}

@media (max-width: 500px) {
    .modal--menu .modal__list__item--free .modal__link {
        width: auto;
        display: inline-block;
    }
}


.modal--menu .network__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 0 0;
    flex-shrink: 0;
}

.modal--menu .network__list .network__item {
}

.modal--menu .network__list .network__item a {
    width: 32px;
    height: 32Px;
    background: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: linear .15s;
}

.modal--menu .network__list .network__item a svg * {
    fill: var(--color-white);
}

.modal--menu .network__list .network__item a.network__link--facebook svg {
    width: 10Px;
}

.modal--menu .network__list .network__item a.network__link--instagram svg {
    width: 16Px;
}

.footer__navigation {
    background: #F2F2F2;
    padding: 62px 0 50px 0;
}

.footer__navigation .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}

.footer__navigation .container > .footer__column:nth-child(1) {
    flex: 0 0 25%;
}

.footer__navigation .container > .footer__column:nth-child(2) {
    flex: 0 0 75%;
}

.footer__navigation .footer__logo {
    width: 100%;
    max-width: 337px;
}

.footer__navigation .footer__maisons {
    max-width: 75%;
}
.footer__navigation .footer__maisons img{
    max-width: 100%;
}
.footer__navigation .footer__logo img {
    max-width: 100%;
}

.footer__navigation .footer__menu {
    width: calc(100% / 6 * 4);

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__navigation .footer__menu .footer__column {
    flex: 1;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 25px;
}

.footer__navigation .footer__menu .footer__column:nth-child(1) {
    flex: 0.7;
}

.footer__navigation .footer__menu .footer__column:nth-child(3) {
    flex: 1.7;
}

.footer__navigation .footer__txt {
    font-size: 12px;
    margin: 61px 0 10px 0;
}

.footer__navigation .footer__menu .footer__link {
    display: inline-block;
    color: var(--color-grey);
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

.footer__navigation .footer__menu .footer__link::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background: var(--color-grey);
    transition: linear .15s;
}

.footer__navigation .footer__menu .footer__link:hover::after {
    width: 100%;
}

.footer__navigation .footer__menu .footer__link:nth-child(2) {
    margin-top: 42px;
}

.footer__navigation .footer__submenu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top:17px;
}
.footer__navigation .footer__submenu li{}
.footer__navigation .footer__submenu li a{
    color: var(--color-grey);
    font-size: 12px;
    line-height: 1.3;
    text-decoration: none;
}
.footer__navigation .footer__submenu li a:hover {
    color:var(--color-purple);
    font-weight: 650;
}
.footer__navigation .footer__menu .network__list {
    margin-top: 20px;
}

@media all and (max-width: 1150px) {
    .footer__navigation .footer__menu .footer__column:nth-child(1) {
        flex: 0 0 calc(40% - 20px);
        order: 1;
    }

    .footer__navigation .footer__menu .footer__column:nth-child(2) {
        flex: 0 0 calc(40% - 20px);
        order: 3;
    }

    .footer__navigation .footer__menu .footer__column:nth-child(3) {
        flex: 0 0 calc(60% - 20px);
        order: 2;
    }

    .footer__navigation .footer__menu .footer__column:nth-child(4) {
        flex: 0 0 calc(60% - 20px);
        order: 4;
    }
}

@media all and (max-width: 900px) {
    .footer__navigation .container {
        gap: 50px;
        flex-wrap: wrap;
    }

    .footer__navigation .container > .footer__column:nth-child(1) {
        flex: 0 0 100%;
        order: initial;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer__navigation .footer__menu {
        flex: 0 0 100%;
        order: initial;
        gap:0;
    }

    .footer__navigation .footer__txt{
        text-align: center;
        line-height: 1.3;
    }

    .footer__navigation .footer__submenu {
        margin-top:10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .footer__navigation .footer__submenu li{}
    .footer__navigation .footer__submenu li a{
        width: 100%;
        text-align: center;
        font-size:14px;
        line-height: 1.5;
    }

    .footer__navigation .footer__menu .footer__column {
        padding-top:15px;
    }
    .footer__navigation .footer__menu .footer__link:nth-child(2){
        margin-top:20px;
    }
    .footer__navigation .footer__menu .footer__column:nth-child(1),
    .footer__navigation .footer__menu .footer__column:nth-child(2),
    .footer__navigation .footer__menu .footer__column:nth-child(3),
    .footer__navigation .footer__menu .footer__column:nth-child(4) {
        flex: 0 0 100%;
        order: initial;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .footer__navigation .footer__menu .footer__link {
        text-align: center;
    }
}

/** Section **/
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(14px, 5%, 25px);
}

.section .section__title {
    font-size: clamp(20px, 2.7vw, 30px);
    line-height: 1.3;
    font-weight: 650;
    text-transform: uppercase;
}

.section .section__introduction {
    font-size: clamp(16px, 2.7vw, 18px);
    line-height: 1.3;
    font-weight: 400;
}

.section .section__introduction a {
    color: var(--color-black);
    text-decoration: none;
}

.section .section__introduction a:hover {
    text-decoration: underline;
}

.network__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.network__list .network__link {
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: linear .15s;
}

.network__list .network__link svg * {
    fill: var(--color-purple);
    transition: linear .15s;
}

.network__list .network__link--facebook svg {
    width: 10px;
}

.network__list .network__link--instagram svg {
    width: 14px;
}

.network__list .network__link:hover {
    background: var(--color-purple);
}

.network__list .network__link:hover svg * {
    fill: var(--color-white);
}

/** Breadcrumbs **/
.breadcrumb {
    margin: 26px 0 20px 0;
}

.breadcrumb .container {
}

.breadcrumb .breadcrumb__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.breadcrumb .breadcrumb__list .breadcrumb__item {
}

.breadcrumb .breadcrumb__list .breadcrumb__item:not(:last-child)::after {
    content: '/';
    display: inline-block;
    width: 6px;
    margin: 0 3px;
    font-size: clamp(10px, 5vw, 12px);
}

.breadcrumb .breadcrumb__list .breadcrumb__item span {
    font-size: clamp(10px, 5vw, 12px);
}

.breadcrumb .breadcrumb__list .breadcrumb__link {
    color: var(--color-black);
    text-decoration: none;
    cursor: pointer;
    transition: linear .15s;
}

.breadcrumb .breadcrumb__list .breadcrumb__link:hover {
    text-decoration: underline;
}

/** Formulaires **/

.form {
    width: 100%;
    margin: 0 auto;
    max-width: 827px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

form .form__row {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

form .form__group {
    width: calc(50% - clamp(20px, 2.7vw, 50px));
    margin-bottom: 50px;
}

form .form__group.form__group--full {
    width: 100%;
}

form label {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;

    z-index: 10;
    line-height: 50px;
    pointer-events: none;
    transition: linear 0.3s;

    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    color: var(--color-grey);
}

form label span {
    margin: 0 0 0 3px;
}

form label.focused {
    color: var(--color-purple);
    font-size: 14px;
    line-height: 20px;
    top: -15px;
    z-index: 100;
    pointer-events: none;
}

form input {
    width: 100%;
    border: none;
    padding: 0;
    border-bottom: 2px solid var(--color-purple);
    z-index: 5;
    line-height: 50px;
    outline: none !important;
    box-shadow: none !important;
    appearance: none !important;
    border-radius: 0;
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
}

form textarea {
    width: 100%;
    height: 175px;
    resize: none;
    border: none;
    padding: 14px 0 0 0;
    border-bottom: 2px solid var(--color-purple);
    z-index: 5;
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    outline: none !important;
    box-shadow: none !important;
    appearance: none !important;
    border-radius: 0;
}

form .form__actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

form .wpcf7-spinner {
    display: none;
}

form .wpcf7-form-control-wrap {
    width: 100%;
    height: 100%;
    display: block;
}

form .wpcf7-not-valid-tip {
    width: 100%;
    font-size: 14px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    text-align: right;
}

form .wpcf7-response-output {
    border: none !important;
    width: 100% !important;
    text-align: center !important;
    margin: 20px 0 0 0 !important;
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    line-height: 1.5;
}

form .btn--submit {
    display: inline;
    width: auto;
    line-height: 1.5;
    color: var(--color-white);
    background: var(--color-purple);
    text-decoration: none;
    border: 1px solid var(--color-purple);
    font-size: clamp(18px, 3vw, 23px);
    font-weight: 300;
    padding: 16px 46px;
    border-radius: 50px;
    transition: linear .15s;
    text-align: center;
    cursor: pointer;
}

form .btn--submit:hover {
    background: var(--color-grey);
}

@media (max-width: 500px) {
    form .btn--submit {
        width: 100%;
    }
}


.form__copyrights {
    margin: 23px auto 0 auto;
    width: 100%;
    max-width: 790px;
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 300;
}

@media all and (max-width: 750px) {
    .form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .form .form__column {
        width: 100%;
    }

    .form .form__row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .form .form__group {
        width: 100%;
    }
}

@media all and (max-width: 500px) {
    form input {
        width: 100%;
    }

    form textarea {
        width: 100%;
    }

    .form .btn--submit {
        width: 100%;
    }
}


.form .dropdown {
    width: 100%;
}

.form .select-display {
    display: none;
}

.form .dropdown .dropdown__button {
    background: var(--color-white);
    width: 100%;
    line-height: 50px;
    text-align: left;
    z-index: 15;

    border: none;
    border-bottom: 2px solid var(--color-purple);

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    color: var(--color-grey);
}

.form .dropdown .dropdown__button span {
    width: calc(100% - 50px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.form .dropdown.active .dropdown__button svg {
    transform: rotate(180deg);
}

.form .dropdown .dropdown__button svg {
    width: 20px;
    height: 20px;
}

.form .dropdown .dropdown__content {
    display: none;
}

.form .dropdown.active .dropdown__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;

    background: var(--color-white);

    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;


    padding: 0;

    z-index: 101;
}

.form .dropdown .dropdown__content .dropdown__item {
    width: 100%;
    text-align: left;
    padding: 0 10px;

    border: none;
    background: none;
    cursor: pointer;

    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    line-height: 1.5;
}

.form .dropdown .dropdown__content .dropdown__item:hover {
    color: var(--color-purple);
}
