#navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 70px
}

#navbar__logo {
    margin: auto 50px;
}

#navbar__links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #0087DD;
    margin: auto 50px
}

.navbar__link {
    color: #0087DD;
    margin: auto 20px;
    list-style-type: none;
}

.navbar__link.active a {
    border-bottom: 2px solid #0087DD;
    border-bottom-width: 3px;
}

.navbar__link a {
    text-decoration: none;
    color: #0087DD;
    font-weight: 600;
}

.navbar__link a:hover {
    text-decoration: underline;
}

#navbar__link__button {
    height: 40px;
    min-width: 100px;
    background: #0087DD;
    color: #ffffff;
    border: 0;
    border-radius: 20px;
    font-weight: 600;
}

.asu-btn-primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.asu-btn-primary:hover {
    text-decoration: underline;
    cursor: pointer;
}

.active {
    display: block;
    animation: zoom-in .3s ease-in-out;
}

.inactive {
    display: none !important;
    animation: zoom-out .3s ease-in-out;
}

.fade-in {
    animation: fade-in .3s ease-in-out;
}

.fade-out {
    animation: fade-out .3s ease-in-out;
}



#mobile-nav {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    background: #ffffff;
    z-index: 3;
    width: 100vw;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 3;
  }
  
  #mobile-nav__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  #mobile-nav__main__logo {
    margin: 20px 20px;
  }
  
  #mobile-nav__main .mobile-nav__main__button {
    height: 50px;
    background: transparent !important;
    margin: 20px 20px;
  }
  
  #mobile-nav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  #mobile-nav__items #navbar__links {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  #mobile-nav__items #navbar__links .navbar__link {
    list-style: none;
    padding: 20px 0px;
    font-weight: 500;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 15px;
    color: #000000;
  }

/* #mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    background: #ffffff;
    width: 100vw;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 3;
}
#mobile-nav__main {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
}
#mobile-nav__main__logo {
    margin: 20px 20px;
} 
.mobile-nav__main__button {
    height: 50px;
    background: transparent !important;
    margin: 20px 20px;
}
#mobile-nav__items {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
}
#mobile-nav #navbar__links {
    padding: 0;
    flex-direction: column;
}
#mobile-nav .navbar__link {
    list-style: none;
    padding: 20px 0px;
    font-weight: 500;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    color: #000000;
} */

@media only screen and (max-width: 768px) {
    #navbar {
        display: none;
      }
      #mobile-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
      }
      #mobile-nav__main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100vw;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
      }
      #mobile-nav__main__logo {
        margin: 0px 20px;
      }
      #mobile-nav__main__logo img {
        height: 100px;
        width: 100px;
      }
      #mobile-nav__main__button--open, #mobile-nav__main__button--close {
        background: none;
        border: none;
      }
      #mobile-nav__items {
        display: none;
      }
      #navbar__links {
        margin: 0px 0px 20px 0px;
      }
    /* #navbar {
        display: none;
    }

    #mobile-nav {
        display: flex;
    }
        #mobile-nav__main {
            display: flex;
            width: 100vw;
            justify-content: space-between;
        }
            #mobile-nav__main__logo {
                margin: 0px 20px;
            }
            #mobile-nav__main__button--open, #mobile-nav__main__button--close {
                background: none;
                border: none; */
            /* } */
        /* #mobile-nav {
            display: none;
        } */
}

/* AMINATIONS */
@keyframes zoom-out {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(0.0);
    }
}

@keyframes zoom-in {
    0% {
        transform: scale(0.0);
    }
    100% {
        transform: scale(1.0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1.0;
    }
    100% {
        opacity: 0;
    }
}