.menu-services {
    margin: 80px 0;
    display: flex;
    justify-content: space-between;
}

.menu-services__item {
    box-shadow: 0 0 10px 0 #00000040;
    background: #fff;
    width: 300px;
    line-height: 51px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #091A36;
    transition: background-color 500ms linear 0ms, color 300ms linear 0ms;
    border-radius: 5px;
}

.menu-services__item:hover {
    color: #fff;
    background-color: #1B2E4D;
    transition: background-color 500ms linear 0ms, color 300ms linear 0ms;
}

@media (max-width: 992px) {

    .menu-services {
        justify-content: center;
        flex-wrap: wrap;
    }

    .menu-services__item {
        margin-bottom: 30px;
        margin-right: 30px;
    }

    .menu-services__item:last-child {
        margin-bottom: 0;
        margin-right: 0;
    }
}

@media (max-width: 576px) {

    .menu-services__item {
        width: 100%;
        margin: 0 0 30px 0 !important;
        font-size: 14px;
    }

    .menu-services__item:last-child {
        margin-bottom: 0 !important;
    }
}