.bottom_menu {
    text-align: center;
    display: table;
    width: 100%;
}

.bottom_menu li::after {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -5px;
    background: url(../../../../i/sprite-mini.png) 0 -518px no-repeat;
}

.bottom_menu li {
    display: table-cell;
    position: relative;
    width: 16.5%;
}

.bottom_menu li:last-child::after {
    display: none;
}

.bottom_menu li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "RobotoSlab", serif;
    font-size: 14px;
}

.bottom_menu li a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 992px) {
    .bottom_menu li a {
        font-size: 16px;
    }

    .bottom_menu li {
        width: auto;
    }
}

@media only screen and (max-width: 767px) {
    .bottom_menu {
        display: block;
    }

    .bottom_menu li {
        display: inline-block;
    }

    .bottom_menu li::after {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .bottom_menu li {
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    .bottom_menu li a {
        font-size: 18px;
    }
}