/* ----------- FOOTER SECTION --------------*/
#footer {
  background: #062630 url("assets/images/pattern-dark-bg.svg");
  color: white;
  padding: 48px 16px 24px 16px;

  border-radius: 16px 16px 0 0;

  display: flex;
  flex-direction: column;
  gap: 64px;

  align-items: center;

  @media (width >= 1000px) {
    padding-left: 135px;
    padding-right: 135px;
    padding-top: 80px;
  }
}

#footer .text-preset-7 {
  color: white;
}

.footer-title {
  margin: 0;
  text-align: center;
  color: white; 
}

.footer-button {
  background-color: #062630;
  border: 2px solid white;
  color: white;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;

  @media (width >= 1000px) {
    width: 70%
  }
}

.join-us-footer {
  display: flex;
  flex-direction: column;
  gap: 24px; 
  align-items: center;
}

.footer-copyright-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px; 
  width: 100%;
}

.copyright-social-info {
  display: flex;
  flex-wrap: wrap;
  padding-left: 32px;
  padding-right: 32px;
  gap: 16px;
  justify-content: center;
  width: 100%;

  @media (width >= 600px) {
    justify-content: space-between;
  }
}

.social-media-icons {
  width: 22px;
  height: 22px;
}

.socials-flex {
  display: flex;
  gap: 24px;
}

.footer-copyright-socials > hr {
  border: 1px solid #385159;
}

/* -----------------------------------------------------*/