footer{
  display: flex;
  flex-direction: column;

  .footer-top{
    width: 100vw;
    background-color: #000;
    height: 100%;

    .footer-top__content{
      width: var(--content-max-full-width);
      height: 100%;
      padding:20px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;

      p {
        color: #fff;
        margin: 0;
        padding: 0;
      }

      .footer-top__logo img{
        width: 400px;
        height: auto;
      }
      .footer-top__data{
        text-align: right;
      }
      a, a:visited{ color: #fff;}
    }
  } /* footer-top */

  .footer-bottom{
    background-color: #757474;
    width: 100vw;

    .footer-bottom__content{
      width: var(--content-max-full-width);
      margin-left: auto;
      margin-right: auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;

      a, a:visited{ color: #fff; }
      .footer-bottom__links{display: flex; gap: 10px; text-align:center;}
    }

  } /* footer-bottom */
}


@media only screen and (max-width:1200px){
  footer{
    .footer-top .footer-top__content, .footer-bottom .footer-bottom__content{ width: 100%; }
  }
}


@media only screen and (max-width: 767px) {
  footer{
    .footer-top .footer-top__content, .footer-bottom .footer-bottom__content{
      flex-direction: column;
      justify-content: center;
      gap: 20px;

    }
  }
}

@media only screen and (max-width: 550px) {
  footer{
    .footer-top .footer-top__content .footer-top__logo img{ width: 100%; min-width: 300px; }
  }
}
