main {
    text-align: center;
    font-weight: bolder;
}

.partenaire {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px; /* Adjust this value for more or less space */
    align-items: center;
}

.partenaire img {
    width: 100px; /* Set the desired width */
    height: 100px; /* Set the desired height */
    object-fit: contain; /* Maintain aspect ratio */
    flex-shrink: 0; /* Prevent images from shrinking */
}

h3 {
    font-size: 30px;
    margin: 10px 0;
}

.parchemin {
    background-color: rgba(242, 232, 201, 0.5);
    border: 2px solid rgba(211, 182, 131, 0.5);
    color: black;
    position: relative;
    text-align: center;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
    padding: 2%;
    border-bottom: 2px solid #000;
}

.box {
    background-color: rgba(242, 232, 201, 0.5);
    border: 2px solid rgba(211, 182, 131, 0.5);
    color: black;
    position: relative;
    text-align: center;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
    padding: 1%;
    border-bottom: 2px solid #000;
}

.parchemin::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0) 20%,
            rgba(0, 0, 0, 0) 80%,
            rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
}

.parchemin::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    pointer-events: none;
}


/* Responsive Design */
@media screen and (min-width: 1200px) {
    .row {
        grid-template-columns: repeat(5, 1fr);
    }
    .row:nth-child(2) {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .row, .row:nth-child(2) {
        grid-template-columns: repeat(3, 1fr);
    }

    img {
        width: 15%;
    }

}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .row, .row:nth-child(2) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 479px) {
    .row, .row:nth-child(2) {
        grid-template-columns: 1fr;
    }
}