.nav-bg {
  background: #e73c0e;
  width: 100vw;
  height: 69px;
}

.nav__container {
  top: 4px;
  right: 20px;
  z-index: 15;
  display: block;
  width: 30px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: fixed;
}
@media screen and (min-width: 1600px) {
  .nav__container {
    width: auto;
    height: auto;
    top: 20px;
  }
}
.nav__container:last-child {
  border-bottom: 0;
  padding: 15px 0 0;
}
.nav__container:hover a {
  opacity: 0.6;
}
.nav__container i {
  display: none;
  font-size: 20px;
}
@media screen and (min-width: 1600px) {
  .nav__container i {
    display: block;
  }
}
.nav__container span {
  display: block;
}
@media screen and (min-width: 1600px) {
  .nav__container span {
    display: none;
  }
}
.nav__container a {
  color: #e73c0e;
  font-size: 16px;
  transition: opacity .2s ease-in-out;
}
.nav__container ul {
  list-style-type: none;
  padding: 0;
}
.nav__container li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.nav__container li:last-child {
  border-bottom: none;
}
.nav__container li.active {
  background: transparent;
}
@media screen and (min-width: 1600px) {
  .nav__container li.active {
    background: #f5f5f5;
  }
}
.nav__container li.active a {
  color: #e73c0e;
  font-family: 'OpenSans-SemiBold';
}
@media screen and (min-width: 1600px) {
  .nav__container li.active a {
    color: #e73c0e;
  }
}
@media screen and (min-width: 1600px) {
  .nav__container li {
    display: inline-block;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid #f5f5f5;
    font-size: 12px;
    margin-left: -1px;
    transition: background .3s;
  }
  .nav__container li:last-child {
    padding: 5px 10px;
    border: 1px solid #f5f5f5;
  }
  .nav__container li:first-child {
    margin-left: 0;
    padding: 3px 7px 4px;
    position: relative;
    top: 2px;
  }
  .nav__container li a {
    font-family: 'OpenSans-SemiBold';
    color: #f5f5f5;
    transition: color .3s;
    font-size: 12px;
  }
  .nav__container li a:hover {
    opacity: 1;
    color: #e73c0e;
  }
  .nav__container li:hover {
    background: #f5f5f5;
  }
  .nav__container li:hover a {
    opacity: 1;
    color: #e73c0e;
  }
}
@media screen and (min-width: 1600px) {
  .nav__container {
    top: 0px;
  }
}
.nav__content {
  padding: 70px 40px;
}
@media screen and (min-width: 1600px) {
  .nav__content {
    padding: 0;
  }
}
.nav__trigger {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 100%;
  height: 5%;
  background-color: #f5f5f5;
  font-size: 0px;
  transition: background-color 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 13;
}
@media screen and (min-width: 1600px) {
  .nav__trigger {
    display: none;
  }
}
.nav__trigger:before,
.nav__trigger:after {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  content: '';
  transition: transform 0.3s, background-color 0.3s;
}
.nav__trigger:before {
  transform: translateY(-300%);
}
.nav__trigger:after {
  transform: translateY(300%);
}
.active .nav__trigger {
  background: transparent;
}
.active .nav__trigger:before {
  transform: translateY(0) rotate(45deg);
  background: #e73c0e;
}
.active .nav__trigger:after {
  transform: translateY(0) rotate(-45deg);
  background: #e73c0e;
}
.nav__content__wrapper {
  background: #f5f5f5;
  height: 100vh;
  width: 300px;
  top: -4px;
  position: fixed;
  transition: transform .3s ease-in-out;
  transform: translateX(300px);
  z-index: 12;
}
@media screen and (min-width: 1600px) {
  .nav__content__wrapper {
    transform: translateX(-437px);
    width: 440px;
    height: auto;
    top: 14px;
    background: transparent;
  }
}
.active .nav__content__wrapper {
  transform: translateX(-245px);
}
.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000;
  z-index: 12;
  opacity: 0;
  transition: opacity .1s ease-in-out;
  pointer-events: none;
}
.active .overlay {
  opacity: 0.8;
  pointer-events: auto;
}
