.link-item {
    display: flex;
    background-color: #E5E5E5;
    padding: 18px 15px;
    margin-bottom:10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius:3px;
}
.link-item span{
    font-family:"Roboto" !important;
    font-size:24px !important;
    font-weight:300 !important;
    line-height:28px !important;
    color:rgb(32, 31, 29);
}
.link-item a{
    font-family:"Roboto" !important;
    font-size:20px !important;
    font-weight:700 !important;
    line-height:23px !important;
    color:#201f1d;
}
.link-item:hover{
    background-color:rgb(142, 142, 142);
    cursor:pointer;
}

@media screen and (max-width:568px){
    .link-item span{
      font-size:16px !important;
      line-height:18px !important;
      font-weight:300 !important;
      padding-right:10px;
    }
   .link-item a{
      font-size:14px !important;
      line-height:16px !important;
    }
}