
#header-container{
    display: none;
}
/* @media only screen and (min-width: 320px) and (max-width: 720px) {  */
/* @media only screen and (max-width: 600px) { */
@media only screen and (max-width: 600px) {
    .login-section-fields{
        width: 100% !important;
        margin-top: 20% !important;
    }

    .account-sidebar{
        display: none !important;
    }

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        margin: 0px !important;
    }

    #account-main{
        margin: 0px !important;
        padding-top: 90px;
    }

    .form-control{
        border-radius: 0px !important;
        outline: none !important;
        box-shadow: none !important;
        padding-top: 1.375rem !important;
        padding-bottom: 1.375rem !important;
    }

    .form-wrapper form .btn-toolbar .action{
        height: 50px;;
    }

    .account-header {
        display: none;
      }

      #mobile-header{
        display: block !important;
      }
    
      #hamburger-icon {
        display: block !important;
      }

    #header-container{
        display: block;
    }

    .modal{
        margin-top: 20%;
    }

    .stepper{
      display:none
    }

    .register-intro{
      display: none;
    }

    .registration-type-card .col{
      flex: none;
    }

    .registration-type-card .col-1{
      width: 10%;
      margin-bottom: 10px;
    }

    .registration-type-card .col-2{
      width: 100%;
      margin-top: 10px;
    }

    .registration-container-wrapper .padding{
      padding: 5px !important;
    }
}


#header-container{
    padding: 0px;
    position: fixed;
}

header a {
    text-decoration: none;
  }
  
  header {
    padding: 30px 20px 0 20px;
    background-color: #9ec22a;
    height: 95px;
    display: flex;
    justify-content: space-between;
  }

  header img{
    width: 40px;
    margin: 10px;
  }
  
  #brand {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
  }
  
  #brand a {
    color: #1d1f1d;
  }


  #header-container ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px;
  }
  
  #header-container ul a {
    color: #000;
    font-size: 19px;
  }
/*   
  #header-container ul li {
    padding: 5px;
    margin-left: 10px;
  } */
  
  #header-container ul li:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }


#hamburger-icon {
    margin: auto 0;
    display: none;
    cursor: pointer;
  }
  
  #hamburger-icon div {
    width: 35px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
  }

  .open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  
  .open .bar2 {
    opacity: 0;
  }
  
  .open .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
  }
  
  .open .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
  }

  #mobile-header{
    display: none;
  }
  
  .mobile-menu {
    padding-top: 20px;
    display: none;
    position: absolute;
    top: 95px;
    left: 0;
    height: calc(100vh - 50px);
    overflow: auto;
    width: 100%;
    z-index: 100;
  }

  .mobile-menu h3{
    color: #9ec22a;
  }
  
  .mobile-menu li {
    margin-bottom: 10px;
  }