/* ====================
   SECTION : Homepage Block
   ==================== */

.homepage-block_section {
    margin-top: 50px;
}

.homepage-block_section .homepage-block_item {
    height: 100%;
    padding-top: 60px;
    text-align: center;
    position: relative;
}

.homepage-block_section .homepage-block_item .homepage-block_picture {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -50px;
    left: calc(50% - 50px);
    text-align: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    background-color: var(--couleur1-ce);
}

.homepage-block_section .row .col-lg-3:nth-child(odd) .homepage-block_picture {
    background-color: var(--couleur2-ce); /* Couleur pour les éléments pairs */
}

.homepage-block_section .homepage-block_item:hover .homepage-block_picture {
    transform: translateY(-8px);
    box-shadow: 0 5px 10px 0 rgba(48, 89, 158, 0.1);
}

.homepage-block_section .homepage-block_item .homepage-block_picture i {
    font-size: 50px;
}

.homepage-block_section .homepage-block_item .homepage-block_picture img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.homepage-block_section .homepage-block_item .homepage-block_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}