*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  font-family: "Avenir Next LT Pro", sans-serif;
  scroll-behavior: smooth;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100vh;
}

nav {
  font-size: 0.8rem;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #fff;
  z-index: 9999;
  min-height: 5rem;
}

.scrolled {
  border-bottom: 1px solid #ddd; /* add a bottom border */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.nav-links {
  list-style: none;
  display: flex;
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    height: 80vh;
    top: 70px;
    left: 0;
    background-color: #333;
    padding: 10px 0;
  }
}

.nav-links .center-screen li {
  padding: 1rem 1rem;
}

.login_btn {
  border: 2px solid #000;
  padding: 0.5rem;
  border-radius: 100px;
  transition: background-color 0.2s;
}
.login_btn.white {
  color: #fff;
  background-color: #000;
}
.login_btn.white:hover {
  background-color: #484848;
  border: 2px solid #484848;
}
.login_btn.black {
  color: #000;
  background-color: #fff;
}
.login_btn.black:hover {
  background-color: #f0f0f0;
}

.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
}

.button-group.end {
  justify-content: flex-start;
  margin-top: auto;
  gap: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .button-group.end {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
.center-screen {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .nav-links a {
    color: #fff;
    font-weight: bold;
  }
}

.nav-links .currentpage::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  transition: width 0.3s ease-in-out;
  width: calc(100% - 20px);
  background-color: #8b8b8b;
}
@media screen and (max-width: 768px) {
  .nav-links .currentpage::before {
    height: 5px;
    bottom: -5px;
    background-color: #f5f5f5;
  }
}

@media screen and (min-width: 768px) {
  .nav-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease-in-out;
  }
}

.nav-links li:hover > a::before {
  width: calc(100% - 20px);
}

.nav-links li a.login_btn::before {
  content: none !important; /* Remove the underline effect for the login buttons */
}

.nav-links li a.login_btn:hover::before {
  width: 0 !important; /* Ensure no underline appears on hover */
}

@media screen and (max-width: 768px) {
  .nav-links li:hover {
    background-color: #8b8b8b;
  }
}

.nav-links.open {
  display: flex;
}

#hamburger-menu {
  width: 60px;
  height: 45px;
  position: fixed;
  display: none;
}
@media screen and (max-width: 768px) {
  #hamburger-menu {
    top: 10px;
    left: 10px;
    display: block;
    position: fixed;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
}

#hamburger-menu span {
  display: block;
  position: absolute;
  height: 9px;
  width: 50%;
  background: #5d7c85;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#hamburger-menu span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#hamburger-menu span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#hamburger-menu span:nth-child(1),
#hamburger-menu span:nth-child(2) {
  top: 0px;
}

#hamburger-menu span:nth-child(3),
#hamburger-menu span:nth-child(4) {
  top: 18px;
}

#hamburger-menu span:nth-child(5),
#hamburger-menu span:nth-child(6) {
  top: 36px;
}

#hamburger-menu.open span:nth-child(1),
#hamburger-menu.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-menu.open span:nth-child(2),
#hamburger-menu.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger-menu.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#hamburger-menu.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#hamburger-menu.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#hamburger-menu.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#hamburger-menu.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}

#hamburger-menu.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}

.wave {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  animation: fadeOut 1s ease-in-out forwards;
  opacity: 1;
}

.fade {
  opacity: 0;
}

.ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #6c5ce7;
  animation: wave 1s ease-in-out infinite;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    display: none;
    pointer-events: none;
  }
}
@keyframes wave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.ball:nth-child(1) {
  background-color: #89bde5;
}

.ball:nth-child(2) {
  animation-delay: -0.2s;
  background-color: #c0ddef;
}

.ball:nth-child(3) {
  animation-delay: -0.4s;
  background-color: #e5eced;
}

.ball:nth-child(4) {
  animation-delay: -0.6s;
  background-color: #92a4d9;
}

.ball:nth-child(5) {
  animation-delay: -0.8s;
  background-color: #878cd9;
}

/*# sourceMappingURL=styles_nav_ebibd.css.map */
