@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
.information-bar {
  width: 100%;
  height: 40px;
  background-color: #00c58e;
  padding: 0 15%;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.information-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.information-element {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.information-element i {
  font-size: 18px;
}
.information-element i:first-child {
  padding-right: 7px;
}
.information-element i:nth-child(2) {
  padding-left: 7px;
}
.information-element * {
  color: #ffffff;
}

.navigation-bar {
  top: 0;
  position: sticky;
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  padding: 0 15%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.navigation-bar:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 100px;
  left: 0;
  background-image: linear-gradient(to bottom, #C2C2C2FF, #FFFFFF00);
  transition: opacity 0.3s;
  opacity: 0;
}

.content-width {
  width: 100%;
  max-width: 1344px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.scrolled:after {
  opacity: 1;
}

.logo-box {
  width: 100px;
  height: 100px;
}

.logo {
  padding: 15px;
  width: 100px;
  height: 100px;
}

.desktop-menu {
  height: 100px;
  display: flex;
  flex-direction: row;
}

.menu-option {
  height: 100px;
  padding: 0 20px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.menu-option a {
  font-family: "Quicksand", sans-serif;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.active {
  color: #00c58e;
}

.inactive {
  color: #2f495e;
  transition: color 0.3s;
}
.inactive:hover {
  color: #00c58e;
}

.mob-menu {
  display: none;
  align-items: center;
}

.hamburger {
  position: absolute;
  right: 5%;
  padding: 10px;
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
  border: 0;
  z-index: 2;
}

.box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.line {
  width: 100%;
  height: 3px;
  background-color: #2f495e;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.1s 0.1s ease-in-out;
}

.line:before, .line:after {
  width: 100%;
  height: 3px;
  background-color: #2f495e;
  position: absolute;
  content: "";
  left: 0;
  transition: transform 0.2s 0.1s ease-in-out;
}

.line:before {
  top: -8px;
}

.line:after {
  top: 8px;
}

.menu-active .line {
  background-color: transparent;
}

.menu-active .line:before {
  transform: translateY(8px) rotate(45deg);
}

.menu-active .line:after {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  height: 100vh;
  width: 100%;
  background-color: #f4f6f8;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-100%);
  transition: transform 0.4s 0.1s ease-out;
}

.nav .menu-option {
  height: 75px;
}

.nav .active, .nav .inactive {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 75px;
  transition: background-color 0.5s, color 0.3s;
}

.nav .inactive:hover {
  background-color: #e8edf3;
  color: #00c58e;
}

.menu-active .nav {
  transform: translateX(0);
}

@media only screen and (max-width: 350px) {
  .information-element p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 500px) {
  .information-bar {
    height: 60px;
  }

  .information-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .information-element:first-child {
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 600px) {
  .information-bar {
    padding: 0 5%;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation-bar {
    padding: 0 5%;
  }

  .desktop-menu {
    display: none;
  }

  .mob-menu {
    display: flex;
  }

  .menu-active {
    overflow: hidden;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 1025px) {
  .navigation-bar {
    padding: 0 10%;
  }
}

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