.navigation-bottom {
  position: relative;
  padding-top: 2rem;
  margin-top: -100px;
  z-index: 1;
  border-bottom: 5px solid #5C8064;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom {
    margin-top: -20px;
  }
}

.navigation-bottom__circle {
  width: 100%;
  height: 300px;
  border-radius: 1000px;
  position: absolute;
  z-index: -1;
  background-color: #F6FFF3;
  top: -100px;
  display: none;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__circle {
    display: block;
  }
}

.navigation-bottom__circle-finisher {
  width: 100%;
  height: 150px;
  position: absolute;
  z-index: -1;
  background-color: #F6FFF3;
  bottom: 0;
  top: 100px;
}

.navigation-bottom__wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 6rem;
  background-color: #F6FFF3;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__wrapper {
    padding-top: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.navigation-bottom__logo {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__logo {
    max-width: 300px;
    margin-left: initial;
    margin-right: initial;
  }
}

.navigation-bottom__logo img {
  width: 100%;
}

.navigation-bottom__links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__links ul {
    justify-content: flex-end;
  }
}

.navigation-bottom__links ul li {
  margin-left: 1rem;
}

.navigation-bottom__border {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.navigation-bottom__border hr {
  width: 100%;
  border-color: var(--gray);
}

.navigation-bottom__copyright {
  width: 100%;
  text-align: center;
  padding-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__copyright {
    width: inherit;
    text-align: left;
    padding-bottom: 0;
  }
}

.navigation-bottom__social-links {
  width: 100%;
  padding-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__social-links {
    width: inherit;
    padding-bottom: 0;
  }
}

.navigation-bottom__social-links ul {
  display: flex;
  justify-content: center;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__social-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

.navigation-bottom__social-links ul li {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .navigation-bottom__social-links ul li {
    margin-left: 1rem;
  }
}

.navigation-bottom__social-links ul li a img {
  width: 32px;
}