footer {
  padding: 1em 8em 4.4em;
}

footer .logo-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2.2em;
  margin-bottom: 1.75em;
}

footer .logo-area::after,
footer .logo-area::before {
  content: '';
  width: 100%;
  height: 0.1em;
  background-color: var(--black);
}

footer .instagram-area .section-title {
  font-family: var(--ff-800);
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  color: #212121;
  margin-bottom: 1.6em;
}

footer .instagram-area .list .item img {
  width: 13.5em;
  height: 13.5em;
  object-fit: cover;
}

footer .txt-area {
  display: flex;
  gap: 1em;
  justify-content: space-between;
  margin-top: 1.7em;
}

footer .txt-area .powered-area {
  padding-top: 0.2em;
}

footer .txt-area .powered-area p {
  margin: 0;
  font-family: var(--ff-400);
  color: #383838;
}

footer .txt-area .powered-area p:first-child {
  font-size: 0.8em;
  line-height: 1.19em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

footer .txt-area .powered-area p:last-child {
  font-size: 0.6em;
  line-height: 1.17em;
}

footer .txt-area .powered-area p:last-child a {
  color: #383838;
  transition: 0.2s ease-in-out;
}

footer .txt-area .powered-area p:last-child a:hover {
  color: #969696;
}

footer .txt-area .policies-area {
  display: flex;
  align-items: center;
  height: 100%;
}

footer .txt-area .policies-area .item {
  font-family: var(--ff-400);
  font-size: 0.7em;
  line-height: 1.2em;
  color: #383838;
  transition: 0.2s ease-in-out;
}

footer .txt-area .policies-area .item:hover {
  color: #969696;
}

footer .txt-area .policies-area .item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.072em;
  height: 1em;
  background: var(--black);
  margin: 0 0.4em;
  transform: translateY(0.14em);
}

@media only screen and (max-width: 1200px) {
  footer .instagram-area .list .item img {
    width: 8.5em;
    height: 8.5em;
  }
}

@media only screen and (max-width: 991px) {
  footer .instagram-area .list .item img {
    width: 17.7em;
    height: 17.7em;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 0 35px 20px;
  }

  footer .logo-area {
    justify-content: center;
    margin-bottom: 30px;
  }

  footer .logo-area::after,
  footer .logo-area::before {
    content: unset;
  }

  footer .logo-area img {
    width: 120px;
    height: 60px;
  }

  footer .instagram-area .section-title {
    font-family: var(--ff-600);
    font-size: 24px;
    margin-bottom: 35px;
  }

  footer .instagram-area .img-area .item {
    text-align: center;
  }

  footer .instagram-area .img-area .item img {
    width: 100%;
    height: 345px;
    object-fit: contain;
  }

  footer .instagram-area .as-dots-container {
    margin-top: 20px;
  }

  footer .txt-area {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 40px;
  }

  footer .txt-area .policies-area {
    margin-bottom: 27px;
  }

  footer .txt-area .policies-area .item {
    font-size: 14px;
  }

  footer .txt-area .policies-area .item:not(:last-child)::after {
    margin: 0 5px;
  }

  footer .txt-area .powered-area p {
    text-align: center;
  }

  footer .txt-area .powered-area p:first-child {
    font-size: 16px;
    margin-bottom: 13px;
  }

  footer .txt-area .powered-area p:last-child {
    font-size: 12px;
  }
}