.full-navbar-container {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 0px 50px;
  height: 60px;
  overflow: hidden;
  top: 0;
  z-index: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
  background-color: #fff;
  /* background-color: yellow; */
}
/* Top Container */

/* Middle Container */

.middle-nav-container {
  padding: 10px;
  /* width: 100%; */
  /* display: flex;
  justify-content: center; */
  /* background-color: red; */
}

/* LOGO */
.nav-logo-wrapper {
}

.nav-logo-wrapper img {
  width: 50px;
}

.nav-svg-wrapper {
  display: none;
}

/* Lower Navbar */

.lower-nav-container {
  /* justify-content: space-between; */
  display: flex;
  justify-content: space-evenly;
  /* flex-direction: row-reverse; */
  align-items: center;
  padding: 10px;
  width: 70%;
  /* height: 50px; */
  /* background-color: yellowgreen; */
}

/* ANCHOR */
.nav-anchor-links-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  font-family: var(--primary-font);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  /* color: #fff; */
  /* background-color: yellow; */
}

.nav-anchor-links-wrapper li a {
  color: black;
  display: flex;
  gap: 5px;
}

.nav-right-icon {
  display: none;
}

/* List */
.anchor-bg-highlight {
  border: 2px solid orange;
  padding: 10px;
  color: #fff;
  border-radius: 4px;
  font-family: var(--primary-font);
}

/* Image Nav */
.nav-rangers-fc-wrapper {
  display: none;
}

/* Tets */
.fixed {
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; */
  transform: translateY(-100px);
  transition: 0.5s ease-in-out;
  visibility: hidden;
}

.new-height {
  height: 100dvh;
  transition: 0.3s all linear;
  overflow-y: auto;

  /* background-color: brown; */
}
@media only screen and (max-width: 897px) {
  .full-navbar-container {
    flex-direction: column;
    justify-content: unset;
    /* height: 100vh; */
    padding: 0;
    background-color: #ffffffd3;
    backdrop-filter: blur(4px);
    transition: 0.3s all linear;

    /* background-color: rgba(105, 90, 205, 0.521); */
  }

  .middle-nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
  }

  .nav-svg-wrapper {
    /* background-color: yellow; */
    display: block;
    cursor: pointer;
    position: absolute;
    right: 20px;
  }
  .lower-nav-container {
    flex-direction: column;
    justify-content: left;
    /* background-color: springgreen; */
    padding: 20px;

    width: 100%;
  }

  .nav-anchor-links-wrapper {
    display: block;
    /* background-color: red; */
    width: 100%;
  }

  .nav-anchor-links-wrapper li {
  }

  .nav-anchor-links-wrapper li a {
    justify-content: space-between;
  }

  .nav-right-icon {
    display: contents;
  }

  .nav-anchor-links-wrapper li a {
    padding: 10px;
  }

  .nav-anchor-links-wrapper li a:hover {
    background-color: saddlebrown;
    color: #fff;
    background-color: green;
  }

  .nav-anchor-links-wrapper li:hover .nav-anchor-links-wrapper li a {
    color: #fff;
  }

  /* Image Nav */
  .nav-rangers-fc-wrapper {
    display: block;

    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
  }

  .nav-rangers-fc-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
