@media screen and (max-width: 1024px) {
  .visible-navigation-list {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .visible-navigation-list {
    display: none;
  }
}

.navigation_list {
  background-color: #fff;
  border-top: 1px solid #ccc;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 30px;
  position: fixed;
  z-index: 10002;
}

a,
button,
input,
select,
textarea {
  outline: none;
}

a {
  position: relative;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-text-decoration-skip: objects;
  background-color: transparent;
}

a,
p span {
  color: inherit;
}

.navigation_content {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 400px;
}

.navigation_item {
  text-align: center;
  font-weight: bold;
}

.navigation_list .navigation_item i {
  font-size: 24px;
}

.navigation_list .navigation_item span {
  display: block;
}

.site-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.4s ease;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.site-overlay.active {
  opacity: 1;
  visibility: visible;
}

.active-colour {
  color: var(--primary-color);
}
