/* // FOOTER */
footer {
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 2.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #090524;
}

footer .upper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

footer .upper-wrapper .contact-grid {
     display: flex;
    gap: 4rem;
    margin-right: auto;
    margin-left: 10%;
}

footer .upper-wrapper .contact-grid .block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
footer .upper-wrapper .contact-grid .block .title {
  color: #fff;
  font-family: "Funnel Sans";
}
footer .upper-wrapper .contact-grid .block .text,
footer .upper-wrapper .contact-grid .block .text  a {
  color: var(--Powder-Blue, #aabadc);

}

footer .upper-wrapper .contact-grid .block .footer-links {
  font-family: "Funnel Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
footer .upper-wrapper .contact-grid .block  a {
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}
a.footer-service {
    margin-left: 16px;
}
a.footer-privacy {
    margin-right: 16px;
}

footer .upper-wrapper .follow-us {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .upper-wrapper .follow-us .social-title {
  color: #fff;
  font-family: "Funnel Sans";
}

footer .upper-wrapper .follow-us .social-img-wrapper {
  display: flex;
  gap: 2rem;
}

@media screen and (max-width: 1024px) {
  footer {
    padding: 0;
    padding-top: 2.5rem;
  }
  footer .upper-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    flex-direction: column;
  }
  footer .upper-wrapper .contact-grid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    gap: 2rem;
    margin-right: 0;
  }
  footer .upper-wrapper .contact-grid .block .text a{
    line-height: 2.2;
  }

  footer .upper-wrapper .contact-grid .title,
  footer .upper-wrapper .contact-grid .text {
    text-align: center;
    width: 100%;
  }
  footer .lower-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }


}