footer {
  padding: 10px 0;
  background-color: #252526;
  border-top: 1px solid rgba(255, 255, 255, 0.5019607843);
  position: relative;
  z-index: 4;
}
footer .ft-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
footer .ft-row .copyright {
  padding-right: 15px;
  font-size: 16px;
  line-height: 21.28px;
  color: var(--white);
  font-family: "Segoe Sans Small Semilight";
  font-weight: 300;
}
footer .ft-row .ft-nav li {
  position: relative;
}
footer .ft-row .ft-nav li:not(:last-child) {
  padding: 0 40px 0 0;
  border-right: 1px solid #CBCBCB;
  margin-right: 40px;
}
footer .ft-row .ft-nav li a {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  position: relative;
  font-family: "Segoe Sans Small Semilight";
  font-weight: 300;
}
footer .ft-row .ft-nav li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
footer .ft-row .ft-nav li a:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  footer .ft-row .copyright {
    font-size: 14px;
    line-height: 1.1;
    padding-right: 10px;
  }
  footer .ft-row .ft-nav li:not(:last-child) {
    padding: 0 15px 0 0;
    margin-right: 15px;
  }
  footer .ft-row .ft-nav li a {
    font-size: 14px;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  footer .ft-row {
    flex-direction: column;
  }
  footer .ft-row .copyright {
    font-size: 14px;
    line-height: 1.1;
    padding-right: 10px;
  }
  footer .ft-row .ft-nav {
    margin-top: 15px;
  }
  footer .ft-row .ft-nav li:not(:last-child) {
    padding: 0 10px 0 0;
    margin-right: 10px;
  }
}
@media (max-width: 425px) {
  footer .ft-row .ft-nav li a {
    font-size: 11px;
    line-height: 1.1;
  }
}/*# sourceMappingURL=footer.css.map */