.big-title{
    text-align: center;
}
.container-boton-top{
    display: flex;
    justify-content: center;
}
.container-boton-top .btn-soul{
    opacity: 0;
    animation: fade-in 1s ease 0.5s 1 forwards;
}
@keyframes fade-in {
    from{
        opacity: 0;
        transform: translateX(-100px);
        filter: blur(10px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}
.space{
    margin: 30px 0;
}
.description{
    font-weight: 300;
}
.cifras-soul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 10px;
    margin-top: 50px;
}
.cifra{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 145px;
}
.cifra .num-cifra{
    font-size: 40px;
    font-weight: 800;
    color: #614FFF;
}
.cifra .text-cifra{
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}
.span-bottom{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.span-bottom span{
    font-size: 18px;
    font-weight: 700;
}
.section-tab-nosotros{
    background: linear-gradient(0deg, #070751 2.58%, #2D259B 55.81%, #070751 98.61%);
}
.tabs-nuestro-proceso{
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    overflow: auto;
}
.tabs-nuestro-proceso::-webkit-scrollbar {
    display: none;
}
.tab-nuestro-proceso{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #614FFF;
    border-radius: 5px;
    padding: 20px 0;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
    width: 200px;
    min-width: 200px;
    user-select: none;
}
@media (min-width: 576px) {
    .cifra .num-cifra{
        font-size: 50px;
    }
}
@media (min-width: 768px) {
    .space{
        margin: 40px 0;
    }
    .description{
        font-size: 20px;
    }
    .cifra .num-cifra{
        font-size: 55px;
    }
}
@media (min-width: 992px) {
    .container-boton-top {
        justify-content: end;
    }
    .description{
        width: 70%;
        margin-left: auto;
    }
    .cifras-soul{
        margin-top: 80px;
    }
    .cifra .num-cifra{
        font-size: 60px;
    }
    .tabs-nuestro-proceso{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}
@media (min-width: 1200px) {
    .space{
        margin: 50px 0;
    }
    .description{
        font-size: 24px;
    }
    .cifras-soul{
        justify-content: space-between;
        margin-top: 100px;
    }
    .cifra .num-cifra{
        font-size: 64px;
    }
    .cifra .text-cifra{
        font-size: 16px;
    }
    .span-bottom span{
        font-size: 20px;
    }
    .tabs-nuestro-proceso{
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}