@media all and (max-width: 1023px) {
    .episens_experts_container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .episens_experts_img_container {
        max-height: 140px;
    }

    .episens_experts_img_container img {
        border-radius: 40px;
        max-height: 140px;
        width: 100%;
        object-fit: cover;
    }

    .episens_experts_informations {
        text-align: center;
    }
}

@media all and (min-width: 1024px) {
    .episens_experts_container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }
}


.episens_experts_img_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.episens_experts_img_container img {
    border-radius: 40px;
    height: 140px;
    width: 100%;
    object-fit: cover;
}

span.episens_experts_icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
    background: #0A517C;
    margin: 0 auto;
}

span.episens_experts_icon svg {
    width: 30px;
    fill: #ffffff;
}

.episens_experts_informations {
    margin: 20px 0;
    text-align: center;
}

.episens_experts_informations h4 {
    font-family: EuclidFlexBold, sans-serif;
    font-size: 20px;
    color: #CF9955;
}

.episens_experts_informations p {
    font-family: EuclidFlex, sans-serif;
    color: #0A517C;
    font-size: 18px;
}