body {
    background-color: #FCFCFC;
}

.img_hover {
    height: 160px;
    width: 160px;
}

.listado-soft-skills .imagen-curso {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 160px;
    justify-content: center;
    width: 160px;
}

/* Elementos 1, 3, 5, 7... */
.listado-soft-skills>div:nth-of-type(odd) .imagen-curso {
    background-color: #FF8000;
}

/* Elementos 2, 4, 6, 8... */
.listado-soft-skills>div:nth-of-type(even) .imagen-curso {
    background-color: #0081C4;
}

.listado-soft-skills .imagen-curso:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}