.welo-service-icon {
    width: 2.5em;
    height: 2.5em;
    border-radius: 2em;
    border: 0.25em solid var(--electric-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    background:
            var(--white);
    cursor:
            pointer;
    -webkit-transition: width 500ms ease;
    -moz-transition: width 500ms ease;
    -ms-transition: width 500ms ease;
    -o-transition: width 500ms ease;
    transition: width 500ms ease;
    overflow: hidden;
}

.welo-icon {
    position:relative;
}

.welo-service-icons {
    height: 2.5em;
    width: 100%;
    position: relative;
    margin-bottom: 0.5em;
}

.welo-service-icon {
    top:0;
    position: absolute;
}

.welo-accronyme-text {
    line-height: 1;
    -webkit-transition: opacity 250ms ease;
    -moz-transition: opacity 250ms ease;
    -ms-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.welo-service-icon:nth-of-type(1)
{
    left:0;
}
.welo-service-icon:nth-of-type(2)
{
    left:2em;
}
.welo-service-icon:nth-of-type(3)
{
    left:4em;
}
.welo-service-icon:nth-of-type(4)
{
    left:6em;
}
.welo-service-icon:nth-of-type(5)
{
    left:8em;
}
.welo-service-icon:nth-of-type(6)
{
    left:10em;
}
.welo-service-icon:nth-of-type(7)
{
    left:12em;
}
.welo-service-icon:nth-of-type(8)
{
    left:14em;
}
.welo-service-icon:nth-of-type(9)
{
    left:16em;
}
.welo-service-icon:nth-of-type(10)
{
    left:18em;
}

.welo-service-icon:hover {
    width: 5em;
}

.welo-text {
    opacity:0;
    -webkit-transition: opacity 250ms ease;
    -moz-transition: opacity 250ms ease;
    -ms-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
    font-size: var(--fs-18);
    width: 6.5em;
    text-align: center;
    justify-content: center;
    position: absolute;
    left: 0;
    height: 3em;
    top: 0;
    line-height: 3em;
    color:var(--electric-purple);
}

.welo-service-icon:hover {
    width: 5em;
}

.welo-service-icon:hover .welo-accronyme,
.welo-service-icon:hover .welo-img{
    opacity:0;
}

.welo-service-icon:hover .welo-text {
    opacity:1;
    display: flex;
}

.welo-service-icons-container {
    display: flex;
    width: 100%;
}