.bottom-menu {
    max-width: 1170px;
    margin: 0 auto;
    transform: translateY(-20%);
}

.bottom-menu__wrapper {
    width: 90%;
    /*margin: 0 auto;*/
    display: flex;
    flex-wrap: wrap;
    /*flex-shrink: 0;*/
}

.bottom-menu__item {
    width: 220px;
    height: 100px;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(107, 139, 175, 0.25);
    transition: transform ease-out .3s;
    background: #FFFFFF;
}

.bottom-menu__item:nth-child(4n) {
    margin-right: 0;
}

.bottom-menu__link {
    width: 100%;
    height: 100%;
    padding: 22px 44px 22px 27px;
    display: inline-block;
    transition: color ease-out .3s;
    color: #17395F;
    font-family: Noto Serif;
    font-size: 18px;
    line-height: 28px;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
}

@media screen and (max-width: 1199px) {
    .bottom-menu {
        padding: 0 15px;
    }
}

@media screen and (max-width: 1075px) {
    .bottom-menu__item {
        width: 20%;
        height: 70px;
    }

    .bottom-menu__link {
        font-size: 16px;
        line-height: 20px;
        padding: 15px 20% 15px 12%;
    }
}

@media screen and (max-width: 950px) {
    .bottom-menu__item {
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .bottom-menu__item {
        height: 65px;
    }

    .bottom-menu__link {
        font-size: 14px;
        line-height: 18px;
        padding: 15px 17% 15px 9%;
    }
}

@media screen and (max-width: 767px) {
    .bottom-menu {
        transform: translateY(-5%);
    }

    .bottom-menu__wrapper {
        width: 100%;
    }

    .bottom-menu__item {
        width: 100%;
        height: auto;
        min-height: 65px;
        margin: 0 0 10px;
    }

    .bottom-menu__item:last-child {
        margin-bottom: 0;
    }

    .bottom-menu__link {
        padding: 22px 44px 22px 27px;
        font-size: 18px;
        line-height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .bottom-menu__item {
        height: auto;
    }
}