/* NAVBAR */
.main_navbar {
  background-color: var(--secondary-dark);
  padding: 18px 0px;
  position: relative;
  z-index: 1000;
}

.nav_container {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav_container img {
  width: 200px;
}

.nav_links {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 25px;
}

.nav_links li a {
  color: white;
  text-transform: uppercase;
}

.nav_cta a {
  background-color: var(--green);
  color: var(--dark);
  padding: 9px 15px 10px 15px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.nav_cta a:hover {
  opacity: 0.8;
}

.nav_toggle {
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  display: none;
  padding: 0px;
}

/* Mobile Menu */
.nav_menu {
  display: none;
  flex-direction: column;
  gap: 25px;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--secondary-dark);
  padding: 25px 20px;
}

.nav_menu .nav_links {
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}

.nav_menu .nav_cta a {
  display: inline-block;
}

.close {
  font-size: 32px;
}

/* FOOTER */
.site_footer {
  background-color: var(--secondary-dark);
  color: white;
  padding: 60px 0px 40px 0px;
  margin-top: 50px;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_contact p i {
  width: 22px;
}

.footer_contact p a {
  color: white;
}

.footer_socials {
  display: flex;
  column-gap: 5px;
}

.footer_socials a {
  background-color: white;
  color: #1b3c53;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.footer_container img {
  width: 200px;
}

.footer_links li:not(:last-child) {
  margin-bottom: 10px;
}

.footer_links li a {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .nav_container img {
    width: 180px;
  }

  .desktop_nav {
    display: none;
  }

  .nav_toggle {
    display: block;
  }

  .nav_cta a {
    margin-top: 15px;
  }

  .footer_container {
    flex-direction: column;
    align-items: start;
    row-gap: 35px;
  }

  .site_footer {
    padding: 40px 0px 40px 0px;
  }
}
