.akkion-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: solid 2px;
    margin: 40px auto;
    width: 430px;
    height: 80px;
    background: grey;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .5s;
    
}

.akkion-button.akkion-blue a {
    background: #2E3877;
    border-color: #2E3877;
}

.akkion-button.akkion-orange a {
    background: #FF860D;
    border-color: #FF860D;
}

.akkion-button.akkion-pink a {
    background: #AD318C;
    border-color: #AD318C;
}

.akkion-button.akkion-grey a {
    background: #474A4B;
    border-color: #474A4B;
}

.akkion-button a:hover {background: white;}
.akkion-button.akkion-blue a:hover {color: #2E3877;}
.akkion-button.akkion-orange a:hover {color: #FF860D;}
.akkion-button.akkion-pink a:hover {color: #AD318C;}
.akkion-button.akkion-grey a:hover {color: #474A4B;}

.akkion-button.akkion-small a {
    height: 50px;
    width: 350px;
    font-size: 16px;
}