.footer {
  padding: 4rem 0;
  position: relative;
  background-color: #000;
}

.footer__email {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 4rem;
}

.footer__email-title {
  color: #fff;
  font-family: "UAFSans";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: 0.056rem;
  text-transform: uppercase;
}

.footer__email-link {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 1.96rem */
}

.footer__email-link svg {
  width: 2rem;
  height: auto;
}

.footer__logo {
  width: 8.1rem;
  height: auto;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.50);
  text-align: right;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  position: absolute;
  bottom: 4rem;
  right: 4rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 5.8rem 0 5rem;
  }

  .footer .container {
    display: grid;
    grid-template-columns: 36.5rem 50rem 1fr;
    align-items: center;
  }

  .footer__logo {
    width: 8.9rem;
    order: 1;
  }

  .footer__email {
    order: 2;
    margin-bottom: 0;
  }

  .footer__email-title {
    font-size: 2rem;
    letter-spacing: 0.08rem;
  }

  .footer__email-link {
    font-size: 1.8rem;
  }

  .footer__copyright {
    position: relative;
    font-size: 1.8rem;
    bottom: 0;
    right: 0;
    order: 3;
  }
}