.footer {
  margin-top: 6em;
  background-color: var(--color-bg-footer);
  border-top: 1px solid var(--color-grey-border);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer__section {
  padding: 3em 0 1.3333333333em;
}
.footer__section + .footer__section {
  padding-left: 5.303030303%;
  margin-left: 5.303030303%;
}
.footer__section img {
  height: 80px;
  width: auto;
}

.footer__section--full {
  width: 100%;
}

.footer__section.column {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.6666666667em;
  flex-wrap: nowrap;
}
.footer__section.column .footer__part {
  flex: 1 1 0;
  min-width: 0;
}

.footer__social {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0 0 1.3333333333em;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: transform 0.15s ease;
}
.footer__social a img {
  width: 24px;
  height: 24px;
}
.footer__social a:hover {
  transform: translateY(-1px);
}

.footer__part {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
}
.footer__part .icon {
  flex-shrink: 0;
  margin: 0;
}
.footer__part .icon img {
  width: 44px;
  height: 44px;
}
.footer__part .title {
  font-size: 1.0666666667em;
  font-weight: 400;
}
.footer__part .subtitle {
  font-size: 1.0666666667em;
  font-weight: 600;
}
.footer__part .title + .subtitle {
  margin-top: 0.25em;
}
.footer__part a:hover {
  transform: translateY(-1.5px);
}

.footer__texts {
  display: flex;
  flex-direction: column;
}

.footer__bottom {
  padding: 1em 0;
  text-align: center;
}

.footer__copyright {
  margin: 0;
  font-size: 0.9333333333em;
  font-weight: 400;
  color: var(--color-grey-text);
}

@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 2.6666666667em;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .footer__section.column {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
  }
  .footer__part {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .footer__part .icon img {
    width: 38px;
    height: 38px;
  }
  .footer__part .title {
    font-size: 1em;
  }
  .footer__part .subtitle {
    font-size: 1em;
  }
  .footer__social a {
    width: 40px;
    height: 40px;
  }
  .footer__social a img {
    width: 22px;
    height: 22px;
  }
  .footer__section {
    padding: 2em 0 0.8em;
  }
  .footer__section + .footer__section {
    padding-left: 0;
    margin-left: 0;
  }
  .footer__copyright {
    font-size: 0.8666666667em;
  }
}
@media screen and (max-width: 650px) {
  .footer__section img {
    height: 64px;
  }
  .footer__part {
    gap: 0.9333333333em;
  }
}
