footer a {
    font-size: 12px;
    font-weight: 300;
    text-decoration: none;
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  footer a:hover {
    transition: all 0.3s ease 0s;
    opacity: 0.5;
    color: var(--PRIMARY_MINOR_COLOR);
  }
  
  footer img {
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  footer p {
    max-width: 90%;
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  footer .nav-menu li {
    padding-right: 30px;
  }
  
  footer .nav-menu li:last-child {
    margin-bottom: 20px;
  }
  
  .footer {
    font-size: 14px;
    position: relative;
    font-weight: 300;
    background-color: var(--TEXT_COLOR);
    color: var(--SECONDARY_MINOR_COLOR);
  
  }
  
  .footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: 1;
    background: var(--TEXT_COLOR);
  }
  
  .footer-top {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
  }
  
  .footer__container {
    max-width: var(--CONTAINER_WIDTH) !important;
    margin: 0px auto;
    padding: 0 20px;
  }
  
  .footer-bottom {
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid var(--EXTRA_COLOR);
  }
  
  .copyright {
    font-size: 12px;
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  @media (min-width: 280px) {
  
    .footer-bottom,
    footer .nav-menu {
      flex-direction: column;
    }
  
  }