.ringo-captcha-container {
    display: inline-block;
    background-color: #fff;
    border: 2px solid black;
    border-radius: 5px;
    padding: 5px;
}

.ringo-captcha-container p {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
}

.ringo-captcha-container .ringo-captcha-content {
    position: relative;
}

.ringo-captcha-container .ringo-captcha-bloc {
    display: inline-flex;
    vertical-align: bottom;
    gap: 5px;
    position: relative;
}

/*.ringo-captcha-container .ringo-captcha-result .ringo-captcha-result-icon {*/
/*    transform: scale(0.2);*/
/*    transition: 1s;*/
/*}*/
/*.ringo-captcha-container .ringo-captcha-result .ringo-captcha-result-icon.active {*/
/*    transform: scale(1);*/
/*}*/

.ringo-captcha-container .ringo-captcha-bloc .ringo-captcha-image{
    padding: 5px;
    /*border: 2px solid transparent;*/
    border: 2px solid black;
    border-radius: 5px;
}

.ringo-captcha-container .ringo-captcha-bloc .ringo-captcha-image:hover {
    cursor: pointer;
}

.ringo-captcha-container .ringo-captcha-bloc .ringo-captcha-image.selected {
    background-color: lightgoldenrodyellow;
}

.ringo-captcha-container .ringo-captcha-bloc .ringo-captcha-image .ringo-captcha-image-single{
    margin: 0;
    width: 35px;
    height: 35px;
    vertical-align: bottom;
}

.gfield--input-type-ringo_captcha > label {
    display: none;
}/* Variables CSS */
:root {
    --primary: #fee423;
    --secondary: #70b93a;
    --tertiary: #23A3AB;
}

html {
    font-size: 0.625em;
    /* fallback IE8+ */
    font-size: 0.625em;
    /* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
    padding: 0;
    list-style: none;
    margin: 0;
}

/* Remove default style */
a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

input,
textarea {
    width: 100%;
}

/* Remove font style on address */
address {
    font-style: normal;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Container */
@media screen and (max-width: 767px) {
    .container {
        overflow: hidden;
    }
}

/* Image replacement technique 2012 H5BP  - https://css-tricks.com/the-image-replacement-museum/ */
.ir {
    font: 0/0 a;
    color: transparent;
    border: 0;
    text-shadow: none;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 8px 16px;
}

.btn--primary {
    background-color: #F2DF21;
    color: #000;

    transition: background-color 150ms ease-in;
}

.btn--primary:hover {
    background-color: #d9c81d;

    transition: background-color 150ms ease-in;
}

.btn--secondary {
    background-color: #70b93a;
    color: #FFF;
}

label.burgermenu {
    display: block;
}

@media (min-width: 992px) {
    label.burgermenu {
        display: none;
    }
}

label.burgermenu .menu {
    position: absolute;
    right: -100px;
    top: -100px;
    z-index: 100;
    width: 200px;
    height: 200px;
    background: #fee423;
    border-radius: 50% 50% 50% 50%;
    transition: 0.5s ease-in-out;
    box-shadow: 0 0 0 0 #f5f5f5, 0 0 0 0 #f5f5f5;
    cursor: pointer;
    position: fixed;
}

label.burgermenu .hamburger {
    position: absolute;
    top: 135px;
    left: 50px;
    width: 30px;
    height: 2px;
    background: #363537;
    display: block;
    transform-origin: center;
    transition: 0.5s ease-in-out;
}

label.burgermenu .hamburger:after,
label.burgermenu .hamburger:before {
    transition: 0.5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #363537;
}

label.burgermenu .hamburger:before {
    top: -10px;
}

label.burgermenu .hamburger:after {
    bottom: -10px;
}

label.burgermenu input {
    display: none;
}

label.burgermenu input + .menu + ul li a {
    pointer-events: none;
}

label.burgermenu input:checked + .menu {
    box-shadow: 0 0 0 48vw #fee423, 0 0 0 318px #fee423;
    border-radius: 0;
    background: #fee423;
    height: 250px;
}

label.burgermenu input:checked + .menu .hamburger {
    transform: rotate(45deg);
}

label.burgermenu input:checked + .menu .hamburger:after {
    transform: rotate(90deg);
    bottom: 0;
}

label.burgermenu input:checked + .menu .hamburger:before {
    transform: rotate(90deg);
    top: 0;
}

label.burgermenu input:checked + .menu + ul {
    opacity: 1;
    z-index: 200;
}

label.burgermenu input:checked + .menu + ul li a {
    pointer-events: all;
}

label.burgermenu ul.flex {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0%);
    opacity: 0;
    transition: 0.25s 0s ease-in-out;
    list-style-type: none;
    padding: 0;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

label.burgermenu a {
    margin-bottom: 0.5em;
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 2rem;
}

label.burgermenu .overlay {
    position: fixed;
    z-index: 0;

    width: 0;
    height: 0;

    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);

    transition: visibility 150ms ease-in;
}

label.burgermenu input:checked ~ .overlay {
    z-index: 10;

    visibility: visible;

    width: 100vw;
    height: 100vh;

    transition: visibility 150ms ease-in;

}

nav.flex {
    top: 0;
    z-index: 100;
    width: 100%;
    height: 8rem;
    padding-left: 5rem;
    padding-right: 5rem;
    justify-content: space-between;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 0.1rem solid rgba(23, 58, 73, 0.09);
    transition: all 0.2s ease-in-out;
    display: none;
}

@media (min-width: 992px) {
    #menu-menu-principal {
        flex-wrap: wrap;
        max-width: 725px;
        justify-content: end;
        gap: 1rem 0rem;
    }

}

@media (min-width: 992px) {
    nav.flex {
        display: flex;
    }
}

nav.flex.color-white {
    background-color: rgb(255, 255, 255);
}

nav.flex.color-white img {
    opacity: 1;
}

nav.flex img {
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

nav.flex ul li a {
    color: black;
    font-size: 1.8rem;
    position: relative;
}

nav.flex ul li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 110%;
    height: 0;
    background-color: #fee423;
    bottom: -0.4rem;
    z-index: -1;
    transition: all 0.2s ease-in-out;
    margin-left: -5%;
}

nav.flex ul li a:hover::after {
    height: 1.5rem;
}

nav.flex ul li + li {
    margin-left: 2.5rem;
}

header {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: -2;
}

header .container.flex {
    height: 100%;
    justify-content: center;
    padding-left: 5rem;
    padding-right: 5rem;
    flex-direction: column;
}

@media (min-width: 992px) {
    header .container.flex {
        flex-direction: row;
        justify-content: space-between;
    }
}

header .container.flex img {
    width: 15rem;
    height: 17.7rem;
    align-self: center;
    margin-top: 0;
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    header .container.flex img {
        width: initial;
        height: initial;
        margin-bottom: 10rem;
    }
}

@media (min-width: 992px) {
    header .container.flex img {
        align-self: flex-start;
        margin-top: 15rem;
        margin-bottom: 0;
        width: 20rem;
    }
}

header .container.flex .bubbles {
    background-image: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/header/yellow-bubble.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 30.1rem;
    height: 30.3rem;
    position: relative;
}

header .container.flex .bubbles::before {
    content: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/header/transparent-bubble.png);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

header .container.flex .bubbles h1 {
    font-size: 4rem;
    line-height: 1em;
}

.stencil-container {
    margin-top: 9rem;
    width: 23.5rem;
    height: 23.5rem;
    position: relative;
    overflow: hidden;
}

.stencil-container.eco {
    margin-top: 0;
}

@media (min-width: 992px) {
    .stencil-container.eco {
        margin-top: 5rem;
    }
}

@media (min-width: 576px) {
    .stencil-container {
        width: 33.5rem;
        height: 33.4rem;
    }
}

@media (min-width: 992px) {
    .stencil-container {
        margin-top: 5rem;
    }
}

.stencil-container img {
    position: absolute;
}

.stencil-container img.stencil {
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.stencil-container img.photo {
    max-width: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36.5rem;
    height: 23.5rem;
}

@media (min-width: 576px) {
    .stencil-container img.photo {
        width: initial;
        height: initial;
    }
}

#bse {
    padding-top: 11rem;
    padding-bottom: 11rem;
    background-color: #f5f5f5;
    position: relative;
    z-index: 0;
}

#bse .container {
    overflow: visible;
}

#bse .container strong {
    top: -7rem;
    left: 2rem;
}

@media (min-width: 768px) {
    #bse .container strong {
        top: 10.4rem;
        left: -15.8rem;
    }
}

@media (min-width: 1441px) {
    #bse .container strong {
        left: -20.8rem;
    }
}

#bse .container p + p {
    margin-top: 3.5rem;
}

#bse .container ul {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 10rem;
    padding-right: 4rem;
    padding-left: 4rem;
}

@media (min-width: 992px) {
    #bse .container ul {
        justify-content: space-between;
    }
}

#bse .container ul li {
    flex-direction: column;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    #bse .container ul li {
        margin-bottom: 0;
    }
}

#bse .container ul li div {
    background-image: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section1/green-bubble.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 12rem;
    height: 12rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    #bse .container ul li div {
        width: 13rem;
        height: 13rem;
        margin-bottom: 2.5rem;
    }
}

#bse .container ul li div img {
    max-width: 6.5rem;
}

.bse__footer {
    margin-top: 44px;

    /* text-align: center; */
}

#objectifs {
    padding-top: 11rem;
    padding-bottom: 11rem;
}

#objectifs .container.flex {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;

    overflow: visible;
}

@media (min-width: 992px) {
    #objectifs .container.flex {
        flex-direction: row;
    }
}

#objectifs .container.flex strong {
    top: -7rem;
    left: 2rem;
}

@media (min-width: 768px) {
    #objectifs .container.flex strong {
        top: 9.4rem;
        left: -14.8rem;
    }
}

@media (min-width: 1441px) {
    #objectifs .container.flex strong {
        left: -19.8rem;
    }
}

#objectifs .container.flex .bloc {
    flex-direction: column;
    width: 100%;
}

@media (min-width: 992px) {
    #objectifs .container.flex .bloc {
        width: initial;
    }
}

#objectifs .container.flex .bloc.left.flex {
    align-items: center;
}

@media (min-width: 992px) {
    #objectifs .container.flex .bloc.left.flex {
        align-items: flex-start;
    }
}

#objectifs .container.flex .bloc.left.flex h2 {
    align-self: flex-start;
}

#objectifs .container.flex .bloc.right.flex {
    margin-top: 2rem;
}

@media (min-width: 576px) {
    #objectifs .container.flex .bloc.right.flex {
        margin-top: 0;
    }
}

#objectifs .container.flex .bloc.right.flex ul li {
    justify-content: flex-start;
}

#objectifs .container.flex .bloc.right.flex ul li div {
    width: 5rem;
    height: 5rem;
    position: relative;
    margin-right: 2rem;
}

@media (min-width: 576px) {
    #objectifs .container.flex .bloc.right.flex ul li div {
        width: 9rem;
        height: 9rem;
    }
}

@media (min-width: 1025px) {
    #objectifs .container.flex .bloc.right.flex ul li div {
        width: 11rem;
        height: 11rem;
    }
}

#objectifs .container.flex .bloc.right.flex ul li div::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #70b93a;
    display: block;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

#objectifs .container.flex .bloc.right.flex ul li div img {
    width: 3.5rem;
    height: 3.5rem;
}

@media (min-width: 576px) {
    #objectifs .container.flex .bloc.right.flex ul li div img {
        width: 6.5rem;
        height: 6.5rem;
    }
}

@media (min-width: 1025px) {
    #objectifs .container.flex .bloc.right.flex ul li div img {
        width: initial;
        height: initial;
    }
}

#objectifs .container.flex .bloc.right.flex ul li h3 {
    font-size: 1.4rem;
}

@media (min-width: 576px) {
    #objectifs .container.flex .bloc.right.flex ul li h3 {
        font-size: 1.9rem;
    }
}

#objectifs .container.flex .bloc.right.flex ul li + li {
    margin-top: 2.5rem;
}

@media (min-width: 576px) {
    #objectifs .container.flex .bloc.right.flex ul li + li {
        margin-top: 5.5rem;
    }
}

#atouts {
    padding-top: 11rem;
    padding-bottom: 11rem;
    background-color: #f5f5f5;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#atouts .container.flex {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;

    overflow: visible;
}

@media (min-width: 992px) {
    #atouts .container.flex {
        flex-direction: row;
    }
}

#atouts .container.flex strong {
    top: -7rem;
    left: 2rem;
}

@media (min-width: 768px) {
    #atouts .container.flex strong {
        top: 6.8rem;
        left: -12.6rem;
    }
}

@media (min-width: 1441px) {
    #atouts .container.flex strong {
        left: -17.6rem;
    }
}

#atouts .container.flex .bloc.left.flex {
    align-items: flex-start;
    flex-direction: column;
}

#atouts .container.flex .bloc.left.flex .text h3 {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

#atouts .container.flex .bloc.left.flex .text p + h3,
#atouts .container.flex .bloc.left.flex .text h3 + p,
#atouts .container.flex .bloc.left.flex .text p + p,
#atouts .container.flex .bloc.left.flex .text h3 + h3 {
    margin-top: 2rem;
}

#atouts .container.flex .bloc.bubbles.flex {
    background-image: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section3/white-bubble.png);
    background-repeat: no-repeat;
    background-position: 9.5% 31%;
    width: 33.6rem;
    height: 33.6rem;
    position: relative;
    align-self: center;
    margin-top: 9rem;
    background-size: cover;
}

@media (min-width: 360px) {
    #atouts .container.flex .bloc.bubbles.flex {
        background-size: contain;
        width: 45.6rem;
        height: 45.6rem;
    }
}

@media (min-width: 992px) {
    #atouts .container.flex .bloc.bubbles.flex {
        align-self: initial;
        margin-top: 22px;
        margin-right: 66px;
    }
}

#atouts .container.flex .bloc.bubbles.flex::before {
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

@media (min-width: 360px) {
    #atouts .container.flex .bloc.bubbles.flex::before {
        content: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section3/before-grey-bubble.png);
        transform: scale(1.5) translate(70px, 65px);
    }
}

#atouts .container.flex .bloc.bubbles.flex::after {
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}

@media (min-width: 360px) {
    #atouts .container.flex .bloc.bubbles.flex::after {
        content: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section3/after-grey-bubble.png);
        transform: scale(1.5) translate(70px, 65px);
    }
}

#atouts .container.flex .bloc.bubbles.flex .logos {
    width: 19.1rem;
    padding-bottom: 5rem;
}

#atouts .container.flex .bloc.bubbles.flex .logos ul.flex {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}

#atouts .container.flex .bloc.bubbles.flex .logos ul.flex li {
    margin-top: 2rem;
}

#atouts .container.flex .bloc.bubbles.flex .logos ul.flex li img {
    max-width: 7.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}

#atouts .text .btn {
    margin-top: 2.5rem;
}

#prestations {
    padding-top: 11rem;
    padding-bottom: 11rem;
    position: relative;
}

#prestations .container.flex {
    flex-direction: column;

    overflow: visible;
}

@media (min-width: 992px) {
    #prestations .container.flex {
        flex-direction: row;
    }
}

#prestations .container.flex strong {
    top: -7rem;
    left: 2rem;
}

@media (min-width: 768px) {
    #prestations .container.flex strong {
        top: 14rem;
        left: -18.7rem;
    }
}

@media (min-width: 1441px) {
    #prestations .container.flex strong {
        left: -23.7rem;
    }
}

#prestations .container.flex .bloc.flex.left {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

#prestations .container.flex .bloc.flex.left ul {
    max-width: 100%;
    margin: 0;
    margin-bottom: 5rem;
}

@media (min-width: 576px) {
    #prestations .container.flex .bloc.flex.left ul {
        min-width: 75%;
    }
}

#prestations .container.flex .bloc.flex.left ul li {
    position: relative;
    animation: flipdown 0.5s ease both;
}

#prestations .container.flex .bloc.flex.left ul li:nth-of-type(1) {
    animation-delay: 0.5s;
}

#prestations .container.flex .bloc.flex.left ul li:nth-of-type(2) {
    animation-delay: 0.75s;
}

#prestations .container.flex .bloc.flex.left ul li:nth-of-type(3) {
    animation-delay: 1s;
}

#prestations .container.flex .bloc.flex.left ul li:nth-of-type(4) {
    animation-delay: 1.25s;
}

#prestations .container.flex .bloc.flex.left ul li h3 {
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 576px) {
    #prestations .container.flex .bloc.flex.left ul li h3 {
        font-size: 1.9rem;
    }
}

#prestations .container.flex .bloc.flex.left ul li h3:hover,
#prestations .container.flex .bloc.flex.left ul li h3:focus {
    color: #70b93a;
}

#prestations .container.flex .bloc.flex.left ul li h3:before,
#prestations .container.flex .bloc.flex.left ul li h3:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 15px;
    background-color: #70b93a;
    transition: all 0.5s ease-in-out;
    right: -2rem;
    bottom: 50%;
    transform: translate(0%, 50%) rotate(180deg);
}

#prestations .container.flex .bloc.flex.left ul li h3:after {
    transform: translate(0%, 50%) rotate(90deg);
}

#prestations .container.flex .bloc.flex.left ul li p {
    font-weight: 400;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    z-index: 2;
    line-height: 2.2rem;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
}

#prestations .container.flex .bloc.flex.left ul li.visible p {
    opacity: 1;
    margin-top: 2rem;
    max-height: 800px;
    transform: translate(0, 0);
}

#prestations .container.flex .bloc.flex.left ul li.visible h3:before,
#prestations .container.flex .bloc.flex.left ul li.visible h3:after {
    transform: translate(0%, 50%) rotate(270deg);
}

#prestations .container.flex .bloc.flex.left ul li + li {
    margin-top: 3rem;
}

#prestations .container.flex .bloc.flex.left .youtube a {
    color: #70b93a;
    text-decoration: underline;
}

#prestations .container.flex .bloc.flex.left .youtube a::before {
    content: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section4/play-button.png);
    width: 4rem;
    height: 4rem;
    margin-right: 2rem;
}

#prestations li a {
    color: #1ca1ac;

    transition: text-shadow 150ms ease-in;
}

#prestations li a:hover {
    /* font-weight: 700; */
    text-shadow: 0 1px #1ca1ca, 0 0 1px #1ca1ca;

    transition: text-shadow 150ms ease-in;
}

@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg);
    }

    5% {
        opacity: 1;
    }

    80% {
        transform: rotateX(8deg);
    }

    83% {
        transform: rotateX(6deg);
    }

    92% {
        transform: rotateX(-3deg);
    }

    100% {
        transform-origin: top center;
        transform: rotateX(0deg);
    }
}

.tobi__close {
    outline: none !important;
}

/* TOBI LIGHTBOX */
/* TOBI LIGHTBOX */
/* TOBI LIGHTBOX */
/* TOBI LIGHTBOX */
/* TOBI LIGHTBOX */
/* TOBI LIGHTBOX */
/* TOBI LIGHTBOX */
.lightbox iframe {
    pointer-events: none;
    display: block;
}

@media (max-width: 767.98px) {
    .lightbox iframe {
        width: 100%;
    }

    div.tobi__slider__slide:nth-child(1) > div:nth-child(1) {
        width: 100%;
    }

    #widget2 {
        width: 100%;
    }
}

.tobi-zoom {
    border: 0;
    box-shadow: none;
    display: block;
    position: relative;
    text-decoration: none;
}

.tobi-zoom img {
    display: block;
}

.tobi-zoom__icon {
    display: none;
    align-items: center;
    background-color: rgba(26, 42, 58, 0.94);
    bottom: 0;
    color: #fff;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 0;
}

.tobi-zoom__icon svg {
    color: #fff;
    fill: none;
    height: 1.11111em;
    padding-bottom: 0.22222em;
    padding-left: 0.22222em;
    padding-right: 0.22222em;
    padding-top: 0.22222em;
    pointer-events: none;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 2;
    stroke: #fff;
    width: 1.11111em;
}

/* Hide scrollbar if lightbox is displayed */
.tobi-is-open {
    overflow-y: hidden;
}

/* Lightbox */
.tobi {
    background-color: rgba(26, 42, 58, 0.94);
    bottom: 0;
    box-sizing: border-box;
    contain: strict;
    font-size: 18px;
    left: 0;
    line-height: 1.5555555556;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1337;
}

.tobi[aria-hidden=true] {
    display: none;
}

.tobi *,
.tobi *::before,
.tobi *::after {
    box-sizing: inherit;
}

/* Slider */
.tobi__slider {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    will-change: transform;
}

.tobi__slider:not(.tobi__slider--is-dragging) {
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (prefers-reduced-motion: reduce) {
    .tobi__slider:not(.tobi__slider--is-dragging) {
        transition: none;
    }
}

.tobi__slider--is-draggable .tobi__slider__slide__content {
    cursor: grab;
}

.tobi__slider--is-dragging .tobi__slider__slide__content {
    cursor: grabbing;
}

/* Slide */
.tobi__slider__slide {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

/* Slide content */
.tobi__slider__slide__content > figure {
    margin: 0;
    position: relative;
}

.tobi__slider__slide__content > figure > img {
    display: block;
    height: auto;
    max-height: 85vh;
    max-width: 85vw;
    width: auto;
}

.tobi__slider__slide__content > figure > figcaption {
    background-color: rgba(255, 255, 255, 0.94);
    bottom: 0;
    color: #1a2a3a;
    display: block;
    left: 0;
    padding-bottom: 0.22222em;
    padding-left: 0.44444em;
    padding-right: 0.44444em;
    padding-top: 0.22222em;
    position: absolute;
    white-space: pre-wrap;
    width: 100%;
}

.tobi__slider__slide__content[data-type=html] {
    max-height: 85vh;
    max-width: 85vw;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tobi__slider__slide__content[data-type=html] video {
    cursor: auto;
    display: block !important;
    max-height: 85vh;
    max-width: 85vw;
}

.tobi__slider__slide__content[data-type=iframe] {
    max-height: 85vh;
    max-width: 85vw;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Fix iframe scrolling on iOS */
    -webkit-overflow-scrolling: touch;
    transform: translate3d(0, 0, 0);
}

.tobi__slider__slide__content[data-type=iframe] iframe {
    display: block !important;
    height: 85vh;
    width: 85vw;
}

.tobi__slider__slide__content[data-type=youtube] {
    max-height: 85vh;
    max-width: 85vw;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tobi__slider__slide__content[data-type=youtube] iframe {
    display: block !important;
}

/* Buttons */
.tobi > button {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0.05556em solid transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    font: inherit;
    justify-content: center;
    line-height: 1;
    margin: 0;
    opacity: 0.5;
    padding-bottom: 0.22222em;
    padding-left: 0.22222em;
    padding-right: 0.22222em;
    padding-top: 0.22222em;
    position: absolute;
    touch-action: manipulation;
    transition-duration: 0.3s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform;
    z-index: 1;
}

@media screen and (prefers-reduced-motion: reduce) {
    .tobi > button {
        transition: none;
        will-change: opacity;
    }
}

.tobi > button svg {
    pointer-events: none;
    stroke: #fff;
    stroke-width: 1;
    stroke-linecap: square;
    stroke-linejoin: miter;
    fill: none;
    color: #fff;
}

.tobi > button:active,
.tobi > button:focus,
.tobi > button:hover {
    opacity: 1;
    transform: scale(0.84);
}

@media screen and (prefers-reduced-motion: reduce) {

    .tobi > button:active,
    .tobi > button:focus,
    .tobi > button:hover {
        transform: none;
    }
}

.tobi > button.tobi__prev,
.tobi > button.tobi__next {
    top: 50%;
    top: calc(50% - 2.22222em);
}

.tobi > button.tobi__prev svg,
.tobi > button.tobi__next svg {
    height: 3.88889em;
    width: 3.88889em;
}

.tobi > button.tobi__prev {
    left: 0;
}

.tobi > button.tobi__next {
    right: 0;
}

.tobi > button.tobi__close {
    right: 0.27778em;
    top: 1em;
}

.tobi > button.tobi__close svg {
    height: 3.33333em;
    width: 3.33333em;
}

.tobi > button:disabled,
.tobi > button[aria-hidden=true] {
    display: none;
}

/* Counter */
.tobi__counter {
    align-items: center;
    background-color: transparent;
    color: #fff;
    display: flex;
    font-size: 1.11111em;
    justify-content: center;
    left: 1em;
    line-height: 1;
    position: absolute;
    top: 2.22222em;
    z-index: 1;
}

.tobi__counter[aria-hidden=true] {
    display: none;
}

/* Loader */
.tobi-loader {
    display: inline-block;
    height: 5.55556em;
    left: calc(50% - 2.77778em);
    position: absolute;
    top: calc(50% - 2.77778em);
    width: 5.55556em;
}

.tobi-loader::before {
    animation: spin 1s infinite;
    border-radius: 100%;
    border: 0.22222em solid #949ba3;
    border-top-color: #fff;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#references {
    padding-top: 11rem;
    position: relative;
    z-index: 0;
}

#references .container {
    margin-bottom: 9rem;
}

#references .container strong {
    left: 2rem;
    top: -7rem;
}

@media (min-width: 768px) {
    #references .container strong {
        left: -9.7rem;
        top: 3.2rem;
    }
}

@media (min-width: 1441px) {
    #references .container strong {
        left: -14.7rem;
    }
}

#references .container h2 {
    margin-bottom: 4rem;
}

#references .container .filtrage ul {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;

    margin-bottom: 18px;
}

@media (min-width: 1200px) {
    #references .container .filtrage ul {
        flex-direction: row;
    }
}

#references .container .filtrage ul li {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 400;
    text-transform: uppercase;
    color: black;
    cursor: pointer;
}

#references .container .filtrage ul li.child-bt {
    display: none;
    font-size: 2rem;
}

#references .container .filtrage ul li.child-bt.show {
    display: inline-block;
}

#references .container .filtrage ul li:hover {
    font-weight: 700;
}

#references .container .filtrage ul li::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

#references .container .filtrage ul li.active {
    font-weight: 700;
}

#references .container .filtrage ul li + li {
    margin-left: 0;
    margin-top: 1rem;
}

@media (min-width: 1200px) {
    #references .container .filtrage ul li + li {
        margin-left: 4rem;
        margin-top: 0;
    }
}

#references .container .filtrage__heading {
    font-weight: 400;
    color: #777;
}

#references .galerie {
    opacity: 1;
    transition: 0.3s;

    border-top: 1px solid #f5f5f5;
}

#references .galerie.fade {
    opacity: 0;
}

#references .galerie .item {
    padding: 0;
    margin: 0;
    position: relative;
}

#references .galerie .item div {
    background-color: #fee423;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 60%;
    padding-left: 2.5rem;
    padding-right: 4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    z-index: 1;
    transition: all 0.2s ease-in-out;
    transform: translate(0, -50%);
    opacity: 1;
}

#references .galerie .item div h3 {
    font-size: 3.2rem;
    line-height: 3.5rem;
}

#references .galerie .item div p {
    font-size: 1.8rem;
    line-height: 2.2rem;
}

@media (min-width: 0px) {
    #references .galerie .item div p {
        display: none;
    }

    #references .galerie .item div h3 {
        font-size: 2rem;
    }

    #references .galerie .item div {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    #references .galerie .item div p {
        display: block;
    }
}

@media (min-width: 768px) {
    #references .galerie .item div {
        opacity: 0;
        transform: translate(-5rem, -50%);

    }
}

#references .galerie .item img {
    -o-object-fit: cover;
    object-fit: cover;
    display: inline;
    vertical-align: bottom;
}

#references .galerie .item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(242, 223, 33, 0);
    transition: all 0.2s ease-in-out;
}

@media (min-width: 768px) {
    #references .galerie .item:hover::after {
        background-color: rgba(242, 223, 33, 0.8);
    }

    #references .galerie .item:hover div {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    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 {
    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;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;
    src: url(https://www.bs-energies.com/wp-content/themes/bse/css/./fonts/slick.eot);
    src: url(https://www.bs-energies.com/wp-content/themes/bse/css/./fonts/slick.eot#1785937897) format("embedded-opentype"), url(https://www.bs-energies.com/wp-content/themes/bse/css/./fonts/slick.woff) format("woff"), url(https://www.bs-energies.com/wp-content/themes/bse/css/./fonts/slick.ttf) format("truetype"), url(https://www.bs-energies.com/wp-content/themes/bse/css/./fonts/slick.svg#slick) format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 0;
    transform: translate(0, -50%);
    border-radius: 100%;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
    opacity: 1;
}

.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: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 40px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 26px;
    opacity: 0.75;
    color: #fee423;
    background-color: black;
    border-radius: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s ease-in-out;
}

.slick-prev {
    left: 2rem;
}

[dir=rtl] .slick-prev {
    right: 2rem;
    left: auto;
}

.slick-prev:before {
    content: "←";
}

[dir=rtl] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: 2rem;
}

[dir=rtl] .slick-next {
    right: auto;
    left: 2rem;
}

.slick-next:before {
    content: "→";
}

[dir=rtl] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 30px;
    height: 30px;
    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: 0.7;
}

.slick-dots li button:before {
    font-family: "Arial", sans-serif;
    font-size: 50px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    content: "•";
    text-align: center;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fee423;
}

#contact {
    padding-top: 11rem;
    padding-bottom: 11rem;
    background-color: #F2DF21;
    position: relative;
    margin-top: -0.1rem;
}

#contact .flex {
    flex-direction: column;
    align-items: center;
}

@media (min-width: 992px) {
    #contact .flex {
        flex-direction: row;
        justify-content: space-between;
    }
}

#contact .flex .contact--list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    display: flex;
}

@media (min-width: 992px) {
    #contact .flex .contact--list {
        align-items: baseline;
        flex-direction: row;
        text-align: left;
    }
}

#contact .flex .contact--list li {
    padding: 1rem;
}

@media (min-width: 992px) {
    #contact .flex .contact--list li {
        padding: 2rem;
    }
}

#contact .flex .contact--list li a {
    color: black;
    text-decoration: underline;
    display: contents;
}

#contact .flex .contact--list li a:hover {
    color: #70b93a;
}

small {
    display: none;
}

.acf-map {
    z-index: 2;
    width: 100%;
    height: 400px;
    border: none;
    margin: 20px 0;
}

.acf-map p {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
}

.acf-map a {
    color: #000;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

.acf-map img {
    max-width: inherit !important;
}

#single {
    padding-top: 7rem;
    padding-bottom: 9rem;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    position: relative;
}

@media (min-width: 768px) {
    #single {
        padding-top: 8rem;
    }
}

#single h1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 3rem 0;
}

#single h1::before {
    content: "";
    display: block;
    height: 100%;
    width: 3rem;
    background-color: #fee423;
    position: absolute;
    z-index: -1;
    left: -0.7rem;
    bottom: 0;
}

#single .container:last-child {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 0;
}

@media (min-width: 768px) {
    #single .container:last-child {
        margin: 0 auto;
    }
}

#single .container:last-child .slider .item {
    width: 100%;
    height: 56rem;
}

#single .container:last-child .slider .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#single .container:last-child .single--img {
    position: relative;
    z-index: 0;
    width: 100%;
}

#single .container:last-child .single--img img {
    width: 100%;
}

#single .container:last-child .content {
    position: relative;
    z-index: 1;
    background-color: white;
    margin-top: -8rem;
    width: 100%;
    padding: 2rem;
}

@media (min-width: 576px) {
    #single .container:last-child .content {
        padding: 2rem 5rem 5rem;
    }
}
@media (max-width: 767px) {
    #single .container:last-child .content {
        margin-top: 1px;
    }
}
#single .container:last-child .content:not(.content--page) h2 {
    font-size: 2.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

#single .container:last-child .content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

@media (min-width: 1200px) {
    #single .container:last-child .content p {
        font-size: 1.4rem;
    }
}

#single .container:last-child .content blockquote {
    position: relative;
    margin-left: 2rem;
}

@media (min-width: 576px) {
    #single .container:last-child .content blockquote {
        margin-left: 4rem;
    }
}

#single .container:last-child .content blockquote p {
    font-size: 2.1rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
}

#single .container:last-child .content blockquote::before {
    content: "";
    display: block;
    height: 100%;
    width: 0.2rem;
    background-color: #fee423;
    position: absolute;
}

#single .container:last-child .content ul li {
    list-style: disc;
    font-size: 1.4rem;
    font-weight: 400;
    list-style-position: inside;
}

#single .container:last-child .content a {
    color: #70b93a;
    font-weight: 700;
    margin-bottom: 2rem;
}

#single .container:last-child .navigation {
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
    flex-direction: column;
}

@media (min-width: 576px) {
    #single .container:last-child .navigation {
        flex-direction: row;
        justify-content: space-between;
    }
}

#single .container:last-child .navigation span {
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    #single .container:last-child .navigation span {
        margin-bottom: 0;
    }
}

#single .container:last-child .navigation span a {
    font-weight: 300;
    font-size: 1.4rem;
    padding: 1.5rem 2rem;
    background-color: #f5f5f5;
    color: black;
}

#single .container:last-child .navigation span a:hover,
#single .container:last-child .navigation span a:focus {
    background-color: #fee423;
}

#single .container:last-child .navigation span.right {
    margin-left: 0;
    margin-top: 5rem;
}

@media (min-width: 576px) {
    #single .container:last-child .navigation span.right {
        margin-left: auto;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    #single .wp-block-slider-block-slider-block {
        padding: 0 20%;
    }
}

.single--img {
    height: 40vh;
}

.single--img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 50vh;
    -o-object-fit: cover;
    object-fit: cover;
}

#cookie-notice .cn-button {
    background-color: #70b93a;
}

.slick-prev,
.slick-next {
    height: 30px !important;
    width: 30px !important;
}

.slick-prev:before,
.slick-next:before {
    background-color: transparent !important;
}

footer {
    background-color: #363537;
    padding-left: 2rem;
    padding-right: 2rem;
}

footer .bloc-top.flex {
    border-bottom: 2px solid #4b494c;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

footer .bloc-bottom {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #4b494c;
}

footer .bloc-bottom .container.flex {
    justify-content: space-between;
    flex-direction: column;
}

@media (min-width: 992px) {
    footer .bloc-bottom .container.flex {
        flex-direction: row;
    }
}

footer .bloc-bottom .container.flex .bloc-left.flex {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

@media (min-width: 576px) {
    footer .bloc-bottom .container.flex .bloc-left.flex {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    footer .bloc-bottom .container.flex .bloc-left.flex {
        width: 50%;
    }
}

footer .bloc-bottom .container.flex .bloc-left.flex address,
footer .bloc-bottom .container.flex .bloc-left.flex .menu-footer,
footer .bloc-bottom .container.flex .bloc-left.flex .menu-mentions {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

footer .bloc-bottom .container.flex .bloc-left.flex p {
    color: #fee423;
    font-size: 1.7rem;
    margin-bottom: 3.5rem;
}

footer .bloc-bottom .container.flex .bloc-left.flex a {
    color: white;
    opacity: 1;
}

footer .bloc-bottom .container.flex .bloc-left.flex a.btn--primary {
    color: #000;

    width: 100%;

    text-align: center;
}

footer .bloc-bottom .container.flex .bloc-left.flex a:hover {
    opacity: 0.5;
}

footer .bloc-bottom .container.flex .bloc-left.flex li {
    color: white;
}

footer .bloc-bottom .container.flex .bloc-left.flex li.tel {
    margin-top: 0;
}

footer .bloc-bottom .container.flex .bloc-left.flex li + li {
    margin-top: 2rem;
}

footer .bloc-bottom .container.flex .bloc-left.flex .menu-mentions {
    margin-top: 2.5rem;
}

@media (min-width: 576px) {
    footer .bloc-bottom .container.flex .bloc-left.flex .menu-mentions {
        margin-top: 5.5rem;
    }
}

footer .bloc-bottom .container.flex .bloc-left.flex .menu-footer {
    margin-top: 4rem;
}

@media (min-width: 576px) {
    footer .bloc-bottom .container.flex .bloc-left.flex .menu-footer {
        margin-top: 0;
    }
}

footer .bloc-bottom .container.flex .bloc-right.flex {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    flex-direction: column;
}

@media (min-width: 576px) {
    footer .bloc-bottom .container.flex .bloc-right.flex {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    footer .bloc-bottom .container.flex .bloc-right.flex {
        width: 50%;
        justify-content: flex-end;
        align-items: flex-end;
        margin-top: 0;
    }
}

footer .bloc-bottom .container.flex .bloc-right.flex p {
    font-size: 5.5rem;
    color: white;
    line-height: 5rem;
    margin-right: 0;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    footer .bloc-bottom .container.flex .bloc-right.flex p {
        margin-right: 6rem;
        margin-bottom: 0;
    }
}

footer .bloc-all-down.flex {
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-direction: column;
}

@media (min-width: 576px) {
    footer .bloc-all-down.flex {
        flex-direction: row;
    }
}

footer .bloc-all-down.flex p {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    footer .bloc-all-down.flex p {
        margin-bottom: 0;
    }
}

footer .bloc-all-down.flex ul.flex {
    flex-direction: row;
}

footer .bloc-all-down.flex ul.flex li a img {
    width: 2.5rem;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

footer .bloc-all-down.flex ul.flex li a:hover img {
    opacity: 0.5;
}

footer .bloc-all-down.flex ul.flex li + li {
    margin-left: 2.5rem;
}

/*=======================================
 =            Offres d'emploi            =
 =======================================*/
/*----------  Page liste  ----------*/
/* Moteur de recherche */
.job-offres-search {
    max-width: 100%;
    margin-top: 10px;
}

.job-offres-search label {
    display: none;
}

.job-offres-search fieldset {
    padding: 10px;
    margin: 0;
}

.job-offres-search-container {
    max-width: 100%;
}

@media (min-width: 768px) {
    .job-offres-search-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.job-offres-search-item {
    margin-top: 0;
    /* margin-bottom: 10px; */
    margin-right: 10px;
    border: 1px solid #484848;
}

.job-offres-search-item select {
    text-transform: uppercase;
    width: 100%;
    padding: 6px;
    border: 0 !important;
}

@media (min-width: 768px) {
    .job-offres-search-item {
        flex: 1;
    }
}

.job-offres-search-submit {
    margin-bottom: 10px;
}

.job-offres-search-submit .btn,
.job-offres-search-submit input[type=submit],
.job-offres-search-submit .next-page a,
.next-page .job-offres-search-submit a,
.job-offres-search-submit .search-pager a,
.search-pager .job-offres-search-submit a {
    text-transform: uppercase;
}

/* Liste */
.job-offres-list {
    margin: 0;
    list-style: none;
}

.job-offres-list li:before {
    content: none !important;
}

.job-offres-item a,
.job-offres-item a:visited {
    color: #000 !important;
    font-weight: bold;
    display: block;
    background-color: #fee423;
    text-decoration: none;
    margin-top: 15px;
    padding: 10px;
}

.job-offres-item a:hover,
.job-offres-item a:focus,
.job-offres-item a:visited:hover,
.job-offres-item a:visited:focus {
    color: #000;
    background-color: #f4f5f5;
}

@media (min-width: 768px) {

    .job-offres-item a,
    .job-offres-item a:visited {
        display: flex;
        width: 100%;
        align-items: center;
        padding: 5px 15px;
    }
}

.job-offres-item-title {
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
}

@media (min-width: 768px) {
    .job-offres-item-title {
        flex: 1;
        border-right: 1px solid #fff;
        padding: 10px 0;
    }
}

@media (min-width: 768px) {
    .job-offres-item-city {
        margin-left: 15px;
        width: 165px;
    }
}

/*----------  Detail offre  ----------*/
.job-offres .post-infos {
    font-style: italic;
}

.job-offres .share-social {
    display: none;
}

.job-offres-resume-header {
    margin-bottom: 30px;
    margin-top: 30px;
}

.job-offres-resume-header > p {
    background-color: #f4f5f5;
    padding: 10px;
}

@media (min-width: 480px) {
    .job-offres-resume-header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .job-offres-resume-header > p {
        width: 48%;
    }
}

@media (min-width: 768px) {
    .job-offres-resume-header > p {
        width: 49%;
    }
}

#single .container .content .wp-wysiwyg h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

#single .container .content .wp-wysiwyg p {
    font-size: 1.5rem;
}

#single .container:last-child .content fieldset ul li:before {
    content: none;
}

#single .container:last-child .content fieldset ul li input[type=checkbox] {
    width: auto;
}

.Actualite--page {
    background-color: #f5f5f5;
    position: relative;
    padding-bottom: 10rem;
}

.Actualite--page h1 {
    font-size: 6rem;
    margin-top: 9rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.Actualite--page h1:before {
    content: "";
    display: block;
    height: 3rem;
    width: 100%;
    background-color: #fee423;
    position: absolute;
    z-index: -1;
    left: -0.7rem;
    bottom: 0;
}

.Actualite--page .isotope-pager {
    display: flex;
    justify-content: center;
}

.Actualite--page .isotope-pager .is-active {
    transform: scale(2);
}

.Actualite--page .isotope-pager a {
    padding: 1rem;
    margin-right: 1rem;
    color: #70b93a;
}

.Actualite--page--categories {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}

.Actualite--page--categories li {
    padding: 2rem;
    position: relative;
}

.Actualite--page--categories li button {
    border: none;
    cursor: pointer;
    z-index: 2;
    position: relative;
    background-color: transparent;
}

.Actualite--page--categories .is-checked:before {
    content: "";
    display: block;
    height: 3rem;
    width: 1rem;
    background-color: #fee423;
    position: absolute;
    z-index: -1;
    left: 0;
}

.Actualite--page--articles {
    background-color: #fff;
    padding: 2rem;
}

.Actualite--page--articles--post {
    margin-bottom: 30px;
    right: 20px;
}

@media (min-width: 576px) {
    .Actualite--page--articles--post {
        right: unset;
        width: calc(50% - 35px);
    }
}

@media (min-width: 992px) {
    .Actualite--page--articles--post {
        right: unset;
        width: calc(33.3333% - 33.3333px);
    }
}

.Actualite--page--articles--post--content {
    box-shadow: 5px 5px 17px 1px rgba(0, 0, 0, 0.34);
}

.Actualite--page--articles--post--content img {
    -o-object-fit: cover;
    object-fit: cover;
}

.Actualite--page--articles--post--content--text {
    padding: 1rem;
}

.Actualite--page--articles--post--content--text h2 {
    display: inline-block;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.Actualite--page--articles--post--content--text h2:after {
    content: "";
    display: block;
    height: 3rem;
    width: 2rem;
    background-color: #fee423;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}

.Actualite--page--articles--post--content--text p {
    font-weight: 500;
    margin-bottom: 2rem;
}

.Actualite--page--articles--post--content--text--link {
    display: flex;
    justify-content: center;
}

.Actualite--page--articles--post--content--text--link a {
    display: inline-block;
    position: relative;
    color: #70b93a;
}

.Actualite--page--articles--post--content--text--link a:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 5px;
    background-color: #70b93a;
    transition: all 0.5s ease-in-out;
    right: -2.5rem;
    bottom: 50%;
    transform: translate(0%, 50%) rotate(180deg);
}

.Actualite--page--articles--post--content--text--link a:hover {
    opacity: 0.6;
}

.Actualite--page--articles--post--content--text--link a:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 15px;
    background-color: #70b93a;
    transition: all 0.5s ease-in-out;
    right: -2rem;
    bottom: 50%;
    transform: translate(0%, 50%) rotate(180deg);
}

body {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
}

#actualites {
    padding-top: 60px;
}

.container {
    padding: 0 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .container {
        padding: 0 0;
        width: 61rem;
    }
}

@media (min-width: 992px) {
    .container {
        width: 85rem;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 100rem;
    }
}

@media (min-width: 1365px) {
    .container {
        width: 120rem;
    }
}

.light {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
}

.bold {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
}

.xbold {
    font-family: "Raleway", sans-serif;
    font-weight: 800;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: grid;
}

.home strong {
    font-weight: 400;
    font-size: 2rem;
    display: inline-block;
    position: absolute;
}

@media (min-width: 768px) {
    .home strong {
        transform: rotate(-90deg);
    }
}

.home strong::after {
    content: "";
    background-color: #fee423;
    display: block;
    width: 110%;
    height: 2rem;
    position: absolute;
    bottom: -0.7rem;
    left: -0.5rem;
    z-index: -1;
}


h1 {
    font-size: 4rem;
    line-height: 4rem;
}

@media (min-width: 576px) {
    h1 {
        font-size: 6rem;
        line-height: 6rem;
    }
}

h2 {
    font-weight: 800;
    font-size: 5rem;
    margin-bottom: 6rem;
    line-height: 1em;
}

@media (min-width: 576px) {
    h2 {
        font-size: 6rem;
        line-height: 1.3em;
    }
}

h3 {
    font-size: 1.9rem;
}




/* Modifications 24/04/2024 */

@media (min-width: 992px) {
    #contact .flex {
        align-items: flex-start;
        gap: 5rem;
    }

    #contact .flex .contact--list {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}


.formulaire {
    flex: 1;

    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    padding: 2rem;
    background-color: #fff;
}

.gform_required_legend {
    display: none;
}

#gform_fields_1 input[type="text"] {
    border: none;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #000;
    border-radius: 0px;
}

#gform_fields_1 input[type="email"] {
    border: none;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #000;
    border-radius: 0px;
}

#gform_fields_1 input[type="tel"] {
    border: none;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #000;
    border-radius: 0px;
}


#gform_submit_button_1 {
    width: 100%;
    background-color: #70b93a;
    border: 2px solid #70b93a !important;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 30px;
}

#gform_submit_button_1:hover {
    background-color: #ffff;
    border: 2px solid #70b93a !important;
    color: #70b93a;
    font-size: 2rem;
    font-weight: 600;
}

#gform_fields_1 input::placeholder {
    color: #000;
    opacity: .5;
    font-weight: 600;
}

#gform_fields_1 textarea {
    border: none;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #000;
    border-radius: 0px;
}

.gfield_consent_description {
    border: none !important;
}

#gform_fields_1 textarea::placeholder {
    color: #000;
    opacity: .5;
    font-weight: 600;
}

#gform_confirmation_message_1 {
    padding: 5rem;
}

#gf_1 {
    padding-top: 100px;
    margin-top: -100px;
}


.Actualite--page--articles {
    align-items: stretch;
}

.Actualite--page--articles--post {
    display: flex;
}

.Actualite--page--articles--post--content--text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.Error404 {
}

.Error404-content {
    min-height: 60vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Error404-content h1 {
    margin-bottom: 2rem;
}

.Error404-content a {
    color: #70b93a;
}

.Error404-content a:hover {
    color: #F2DF21;
}

.about-page,
.offer-page,
.faq-page {
    padding: 10rem 0;
}

.about-page h1,
.offer-page h1,
.faq-page h1 {
    display: inline-block;
    font-size: 6rem;
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
    margin-top: 6rem;
    line-height: 1em;
}

@media (min-width: 768px) {
    .about-page h1:after,
    .offer-page h1:after,
    .faq-page h1:after {
        content: "";
        display: block;
        height: 2rem;
        width: 100%;
        background-color: #fee423;
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0;
    }
}

.about-page h2 {
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .about-page h2 {
        margin-bottom: 6rem;
    }

    .about-page .section-3 h2 {
        margin-bottom: 5rem;
    }
}

.about-page-content {
    position: relative;
}

.about-page-content p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-1 {
    padding: 0rem 0 8rem;
}

.about-page span strong {
    font-weight: 800;
    font-size: 1.5rem;
    display: inline-block;
    position: absolute;
    left: -13rem;
    top: 1rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .about-page strong {
        transform: rotate(-90deg);
    }
}

.about-page span strong::after {
    content: "";
    background-color: #fee423;
    display: block;
    width: 97%;
    height: 1.4rem;
    position: absolute;
    bottom: -1.1rem;
    left: 0rem;
    z-index: -1;
}


.about-page h2 {
    font-size: clamp(3rem, 3vw, 5rem);
}

.about-page .section-2 span strong,
.about-page .section-3 span strong,
.about-page .section-4 span strong {
    font-weight: 400;
    font-size: 1.5rem;
    display: inline-block;
    position: absolute;
    left: -13rem;
    top: 4rem;
    text-transform: lowercase !important;
}

.about-page .section-2 span strong::after, .about-page .section-3 span strong::after {
    content: "";
    background-color: #fee423;
    display: block;
    width: 97%;
    height: 1.4rem;
    position: absolute;
    bottom: -0.7rem;
    left: 0rem;
    z-index: -1;
}

.section-2 {
    padding: 0rem 0 8rem;
}

.section-3 {

    padding: 0rem 0 8rem;
}

.container .about-page span strong {
    top: -5rem;
    left: 0rem;
}

@media (min-width: 768px) {
    .container .about-page span strong {
        top: 1rem;
        left: -10.8rem;
        transform: rotate(-90deg);
    }
}

@media (min-width: 1441px) {
    .container .about-page strong {
        left: -20.8rem;
    }
}

.about-page .section--no-mb h2 {
    margin-bottom: 1px;
}

.about-page .section-5 {
    margin-top: 6rem;
}

.about-page .section-5 ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-page .section-5 ul li {
    position: relative;
    padding-left: 2rem;
    margin: 4px 0;
}

.about-page .section-5 ul li::before {
    position: absolute;
    left: 0;
    top: 8px;
    content: '';
    width: 12px;
    height: 12px;
    background-color: #23A3AB;
}

.about-page .section-5 h3 {
    font-size: 2.8rem;
    text-transform: uppercase;
    line-height: normal;

    color: #363537;

    margin-bottom: 2.2rem;
    margin-top: 3.6rem;
}

.about-page .section-5 h4 {
    margin-top: 0;
    margin-bottom: 2rem;

    font-size: 2.4rem;

    color: var(--secondary);
}

.about-page .certifications-list .list__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;

    margin: 2.5rem 0;
}

@media screen and (min-width: 768px) {
    .about-page .certifications-list .list__item {
        grid-template-columns: 122px 1fr;
        align-items: flex-start;
    }
}

.about-page .certifications-list .list__item-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 120px;
    border: 1px solid #dcdcdc;
}

.chiffres-group {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.chiffres-item {
    flex-basis: 33%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.chiffres-item span {
    font-size: 6rem;
    line-height: 1;

    color: #70b93a;
}

@media screen and (min-width: 768px) {
    .chiffres-item span {
        font-size: 8rem;
    }
}

.menu2 {
    justify-content: flex-end;
}

.section-4-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

@media (min-width: 992px) {
    .section-4-content {
        flex-direction: row;
    }
}

.section-4-content h3 {
    text-transform: uppercase;
}


.section-4 .bloc.bubbles.flex {
    background-image: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section3/white-bubble.png);
    background-repeat: no-repeat;
    background-position: 9.5% 31%;
    width: 33.6rem;
    height: 33.6rem;
    position: relative;
    align-self: center;
    margin-top: 9rem;
    background-size: cover;
}

@media (min-width: 360px) {
    .section-4 .bloc.bubbles.flex {
        background-size: contain;
        width: 45.6rem;
        height: 45.6rem;
    }
}

@media (min-width: 992px) {
    .section-4 .bloc.bubbles.flex {
        align-self: initial;
        margin-top: 0;
    }
}

.section-4 .bloc.bubbles.flex::before {
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

@media (min-width: 360px) {
    .section-4 .bloc.bubbles.flex::before {
        content: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section3/before-grey-bubble.png);
        transform: scale(1.5) translate(70px, 65px);
    }
}

.section-4 .bloc.bubbles.flex::after {
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}

@media (min-width: 360px) {
    .section-4 .bloc.bubbles.flex::after {
        content: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section3/after-grey-bubble.png);
        transform: scale(1.5) translate(70px, 65px);
    }
}

.section-4 .bloc.bubbles.flex .logos {
    width: 19.1rem;
    padding-bottom: 5rem;
}

.section-4 .bloc.bubbles.flex .logos ul.flex {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}

.section-4 .bloc.bubbles.flex .logos ul.flex li {
    margin-top: 2rem;
}

.section-4 .bloc.bubbles.flex .logos ul.flex li img {
    max-width: 7.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.title-actus {
    margin-bottom: 2rem;
}

.title-actus p {
    margin-top: 1rem;
}

@media screen and (min-width: 992px) {
    .title-actus {
        display: flex;
        align-items: baseline;
    }

    .title-actus p {
        margin-left: 2rem;
        margin-top: 0;
    }
}

/* Page "Offre" */
.offer-page {
    font-weight: 400;
}

.offer-page h1 {
    margin-bottom: 10px;
}

.offer-page .header-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 3rem;

    margin-bottom: 4rem;
}

@media screen and (max-width: 575px) {
    .offer-page .header-subtitle {
        font-size: 2.2rem;
    }
}

.offer-page .section {
    position: relative;
    margin: 4rem 0;
}

.offer-page .section h2 {
    margin-bottom: 4rem;
    padding-top: 3rem;
}

@media screen and (min-width: 768px) {
    .offer-page .section {
        margin: 5.5rem 0;
    }

    .offer-page .section h2 {
        padding-top: 0;
    }
}

@media screen and (min-width: 1199px) {
    .offer-page .section {
        margin: 7rem 0;
    }
}

.offer-page .section h3 {
    font-size: 2.8rem;
    line-height: normal;
    margin-bottom: 2.2rem;
}

.offer-page .section ul {
    padding-left: 2rem;
}

.offer-page .section ul li {
    position: relative;
    padding-left: 2rem;
    margin: 4px 0;
}

.offer-page .section ul li::before {
    position: absolute;
    left: 0;
    top: 8px;
    content: '';
    width: 12px;
    height: 12px;
    background-color: #23A3AB;
}

.offer-page .section .subtitle {
    font-weight: 400;
    font-size: 1.5rem;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .offer-page .section .subtitle {
        top: 8px;
        left: -6rem;
        rotate: 180deg;
        writing-mode: vertical-lr;
        text-orientation: inherit;
    }
}

@media screen and (min-width: 1200px) {
    .offer-page .section .subtitle {
        left: -8rem;
    }
}

.offer-page .section .subtitle::after {
    content: "";
    background-color: #fee423;
    display: block;
    width: 97%;
    height: 1.4rem;
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    z-index: -1;
}

@media screen and (min-width: 768px) {
    .offer-page .section .subtitle::after {
        bottom: 1px;
        left: -1.1rem;
        width: 1.4rem;
        height: 99%;
    }
}

.offer-page .section p {
    margin-bottom: 1.5rem;
}

.offer-page .offer-page__footer {
    text-align: center;

    margin: 5rem 0 3rem 0;
}

.content--page .section {
    margin: 3rem 0;
}

.content--page h2 {
    font-size: clamp(3rem, 3vw, 5rem);
    margin-bottom: 3rem;
}

.content--page h3 {
    font-size: 2.8rem;
    text-transform: uppercase;
    line-height: normal;

    color: #363537;

    margin-bottom: 2.2rem;
    margin-top: 0;
}

.content--page ul,
.content--page ol {
    margin: 2rem 0;
}

@media screen and (min-width: 768px) {
    .content--page .section {
        margin: 5rem 0;
    }
}

@media screen and (min-width: 1199px) {
    .content--page .section {
        margin: 6.5rem 0;
    }
}

/* Section "Texte & image" */
.section--text-image .img-content {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;
}

@media screen and (min-width: 992px) {
    .section--text-image .content,
    .section--text-image .content-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .section--text-image.section--text-image-left .content,
    .section--text-image.section--text-image-left .content-wrapper {
        flex-direction: row-reverse;
    }

    .section--text-image .text-content {
        width: calc(50% - 16px);
    }

    .section--text-image .img-content {
        width: calc(50% - 16px);
        padding: 0;
    }

    .section--text-image.section--text-image-40-60 .text-content {
        width: calc(40% - 16px);
    }

    .section--text-image.section--text-image-40-60 .img-content {
        width: calc(60% - 16px);
        padding: 0;
    }

    .section--text-image.section--text-image-60-40 .text-content {
        width: calc(60% - 16px);
    }

    .section--text-image.section--text-image-60-40 .img-content {
        width: calc(40% - 16px);
        padding: 0;
    }

    .section--text-image.section--text-image-40-60.section--text-image-left .text-content {
        width: calc(60% - 16px);
    }

    .section--text-image.section--text-image-40-60.section--text-image-left .img-content {
        width: calc(40% - 16px);
        padding: 0;
    }

    .section--text-image.section--text-image-60-40.section--text-image-left .text-content {
        width: calc(40% - 16px);
    }

    .section--text-image.section--text-image-60-40.section--text-image-left .img-content {
        width: calc(60% - 16px);
        padding: 0;
    }
}

@media screen and (min-width: 1199px) {
    .section--text-image .text-content {
        width: calc(50% - 22px);
    }

    .section--text-image .img-content {
        width: calc(50% - 22px);
    }

    .section--text-image.section--text-image-40-60 .text-content {
        width: calc(40% - 22px);
    }

    .section--text-image.section--text-image-40-60 .img-content {
        width: calc(60% - 22px);
        padding: 0;
    }

    .section--text-image.section--text-image-60-40 .text-content {
        width: calc(60% - 22px);
    }

    .section--text-image.section--text-image-60-40 .img-content {
        width: calc(40% - 22px);
        padding: 0;
    }

    .section--text-image.section--text-image-40-60.section--text-image-left .text-content {
        width: calc(60% - 22px);
    }

    .section--text-image.section--text-image-40-60.section--text-image-left .img-content {
        width: calc(40% - 22px);
        padding: 0;
    }

    .section--text-image.section--text-image-60-40.section--text-image-left .text-content {
        width: calc(40% - 22px);
    }

    .section--text-image.section--text-image-60-40.section--text-image-left .img-content {
        width: calc(60% - 22px);
        padding: 0;
    }
}

/* Section "Bannière" */
.section--banner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section "Etapes" */
.section--steps .steps__heading {
    padding: 0 0 30px 0;
}

.section--steps .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.section--steps .steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    width: 100%;

    padding: 0 12px;
}

.section--steps .steps__item-number {
    position: relative;

    width: 100px;

    font-weight: 700;
    font-size: 2.2rem;

    padding: 15px 0 10px 0;
    margin-bottom: 16px;
}

.section--steps .steps__item-number span {
    position: relative;
    color: #fff;
}

.section--steps .steps__item-number::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    z-index: 0;

    width: 100px;
    height: 66px;

    background-image: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/offer/patate.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.section--steps .steps__item-description {
    color: var(--tertiary);
    font-weight: 700;
    line-height: 1;
}

@media screen and (min-width: 576px) {
    .section--steps .steps__item {
        width: 48%;
    }
}

@media screen and (min-width: 992px) {
    .section--steps .steps__item {
        width: 31%;
    }

    .section--steps .steps__item-number {
        font-size: 3rem;
    }
}

@media screen and (min-width: 1200px) {
    .section--steps .steps__item {
        width: 23%;
    }
}

/* Section "Encart bleu" */

.section--block .bloc-content {
    background-color: #23A3AB;
    color: #fff;

    padding: 2rem;
    margin-left: auto;
    margin-right: auto;

    max-width: 860px;
}

.section--block .bloc-content h2 {
    margin-bottom: 2rem;
}

.section--block .bloc-content a {
    text-decoration: underline;
    font-weight: 400;
}

@media screen and (min-width: 576px) {
    .section--block .bloc-content h2 {
        font-size: 3.6rem;
    }
}

.section--block.section--block-primary .bloc-content {
    background-color: var(--primary);
    color: #000;
}

.section--block.section--block-secondary .bloc-content {
    background-color: var(--secondary);
    color: #FFF;
}

.section--block.section--block-tertiary .bloc-content {
    background-color: var(--tertiary);
    color: #fff;
}

.section--block.section--block-primary .bloc-content * {
    color: #000;
}

.section--block.section--block-secondary .bloc-content * {
    color: #FFF;
}

.section--block.section--block-tertiary .bloc-content * {
    color: #fff;
}

#single .container .content--page .section--block a {
    font-weight: 300;
    color: inherit;
}

#single .container .content--page .section--block a:hover {
    text-decoration: none;
}

.section--numbers .chiffres-item {
    text-align: center;
}

/* Page FAQ 
::::::::::::::::::::::::::::::::::::::::::::::::::: */
.faq-page ul,
.faq-page ol,
.faq-page p {
    margin: 18px 0;
}
.faq-page ul,
.faq-page ol {
    padding-left: 24px;
}
.faq-page ul {
    list-style-type: disc;
}
.faq-page ol {
    list-style-type: auto;
}


.faq-page__top-content {
    font-weight: 400;
}

.accordion {
    border-bottom: .1rem solid rgba(23, 58, 73, 0.09);
}

.accordion {
    margin: 2px 0
}

.accordion__button {
    position: relative;
    display: inline-block;

    text-align: left;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.6rem;

    width: 100%;
    box-sizing: border-box;

    background-color: rgba(0,0,0,0);
    border: none;

    padding: 12px 26px 12px 6px;

    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.accordion__button:hover {
    background-color: #f5f5f5;
}

.accordion__button:focus {
    outline: 2px solid rgba(112,185,58,0.25);
}

.accordion__button::before,
.accordion__button::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 50%;

    width: 5px;
    height: 15px;

    background-color: #70b93a;
    transition: all 0.5s ease-in-out;
    transform: translate(0%, 50%) rotate(180deg);
}

.accordion__button::after {
    transform: translate(0%, 50%) rotate(90deg);
}

.accordion__button.active::before, 
.accordion__button.active::after {
    transform: translate(0%, 50%) rotate(270deg);
}

@media screen and (min-width: 576px) {
    .accordion__button {
        font-size: 1.9rem;
    }
}

.accordion__panel {
    font-weight: 400;

    height: 0;

    padding: 0 12px;

    background-color: #f5f5f5;

    overflow: hidden;
}

.accordion__panel.open {
    height: auto;

    padding: 16px 12px;
}

.accordion__panel a {
    color: #1ca1ac;
    text-decoration: underline;
}

.accordion__panel a:hover {
    text-decoration: none;
}

/* Tribu and co  */
#single .wp-wysiwyg strong {
    font-weight: 700;
}
#single .wp-wysiwyg p {
    margin-bottom: 1rem;
}

/* Liste des offres d'emploi */
ul.job-offres-list li.job-offres-item,
#single ul.job-offres-list .job-offres-item {
    list-style-type: none !important;
    list-style: none !important;
}

/* ACCUEIL - Section "Aides fianncières" */
#aid {
    padding-top: 11rem;
    padding-bottom: 11rem;
    background-color: #f5f5f5;
}

#aid .container > strong {
    top: -7rem;
    left: 2rem;
}

@media (min-width: 768px) {
    #aid .container > strong {
        top: 7rem;
        left: -14rem;
    }
}

@media (min-width: 1441px) {
    #aid .container > strong {
        top: 9rem;
        left: -18.7rem;
    }
}

.aid__list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;

    margin-bottom: 42px;
}

.aid__list strong {
    position: static;
    transform: none;
    font-weight: 900;
}

.aid__list strong::after {
    display: none;
}

.aid__list-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: relative;

    width: 276px;
    box-sizing: border-box;

    padding: 20px 34px;

    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.15;

    aspect-ratio: 5 / 4;

    background-image: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section7/patate.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 96% auto;
}

.aid__list-item::after {
    content: '';
    position: absolute;
    left: -40px;
    top: calc(50% - 9px);

    width: 40px;
    height: 19px;

    background-image: url(https://www.bs-energies.com/wp-content/themes/bse/css/../img/section7/fleche.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media screen and (max-width: 509px) {
    .aid__list { 
        justify-content: center;
    }
    .aid__list-item::after {
        transform: rotate(90deg);
        top: -27px;
        left: calc(50% - 20px);
    }
}

.aid__list-item:first-of-type::after {
    display: none;
}

@media screen and (min-width: 510px) {
    .aid__list-item {
        width: calc(50% - 19px);
    }
}

@media screen and (min-width: 620px) {
    .aid__list-item {
        width: calc(50% - 36px);
    }
}

@media screen and (min-width: 510px) and (max-width: 991px) {
    .aid__list-item:nth-of-type(2n + 1)::after {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .aid__list-item {
        width: calc(33% - 36px);
    }
    
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .aid__list-item:nth-of-type(3n + 1)::after {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .aid__list-item {
        width: calc(25% - 28px);
    }
    .aid__list-item:nth-of-type(4n + 1)::after {
        display: none;
    }
}

.aid__list-item-text {
    max-width: 190px;
}