/* Block CSS */
.historic .picto {
    width: 80px;
}

.historic {
    position: relative;
    max-width:1024px;
    margin-left:auto;
    margin-right: auto;
}

.historic::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--darkblue);
    position: absolute;
    left: 50%;
    top: 0;
}

@media screen and (min-width: 768px) {
    .historic::before {
        left: 12.5%;
    }
}

.historic .item {
    position: relative;
    background-color: var(--blanc);
}

.historic .date {
    font-weight: bold;
    font-size: 1.25rem;
}

.historic .picto img {
    object-fit: contain
}

@media screen and (min-width: 1200px) {
    .historic .picto {
        width: 75px;
    }
}

/* Plan du site */
.plan-du-site {
    text-align: left;
}

.plan-du-site__title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--darkblue);
    border-bottom: 2px solid var(--jaune);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.plan-du-site__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-du-site__list li {
    padding: 0.25rem 0;
}

.plan-du-site__list li a {
    color: var(--noir);
    font-size: 0.95rem;
}

.plan-du-site__list li a:hover {
    color: var(--darkblue);
}

.plan-du-site__list ul {
    list-style: none;
    padding-left: 1.25rem;
    margin: 0.25rem 0;
}

.plan-du-site__list ul li a {
    font-size: 0.875rem;
    color: var(--darkblue);
}

.plan-du-site__list ul li::before {
    content: "— ";
    color: var(--jaune);
}

.bloc-lien-images .bloc {
    position: relative
}

.bloc-lien-images .bloc .bloc-liens {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    color: var(--blanc)
}

.bloc-lien-images .bloc .bloc-liens .accroche {
    text-transform: uppercase;
}

.dev-durable .accroche {
    text-transform: uppercase;
}

.dev-durable .picto {
    width: 108px;
}

.dev-durable .svg svg {
    width: 120px;
    height: 120px;
}

.bloc-heading-home {
    position: relative;
    z-index: 2
}
.bloc-heading-home .bloc-video{
    z-index: 2;
}

.bloc-heading-home .labels {
    gap: 0 1rem;
    position: relative;
    z-index: 5;
    margin-bottom: -64px
}

@media screen and (max-width: 520px) {
    .bloc-heading-home .labels {
        margin-bottom: -32px
    }
}

.bloc-heading-home .label img {
    width: 128px;
}

.bloc-heading-home .video {
    margin-bottom: 3rem;
}

.bloc-heading-home .heading-text {
    font-size: 1.2rem;
    position:relative;
}
@media screen and (min-width:992px){
    .bloc-heading-home .heading-text::before {
        content:"";
        display: block;
        position: absolute;
        top:0;
        left:0;
        width:2rem;
        height: 100%;
        transform: translateX(-100%);
        background-color: var(--darkblue);
    }
}

.categ-produits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .categ-produits {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
}

.categ-produits .item {
    position: relative;
}

.categ-produits a {
    position: relative
}

.categ-produits .back-image {
    position: relative;
    z-index: 1;
    background-color: rgb(240, 240, 240);
}

.categ-produits .back-image .filter {
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, .2);
    z-index: 2;
    position: absolute;
    height: 100%;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.categ-produits .back-image img {
    object-fit: cover;
    z-index: 1
}

.categ-produits a .ttl {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-transform: uppercase;
    color: var(--blanc);
    background-color: var(--bleuclair);
    z-index: 3;
    text-align: center;
    transition: all 0.2s ease;
    font-weight: 600;
}

.categ-produits a:hover .ttl {
    background-color: var(--darkblue);
}

.categ-produits a:hover .back-image .filter {
    opacity: 0
}


@media screen and (min-width: 768px) {
    .categ-produits .item {
        width: calc(50% - .5rem);
    }
}

@media screen and (min-width: 992px) {
    .categ-produits .item {
        width: calc(22.5% - .25rem);
    }

    .categ-produits {
        width: 90%;
        margin: 0 auto;
        transform: translateY(-1rem)
    }
}

@media screen and (min-width: 1440px) {
    .categ-produits .item {
        width: calc(19.5% - .5rem);
    }
}
