a:active, a:focus {
  text-decoration: none;
}
.tour-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9;
  display: flex;
}

.navbar-logo {
  display: block;
  margin: -10px 0 0 16px;
  z-index: 9999
}

.tour-menu-item {
  display: inline-block;
}

.tour-menu-link {
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 32px;
  color: #601e1e;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px 0 12px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.tour-menu-link:hover {
  background: rgba(30, 41, 96, 0.68);
  color: #fff;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.tour-menu-link.active {
  background: #197457;
  color: #fff;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.tour-menu-item {
  padding: 14px 0;
}

.tour-menu {
  margin-bottom: 0;
  margin-left: 50px;
}

.sub-menu {
  position: absolute;
  display: table;
  width: 100%;
  top: 62px;
  left: 0;
  text-align: center;
  font-weight: bold;
  background: rgba(0, 102, 102, 0.48);
  border-bottom: 3px solid #F3B416;
  min-height: 117px;
  opacity: 0;
  visibility: hidden;
  top: 90px;
  transition: top .3s, opacity .3s;
}

.tour-menu-item:hover .sub-menu {
  top: 62px;
  opacity: 1;
  visibility: visible;
}

.sub-menu__item {
  display: table-cell;
  float: left;
  top: 0;
  border: 0;
  width: 124px;
  height: inherit;
  color: #fff;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  padding: 12px;
  transition: all 0.1s ease-in-out;
}

.sub-menu__item:hover {
  background: rgba(30, 41, 96, 0.48);
  color: #fff;
}

.sub-menu__item.active {
  background: #F3B416;
  color: #fff;
}

.sub-menu__item img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}


@media only screen and (max-width: 1280px) {
  .tour-menu {
    overflow-x: scroll;
    overflow-y: hidden;
    height: auto;
    white-space: nowrap
  }
}
