/* navbar styles */
/* Tablets */
.header {
  display: none; /* Hide desktop navbar on mobile */
}

@media (min-width: 768px) { 

  .header {
    position: fixed;
    width: 100%;
    z-index: 999;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    padding-left: 10px;
    padding-right: 10px;
    
    border-bottom: 1px solid rgba(0, 0, 0, 0.085);
    box-sizing: border-box;
  }
  .header-left {
    display: flex;
    align-items: center;
  }
  .brand {
    display: flex;
    align-items: center;
    margin-right: 32px;
    text-decoration: none;
    color: var(--text-color-primary);
    font-family: var(--font-family);
  }
  .brand span {
    font-size: 16px;
    font-weight: 600;
  }
  .brand img {
    height: calc(var(--navbar-icon-height) * 0.75);
  }

  /* left section */
  .header-links {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: var(--font-family);
  }
  .header-links a {
    margin-left: var(--padding);
    text-decoration: none;
    color: var(--text-color-primary);
    padding: 8px 12px;
    font-weight: 500;
  }
  .header-links a:hover {
    text-decoration: underline;
    text-decoration-color: var(--text-color-primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }
  .header-links a:active {
    opacity: 0.8;
  }
  .header-CTA {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #d7193f;
    border: 1px solid #d7193f;
    border-radius: 10px;

    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }

  .header-CTA a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
  }

  .header-CTA:hover {
    background-color: #b91435;
    border-color: #b91435;
    transform: translateY(-1px);
  }

  .header-CTA:active {
    transform: translateY(0);
  }
}



/* Laptops and desktops */
@media (min-width: 1280px) { 
    .header {
      padding-left: 100px;
      padding-right: 100px;
    }
}

/* Ultra large screens and desktops */
@media (min-width: 1536px) { 
    
}