
:root {
    --color-white: #fff;
    --color-black: #000;
    --color-yellow: #FDCD0C;
    --color-blue: #27235D;
    --color-grey: #424D58;
    --color-grey--light: #A9B5C1;
    --color-grey--border: #E6E6E6;

}


/**
 * NAVIGATION
 */
.block-navigation::before {
    z-index: 750 !important;
}

.block-navigation .container__row {
    height: 100%;
    position: relative;
    margin-right: 5px;
}

.block-navigation .container__row::before {
    display: none;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 100px;
    background: #fff;
    transform-origin: bottom left;
    transform: rotate(-65deg);
    z-index: 500;
}


/* Colonne de gauche */
.block-navigation .container__row .navigation__list:nth-child(1) {
    height: 30px;
    background: var(--color-yellow);
    padding-right: 40px;
    padding-left: 25px;
    margin-right: -50px;
}

.block-navigation .container__row .navigation__list:nth-child(1) .navigation__link {
    color: var(--color-white);
}

.block-navigation .container__row .navigation__list:nth-child(1) .navigation__link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Colonne de droite */
.block-navigation .container__row .navigation__list:nth-child(2) {
    height: calc(100% - 30px);
}

/* Partie recherche à droite */
.block-navigation .navigation .navigation__list--search {
    height: calc(100% - 30px) !important;
    margin-top: 30px !important;
}

.block-navigation .navigation .navigation__list--search svg {
    width: 18px;
    height: 18px;
}

.block-navigation .navigation .navigation__list--search svg * {
    fill: var(--color-white);
    padding: 0;
    margin: 0;
}


.block-navigation .navigation .navigation__list--search .btn--redirect {
    padding: 0 10px;
    margin: 0 0 0 -15px !important;
    line-height: 30px !important;
}

/**
 * Outil de recherche - Introduction
 */
.acf-outil-introduction {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    margin: 100px 0 50px 0;
}

.acf-outil-introduction .acf-outil-introduction__header .section__text {
    text-align: center;
}

.acf-outil-introduction .section__subtitle {
    text-align: center;
}

.acf-outil-introduction .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.acf-outil-introduction .btn-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acf-outil-introduction .btn-actions .btn--comparateur {
    display: inline-block;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
    padding: 0 15px;
    margin: 0 10px;

    background: var(--color-yellow);
    border: 2px solid var(--color-yellow);
    color: var(--color-white);
}

.acf-outil-introduction .btn-actions .btn--comparateur:hover {
    background: var(--color-white);
    border-color: var(--color-yellow);
    color: var(--color-yellow);
    text-decoration: none;
}

.acf-outil-introduction .btn-actions .btn--more {
    display: inline-block;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
    padding: 0 15px;
    margin: 0 10px;

    background: var(--color-blue);
    border: 2px solid var(--color-blue);
    color: var(--color-white);
}

.acf-outil-introduction .btn-actions .btn--more:hover {
    background: var(--color-white);
    border-color: var(--color-blue);
    color: var(--color-blue);
    text-decoration: none;
}


@media all and (max-width: 500px) {
    .acf-outil-introduction .btn-actions {
        flex-direction: column;
    }

    .acf-outil-introduction .btn-actions .btn--comparateur {
        margin: 0;
        width: 100%;
    }

    .acf-outil-introduction .btn-actions .btn--more {
        width: 100%;
        margin: 10px 0 0 0;
    }
}

/**
 * Outil de recherche - Gauche
 */
.acf-outil-left {
    padding: 100px 0 0 0
}

.section.acf-outil-left .container {
    display: flex;
    align-items: initial;
    justify-content: space-between;
}

.section.acf-outil-left .container__column {
    width: calc(50% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
}


.acf-outil-left .figure--large {
    height: 100%;
    margin: 0;
    padding: 0;
}

.acf-outil-left .block__subtitle {
    color: #FDCD0C;
    font-size: 20px;
    font-style: italic;
    font-family: "Arial MT Std", Helvetica, sans-serif;
    margin: 0 0 -8px 0;
}

.acf-outil-left .block__title {
    color: #27235D;
    font-size: 24px;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
}


@media all and (max-width: 1000px) {
    .acf-outil-left {
        padding: 50px 0 0 0
    }

    .section.acf-outil-left .container {
        flex-direction: column;
    }

    .section.acf-outil-left .container__column {
        width: 100%;
    }

    .acf-outil-left .figure--large {
        height: 400px;
        margin: 25px 0 0 0;
    }
}

/**
 * Outil de recherche - Droite
 */
.acf-outil-right {
    padding: 125px 0 0 0;
}

.section.acf-outil-right .container {
    display: flex;
    align-items: initial;
    justify-content: space-between;
}

.section.acf-outil-right .container__column {
    width: calc(50% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
}


.acf-outil-right .figure--large {
    height: 100%;
    margin: 0;
    padding: 0;
}

.section.acf-outil-right .container__column:nth-child(1) {
    position: relative;
}

.section.acf-outil-right .container__column:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    background: var(--color-yellow);
    width: 100%;
    height: 100%;
}

.acf-outil-right .block__subtitle {
    color: #FDCD0C;
    font-size: 22px;
    font-style: italic;
    font-family: "Arial MT Std", Helvetica, sans-serif;
    margin: 0 0 -8px 0;
}

.acf-outil-right .block__title {
    color: #27235D;
    font-size: 24px;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
}

@media all and (max-width: 1000px) {
    .acf-outil-right {
        padding: 75px 0 0 0
    }

    .section.acf-outil-right .container__column:nth-child(1)::before {
        display: none;
    }

    .section.acf-outil-right .container {
        flex-direction: column-reverse;
    }

    .section.acf-outil-right .container__column {
        width: 100%;
    }

    .acf-outil-right .figure--large {
        height: 400px;
        margin: 25px 0 0 0;
    }
}

/**
* Outil de recherche - Comparateur
   */
.form-outils {
    margin: 0 0 100px 0;
    padding: 0 15px 0 0;
    position: relative;
}

.form-outils::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 125px;
    background: var(--color-white);
    width: 100vh;
    height: 40px;
    z-index: 100;
}

.form-outils::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -75px;
    background: var(--color-white);
    width: 200px;
    height: 40px;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    z-index: 100;
}

.form-outils__introduction {
    font-size: 14px;
    padding: 25px 0 25px 0;
}

.form-outils__title {
    background: var(--color-white);
    color: var(--color-blue);
    display: inline-block;
    padding: 0 25px 0 0;
    margin: 0;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    font-weight: 700;
    position: relative;
    z-index: 500;
}

.form-outils fieldset {
    padding: 0 0 50px 0;
}

.form-outils .form-title {
    color: var(--color-blue);
    font-size: 18px;
    font-weight: 700;
}

.form-outils .form-subtitle {
    color: var(--color-blue);
    font-size: 16px;
    font-style: italic;
    margin: -8px 0 8px 0;
}

.form-outils .form-group {
    margin: 5px 0 35px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
}

.form-outils .form-group label {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
}

.form-outils .form-group input {
    width: 100%;
    height: 35px;
    padding: 0 10px;
}

.form-outils .form-group select {
    width: 100%;
    height: 35px;
    border: none;
    padding: 0 10px;
    appearance: none;
    cursor: pointer;
}

.form-outils .form-group--checkbox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form-outils .form-group--checkbox input {
    display: none;
}


.form-outils .form-group--checkbox label:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-white);
}

.form-outils .form-group--checkbox label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
}

.form-outils .form-group--checkbox label:hover:after,
.form-outils .form-group--checkbox input:checked ~ label:after {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    top: 3px;
    left: 3px;
    background: var(--color-blue);
}


.form-outils .form-group--checkbox span {
}

.form-outils .form-group--checkbox svg {
    width: 14px;
    height: 14px;
    margin: 0 5px;
}

.form-outils .form-poids-max {
    margin-top: 13px;
}

.form-outils .fieldset-infos {
    font-size: 14px;
}

.form-outils .fieldset-infos span {
    font-weight: 700;
}

.form-outils .form-group .unity {
    background: var(--color-blue);
    position: absolute;
    bottom: 0;
    right: 0;
    height: 35px;
    width: 35px;
    color: var(--color-white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-outils .form-group .exemple {
    position: absolute;
    top: 100%;
    right: 0;
    font-size: 13px;
    color: var(--color-black);
    font-style: italic;
    padding: 3px 5px 0 0;

}

.form-outils .form-group .arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-outils .form-group .arrow svg {
    width: 20px;
    height: 20px;
    fill: var(--color-blue);
}

.form-outils .btn--reset {
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    color: var(--color-blue);
    font-size: 14px;
    text-decoration: underline;
    margin: 15px 0 25px 0;
}

.form-outils .btn--reset:hover {
    color: var(--color-black);
}

.form-outils__submit {
    width: 275px;
    display: block;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
    padding: 0 15px;
    margin: 0 auto 0 auto;

    background: var(--color-blue);
    border: 2px solid var(--color-blue);
    color: var(--color-white);
}

.form-outils__submit:hover {
    background: var(--color-white);
    border-color: var(--color-blue);
    color: var(--color-blue);
    text-decoration: none;
}

.form-outils__infos {
    width: 300px;
    margin: 15px auto;
    color: var(--color-white);
    font-size: 14px;
    text-align: justify;
}

.form-outils__header {
    width: 100%;
}

.empty-text {
    padding: 0 0 0 40px;
}

.form-outils[data-select="0"] .fieldset-terrassement {
    display: none;
}

.form-outils[data-select="0"] .fieldset-manutention {
    display: none;
}

.form-outils[data-select="0"] .fieldset-others {
    display: none;
}

.form-outils[data-select="0"] .fieldset-controls {
    display: none;
}

.form-outils[data-select="1"] .fieldset-terrassement {
    display: block;
}

.form-outils[data-select="1"] .fieldset-manutention {
    display: block;
}

.form-outils[data-select="1"] .fieldset-others {
    display: block;
}

.form-outils[data-select="1"] .fieldset-controls {
    display: block;
}


.form-outils[data-select="2"] .fieldset-terrassement {
    display: none;
}

.form-outils[data-select="2"] .fieldset-manutention {
    display: block;
}

.form-outils[data-select="2"] .fieldset-others {
    display: block;
}

.form-outils[data-select="2"] .fieldset-controls {
    display: block;
}

.form-outils[data-select="3"] .fieldset-terrassement {
    display: none;
}

.form-outils[data-select="3"] .fieldset-manutention {
    display: block;
}

.form-outils[data-select="3"] .fieldset-others {
    display: block;
}

.form-outils[data-select="3"] .fieldset-controls {
    display: block;
}

.form-outils[data-select="4"] .fieldset-terrassement {
    display: none;
}

.form-outils[data-select="4"] .fieldset-manutention {
    display: none;
}

.form-outils[data-select="4"] .fieldset-others {
    display: block;
}

.form-outils[data-select="4"] .fieldset-controls {
    display: block;
}

.form-outils[data-select="5"] .fieldset-terrassement {
    display: none;
}

.form-outils[data-select="5"] .fieldset-manutention {
    display: none;
}

.form-outils[data-select="5"] .fieldset-others {
    display: none;
}

.form-outils[data-select="5"] .fieldset-controls {
    display: block;
}


.form-outils[data-select="6"] .fieldset-terrassement {
    display: none;
}

.form-outils[data-select="6"] .fieldset-manutention {
    display: block;
}

.form-outils[data-select="6"] .fieldset-others {
    display: block;
}

.form-outils[data-select="6"] .fieldset-controls {
    display: block;
}


@media all and (max-width: 1000px) {
    .form-outils {
        padding: 0 25px;
        max-width: 690px;
        margin: 0 auto;
    }

    .form-outils__header {
        width: 100%;
        max-width: 690px;
        margin: 0 auto;
        padding: 0 25px;
    }
}

/**
 * Outil de recherche
 */
.outil-recherche {
    margin: 0;
    padding: 100px 0 0 0;
    position: relative;
}

.outil-recherche .container {
    display: flex;
    position: relative;
    z-index: 500;

}

.outil-recherche .container::before {
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 25%;
    background: var(--color-yellow);
}

.outil-recherche .container__column:nth-child(1) {
    background: var(--color-yellow);
    width: 350px;
    position: relative;
    z-index: 500;
}

.outil-recherche .container__column:nth-child(2) {
    width: calc(100% - 350px);
    background: var(--color-white);
    position: relative;
    z-index: 500;
}

.outil-recherche .results-title {
    padding-left: 40px;
    margin: 0 0 50px 0;
}

.outil-recherche .results-title span {
    color: var(--color-yellow);
}

.outil-recherche .results-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 40px;
}

.outil-recherche .results-list li {
    list-style: none;
}


@media all and (min-width: 1200px) {
    .outil-recherche .container {
        max-width: 1400px;
    }
}

@media all and (max-width: 1000px) {
    .outil-recherche .container {
        flex-direction: column;
    }

    .outil-recherche .container::before {
        display: none;
    }

    .outil-recherche .container__column:nth-child(1) {
        width: 100%;
        position: relative;
        padding: 0 0 50px 0;
    }

    .outil-recherche .container__column:nth-child(1):before {
        content: '';
        position: absolute;
        left: -15px;
        top: 0;
        width: 100vw;
        height: 100%;
        background: var(--color-yellow);
    }

    .outil-recherche .container__column:nth-child(2) {
        width: 100%;
    }

    .outil-recherche .results-title {
        margin: 75px 0 50px 0;
        padding-left: 0;
        text-align: center;
    }

    .outil-recherche .results-list {
        padding-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .outil-recherche .container {
        max-width: 100%;
    }

    .form-outils__infos {
        width: calc(100% - 50px);

    }
}

/**
 * Outil de recherche - Pagination
 */
.results-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 100px 0;
}

.results-pagination__counter {
    width: 100%;
    text-align: center;
    padding: 50px 40px 0 40px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 36px;
}

.results-pagination__counter span {
    color: var(--color-blue);
    font-weight: 700;
    font-size: 16px;
}

.results-pagination .page-numbers {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 36px;
    color: var(--color-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-pagination .page-numbers.current {
    background: var(--color-yellow);
    color: var(--color-white);
}

.results-pagination .page-numbers.prev,
.results-pagination .page-numbers.next {
    width: 125px;
    height: 30px;
    font-size: 14px;
    margin: 0 10px;
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 0;
}

.page-id-1098 .block-contact {
    margin: 0;
}

@media all and (max-width: 1000px) {
    .results-pagination {
        margin: 0 0 100px 0;
    }

}

@media all and (max-width: 750px) {
    .results-pagination__counter {
        padding: 50px 0 0 0;
    }
}

.espace-pub {
    width: 100%;

    margin: 0 0 50px 0;
    padding: 0 0 0 40px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.espace-pub .espace-pub__header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.espace-pub .espace-pub__subtitle {
    line-height: 35px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    color: #FDCD0C;
    font-size: 20px;
    font-style: italic;
    font-family: "Arial MT Std", Helvetica, sans-serif;
    margin: 0 0 -8px 0;
}

.espace-pub .espace-pub__title {
    line-height: 40px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 -10px 0;
    padding: 0;
    color: #27235D;
    font-size: 24px;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
}

.espace-pub .espace-pub__text {
    max-width: 590px;
    width: 90%;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.4px;
    font-weight: 400;
    margin: 10px 0 25px 0;
    padding: 0;
    color: #000;
}

.espace-pub .espace-pub__content {
    width: 100%;
    height: 250px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.espace-pub .espace-pub__block {
    width: 300px;
    height: 250px;
    margin: 10px 10px 0 0;
    position: relative;
}

.espace-pub .espace-pub__block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media all and (max-width: 1300px) {
    .espace-pub .espace-pub__block:nth-child(3) {
        display: none;
    }
}

@media all and (max-width: 1000px) {
    .espace-pub {
        flex-direction: column;
        height: 540px;
    }
}

@media all and (max-width: 900px) {
    .outil-recherche .results-title {
        font-size: 28px;
    }
}

@media all and (max-width: 750px) {
    .section-categories__content .section-categories__products .products-category {
        padding-left: 0;
    }

    .product {
        width: calc(100vw / 2 - 30px) !important;
        height: 250px !important;
    }

    .product .product__title {
        height: 55px !important;
    }
}
@media all and (max-width: 700px) {
    .blog .results-title {
        text-align: center;
        font-size:28px;
    }
}
@media all and (max-width: 575px) {
    .acf-outil-right {
        margin: 0 0 50px 0;
    }
}

/**
 ** PARTIE BLOG
 **/

.articles-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.article {
    width: 350px;
    max-width: calc(100vw - 55px);
    border: 2px solid var(--color-blue);
    padding: 15px;
    margin: 5px 5px;
}

.article .column {
    width: 100%;
    height: 50%;
}

.article .figure {
    width: 100%;
    height: calc(100% - 15px);
    min-height: 200px;
}

.article .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article .row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
}

.article .article__category {
    font-family: "Arial MT Std", Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 900;
    color: var(--color-yellow);
    font-style: italic;
    text-transform: uppercase;
}

.article .article__date {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    color: #A2A1A1;
}

.article .article__title {
    width: 100%;
    text-align: left;
    color: #27235D;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.article .article__resume {
    width: 100%;
    text-align: justify;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    line-height: 20px;
    height: 100px;
    margin-bottom: 10px;
    overflow: hidden;

}

.article .article__controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

.article .btn--more {
    background: var(--color-blue);
    color: var(--color-white);
    margin: 0;
    font-size: 12px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    transition: linear .3s;
    width: 100%;
}

.article .btn--more:hover {
    background:#424D58;
    color: var(--color-white);
}

.blog .page-classic__header {

}

.blog .section--blog {
    background: var(--color-yellow);
    position: relative;
}

.blog .section--blog::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: var(--color-white);
    z-index: 1;

}

.blog .section--blog .section__header {
    position: relative;
    z-index: 10;
}

.blog .section--blog .section__header .section__title {
}

.blog .section--blog .section__header .section__subtitle {
}

.blog .section--blog .section__header .section__text {
    margin: 25px auto 0 auto;
    width: 100%;
    max-width: 1000px;
}

.blog .section--blog .section__header .section__text p {
    width: 100%;
    text-align: center;
}

.blog .section--articles .section__header .section__text {
    width: 100%;
    max-width: 1000px;
    margin: 25px auto 0 auto;
}

.blog .section--articles .section__header .section__text p {
    width: 100%;
    text-align: center;
}

.blog .section--blog .section__content {
    margin: 50px 0 0 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.blog .section--blog .articles-list {
    width: 100%;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.blog .section--blog .div1 {

    grid-area: 1 / 1 / 3 / 2;
}

.blog .section--blog .div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.blog .section--blog .div3 {
    grid-area: 2 / 2 / 3 / 3;
}

.blog .section--blog .articles-list .article {
    width: 100%;
    border: 3px solid var(--color-yellow);
    padding: 15px;
    background: var(--color-white);
}

.blog .section--blog .article.div1 {
    /*height: calc(100% - 10px);*/
    height: 100%;
}

.blog .section--blog .article.div1 .article__resume {
    height: 143px;
}

.blog .section--blog .article.div2,
.blog .section--blog .article.div3 {
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-direction: row;
}

.blog .section--blog .article.div2 .column,
.blog .section--blog .article.div3 .column {
    height: initial;
}

.blog .section--blog .article.div2 .figure,
.blog .section--blog .article.div3 .figure {
    height: 100%;
}

.blog .section--blog .article.div2 .row,
.blog .section--blog .article.div3 .row {
    padding: 0;
    margin: 10px 0 20px 0;
}

.blog .section--blog .article.div1 .btn {
    background:var(--color-yellow);
}

.blog .section--blog .article.div2 .btn,
.blog .section--blog .article.div3 .btn {
    margin: 0 0 0 0;
    background:var(--color-yellow);
}

.blog .section--blog .article.div2 .column:nth-child(1),
.blog .section--blog .article.div3 .column:nth-child(1) {
    width: calc(40% - 10px);
}

.blog .section--blog .article.div2 .column:nth-child(2),
.blog .section--blog .article.div3 .column:nth-child(2) {
    width: calc(60% - 10px);
}

.blog .section--categories .container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.blog .section--categories .section__header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 25px 0 0 0;
}

.blog .section--categories .section__content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0 0 0;

}

.blog .section--categories .section__content .category {
    position: relative;
    border: 3px solid var(--color-blue);
    transition: ease-out .3s;
}

.blog .section--categories .section__content .category .category__figure {
    width: 100%;
    height: 300px;
}

.blog .section--categories .section__content .category .category__figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog .section--categories .section__content .category .category__title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-blue);
    color: var(--color-white);
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-out .3s;

    font-family: Lato, sans-serif;
    font-weight: 400;


}
.blog .section--categories .section__content .category:hover{
    border-color: #424D58;
}

.blog .section--categories .section__content .category:hover .category__title{
    background: #424D58;
}

.blog .section--articles {
    margin: 150px 0 0 0;
}

.blog .section--articles .container {
    width: 100%;
    max-width: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog .section--articles .section__header {
    margin: 0 0 50px 0;
}

.blog .section--articles .section__header .section__title {
    width: 100%;
    text-align: center;
}

.blog .section--articles .section__header .section__subtitle {
    width: 100%;
    text-align: center;
}

.blog .section--articles .section__content {
    position: relative;
    margin: 100px 0 0 0;
}

.blog .section--articles .section__content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50vw;
    width: 50vw;
    height: 100%;
    background: var(--color-yellow);
    z-index: 1;
}

.blog .section--articles .section__content .container {
    width: 100%;
    display: flex;
    align-items: initial;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    z-index: 10;
}

.blog .section--articles .articles__filters {
    width: 350px;
    background: var(--color-yellow);
    position: relative;
}

.blog .section--articles .articles__filters .filters__header {
    position: relative;
    z-index: 10;
    overflow: hidden;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.blog .section--articles .articles__filters .filters__header::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -75px;
    background: var(--color-white);
    width: 200px;
    height: 40px;
    transform: rotate(-45deg);
    transform-origin: bottom left;
    z-index: 100;
}

.blog .section--articles .articles__filters .filters__header .filters__title {
    margin: 0;
    padding: 0;

    color: var(--color-blue);
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 500;
}

.blog .section--articles .articles__filters::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100px;
    width: 100vw;
    height: 50px;
    background: var(--color-white);
    z-index: 5;
}

.blog .section--articles .articles__filters .filters__header {
    position: relative;
    z-index: 10;
}

.blog .section--articles .articles__filters .filter {
    margin: 50px 0 0 0;
}

.blog .section--articles .articles__filters .form-title {
    color: rgb(39, 35, 93);
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.blog .section--articles .articles__filters .form-subtitle {
    color: rgb(33, 37, 41);
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.blog .section--articles .articles__content {
    width: calc(100% - 350px);
    padding: 0 0 0 40px;
    background: var(--color-white);
}

.blog .section--articles .articles__content .articles-list {
    margin: 0;
    padding: 0;
    width: 100%;
}

.blog .results-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 0 50px 0;
}

.blog .results-pagination .pages-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .results-title {
    margin: 0 0 45px 0;
}

.blog .results-title span {
    color: var(--color-yellow);
}

.blog .block-contact {
    margin-top: 0;
}

.blog .form-article {
    padding: 0 15px 0 0;
}

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

.blog .form-article .form-input input {
    width: calc(100% - 102px);
    margin: 0;
    height: 35px;
    border: none;
    padding: 0 0 0 35px;
}

.blog .form-article .form-input .icon {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.blog .form-article .form-input .icon svg {
    width: 18px;
    height: 18px;
    fill: rgb(39, 35, 93);
}

.blog .form-article .btnArticleSearch {
    background: rgb(39, 35, 93);
    width: 100px;
    text-align: center;
    color: var(--color-white);
    box-shadow: none;
    outline: none;
    line-height: 35px;
    font-size: 14px;
    border: none;
    transition: linear .3s;
}

.blog .form-article .btnArticleSearch:hover {
    background: var(--color-black);
}

.blog .form-article .btnFilter {
}

.blog .form-article {
    margin-bottom: 100px;
}

.blog .form-article .btnFilter input {
    display: none;
}

.blog .form-article .btnFilterList {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.blog .form-article .btnFilter label {
    background: var(--color-white);
    border-radius: 15px;
    font-size: 14px;
    padding: 0 15px;
    line-height: 30px;
    margin: 0 8px 8px 0;
    cursor: pointer;

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

    transition: ease-out .3s;
}

.blog .form-article .btnFilter label svg {
    display: none;
}

.blog .form-article .btnFilter input:checked + label {
    background: var(--color-blue);
    color: var(--color-white);

}

.blog .form-article .btnFilter input:checked + label svg {
    display: block;
    width: 12px;
    height: 12px;
    fill: var(--color-white);
    margin: 0 0 0 5px;
}

.blog .form-article .btnFilter:hover label{
    background:var(--color-black)!important;
    color:var(--color-white)!important;
}
.single-post .page-header {
    width: 100vw;
    height: 400px;
}

.single-post .page-header .figure {
    width: 100%;
    height: 100%;
    position: relative;
}

.single-post .page-header .figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #424D58;
    opacity: .7;
    z-index: 1;
}

.single-post .page-header .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post .section-article {
    margin-top: -150px;
    position: relative;
    z-index: 500;
}

.single-post .section-article .container-post {

    background: var(--color-white);
}

.single-post .section-article .article-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px 25px;
}

.single-post .section-article .row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
}

.single-post .section-article .row-title {
    margin: 0;
    padding: 0;
}

.single-post .section-article .article-categories {
    width: 100%;
    margin: 15px 0 0 0;
    font-size: 18px;
    color: var(--color-yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    font-family: "Arial MT Std", Helvetica, sans-serif;
}

.single-post .section-article .article-stats {
    padding: 10px 0 50px 0;
    margin: 0;

    font-size: 14px;
    color: #7E7C7C;
    width: 100%;
}

.single-post .section-article .article-time {
    font-weight: 700;
}

.single-post .section-article .post-date {
    font-weight: 700;
}

.single-post .section-article .column-left {
    width: calc(100% - 350px);
}

.single-post .section-article .column-left p a {
    color: var(--color-yellow);
    text-decoration: underline;
    font-weight: 700;
}

.single-post .section-article .column-left p a:hover {
    color: var(--color-blue);
}

.single-post .section-article .column-right {
    width: 300px;
}

.single-post .section-article .row-title .page-title {
    color: var(--color-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin: 0;
    padding: 0;
}

.single-post .section-article .block {
}

.single-post .section-article .block .block-title {
    color: var(--color-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.single-post .section-article .block-materiel {
    background: var(--color-yellow);
    color: var(--color-white);
    padding: 25px;
    margin: 50px 0;
}

.single-post .section-article .block-materiel .block-title {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.single-post .section-article .block-materiel .block-texte {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

.single-post .section-article .block-materiel .btnRedirect {
    background: var(--color-blue);
    color: var(--color-white);
    width: 100%;
    line-height: 45px;
    text-align: center;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    transition: ease-out .3s;
}
.single-post .section-article .block-materiel .btnRedirect:hover{
    background:var(--color-black);
}
.single-post .section-article .block-socials {
}

.single-post .section-article .block-socials .socialList {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.single-post .section-article .block-socials .socialList .btnSocial {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blue);
    margin: 0 10px 10px 0;
    transition: linear .3s;

}

.single-post .section-article .block-socials .socialList .btnSocial svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.single-post .section-article .block-socials .socialList .btnSocial:hover {
    background: var(--color-black);
}

.single-post .section-article .block-categories {
}

.single-post .section-article .block-categories .categoriesList {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.single-post .section-article .block-categories .categoriesList .btnCategoryRedirect {
    background: var(--color-blue);
    font-size: 14px;
    padding: 0 15px;
    margin: 0 10px 10px 0;
    border-radius: 15px;
    line-height: 40px;
    color: var(--color-white);
}

.single-post .section-article figure {
    margin: 25px 0;
}

.single-post .section-article figure figcaption {
    width: 100%;
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

.single-post .section--others {
    margin: 100px 0 0 0;
}

.single-post .section--others .container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.single-post .section--others .section__header {
    margin: 0 0 50px 0;
    padding: 0 25px;
}

.single-post .section--others .section__header .section__title {
    font-size: 24px;
}

.single-post .section--others .section__header .section__subtitle {
    font-size: 28px;
    line-height: 30px;
}

.single-post .section--others .othersList {
    width: 100%;
    padding: 0 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.single-post .container-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.single-post .breadcrumb {
    background: none;
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
}

.single-post .breadcrumb .breadcrumb-item,
.single-post .breadcrumb .breadcrumb-item a {
    font-size: 14px;
    font-family: Lato, sans-serif;
    color: var(--color-white);
}

.single-post .breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-white);
}

.single-post .btnReturn {
    background: var(--color-blue);
    color: var(--color-white);

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

    font-size: 16px;
    line-height: 40px;
    margin: 0 0 15px 0;
}

.single-post .btnReturn svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
    margin: 0 10px 0 0;
}

.single-post .btnReturn:hover {
    background: var(--color-black);
}

.single-post .btnPostList {
    width: 100%;
    margin: 15px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-post .btnPostList .column {
    width: 50%;
}

.single-post .btnPostList .column:nth-child(1) {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.single-post .btnPostList .column:nth-child(2) {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.single-post .btnPost {
    background: #424D58;
    color: var(--color-white);
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 15px;
    transition: linear .3s;
}

.single-post .btnPost svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}

.single-post .btnPostPrevious svg {
    margin-right: 5px;
}

.single-post .btnPostNext svg {
    margin-left: 5px;
}

.single-post .btnPost .btnTitle {
    font-size: 12px;
    font-style: italic;
}

.single-post .btnPost .btnDirection {
    font-weight: 700;
    font-size: 18px;
    margin: 0;

}

.single-post .btnPost:hover {
    background: var(--color-black);
    text-decoration: none !important;
}

.single-post .btnPost:hover .btnDirection {
    text-decoration: underline;
}

.single-post .block-author {
    background: var(--color-yellow);
    padding: 25px 25px;
    margin: 50px 0 25px 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.single-post .block-author .figure {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 0 25px 0 0;
    border-radius: 50%;
}

.single-post .block-author .figure img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.single-post .block-author .author__title {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    color: var(--color-blue);
    padding: 0;
}

.single-post .block-author .author__post {
    font-weight: 400;
    font-size: 15px;
    font-style: italic;
    margin: -3px 0 10px 0;
    padding: 0;
}

.single-post .block-author .author__description {
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 350px;
}

.single-post .block-author .author__networks {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0 0 0;
}

.single-post .block-author .author__networks .btn--networks {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
}

.single-post .block-author .author__networks .btn--networks svg {
    width: 15px;
    height: 15px;
}

.single-post .block-author .author__networks .btn--networks:hover {
    background: var(--color-blue);
}

.single-post .block-author .author__networks .btn--networks:hover svg path {
    fill: var(--color-white);
}

.single-post .block-author .author__networks .btn--networks:hover::after {
    border-color: var(--color-blue);
}

.single-post .block-articles {
    margin: 50px 0 0 0;
}

.article-thumbnail {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.article-thumbnail a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.article-thumbnail a:hover {
    text-decoration: none !important;
}

.article-thumbnail .column:nth-child(1) {
    width: 100px;
}

.article-thumbnail .column:nth-child(2) {
    width: calc(100% - 100px);
}

.article-thumbnail .article__category {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
    color: var(--color-yellow);
}

.article-thumbnail .figure {
    width: 75px;
    height: 75px;
    min-height: initial;
}

.article-thumbnail .article__title {
    font-size: 16px;
}

.article-thumbnail a:hover .article__title {
    color: var(--color-black) !important;
    text-decoration: underline;
}

@media all and (max-width: 1520px) {

    .blog .section--articles .article {
        width: calc(100% / 3 - 20px);
    }
}

@media all and (max-width: 1300px) {

    .blog .section--articles .article {
        width: calc(100% / 2 - 20px);
    }
}

@media all and (max-width: 1200px) {
    .single-post .section-article .column-left {
        width: 100%;
    }

    .single-post .section-article .column-right {
        width: 100%;
        margin: 150px 0 0 0;
    }

    .single-post .section-article .block-socials {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .blog .section--articles .section__content .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .single-post .section-article .block-socials .socialList .btnSocial {
        margin: 0 10px;
    }

    .single-post .section-article .block-categories .categoriesList {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .single-post .section-article .block-categories {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .blog .section--articles .articles__filters {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
    }

    .blog .form-article {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin: 25px 0 75px 0;
        padding: 0 15px;
    }

    .blog .form-article .filter:nth-child(1) {
        margin: 0 25px 0 0;
    }

    .blog .form-article .filter:nth-child(2) {
        margin: 0 0 0 25px;
    }

    .blog .section--articles .articles__content {
        width: 100%;
        margin: 50px 0 0 0;
        padding: 0;
    }

    .blog .section--articles .section__content::before {
        display: none;
    }

    .blog .section--articles .articles__filters .filters__header .filters__title {
        padding: 0 25px;
    }

    .blog .section--articles .article {
        width: calc(100% / 3 - 20px);
    }

}

@media all and (max-width: 1000px) {
    .blog .section--blog .articles-list {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }

    .blog .section--blog .article.div1 {
        width: 100%;
    }

    .blog .section--blog .article.div2 {
        width: 100%;
    }

    .blog .section--blog .article.div3 {
        width: 100%;
    }

    .blog .section--blog::after {
        height: 600px;
    }

    .blog .section--categories .section__content {
        justify-content: center;
    }

    .blog .section--categories .section__content .category {
        width: calc(100% / 3 - 10px) !important;
        margin: 5px 5px;
    }
}

@media all and (max-width: 900px) {
    .blog .section--articles .article {
        width: calc(100% / 2 - 20px);
    }

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

    .blog .form-article .filter:nth-child(1) {
        width: calc(100% - 50px);
        margin: 15px 0;
    }

    .blog .form-article .filter:nth-child(2) {
        width: calc(100% - 50px);
        margin: 15px 0;
    }
}

@media all and (max-width: 800px) {
    .single-post .section-article .container {
        max-width: calc(100% - 50px);
    }

    .single-post .breadcrumb {
        display: none;
    }

    .single-post .section-article .article-container {
        padding: 15px 0;
    }

    .blog .section--blog::after {
        height: 800px;
    }


}

@media all and (max-width: 700px) {
    .blog .section--categories .section__content .category {
        width: calc(100% / 2 - 10px) !important;
    }

    .blog .section--categories .section__content .category .category__figure {
        height: 200px;
    }
}

@media all and (max-width: 600px) {
    .single-post .section-article .container {
        max-width: 100%;
    }

    .single-post .btnPostList {
        flex-direction: column;
    }

    .single-post .btnPostList .column {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .single-post .btnPost {
        width: 100%;
    }

    .blog .section--articles .article {
        width: calc(100% - 20px);
    }
}
@media all and (max-width: 550px) {
    .blog .section--blog .article.div2,
    .blog .section--blog .article.div3{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .blog .section--blog .article.div1 .article__resume{
        height: 160px ;
    }
    .blog .section--blog .article.div2 .column:nth-child(1), .blog .section--blog .article.div3 .column:nth-child(1){
        width: 100%;
        margin: 0;
    }
    .blog .section--blog .article.div2 .column:nth-child(2), .blog .section--blog .article.div3 .column:nth-child(2){
        width: 100%;
    }
    .blog .section--blog .article.div2 .row, .blog .section--blog .article.div3 .row{
        margin: 0 0 10px 0;
    }
}
@media all and (max-width: 500px) {
    .blog .section--categories .section__content .category {
        width: calc(100% / 1 - 10px) !important;
    }

    .blog .section--categories .section__content .category .category__figure {
        height: 200px;
    }

    .single-post .block-author {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .single-post .block-author .figure {
        margin: 0 auto 15px auto;
    }

    .single-post .block-author .author__title {
        width: 100%;
        text-align: center;
    }

    .single-post .block-author .author__post {
        width: 100%;
        text-align: center;
    }

    .single-post .block-author .author__networks {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .single-post .block-author .author__networks .btn--networks {
        margin: 0 5px;
    }
}

.archive.category .section--category {

    margin: 100px 0 50px 0;
}

.archive.category .section--category .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.archive.category .section--category .section__text {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin: 25px auto 0 auto;
}

.archive.category .section--category .section__title {
    width: 100%;
    text-align: center;
}

.archive.category .section--category .section__subtitle {
    width: 100%;
    text-align: center;
}

.archive.category .section--category .section__content {
    margin: 100px auto 0 auto;
}
@media all and (max-width: 750px) {
    .archive.category .section--category .section__content{
        margin:50px auto 0 auto;
    }
}