/* [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/osha-respiratory-protection/osha.css [app-client] (css) */
.osha-landing-wrapper {
  --gradient-primary: linear-gradient(113.99deg, #153c7f 12.55%, #000820 87.43%);
  --gradient-green: linear-gradient(168.42deg, rgba(95, 195, 0, .91) 4.18%, rgba(54, 102, 7, .91) 92.49%);
  --color-primary: #153c7f;
  --color-primary-dark: #000820;
  --color-dark-bg: #000820;
  --color-green: #6bbe2d;
  --color-green-hover: #5aa124;
  --color-white: #fff;
  --color-light-gray: #f4f6f9;
  --color-text-dark: #2d3748;
  --color-text-muted: #5a6a85;
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, .05);
  --shadow-md: 0 10px 30px rgba(0, 8, 32, .08);
  --shadow-lg: 0 15px 40px rgba(0, 8, 32, .12);
  --border-radius: 12px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  font-family: var(--font-inter);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

.osha-landing-wrapper h1, .osha-landing-wrapper h2, .osha-landing-wrapper h3, .osha-landing-wrapper h4 {
  font-family: var(--font-poppins);
  font-weight: 800;
}

.osha-landing-wrapper .container {
  width: min(92vw, 1400px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.osha-landing-wrapper .hero {
  background: var(--gradient-primary);
  align-items: center;
  padding: max(48px, min(6vw, 96px)) 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.osha-landing-wrapper .hero-grid {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: max(2rem, min(4vw, 4rem));
  display: grid;
}

.osha-landing-wrapper .hero-content {
  color: var(--color-white);
  z-index: 2;
}

.osha-landing-wrapper .hero-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8bb7f0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
}

.osha-landing-wrapper .hero-content h1 {
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin-bottom: 1.8rem;
  font-size: max(2.25rem, min(3.8vw, 4rem));
  font-weight: 800;
  line-height: 1.3;
}

.osha-landing-wrapper .hero-content p {
  color: rgba(255, 255, 255, .85);
  font-size: max(.95rem, min(1vw, 1.15rem));
  line-height: 1.65;
  font-family: var(--font-inter);
  margin-bottom: 2.5rem;
}

.osha-landing-wrapper .hero-image-wrapper {
  z-index: 2;
  animation: 6s ease-in-out infinite float;
  position: relative;
}

.osha-landing-wrapper img, .osha-landing-wrapper svg {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.osha-landing-wrapper .hero-image {
  border-radius: var(--border-radius);
  filter: drop-shadow(0 20px 50px rgba(0, 8, 32, .3));
  width: 100%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.osha-landing-wrapper .btn-demo {
  background-color: var(--color-green);
  color: var(--color-white);
  line-height: 1;
  font-family: var(--font-poppins);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  box-shadow: 0 4px 10px rgba(99, 168, 33, .2);
}

.osha-landing-wrapper .btn-demo:hover {
  background-color: var(--color-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(99, 168, 33, .3);
}

.osha-landing-wrapper .hero-buttons {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.osha-landing-wrapper .btn-brochure {
  color: var(--color-white);
  line-height: 1;
  font-family: var(--font-poppins);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.osha-landing-wrapper .btn-brochure:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.osha-landing-wrapper .requirements {
  background-color: var(--color-white);
  padding: 80px 0 60px;
}

.osha-landing-wrapper .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}

.osha-landing-wrapper .section-header h2 {
  color: var(--color-primary-dark);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
  display: inline-block;
  position: relative;
}

.osha-landing-wrapper .req-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  display: grid;
}

.osha-landing-wrapper .req-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 8, 32, .03);
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2.5rem;
  display: flex;
  position: relative;
}

.osha-landing-wrapper .req-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.osha-landing-wrapper .req-card-bullet {
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: .75rem;
}

.osha-landing-wrapper .req-card p {
  color: var(--color-text-dark);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
}

.osha-landing-wrapper .req-summary-text {
  text-align: center;
  max-width: 960px;
  color: var(--color-text-muted);
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.75;
}

.osha-landing-wrapper .process {
  background: var(--gradient-green);
  color: var(--color-white);
  height: auto;
  min-height: auto;
  padding: 60px 0;
  position: relative;
}

.osha-landing-wrapper .process .section-header {
  margin-bottom: 1.1rem;
}

.osha-landing-wrapper .process .section-header h2 {
  color: var(--color-white);
  margin-bottom: 0;
  font-size: 1.9rem;
  line-height: 1.15;
}

.osha-landing-wrapper .process-list {
  flex-direction: column;
  gap: 10px;
  width: 72%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
}

.osha-landing-wrapper .process-card {
  background-color: var(--color-white);
  min-height: 70px;
  transition: var(--transition);
  color: var(--color-text-dark);
  border-left: 0;
  border-radius: 10px;
  grid-template-columns: 82px 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  display: grid;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 8, 32, .16);
}

.osha-landing-wrapper .process-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0, 8, 32, .18);
}

.osha-landing-wrapper .process-icon-box {
  background-color: var(--color-primary);
  width: 82px;
  height: 100%;
  min-height: 70px;
  color: var(--color-white);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.osha-landing-wrapper .process-icon-box svg {
  width: 36px;
  height: 36px;
}

.osha-landing-wrapper .process-text {
  grid-template-columns: .38fr .62fr;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: .55rem 1.25rem;
  display: grid;
}

.osha-landing-wrapper .process-text h3 {
  color: #111;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.18;
}

.osha-landing-wrapper .process-text p {
  color: #222;
  border-left: 1px solid rgba(0, 0, 0, .45);
  margin: 0;
  padding-left: 1.25rem;
  font-size: .88rem;
  line-height: 1.22;
}

.osha-landing-wrapper .visibility {
  background: var(--gradient-primary);
  height: auto;
  min-height: auto;
  color: var(--color-white);
  align-items: center;
  padding: 70px 0;
  display: flex;
}

.osha-landing-wrapper .visibility-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  display: grid;
}

.osha-landing-wrapper .visibility-image {
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 8, 32, .15));
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}

.osha-landing-wrapper .visibility-content h2 {
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.osha-landing-wrapper .visibility-list {
  flex-direction: column;
  gap: 1.8rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.osha-landing-wrapper .visibility-list li {
  color: rgba(255, 255, 255, .9);
  padding-left: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
}

.osha-landing-wrapper .visibility-list li:before {
  content: "";
  background-color: var(--color-green);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 0;
}

.osha-landing-wrapper .cta-section {
  background-color: var(--color-light-gray);
  padding: 35px 0;
}

.osha-landing-wrapper .cta-banner {
  background-image: url("/assets/osha/bgdemo.svg"), var(--gradient-primary);
  text-align: center;
  min-height: 300px;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.osha-landing-wrapper .cta-banner-content {
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

.osha-landing-wrapper .cta-banner h2 {
  letter-spacing: 1px;
  margin-bottom: .8rem;
  font-size: 2.2rem;
}

.osha-landing-wrapper .cta-banner p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.osha-landing-wrapper .cta-banner .btn-demo {
  border-radius: 30px;
  padding: .85rem 2.4rem;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .osha-landing-wrapper .hero-grid {
    gap: 2rem;
  }

  .osha-landing-wrapper .hero-content h1 {
    font-size: 2.3rem;
  }

  .osha-landing-wrapper .process-text {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
}

@media (max-width: 768px) {
  .osha-landing-wrapper .hero-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .osha-landing-wrapper .req-grid {
    grid-template-columns: 1fr;
  }

  .osha-landing-wrapper .visibility-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .osha-landing-wrapper .process-card {
    grid-template-columns: 1fr;
  }

  .osha-landing-wrapper .process-icon-box {
    width: 100%;
    height: 70px;
  }
}

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