.footer {
    background: var(--TEXT_COLOR);
    color: var(--SECONDARY_MINOR_COLOR);
    font-size: 12px;
  }
  
  .footer__container {
    max-width: var(--CONTAINER_WIDTH);
    margin: 0px auto;
    padding: 30px 20px 0 20px;
  }
  
  .footer a {
    text-decoration: none;
    transition: all 0.3s ease 0s;
  }
  
  .footer a:hover {
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  .footer .text {
    margin-bottom: 30px;
    width: 40%;
    margin: 0px auto;
    text-align: center;
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  .footer .title {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 16px;
  }
  
  .footer .subtitle {
    letter-spacing: 1px;
    font-size: 14px;
  }
  
  .footer .copyright {
    background-color: var(--SECONDARY_MINOR_COLOR);
    color: var(--SECONDARY_MAJOR_COLOR);
    margin-top: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .footer .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    list-style: none;
    margin-bottom: 30px;
    letter-spacing: 1px;
  
  }
  
  .footer .menu-item {
    margin-right: 30px;
  }
  
  
  .footer ul li a {
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  .footer .menu-main-menu-container a:hover {
    opacity: 0.5;
  }
  
  .footer .menu-item:last-child {
    margin-right: 0;
  }
  
  .footer__button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  footer .call-to-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid var(--PRIMARY_MAJOR_COLOR);
    color: var(--PRIMARY_MAJOR_COLOR);
  }
  
  footer .call-to-action:hover {
    background-color: var(--PRIMARY_MAJOR_COLOR);
    color: var(--PRIMARY_MINOR_COLOR);
  
  }
  
  @media screen and (max-width: 767px) {
    footer .menu {
      flex-direction: column;
      margin-bottom: 20px;
    }
  
    footer .menu-item {
      margin-right: 0;
      margin-bottom: 30px;
    }
  
    footer .menu-item:last-child {
      margin: 0;
    }
  
    footer .text {
      width: 80%;
    }
  }