@import url("https://fonts.googleapis.com/css2?family=Exo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css");

.navbar {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  background-color: rgba(0, 0, 0);
}

.navbar-logo {
  text-decoration: none;
  font-family: sans-serif;
  padding-left: 5px;
}

.navbar-brand img {
  height: 2.6rem;
  padding-left: 0.5rem;
}

.navbar-nav li {
  padding-right: 0.7rem;
}

.nav-link {
  color: #eeca3e;
  margin: auto;
  transition: 0.3s linear;
}

.nav-link:hover {
  color: #ff0;
  width: 100%;
  transform: scale(1);
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #ffcb42;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: 0.25s linear;
}

.nav-link:hover::before,
.nav-link:focus::before {
  visibility: visible;
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .navbar-brand img {
    width: 40px;
  }
  .navbar-brand h4 {
    font-size: 1.2rem;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 40px;
  }
  .navbar-brand h4 {
    font-size: 1.3rem;
  }
  .navbar-nav .nav-link {
    font-size: 0.9rem;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  padding: 0.5rem 1rem;
  font-size: 16px;
}

@media (min-width: 1020px) and (max-width: 1026px) {
  .navbar-brand img {
    width: 60px;
  }
  .navbar-brand h4 {
    font-size: 1.2rem;
  }

  .navbar-nav li {
    font-size: 15px;
    text-align: center;
  }
}

@media (min-width: 1020px) and (max-width: 1026px),
  (min-width: 1027px) and (max-width: 1280px) {
  .navbar {
    width: 90vw;
  }
}

@media (min-width: 764px) and (max-width: 770px) {
  .navbar {
    width: 90vw;
  }

  .navbar-nav li {
    font-size: 14px;
  }
}

@media (min-width: 814px) and (max-width: 824px) {
  .navbar {
    width: 80vw;
  }

  .navbar-nav li {
    font-size: 12px;
    margin-left: 2px;
  }

  .navbar-brand h4 {
    font-size: 15px;
  }
}

@media (max-width: 1002px) {
  .navbar-expand-custom {
    display: flex;
    flex-direction: column;
  }

  .navbar-collapse {
    display: none !important;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .nav-item {
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (min-width: 1003px) {
  .navbar-expand-custom {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .navbar-collapse {
    display: flex !important;
  }

  .navbar-toggler {
    display: none;
  }

  .navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .nav-item {
    margin-right: 10px;
    margin-top: -50px;
  }
}

