#info {
    background: #F8F8F8;
    min-height: 300px;
    display: grid;
    place-items: center;
}
#info .section-2 {
    display: grid;
    row-gap: 24px;
    max-width: 973px;
    width: 85%;
}
#info .section-2 .info__title {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-transform: capitalize;
    color: var(--color4);
    text-align: center;
}
#info .section-2 .info__bajada {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--color4);
    text-align: center;
}
/* MEDIA QUERIES */
@media (max-width: 768px) {
    #info .section-2 .info__title {
        font-weight: 500;
        font-size: 24px;
        line-height: 29px;
    }
    #info .section-2 .info__bajada {
        font-size: 14px;
        line-height: 18px;
    }
}