#info {
    display: grid;
    place-items: center;
}
#info .section-2 {
    display: grid;
    row-gap: 24px;
    padding: 0 24px;
    box-sizing: content-box;
    align-content: center;
    height: 298px;
}
#info .section-2 .info__title {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    color: #414141;
    text-align: center;
    margin: auto;
}
#info .section-2 .info__bajada {
    font-family: var(--font-regular);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #414141;
    text-align: center;
    max-width: 973px;
    margin: auto;
}
/* MEDIA QUERIES */
@media (max-width: 768px) {
    #info { margin-bottom: 41px; }
    #info .section-2 { row-gap: 24px; }
    #info .section-2 .info__title {
        font-size: 20px;
        line-height: 24px;
    }
    #info .section-2 .info__bajada {
        font-size: 13px;
        line-height: 16px;
    }
}
@media (max-width: 320px) {
    #info .section-2 { max-width: 272px; width: 100%; }
}