@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap";
/* [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;
  text-transform: uppercase;
  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;
  text-transform: uppercase;
  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/css/DemoCTA.css [app-client] (css) */
.demo-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  justify-content: center;
  align-items: center;
  padding: 3rem;
  display: flex;
}

.demo-cta-container {
  text-align: center;
  color: #fff;
  background-image: url("../media/bgdemo.dab93dc3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  padding: 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.demo-cta-container:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: rgba(10, 20, 40, .1);
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.demo-cta-container > * {
  z-index: 1;
  position: relative;
}

.demo-cta-title {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #e8f5ff 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 24px;
  font-weight: 800;
}

.demo-cta-subtitle {
  opacity: .95;
  max-width: 700px;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.8;
}

.demo-cta-subtitle .highlight {
  color: #a8e063;
  font-weight: 600;
}

.demo-cta-button {
  color: #153c7f;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 1;
  background: linear-gradient(135deg, #a8e063 0%, #92d050 100%);
  border: none;
  border-radius: 50px;
  padding: 1.1rem 3rem;
  font-size: max(1.05rem, min(2.5vw, 1.2rem));
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(168, 224, 99, .4);
}

.demo-cta-button:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .3), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.demo-cta-button:hover:before {
  left: 100%;
}

.demo-cta-button:hover {
  background: linear-gradient(135deg, #92d050 0%, #7bb830 100%);
  transform: translateY(-4px)scale(1.03);
  box-shadow: 0 20px 40px rgba(168, 224, 99, .5);
}

.demo-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 224, 99, .4);
}

@media (max-width: 1024px) {
  .demo-cta-container {
    margin: 0 1rem;
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .demo-cta-section {
    padding: 4rem 1.5rem;
  }

  .demo-cta-container {
    padding: 3.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .demo-cta-section {
    padding: 3rem 1rem;
  }

  .demo-cta-container {
    border-radius: 16px;
    padding: 3rem 1.5rem;
  }

  .demo-cta-button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* [project]/src/app/about-us/AboutUs.css [app-client] (css) */
.about-page {
  background-color: #fafafa;
  flex-direction: column;
  min-height: 100vh;
  font-family: Poppins, sans-serif;
  display: flex;
}

.about-hero, .about-vision-section, .about-mission-section, .about-values-section, .about-journey-section, .about-contact-section {
  scroll-margin-top: 120px;
}

.about-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-hero {
  height: auto;
  min-height: unset;
  text-align: left;
  color: #fff;
  box-sizing: border-box;
  background: linear-gradient(135deg, #1a4488 0%, #153c7f 52%, #0e2f6e 100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-height: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.about-hero .about-hero-inner {
  box-sizing: border-box;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1360px;
  height: auto;
  margin: 0 auto;
  padding: 40px 40px 0;
  display: grid;
}

.about-hero-text {
  z-index: 2;
  grid-area: 1 / 1;
  align-self: start;
  max-width: 100%;
  margin-bottom: 0;
  padding-top: 32px;
  padding-right: 8px;
}

.about-hero-title {
  z-index: 2;
  text-align: left;
  color: #fff;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  margin: 0 0 16px;
  font-size: max(34px, min(4vw, 54px));
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

.about-hero-title-emphasis {
  font-weight: 700;
}

.about-hero-subtitle {
  z-index: 2;
  color: rgba(255, 255, 255, .95);
  text-align: left;
  max-width: 520px;
  margin: 0;
  font-size: max(16px, min(1.45vw, 21px));
  font-weight: 400;
  line-height: 1.55;
  position: relative;
}

.about-hero-image-wrapper {
  z-index: 1;
  grid-area: 1 / 2;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  font-size: 0;
  line-height: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.about-hero-image {
  object-fit: contain;
  object-position: bottom right;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(52vh, 480px);
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  transform: translateX(120px);
}

@media (min-width: 769px) {
  .about-hero {
    justify-content: flex-start;
    align-items: stretch;
    height: calc(100vh - 120px);
    min-height: calc(100vh - 120px);
    max-height: none;
    padding: 0;
    display: flex;
    overflow: hidden;
  }

  .about-hero .about-hero-inner {
    flex: 1;
    grid-template-rows: 1fr;
    align-items: stretch;
    height: 100%;
    min-height: 0;
    padding: 0 40px;
    transform: none;
  }

  .about-hero-text {
    align-self: start;
    padding-top: 48px;
  }

  .about-hero-image-wrapper {
    justify-content: flex-end;
    align-self: stretch;
    align-items: flex-end;
    height: 100%;
    min-height: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
  }

  .about-hero-image {
    object-fit: contain;
    object-position: bottom right;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    transform: translateX(120px);
  }
}

.grid-container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  display: grid;
}

.about-vision-section {
  background-color: #ecf3ff;
  padding: 80px 0;
}

.about-mission-section {
  background: linear-gradient(90deg, #0f2a5a 0%, #153c7f 50%, #1e4a8c 100%);
  padding: 80px 0;
}

.about-image-wrapper {
  border-radius: 24px;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.about-section-image {
  transform-origin: center;
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.12);
}

.about-text-col {
  padding: 20px;
}

.about-section-title {
  color: #1a1a1a;
  letter-spacing: 1px;
  margin: 0 0 20px;
  font-size: max(24px, min(3.5vw, 32px));
  font-weight: 700;
}

.about-section-title.white-text {
  color: #fff;
}

.about-section-desc {
  color: #333;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.about-section-desc.white-text {
  color: rgba(255, 255, 255, .9);
}

.about-values-section {
  background-color: #f5f5f5;
  padding: 100px 0;
}

.about-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-values-title {
  color: #153c7f;
  letter-spacing: .5px;
  margin: 0 0 16px;
  font-size: max(26px, min(4vw, 36px));
  font-weight: 700;
}

.about-values-subtitle {
  color: #333;
  margin: 0;
  font-size: 18px;
}

.about-values-grid {
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
}

.about-value-card {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: -20px 20px 25px rgba(0, 0, 0, .1);
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: -20px 28px 35px rgba(0, 0, 0, .15);
}

.about-value-card:hover .about-value-corner-shape {
  background-color: #6bbe2d;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.15)rotate(10deg);
}

.about-value-card-content {
  text-align: left;
  padding: 32px 140px 32px 32px;
}

.about-value-card-title {
  color: #1a1a1a;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
}

.about-value-card-desc {
  color: #4b5563;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.about-value-corner-shape {
  box-sizing: border-box;
  background-color: #153c7f;
  border-top-left-radius: 100%;
  justify-content: flex-end;
  align-items: flex-end;
  width: 130px;
  height: 130px;
  padding: 0 24px 24px 0;
  transition: background-color .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

.about-journey-section {
  color: #fff;
  background-color: #4c9619;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.about-journey-section .about-section-header {
  margin-bottom: 24px;
}

.about-journey-title {
  letter-spacing: .5px;
  margin: 0 0 16px;
  font-size: max(28px, min(4vw, 40px));
  font-weight: 700;
}

.about-journey-subtitle {
  color: rgba(255, 255, 255, .95);
  margin: 0;
  font-size: 18px;
}

.about-journey-path-container {
  width: 100%;
  margin: 0 0 -120px;
  padding: 0;
  display: block;
  position: relative;
  left: 0;
  overflow: hidden;
}

.about-journey-path-image {
  object-fit: cover;
  object-position: left center;
  width: 100vw;
  max-width: none;
  height: auto;
  display: block;
}

.about-journey-grid {
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.about-journey-card {
  background-color: #fff;
  border: 2px solid #153c7f;
  border-radius: 16px;
  flex-direction: column;
  flex: 0 360px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.about-journey-card:hover {
  border-color: #1a4da3;
  transform: translateY(-8px)scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.about-journey-card:hover .about-journey-card-header {
  background-color: #1a4da3;
}

.about-journey-card-header {
  color: #fff;
  background-color: #153c7f;
  align-items: center;
  padding: 18px 24px;
  transition: background-color .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.about-journey-card-year {
  border-right: 2px solid rgba(255, 255, 255, .4);
  padding-right: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.about-journey-card-title {
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.about-journey-card-body {
  text-align: left;
  flex: 1;
  padding: 24px;
}

.about-journey-card-body p {
  color: #4b5563;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.about-contact-section {
  text-align: center;
  background-color: #f0f4f8;
  padding: 100px 0;
}

.about-contact-title {
  color: #1a1a1a;
  letter-spacing: .5px;
  margin: 0 0 16px;
  font-size: max(26px, min(4vw, 36px));
  font-weight: 700;
}

.about-contact-subtitle {
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.about-contact-card {
  background-color: #fff;
  border-bottom: 6px solid #b0b8c0;
  border-radius: 16px;
  max-width: 760px;
  margin: 60px auto 0;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.about-contact-card:hover {
  border-bottom-color: #153c7f;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.about-contact-card-header {
  color: #fff;
  text-align: left;
  background-color: #153c7f;
  padding: 24px 32px;
}

.about-contact-card-header h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
}

.about-contact-card-header p {
  color: rgba(255, 255, 255, .9);
  margin: 0;
  font-size: 15px;
}

.about-contact-card-body {
  text-align: left;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 32px;
  display: flex;
}

.about-contact-card-text {
  flex: 1;
}

.about-contact-card-text p {
  color: #4b5563;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}

.about-contact-info {
  color: #1a1a1a;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.about-contact-card-action {
  flex-shrink: 0;
}

.about-schedule-button {
  color: #fff;
  white-space: nowrap;
  background-color: #6bbe2d;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.about-schedule-button:hover {
  background-color: #5aa825;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(107, 190, 45, .3);
}

.about-schedule-button:active {
  transform: translateY(-1px);
}

.calendar-icon {
  flex-shrink: 0;
}

@media (max-width: 1140px) {
  .about-journey-card {
    flex: 0 340px;
  }

  .about-journey-grid {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .about-hero .about-hero-inner {
    grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
    gap: 10px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .grid-container {
    gap: 40px;
  }

  .about-values-grid {
    gap: 32px;
  }

  .about-journey-path-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    min-height: unset;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    max-height: none;
    padding: 32px 28px 0;
    display: flex;
    overflow: visible;
  }

  .about-hero .about-hero-inner {
    grid-template-columns: unset;
    grid-template-rows: unset;
    box-sizing: border-box;
    flex-direction: column;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: flex;
    overflow: visible;
    transform: none;
  }

  .about-hero-text {
    text-align: center;
    flex: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .about-hero-title {
    text-align: center;
    white-space: normal;
    margin: 0 0 12px;
    font-size: max(1.75rem, min(6vw, 2.25rem));
    line-height: 1.2;
  }

  .about-hero-subtitle {
    text-align: center;
    max-width: none;
    margin: 0 auto;
    font-size: max(.95rem, min(3.6vw, 1.125rem));
    line-height: 1.5;
  }

  .about-hero-image-wrapper {
    flex: none;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: auto;
    margin: 28px 0 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    display: flex;
    position: relative;
  }

  .about-hero-image {
    object-fit: contain;
    object-position: bottom center;
    width: 100%;
    max-width: 560px;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 0;
    display: block;
  }

  .grid-container {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-vision-section {
    padding: 60px 0;
  }

  .about-vision-section .about-image-col {
    order: 2;
  }

  .about-mission-section, .about-values-section {
    padding: 60px 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .about-value-card-content {
    padding: 32px 32px 140px;
  }

  .about-journey-section {
    padding: 60px 0;
  }

  .about-journey-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-journey-card {
    flex: auto;
    width: 100%;
    max-width: 460px;
  }

  .about-contact-section {
    padding: 60px 0;
  }

  .about-contact-card-body {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 24px;
  }

  .about-schedule-button {
    justify-content: center;
    width: 100%;
    display: flex;
  }
}

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