/* Top Wrapper */
.top-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 5px solid #FAA533;
    background: white;
}

/* Navigation Bar */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin: 0 75px;
    box-sizing: border-box;
}

.nav .left {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
}

.logo {
    width: 7rem;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 10px 0;
    padding: 8px 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .nav .button {
    padding: 15px 15px;
    font-size: 14px;
  }

  .nav .left {
    flex: 0 0 auto;
    margin-left: 20px;
  }
}
