.footer {
  background-color: #120015;
  padding: 30px 15px 20px !important;
  font-family: "Oksana", "Oksana Sans Narrow", "Nunito", "Montserrat-Bold",
    sans-serif;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr 30px;
  max-width: 1190px;
  margin: 0 auto;
  column-gap: 10px;
  grid-template-areas:
    "content socials"
    "nav nav"
    "bottom bottom";
}

.footer__content {
  grid-area: content;
}

.footer__socials {
  grid-area: socials;
}

.footer__nav {
  grid-area: nav;
}

.footer__bottom {
  grid-area: bottom;
}

.footer__info-block:not(:last-child) {
  margin-bottom: 20px;
}

.footer__title {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.28;
  color: #ffffff;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
}

.footer__text {
  font-weight: 300;
  font-size: 12px;
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: #7b677e;
}

.footer__text:not(:last-child) {
  margin-top: 10px;
}

.footer__content {
  margin-bottom: 50px;
}

.footer__content a {
  color: #ff6766;
  text-decoration: none;
  transition: color 200ms ease-out;
}

.footer__content a:hover {
  color: #fff;
}

.footer-list__links-block {
  display: flex;
  flex-direction: column;
}

.footer-list__link {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  transition: color 200ms;
  margin-bottom: 20px;
}

.footer-list__link:hover {
  color: #ff6766;
}

.footer-list__link:last-child {
  margin-bottom: 0;
}

.footer-list .footer-list__links-block:not(:last-child) {
  margin-bottom: 20px;
}

.footer-socials {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer-socials__item {
  margin-bottom: 16px;
}

.footer-socials__item:last-child {
  margin-bottom: 0;
}

.footer-socials__link {
  display: inline-block;
  transition: opacity 200ms;
  width: 30px;
}

.footer-socials__link img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-socials__link:hover {
  opacity: 0.75;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  column-gap: 15px;
  font-size: 14px;
}

.footer__bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 12px;
  color: #707070;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
}

.footer__lang {
  display: flex;
  align-items: center;
}

.lang-button {
  background: transparent;
  border: none;
  font-family: inherit;
  font-weight: 900;
  color: #fff;
  padding: 0;
  margin: 0 9px;
  transition: color 200ms;
}

.lang-button:not(:disabled):hover {
  cursor: pointer;
}

.lang-button--active,
.lang-button:hover {
  color: #ff6766;
}

@media (min-width: 576px) {
  .footer {
    padding: 30px !important;
  }

  .footer__container {
    column-gap: 20px;
  }

  .footer__nav {
    gap: 25px;
  }

  .footer-list .footer-list__links-block:not(:last-child) {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 60px 30px !important;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr min-content;
    grid-template-areas:
      "content nav socials"
      "bottom bottom bottom";
    gap: 30px;
  }

  .footer__bottom {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .footer {
    padding: 60px !important;
  }

  .footer__container {
    gap: 70px;
    row-gap: 25px;
  }
}

@media (min-width: 1200px) {
  .footer__container {
    column-gap: 80px;
  }
}
