.landing-footer {
  position: relative;
  background-color: $primary-color;
  color: $white;
  font-size: 1.2rem;
  height: 132px;

  @include md {
    height: auto;
  }

  &__logo {
    @include md {
      display: none;
    }

    svg {
      display: block;
    }
  }

  &__copyright {
    display: flex;
    margin-left: 47px;

    @include md {
      margin-left: 0;
      flex-direction: column;
    }

    a {
      margin-left: 20px;
      font-size: 1.2rem;
      color: $white;
    }
  }

  &__manage-cookies {
    @include md {
      margin: 20px 0;
      text-align: center;

      a {
        margin-left: 0;
      }
    }
  }

  &__content {
    width: 100%;
    height: 100%;
    max-width: $max-width;
    margin: auto;
    padding: 0 $gutter;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @include md {
      padding: 0 $gutter-mobile;
      flex-direction: column-reverse;
      justify-content: flex-start;
    }
  }

  &__main {
    display: flex;
    align-items: center;
  }

  &__social {
    display: flex;
    align-items: center;

    @include md {
      width: 100%;
      max-width: 400px;
      margin-bottom: 40px;
      flex-direction: column-reverse;
    }
  }

  &__social-links {
    display: flex;

    @include md {
      width: 100%;
      margin-top: 24px;
      margin-bottom: 32px;
      justify-content: space-between;
    }
  }

  &__social-cta--desktop {
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    margin-right: 18px;

    @include md {
      display: none;
    }
  }

  &__social-cta--mobile {
    display: none;
    width: 100%;

    @include md {
      display: inline-flex;
    }
  }

  &__mobile-logo {
    display: none;

    @include md {
      display: block;

      svg {
        width: 44px;
        height: 44px;
        display: block;
      }
    }
  }

  &__social-link {
    position: relative;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    transition: all 200ms ease-out;

    @include md {
      width: 44px;
      height: 44px;
      margin-left: 0;

      &:first-child {
        margin-left: 0;
      }
    }

    &:hover {
      transform: translateY(-5px);
    }

    img {
      object-fit: contain;
      object-position: center;
    }
  }

  &__to-top {
    position: relative;
    width: 48px;
    height: 48px;

    &::after {
      content: "";
      display: block;
      position: absolute;
      pointer-events: none;
      right: 16px;
      top: 50%;
      margin-top: -3px;
      width: 13px;
      height: 13px;
      border-right: 1px solid #fff;
      border-top: 1px solid #fff;
      transform: rotate(-45deg);
      transition: transform 0.2s linear;
    }

    &--desktop {
      margin-left: 20px;

      @include md {
        display: none;
      }
    }

    &--mobile {
      display: none;
      width: 100%;
      height: 60px;
      box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.18), inset 0 -1px 0 0 rgba(255,255,255,0.18);

      &::after {
        right: 50%;
        margin-right: -7px;
      }

      @include md {
        display: block;
      }
    }
  }
}
