/* Header */

.header-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

/* Hero Section */

.hero-section {
  background-color: #f1edee;
}

.hero-section .company-logos-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .company-logos-container .company-logo {
  width: 100%;
  max-width: 1000px;
}

/* Go to ARG Section */

.go-to-arg-section {
  padding: 32px;
}

.go-to-arg-section .go-to-arg-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.go-to-arg-section .go-to-arg-container h5 {
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: center;
}

@media (max-width: 768px) {
  .go-to-arg-section .go-to-arg-container {
    flex-direction: column;
  }
}

/* Intro Section */

.intro-section {
  align-items: center;
}

.intro-section .intro-container {
  display: flex;
  align-items: center;
  gap: 75px;
}

.intro-section .intro-container > * {
  flex: 1;
}

.intro-section .down-arrow {
  margin-top: 24px;
  width: 28px;
}

@media (max-width: 768px) {
  .intro-section .intro-container {
    flex-direction: column;
    gap: 24px;
  }
}

/* Get Started Section */

.get-started-section .get-started-container {
  align-items: center;
  text-align: center;
  gap: 26px;
}

.get-started-section .get-started-container .profiles-container {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 112px;
}

.get-started-section .get-started-container .profiles-container .profile-image {
  margin-bottom: 24px;
  max-width: 285px;
  max-height: 265px;
}

@media (max-width: 768px) {
  .get-started-section .get-started-container .profiles-container {
    flex-direction: column;
  }
}

/* FAQ Section */

.faq-section {
  background-color: #cff6f5;
}

.faq-section .faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 64px;
}

.faq-section .faq-container .faq-item {
  max-width: 362px;
  gap: 12px;
}

@media (max-width: 768px) {
  .faq-section .faq-container {
    gap: 32px;
  }
}

/* Footer */

footer {
  background-color: #f1edee;
  overflow: hidden;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}

footer .footer-container *:not(.circle-animation) {
  z-index: 1;
}

footer .footer-logo-mobile {
  display: none;
}

footer .footer-container .footer-logo {
  max-width: 182px;
  margin-bottom: 22px;
}

footer .footer-container .company-info {
  font-size: 12px;
}

footer .footer-container .company-info a {
  font-size: 14px;
}

footer .footer-container .socials-icons {
  margin-top: 14px;
  display: flex;
  gap: 16px;
}

footer .footer-container .quick-links {
  display: flex;
  gap: 64px;
}

footer .footer-container .quick-links .column-title {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 10px;
}

footer .footer-container .quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-container .quick-links a {
  margin-bottom: 6px;
  font-size: 14px;
}

footer .circle-animation {
  position: absolute;
  bottom: 0%;
  left: -30%;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 1s ease, left 1s ease;
}

footer:hover .circle-animation {
  transform: scale(70);
  left: 5%;
}

@media (max-width: 1280px) {
  footer .circle-animation {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .footer-container .footer-logo {
    display: none;
  }

  footer .footer-logo-mobile {
    max-width: 182px;
    display: flex;
    margin-bottom: 48px;
  }

  footer .footer-container .quick-links {
    flex-wrap: wrap;
    gap: 24px;
    order: -1;
  }
}
