* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* keeps it above other elements */
  background-color: #04846C;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;

}

.logo {
  display: flex;
}

.logo_text {
  font-size: 1rem;
  display: flex;
  /* enable flexbox */
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
}

.logo_img img {
  max-height: 110px;
  /* Image stays within navbar height */
  width: auto;
  /* keeps proportions */
  display: flex;
  /* enable flexbox */
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  padding: -9px -19px;
}

.nav-links {
  display: flex;
  gap: 20px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  position: relative;
  padding: 5px 0;
  display: flex;
  /* enable flexbox */
  justify-content: center;
  /* horizontal center */
  align-items: center;

}



.nav-underline {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: white;
  transition: all 0.4s ease;
}

.nav-links a:hover {
  cursor: pointer;
}

#contact_bg {
  background-color: #EDB80A;
  padding: 8px 12px;
  border-radius: 6px;
}

#contact_bg:hover {
  background-color: #c49706;
}

/* Responsive */

@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    background: #04846C;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;

  }

  .nav-links.active {
    display: flex;

  }

}