/* [project]/src/app/css/Header.css [app-client] (css) */
.basic-header {
  z-index: 1000;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}

.header-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  position: relative;
}

.header-logo-img {
  object-fit: contain;
  width: auto;
  height: auto;
  max-height: 120px;
}

@media (max-width: 1024px) {
  .header-container {
    padding: 12px 20px;
  }
}

.header-logo {
  flex: 40%;
  align-items: center;
  transition: transform .3s ease-in-out;
  display: flex;
}

.header-logo:hover {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .header-logo img {
    max-width: 140px;
    height: auto;
  }
}

.header-nav {
  flex-wrap: wrap;
  flex: 60%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  display: flex;
}

.header-nav div {
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  display: flex;
}

@media (max-width: 1200px) {
  .header-nav {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .header-nav {
    gap: 16px;
  }
}

.header-nav a {
  color: #153c7f;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.header-nav a.active:after {
  content: "";
  background-color: #153c7f;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.header-nav a.header-link-login {
  color: #153c7f;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
}

.header-nav a.header-link-login:hover {
  background-color: rgba(21, 60, 127, .08);
}

.header-nav a.header-link-login.active:after {
  display: none;
}

.header-nav a.header-link-register {
  color: #fff;
  background-color: #153c7f;
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
}

.header-nav a.header-link-register:hover {
  color: #fff;
  background-color: #1e4a8c;
  border-color: #1e4a8c;
}

.header-nav a.header-link-register.active:after {
  display: none;
}

.mobile-menu a.header-link-login {
  color: #153c7f;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.mobile-menu a.header-link-register {
  color: #fff;
  background-color: #153c7f;
  border: 2px solid #153c7f;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
}

.hamburger {
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  margin: -8px 0 -8px 8px;
  padding: 8px;
  display: none;
}

.hamburger svg {
  stroke: #003a8f;
  width: 28px;
  height: 28px;
}

.mobile-menu {
  z-index: 999;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(255, 255, 255, .98);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 80px 24px 32px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

.mobile-menu a {
  text-align: left;
  border-radius: 8px;
  margin-bottom: 4px;
  padding: 14px 16px;
  font-size: 16px;
  display: block;
}

.mobile-menu a:not(.header-link-login):not(.header-link-register) {
  color: #153c7f;
}

.mobile-menu a.header-link-login, .mobile-menu a.header-link-register {
  text-align: center;
  margin-top: 8px;
}

.mobile-menu a.header-link-login {
  margin-bottom: 8px;
}

@media (min-width: 1025px) {
  .header-container {
    justify-content: space-between;
  }

  .header-nav {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }
}

/* [project]/src/app/css/Footer.css [app-client] (css) */
.interllekt-footer {
  color: #fff;
  background: #153c7f;
  margin-top: auto;
  padding: 40px 24px;
}

.footer-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
  position: relative;
}

.footer-brand {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-logo {
  justify-content: center;
  transition: transform .3s ease-in-out;
  display: flex;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-mission {
  opacity: .9;
  max-width: 740px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.app-buttons {
  flex-flow: row;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  display: flex;
}

.app-buttons img {
  max-width: 100%;
  height: auto;
  transition: transform .2s;
  display: block;
}

.app-buttons a:hover img {
  transform: scale(1.05);
}

.footer-copyright {
  opacity: .95;
  color: #fff;
  margin: 24px 0 0;
  font-size: 14px;
}

.footer-copyright strong {
  font-weight: 700;
}

.footer-social-left {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 40px;
  left: 2px;
}

.footer-legal-block {
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  display: flex;
  position: absolute;
  top: 40px;
  right: -20px;
}

.footer-legal-link {
  color: #fff;
  letter-spacing: .02em;
  opacity: .95;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .3s;
}

.footer-legal-link:hover {
  opacity: 1;
}

.footer-powered {
  opacity: .85;
  color: #fff;
  margin-top: 40px;
  font-size: 14px;
}

.footer-social {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.connect-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.social-icons {
  align-items: center;
  gap: 32px;
  display: flex;
}

@media (max-width: 380px) {
  .interllekt-footer {
    padding: 40px 16px 28px;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-links h4, .connect-title {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

.social-link {
  color: #7cc427;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.social-link:hover {
  opacity: .9;
  transform: scale(1.08);
}

.icon-f, .icon-in {
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.icon-twitter, .icon-instagram {
  width: 36px;
  height: 36px;
}

@media (max-width: 1024px) {
  .interllekt-footer {
    padding: 60px 24px 36px;
  }

  .footer-container {
    gap: 36px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-mission {
    max-width: 480px;
  }

  .footer-social-left, .footer-legal-block {
    align-items: center;
    position: static;
  }

  .connect-title {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .icon-in {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .interllekt-footer {
    padding: 48px 20px 32px;
  }

  .footer-logo {
    margin-bottom: auto;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-powered {
    margin: 0;
  }

  .footer-mission {
    max-width: 320px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .app-buttons {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-links h4, .connect-title {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .social-icons {
    gap: 24px;
  }

  .social-link {
    font-size: 28px;
  }
}

/* [project]/src/app/features/features-responsive.css [app-client] (css) */
.feature-page-wrapper .MuiContainer-root {
  width: min(92vw, 1400px) !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.feature-page-wrapper img, .feature-page-wrapper svg:not(.MuiSvgIcon-root) {
  max-width: 100%;
  height: auto;
}

.feature-page-wrapper section {
  padding-top: max(48px, min(6vw, 96px));
  padding-bottom: max(48px, min(6vw, 96px));
}

.feature-page-wrapper h1 {
  max-width: max(940px, min(80vw, 1300px)) !important;
  font-size: max(2.5rem, min(4vw, 4.75rem)) !important;
}

.feature-page-wrapper h5, .feature-page-wrapper .MuiTypography-h5 {
  max-width: max(840px, min(75vw, 1100px)) !important;
}

.feature-page-wrapper h2 {
  font-size: max(2rem, min(3vw, 3.5rem)) !important;
}

.feature-page-wrapper h3 {
  font-size: max(1.3rem, min(2vw, 2rem)) !important;
}

.feature-page-wrapper p {
  font-size: max(.95rem, min(1vw, 1.15rem));
}

/*# sourceMappingURL=src_app_f46e5512._.css.map*/