a.dropdown-toggle::after {
  left: 5px;
  font-weight: 300;
  margin: 0;
  border: 0;
  vertical-align: 0;
  position: relative;
  top: 0;
  display: inline-block;
  content: "\f107";
  font-family: "FontAwesome";
  transition: all 0.5s;
}
a.dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  a.dropdown-toggle.hide-toggle {
    pointer-events: none;
  }
  a.dropdown-toggle.hide-toggle::after {
    display: none;
  }
}

.footer-item {
  position: relative;
  transition: all 0.3s;
}
.footer-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 25%;
  width: 0%;
  height: 2px;
  background-color: #889327;
  opacity: 0;
  transition: opacity 500ms, width 500ms;
}
.footer-item:hover {
  font-weight: 600;
}
.footer-item:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #889327;
  opacity: 1;
}

.bottom-footer {
  position: relative;
}
.bottom-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 35%;
  width: 25%;
  height: 1px;
  background-color: #3C3E3D;
  opacity: 0;
  transition: opacity 500ms, width 500ms;
}
.bottom-footer:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 35%;
  width: 25%;
  height: 1px;
  background-color: #3C3E3D;
  opacity: 1;
}