.blue-bar {
  border-bottom: 1px solid rgba(217, 217, 217, 0.3);
}
.blue-bar__inner--fluid {
  padding-left: 101px;
  padding-right: 101px;
}


@media (max-width: 1200px) {
  .blue-bar__inner {
    overflow: auto;
  }
  .blue-bar__inner--fluid {
    padding: 0px 0px;
  }
}



.small-menu {
  padding-left: 0px;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.small-menu__item {
  list-style: none;
  margin-right: 45px;
  position: relative;
}
.small-menu__link {
  font-family: "SFUIDisplay-Regular";
  display: inline-block;
  padding-bottom: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: rgba(0,0,0, 0.7);
  position: relative;
}
.small-menu__link:hover,
.small-menu__link--active {
  text-decoration: none;
  color: rgba(0,0,0, 0.7);
}
.small-menu__link:hover:after,
.small-menu__link--active:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #081456;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  border-radius: 2px 2px 0px 0px;
}


@media (max-width: 1200px) {
  .small-menu__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 30px;
  }
}