@import url('https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&display=swap');

:root {
  --nmt-bg: #f6f7fb;
  --nmt-surface: #ffffff;
  --nmt-surface-alt: #fbfbfd;
  --nmt-text: #171a2d;
  --nmt-text-soft: #61677d;
  --nmt-border: rgba(209, 213, 219, 1);
  --nmt-accent: rgba(234, 71, 152, 1);
  --nmt-accent-soft: #ffe4ef;
  --nmt-blue: rgba(77, 124, 255, 1);
  --nmt-blue-dark: #1a2340;
  --nmt-shadow: 0 1.125rem 2.625rem rgba(23, 26, 45, 0.08);
  --nmt-radius-xl: 2rem;
  --nmt-radius-lg: 1.5rem;
  --nmt-radius-md: 1.125rem;
  --nmt-radius-sm: 0.875rem;
  --nmt-container: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: black;
  font-family: 'Geologica', sans-serif;
}

.nmt-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.nmt-container {
  width: min(100%, var(--nmt-container));
  padding: 0 2.5rem;
  margin: 0 auto;
}

.nmt-title {
  font-size: clamp(1.5rem, 3.75vw, 3rem);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: clamp(1.25rem, 3.75vw, 3rem);
}

@media (max-width: 62rem) {
  .nmt-container {
    padding: 0 2rem;
  }
}
@media (max-width: 48rem) {
  .nmt-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 40rem) {
  .nmt-container {
    padding: 0 1.25rem;
  }
}
@media (max-width: 30rem) {
  .nmt-container {
    padding: 0 1rem;
  }
}

.nmt-hero {
  padding: 9.25rem 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nmt-hero__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  max-width: 40.5rem;
}
.nmt-hero__content::after {
  content: '';
  position: absolute;
  right: -5rem;
  top: -4.0625rem;
  width: 137vw;
  height: calc(100% + 8.125rem);
  filter: blur(10rem);
  background: rgba(77, 124, 255, 1);
  z-index: -1;
}

.nmt-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
}

.nmt-hero__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.nmt-hero__text {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 1);
  font-size: 1.25rem;
  line-height: 1.4;
}

.nmt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.75rem;
}

@media (max-width: 62rem) {
  .nmt-hero {
    padding: 6.25rem 0;
  }
}
@media (max-width: 30rem) {
  .nmt-hero {
    padding: 5rem 0;
  }
  .nmt-hero__text {
    margin: 1.25rem 0 0;
    font-size: 1rem;
  }
  .nmt-hero__actions {
    margin-top: 2rem;
  }
}

.nmt-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(23, 26, 45, 0.4);
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, #dfe8ff 0%, #edf2ff 45%, #f5f6fb 100%);
}

.nmt-features {
  background: rgba(249, 250, 251, 1);
}
.nmt-features-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.nmt-card {
  background: var(--nmt-surface);
  border: 1px solid var(--nmt-border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.nmt-feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nmt-feature-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1rem;
  display: inline-block;
}
.nmt-card__title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}
.nmt-card__text {
  font-size: 1rem;
  line-height: 1.5;
}

.nmt-feature-card__text {
  margin: 0.25rem 0 0;
}
@media (max-width: 62rem) {
  .nmt-card {
    padding: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .nmt-card {
    padding: 1.25rem;
  }
  .nmt-card__title {
    font-size: 1.125rem;
  }
  .nmt-card__text {
    font-size: 0.875rem;
  }

  .nmt-feature-card__icon {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0 auto 0.75rem;
  }
}
@media (max-width: 40rem) {
  .nmt-features-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 30rem) {
  .nmt-card {
    padding: 1rem;
  }
}

.nmt-section-heading {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: clamp(1.25rem, 3.75vw, 3rem);
}

.nmt-section-heading--compact {
  justify-content: center;
}

.nmt-section-heading__line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(209, 213, 219, 1);
}

.nmt-section-heading__title {
  margin: 0;
  text-align: center;
}

@media (max-width: 62rem) {
  .nmt-section-heading {
    gap: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .nmt-section-heading {
    gap: 1.25rem;
  }
}
@media (max-width: 30rem) {
  .nmt-section-heading__line {
    display: none;
  }
  .nmt-section-heading {
    justify-content: center;
  }
}

.nmt-subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.nmt-subject-card {
  padding-left: clamp(1rem, 3.75vw, 3rem);
  padding-right: clamp(1rem, 3.75vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nmt-subject-card__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: inline-block;
}

@media (max-width: 62rem) {
  .nmt-subject-card__icon {
    width: 3rem;
    height: 3rem;
  }
  .nmt-subject-card {
    gap: 1.25rem;
  }
  .nmt-subjects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 48rem) {
  .nmt-subject-card__icon {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 30rem) {
  .nmt-subject-card__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .nmt-subject-card {
    gap: 1rem;
  }
  .nmt-subjects-grid {
    grid-template-columns: 1fr;
  }
}

.nmt-dates__wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.nmt-dates__media {
  width: 44%;
  flex-shrink: 0;
}

.nmt-dates__media img {
  width: 100%;
  aspect-ratio: 532 / 320;
  object-fit: contain;
}

.nmt-dates__content {
  flex: 1;
}

.nmt-dates__title {
  text-align: center;
}

.nmt-date-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 4.375vw, 3.5rem);
  margin-top: 1.5rem;
  max-width: 32.25rem;
}

.nmt-date-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nmt-date-card__label {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.625rem;
  border: 1px solid var(--nmt-accent);
  border-radius: 999px;
  color: var(--nmt-accent);
  font-size: 1.125rem;
  font-weight: 500;
}

.nmt-list-disc {
  padding-left: 1.5rem;
  list-style: disc;
}

.nmt-date-card__text {
  margin: 1.25rem 0 0;
}

@media (max-width: 62rem) {
  .nmt-dates__media {
    display: none;
  }
  .nmt-dates__content {
    width: 100%;
  }
  .nmt-date-list {
    margin: 0 auto;
  }
}
@media (max-width: 48rem) {
  .nmt-list-disc {
    padding-left: 1.25rem;
  }

  .nmt-date-card__label {
    min-height: 2rem;
    padding: 0.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 30rem) {
  .nmt-date-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nmt-date-card__text {
    margin: 1rem 0 0;
  }
}

.nmt-process {
  background: rgba(249, 250, 251, 1);
}

.nmt-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.nmt-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.nmt-step-card__title {
  padding-top: 0.75rem;
}
.nmt-step-card__icon {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nmt-accent);
}
.nmt-step-card__icon img,
.nmt-step-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  flex-shrink: 0;
  color: currentColor;
}

.nmt-step-card__text {
  margin: 1rem 0 0;
}

@media (max-width: 48rem) {
  .nmt-step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .nmt-step-card__title {
    padding-top: 0;
  }
  .nmt-step-card__text {
    margin: 0.5rem 0 0;
  }
}
@media (max-width: 40rem) {
  .nmt-step-card__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .nmt-step-card__icon img,
  .nmt-step-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (max-width: 30rem) {
  .nmt-steps-grid {
    grid-template-columns: 1fr;
  }
}

.nmt-contacts-section-heading {
  margin-bottom: 0.75rem;
}

.nmt-contacts__intro {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: clamp(1.25rem, 3.75vw, 3rem);
}

.nmt-contacts__intro span,
.nmt-contact-card__text span {
  color: var(--nmt-blue);
  text-decoration: none;
}

.nmt-contacts-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.nmt-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.nmt-contact-card__title {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(107, 114, 128, 1);
}
.nmt-contact-card__title-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
.nmt-contact-card__text {
  padding-left: 1.75rem;
}

@media (max-width: 48rem) {
  .nmt-contacts-grid {
    justify-content: flex-start;
    gap: 1.25rem;
  }
  .nmt-contact-card {
    width: calc(50% - 0.625rem);
  }
}
@media (max-width: 30rem) {
  .nmt-contact-card {
    width: 100%;
  }
}

.nmt-cta {
  text-align: center;
}
.nmt-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nmt-cta__icon {
  display: inline-block;
  margin-bottom: 1.25rem;
  height: 5rem;
  width: auto;
}

.nmt-cta__title {
  font-size: 1.5rem;
  line-height: 1.333;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.nmt-cta__text {
  font-size: 1.125rem;
  margin-bottom: clamp(1.25rem, 3.75vw, 3rem);
}

@media (max-width: 48rem) {
  .nmt-cta__icon {
    height: 4rem;
  }
  .nmt-cta__title {
    font-size: 1.25rem;
  }
  .nmt-cta__text {
    font-size: 1rem;
  }
}
