footer {
    position: relative;
    bottom: 0;
    width: 100%;
    min-height: 280px;
    display: block;
    background-color: $darkgrey-1;
    color: $white;
    font-size: $footer-font-size;
    font-weight: $light-weight;
    line-height: 125%;
    padding-bottom: 6px;
    margin-top: 50px;

    h3 {
      color: $white;
      font-size: $footer-h3-font-size;
      font-weight: $bold-weight;
    }

    a,
    a:link,
    a:visited {
      border-bottom: 1px dashed $white;
      color: $white;
      font-weight: $medium-weight;
      padding-bottom: 0.2rem;

    }

    a {
      &:active, &:hover {
        border-bottom: 1px solid $white;
          color: $white !important;
      }
    }

  .copyright-and-version p {
    margin-bottom: 0;
  }

  .contact-area {
    background-color: $grey-1;
  }

  .standard-footer {
    border-top: 1px solid $grey-1;
  }
}

  .footer__mobile{
    display:block;
  }

  .footer__desktop {
    display:none;
  }

.link-pad {
  padding-bottom: 25px;
}

  @media print,(min-width: 670px) {
    .footer__desktop{
      display: block;
    }

    .footer__mobile{
      display: none;
    }
  }

  @media print,(min-width: 975px){
    footer {
      font-size: $footer-sm-font-size;
      h3 {
        font-size: $footer-h3-sm-font-size;
      }
    }
  }

@media print,(min-width:1200px) {
  footer {
    padding-top: 1px;
  }
}

@media print,(min-width: 1220px){
  footer {
    font-size: $footer-m-font-size;
    h3 {
      font-size: $footer-h3-m-font-size;
    }
  }
}

@media print,(min-width: 1480px){
  footer {
    font-size: $footer-l-font-size;
    h3 {
      font-size: $footer-h3-l-font-size;
    }
  }
}
