/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b5001;

  /* Because we want header to be sticky later */
  height: 7rem;
  padding: 0 5rem;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  text-align: center;
}

.logo {
  width: 13rem;
  /* text-decoration: none;
  color: #fff; */
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: #0b5001;
  /* height: 100vh;
  width: 100vh; */
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  font-weight: 700;
  text-align: center;
}

.main-nav-link.nav-login:link,
.main-nav-link.nav-login:visited {
  padding: 0.8rem 1.4rem;
  border-radius: 9px;
  color: #333;
  background-color: #fff;
  font-weight: 700;
}

.main-nav-link.nav-login:hover,
.main-nav-link.nav-login:active {
  background-color: #333;
  color: #fff;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
  background-color: #0b5001;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 1.2rem 3.2rem rgba(11, 80, 1, 0.03);
  /* background-color: rgba(255, 255, 255, 0.97); */

  z-index: 999;
}
