.kbutton {
    display: flex !important;
    width: 100%;
    height: auto;
}

.kbutton a {
    display: flex;
    min-width: 45%;
    max-width: 100%;
    padding: 10px;
    background-color: #D8A240;
    border: 2px solid #004684 !important;
    margin-top: 8px !important;
    border-radius: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    color: white !important;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: background-color, transform, box-shadow, color;
    transition-duration: 0.5s !important;
    transition-timing-function: ease-out !important;
}

.kbutton a:hover {
    background-color: #FDC959;
    color: #004684 !important;
    transform: translateY(-2px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2) !important;
}

.kbutton a::before {
    display: none;
}