.ContentUno {    
    margin-top: 200px; /* Ajusta el valor según la altura de tu menú */    
    display: flex; /* Utilizamos display: flex en el contenedor padre */
    justify-content: center; /* Centramos horizontalmente */
    align-items: center; /* Centramos verticalmente */        
    /*clip-path: polygon( 0% 30%, 100% 0%, 100% 100%, 0% 80%);*/
}

.DivAnalisis{    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 350px;
    width: 80%;
}
.DivTxtServ {
    width: 65%;
    margin-left: 10px;
}


@media (max-width: 768px) {
    .DivAnalisis {
        display: flex;
    }
    .DivAnalisis {
        width: 100%;
        height: auto;
    }
    .DivImgAnalisis {
        display: none; /* Oculta elemento1 */
    }
}

.TextTitulo{
    font-size: 20px;
    color: black;
}
.TxtServ {
    width: 80%;
}
.TxtDET{
    font-size: 20px;
}
.ImgServ {
    width: 50%;
}
@media (max-width: 768px) {
    .Analisis {
        flex-direction: column;
    }
    .TxtServ {
        width: 100%;
    }
    .ImgServ {
        width: 100%;
    }
}