.button {
    font-family: 'maison_neuebook';
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    background-color: #2a228e;
    height: 43px;
    display: block;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 250ms ease-in-out;
}

.button:hover {
    background-color: #10086A;
}

.button.transparent {
    background-color: transparent;
    border: 1px solid #2a228e;
    height: 41px;
    color: #2a228e;
}

.button.transparent:hover {
    background-color: transparent;
    border: 1px solid #10086A;
    height: 41px;
    color: #10086A;
}

.button.transparent.white {
    border: 1px solid #fff;
    color: #fff;
}

@media (max-width: 1024px) {}