/*BREADCRUMBS*/
.links {
    margin-bottom: 25px;
}
@media only screen and (max-width: 992px) {
    .links {
        margin-bottom: 15px;
    }
}
.links__wrap {
    padding: 0 13px;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.links a {
    margin-top: 5px;
    padding: 0 7px;
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    text-transform: uppercase;
    color: #c4c4c4;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
@media only screen and (max-width: 992px) {
    .links a {
        font-size: 12px;
    }
}
@media only screen and (max-width: 576px) {
    .links a {
        font-size: 10px;
    }
}
.links a:not(:last-child) {
    border-right: 1px solid #c4c4c4;
}
.links a:hover {
    color: #909cf8;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.links a:last-child {
    pointer-events: none;
    color: #909cf8;
}
/*BREADCRUMBS END*/