/**** Bannière *****/
.home-banner {
    position: relative;
    background-size: 200%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
}
.home-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.25);
}
.home-banner > * {
    position: relative;
    z-index: 1;
}
.home-banner h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}
.home-banner h2 {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 15px;
}
@media screen and (min-width: 991px) {
    .home-banner {
        height: 80vh;
        background-size: contain;
    }
    .home-banner h1 {
        font-size: 2.625rem;
    }
    .home-banner h2 {
        font-size: 1.75rem;
    }
}
/**** Introduction ****/
.home-intro {
    padding-top: 5vh;
    padding-bottom: 0;
    text-align: center;
}
.home-intro h2 {
    text-transform: uppercase;
    margin-bottom: 4vh;
    font-size: 1.75rem;
    font-weight: 700;
}
@media screen and (min-width: 991px) {
    .home-intro {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
}
/*** présentation ****/
.home-presentation {
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.home-presentation .left {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid var(--wp--preset--color--grey-600);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.home-presentation .left h2 {
    text-transform: uppercase;
    margin-bottom: 3vh;
    font-size: 1.5rem;
}
@media screen and (min-width: 991px) {
    .home-presentation .left {
        padding: 25px;
    }
    .home-presentation .left h2 {
        font-size: 1.625rem;
    }
}
.home-presentation .image {
    border-radius: 20px;
    aspect-ratio: 5/3;
    overflow: hidden;
}
.home-presentation .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/**** Pour les professionnels ****/
.home-professionnels {
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.home-professionnels h2 {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 4vh;
    padding-left: 25px;
}
.home-professionnels h2:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 2px;
}
.home-professionnels .image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 50px;
}
.home-professionnels .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.home-professionnels .pro-list { 
    list-style: none; padding: 0; margin: 0; 
}
.home-professionnels .pro-list__item { 
    cursor: pointer; padding: 15px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.home-professionnels .pro-list__item.is-active { 
    color: var(--wp--preset--color--color-1);
}
.home-professionnels .pro-list__item h3 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.125rem;
}
@media screen and (min-width: 991px) {
    .home-professionnels {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
}
/**** Catégories prestations ****/
.home-produits {
    border-top: 1px solid rgba(255,255,255,0.6);
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.home-produits h2 {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 4vh;
    padding-left: 25px;
}
.home-produits h2:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 2px;
}
.home-produits .categories {
    margin-top: 8vh;
}
@media screen and (min-width: 991px) {
    .home-produits {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
}
.item-categorie .image {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: 20px;
}
.item-categorie .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.item-categorie .image .overlay {
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #1E1F20;
    padding: 20px;
    border-radius: 20px;
    /* font-size: 1.25rem; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border: 1px solid var(--wp--preset--color--color-1);
    transition: 0.35s all;
}
@media screen and (min-width: 991px) {
    .item-categorie .image .overlay {
        font-size: 1.25rem;
    }
}
.item-categorie:hover .image .overlay {
    opacity: 1;
    height: 100%;
    transition: 0.35s all;
}
.item-categorie .title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.375rem;
    margin-top: 10px;
    margin-left: 10px;
}
.item-categorie:hover .title {
    color: var(--wp--preset--color--color-1);
}