/* LANDING PAGE HEADER  ----------------------------------*/

.sg-background {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0px,
      rgba(0,0,0,0) 300px,
      rgba(0,0,0,1) 500px
    ),
    url("/images/background.jpg");

  background-repeat: no-repeat;
  background-position: top, center -100px;
  background-repeat: repeat;
  background-size: 1000px auto;

  background-color: #000;
}

.sg-header {
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.sg-logo {
    margin-right:auto;
}


.sg-logo img {
    height: 40px;
    display: block;
}

.sg-nav {
    display: flex;
    gap: 32px;
    margin-right:20px;
}

.sg-nav a,
.sg-login {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.sg-login {
    padding: 8px 16px;
    border: 1px solid #555;
    border-radius: 20px;
}



/* MOBILE MENU  ----------------------------------*/

.sg-mobile-nav {
    display: none;
}

.sg-mobile-nav.open {
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {

    .sg-mobile-nav {
        display: none !important;
    }

}

/* MOBILE MENU ----------------------------------*/

.sg-mobile-nav {
    display: none;
}

.sg-mobile-nav.open {
    display: flex;

    position: fixed;
    inset: 72px 0 0 0;

    flex-direction: column;
    gap: 24px;

    padding: 32px;

    background: rgba(0,0,0,.98);

    z-index: 999;
}

.sg-mobile-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.sg-mobile-nav a:hover {
    opacity: .8;
}

@media (min-width: 769px) {

    .sg-mobile-nav {
        display: none !important;
    }

}

.sg-menu-btn {
    display: none;
}

@media (max-width: 768px) {

    .sg-menu-btn {
        display: block;
    }

}

.sg-login {
    display: none;
}