@import "./common.css";
@import "./reset.css";
@import "./variables.css";
@import "./sections/benefits.css";
@import "./sections/blogs.css";
@import "./sections/contact.css";
@import "./sections/building-bridges.css";
@import "./sections/cta-banner.css";
@import "./sections/founder-section.css";
@import "./sections/hero.css";
@import "./sections/numbers.css";
@import "./sections/testimonials.css";
@import "./sections/trusted-brands.css";
@import "./sections/video.css";

/* HEADER STYLES */
.header {
  display: flex;
  padding: 25px 20px;
  justify-content: center;
  align-items: center;
  background-color: #f2f5f6;
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  width: 160px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-item {
  font-size: var(--font-m);
  line-height: 20px;
}

.nav-link {
  text-decoration: none;
  color: #12141db3;
  transition: all 0.3s ease-in-out;
  font-weight: var(--bold);
}

.nav-link:hover {
  color: #043a53b3;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu {
  display: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 992px) {
  .logo {
    width: 140px;
  }
  .header {
    padding: 20px;
  }
  .buttons {
    gap: 5px;
  }

  .button {
    padding: 8px 15px;
  }

  .nav-item {
    font-size: var(--font-s);
  }
}

@media screen and (max-width: 768px) {
  .logo {
    width: 120px;
  }
  .nav,
  .buttons .button {
    display: none;
  }
  .menu {
    display: block;
  }
}

/* FOOTER STYLES */
.footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--white);
}

.footer .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 90px;
  width: 100%;
  max-width: 1920px;
  padding: 80px 150px;
}

.footer .content .logo-and-socials-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

.footer .social-links-container {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer .social-links-container .img-container {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
  background: #d7e0e5;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer .social-links-container .img-container .social-link {
  transition: filter 0.3s ease;
}

.footer .social-links-container .img-container:hover {
  background: #8aaaca;
}

.footer .social-links-container .img-container:hover .social-link {
  filter: invert(1);
}

.footer .content .info-container {
  font-size: 18px;
  line-height: 28px;
  max-width: 400px;
}

.footer .content .navigation-container {
  display: flex;
  gap: 90px;
}

.footer .content .links-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer .content .links-container .links-title {
  font-size: 24px;
  line-height: 32px;
}

.footer .content .links-container .links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer .content .links-container .links .link {
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  text-decoration: none;
}

.footer .content .links-container .links .link:hover {
  color: var(--teal);
}

.footer .site-credits-container {
  background: #f2f5f6;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.footer .site-credits-container .collaborators-section {
  padding: 30px 100px;
  border-radius: 20px;
  border: 1px solid #888;
  background: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.footer .site-credits-container .collaborators-section .link {
  color: #6439ff;
}

.footer .site-credits-container .collaborators-section .link:hover {
  text-decoration: underline;
}

.footer .site-credits-container .divider {
  width: 100%;
  height: 1px;
  background: #92a7b0;
  margin-bottom: 24px;
}

.footer .site-credits-container .credits-content {
  padding: initial;
  width: 100%;
  max-width: 1440px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #92a7b0;
}

.footer .site-credits-container .credits-content .links-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.footer .site-credits-container .credits-content .language-switcher-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer
  .site-credits-container
  .credits-content
  .language-switcher-container
  .language-switcher {
  background: #f2f5f6;
  border: none;
  color: var(--Prime-2, #92a7b0);
  font-size: var(--font-m);
  line-height: 1;
  font-weight: 500;
}

.footer
  .site-credits-container
  .credits-content
  .language-switcher-container
  .language-switcher:focus {
  outline: none;
}

@media screen and (max-width: 1200px) {
  .footer .content {
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 50px 20px;
  }

  .footer .content .logo-and-socials-container {
    align-items: center;
    gap: 20px;
  }

  .footer .content .info-container {
    text-align: center;
  }

  .footer .content .links-container {
    gap: 16px;
  }

  .footer .content .links-container .links {
    gap: 10px;
  }

  .footer .site-credits-container .credits-content {
    max-width: var(--breakpoint-md);
  }
}

@media screen and (max-width: 992px) {
  .footer .content {
    gap: 40px;
  }

  .footer .content .links-container .links {
    gap: 10px;
  }

  .footer .content .info-container {
    font-size: 16px;
    line-height: 24px;
  }

  .footer .content .links-container .links-title {
    font-size: 20px;
    line-height: 28px;
  }

  .footer .content .links-container .links .link {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 640px) {
  .footer .site-credits-container .collaborators-section {
    padding: 20px;
    margin: 0 20px 20px;
  }
  .footer .site-credits-container .credits-content {
    flex-direction: column;
    gap: 20px;
  }
}
