.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  margin: 0 auto;
  background: #171930;
}

a.brand {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
  row-gap: 2rem;
  width: 100%;
  height: 5rem;
}
#menu {
    padding: 0;
    margin: 0;
    list-style: none;
}
  @media screen and (max-width: 1200px) {
    .submenu-link {
      color: #c5c5c5!important;
  }
    .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 75%;
      height: unset;
      z-index: 10;
      opacity: 0;
      overflow-y: auto;
      visibility: hidden;
      background-color: #020C29;
      transition: all 0.5s ease;
      padding-top: 50px;
  }
    .navbar.active {
      left: 0rem;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .menu-item {
    position: relative;
    display: inline-block;
    margin-left: 40px;
}

.menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
  font-family: inherit;
  font-size: 15px;

  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  text-transform: capitalize;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
  .menu-link > i.bx {
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
  }
  .menu-link:hover {
    outline: none;
    color: #fff;
  }
  @media only screen and (min-width: 1200px) {
    .menu-dropdown:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }
  @media only screen and (max-width: 1200px) {
    .menu {
      width: 100%;
      height: auto;
      padding: 0 0;
    }
    .menu-item {
      display: block;
      margin: 0 auto;
    }
    .menu-link {
      justify-content: start;
      padding: .2rem 1.25rem;
      font-size: 16px;
      
  }
  }
  .submenu {
    position: absolute;
    top: 2.35rem;
    left: -2rem;
    min-width: 14rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    border-top: 2px solid #171930;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
  .submenu-item {
    display: block;
    margin-top: 0.75rem;
  }
  .submenu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: #000;
    transition: all 0.35s ease;
    text-decoration: none;
}
  .submenu-link:hover {
    outline: none;
    color: var(--color-pink-500);
  }
  @media only screen and (max-width: 1200px) {
    .submenu {
      position: relative;
      top: -0.5rem;
      left: 1.5rem;
      width: 100%;
      max-height: 0;
      padding: 0px;
      border: none;
      outline: none;
      opacity: 1;
      overflow: hidden;
      visibility: visible;
      transform: translateY(0px);
      box-shadow: none;
      background: transparent;
    }
  }
  
  .burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
  }
  .burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: #ffffff;
}
  .burger-line:nth-child(1) {
    top: 0px;
  }
  .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
  }
  .burger-line:nth-child(3) {
    top: 1rem;
  }
  @media only screen and (max-width: 1200px) {
    .burger {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
  }
  @media only screen and (max-width: 1200px) {
    .overlay.active {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }
  .nav_right{
    display: flex;
    align-items: center;
  }
  






