.button-store {
    display: inline-block;
    box-sizing: border-box;
    background-color: #252c41;
    font-size: 20px;
    color: #FFF;
    font-family: Arial, "Roboto", sans-serif;
    width: 200px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

.button-store.-second {
    border: none;
    background-color: transparent;
    border: 2px solid #fff;
    width: 218px;
    line-height: 56px;
}

.button-store > button,
.button-store > a {
    font-size: inherit;
    background-color: inherit;
    border: none;
    color: inherit;
    text-decoration: inherit;
}

.button-store.-second:hover {
    color: #252c41;
    background-color: #fff;
}

.button-store.-second:active {
    transform: scale(0.9);
}

.buttons > a:hover {
    color: #e24647;
    background-color: #fff;
}


@media (max-width: 1310px) {
    .button-store.-second {
        margin-right: 38px;
    }
}

@media (max-width: 500px) {
    .button-store.-second {
        margin-right: 20px;
    }
}

@media (max-width: 470px) {
    .button-store, .button-store.-second {
        display: block;
        width: 90%;
        margin: 0 auto;
    }

    .button-store.-second {
        margin-bottom: 20px;
    }
}