.main-general .texto-con-bullets{
    padding: 48px 0;
    background-color: var(--black);
    color: var(--white);
}
.contenedor-texto-bullets{
    display: flex;
    align-items: center;
    flex: 1 0 0;
    margin: 0 auto;
}
.contenido-texto-bullets-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 60px;
}
.contenido-texto-bullets-info, .contenido-texto-bullets-img{
    width: 50%;
}
.contenido-texto-bullets-img{
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    align-self: stretch;
}
.contenido-texto-bullets-img img {
    max-width: 100%;
}
.grids-contenedor-bullets{
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.grid-contenedor-derecha {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    padding-top: 60px;
    width: 50%;

}
.grid-contenedor-izquierdo {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    width: 50%;
}
.grid-contenedor-izquierdo.una-col{
    width: 100%;
}
.grid-contenedor-derecha .texto:not(.grid-contenedor-derecha .texto:last-child),
.grid-contenedor-izquierdo .texto{
    margin-bottom: 24px;
}
/* Responsive */
@media only screen and (max-width: 950px) {
    .main-general .texto-con-bullets {
        padding: 24px 0;
    }
    .contenedor-texto-bullets{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .contenido-texto-bullets-img img {
        max-width: 100%;
    }
    .contenido-texto-bullets-info, .contenido-texto-bullets-img{
        width: 100%;
    }
    .contenido-texto-bullets-img {
        height: 280px;
    }
    .grids-contenedor-bullets {
        flex-direction: column;
        gap: 0;
    }
    .grid-contenedor-derecha, .grid-contenedor-izquierdo {
        padding: 0;
        width: 100%;
    }
    .contenido-texto-bullets-info{
        padding: 20px 16px;
    }
}