.process{
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--third-color);
    flex-direction: column;
}
.processTitle{
    width: 100%;
    height: auto;
    text-align: center;
    color: var(--main-color);
    padding: 4rem;
    font-size: 1.8rem;
}

.processTitle span{
    font-family: 'Strong';
}

.processContent{
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processContent img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.processBtn{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem;
}
.processBtn img{
    width: 25rem;
    height: auto;
    cursor: pointer;
}

/* --- RESPONSIVE --- */

/* Laptops pequeñas / tablets grandes */
@media (max-width: 1024px) {
    .processTitle{
        padding: 3.5rem 2rem;
        font-size: 1.6rem;
    }

    .processBtn{
        padding: 4rem;
    }

    .processBtn img{
        width: 20rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .processTitle{
        padding: 2.5rem 1.5rem;
        font-size: 1.4rem;
    }

    .processContent{
        width: 95%;
    }

    .processBtn{
        padding: 3rem 1.5rem;
    }

    .processBtn img{
        width: 16rem;
    }
}

/* Celulares medianos */
@media (max-width: 480px) {
    .processTitle{
        padding: 2rem 1rem;
        font-size: 1.2rem;
    }

    .processBtn{
        padding: 2.5rem 1rem;
    }

    .processBtn img{
        width: 12rem;
    }
}

/* Celulares muy pequeños */
@media (max-width: 360px) {
    .processTitle{
        font-size: 1.05rem;
    }

    .processBtn img{
        width: 10rem;
    }
}