.menuWrapper {
  background-color: #EC2227;
  width: 100%;
  height: calc(100% - 83px);
  margin-top: 83px;
  position: fixed;
  z-index: 999;
  transform: translateX(-100%);
  transition: all 0.5s;
  display: flex;
  align-items: center;
  top: 0;
  left: 0; }
  .menuWrapper.open {
    transform: translateX(0); }
  .menuWrapper .menuGroup {
    margin-top: 15px; }
  @media (max-width: 767px) {
    .menuWrapper {
      height: 100vh;
      margin-top: 65px;
      padding-top: 1rem;
      align-items: start; } }
  @media (max-width: 767px) {
    .menuWrapper .container {
      height: calc(100vh - 65px);
      overflow-y: scroll;
      padding-bottom: 16px; } }
  .menuWrapper h2 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px; }
  .menuWrapper ul {
    list-style: none;
    padding-left: 0; }
    .menuWrapper ul li {
      margin-bottom: 0px;
      line-height: 20px; }
      .menuWrapper ul li a {
        color: #ffffff;
        font-size: 15px;
        opacity: 0.8;
        transition: all 0.5s; }
        .menuWrapper ul li a:hover {
          opacity: 1; }

/* Icon 1 */
#nav-icon1 {
  width: 60px;
  height: 45px;
  position: absolute;
  right: 0px;
  top: 0px;
  margin: 11px auto;
  -webkit-transform: rotate(180deg) scale(0.7);
  -moz-transform: rotate(180deg) scale(0.7);
  -o-transform: rotate(180deg) scale(0.7);
  transform: rotate(180deg) scale(0.7);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer; }
  @media (max-width: 767px) {
    #nav-icon1 {
      margin: 10px auto;
      top: -12px;
      /* transform: scale(0.5); */ } }
  #nav-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 40px;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
    #nav-icon1 span:nth-child(1) {
      top: 9px; }
    #nav-icon1 span:nth-child(2) {
      top: 23px;
      width: 25px; }
    #nav-icon1 span:nth-child(3) {
      top: 36px; }

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg); }
#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px; }
#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg); }

/*# sourceMappingURL=header.css.map */
