
.footer {
  padding-left: var(--section-base-padding);
  padding-right: var(--section-base-padding);
  padding-top: var(--section-block-padding);
  padding-bottom: var(--section-base-padding);
  background-color: var(--color-secondary-dark);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.footer__logo {
  width: 64px;
  height: 64px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__socialItem {
  display: flex;
  align-items: center;
  gap: 8px; 
  text-decoration: none;
}

.footer__socialItem:hover .footer__socialItem__text {
  text-decoration: underline;
}

.footer__socialItem__icon {
  width: 22px;
  height: 22px;
}

.footer__socialItem__text {
  color: var(--color-white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contactItem__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer__contactItem__icon {
  width: 16px;
  height: 16px;
}

.footer__contactItem__text {
  color: var(--color-white);
  text-decoration: none;
}

.footer__contactItem__text:hover {
  text-decoration: underline;
}

.footer__contactItem__text.no-underline:hover {
  text-decoration: none;
}

.footer__linksWrapper {
  display: flex;
  gap: 36px;
}

.footer__linksHeadingContainer {
  text-decoration: none;
}

.footer__linksHeading {
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  margin-bottom: 8px;
}

.footer__linksHeading:hover {
  cursor: pointer;
}

.footer__linksList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  text-decoration: none;
}

.footer__link__icon {
  width: 16px;
  height: 16px;
}

.footer__link__text {
  color: var(--color-white);
}

.footer__link:hover .footer__link__text {
  text-decoration: underline;
}

.footer__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__footerCopyright__text {
  color: var(--color-white);
}

.footer__footerLinks {
  display: flex;
  gap: 24px;
}

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

.footer__footerLink {
  color: var(--color-white);
  text-decoration: none;
}

.footer__footerLink:hover {
  text-decoration: underline;
}

@media (min-width: 576px) {
  .footer__content {
    flex-direction: row;
    gap: 20px;
  }

  .footer__main {
    margin-top: 20px;
  }

  .footer__contentBottom {
    flex: 1;
  }

  .footer__linksWrapper {
    gap: 40px;
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .footer__content {
    justify-content: space-around;
  }

  .footer__contentTop {
    display: flex;
    gap: 20px;
  }

  .footer__contentBottom {
    max-width: 600px;
  }

  .footer__main {
    margin-top: 32px;
  }

  .footer__linksWrapper {
    gap: 32px;
    margin-top: 32px;
    justify-content: space-between;
  }

  .footer__linksColumn {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }

  .footer__linksColumn.col-1 {
    flex: 1;
  }

  .footer__linksColumn.col-2 {
    flex: 2;
  }

  .footer__footer {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
  }
}

@media (min-width: 991px) {
  .footer__contentTop {
    gap: 64px;
  }

  .footer__footer {
    margin-top: 64px;
  }
}