.text-theme{
    color: #34656D;
}

.underline-transition {
    position: relative;
    text-decoration: none;
    color: #34656D;
}

.underline-transition::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #34656D;
    transition: width .3s;
    bottom: -2px;
    left: 0%;
}

.underline-transition:hover::after {
    width: 100%;
    left: 0;
}

.text-theme:hover{
    color: #34656D;
}
