.navbar-wrapper {
  position: relative;
  width: 100%;
  z-index: 12;
  top: 0;
}

.navbar-wrapper::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  content: '';
  z-index: 12;
}

.navbar {
  display: flex;
  background: #fff;
  position: relative;
  top: 0;
  align-items: center;
  height: 120px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1170px;
  justify-content: space-between;
}

.navbar__logo img {
  display: block;
  overflow: hidden;
  max-width: 200px;
  max-height: 40px;
}

.navbar__links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-grow: 2;
}

.navbar__links li {
  float: left;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  padding: 0;
  list-style: none;
}

.navbar__links li a {
  color: #4f4f4e;
  padding: 0;
  height: 120px;
  line-height: 120px;
  transition: color 0.2s ease;
  margin: 0 11px;
  box-sizing: border-box;
  border: 0;
  font-weight: 300;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0px;
}

.navbar__links li a:hover, .navbar__links li a.navbar__links--active {
  color: #f60;
  border: none;
}

.navbar__button {
  display: block;
}

.navbar__button a {
  transition: 1s transform ease-in;
  background: none !important;
  background-image: linear-gradient(to right, #FF512F 0%, #F09819 51%, #FF512F 100%) !important;
  box-shadow: 0px 10px 13px -7px #666, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 3px;
  display: block;
  text-align: center;
  letter-spacing: normal;
  line-height: 2;
}

.navbar__button a:hover {
  background-position: right center !important;
  opacity: .85;
}


.navbar__hamburger {
  padding: 8px;
  background-color: transparent;
  border: 0;
  text-align: left;
  color: #4f4f4e;
}

.navbar__srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.floatingnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  box-sizing: border-box;
  transition: transform 0.3s ease;
  transform: translate(-100%, 0);
}

.floatingnav--visible {
  display: flex;
  transform: translate(0, 0);
}

.floatingnav ul {
  flex-grow: 2;
  padding: 0 40px 40px;
  overflow-y: auto;
  text-align: center;
  list-style: none;
}

.floatingnav ul li a {
  font-family: "Roboto", sans-serif;
  color: #4f4f4e;
  margin-bottom: 0.75em;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0px;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 0;
  text-transform: none;
  text-decoration: none;
}

.floatingnav__button {
  align-self: flex-end;
  padding: 20px;
  background-color: transparent;
  border: 0;
  color: #4f4f4e;
}

@media screen and (max-width: 1024px) {
  .navbar .navbar__links {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .navbar__logo {
    margin-right: 54px;
  }

  .navbar__hamburger {
    display: none;
  }

  .floatingnav, .floatingnav--visible {
    display: none;
  }
}
