/* ===================== */
/* // FOOTER
/* ===================== */

.footer {
  padding-top: 56px;
  padding-bottom: 32px;
  background-color: #202426;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===================== */
/* // FOOTER SECTIONS
/* ===================== */

.footer__sections {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 41px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 991px) {
  .footer__sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer__section.brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer__sections {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__section.brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .footer__sections {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__section.brand {
    max-width: 100%;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .footer__socials {
    gap: 10px;
  }

  .footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__section.brand {
  gap: 18px;
  max-width: 460px;
  flex-shrink: 0;
}

.footer__section > h3 {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 16.1px;
}

.footer__section p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  max-width: 300px;
}

/* ===================== */
/* // FOOTER LINKS
/* ===================== */

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  transition: 0.3s;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================== */
/* // FOOTER BRAND & SOCIALS
/* ===================== */

.footer__brand-block {
  display: flex;
}

.footer__brand img {
  height: 38px;
  filter: brightness(0) invert(1);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.footer__socials iconify-icon {
  font-size: 18px;
}

/* ===================== */
/* // FOOTER BOTTOM
/* ===================== */

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}

.footer__bottom p a {
  color: rgba(255, 255, 255, 0.55);
  transition: 0.3s;
}

.footer__bottom p a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  transition: 0.3s;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}