/* ==================================================
   NTPLAST GLOBAL / HOME
   ================================================== */
:root {
  --ntp-c: #5fbcac;
  --ntp-blue: #446084;
  --ntp-text: #23384d;
  --ntp-muted: #62758b;
  --ntp-paper: #f7fbfa;
  --ntp-line: rgba(68, 96, 132, .14);
  --ntp-header-height: 64px;
}

.link-policy {
  color: var(--ntp-c);
  font-weight: 700;
  text-decoration: none;
}

.link-policy:hover {
  color: var(--ntp-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ntp-home {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--ntp-text);
  font-family: Rajdhani, sans-serif;
  overflow: hidden;
}

.ntp-home * {
  box-sizing: border-box;
}

.ntp-home h1,
.ntp-home h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0;
}

.ntp-home h1 {
  max-width: 760px;
  margin: 0 0 1.8rem;
  color: #fff;
  font-size: clamp(3.2rem, 4.8vw, 6.2rem);
  line-height: 1.04;
}

.ntp-home h1 em {
  display: block;
  color: var(--ntp-c);
  font-style: italic;
}

.ntp-home h2 {
  margin: 0;
  color: var(--ntp-text);
  font-size: clamp(2.25rem, 3.4vw, 4.2rem);
}

.ntp-home h3 {
  margin: 1rem 0 .75rem;
  color: var(--ntp-c);
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ntp-home p {
  color: var(--ntp-muted);
  font-size: .97rem;
  line-height: 1.85;
}

.ntp-home .ntp-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 0 3.5rem;
  background: #172b3c;
}

.ntp-hero-video,
.ntp-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ntp-hero-video {
  object-fit: cover;
  transform: scaleX(-1);
}

.ntp-hero-overlay {
  background: linear-gradient(90deg, rgba(15, 32, 48, .82), rgba(15, 32, 48, .45) 52%, rgba(15, 32, 48, .18));
}

.ntp-home .ntp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  transform: translateY(-3vh);
}

.ntp-home .ntp-hero .ntp-kicker,
.ntp-home .ntp-hero h1,
.ntp-home .ntp-hero-content > p:not(.ntp-kicker),
.ntp-home .ntp-hero .ntp-actions {
  opacity: 0;
  animation: ntp-reveal-down .72s ease-out forwards;
}

.ntp-home .ntp-hero .ntp-kicker {
  animation-delay: .25s;
}

.ntp-home .ntp-hero h1 {
  animation-delay: .45s;
}

.ntp-home .ntp-hero-content > p:not(.ntp-kicker) {
  animation-delay: .65s;
}

.ntp-home .ntp-hero .ntp-actions {
  animation-delay: .85s;
}

.ntp-home .ntp-hero-content > p:not(.ntp-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, .84);
  font-size: .97rem;
  font-weight: 500;
  letter-spacing: .025em;
}

.ntp-home p.ntp-kicker,
.ntp-home .ntp-kicker {
  display: block;
  margin: 0 0 1.6rem;
  color: var(--ntp-c);
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.ntp-home .ntp-kicker-light {
  color: #fff;
}

.ntp-home .ntp-hero .ntp-kicker {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.ntp-home .ntp-hero .ntp-kicker::before {
  content: "";
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.ntp-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ntp-button,
.ntp-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .18em;
  transition: transform .25s, background .25s, border-color .25s, color .25s;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.ntp-button {
  min-height: 48px;
  padding: .88rem 2.3rem;
  font-size: .8rem;
  letter-spacing: .22em;
}

.ntp-button-primary,
.ntp-text-link {
  background: var(--ntp-c);
  color: #fff;
}

.ntp-button-secondary {
  background: #fff;
  color: var(--ntp-blue);
  border-color: rgba(255, 255, 255, .45);
}

.ntp-button:hover,
.ntp-text-link:hover {
  transform: translateY(-2px);
  background: var(--ntp-blue);
  color: #fff;
}

.ntp-home .ntp-button-secondary:hover {
  background: #fff;
  border-color: var(--ntp-c);
  color: var(--ntp-c);
}

.ntp-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .75);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.ntp-scroll span {
  display: block;
  color: rgba(255, 255, 255, .82);
  line-height: 1;
}

.ntp-scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .92));
}

.ntp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ntp-line);
  border-bottom: 1px solid var(--ntp-line);
  background: rgba(95, 188, 172, .05);
}

.ntp-stats div {
  padding: 2.4rem 1rem;
  text-align: center;
  border-right: 1px solid var(--ntp-line);
}

.ntp-stats div:last-child {
  border-right: 0;
}

.ntp-stats strong {
  display: block;
  color: var(--ntp-c);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
}

.ntp-stats span {
  display: block;
  margin-top: .6rem;
  color: var(--ntp-muted);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ntp-section {
  padding: 6.5rem 3.5rem;
}

.ntp-alt {
  background: rgba(247, 251, 250, .78);
  border-top: 1px solid var(--ntp-line);
  border-bottom: 1px solid var(--ntp-line);
}

.ntp-dark {
  color: #fff;
  background: linear-gradient(135deg, #5fbcac, #446084);
}

.ntp-dark h2,
.ntp-dark .ntp-kicker,
.ntp-dark p {
  color: #fff;
}

.ntp-home .ntp-dark .ntp-kicker {
  color: #fff;
}

.ntp-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.ntp-section-head {
  display: block;
  margin-bottom: 2.5rem;
}

.ntp-section-head > p:not(.ntp-kicker) {
  margin: 0;
  font-size: 1.15rem;
}

.ntp-section-head > p:not(.ntp-kicker) {
  max-width: 760px;
  margin-top: 2.5rem;
  line-height: 1.8;
}

.ntp-grid {
  display: grid;
  gap: 1.35rem;
}

.ntp-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ntp-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ntp-card {
  border: 1px solid var(--ntp-line);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 40px rgba(68, 96, 132, .08);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.ntp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 188, 172, .45);
  box-shadow: 0 24px 52px rgba(68, 96, 132, .13);
}

.ntp-product-card figure {
  height: 220px;
  margin: 0;
  background: #eef6f4;
}

.ntp-product-card img,
.ntp-tech-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ntp-card-body,
.ntp-media,
.ntp-news,
.ntp-quote {
  padding: 1.55rem;
}

.ntp-tags {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.ntp-tags span,
.ntp-tag {
  display: inline-flex;
  padding: .35rem .55rem;
  background: rgba(68, 96, 132, .07);
  color: var(--ntp-blue);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ntp-text-link {
  margin-top: 1.1rem;
  padding: .65rem 1.1rem;
  font-size: .68rem;
}

.ntp-split,
.ntp-company,
.ntp-map-layout,
.ntp-final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ntp-lead {
  max-width: 760px;
  font-size: 1.18rem;
}

.ntp-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.ntp-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: start;
}

.ntp-points b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(95, 188, 172, .28);
  color: var(--ntp-c);
  font-family: "Space Mono", monospace;
}

.ntp-points p {
  margin: 0;
  line-height: 1.65;
}

.ntp-points strong {
  display: inline-block;
  margin: 0 0 .25rem;
  color: var(--ntp-blue);
  font-size: .92rem;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ntp-tech-visual {
  position: relative;
  min-height: 500px;
  margin: 0;
  padding: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ntp-line);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 50px rgba(68, 96, 132, .09);
  overflow: hidden;
}

.ntp-tech-visual::before,
.ntp-tech-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(95, 188, 172, .35);
  border-radius: 50%;
  pointer-events: none;
}

.ntp-tech-visual::before {
  width: 380px;
  height: 380px;
}

.ntp-tech-visual::after {
  width: 500px;
  height: 210px;
  transform: rotate(-18deg);
}

.ntp-tech-visual img {
  position: relative;
  z-index: 1;
  width: 72%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
}

.ntp-cert-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.ntp-cert-strip div {
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 1rem;
}

.ntp-cert-strip strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
}

.ntp-cert-strip span {
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ntp-timeline {
  display: grid;
  gap: 1rem;
}

.ntp-timeline div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 1rem;
}

.ntp-timeline b {
  color: #fff;
  font-family: "Space Mono", monospace;
  line-height: 1.65;
}

.ntp-timeline p {
  margin: 0;
  line-height: 1.65;
}

.ntp-evidence-slider {
  overflow: hidden;
  padding-bottom: 20px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.ntp-evidence-slider.is-dragging {
  cursor: grabbing;
}

.ntp-evidence-track {
  display: flex;
  gap: 1.35rem;
  transition: transform .65s ease;
  will-change: transform;
}

.ntp-evidence-track .ntp-quote {
  flex: 0 0 calc((100% - 2.7rem) / 3);
}

.ntp-evidence-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.6rem;
}

.ntp-evidence-dots button {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ntp-c);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.ntp-evidence-dots button.active {
  background: var(--ntp-c);
  transform: scale(1.25);
}

.ntp-quote p {
  color: var(--ntp-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.ntp-quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--ntp-c);
  font-style: normal;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ntp-quote cite span {
  display: block;
  margin-top: .25rem;
  color: var(--ntp-text);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.ntp-map-layout {
  grid-template-columns: 1fr .48fr;
  align-items: stretch;
}

.ntp-map {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--ntp-line);
  background: linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)), url('/wp-content/uploads/2026/06/map.jpg') center/cover;
}

.ntp-marker {
  position: absolute;
  padding: .25rem .45rem .25rem 1.45rem;
  background: #fff;
  border: 1px solid var(--ntp-line);
  color: var(--ntp-blue);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ntp-marker::before {
  content: "";
  position: absolute;
  left: .42rem;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background: var(--ntp-c);
  box-shadow: 0 0 0 6px rgba(95, 188, 172, .16);
}

.ntp-eu { left: 50%; top: 36%; }
.ntp-na { left: 24%; top: 39%; }
.ntp-sa { left: 34%; top: 66%; }
.ntp-me { left: 58%; top: 48%; }
.ntp-ap { left: 75%; top: 36%; }

.ntp-reseller-panel,
.ntp-final-cta {
  border: 1px solid var(--ntp-line);
  background: #fff;
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(68, 96, 132, .08);
}

.ntp-country-list {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
}

.ntp-country-list span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--ntp-line);
  padding-bottom: .55rem;
  color: var(--ntp-muted);
}

.ntp-news time {
  display: block;
  margin: -.2rem 0 .65rem;
  color: var(--ntp-text);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ntp-media-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: .4rem;
  color: var(--ntp-c);
}

.ntp-media-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
}

.ntp-final-cta {
  grid-template-columns: 1fr auto;
}

.ntp-final-cta .ntp-button-secondary {
  background: transparent;
  border-color: var(--ntp-c);
  color: var(--ntp-c);
}

.ntp-final-cta .ntp-button-secondary:hover {
  background: var(--ntp-c);
  border-color: var(--ntp-c);
  color: #fff;
}

.has-bbe-primary-800-background-color {
    background-color: #5ba29c !important;
}

@media (max-width: 980px) {
  .ntp-section,
  .ntp-hero {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .ntp-stats,
  .ntp-grid-3,
  .ntp-grid-4,
  .ntp-section-head,
  .ntp-split,
  .ntp-company,
  .ntp-map-layout,
  .ntp-final-cta {
    grid-template-columns: 1fr 1fr;
  }

  .ntp-section-head,
  .ntp-split,
  .ntp-company,
  .ntp-map-layout,
  .ntp-final-cta {
    grid-template-columns: 1fr;
  }

  .ntp-tech-visual {
    min-height: 380px;
  }

  .ntp-evidence-track .ntp-quote {
    flex-basis: calc((100% - 1.35rem) / 2);
  }
}

@media (max-width: 700px) {
  .ntp-home .ntp-hero {
    min-height: calc(100svh - var(--ntp-header-height));
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .ntp-home .ntp-hero-content {
    transform: none;
  }

  .ntp-home h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .ntp-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ntp-button {
    width: 100%;
    max-width: 310px;
  }

  .ntp-stats,
  .ntp-grid-3,
  .ntp-grid-4,
  .ntp-cert-strip {
    grid-template-columns: 1fr;
  }

  .ntp-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--ntp-line);
  }

  .ntp-product-card figure {
    height: 240px;
  }

  .ntp-map {
    min-height: 360px;
  }

  .ntp-marker {
    font-size: .58rem;
  }

  .ntp-evidence-track .ntp-quote {
    flex-basis: 100%;
  }
}

@keyframes ntp-reveal-down {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================
   NTPLAST HEADER
   ================================================== */
.ntp-site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(68, 96, 132, .12);
  box-shadow: 0 14px 34px rgba(68, 96, 132, .08);
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.link-policy {
  color: #5fbcac;
  font-weight: 700;
  text-decoration: none;
}

.link-policy:hover {
  color: #446084;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body:has(.ntp-home) .ntp-site-header,
.ntp-has-home .ntp-site-header {
  position: fixed;
  background: rgba(255, 255, 255, .96);
  border-bottom-color: rgba(68, 96, 132, .12);
  box-shadow: 0 14px 34px rgba(68, 96, 132, .08);
}

body:has(.ntp-home) .ntp-site-header.is-scrolled,
.ntp-has-home .ntp-site-header.is-scrolled,
.ntp-site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(68, 96, 132, .12);
  box-shadow: 0 14px 34px rgba(68, 96, 132, .08);
}

.ntp-header-inner {
  box-sizing: border-box;
  min-height: 64px;
  padding: .72rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  font-family: Rajdhani, sans-serif;
}

.ntp-header-logo,
.ntp-header-logo:hover {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #23384d;
  text-decoration: none;
}

.ntp-header-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ntp-header-logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ntp-header-logo-word {
  font-family: Orbitron, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #23384d;
}

.ntp-header-logo-word span {
  color: #5fbcac;
}

.ntp-header-payoff {
  margin-top: .28rem;
  color: #62758b;
  font-size: .48rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ntp-header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.45vw, 1.55rem);
  margin-left: auto;
}

.ntp-header-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding: .8rem 0;
  margin: -.8rem 0;
}

.ntp-header-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
}

.ntp-header-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.ntp-header-dropdown:hover > a::after,
.ntp-header-dropdown:focus-within > a::after {
  transform: translateY(1px) rotate(225deg);
}

.ntp-header-nav a,
.ntp-header-langs a {
  color: #62758b;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .25s, background .25s, border-color .25s;
}

.ntp-header-nav a:hover,
.ntp-header-langs a:hover {
  color: #5fbcac;
}

.ntp-header-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 120;
  min-width: 310px;
  padding: 1rem .75rem .75rem;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(68, 96, 132, .12);
  box-shadow: 0 18px 48px rgba(68, 96, 132, .14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease;
}

.ntp-header-dropdown:hover .ntp-header-submenu,
.ntp-header-dropdown:focus-within .ntp-header-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.ntp-header-submenu a {
  display: block;
  padding: .8rem .9rem;
  border-bottom: 1px solid rgba(68, 96, 132, .08);
  color: #446084;
  font-weight: 700;
  letter-spacing: .12em;
}

.ntp-header-submenu a:last-child {
  border-bottom: 0;
}

.ntp-header-submenu a:hover {
  background: rgba(95, 188, 172, .08);
}

.ntp-header-submenu span {
  display: block;
  margin-top: .18rem;
  color: #62758b;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.ntp-header-nav .ntp-header-media-trigger {
  padding: .45rem 1.18rem;
  border: 1px solid rgba(95, 188, 172, .22);
  color: #5fbcac;
}

.ntp-header-nav .ntp-header-media-trigger:hover {
  background: rgba(95, 188, 172, .08);
  border-color: #5fbcac;
}

.ntp-header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ntp-header-langs {
  display: flex;
  gap: .35rem;
  border-left: 1px solid rgba(68, 96, 132, .12);
  padding-left: 1rem;
}

.ntp-header-langs a {
  font-family: "Space Mono", monospace;
  font-size: .62rem;
  letter-spacing: .04em;
}

.ntp-header-langs a.active {
  color: #5fbcac;
}

.ntp-header-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(68, 96, 132, .12);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ntp-header-toggle span,
.ntp-header-toggle span::before,
.ntp-header-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #446084;
  transition: .25s;
}

.ntp-header-toggle span {
  position: relative;
}

.ntp-header-toggle span::before {
  position: absolute;
  top: -6px;
}

.ntp-header-toggle span::after {
  position: absolute;
  top: 6px;
}

.ntp-header-toggle.active {
  position: relative;
  z-index: 203;
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
}

.ntp-header-toggle.active span {
  background: transparent;
}

.ntp-header-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}

.ntp-header-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

.ntp-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 202;
  display: grid;
  grid-template-rows: 170px minmax(0, 1fr) auto;
  background: #5fbcac;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
}

.ntp-mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ntp-mobile-logo {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1rem 4.5rem .75rem;
  color: #fff;
  text-align: center;
}

.ntp-mobile-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ntp-mobile-logo .ntp-header-logo-word,
.ntp-mobile-logo .ntp-header-logo-word span,
.ntp-mobile-logo .ntp-header-payoff {
  color: #fff;
}

.ntp-mobile-logo .ntp-header-logo-word {
  font-size: 1.18rem;
}

.ntp-mobile-logo .ntp-header-payoff {
  font-size: .56rem;
}

.ntp-mobile-links {
  box-sizing: border-box;
  width: min(100%, 680px);
  max-width: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .7) rgba(255, 255, 255, .16);
  text-align: left;
}

.ntp-mobile-links::-webkit-scrollbar {
  width: 6px;
}

.ntp-mobile-links::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .16);
}

.ntp-mobile-links::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .7);
  border-radius: 6px;
}

.ntp-mobile-links > a,
.ntp-mobile-group {
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.ntp-mobile-links > a {
  padding: 1rem .25rem;
}

.ntp-mobile-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
}

.ntp-mobile-group-head > a {
  padding: 1rem .25rem;
}

.ntp-mobile-links a,
.ntp-mobile-langs a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: Rajdhani, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ntp-mobile-submenu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ntp-mobile-submenu-toggle span::before,
.ntp-mobile-submenu-toggle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.ntp-mobile-submenu-toggle span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ntp-mobile-submenu-toggle.active span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.ntp-mobile-sublinks {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding: .15rem .25rem 1rem 1rem;
}

.ntp-mobile-sublinks[hidden] {
  display: none;
}

.ntp-mobile-sublinks a {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .86);
  line-height: 1.45;
  padding: .45rem 0;
}

.ntp-mobile-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 1.5rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .62);
  font-family: "Space Mono", monospace;
}

.ntp-mobile-langs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: .45rem;
  font-size: .95rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .78);
}

.ntp-mobile-langs a.active {
  color: #fff;
}

body.ntp-mobile-menu-open {
  overflow: hidden;
}

body.ntp-mobile-menu-open .ntp-site-header {
  z-index: 204;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  pointer-events: none;
}

body.ntp-mobile-menu-open .ntp-header-logo {
  visibility: hidden;
}

body.ntp-mobile-menu-open .ntp-header-tools,
body.ntp-mobile-menu-open .ntp-header-toggle {
  pointer-events: auto;
}

.ntp-media-backdrop {
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(35, 56, 77, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.ntp-media-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.ntp-media-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  width: min(420px, 92vw);
  background: #fff;
  border-left: 1px solid rgba(68, 96, 132, .12);
  box-shadow: -22px 0 60px rgba(68, 96, 132, .16);
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 2rem;
  overflow: auto;
  font-family: Rajdhani, sans-serif;
}

.ntp-media-panel.open {
  transform: translateX(0);
}

.ntp-media-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ntp-media-panel h2 {
  margin: 0;
  color: #23384d;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
}

.ntp-media-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(68, 96, 132, .12);
  background: #fff;
  color: #446084;
  cursor: pointer;
  font-size: 1.4rem;
}

.ntp-media-resource {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(68, 96, 132, .12);
}

.ntp-media-resource b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(95, 188, 172, .1);
  color: #5fbcac;
  font-family: "Space Mono", monospace;
  font-size: .72rem;
}

.ntp-media-resource strong {
  display: block;
  margin-bottom: .3rem;
  color: #446084;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ntp-media-resource p {
  margin: 0;
  color: #62758b;
  font-size: .9rem;
  line-height: 1.55;
}

.ntp-header-panel-button {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: .88rem 2.3rem;
  background: #5fbcac;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

@media (max-width: 1150px) {
  .ntp-header-inner {
    padding: .72rem 1.4rem;
  }

  .ntp-header-nav,
  .ntp-header-langs {
    display: none;
  }

  .ntp-header-toggle {
    display: flex;
  }
}

@media (max-width: 480px), (max-height: 680px) {
  .ntp-mobile-menu {
    grid-template-rows: 135px minmax(0, 1fr) auto;
  }

  .ntp-mobile-logo {
    gap: .35rem;
    padding-top: .7rem;
  }

  .ntp-mobile-logo img {
    width: 50px;
    height: 50px;
  }

  .ntp-mobile-logo .ntp-header-logo-word {
    font-size: 1.08rem;
  }

  .ntp-mobile-logo .ntp-header-payoff {
    display: block;
    margin-top: .18rem;
    font-size: .44rem;
    letter-spacing: .13em;
  }

  .ntp-mobile-links {
    padding-right: 1rem;
    padding-left: 1rem;
    padding-top: .75rem;
  }
}


/* ==================================================
   NTPLAST FOOTER
   ================================================== */
.ntp-site-footer {
  position: relative;
  z-index: 1;
  background: #5fbcac;
  color: #fff;
  font-family: Rajdhani, sans-serif;
}

.ntp-footer-main {
  padding: 4rem 3.5rem 3rem;
}

.ntp-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: 2rem;
}

.ntp-footer-logo,
.ntp-footer-logo:hover {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.ntp-footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  padding: .2rem;
}

.ntp-footer-logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ntp-footer-logo-word {
  font-family: Orbitron, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.ntp-footer-logo-word span,
.ntp-footer-payoff {
  color: #fff;
}

.ntp-footer-payoff {
  margin-top: .28rem;
  color: rgba(255, 255, 255, .78);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ntp-site-footer h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: .88rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ntp-site-footer p,
.ntp-site-footer li {
  margin: 0 0 .75rem;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  line-height: 1.75;
}

.ntp-site-footer a {
  color: #fff;
  text-decoration: none;
}

.ntp-site-footer a:hover {
  color: rgba(255, 255, 255, .78);
}

.ntp-site-footer strong {
  display: block;
  margin-top: .35rem;
  color: #fff;
  font-weight: 700;
}

.ntp-footer-contacts {
  list-style: none;
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
}

.ntp-footer-contacts li {
  margin: 0;
}

.ntp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .22);
  padding: 1rem 3.5rem;
}

.ntp-footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: .74rem;
  line-height: 1.55;
}

.ntp-footer-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .ntp-footer-main,
  .ntp-footer-bottom {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .ntp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ntp-footer-bottom-inner {
    display: grid;
  }

  .ntp-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .ntp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   SEO OPTIMIZATION
   ================================================== */

.secondary-navigation-links {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
