﻿.sticky-menu {
  background-color: #fff;
  width: 100%;
  position: fixed;
  z-index: 10;
  bottom: 0;
  height: 8rem;
  line-height: 8rem;
  font-family: "proxima-nova", Arial, Tahoma, sans-serif;
  font-size: calc(1.285rem + 0.42vw);
}
@media (min-width: 1200px) {
  .sticky-menu {
    font-size: 1.6rem;
  }
}
.sticky-menu .menu {
  text-align: center;
}
.sticky-menu span {
  font-weight: bold;
  color: #000;
}
.sticky-menu ul, .sticky-menu li {
  display: inline-block;
}
.sticky-menu ul li, .sticky-menu li li {
  margin-right: 2rem;
}
.sticky-menu ul a, .sticky-menu li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}
.sticky-menu ul a:hover, .sticky-menu ul a:focus, .sticky-menu li a:hover, .sticky-menu li a:focus {
  color: rgba(0, 0, 0, 0.7);
  border-bottom: none;
}
