.filter-nav-item {
  display: inline-block;
  margin: 0 14px 18px 0;
  padding: 8px 20px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: #141E30;
  border: 2px solid #00AEDD;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter-nav-item:hover, .filter-nav-item.active {
  color: #141E30;
  background-color: #FFFFFF;
}

.filter-nav-item.active {
  border-color: #FFFFFF;
}

@media only screen and (max-width: 1023px) {
  .filter-nav-item {
    margin: 0 7px 9px 0;
    padding: 4px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .filter-nav-item {
    display: block;
    margin: 0;
    padding: 9px 0 10px 0;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    text-transform: capitalize;
    background-color: transparent;
    border: 0;
  }
  .filter-nav-item:hover, .filter-nav-item.active {
    color: #B0D747;
    background-color: transparent;
  }
}
@media only screen and (max-width: 767px) {
  .filter-nav {
    display: none;
    max-height: 350px;
    margin: -4px 9px 0;
    padding: 20px 23px;
    overflow-y: auto;
    background-color: #004869;
    scrollbar-color: #00AEDD;
    scrollbar-width: thin;
  }
  .filter-nav::-webkit-scrollbar {
    width: 3px;
  }
  .filter-nav::-webkit-scrollbar-track {
    background: #00AEDD;
    border-radius: 10px;
  }
  .filter-nav::-webkit-scrollbar-thumb {
    background: #B0D747;
    border-radius: 10px;
    outline: 2px solid #B0D747;
  }
}
.filter-nav-title {
  position: relative;
  z-index: 1;
  display: none;
  margin-bottom: 46px;
  padding: 4px 26px 4px 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background-color: #141E30;
  border: 2px solid #00AEDD;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .filter-nav-title {
    display: block;
  }
}
.filter-nav-title::after {
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 13px;
  height: 8px;
  background-image: url(../../../img/arrow-down-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  content: "";
}

.filter-nav-title:hover, .filter-nav-title.active {
  color: #004869;
  background-color: #FFFFFF;
}

.filter-nav-title:hover::after, .filter-nav-title.active::after {
  background-image: url(../../../img/arrow-down-blue.svg);
}

.filter-nav-title.active {
  margin-bottom: 0;
}

.filter-nav-title.active + .filter-nav {
  display: block;
  margin-bottom: 46px;
}

.hidden {
  display: none;
}