.Footer {
  position: relative;
  padding: 80px 0 40px;
  background-color: var(--clr-grayDark);
  color: #ffffff;
}

@media screen and (min-width: 769px) {
    .Footer::after {
      content: '';
      position: absolute;
      top: 10px;
      right: 0;
      display: block;
      width: 200px;
      height: 150px;
      background-image: url('../Images/Pattern-white_footer.svg');
      background-repeat: no-repeat;
      background-position: right;
    }
  }

.Footer-logo {
  display: block;
  width: 200px;
  margin: 0 auto 20px auto;
}

@media screen and (min-width: 769px) {

.Footer-logo {
    margin: 0 0 20px 0;
}
  }

.Footer-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.Footer-content .Text {
    text-align: center;
    color: #ffffff;
  }

.Footer-content .Column + .Column {
    margin-top: 30px;
  }

@media screen and (min-width: 769px) {

.Footer-content {
    flex-direction: row;
    text-align: left;
}

    .Footer-content .Text {
      text-align: left;
    }

    .Footer-content .Column + .Column {
      margin-top: 0;
      margin-top: initial;
    }
  }

.Footer-content .Text a {
    color: #ffffff;
  }

@media screen and (min-width: 1026px) {
  .Footer-left {
    width: 70%;
  }

  .Footer-right {
    width: 30%;
  }
}

.Footer-contentSocials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.875rem;
}

.Footer-contentSocials a {
    margin-right: 15px;
    color: #ffffff;
  }

@media screen and (min-width: 769px) {

.Footer-contentSocials {
    justify-content: left;
}
  }

.Footer-subline {
  margin-top: 20px;
}

@media screen and (min-width: 769px) {

.Footer-subline {
    margin-top: 60px;
}
  }

.Footer-toTop {
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 30px;
}

@media screen and (min-width: 1026px) {

.Footer-toTop {
    display: none;
}
  }
