/*
Theme Name: prudhomme
Author: A&F Développement
Author URI: https://af-developpement.com/
Version: 1.1
*/

@font-face {
    font-family: 'Outfit';
    src: url("./assets/fonts/Outfit-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: 'Outfit';
    src: url("./assets/fonts/Outfit-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: 'Outfit';
    src: url("./assets/fonts/Outfit-Regular.ttf") format("truetype");
    font-weight: 500;
}

*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 140%;
    vertical-align: baseline;
    box-sizing: border-box;
    color: #111F3F;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
    display: block;
}

body{
    line-height: 1;
}

ol, ul{
    list-style: none;
}

blockquote, q{
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after{
    content: none;
}

body, html{
    margin: 0;
}

body{
    color: #000;
}

h1, h2, h3, h4, h5{
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    margin: 0;
    color: #313747;
}

strong{
    font-weight: 600;
    color: inherit;
}

main > p {
    margin-bottom: 100px;
    font-size: 24px;
    font-weight: 400;
    color: #313747;
}

address{
    word-break: break-all;
}

a{
    text-decoration: none;
    color: unset;
    transition: none;
}

a:hover{
    text-decoration: none;
    color: unset;
}

figure.hovering{
    position: relative;
    transition: all .25s ease;
    margin-bottom: 2rem;
}

figure.hovering img{
    opacity: 1;
    display: block;
    width: 100%;
    transition: all .5s ease;
    backface-visibility: hidden;
}

figure.hovering figcaption{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all .5s ease;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

figure.hovering:hover img{
    opacity: .2;
}

figure.hovering:hover figcaption{
    opacity: 1;
}

.wp-post-image,
.img-responsive{
    display: block;
    height: auto;
    width: 100%;
}

.container,
.container-header,
.page-id-639 main{
    padding: 0 1rem;
    margin: 0 auto;
}

.pointer{
    cursor: pointer;
}

.btn{
    display: block;
    width: fit-content;
    padding: 1rem;
    background-color: red;
    color: #fff;
    cursor: pointer;
}

:focus,
:active,
:focus-visible{
    border: none;
    outline: none;
}

:hover{
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

textarea{
    border: 1px solid #000;
    outline: none;
}

[data-toggle="tooltip"]{
    cursor: help;
}

.btn-global{
    background: #E83C40;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

.marge-top{
    margin-top: 93px;
}

.marge-sup-bottom{
    padding-bottom: 346px;
}

.remonter-section{
    transform: translateY(-50%);
}

.hidden{
    display: none;
}


/* MODAL -------------------------------------------------------------------------------------------*/


.modal{
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 0 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.modal.open{
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.modal-bg{
    position: absolute;
    background: #000c;
    width: 100%;
    height: 100%;
}

.modal-container{
    border-radius: 10px;
    background: #fff;
    position: relative;
    padding: 30px;
    z-index: 4;
}

.modal-close{
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #f00;
    background: none;
    cursor: pointer;
}


/* HEADER ------------------------------------------------------------------------------------------*/


header{
    font-family: Roboto, sans-serif;
    position: sticky;
    top: 0;
    z-index: 2;
    transition: all .3s ease;
    background: #1A3C8A;
    padding: 29px 1rem;
}

header.active{
    background: #fff;
}

header .mobile{
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr 44px;
    grid-gap: 2rem 0;
    position: relative;
}

header .desktop{
    display: none;
    align-items: center;
}

header .logo.active{
    display: none;
}

header .trait{
    display: none;
    height: 1px;
    background: #DADCE1;
    width: 100%;
    position: absolute;
    top: 40px;
}

header.active .trait{
    display: block;
}

header figure{
    width: 40%;
    height: 100%;
}

header figure img{
    height: 100%;
    width: 100%;
}

header ul li a{
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

header .menu .menu-item a{
    color: #fff;
    font-size: 15px;
    line-height: 24px;
}

header .mobile .menu .menu-item a{
    color: #111F3F;
    font-size: 24px;
}


/* HAMBURGER ------------------------------------------------------------------------------------------*/


.hamburger{
    cursor: pointer;
    height: 40px;
    border-radius: 4px;
    padding: 10px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    grid-gap: 3px;
}

.hamburger .icon-bar{
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #fff;
}

.hamburger:hover .icon-bar{
    background-color: #fff;
}


/* CROSS ----------------------------------------------------------------------------------------*/


header .cross{
    display: none;
    width: 24px;
    justify-self: center;
}


/* NAV ------------------------------------------------------------------------------------------*/


header .mobile nav{
    display: none;
    text-align: center;
    grid-column: 1 / 3;
}

header .menu{
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 25px;
    font-size: 20px;
    text-align: left;
}

header .menu.mobile{
    flex-direction: column;
}

header .menu .sub-menu {
    display: none;
    transition: opacity .3s;
    background: #fff;
}

header .menu .sub-menu:hover{
    display: block;
}

header .menu .sub-menu li{
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    padding: 15px;
}

header .menu .sub-menu li a{
    color: #111F3F;
    opacity: 0.8;
    font-size: 15px !important;
}

header .menu .sub-menu:last-child li{
    padding-left: 15px;
}

header .menu .sub-menu:last-child li a{
    color: #111F3F;
}

header .menu .sub-menu:last-child li a:hover{
    color: #111F3F;
}

header .menu > li .sub-menu{
    margin-top: 0.66rem;
}

header .menu .menu-item{
    padding: 10px 0;
}

header .mobile .menu-item{
    display: grid;
    grid-template-columns: 8fr 1fr;
    align-items: center;
}

header.active .menu .menu-item{
    width: 100%;
    padding: 1.5rem 0;
}

header.active .menu .menu-item:nth-last-child(2){
    padding-bottom: 48px;
}

header .menu .menu-item:last-child{
    border-left: 1px solid #FFFFFF29;
    padding-left: 30px;
}

header.active .menu > li:last-child{
    border-top: 1px solid #DADCE1;
    padding-top: 48px;
    padding-left: unset;
}

header .menu > li:last-child a{
    color: #E83C40 !important;
}

header .menu,
header .menu .menu-item,
header .menu .menu-item-has-children,
header .menu .sub-menu .menu-item-has-children{
    position: relative;
}

header .btn-toggle-menu{
    cursor: pointer;
    display: block;
    font-size: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

header .btn-toggle-menu .open-close-menu{
    display: block;
    position: absolute;
    z-index: 3;
}

header .btn-toggle-menu .open-close-menu::before,
header .btn-toggle-menu .open-close-menu::after{
    border-radius: 0.1875rem;
    content: "";
    display: block;
    position: absolute;
    background-color: #1450aa;
    height: 0.25rem;
    left: 0;
    transition-duration: 0.3s, 0.3s;
    width: 100%;
}

header .btn-toggle-menu .open-close-menu::before{
    top: -0.6875rem;
    transform-origin: top;
}

header .btn-toggle-menu .open-close-menu::after{
    bottom: -0.6875rem;
    transform-origin: bottom;
}

header .menu-item-has-children > .btn-toggle-menu{
    /*position: absolute;
    right: 2rem;
    top: 11px;
    height: 2rem;
    width: 2rem;
    font-size: 1.2rem;*/
    background-color: transparent;
}

header .menu-item-has-children > .btn-toggle-menu .open-close-menu{
    height: 100%;
    width: 100%;
}

header .menu-item-has-children > .btn-toggle-menu .open-close-menu::after,
header .menu-item-has-children > .btn-toggle-menu .open-close-menu::before{
    background: #1450aa;
    transition: transform 0.25s ease-out;
}

header .menu-item-has-children > .btn-toggle-menu .open-close-menu::before{
    height: 50%;
    left: calc(50% - 0.1875rem / 2);
    top: 25%;
    width: 0.1875rem;
}

header .menu-item-has-children > .btn-toggle-menu .open-close-menu::after{
    height: 0.1875rem;
    left: 25%;
    top: calc(50% - 0.1875rem / 2);
    width: 50%;
}


/* SINGLE  -----------------------------------------------------------------------------------------*/


#single-post{
    overflow: hidden;
}

#single-post .categ{
    color: #fff;
    background-color: #E83C40;
    opacity: 0.6;
    border-radius: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 12px;
    margin-bottom: 23px;
    font-size: 12px;
}

#single-post .top{
    padding: 73px 0 63px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#single-post .top #bg-trait{
    display: none;
    position: absolute;
    top: 20%;
    left: 0;
}


#single-post .top #bg-trait-right{
    position: absolute;
    right: -31%;
    top: 60%;
    display: none;
    transform: rotate(285deg);
}

#single-post h1{
    font-size: 40px;
    line-height: 45px;
    text-transform: inherit;
    font-weight: 500;
    max-width: 940px;
    text-align: center;
}

#single-post .top figure{
    max-width: 923px;
    height: 480px;
    margin: 0 auto;
    width: 90%;
    position: relative;
}

#single-post .top figure img{
    position: relative;
    z-index: 1;
    height: 100%;
    object-fit: cover;
}

#single-post .top figure figcaption{
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    opacity: 0.6;
    margin-top: 16px;
}

#single-post .top p{
    font-size: 16px;
    line-height: 26px;
    padding: 8px 0 32px 0;
    opacity: .8;
    font-weight: 300;
}

#single-post .picto{
    display: flex;
    justify-content: center;
    grid-gap: 14px;
    margin-bottom: 63px;
}

#single-post .picto a:last-child{
    position: relative;
}

#single-post .picto span{
    display: none;
    box-shadow: 0 3px 6px #00000029;
    padding: 5px 10px;
    border-radius: 10px;
    position: absolute;
    top: -45px;
    right: -40px;
    color: #111F3F;
    background: #F2F5F9;
}

#single-post .picto svg{
    width: 48px;
    height: 48px;
    padding: 12px;
    background: #F2F5F9;
    border-radius: 20px;
}

#single-post article .content > *:not(.citation-custom, .image-texte, .is-type-video, .slider){
    width: 85%;
    padding: 0 1rem;
    margin: 0 auto;
}

#single-post article h2{
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    color: #111F3F;
    margin: 48px auto 24px auto !important;
    text-transform: inherit;
}

#single-post article h3{
    font-weight: 500;
    font-size: 26px;
    line-height: 41px;
    color: #111F3F;
    text-transform: inherit;
}

#single-post article p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    opacity: 0.8;
    color: #111F3F;
}

#single-post article .is-type-video{
    max-width: 950px;
    width: 90%;
    margin: 80px auto;
}

#single-post article .is-type-video iframe{
    width: 100%;
    height: 520px;
}

#single-post .background-img{
    position: absolute;
    height: 450px;
    top: -30px;
    left: 30px;
    width: calc(100% - 60px);
    background: #E83C40;
    opacity: 0.08;
}

#single-post .query{
    margin-top: 104px;
    background: #F8F8F8;
}

#single-post h2{
    text-align: center;
    padding: 68px 0 56px 0;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    color: #111F3F;
    text-transform: inherit;
}

#single-post .posts{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 23px;
    padding-bottom: 92px;
}

#single-post .posts p{
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    color: #111F3F;
    opacity: 0.8;
    margin: 32px 0 8px 0;
}

#single-post .posts h3{
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    text-transform: inherit;
}

#single-post .posts .post{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

#single-post .post a{
    width: 100%;
}
/*
#single-post .post figure{
    height: 203px;
}
*/
#single-post .post img{
    height: 100%;
    object-fit: cover;
}


/* PAGE ACTUALITES -----------------------------------------------------------------------------------*/


body.blog{
    position: relative;
}

#blog .top-actu{
    background: #1A3C8A;
    padding: 93px 0 132px 0;
}

#blog h1{
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    color: #FFFFFF;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

#blog .top-actu p{
    font-weight: 400;
    font-size: 24px;
    line-height: 160%;
    color: #FFFFFF;
    opacity: 0.8;
    margin-top: 40px;
}

#blog .grid{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 48px 23px;
    margin: -50px auto 75px auto;
}

#blog .grid figure{
    height: 204px;
}

#blog .grid img{
    height: 100%;
    object-fit: cover;
}

#blog .grid p{
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    color: #111F3F;
    opacity: 0.8;
    margin: 32px 0 8px 0;
}

#blog .grid h2{
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    color: #313747;
}

#blog .grid h4{
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    color: #313747;
}

#blog .sub-footer{
    display: flex;
    justify-content: center;
    margin-bottom: 72px;
}

#blog .sub-footer .pagination{
    display: flex;
    grid-gap: 8px;
}

#blog .sub-footer span,
#blog .sub-footer a{
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #1A3C8A;
    border: 1px solid #1A3C8A;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#blog .sub-footer a:first-child{
    margin-right: 40px;
}

#blog .sub-footer a:last-child{
    margin-left: 40px;
}


#blog .sub-footer span.current{
    background: #1A3C8A;
    color: #fff;
}

#blog .section-titre{
    padding: 0 0 79px 0;
}

#blog .section-titre.colored{
    padding: 104px 0 285px 0;
}

#blog .section-titre .container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    grid-gap: 2rem;
}

#blog .section-titre .titres .pre-titre{
    color: #E83C40;
    opacity: .8;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#blog .section-titre .titres .titre{
    font-weight: 500;
    font-size: 38px;
    line-height: 110%;
}

#blog .section-titre .titres p{
    margin-top: 26px;
}

#blog .section-titre .lien{
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #E83C40;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
}

#blog .videos{
    margin-top: -240px;
}

#blog .videos .grid{
    display: grid;
    grid-template-columns: 1fr;
}

#blog .videos .grid figure{
    height: 311px;
    cursor: pointer;
}

#blog .videos .grid p{
    margin: 24px 0 8px 0;
}

#blog .resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    width: 90%;
    margin: 0 auto;
}

#blog .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
#blog #modal{
    position: fixed;
    display: none;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    padding-bottom: 3rem;
}

#modal .close {
    color: #fff;
    float: right;
    font-size: 80px;
    margin: 2rem 3rem 0 3rem;
    cursor: pointer;
}




    /* SLIDER SIMPLE -----------------------------------------------------------------------------------*/


.slider{
    position: relative;
    margin: 110px 0 200px 0;
}

.slider > div h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: white;
}


/* SLIDER MULTIPLE (LOGO) --------------------------------------------------------------------------*/


.slider-image .single-image{
    text-align: center;
}

.slider-image .single-image img{
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    margin: 0 auto;
}


/* SLICK -------------------------------------------------------------------------------------------*/


.slick-prev{
    left: 18px;
    z-index: 1;
}

.slick-next{
    right: 18px;
    z-index: 1;
}

.slick-prev:before,
.slick-next:before{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #1f8a70;
    -webkit-font-smoothing: antialiased;
}

.slick-dots li button:before{
    color: #fff;
}

.slick-dots li.slick-active button:before{
    color: #F00;
}


/* TEMPLATE-PARTS - LATEST POSTS ---------------------------------------------------------------------------*/


.latest-posts .container-latest-posts{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
}


/* HEADER - PAGE CUSTOM ---------------------------------------------------------------------------- */


#homologation .header,
#catalogue-prudhome .header{
    background-color: #1A3C8A;
    color: #fff;
    padding: 93px 0 65px 0;
}

#homologation .header h1,
#catalogue-prudhome .header h1{
    font-size: 38px;
    margin-bottom: 40px;
    color: #fff;
}

#homologation .header p,
#catalogue-prudhome .header p{
    font-size: 24px;
    line-height: 160%;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 65px;
}


/* CATALOGUE PRUDHOMME --------------------------------------------------------------- */


#catalogue-prudhome .header div{
    position: relative;
}

#catalogue-prudhome .header div svg{
    position: absolute;
    top: 50%;
    left: 19px;
    transform: translateY(-50%);
}

#catalogue-prudhome .header div input{
    width: 100%;
    height: 56px;
    padding-left: 56px;
}

#catalogue-prudhome .header div input::placeholder{
    font-size: 16px;
    line-height: 140%;
    color: #111F3F;
    opacity: 0.32;
}

#catalogue-prudhome .categories{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 1rem;
}

#catalogue-prudhome .categories button{
    background-color: transparent;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: #111F3F;
    cursor: pointer;
}

#catalogue-prudhome .categories button:hover{
    color: #E83C40;
}

#catalogue-prudhome .categories button:not(:last-child){
    margin-bottom: 8px;
}

#catalogue-prudhome .table{
    background-color: #F8F8F8;
}

#catalogue-prudhome .table table{
    width: 100%;
    border-spacing: 0 8px;
    padding: 86px 1rem;
    display: none;
}

#catalogue-prudhome .table table thead .categ th{
    display: block;
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    color: #313747;
    margin-bottom: 32px;
}

#catalogue-prudhome .table table thead th{
    text-align: left;
    font-size: 16px;
    line-height: 160%;
}

#catalogue-prudhome .table table thead th:first-child{
    display: block;
    margin-bottom: 32px;
}

#catalogue-prudhome .table table thead th:nth-child(3){
    width: 80px;
}

#catalogue-prudhome .table table thead th span {
    color: #111f3f99;
    font-size: 14px;
}

#catalogue-prudhome .table table tbody .sous-categ:not(:first-child){
    display: block;
    margin-top: 64px;
}

#catalogue-prudhome .table table tbody .sous-categ td{
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 8px;
}

#catalogue-prudhome .table table tbody .produit{
    margin-bottom: 8px;
}

#catalogue-prudhome .table table tbody .produit td:first-child{
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    opacity: 1;
}

#catalogue-prudhome .table table tbody .produit td{
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    opacity: 0.6;
}

#catalogue-prudhome .table table tbody .produit:hover td:first-child{
    color: #E83C40;
}

#catalogue-prudhome .table table tbody .produit:hover td:not(:first-child){
    opacity: 1;
}


/* PAGE HOMOLOGATION ------------------------------------------------------------------------------------- */


#homologation .categories{
    margin-top: 100px;
}

#homologation .categories .slick-track{
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 24px;
    width: unset !important;
}

#homologation .categories button{
    font-weight: 500;
    line-height: 28px;
    opacity: 0.48;
    background-color: transparent;
    cursor: pointer;
}

#homologation .categories button.active{
    opacity: 1;
    border-bottom: 2px solid #E83C40;
}

#homologation .categories button:not(:last-child){
    margin-right: 24px;
}

#homologation .categories + .arrow{
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 2rem;
}

#homologation .categories + .arrow svg{
    cursor: pointer;
}

#homologation .fiches-by-categs{
    margin: 66px auto 124px auto;
}

#homologation .fiches-by-categs > *{
    display: none;
}

#homologation .fiches-by-categs .single-fiche{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

#homologation .fiches-by-categs:not(.all) > div .single-fiche:not(:last-child),
#homologation .fiches-by-categs.all > div:not(:last-child) .single-fiche{
    border-bottom: 1px solid #111F3F33;
}


/* FOOTER -------------------------------------------------------------------------------------------------*/


footer .container .infos{
    padding: 70px 0 0 0;
}

main.page + footer .infos{
    border-top: 1px solid #31374733;
    margin-top: 95px;
}

footer .infos{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(200px, 1fr) );
    grid-gap: 2rem;
}

footer .infos figure{
    margin: 0 0 2rem 0;
}

footer .infos figure img{
    max-width: 161px;
    margin-bottom: 26px;
}

footer .infos select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 30px;
    background-position-y: center;
    min-width: 3rem;
    text-transform: uppercase;
    outline: none;
    border: none;
}

footer .infos .produits,
footer .infos .societes{
    display: flex;
    flex-direction: column;
}


footer .infos .produits h3,
footer .infos .societes h3{
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

footer .infos .produits a,
footer .infos .societes a{
    font-size: 15px;
    letter-spacing: 0.02em;
    opacity: 0.64;
    color: #313747;
}

footer .infos .produits a:not(:last-child),
footer .infos .societes a:not(:last-child){
    margin-bottom: 24px;
}

footer .copyright{
    margin-top: 77px;
    padding: 18px 0 44px 0;
    border-top: 1px solid #31374733
}

footer .copyright a{
    font-weight: 400;
    font-size: 11px;
}


@media screen and (min-width: 576px){
    .container,
    .page-id-639 main{
        max-width: 540px;
    }

    .container-header{
        max-width: 556px;
    }

    #single-post article .content > *:not(.citation-custom, .image-texte, .is-type-video, .slider) {
        width: 70%;
    }

    #blog h1{
        font-size: 42px;
    }

    #blog .section-titre .container{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

@media screen and (min-width : 768px){
    .container,
    .page-id-639 main{
        max-width: 720px;
    }

    .container-header{
        max-width: 748px;
    }


    header .mobile,
    header .mobile + nav{
        display: none !important;
    }

    header .desktop{
        display: block;
        text-align: center;
    }

    header .desktop nav{
        display: block !important;
    }

    header .desktop figure{
        width: unset;
        height: unset;
    }

    header figure img{
        height: unset;
        width: unset;
    }

    header .btn-toggle-menu{
        display: none;
    }

    header .menu::before,
    header .menu::after{
        display: none;
    }


    header .menu .menu-item {
        width: max-content;
    }

    header .menu > li .sub-menu{
        margin-top: unset;
    }

    header .menu > li > .sub-menu{
        margin-top: 0.4rem;
    }

    header .menu-item-has-children > .btn-toggle-menu{
        position: absolute;
        right: 0;
        top: 0;
        height: 2.5625rem;
        width: 2.5625rem;
    }

    header .menu .menu-item-has-children > a:after{
        display: inline-block;
        content: "\f0d9";
        margin-left: 0.4045rem;
        text-decoration: none;
        position: relative;
        font-family: FontAwesome;
    }

    header .menu > .menu-item-has-children > a:after {
        content: "v";
        font-size: 10px;
    }

    header .menu-item-has-children > a:hover ~ ul,
    header .menu-item-has-children:hover > a ~ ul,
    header .menu-item-has-children > a ~ ul:hover,
    header .menu-item-has-children > a:focus ~ ul{
        display: block;
        z-index: 3;
        pointer-events: auto;
    }
    /* Same rules - Focus-within not supported by Edge/IE. Unsupported selectors cause the entire block to be ignored, so we must repeat all styles separately. */
    header .menu-item-has-children:focus-within > a ~ ul{
        display: block;
        z-index: 3;
    }

    header .menu .sub-menu{
        min-width: 100%;
        position: absolute;
        border: 0.0625rem solid #dcdcdc;
    }

    header .menu > li > .sub-menu:after{
        border-color: #fff transparent;
        border-style: solid;
        border-width: 0 0.5rem 0.5rem;
        content: "";
        left: calc(30% + 0.0625rem);
        position: absolute;
        top: -0.4375rem;
    }

    header .menu .sub-menu ul{
        left: -100%;
        top: 0;
        max-width: 100%;
    }


    .latest-posts .container-latest-posts {
        grid-template-columns: 1fr 1fr;
    }

    #blog h1{
        font-size: 50px;
    }

    #blog .grid{
        grid-template-columns: 1fr 1fr;
    }

    #blog .section-titre .titres{
        max-width: 66%;
    }

    #blog .section-titre .titres .titre{
        font-size: 60px;
    }


    #homologation .header h1,
    #catalogue-prudhome .header h1{
        font-size: 72px;
        margin-left: -3px;
    }

    #catalogue-prudhome .table table thead .categ{
        font-size: 48px;
    }


    #homologation .fiches-by-categs{
        width: 80%;
    }
}

@media screen and (min-width : 992px){
    .container,
    .page-id-639 main{
        max-width: 960px;
    }

    .container-header{
        max-width: 972px;
    }


    header .desktop{
        display: grid;
    }

    header .desktop .logo{
        text-align: left;
    }

    header .desktop .menu {
        justify-content: flex-end;
    }

    header .desktop,
    .latest-posts .container-latest-posts {
        grid-template-columns: 1fr 1fr;
    }


    #single-post article .content > *:not(.citation-custom, .image-texte, .is-type-video, .slider) {
        width: 55%;
    }

    #single-post .top #bg-trait{
        display: block;
    }

    #single-post .top #bg-trait-right{
        display: block;
    }

    #single-post h1{
        font-size: 56px;
        line-height: 61px;
    }

    #single-post h2{
        text-align: left;
    }

    #single-post .posts{
        grid-template-columns: 1fr 1fr 1fr;
    }

    #blog h1{
        font-size: 58px;
    }

    #blog .grid{
        grid-template-columns: 1fr 1fr 1fr;
    }

    #blog .videos .grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width : 1200px){
    .container,
    .page-id-639 main{
        max-width: 1140px;
    }

    .container-header{
        max-width: 1180px;
    }


    header .menu{
        grid-gap: 40px;
    }


    #blog h1{
        font-size: 72px;
    }


    #homologation .categories + .arrow{
        display: none;
    }

    #homologation .categories .slick-track{
        transform: unset !important;
    }

    #single-post .top #bg-trait-right{
        right: -25%;
    }
}

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

    .container-header{
        max-width: 1380px;
    }


    header .sub-menu ul{
        left: 100%;
        top: 0;
        max-width: 100%;
    }
}

@media screen and (min-width : 1800px) {
    .container,
    .page-id-639 main{
        max-width: 85%;
    }

    .container-header{
        max-width: 95%;
    }

    #single-post article .content > *:not(.citation-custom, .image-texte, .is-type-video, .slider) {
        width: 45%;
    }
}

#wpadminbar{
    display: none;
}
