.navbar {
  position: absolute;
  top: 0;
  z-index: 1024;
  width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    /*background-color: #0F0218;*/
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    transition: background-color 0.3s ease;
    top: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* background-color: black; */
  padding: 0.3rem 0;
}

.navbar-brand {
  width: 150px;
  height: 80px;
    margin-top: 1rem;
}

.navbar-brand img {
  width: 94%;
  object-fit: cover;
}

.navbar-links a{
  margin: 0 1.5rem;
  color: #FFF;
  font-size: 16px;
}

.bars {
  display: none;
  font-size: 28px;
    font-weight: bold;
    color: #FFF;
    margin: 0 1rem;
}

/* .bars:hover {
  display: none;
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
} */

.offcanvas-header {
  border: none !important;
}

.offcanvas-header img {
  max-width: 120px;
  max-height: 80px;
}

.offcanvas-body .nav-links {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

.offcanvas-body .nav-link {
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  margin: 0rem 0;
  color: #000000;
}

.nav-footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #0F0218;
}

.nav-footer a {
  color: #0F0218;
  display: block;
  font-size: 16px;
  transition: all .3s;
}

.nav-footer a:hover {
  color: #e5945d;
  transition: all .3s;
}

.canvas-media ul {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.canvas-media ul li a {
  display: unset;
  transition: all .3s;
  margin-right: 1rem;
  /* color: #6A0DAD; */
  font-size: 24px;
}

.nav-link {
  position: relative;
}

.close {
  background-color: #e5945d;
  border: none;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.close i {
  color: #FFF;
  font-size: 10px;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .bars {
    display: block;
  }
}
