.educa-stats-wrapper {
    display: flex;
    gap: 40px;
    font-size: 28px;
    font-weight: 600;
}

.stat {
    text-align: center;
}


.institution-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.institution-logo {
    height: 40px;
    width: auto;
}

.institution-logos-cajas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.institution-logo-box {
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.institution-logo-box img {
    max-height: 40px;
    width: auto;
}

/* stats */

.pharos-stats-wrapper {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 40px 0;
}

.pharos-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
}

.big {
    font-size: 36px;
    font-weight: 700;
    color: #0d2f4f;
}

.label {
    font-size: 14px;
    color: #0d2f4f;
}

.pharos-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.circle {
    position: relative;
    width: 140px;
    margin: auto;
}

.circle svg {
    transform: rotate(-90deg);
}

circle {
    fill: none;
    stroke-width: 10;
}

circle.bg {
    stroke: #e6e6e6;
}

circle.progress {
    stroke: #9e1630;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    transition: stroke-dashoffset 1.8s ease;
}

.percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    color: #0d2f4f;
}

.stat-circle p {
    font-size: 14px;
    margin-top: 15px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

/* responsive */

@media(max-width:900px) {

    .pharos-top {

        gap: 20px;
    }

    .pharos-bottom {
        grid-template-columns: 1fr 1fr;
    }

}