/**** CSS des plugings ****/

@font-face {
    font-family: 'Share Tech';
    src: url('/fonts/Share_Tech/ShareTech-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Share';
    src: url('/fonts/share/Share-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Share';
    src: url('/fonts/share/Share-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Share Tech Mono';
    src: url('/fonts/share-tech-mono/ShareTechMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arimo';
    src: url('/fonts/arimo/Arimo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arimo';
    src: url('/fonts/arimo/Arimo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/open-sans/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


.soumission-body {
    margin: 0;
    padding: 0;
    font-family: 'Share', sans-serif;
    background: url('images/a-labelle-palettes/palette-bg.png') no-repeat center center fixed;
    background-size: inherit;
    color: white;
}

.soumission-body h1,
.soumission-body p {
    font-family: "Share";
}

.soumission-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.soumission-body h1 {
    font-size: 2rem;
    letter-spacing: 1px;
    color: #ff0000;
    font-weight: 400;
}

.soumission-intro {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    width: 75%;
}

.soumission-body label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 30px;
    display: block;
}

.soumission-input,
.soumission-textarea {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    font-size: 18px;
    background-color: white;
    color: white;
    border: 2px solid red;
    border-radius: 5px;
}

.soumission-row {
    display: flex;
    gap: 20px;
}

.soumission-row>div {
    flex: 1;
}

.soumission-full-width {
    width: 100%;
}

#soumission-envoyer {
    background-color: red;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border: none;
    padding: 15px 40px;
    margin-top: 40px;
    cursor: pointer;
    border-radius: 10px;
}

.soumission-info-section {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-top: 30px;
}

.soumission-info-text {
    width: 48%;
    font-size: 18px;
    line-height: 1.2;
    text-align: end;
}

.soumission-info-inputs {
    flex: 1;
    justify-content: space-between !important;
    padding: 0 18px;
}

.soumission-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.soumission-checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.soumission-checkbox-wrapper label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    font-weight: normal;
}

.soumission-checkbox-wrapper label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 18px;
    border: 2px solid red;
    border-radius: 20px;
    background-color: transparent;
    transition: background-color 0.2s;
}

.soumission-checkbox-wrapper input[type="checkbox"]:checked+label::before {
    background-color: white;
}

.soumission-mini-input {
    max-width: 250px;
}

.soumission-pac-target-input {
    width: 97.5% !important;
}

/* Responsive */
@media (max-width: 1160px) {
    .soumission-info-inputs {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .soumission-body {
        background-size: auto;
    }

    .soumission-container {
        padding: 30px 15px;
    }

    .soumission-intro {
        font-size: 16px;
        line-height: 22px;
        width: 100%;
    }

    .soumission-body h1 {
        font-size: 28px;
        text-align: center;
    }

    .soumission-body label {
        font-size: 1rem;
        margin-top: 20px;
    }

    .soumission-input,
    .soumission-textarea {
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .soumission-pac-target-input {
        width: 100% !important;
    }

    .soumission-row {
        flex-direction: column;
        gap: 0;
    }

    .soumission-info-section {
        flex-direction: column;
        gap: 20px;
    }

    .soumission-info-text {
        width: 100%;
        font-size: 16px;
        text-align: left;
    }

    .soumission-info-inputs {
        flex-direction: column;
        display: flex;
        width: 100%;
        gap: 20px;
        padding: 0;
    }

    .soumission-info-inputs input {
        max-width: 100% !important;
    }

    .soumission-mini-input {
        width: 100% !important;
        max-width: 100% !important;
    }

    .soumission-textarea {
        width: 100% !important;
    }

    #soumission-envoyer {
        font-size: 18px;
        width: 100%;
        padding: 12px 20px;
        margin-top: 30px;
    }

    .soumission-checkbox-wrapper {
        flex-direction: column;
        align-items: flex-start;
        font-size: 16px;
    }

    .soumission-checkbox-wrapper label {
        padding-left: 35px;
    }
}




/* SlickNav Responsive Mobile Menu v1.0.3*/

.slicknav_menu:after,
.slicknav_menu:before {
    display: table;
    content: " "
}

.slicknav_btn,
.slicknav_nav .slicknav_item {
    cursor: pointer
}

.slicknav_menu,
.slicknav_menu * {
    box-sizing: border-box
}

.slicknav_nav,
.slicknav_nav ul {
    padding: 0;
    list-style: none;
    overflow: hidden
}

.slicknav_btn {
    position: relative;
    display: block;
    vertical-align: middle;
    float: right;
    padding: .438em .625em;
    line-height: 1.125em
}

.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
    margin-top: .188em
}

.slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 3px #000
}

.slicknav_menu .slicknav_icon {
    float: left;
    margin: .188em 0 0 .438em
}

.slicknav_menu .slicknav_no-text {
    margin: 0
}

.slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: .125em;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .25)
}

.slicknav_menu:after {
    clear: both
}

.slicknav_nav li,
.slicknav_nav ul {
    display: block
}

.slicknav_nav .slicknav_arrow {
    font-size: .8em;
    margin: 0 0 0 .4em
}

.slicknav_nav .slicknav_item a {
    display: inline
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    display: block
}

.slicknav_nav .slicknav_parent-link a {
    display: inline
}

.slicknav_menu {
    /**zoom: 1;*/
    font-size: 16px;
    background: #4c4c4c;
    padding: 5px
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #fff
}

.slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #222
}

.slicknav_nav {
    clear: both;
    color: #fff;
    margin: 0;
    font-size: .875em
}

.slicknav_nav ul {
    margin: 0 0 0 20px
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 5px 10px;
    margin: 2px 5px
}

.slicknav_nav .slicknav_row:hover {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #ccc;
    color: #fff
}

.slicknav_nav a {
    text-decoration: none;
    color: #fff
}

.slicknav_nav a:hover {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #ccc;
    color: #222
}

.slicknav_nav .slicknav_txtnode {
    margin-left: 15px
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    padding: 0;
    margin: 0
}

.slicknav_brand {
    float: left;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    padding: 7px 12px;
    height: 44px
}



.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


.slick-loading .slick-list {
    background: #fff url(../images/ajax-loader.gif) center center no-repeat
}

@font-face {
    font-family: 'slick';
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/slick.eot);
    src: url(../fonts/slick.eot?#iefix) format("embedded-opentype"), url(../fonts/slick.woff) format("woff"), url(../fonts/slick.ttf) format("truetype"), url(../fonts/slick.svg#slick) format("svg");
    font-display: swap;
}

/*.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: '←'
}

[dir='rtl'] .slick-prev:before {
    content: '→'
}

.slick-next {
    right: -25px
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: '→'
}

[dir='rtl'] .slick-next:before {
    content: '←'
}*/

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}



/* Font Awesome 4.7.0  */

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb"
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}



html {
    scroll-behavior: smooth
}

html,
body {
    margin: 0px auto;
    padding: 0px;
    min-height: 100vh;
    overflow-x: hidden
}

body {

    font-size: 13px;
    color: #424242;

    font-family: "Arimo", sans-serif;

    direction: ltr;

    background: #ffffff;

    font-weight: 400;

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
ul,
li {
    padding: 0px;
    margin: 0px 0px;
    font-family: "Open Sans", sans-serif;
}

p,
li {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 15px;
    font-weight: 400
}

a {
    text-decoration: none;
    outline: none;
    color: #ffffff;
}

strong {
    font-weight: 700
}

em {
    font-style: italic
}

a:hover {
    text-decoration: none;
    outline: none;
    color: #0e1a35;
}

a img {
    border: 0px;
    outline: none;
}

img {
    max-width: 100%;
    height: auto !important
}

img.fullwidth {
    width: 100%
}

.fullpagewidth {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.prelative {
    position: relative
}

.left {
    float: left;
    width: 50%;
}

.text_left {
    float: right;
    width: 570px;
    margin-right: 30px;
    text-align: left;
}

.right {
    float: right;
    width: 50%;
}

.text_right {
    float: left;
    width: 570px;
    margin-left: 30px;
    text-align: left;
}

.fleft {
    float: left
}

.fright {
    float: right
}

.tcenter {
    text-align: center
}

.tright {
    text-align: right
}

.clear {
    clear: both;
    font-size: 0px;
    height: 0px;
    line-height: 0px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.desktop {
    display: block;
}

.mobile {
    display: none
}

.cell {
    display: none
}

video {
    width: 100%;
    height: auto;
}

/**************** Lists ****************************/

ul,
ol,
li {
    list-style: none;
}



/**************** forms ****************************/

input,
select,
textarea {
    outline: none;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"] {
    font-family: "Arimo", sans-serif;

    background: transparent;
    border: 1px solid #cccccc;
    font-size: 14px;
    padding: 12px;
    width: 95%;
    margin-bottom: 15px;
    max-width: 100%;
    border-radius: 3px;
    margin-top: 5px;
    color: #424242;
}

input[type="number"] {
    max-width: 50px
}

textarea {
    font-family: "Arimo", sans-serif;
    background: transparent;
    border: 1px solid #cccccc;
    font-size: 14px;
    color: #424242;
    padding: 12px;
    width: 95%;
    margin-bottom: 15px;
    max-width: 100%;
    border-radius: 3px;
    margin-top: 5px
}

select {
    padding: 12px 10px 12px;
    margin-bottom: 15px;
    border: none;
    border: 1px solid #053b54;
    font-size: 16px;
    color: #adadad;
    max-width: 100%
}

select:focus {
    background-color: #e5e5e5
}

input[type="text"].ws_check {
    display: none;
}

a.bouton,
input[type="submit"] {
    font-family: "Arimo", sans-serif;
    cursor: pointer;
    border: 1px solid #0000001a;
    background: #0000001a;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 15px;
    width: 135px;
    font-weight: 700
}

a.bouton:hover,
input[type="submit"]:hover {
    background: transparent;
    color: #053b54;
}



.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 10px 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox_checkmark {
    position: absolute;
    top: -4px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.checkbox_container:hover input~.checkbox_checkmark {
    background-color: #053b54;
}

.checkbox_container input:checked~.checkbox_checkmark {
    background-color: #000;
}

.checkbox_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox_container input:checked~.checkbox_checkmark:after {
    display: block;
}

.checkbox_container .checkbox_checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



.radio_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_container input {
    position: absolute;
    opacity: 0;
}

.radio_checkmark {
    position: absolute;
    top: -5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.radio_checkmark.inv {
    background-color: #fff;
}

.radio_container:hover input~.radio_checkmark {
    background-color: #053b54;
}

.radio_container input:checked~.radio_checkmark {
    background-color: #000;
}

.radio_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio_container input:checked~.radio_checkmark:after {
    display: block;
}

.radio_container .radio_checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}



/***************** pages containers **************/

.col1_2f {
    float: left;
    width: 50%;
    margin-right: 0
}

.col1_2 {
    float: left;
    width: 48%;
    margin-right: 4%
}

.col1_2r {
    float: right;
    width: 48%;
    margin-right: 0
}



.col1_3f {
    float: left;
    width: 33%;
    margin-right: 0
}

.col1_3 {
    float: left;
    width: 32%;
    margin-right: 2%
}

.col1_3r {
    float: right;
    width: 32%;
    margin-right: 0
}

.col2_3 {
    float: left;
    width: 65%;
    margin-right: 1%
}

.col2_3r {
    float: right;
    width: 66%;
    margin-right: 0
}



.col1_4f {
    float: left;
    width: 25%;
    margin-right: 0
}

.col1_4 {
    float: left;
    width: 22%;
    margin-right: 4%
}

.col1_4r {
    float: right;
    width: 22%;
    margin-right: 0
}

.col3_4 {
    float: left;
    width: 73%;
    margin-right: 1%
}

.col3_4r {
    float: right;
    width: 74%;
    margin-right: 0
}



.col1_5f {
    float: left;
    width: 18%;
    margin-right: 0
}

.col1_5 {
    float: left;
    width: 18%;
    margin-right: 2.5%
}

.col1_5r {
    float: right;
    width: 18%;
    margin-right: 0
}

.col2_5 {
    float: left;
    width: 38.5%;
    margin-right: 2.5%
}

.col2_5r {
    float: left;
    width: 38.5%;
    margin-right: 0
}

.col3_5 {
    float: left;
    width: 59%;
    margin-right: 2.5%
}

.col3_5r {
    float: right;
    width: 59%;
    margin-right: 0
}

.col4_5 {
    float: left;
    width: 79.5%;
    margin-right: 2.5%
}

.col4_5r {
    float: right;
    width: 79.5%;
    margin-right: 0
}



.col1_6 {
    float: left;
    width: 15%;
    margin-right: 2%
}

.col1_6r {
    float: right;
    width: 15%;
    margin-right: 0
}

.col5_6 {
    float: left;
    width: 78.5%;
    margin-right: 1%
}

.col5_6r {
    float: right;
    width: 79.5%;
    margin-right: 0
}



.iframe-container {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
    width: 100%
}

.iframe-container iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* 4x3 Aspect Ratio */
.iframe-container-4x3 {
    padding-top: 75%;
}



/*****Header*****/

header {
    z-index: 100;
    width: 100%;
    background: #fff
}

header .header-top {
    margin-top: 0;
    background-color: #ff0000;
}

header .header-top span,
header .header-top a {
    font-size: 18px;
    color: #ffffff;
}

header .hLogo {
    float: left;
    width: 18%;
}

header .hBtnSoumission {
    float: right;
    width: 22%;
}

header .h_left a {
    padding-right: 10px
}

header .h_right a {
    padding-left: 10px
}

header .header-top span:hover,
header .header-top a:hover {
    opacity: 0.8;
}

header .header-top .h_left {
    padding: 16px 0;
}

header .header-bottom {
    background-color: #1f1f1f;
    padding: 10px 0px;
    box-shadow: 0 5px 3px -1px #7b7b7bbd;
    position: relative;
    z-index: 10;
}



header .h_left {
    float: left;
    width: 65%;
}

header .h_right {
    float: right;
    width: 33%;
    text-align: right;
    padding: 16px 0
}



header .h_langue {
    padding: 25px 0px 0px 10px;
}

header .h_langue span {
    font-size: 18px;
    font-family: "Share Tech Mono", monospace;
    color: #ffffff;
}

header .h_langue span:hover,
header .h_langue a:active {
    color: #604b25;
}



header .header-bottom .hBtnSoumission {
    background-color: #ff0000;
    width: 165px;

    box-sizing: border-box;
    padding: 20px 0px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

header .header-bottom .hBtnSoumission:hover {
    opacity: 0.8;
}

header .header-bottom a {
    font-size: 18px;
    font-family: "Share Tech Mono", monospace;
    color: #ffffff;
}

#primary_nav {
    text-align: center;
    margin-top: 20px;
    position: relative;
}


/* 1) On cible spécifiquement le sous-menu de PRODUITS */
ul.dropdown li#produit_sous_menu>ul.submenu {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    /* ajustez si besoin */
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 32px;
    z-index: 600;
}

/* affiche au hover, quel que soit $page */
ul.dropdown li#produit_sous_menu:hover>ul.submenu {
    visibility: visible;
}

/* stylisation des items */
ul.dropdown li#produit_sous_menu ul.submenu li {
    display: block;
    padding: 8px 12px;
}

ul.dropdown li#produit_sous_menu ul.submenu li a {
    color: #0e1a35;
    font-size: 14px;
    text-decoration: none;
}

ul.dropdown li#produit_sous_menu ul.submenu li a:hover {
    background: #ccc;
}


ul.dropdown {
    width: 100%
}

ul.dropdown,
ul.dropdown li,
ul.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.dropdown li {
    display: inline-block;
    line-height: 15px;
    position: relative
}

ul.dropdown li.hover,
ul.dropdown li:hover {
    position: relative;
    z-index: 599;
    cursor: default
}

ul.dropdown li a {
    font-family: 'Share', cursive;
    font-size: 19px;
    color: #ffffff;
    padding: 27px 10px 32px;

    text-decoration: none;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}

ul.dropdown li a.active {
    color: #604b25;
    text-decoration: none;
    background-color: #c5bbaa;
}

li.current-menu-top {
    background-color: #e7b251;
    border-radius: 8px
}

.current-menu-top {
    border-bottom: none;
    background-color: #e7b251;
    border-radius: 8px
}

ul.dropdown a:link,
ul.dropdown a:visited {
    color: #ffffff;
    text-decoration: none
}

ul.dropdown a:hover {
    color: #604b25
}

ul.dropdown ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: -5px;
    z-index: 598;
}

ul.dropdown li:hover>ul {
    visibility: visible;
}

ul.dropdown ul ul {
    top: 0px;
    left: 170px;
}

ul.dropdown ul {
    width: 175px;
    margin-top: 0px;
    background-color: #fff;
}

ul.dropdown ul.fr {
    width: 260px;
}

ul.dropdown ul li {
    font-size: 14px;
    color: #0e1a35;
    padding: 2px 0;
    margin: 0;
    font-weight: 400;
    display: list-item;
    text-align: left;
    width: 100%;
    letter-spacing: 2px;
}

ul.dropdown ul li:hover {
    color: #0e1a35;
}

ul.dropdown ul a {
    padding: 0 5px;
}

ul.dropdown ul a:hover {
    background: #ccc;
    color: #0e1a35;
}

ul.dropdown *.dir {
    cursor: pointer !important;
}

#primary_nav_mobile {
    display: none
}

.slicknav_menu {
    background: #1f1f1f;
    font-size: 16px;
    color: #ffffff;
    margin-top: 5px;
    width: 100%
}

.slicknav_menu .slicknav_menutxt {
    color: #ffffff;
    display: block;
    float: left;
    font-weight: 700;
    line-height: 1.188em;
    text-shadow: none;
    text-align: center
}

.slicknav_btn {
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    padding-right: 0
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #ffffff
}

.slicknav_nav a {
    color: #ffffff;
    font-weight: 700
}

.slicknav_nav a:hover {
    background: transparent;
    color: #604b25
}

.slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent
}

.slicknav_ul ul li a {
    color: #ffffff
}

.slicknav_ul ul li a:hover {
    color: #604b25
}

.slicknav_nav .slicknav_arrow {
    font-size: .8em;
    margin: 0 0 0 .4em;
    color: #000
}



/***************** Page section style ************/

.ligne {
    width: 100%;
    clear: both;
    margin-bottom: 5px
}

.ligne:after {
    content: "";
    display: table;
    clear: both;
}

.btnBleu {
    background: #0487db;
    box-sizing: border-box;
    border-radius: 5px;
    background-image: linear-gradient(to bottom, #049cdb, #0466db);
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);

    text-align: center;
}



.btnBleu:hover {
    opacity: 0.7;
    color: #ffffff
}

.btnBleu a:hover {
    color: #ffffff;
}

.flabel {
    font-size: 13px;
}



/* .fentree{display: flex; flex-direction: row; align-items: baseline;}

.flabel{float: left; text-align: right;} */

/***************** Page Accueil ************/

.accueilPage {
    z-index: 9;
    position: relative;
}

.accueilPage h1 {
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #938774;

    text-align: center;
    line-height: 28px;
    margin-top: 45px;
}

/* .accueil_slider .accueilSliderBtn{ background: #0487db; padding: 9px 14px;  width: 136px; box-sizing: 

    border-box; border-radius: 5px; background-image:  linear-gradient(to bottom, #049cdb, #0466db); 

color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); font-size: 15px;} */

.accueil_slider .btnBleu {
    padding: 9px 14px;
    width: 136px;
    font-size: 15px;
}

.accueilSliderContenu:not(.lbp) {
    margin: 30px 0px;
    border-radius: 6px;
}

/*.accueil_slider .slick-prev::before {
    content: "\f053";
    font-family: "Fontawesome";
    color: #ffffff;
    font-size: 40px;
}

.accueil_slider .slick-next::before {
    content: "\f054";
    font-family: "Fontawesome";
    color: #ffffff;
    font-size: 40px;
}

.accueil_slider .slick-prev,
.accueil_slider .slick-next {
    width: 40px;
    height: 40px;
    cursor: pointer;

    z-index: 99;
    margin: 25px;
    top: 40%;
}


/*.accueil_slider .slick-prev::before, .accueil_slider .slick-next::before {
    content: none;
}*/


/*.slick-prev {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px; 
    font-size: 20px;
    color: #000;
    border: none;
    background: #d9d9d9; 
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    top: auto;
    padding-right: 15px;
}

.slick-next {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; 
    height: 40px; 
    font-size: 20px;
    color: #000; 
    border: none;
    background: #d9d9d9;
    border-radius: 50%; 
    outline: none;
    cursor: pointer;
    top: auto;
    padding-left: 15px;
}*/

.slider_lbp {
    position: relative;
}

.custom-arrows {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 99;
    gap: 15px;
}

.custom-arrows .slick-prev,
.custom-arrows .slick-next {
    font-size: 18px;
    color: #000;
    border: none;
    background: #fff;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    width: 36px;
    height: 36px;

    &.slick-disabled {
        opacity: .36;
    }
}

.custom-arrows .slick-prev:hover,
.custom-arrows .slick-next:hover {
    color: #ff0000;
    background: #c5bbaa;
}

.custom-arrows .slick-prev i {
    margin-left: -4px;
    margin-top: 3px;
}

.custom-arrows .slick-next i {
    margin-left: 4px;
    margin-top: 3px;
}


.accueil_slider .accueilSliderTxt {
    padding: 46px 32px;
    box-sizing: border-box;
}

.accueil_slider .accueilSliderContenu:not(.lbp) .accueilSliderTxt h3 {
    font-size: 45px;
    color: #938774;
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
}



.accueil_slider .accueilSliderTxt h2 {
    font-size: 45px;
    color: #938774;
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
}

.accueil_slider .accueilSliderTxt p {
    font-size: 18px;
    color: #ffffff;
    line-height: 27px;
}

.accueil_slider .accueilSliderTxt p.note {
    font-size: 12px;
    margin-top: 30px
}

.accueil_slider .accueilSliderContenu:not(.lbp) .accueilSliderImg {
    text-align: right
}


.accueil_slider .accueilSliderContenu.lbp .accueilSliderImg {
    text-align: right;

    &.col1_3r {
        float: none;
        width: 100%;
        margin-right: auto;
        text-align: center;
    }
}


.accueil_slider .accueilSliderContenu:not(.lbp) .accueilSliderImg img {
    /*width: 100%;*/
    max-height: 290px;
    display: inline-block
}

.accueil_slider .accueilSliderContenu.lbp .accueilSliderImg img {
    width: 100%;
    max-height: 520px;
    display: inline-block;
}

.accueil_slider .slide1 {
    background-color: #999999;
}

.accueil_slider .slide2 {
    background-color: #3c463b;
}

.accueil_slider .slide3 {
    background-color: #999999;
}

.accueil_slider .slide4 {
    background-color: #6e6055;
}


.accueil_slider {
    position: relative;
    width: 100%;
    height: auto;
}

.accueilSliderImg img {
    width: 100%;
    height: auto;
}

.accueilSliderTxt {
    position: absolute;
    bottom: 50%;
    left: 0%;
    transform: translate(-0%, -33%);
    color: white;
    z-index: 2;
    text-align: left;
    background: rgba(31, 31, 31, 0.95);
    max-width: 50%;
}

.accueilSliderImg {
    position: relative;
    z-index: 1;
}




/*.accueilServices .accueilServicesContenu {
    display: flex;
    flex-direction: row;
}*/

.accueilServices .serviceContenu {
    padding: 13px;
    margin-bottom: 18px;
    border-radius: 4px;
    border: 1px solid #dddddd;

    box-sizing: border-box;
}

/*
.accueilServices .serviceContenu:nth-child(3) {
    margin-right: 60px;
    margin-left: 60px;
}*/

.accueilServices .accueilServicesContenu .serviceContenuImg img {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 476px;
}

.accueilServices .accueilServicesContenu .serviceContenuTxt h4 {
    font-size: 21px;
    font-family: 'Open Sans', sans-serif;

    font-weight: 400;
    color: #938774;
}

.accueilServices .accueilServicesContenu .serviceContenuTxt h5 {
    font-size: 13px;
    font-style: italic;
    font-family: "Share Tech Mono", monospace;
    margin-bottom: 7px;
    line-height: 27px;
    color: #604b25;
    font-weight: 300;
}

.accueilServices .accueilServicesContenu .serviceContenuTxt p {
    font-size: 13px;
    font-family: "Arimo", sans-serif;
}


.accueilServicesContenu {
    display: flex;
    /* Utilise Flexbox pour un alignement flexible */
    justify-content: space-between;
    /* Distribue l'espace uniformément entre les colonnes */
    margin: 0;
    /* Supprime les marges extérieures pour les bords */
}

.serviceContenu {
    width: calc(33.333% - 10px);
    /* Définit la largeur de chaque colonne, en déduisant un peu d'espace pour éviter les problèmes de bordure */
    display: flex;
    /* Utilise Flexbox dans les contenus de service */
    flex-direction: column;
    /* Les éléments s'alignent verticalement */
    align-items: center;
    /* Centre les éléments horizontalement dans la colonne */
    margin: 0 5px;
    /* Ajoute une petite marge horizontale entre les colonnes */
}

.serviceContenu:first-child,
.serviceContenu:last-child {
    margin-left: 0;
    /* Supprime la marge gauche pour la première colonne */
    margin-right: 0;
    /* Supprime la marge droite pour la dernière colonne */
}

.serviceContenuImg img {
    width: 100%;
    /* Assure que les images remplissent complètement la largeur du conteneur */
    height: auto;
    /* Garde le rapport hauteur/largeur des images */
}

.serviceContenuTxt {
    text-align: center;
    /* Centre le texte dans le conteneur de texte */
}




.accueilCommentaires h3,
.accueilServices h3 {
    /*    font-size: 24px;
    line-height: 72px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;

    color: #938774;*/
    color: #000;
    text-align: center;
    font-family: "Share Tech Mono", monospace;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.accueilCommentaires {
    margin: 36px auto;

    /*** GOOGLE REVIEW ***/
    .es-widget-title-container {
        display: none;
    }

    .es-review-content-text,
    .es-ai-summary-list-item-text,
    .es-review-content-control {
        color: #000;
        font-family: "Open Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;

        &.es-review-content-control-open {
            font-weight: 400;
            padding-top: 10px;
        }
    }

    .es-ai-summary-author-name {
        margin-bottom: 0;
    }

    .es-review-author-block-container span {
        color: #000;
        font-family: "Share Tech Mono", monospace;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .es-rating-item-filled path {
        fill: #F00 !important;
    }

    .es-header-write-review-button-container button {
        background-color: #333 !important;

        &:hover {
            background-color: #F00 !important;
        }
    }

    .ReviewVerifiedBadge__StyledVerifiedBadge-sc-194nig4-0 path:first-child {
        fill: #333 !important;
    }

    .es-review-source-source-bottom-container .eIMmgT *,
    .es-review-source-source-bottom-container *,
    .es-header-heading-logo * {
        fill: #333 !important;
    }

    .es-ai-summary-author-block-container {
        filter: grayscale(100%);
    }

    .es-review-avatar img {
        filter: grayscale(100%);
    }


}

.accueilCommentaires p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20.7px;
    font-family: "Arimo", sans-serif;
}

.aCommentaireContenu {
    border-left: 5px solid #eeeeee;
    margin-bottom: 18px;
    padding-left: 5px;
}

.aCommentaireContenu span::before {
    content: '\2014 \00A0';
}

.aCommentaireContenu .commentaireAuteur {
    display: block;
    line-height: 18px;
    color: #999999;
}

.serviceContenu .btnBleu {
    width: 100px;
    padding: 2px 6px;
    font-size: 11px;
    float: right;
}



.accueilServiceConseil {
    margin-bottom: 45px;
}

.accueilServiceConseilContenu {
    border: 1px solid #dddddd;
    padding: 13px;
    border-radius: 4px;
}

.accueilServiceConseil h3 {
    font-size: 24px;
    line-height: 72px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;

    color: #938774;
}

.accueilServiceConseil h5 {
    font-size: 13px;
    font-style: italic;
    font-family: "Share Tech Mono", monospace;
    margin-bottom: 7px;
    line-height: 27px;
    color: #604b25;
    font-weight: 300;
}

.accueilServiceConseil p {
    font-size: 13px;
    font-family: "Arimo", sans-serif;
}


/******************/
/*** ACCUEIL V2 ***/
/******************/

/*** Section Slider ***/
.accueilSliderContenu.lbp {
    margin: 0px 0px 30px 0px;
    border-radius: 6px;
    position: relative;
}

.accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h3,
.accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h1 {
    font-family: "Share Tech Mono", monospace;
    color: #F00;
    font-family: Share;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
    margin-top: auto;
    padding-bottom: 10px;
}

.accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h4,
.accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h2 {
    color: #FFF;
    font-family: "Share Tech Mono", monospace;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}


/*** Section Types de palette ***/
.accueilServices {
    padding: 40px 0px;

    & h3 {
        padding-bottom: 22px;
    }

    &:not(#qualite) .serviceContenu {
        border: none;
        padding: 0;
        max-width: 360px;
    }

    & .serviceContenuImg {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        max-height: 476px;
        gap: 44px;

        & a::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 2%), rgb(0 0 0 / 0%) 100%);
            z-index: 1;
        }

        & img,
        & a.type-palette {
            display: block;
            object-fit: cover;
            height: 100% !important;
            width: auto;
            z-index: 10;
        }

        a.type-palette {
            position: relative;

            &:hover .overlay-text {
                opacity: 1;
                visibility: visible;
                /* Rendre l'élément visible */
            }

            h4 {
                position: absolute;
                top: 22px;
                left: 33px;
                right: 0;
                bottom: 0;
                color: white;
                text-align: left;
                z-index: 10;
                font-family: Share;
                font-size: 35px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                text-transform: uppercase;
            }

            p {}
        }

        .overlay-text span.type-more {
            display: flex;
            padding: 10px;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
            background: var(--Rouge-vif, #F00);
            color: #FFF;
            font-family: Share;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            text-transform: uppercase;
            margin-top: 15px;
            border: none;
            max-width: 130px;
        }

        .type-content {
            margin-left: 33px;
        }

        .overlay-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            color: white;
            text-align: left;
            z-index: 2;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
            pointer-events: none;
            flex-direction: column;
        }

        .overlay-text h4 {
            font-size: 20px;
            margin: 0;
        }

        .overlay-text p {
            font-size: 14px;
            margin: 5px 0 0;
            color: #FFF;

            /* Texte courant */
            font-family: "Open Sans";
            font-size: 18px;
            font-style: normal;
            font-weight: 300;
            line-height: normal;
        }

        .type-desc {
            position: inherit !important;
            font-size: 14px !important;
            margin: 5px 0 0 !important;
            color: #FFF;

            /* Texte courant */
            font-family: "Open Sans" !important;
            font-style: normal !important;
            font-weight: 300 !important;
            line-height: normal !important;
            text-transform: none !important;
        }


        /* Styles pour le texte sur l'image */


        /* Création de la superposition lors du survol */
        .serviceContenuImg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            /* Superposition sombre */
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            /* Assure que la superposition est en arrière-plan */
        }

        /* Effet de zoom et affichage de la superposition au survol */
        .serviceContenuImg:hover img {
            transform: scale(1.1);
            /* Zoom sur l'image */
        }

        .serviceContenuImg:hover::before {
            opacity: 1;
            /* Affiche la superposition sombre */
        }

        /* Facultatif : Effet sur le texte lors du hover */
        .serviceContenuImg:hover .overlay-text {
            opacity: 1;
            /* Peut également jouer avec l'opacité du texte si nécessaire */
        }
    }

    & .serviceQuoteLink {
        position: relative;
        margin: 0 auto;
        width: 55%;
        padding: 15px;
        color: #FFF;
        font-family: Share;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-align: center;
        margin: 22px auto 0;
        background-color: #ff0000;
        cursor: pointer;

        &:hover {
            background-color: #c5bbaa;

            & a {
                color: #000;
            }
        }

        a:hover {
            text-decoration: none;
            outline: none;
            color: #000;
        }
    }

    &#qualite {
        background: #F5F5F5;
        width: 100%;
        padding: 95px 0px;

        & .accueilServicesContenu {
            width: 1170px;
            margin-left: auto;
            margin-right: auto;
            border: none;
            padding: 0;
        }

        & .serviceContenu {
            margin-bottom: 0px;
            border: none;
            padding: 0;
            max-width: 360px;
        }

        .serviceContenuTxt {
            text-align: left;
            padding-top: 25px;
        }

        h4 {
            color: #000;
            font-family: Share;
            font-size: 35px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            text-transform: uppercase;
        }

        p {
            color: #000;
            font-family: "Open Sans";
            font-size: 18px;
            font-style: normal;
            font-weight: 300;
            line-height: normal;
            padding-top: 10px;
            margin-bottom: 0;
        }
    }
}


/*** Section Livraison Gratuite ***/
.livraisonGratuite {
    padding-top: 0px;
    padding-bottom: 95px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;

    &:not(.fullRight) {
        max-width: 1170px;
    }

    &.fullRight {
        display: block;
        width: 100%;
    }
}

.livraisonGratuiteContenu {
    display: flex;
    justify-content: space-between;
    max-width: 1170px;
    align-items: flex-start;



    &.fullRight {
        max-width: 1170px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        overflow: hidden;

        & .livraisonGratuiteTxt {
            width: 40%;
        }
    }

    &.fullRightImg {
        position: absolute;
        top: 0;
        right: 0;

        & .livraisonGratuiteImg {
            width: 66%;
            position: absolute;
            margin-top: 95px;
            right: 0;
        }
    }

    .livraisonGratuiteContenuTxt.fullRight {
        width: 100%;
        position: relative;
        background-color: #F5F5F5;
        padding: 95px 25px 95px 53px;
    }
}

.livraisonGratuiteImg {
    width: 66%;
    position: relative;
    margin-top: 95px;
}

.livraisonGratuiteImg::before {
    content: "";
    position: absolute;
    top: -95px;
    left: 0;
    width: 383px;
    height: 95px;
    background-color: #F5F5F5;
    z-index: 1;
}

.livraisonGratuiteImg img {
    width: 100%;
    height: auto;
    z-index: 0;
    /* L'image reste derrière le pseudo-élément */
}

.livraisonGratuiteContenuTxt:not(.fullRight) {
    width: 34%;
    position: relative;
    background-color: #F5F5F5;
    padding: 95px 25px 95px 53px;
}

.livraisonGratuiteTxt h2 {
    color: #FF0000;
    font-weight: 600;
    font-family: "Poppins";
    font-size: 22px;
}

.livraisonGratuiteTxt h3 {
    padding-bottom: 0px;
    color: #1F1F1F;
    font-family: Share;
    font-size: 75px;
    font-style: normal;
    font-weight: 700;
    line-height: 75px;
    text-transform: uppercase;

    & span {
        color: #F00;
        font-family: Share;
        font-size: 75px;
        font-style: normal;
        font-weight: 700;
        line-height: 75px;
        text-transform: uppercase;
    }
}

.livraisonGratuiteTxt h4 {
    color: #000;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-bottom: 15px;
}

.livraisonGratuiteTxt p {
    color: #303442;
    font-size: 16px;
}

.livraisonGratuiteTxt span {
    color: #303442;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/*** Section Qui Nous Sommes ***/
.aproposAccueil {
    background-color: #F5F5F5;
}

.aproposContenu {
    padding-top: 95px;
    padding-bottom: 95px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aproposTexte {
    width: 36%;
    padding: 0px 25px 0px 53px;
}

.aproposValeurs h3,
.aproposValeurs span {
    color: #000;
    font-family: Share;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.aproposValeurs p {
    color: #000;
    padding-top: 5px;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.aproposImg {
    width: 64%;
    position: relative;
}

.aproposImg img {
    width: 100%;
    height: auto;
}

.aproposBadge {
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff0000;
    padding: 10px 15px;
    color: #FFF;
    font-family: Share;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

/*** Section Service Conseil ***/
.servicesAccueil {
    background-color: #F5F5F5;

    .servicesContenu {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        background-color: #1F1F1F;
        max-height: 732px;
    }




    .servicesImages {
        width: 47.5%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .servicesImages img {
        width: 100%;
        height: auto !important;
        max-height: 325px;
    }

    .servicesTexte {
        width: 57%;
        background-color: #1F1F1F;
        color: #fff;
        padding: 30px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .servicesBadge {
        position: absolute;
        top: -29px;
        left: 25%;
        transform: translateX(-50%);
        background-color: #ff0000;
        padding: 10px 15px;
        color: #FFF;
        font-family: Share;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }

    .servicesTexte h3 {
        color: #F00;
        font-family: Share;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        max-width: 450px;
        margin-bottom: 15px;
        padding: 0% 10% 0;
    }

    .servicesTexte p {
        margin-bottom: 15px;
        color: #FFF;
        font-family: "Open Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        padding: 0 10%;
    }
}

/*** Section Niveaux de Qualité ***/
.niveau-qualite {
    padding: 95px 0;

    .servicesContenu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;


        h3 {
            color: #000;
            font-family: Share;
            font-size: 35px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            text-transform: uppercase;
        }

        p {
            color: #000;
            font-family: "Open Sans";
            font-size: 18px;
            font-style: normal;
            font-weight: 300;
            line-height: normal;
            padding-top: 10px;
            margin-bottom: 25px;
        }
    }

    .servicesContainer {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 30px;
    }


    .servicesCard {
        background-color: transparent;
        border: none;
        text-align: center;
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    .servicesBadge {
        background-color: #333;
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        font-family: Share;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        color: white;
    }

    .servicesCol-lg {
        flex: 1;

        .servicesImagePlaceholder {
            width: 100%;
            height: 250px;
            background-color: #d9d9d9;
        }
    }

    .servicesCol-sm {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .servicesImagePlaceholder {
            width: 100%;
            max-height: 282px;
            object-fit: cover;
            flex-shrink: 0;
        }
    }



    .niveau-desc {
        padding: 28px;
        text-align: left;
        background: #F5F5F5;

        h4 {
            color: #000;
            font-family: Share;
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            text-transform: uppercase;
        }

        p {
            color: #000;
            font-family: "Open Sans";
            font-size: 18px;
            font-style: normal;
            font-weight: 300;
            line-height: normal;
        }

        .tag {
            text-align: left;
            padding-top: 10px;

            span {
                color: #FFF;
                font-family: Share;
                font-size: 18px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                text-transform: uppercase;
                padding: 10px;
                background: #F00;
                display: inline-block;
                text-align: left;
                margin-bottom: 10px;
            }
        }
    }

    .text-danger {
        color: #ff0000;
    }

}

/*** Section Contrôle de la Qualité ***/
.controle-qualite {
    background-image: url('../images/a-labelle-palettes/accueil/controle-de-la-qualite.png');
    /* Met l'image de fond ici */
    background-size: cover;
    padding: 139px 0;
    color: white;
    text-align: center;
    position: relative;
}

.controle-qualite::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    /* Ajoute une superposition noire semi-transparente */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.qualiteContenu {
    /*position: relative;*/
    z-index: 2;
}

.qualiteBadge {
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff0000;
    padding: 10px 15px;
    color: #FFF;
    font-family: Share;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    z-index: 2;
}

.qualiteTitre {
    color: var(--Rouge-vif, #F00);
    text-align: center;
    font-family: Share;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    padding-bottom: 21px;
}

.qualiteTexte {
    width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.qualiteTexte p {
    color: white;
    z-index: 2;
    position: relative;
    max-width: 650px;
    margin: auto;
    color: #FFF;

    text-align: center;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;

    &:not(:last-child) {
        padding-bottom: 21px;
    }
}

/* Section Qualite */
.accueilServices.qualiteServices {
    background-color: #F5F5F5;
}

.qualiteContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 59px 0;
}

/* Section Achat et Ramassage */
.achat-ramassage {
    padding: 68px 0;
    background: #F5F5F5;
    width: 100%;
}

.achat-ramassage-contenu {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.achat-ramassage-gauche,
.achat-ramassage-droite {
    width: auto;
    flex: 1;

    & .titre-section {
        color: #1F1F1F;
        font-family: Share;
        font-size: 75px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin-bottom: 0px;
    }


}

.titre-section {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.achat-ramassage p {
    color: #000;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0;
}

.images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.image-ramassage {
    width: 100%;
    height: auto;
}




/***************** Page contact ************/

.pageContact {
    margin-top: 45px;
    margin-bottom: 45px;
}

.pageContact .contactTitres {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.pageContact h1 {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;

    margin-top: 15px;
    margin-bottom: 15px;
    color: #938774;
}

.pageContact h2 {
    font-family: "Share", sans-serif;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 20px;
}

.pageContact .contactContenu {
    margin-bottom: 30px;
}

.pageContact .contactCoordo h5 {
    font-family: "Arimo", sans-serif;
    font-size: 15px;
    padding-bottom: 10px;
}

.pageContact .contactCoordo p {
    font-family: "Arimo", sans-serif;
    font-size: 13px;
    line-height: 18px;
}

.pageContact .contactCoordo a {
    color: #424242;
}

.pageContact .contactCoordo a:hover {
    opacity: 0.8;
}

.contactForm input[type="submit"] {
    background-color: #f5f5f5;
    border-color: #0000001a #0000001a #00000040;
    color: #333333;
    border-radius: 4px;
    padding: 4px 10px;
    width: 75px;
    box-sizing: border-box;
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    font-weight: 400;
}

.contactForm input[type="submit"]:hover {
    opacity: 0.8;
    background: #e6e6e6 !important;
}



/***************** Page soumission ************/

.pageSoumission {
    margin-top: 45px;
    margin-bottom: 45px;
}

.pageSoumission .soumissionTitre {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.pageSoumission h1 {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;

    margin-top: 15px;
    margin-bottom: 15px;
    color: #938774;
}

.pageSoumission .soumissionChoixPalette .choixPalette {
    display: block;
    position: relative;
    margin-bottom: 12px;

    cursor: pointer;
    user-select: none;
    font-size: 16px;
}

.pageSoumission .soumissionChoixPalette h3 {
    font-family: "Arimo", sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}

.pageSoumission input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}



.pageSoumission input[type="submit"] {
    font-size: 18px;
    font-family: "Share", sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #ff0000;
    width: 165px;
    box-sizing: border-box;
    padding: 20px 0px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    font-weight: 400;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 25px;
}

.pageSoumission input[type="submit"]:hover {
    opacity: 0.8;
}


/***************** Page À propos ************/

.pageaPropos {
    margin-top: 45px;
    margin-bottom: 45px;
}

.nomCie {
    font-weight: bold;
    color: #604b25;
}

.pageaPropos .aProposContenu p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Arimo", sans-serif;
}

.pageaPropos .aProposTitres {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.pageaPropos h1 {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;

    margin-top: 15px;
    margin-bottom: 15px;
    color: #938774;
}

.pageaPropos span {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;

    margin-top: 15px;
    margin-bottom: 15px;
    color: #938774;
}

.pageaPropos h2 {
    font-family: "Share", sans-serif;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 20px;
}

.pageaPropos h3 {
    font-size: 18px;
    line-height: 45px;
    font-weight: 700;
    color: #555555;
}

.aProposTemoignages {
    margin-bottom: 30px;
    margin-top: 30px;
}

.aProposTemoignagesImg {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);

    box-sizing: border-box;
    background-color: #f5f5f5;
    padding: 19px;
    margin-bottom: 20px;
}

.aProposTemoignagesImg img {
    width: 350px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}

.aProposTemoignages p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20.7px;
    font-family: "Arimo", sans-serif;
}

.aProposTemoignagesContenu {
    text-align: right;
}

.aProposTemoignagesContenu {
    border-right: 5px solid #eeeeee;
    margin-bottom: 18px;
    padding-right: 10px;
}

.aProposTemoignagesContenu span::before {
    content: '\2014 \00A0';
}

.aProposTemoignagesContenu .temoignagesAuteur {
    display: block;
    line-height: 18px;
    color: #999999;
}



/***************** Page produits ************/

.pageProduits .produitsTitres {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.pageProduits h1 {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;

    margin-top: 15px;
    margin-bottom: 15px;
    color: #938774;
}

.pageProduits h3 {
    font-size: 18px;
    line-height: 45px;
    font-weight: 700;
    color: #555555;
}

.pageProduits h4 {
    font-size: 24px;
    line-height: 72px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;

    color: #938774;
}

.pageProduits .produitsContenu p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Arimo", sans-serif;
}

.produitsPalettes {
    margin-bottom: 30px;
    margin-top: 30px;
}

.produitsPalettesContenu .produitsPalettesIMG {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    background-color: #f5f5f5;
    padding: 19px 19px 0px 19px;
    margin-bottom: 20px;
}

.produitsPalettesContenu .produitsPalettesIMG p {
    margin-top: 15px;
    font-family: "Arimo", sans-serif;
}

.produitsPalettesContenu .produitsPalettesIMG img {
    width: 350px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}



.accordion {
    color: #049cdb;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;

    padding: 8px 15px;
    border: 1px solid #e5e5e5;
    border-bottom: none;
    border-radius: 4px;
    background-color: #ffffff;

    font-family: "Arimo", sans-serif;
}

.accordion:hover {
    text-decoration: underline;
}



.panel {
    border: 1px solid #e5e5e5;
    border-bottom: none;
    padding: 0px 18px;
    background-color: #ffffff;
    max-height: 0;

    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.produitsAccordion {
    border: 1px solid #e5e5e5;
    margin-bottom: 5px;
    border-radius: 4px;
}

.produitsAccordion p {
    margin-bottom: 15px;
    margin-top: 15px;
}

.produitsAccordion .btnBleu {
    padding: 5px 9px;
    font-size: 11px;
}



.produitsPalettesTxt p {
    font-family: "Arimo", sans-serif;
}

.produitsPalettesTxt a {
    padding: 5px 9px;
}

.produitsPalettesSurMesure .produitsPalettesTxt {
    padding-top: 25px;
    padding-right: 40px;
    box-sizing: border-box;
}

.produitsPalettesSurMesure .produitsPalettesIMG {
    padding: 19px;
}

.palettesSurMesureSoumssion {
    margin-top: 30px;
}

.produitsDemander {
    float: right;
    margin: 10px;
}





/**************** End section style ***********/







/****************************** footer *****************************************************/



footer {
    background-color: #1f1f1f;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer h6 {
    font-weight: 100;
    font-size: 30px;
    color: #fff;
    margin: 1px 0 0;
    padding-bottom: 10px;
    font-family: "Share", cursive;
}

footer h6.logo {
    border-bottom: none;
    margin-bottom: 15px;
}

footer a {
    color: #fff;
    font-family: "Share", cursive;
}

footer a:hover {
    color: #604b25;
    text-decoration: none;
}

/* footer ul{padding-left:20px;}  */

footer li {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 16px;
}

footer p {
    font-size: 14px;
    color: #fff;
    line-height: 19px;
}

footer .fentreprise {
    margin-bottom: 20px;
}

footer .fentreprise h6 {
    font-size: 40px;
    font-family: "Share", cursive;
}

footer .entreprise p {
    width: 70%;
}

footer .fcoordonnees a {
    font-size: 16px;
}

.footer_top .contact-icon {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.footer_top .contact-icon a:not(:first-child) {
    margin: 0 10px
}

.footer_top .h_ouv {
    list-style: none;
    padding: 0;
    width: 196px;
}

.footer_top .opening-hour {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.footer_top .day {
    width: 100px;
    flex-shrink: 0;
    text-align: left;
    margin-right: 10px;
}

.footer_top .time {
    flex-grow: 1;
    text-align: left;
}

.footer_bottom {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    background-color: #000;
}

.footer_bottom .copyright {
    float: left;
}

.footer_bottom .concepsim {
    float: right;
    text-align: right;
}

.footer_bottom .concepsim a {
    font-weight: 400;
}

.footer_bottom .concepsim a:hover {
    color: #fff;
    text-decoration: underline;
}

/* NEW VERSION */
footer {
    .col2_3r.lbp {
        width: 66%;
        margin: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: flex-start;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 3%;
    }

    .col1_2 {
        float: none;
        margin: 0 10%;
        width: auto;
        flex: 1;
    }

    .fliens_rapides h6 {
        margin: 0 10%;
    }
}

/****************************** End footer *****************************************************/



/* WYSIWYG*/

.contenu {
    margin-bottom: 20px
}

.contenu li {
    list-style-type: disc;
    padding-left: 15px;
    margin-left: 20px;
    margin-bottom: 5px;
}

.contenu h1,
.contenu h2,
.contenu h3,
.contenu h4,
.contenu h5,
.contenu h6 {
    color: #ff7c41;
    margin: 0 0 25px;
}

.contenu h1 {
    font-size: 26px;
}

.contenu h2 {
    font-size: 22px;
}

.contenu h3 {
    font-size: 18px;
}

.contenu h4 {
    font-size: 16px;
}

.contenu h5 {
    font-size: 16px;
}

.contenu h6 {
    font-size: 16px;
}



.contenu div {
    margin-bottom: 25px;
}

.contenu table {
    margin-bottom: 25px;
}

.contenu td,
.contenu th {
    vertical-align: top
}



.contenu .text_right {
    width: 90%;
    margin-left: 10%
}

.contenu .text_left {
    width: 90%;
    margin-right: 10%
}



.c2coltxtp .col_1 {
    float: left;
}

.c2coltxtp .col_2 {
    float: right;
}



/* .3coltxtp .col_1{float:left;margin-right:3%}

.3coltxtp .col_2{float:left;margin-right:3%}

.3coltxtp .col_3{float:right;} */





/**** Responsive *****/
@media screen and (max-width:1250px) {
    .servicesAccueil {
        .servicesImages {
            width: 34%;
        }
    }

    .servicesAccueil {
        .servicesBadge {
            left: 22.5%;
            padding: 10px 15px;
        }
    }

    .servicesAccueil {
        .servicesTexte h3 {
            padding: 0;
            font-size: 28px;
        }
    }

    .servicesAccueil {
        .servicesTexte p {
            padding: 0;
            font-size: 16px;
        }
    }
}



@media screen and (max-width:1250px) {
    /* Mettre la valeur de la largeur de la page*/



    .text_right {
        width: 90%;
        margin-left: 5%;
    }

    .text_left {
        width: 90%;
        margin-right: 5%;
    }

    ul.dropdown li {
        margin-left: 30px
    }


    .accueil_slider .accueilSliderTxt {
        bottom: 35%;
        transform: translate(0, -35%);
    }

    .accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h1,
    .accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h3 {
        font-size: 26px;
    }

    .accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h4,
    .accueil_slider .accueilSliderContenu.lbp .accueilSliderTxt h2 {
        font-size: 18px;
    }


}

@media screen and (max-width:1200px) {

    .accueilServices {
        & .serviceQuoteLink {
            width: auto;
        }
    }

    .accueilServices {
        &#qualite {
            & .accueilServicesContenu {
                width: 95%;
                margin-left: auto;
                margin-right: auto;
            }
        }
    }

    .aproposBadge {
        font-size: 28px;
    }
}

@media screen and (max-width:1170px) {

    .fullpagewidth {
        width: 95%;
        margin-left: auto;
        margin-right: auto
    }





}

@media screen and (max-width:1100px) {

    header .header-bottom .hBtnSoumission {
        width: 140px;
    }





}

@media screen and (max-width: 1024px) {

    .livraisonGratuiteContenu {
        flex-direction: column;
    }

    .livraisonGratuiteContenuTxt:not(.fullRight) {
        width: 100%;
        padding: 35px 25px 75px 25px;
    }

    .livraisonGratuiteImg::before {
        display: none;
    }

    .livraisonGratuiteImg {
        display: none;
    }

    .livraisonGratuite {
        padding-bottom: 0;
        width: 100%;
        display: block;
    }

    .aproposAccueil {
        background-color: #fff;
    }

    .aproposContenu {
        flex-direction: column;
        padding-top: 0;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .aproposTexte {
        order: 2;
        display: flex;
        width: 100%;
        margin-right: 0;
        padding: initial;
        padding-top: 25px;
        gap: 15px;
    }

    .aproposValeurs {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .aproposImg {
        order: 1;
        width: 100%;
    }

    .servicesAccueil {
        .servicesImages {
            display: none;
        }
    }

    .servicesAccueil {
        .servicesContenu {
            display: block;
        }
    }

    .servicesAccueil {
        .servicesTexte {
            width: auto;
            padding: 10px;
        }
    }

    .servicesAccueil {
        .servicesBadge {
            left: 50%;
            padding: 10px 15px;
        }
    }

    .servicesAccueil {
        .servicesTexte h3 {
            max-width: none;
            padding-top: 28px;
        }
    }

    .niveau-qualite {
        .servicesContainer {
            flex-direction: column;
        }
    }

    .accueilServices {
        &#qualite {
            & .serviceContenu {
                margin-bottom: 0px;
                border: none;
                padding: 0;
                max-width: 100%;
            }

            .serviceContenuTxt {
                text-align: left;
                padding-top: 0;
                padding-bottom: 35px;
            }
        }
    }

    .achat-ramassage-droite {
        display: none;
    }

    .qualiteTexte {
        max-width: 850px;
        width: 95%;
    }

    .accueilServices {

        .col1_2,
        .col1_2f,
        .col1_2r,
        .col1_3,
        .col1_3f,
        .col1_3r,
        .col1_4,
        .col1_4f,
        .col1_4r,
        .col1_5,
        .col1_5f,
        .col1_5r,
        .col1_6,
        .col1_6r,
        .col2_3,
        .col2_3r,
        .col3_4,
        .col3_4r,
        .col2_5,
        .col3_5r,
        .col4_5,
        .col4_5r,
        .col2_5r,
        .col3_5,
        .col5_6,
        .col5_6r {
            width: 100%;
            float: none;
            margin: 0;
        }

        &:not(#qualite) .serviceContenu,
        .serviceContenu.col1_3f {
            max-width: 100%
        }

        .c2coltxtp .col_1,
        .c2coltxtp .col_2 {
            width: 100% !important;
        }
    }

    .accueilServicesContenu {
        flex-direction: column;
    }

    .accueilServices {
        & .serviceContenuImg {
            .overlay-text {
                opacity: 1 !important;
                visibility: visible !important;
            }
        }
    }

    .accueilServices {
        & .serviceContenuImg {
            position: relative;
            display: block;
            height: 100vh;
            max-height: 476px;
            width: 100%;
            padding-bottom: 25px;

            & img {
                max-width: 100% !important;
            }
        }
    }

    footer {
        .col2_3r.lbp {
            width: 100%;
            display: block;
        }

        .col1_2r.fcoordonnees {
            padding-top: 25px;
        }
    }

}

@media screen and (max-width: 1023px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: block
    }

    .gallery .photos_gallery_cont .photo_cont {
        width: 30%;
        margin: 0 1.6% 10px
    }



}

@media only screen and (max-width: 950px) {

    .right {
        width: 100% !important;
    }

    .left {
        width: 100% !important;
    }

    .text_left,
    .text_right {
        width: 100%;
        margin: 0;
    }

    .col1_2,
    .col1_2f,
    .col1_2r,
    .col1_3,
    .col1_3f,
    .col1_3r,
    .col1_4,
    .col1_4f,
    .col1_4r,
    .col1_5,
    .col1_5f,
    .col1_5r,
    .col1_6,
    .col1_6r,
    .col2_3,
    .col2_3r,
    .col3_4,
    .col3_4r,
    .col2_5,
    .col3_5r,
    .col4_5,
    .col4_5r,
    .col2_5r,
    .col3_5,
    .col5_6,
    .col5_6r {
        width: 100%;
        float: none;
        margin: 0;
    }

    .c2coltxtp .col_1,
    .c2coltxtp .col_2 {
        width: 100% !important;
    }

    /* .3coltxtp .col_1, .3coltxtp .col_2, .3coltxtp .col_3{width:100%!important;} */

    .contenu .text_right {
        width: 100%;
        margin-left: 0
    }

    .contenu .text_left {
        width: 100%;
        margin-right: 0
    }

    #primary_nav_mobile {
        display: block
    }

    #primary_nav {
        display: none
    }

    header .hLogo {
        width: 50%;
        margin-top: 12px
    }

    /* header .hLogo{text-align: center;} */



    header .header-bottom .hBtnSoumission {
        margin: 10px auto;
    }

    footer {
        text-align: center;
    }



    .accueil_slider .accueilSliderImg img {
        width: auto;
        margin-right: auto;
        margin-left: auto;
    }





    .accueilServices .accueilServicesContenu {
        flex-direction: column;
    }

    .accueilServices .serviceContenu:nth-child(2) {
        margin-right: auto;
        margin-left: auto;
    }

    /*.accueilServices .accueilServicesContenu .serviceContenuImg img {
        width: 350px;
        max-width: 100%;
        margin: 20px auto
    }*/



    .aProposTemoignagesTxt {
        padding-top: 20px;
    }

    .footer_top .h_ouv {
        max-width: 90%;
        margin: 0 auto;
    }

    .footer_top .day {
        width: 90px;
    }

    .footer_bottom .copyright {
        float: none;
    }

}

@media only screen and (max-width: 900px) {
    .accueil_slider .accueilSliderTxt {
        padding: 36px 32px;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 768px) {
    .accueil_slider .accueilSliderTxt {
        bottom: 32%;
        left: 0%;
        transform: translate(-0%, -32%);
        max-width: 60%;
        padding: 26px 26px;
        box-sizing: border-box;
    }

    .livraisonGratuiteContenuTxt:not(.fullRight) {
        width: 95%;
        margin: auto;
        padding: 36px 0 63px;
    }

    .livraisonGratuiteContenu {
        flex-direction: column;
        background-color: #F5F5F5;
    }

    .livraisonGratuite {
        &:not(.fullRight) {
            max-width: 1170px;
            width: 100%;
        }
    }

    .aproposTexte {
        flex-direction: column;
    }

    .servicesAccueil {
        .servicesBadge {
            padding: 10px 15px;
            font-size: 23px;
            width: 80%;
            text-align: center;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    .qualiteBadge {
        font-size: 23px;
        width: 80%;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .controle-qualite {
        padding: 50px 0;
    }

    .servicesAccueil {
        .servicesTexte p {
            padding: 0;
            font-size: 16px;
            width: 95%;
        }
    }

    .servicesAccueil {
        .servicesTexte h3 {
            max-width: 95%;
            padding-top: 8%;
        }
    }

    .accueilServices {
        padding: 0;
    }
}

@media only screen and (max-width: 700px) {
    .accueil_slider .accueilSliderTxt {
        bottom: 40%;
        left: 0%;
        transform: translate(-0%, -40%);
        max-width: 60%;
        padding: 15px;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 667px) {
    .footer_top .day {
        width: 80px;
    }

    .footer_top .opening-hour {
        font-size: 14px;
    }
}

@media only screen and (max-width: 567px) {
    .accueil_slider .accueilSliderTxt {
        display: none;
    }

    .accueilServices {
        & .serviceQuoteLink {
            width: 95%;
            margin: auto;
            font-size: 24px;
            padding: 10px 0 10px 0;
            margin-bottom: 25px;
        }
    }

    .niveau-qualite {
        padding: 50px 0;
    }

    .accueilServices {
        &#qualite {
            padding: 50px 0px;
        }
    }

    .achat-ramassage {
        padding: 36px 0;
        background: #F5F5F5;
        width: 100%;
    }

    .aproposBadge {
        font-size: 23px;
        width: 80%;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 480px) {

    p,
    li {
        font-size: 16px;
        line-height: 25px
    }

    header .h_left,
    header .h_right {
        float: none;
        width: 100%;
        text-align: center;
    }

    header .h_right {
        padding-top: 0
    }

}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 375px) {

    textarea,
    input[type="text"] {
        width: 90%
    }

    header .header-top .h_left {
        display: flex;
        flex-direction: column;
    }



}

@media only screen and (max-width: 320px) {}


/* CSS */
.xxx_produits {
    /* passe de 1200px max à 90% de la fenêtre min à 320px max */
    max-width: clamp(320px, 90vw, 1200px);
    margin: 0 auto;
    /* padding qui s’ajuste également */
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    overflow: visible;
}

/* 1) Assurer que le débordement soit visible */
.xxx_produits,
.xxx_produits__contenu {
    overflow: visible;
}

/* 2) Décaler l’image vers la gauche pour qu’elle dépasse du container */
.xxx_produits__image {
    /* calcule la moitié de la largeur qui dépasse (100vw – 1200px)/2 */
    margin-left: calc((1200px - 100vw) / 2);
    /* empêcher que Flex la rétrécisse */
    flex: 0 0 auto;
}

/* Titre "PRODUITS" */
.xxx_produits__titre {
    font-family: "Share", sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

/* Sous-titre */
.xxx_produits__sous-titre {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    color: #060505;
    font-weight: 400;
    margin: 0;
    line-height: 25px;
}

/* Wrapper pour image + texte */
.xxx_produits__contenu {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    justify-content: center;
}

/* Image */
.xxx_produits__image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Bloc texte à droite */
.xxx_produits__texte {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* "PLUS DE ... EN STOCK !" */
.xxx_produits__highlight {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    background-color: #f5f5f5;
}

.xxx_highlight--plus {
    font-family: "Share", sans-serif;
    font-size: clamp(24px, 3vw, 35px);
    letter-spacing: 0;
    text-transform: uppercase;
    color: #060505;
    font-weight: 700;
}

.xxx_highlight--chiffre {
    font-family: "Share", sans-serif;
    font-size: clamp(24px, 3vw, 35px);
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ff0000;
    font-weight: 700;
}

/* Texte descriptif */
.xxx_produits__offre,
.xxx_produits__desc {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #060505;
    line-height: 1.1;
    margin: 0;
}

.yyy {
    line-height: 1.4;
    font-weight: 500;
}

.xxx_produits__offre {
    width: 660px;
    height: 151px;
    font-size: 35px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #060505;
    font-weight: 700;
    font-family: "Share";
}



/* ==================== Styles Medium (≤ 1440px) ==================== */
@media (max-width: 1440px) {
    .xxx_produits__contenu {
        display: flex;
        gap: clamp(1rem, 2vw, 2rem);
        align-items: flex-start;
        justify-content: center;
    }

    .xxx_produits__image {
        flex: 0 0 clamp(300px, 50%, 600px);
        margin-left: max(calc((1200px - 100vw) / 2), 0px);
    }

    .xxx_produits__offre {
        font-size: clamp(24px, 3vw, 35px);
    }

    .xxx_produits__image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .xxx_produits__texte {
        flex: 1;
    }



}

/* ==================== Styles Mobile (≤ 768px) ==================== */
@media (max-width: 768px) {
    .xxx_produits__contenu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .xxx_produits__image {
        margin-left: 0;
        width: 100%;
        flex: none;
    }

    .xxx_produits__texte {
        width: 100%;
        text-align: center;
    }

    .xxx_highlight--plus,
    .xxx_highlight--chiffre {
        font-size: 24px;
        /* override clamp si besoin */
    }

    .xxx_produits__offre {
        font-size: 24px;
    }

    .xxx_produits__desc {
        font-size: 14px;
    }

    .xxx_produits__offre {
        width: unset;
    }

    .xxx_left {
        margin-left: 0px !important;
    }
}

/* CSS */
.xxx_facteurs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible;
    /* pour les débordements éventuels */
}

.xxx_facteurs__titre {
    font-family: "Share", sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.xxx_facteurs__intro {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #060505;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto;
}

.xxx_facteurs__columns {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Chaque colonne, bordures rouges entre-elles */
.xxx_facteurs__column {
    flex: 1;
    padding: 0 1rem;
    border-left: 2px solid #ff0000;
}

.xxx_facteurs__column:first-child {
    border-left: none;
}

.xxx_facteurs__column-title {
    font-family: "Share", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Liste sans puces classiques, avec «» rouges en début de ligne */
.xxx_facteurs__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.xxx_facteurs__list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: unset;
    font-size: 16px;
    color: #060505;
    line-height: 1.4;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.xxx_icon::before {
    content: "»";
    color: #ff0000;
    display: inline-block;
    margin-right: 0.5em;
    /* facultatif : alignement vertical si besoin */
    vertical-align: middle;
}

.xxx_right {
    text-align: right;
    width: 300px;
}

.xxx_center {
    text-align: center;
}

.xxx_left {
    text-align: left;
    margin-left: 30px;
}

/* ==================== Styles Mobile (≤ 768px) ==================== */
@media (max-width: 920px) {
    .xxx_facteurs {
        padding: 1rem;
    }

    .xxx_facteurs__titre {
        font-size: 28px;
        line-height: 1.2;
    }

    .xxx_facteurs__intro {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 1rem;
    }

    .xxx_facteurs__columns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .xxx_facteurs__column {
        /* plus de bordures verticales, mais une bordure horizontale */
        border-left: none;
        border-top: 2px solid #ff0000;
        padding: 1rem 0;
    }

    /* Titre de colonne plus petit et aligné à gauche */
    .xxx_facteurs__column-title {
        font-size: 16px;
        margin-bottom: 0.75rem;
        text-align: left !important;
        width: auto !important;
    }

    /* Texte de liste plus petit */
    .xxx_facteurs__list li {
        font-size: 14px;
        padding-left: 1.2em;
    }

    /* Icone un peu plus discrète */
    .xxx_icon::before {
        margin-right: 0.4em;
    }
}

/* SECTION PLEINE LARGEUR AVEC BG IMAGE */
/* ============================ */
/* 1. Styles de base (Desktop)  */
/* ============================ */
.xxx_soumission {
    position: relative;
    overflow: visible;
    background: url('../images/a-labelle-palettes/palette_en_bois_bg.png') center/cover no-repeat;
    padding: 4rem 0;
    height: 240px;
}

.xxx_soumission__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.4rem 2rem;
    text-align: center;
}

/* TITRE: taille fluide entre 24px et 36px, idéal à 3vw */
.xxx_soumission__title {
    display: inline-block;
    background-color: #ff0000;
    font-family: "Share", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    line-height: clamp(20px, 2.5vw, 26px);
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.5rem 1rem;
    margin: 0;
}

/* SOUS-TITRE: taille fluide entre 24px et 39px, idéal à 4vw */
.xxx_soumission__subtitle {
    font-family: "Share", sans-serif;
    font-size: clamp(24px, 4vw, 39px);
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1.5rem;
}

.xxx_soumission__btn {
    background-color: #ff0000;
    width: 165px;
    box-sizing: border-box;
    padding: 20px 0px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    font-size: 24px;
    font-family: "Share", sans-serif;
    color: #ffffff;
}

/* ================================= */
/* 2. Media-query Mobile (≤ 768px)   */
/* ================================= */
@media (max-width: 768px) {
    .xxx_soumission {
        padding: 2rem 0;
        height: auto;
    }

    .xxx_soumission__inner {
        padding: 1.5rem 1rem;
    }

    .xxx_soumission__title {
        /* override clamp si besoin pour un max plus bas */
        font-size: 28px;
        line-height: 1.2;
        padding: 0.4rem 0.8rem;
    }

    .xxx_soumission__subtitle {
        font-size: 20px;
        line-height: 1.2;
        margin-top: 1rem;
    }
}




.xxx_nouveaute_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 80px 0;
    height: 720px;
    max-width: 1340px;
}




.xxx_nouveaute_top {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 65px;
    padding-right: 99px;
    max-width: 630px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.xxx_nouveaute_text {
    height: 220px;
}

.xxx_nouveaute_text span {
    font-size: 75px;
    line-height: 25px;
    color: #ff0000;
    font-weight: 700;
    font-family: "Share", sans-serif;
    margin: 0;
    text-align: right;

}

.subtitle {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    margin-top: 25px;

    font-size: 30px;
    letter-spacing: 0;
    color: #060505;
    font-weight: 700;
    font-family: "Share", sans-serif;
    margin: 10px 0 0;
    margin-top: 10px;
    line-height: 1.1;
    text-align: right;
}


.xxx_nouveaute_text p {
    font-size: 30px;
    letter-spacing: 0;
    color: #060505;
    font-weight: 700;
    font-family: "Share", sans-serif;
    margin: 10px 0 0;
    line-height: 1.1;
    text-align: right;
    margin-top: 50px;
}

.xxx_nouveaute_text .subtitle {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    margin-top: 25px;
}

.xxx_nouveaute_img {
    width: auto;
    margin-left: 20px;
    position: relative;
    top: -265px;
    left: 480px;
}

.xxx_nouveaute_main-img {
    height: auto;
    object-fit: cover;
    top: -330px;
    left: 52px;
    position: relative;
}

/* Media Query pour 2560x1440 */
@media (min-width: 2560px) {
    .xxx_nouveaute_section {
        position: relative;
        left: 350px;
    }

}

/* Media Query pour 4K (3840x2160) */
@media (min-width: 3840px) {
    .xxx_nouveaute_section {
        position: relative;
        left: 900px;
    }
}


@media (max-width: 1420px) {
    .xxx_nouveaute_section {
        position: relative;
        left: calc((100vw - 1340px) / 2);
    }
}

/* ==================== */
/*  Styles Mobile (≤768px) */
/* ==================== */
@media (max-width: 980px) {
    .xxx_nouveaute_section {
        position: unset;
        margin: 40px 1rem;
        height: auto;
    }

    /* Top : passer en colonne, réduction des paddings */
    .xxx_nouveaute_top {
        flex-direction: column;
        align-items: center;
        padding: clamp(1rem, 5vw, 4rem);
        max-width: 90%;
        width: 100%;
        margin-bottom: 1rem;
    }

    .xxx_nouveaute_text {
        height: auto;
        text-align: center;
    }

    /* Titre : fluide entre 32px et 75px */
    .xxx_nouveaute_text h2 {
        font-size: clamp(32px, 6vw, 75px);
        line-height: 1.1;
        margin: 0;
        text-align: center;
    }

    /* Paragraphes : fluide entre 16px et 30px */
    .xxx_nouveaute_text p {
        font-size: clamp(16px, 4vw, 30px);
        line-height: 1.2;
        margin: 0.75rem 0 0;
        text-align: center;
    }

    .xxx_nouveaute_text .subtitle {
        font-size: clamp(14px, 3vw, 18px);
        margin-top: 0.5rem;
    }

    /* Images : position statique et centrage */
    .xxx_nouveaute_img,
    .xxx_nouveaute_main-img {
        position: static;
        top: auto;
        left: auto;
        margin: 1rem auto 0;
        width: 80%;
        max-width: 300px;
        height: auto;
        object-fit: contain;
    }
}

/* ============================ */
/* 1. Styles de base (Desktop)  */
/* ============================ */
.xxx_hero-environnement {
    position: relative;
    width: 100%;
    background: url('../images/a-labelle-palettes/forest-background.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding fluide entre 40px et 80px */
    padding: clamp(40px, 5vw, 80px) 2rem;
    box-sizing: border-box;
}

.xxx_hero-environnement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.xxx_hero-environnement .xxx_hero-content {
    position: relative;
    /* largeur max fluide entre 300px et 800px, 80% de la fenêtre */
    max-width: clamp(300px, 80%, 800px);
    width: 100%;
}

.xxx_hero-environnement .xxx_hero-content p {
    color: #fff;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    font-weight: 400;
    font-family: "Share", sans-serif;
    /* typo fluide entre 24px et 36px */
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 0;
}

/* ================================= */
/* 2. Media-query Mobile (≤ 768px)   */
/* ================================= */
@media (max-width: 768px) {
    .xxx_hero-environnement {
        /* on réduit encore le padding vertical si besoin */
        padding: clamp(20px, 6vw, 40px) 1rem;
    }

    .xxx_hero-environnement .xxx_hero-content p {
        /* override pour mobile : typo plus petite, jusqu’à 18px min */
        font-size: clamp(18px, 4vw, 24px);
        line-height: 1.3;
    }
}


.palettes-section {
    background: url('../images/a-labelle-palettes/bg-wood-red.png') center center / cover no-repeat;
    padding: 80px 20px;
    box-sizing: border-box;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cards-container .card+.card {
    position: relative;
}

.cards-container .card+.card::before {
    content: "";
    position: absolute;
    left: -15px;
    /* gap/2 négatif */
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: #ff0000;
}

.card {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
    margin-top: 40px;
    /* espace pour le label rouge */
    display: flex;
    flex-direction: column;
}

.card .label {
    display: block;
    text-transform: uppercase;
    font-family: "Share", sans-serif;
    font-weight: 700;
    text-align: center;
}

.card .label--red {
    position: absolute;
    top: 0;
    left: 67%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    z-index: 1;
    width: 154px;
    font-size: 18px;
}

.card .label--black {
    display: inline-block;
    /* ne prend que la place de son contenu */
    width: auto;
    /* s’assure qu’il n’étire pas le parent */
    margin: 35px auto 20px;
    padding: 8px 12px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-family: "Share", sans-serif;
    font-weight: 700;
    font-size: 16px;
    /* adapte si besoin */
    line-height: 1;
    box-sizing: border-box;
}

.card .xxx_c {
    margin-left: 78px;
}

.card .xxx_l {
    margin-left: 185px;
}

.card .xxx_r {
    margin-left: 156px;
}




.card-img {
    width: 370px;
    height: 415px !important;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body p {
    margin: 0 0 20px;
    color: #060505;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: "Open Sans";
}

.card-link {
    text-decoration: none;
    margin-top: auto;
    text-align: right;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 26px;
    color: #ff0000;
    font-weight: 700;
    font-style: italic;
    font-family: "Share";
}

@media (max-width: 1149px) {
    .cards-container .card+.card::before {
        display: none;
    }
}

.xxx_form_section {
    margin: 0;
    padding: 0;
    font-family: 'Share', sans-serif;
    background: url('images/a-labelle-palettes/palette-bg.png') no-repeat center center fixed;
    background-size: inherit;
    color: white;
}

.xxx_form_container {
    max-width: 1160px;
    margin: auto;
    padding: 50px 20px;
}

.xxx_form_h1 {
    font-size: 2rem;
    letter-spacing: 1px;
    color: #ff0000;
    font-weight: 400;
    font-family: 'Share', sans-serif;
    margin: 0;
}

.xxx_form_intro {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    width: 100%;
    font-family: 'Share', sans-serif;
    color: black;
}

.xxx_form_label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 30px;
    display: block;
    font-family: 'Share', sans-serif;
    color: black;
}

.xxx_form_input,
.xxx_form_textarea {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: 2px solid red;
    border-radius: 5px;
    font-size: 18px;
    background-color: white;
    color: black;
    font-family: 'Share', sans-serif;
    box-sizing: border-box;
    border-radius: 12px !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: red !important;
}

.xxx_form_row {
    display: flex;
    gap: 20px;
}

.xxx_form_row>div {
    flex: 1;
}

.xxx_form_full-width {
    width: 100%;
}

#envoyer {
    background-color: red;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border: none;
    padding: 15px 40px;
    margin-top: 40px;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Share', sans-serif;
}

.xxx_form_info_section {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    /* margin-top: 30px; */
}

.xxx_form_info_text {
    width: 48%;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.1;
    text-align: end;
    font-family: 'Share', sans-serif;
    color: black;
    font-weight: bold;
}

.xxx_form_info_inputs {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
}

.xxx_first_input {
    width: 90%
}

.xxx_second_input {
    width: 90%
}

.xxx_form_checkbox_wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-family: 'Share', sans-serif;
}

.xxx_form_checkbox_wrapper input[type="checkbox"] {
    display: none;
}

.xxx_form_checkbox_wrapper label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    font-weight: normal;
    font-family: 'Share', sans-serif;
}

.xxx_form_checkbox_wrapper label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 18px;
    border: 2px solid red;
    border-radius: 20px;
    background-color: transparent;
    transition: background-color 0.2s;
}

.xxx_form_checkbox_wrapper input[type="checkbox"]:checked+label::before {
    background-color: white;
}

.xxx_form_mini_input {
    max-width: 250px;
}

.xxx_form_pac_target_input {
    width: 97.5% !important;
}

.envoyertwo {
    font-size: 18px !important;
    padding: 0px 40px !important;
    margin-top: 30px !important;
    border-radius: 50px !important;
    height: 40px !important;
    background-color: red;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border: none;
    padding: 15px 40px;
    margin-top: 40px;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Share', sans-serif;
}

/* Responsive */
@media (max-width: 1160px) {
    .xxx_form_info_inputs {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .xxx_form_section {
        background-size: auto;
    }

    .xxx_form_container {
        padding: 30px 15px;
    }

    .xxx_form_intro {
        font-size: 16px;
        line-height: 22px;
        width: 100%;
        color: black;
    }

    .xxx_form_h1 {
        font-size: 28px;
        text-align: center;
    }

    .xxx_form_label {
        font-size: 1rem;
        margin-top: 20px;
    }

    .xxx_form_input,
    .xxx_form_textarea {
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 12px !important;
    }

    .xxx_form_pac_target_input {
        width: 100% !important;
    }

    .xxx_form_row {
        flex-direction: column;
        gap: 0;
    }

    .xxx_form_info_section {
        flex-direction: column;
        gap: 20px;
    }

    .xxx_form_info_text {
        width: 100%;
        font-size: 16px;
        text-align: left;
    }

    .xxx_form_info_inputs {
        flex-direction: column;
        display: flex;
        width: 100%;
        gap: 20px;
        padding: 0;
    }

    .xxx_form_info_inputs input {
        max-width: 100% !important;
    }

    .xxx_form_mini_input {
        width: 100% !important;
        max-width: 100% !important;
    }



    .xxx_form_checkbox_wrapper {
        flex-direction: column;
        align-items: flex-start;
        font-size: 16px;
    }

    .xxx_form_checkbox_wrapper label {
        padding-left: 35px;
    }

    .xxx_first_input,
    .xxx_second_input {
        width: 100%;
    }
}


/* ============================= */
/* Carousel Section (Desktop)    */
/* ============================= */
.xxx_carousel_section {
    background-color: #222;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

.xxx_carousel_title {
    font-family: 'Share', sans-serif;
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* container qui masque le débordement */
.xxx_carousel {
    position: relative;
    margin: 0 auto;
    /* masque tout ce qui dépasse */
    overflow: hidden;
    /* 4 items de 270px + 3 gaps de 20px = 1140px */
    width: calc(4 * 270px + 3 * 20px);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* piste qui défile */
.xxx_carousel_track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}



/* chaque item */
.xxx_carousel_item {
    flex: 0 0 270px;
    height: 270px !important;
    width: 270px !important;
    object-fit: cover;
    border-radius: 5px;
}

/* flèches */
.xxx_carousel_prev,
.xxx_carousel_next {
    cursor: pointer;
}

/* espacement autour des flèches si besoin (elles sont dans .xxx_carousel_dots) */
.xxx_carousel_prev {
    margin-right: 10px;
}

.xxx_carousel_next {
    margin-left: 10px;
}

/* les dots */
.xxx_carousel_dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.xxx_voir_en_mobile {
    display: none !important;
}

.xxx_carousel_dot {
    width: 12px;
    height: 12px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.xxx_carousel_dot.active {
    background-color: #ff0000;
}

@media (max-width: 768px) {
    .xxx_carousel_item {
        -webkit-user-drag: none;
        user-drag: none;
    }

    .xxx_carousel_prev,
    .xxx_carousel_next,
    .xxx_carousel_dot {
        touch-action: manipulation;
        /* indique que seul le tap est attendu */
        -webkit-tap-highlight-color: transparent;
        /* enlève le halo bleu qui gêne */
    }

    .xxx_carousel {
        width: 100vw;
        /* plein écran */
        max-width: 100%;
        /* pour éviter tout débordement */
    }

    .xxx_carousel_track {
        /* en ligne, mais chaque item fait 100% */
        display: flex;
        transition: transform 0.3s ease;
    }

    .xxx_carousel_item {
        flex: 0 0 100%;
        /* un seul item visible à la fois */
        width: 100%;
        /* occupe toute la largeur du carrousel */
        height: 270px !important;
        /* hauteur automatique pour conserver le ratio */
        object-fit: cover;
        /* couvre sans déformation */
    }

    /* afficher seulement les dots utiles (si tu en as 3 slides, conserve 3 dots) */
    .xxx_carousel_dot {
        display: inline-block;
    }

    .xxx_voir_en_mobile {
        display: inline-block !important;
    }


    .xxx_carousel_next {
        margin-left: 20px;
    }

    .xxx_carousel_prev {
        margin-right: 20px;
    }
}

.xxx_text_section {
    background: #f5f5f5;
    padding: 60px 20px;
}

.xxx_text_container {
    max-width: 1170px;
    margin: 0 auto;
    color: #060505;
    font-family: 'Share', sans-serif;

    line-height: 1.6;
}

.xxx_text_container p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.3rem;
}

.xxx_text_highlight {
    color: #ff0000;
    margin-bottom: 20px;
}


/* ==============================
   NEW PRODUIT - SECTION TITRE
============================== */

.newProduit-sectionTitre {
    width: 100%;
    padding: 45px 20px 32px;
    box-sizing: border-box;
}

.newProduit-sectionTitre__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.newProduit-sectionTitre__title {
    color: #000;
    font-family: "Share Tech", monospace;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .newProduit-sectionTitre {
        padding: 24px 16px;
    }

    .newProduit-sectionTitre__title {
        font-size: 36px;
    }
}

@media screen and (max-width: 480px) {
    .newProduit-sectionTitre__title {
        font-size: 30px;
    }
}


/* ==============================
   NEW PRODUIT - TYPE BLOCK
============================== */

.newProduit-typeBlock {
    width: 100%;
    background: #fff;
    padding: 25px 20px 55px;
    box-sizing: border-box;
}

.newProduit-typeBlock__inner {
    position: relative;
    width: 100%;
    max-width: 1180px;
    min-height: 535px;
    margin: 0 auto;
}

.newProduit-typeBlock__card {
    width: 830px;
    height: 533px;
    background: #F5F5F5;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.newProduit-typeBlock__content {
    width: 381px;
    padding-top: 90px;
    padding-left: 47px;
    box-sizing: border-box;
}

.newProduit-typeBlock__title {
    color: #000;
    font-family: "Share", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.newProduit-typeBlock__text {
    width: 381px;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 78px;
}

.newProduit-typeBlock__btn {
    display: inline-flex !important;
    padding: 20px !important;
    align-items: center;
    gap: 21px;
    background: #F00 !important;
    color: #FFF !important;
    font-family: "Share", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.newProduit-typeBlock__btn:hover {
    background: #1F1F1F !important;
    color: #FFF !important;
}

.newProduit-typeBlock__btn span {
    color: #FFF !important;
}

.newProduit-typeBlock__btnIcon {
    width: 36px;
    height: auto !important;
    display: block;
    flex-shrink: 0;
}

.newProduit-typeBlock__imageWrap {
    position: absolute;
    top: 74px;
    left: 406px;
    width: 913px;
    height: 509px;
    overflow: hidden;
    z-index: 2;

}

.newProduit-typeBlock__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    margin-left: 40px;
    margin-top: 20px;
}


/* ==============================
   NEW PRODUIT - TYPE BLOCK REVERSE
============================== */

.newProduit-typeBlock--reverse .newProduit-typeBlock__card {
    margin-left: auto;
}

.newProduit-typeBlock--reverse .newProduit-typeBlock__content {
    margin-left: auto;
    padding-left: 0;
    padding-right: 47px;
}

.newProduit-typeBlock--reverse .newProduit-typeBlock__imageWrap {
    left: auto;
    right: 406px;
}

.newProduit-typeBlock--reverse .newProduit-typeBlock__image {
    margin-left: 0;
    margin-right: 40px;
}

/* Ajustement espace entre les blocs */
.newProduit-typeBlock+.newProduit-typeBlock {
    padding-top: 0;
}

/* Responsive reverse */
@media screen and (max-width: 1100px) {
    .newProduit-typeBlock--reverse .newProduit-typeBlock__card {
        margin-left: 0;
    }

    .newProduit-typeBlock--reverse .newProduit-typeBlock__content {
        margin-left: 0;
        padding-left: 35px;
        padding-right: 35px;
    }

    .newProduit-typeBlock--reverse .newProduit-typeBlock__imageWrap {
        right: auto;
        left: auto;
    }

    .newProduit-typeBlock--reverse .newProduit-typeBlock__image {
        margin-right: 0;
    }

    .newProduit-typeBlock__image {
        margin-top: unset;
    }
}

/* Responsive */
@media screen and (max-width: 1300px) {
    .newProduit-typeBlock__imageWrap {
        right: 0;
        width: 760px;
    }
}

@media screen and (max-width: 1100px) {

    .newProduit-typeBlock__imageWrap {
        position: unset;
        top: unset;
        left: unset;
        width: unset;
        height: unset;
        overflow: unset;
        z-index: unset;
    }

    .newProduit-typeBlock__image {
        margin-left: unset;
    }


    .newProduit-typeBlock__inner {
        min-height: auto;
    }

    .newProduit-typeBlock__card {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
    }

    .newProduit-typeBlock__content {
        width: 100%;
        max-width: 520px;
        padding: 50px 35px 0;
    }

    .newProduit-typeBlock__text {
        width: 100%;
        margin-bottom: 35px;
    }

    .newProduit-typeBlock__imageWrap {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 420px;
    }
}

@media screen and (max-width: 768px) {
    .newProduit-typeBlock {
        padding: 0 16px 40px;
    }

    .newProduit-typeBlock__content {
        padding: 35px 24px 0;
    }

    .newProduit-typeBlock__title {
        font-size: 38px;
        line-height: 42px;
    }

    .newProduit-typeBlock__text {
        font-size: 17px;
        line-height: 1.45;
    }

    .newProduit-typeBlock__btn {
        font-size: 19px;
        padding: 16px;
        gap: 14px;
    }

    .newProduit-typeBlock__imageWrap {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .newProduit-typeBlock__title {
        font-size: 32px;
        line-height: 36px;
    }

    .newProduit-typeBlock__btn {
        width: 100%;
        justify-content: center;
    }

    .newProduit-typeBlock__imageWrap {
        height: 240px;
    }
}


/* ==============================
   NEW PRODUIT - NOUVEAUTÉ
============================== */

.newProduit-nouveaute {
    width: 100%;
    background: #F5F5F5;
    padding: 130px 20px 125px;
    box-sizing: border-box;
    margin-top: 100px;
}

.newProduit-nouveaute__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.newProduit-nouveaute__content {
    width: 582px;
    flex-shrink: 0;
}

.newProduit-nouveaute__badge {
    display: inline-flex;
    padding: 18px 34px 19px 34px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #424242;
    color: #FFF;
    font-family: "Share", sans-serif;
    font-size: 75px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.newProduit-nouveaute__title {
    width: 582px;
    color: #000;
    font-family: "Share", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.newProduit-nouveaute__text {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

.newProduit-nouveaute__imageWrap {
    width: 530px;
    height: 480px;
    overflow: hidden;
    flex-shrink: 0;
}

.newProduit-nouveaute__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .newProduit-nouveaute__inner {
        gap: 45px;
    }

    .newProduit-nouveaute__content {
        width: 50%;
    }

    .newProduit-nouveaute__title {
        width: 100%;
        font-size: 42px;
        line-height: 48px;
    }

    .newProduit-nouveaute__badge {
        font-size: 58px;
    }

    .newProduit-nouveaute__imageWrap {
        width: 45%;
    }
}

@media screen and (max-width: 900px) {
    .newProduit-nouveaute {
        padding: 70px 20px;
    }

    .newProduit-nouveaute__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .newProduit-nouveaute__content {
        width: 100%;
    }

    .newProduit-nouveaute__title {
        width: 100%;
    }

    .newProduit-nouveaute__imageWrap {
        width: 100%;
        height: 380px;
    }
}

@media screen and (max-width: 600px) {
    .newProduit-nouveaute {
        padding: 50px 16px;
    }

    .newProduit-nouveaute__badge {
        font-size: 36px;
        padding: 14px 22px;
        margin-bottom: 25px;
    }

    .newProduit-nouveaute__title {
        font-size: 32px;
        line-height: 36px;
    }

    .newProduit-nouveaute__text {
        font-size: 17px;
    }

    .newProduit-nouveaute__imageWrap {
        height: 280px;
    }
}

.newProduit-FORMH1 {
    color: #000;
    font-family: Share;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 112% */
    text-transform: uppercase;
}


/* ==============================
   NEW PRODUIT - GRANDE VARIÉTÉ
============================== */

.newProduit-variete {
    width: 100%;
    background: #F5F5F5;
    padding: 50px 0 70px;
    box-sizing: border-box;
}

.newProduit-variete__inner {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
}

.newProduit-variete__media {
    width: 535px;
    flex-shrink: 0;
}

.newProduit-variete__media-space {
    background: linear-gradient(90deg, #1D1D1D 0%, #181818 100%);
    height: 20px;
}


.newProduit-variete__imageWrap {
    width: 535px;
    overflow: hidden;
}

.newProduit-variete__imageWrap--top {
    height: 314px;
}

.newProduit-variete__imageWrap--bottom {
    height: 398px;
}

.newProduit-variete__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.newProduit-variete__contentWrap {
    position: relative;
    width: calc(100% - 535px);
    background: linear-gradient(90deg, #1D1D1D 0%, #181818 100%);
    border: 1px solid #7A7268;
    border-left: none;
    min-height: 712px;
    box-sizing: border-box;
}

.newProduit-variete__badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 313px;
    min-height: 76px;
    background: #F00;
    color: #FFF;
    font-family: "Share", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    box-sizing: border-box;
}

.newProduit-variete__content {
    padding: 135px 64px 60px 64px;
    box-sizing: border-box;
}

.newProduit-variete__title {
    width: 446px;
    max-width: 100%;
    color: #F00;
    font-family: "Share", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 55px;
}

.newProduit-variete__text {
    width: 650px;
    max-width: 100%;
    color: #FFF;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

/* ==============================
   RESPONSIVE
============================== */

@media screen and (max-width: 1200px) {
    .newProduit-variete {
        padding: 50px 20px 70px;
    }

    .newProduit-variete__inner {
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .newProduit-variete__inner {
        flex-direction: column;
    }

    .newProduit-variete__media {
        width: 100%;
        display: flex;
        gap: 20px;
    }

    .newProduit-variete__imageWrap {
        width: calc(50% - 10px);
    }

    .newProduit-variete__imageWrap--top,
    .newProduit-variete__imageWrap--bottom {
        height: 320px;
    }

    .newProduit-variete__contentWrap {
        width: 100%;
        border-left: 1px solid #7A7268;
        margin-top: 30px;
        min-height: auto;
    }

    .newProduit-variete__content {
        padding: 110px 35px 45px;
    }
}

@media screen and (max-width: 768px) {

    .newProduit-variete__media-space{
        display: none;
    }
    .newProduit-variete {
        padding: 40px 16px 50px;
    }

    .newProduit-variete__media {
        flex-direction: column;
        gap: 16px;
    }

    .newProduit-variete__imageWrap {
        width: 100%;
    }

    .newProduit-variete__imageWrap--top {
        height: 240px;
    }

    .newProduit-variete__imageWrap--bottom {
        height: 260px;
    }

    .newProduit-variete__badge {
        width: auto;
        max-width: calc(100% - 30px);
        font-size: 28px;
        min-height: 62px;
        padding: 12px 22px;
    }

    .newProduit-variete__content {
        padding: 90px 24px 35px;
    }

    .newProduit-variete__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .newProduit-variete__text {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 480px) {
    .newProduit-variete__badge {
        font-size: 22px;
        min-height: 54px;
    }

    .newProduit-variete__title {
        font-size: 24px;
    }
}


/* ==============================
   NEW PRODUIT - QUALITÉ / DIMENSIONS
============================== */

.newProduit-qualiteDimensions {
    width: 100%;
    background: #F5F5F5;
    padding: 20px 20px 125px;
    box-sizing: border-box;
}

.newProduit-qualiteDimensions__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 65px;
}

.newProduit-qualiteDimensions__content {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 95px;
}

.newProduit-qualiteDimensions__item {
    width: 100%;
}

.newProduit-qualiteDimensions__title {
    width: 235px;
    color: #000;
    font-family: "Share", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.newProduit-qualiteDimensions__text {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

.newProduit-qualiteDimensions__imageWrap {
    width: 905px;
    height: 642px;
    overflow: hidden;
    flex-shrink: 0;
}

.newProduit-qualiteDimensions__image {
    width: 93%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media screen and (max-width: 1300px) {
    .newProduit-qualiteDimensions__inner {
        gap: 45px;
    }

    .newProduit-qualiteDimensions__imageWrap {
        width: 760px;
    }
}

@media screen and (max-width: 1100px) {
    .newProduit-qualiteDimensions {
        padding: 80px 20px;
    }

    .newProduit-qualiteDimensions__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newProduit-qualiteDimensions__content {
        width: 100%;
        flex-direction: row;
        gap: 40px;
    }

    .newProduit-qualiteDimensions__item {
        flex: 1;
    }

    .newProduit-qualiteDimensions__imageWrap {
        width: 100%;
        height: 500px;
    }

    .newProduit-qualiteDimensions__image {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .newProduit-qualiteDimensions {
        padding: 55px 16px;
    }

    .newProduit-qualiteDimensions__content {
        flex-direction: column;
        gap: 45px;
    }

    .newProduit-qualiteDimensions__title {
        font-size: 30px;
    }

    .newProduit-qualiteDimensions__text {
        font-size: 17px;
        line-height: 1.45;
    }

    .newProduit-qualiteDimensions__imageWrap {
        height: 330px;
    }
}

@media screen and (max-width: 480px) {
    .newProduit-qualiteDimensions__imageWrap {
        height: 260px;
    }
}