.more-button {
    width: 150px;
    height: 50px;
    background: #dfe6e9;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .3s linear;
}
.more-button:hover{
    transform: scale(1.1);
}
.more-button span{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #023317;
    color: #f1f1f1;
    text-align: center;
    line-height: 50px;
    z-index: 999;
    transition: .6s linear;
    border-radius: 100px;
}
.more-button:hover span{
    transform: translateX(-100%);
    transition-delay: .3s;
}