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

.bottom-menu__wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}

.bottom-menu__item {
    flex-basis: 18%;
    height: 100px;
    margin-right: 2%;
    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--wide-width-3 {
    flex-basis: 58%
}

.bottom-menu__item--wide-width-2 {
    flex-basis: 38%
}

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

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

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

.bottom-menu__link--small {
    font-size: 14px;
}

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

    .bottom-menu__link {
        padding: 10px 10px;
    }
}

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

    .bottom-menu__link {
        font-size: 15px;
        line-height: 15px;
        padding: 8px 6%;
    }
}

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

    .bottom-menu__item {
        height: 75px;
    }

    .bottom-menu__link {
        font-size: 14px;
    }
}

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

    .bottom-menu__item {
        flex-basis: 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;
    }
    .bottom-menu__item {
        height: auto;
    }
}

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