.encarts-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.encart {
    padding: 20px;
    background: white;
    min-width: 350px;
    padding-bottom: 30px;
    border: 1px solid #dee2e6;
}

.encarts_title {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    color: #747474;
    font-family: 'Inter';
    margin-top: 10px;
}

.dynamic-number {
    font-size: 1.5rem;
    color: #343434;
    font-weight: 600;
    font-family: 'Inter';
}

.encart_header {
    display: flex;
    justify-content: space-between;
}

.container_pictos_demandes {
    width: 40px;
    height: 40px;
    background-color: rgba(62, 104, 131, 0.34);
    border-radius: 100%;
    align-content: center;
    display: grid;
}

.pictos_demandes {
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1300px) {
    .encart {
        min-width: 280px;
    }
}

@media screen and (max-width: 992px) {
    .encart {
        min-width: auto;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .encart {
        min-width: auto;
        width: 100%;
    }

    .encarts-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .encart {
        min-width: auto;
        width: 100%;
        padding-bottom: 20px;
    }
}