footer .wrapper {
    max-width: var(--CONTAINER_WIDTH);
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: stretch
  }
  
  footer .section-title {
    text-align: center;
  }
  
  footer {
    font-size: 14px;
  }
  
  footer a {
    text-decoration: none;
    transition: all 0.3s ease 0s;
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  #contact p {
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  footer a:hover {
    color: var(--SECONDARY_MINOR_COLOR);
    opacity: .7;
  }
  
  footer .nav-menu li {
    padding-bottom: 20px;
  }
  
  footer section {
    padding: 60px 0;
  }
  
  footer .section-bg {
    background: var(--TEXT_COLOR);
  }
  
  footer .section-title {
    padding-bottom: 30px;
  }
  
  footer .section-title h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  footer .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--EXTRA_COLOR);
  }
  
  footer .additional {
    max-width: 800px;
  }
  
  footer .section-title p {
    margin-bottom: 0;
  }
  
  footer .contact .contact-about h3 {
    font-size: 25px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--EXTRA_COLOR);
  }
  
  footer .contact .contact-about p {
    line-height: 24px;
    color: var(--TEXT_COLOR);
  }
  
  #footer {
    background: var(--SECONDARY_MINOR_COLOR);
    padding: 24px 0;
    color: var(--SECONDARY_MAJOR_COLOR);
  }
  
  #footer .copyright {
    text-align: center;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
  }
  
  @media screen and (max-width: 767px) {
    .nav-menu {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }