@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-scale: 1;
  --brand: #0045a5;
  --brand-dark: #003a8c;
  --ink: #1f2532;
  --muted: #6b7280;
  --subtle: #9aa3b2;
  --page-bg: #f4f6fa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #fff;
}

html {
  font-family: "Poppins", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  cursor: pointer;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: none;
}

.poriton-home {
  color: var(--ink);
  background: #fff;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#pagebox {
  width: calc(1920px * var(--page-scale));
  height: calc(6700px * var(--page-scale));
  overflow: hidden;
}

#page.page {
  width: 1920px;
  height: 6700px;
  background: #fff;
  transform: scale(var(--page-scale));
  transform-origin: top left;
}

.codex-home--template-shell #pagebox {
  height: calc(5736px * var(--page-scale));
}

.codex-home--template-shell #page.page {
  height: 5736px !important;
}

/* Local Tailwind-equivalent utilities used by the PSD coordinate markup. */
.absolute { position: absolute; }
.relative { position: relative; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.place-items-center { place-items: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.left-0 { left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-\[1920px\] { width: 1920px; }
.h-\[82px\] { height: 82px; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: 0; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-50 { z-index: 50; }

.bg-white { background-color: #fff; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-brand { background-color: var(--brand); }
.bg-brand\/90 { background-color: rgba(0, 69, 165, .9); }
.bg-white\/55 { background-color: rgba(255, 255, 255, .55); }
.text-white { color: #fff; }
.text-ink { color: var(--ink); }
.text-brand { color: var(--brand); }

.font-sans { font-family: "Poppins", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif; }
.font-light { font-weight: 300; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rounded-full { border-radius: 9999px; }
.rounded-\[6px\] { border-radius: 6px; }
.rounded-\[8px\] { border-radius: 8px; }
.rounded-\[10px\] { border-radius: 10px; }
.opacity-55 { opacity: .55; }
.opacity-70 { opacity: .7; }
.mix-blend-multiply { mix-blend-mode: multiply; }
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 160ms;
  transition-timing-function: ease;
}
.hover\:text-brand:hover { color: var(--brand); }
.hover\:bg-brand-dark:hover { background-color: var(--brand-dark); }

.site-header,
.hero,
.about-section,
.products-section,
.advantages-section,
.news-section,
.cta-footer {
  isolation: isolate;
}

.about-section {
  z-index: 2;
}

.site-header.bg-white {
  color: #fff;
  background-color: rgba(82, 96, 106, .38);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 260px;
  top: 0;
  width: 1px;
  height: 82px;
  background: rgba(255, 255, 255, .24);
}

.site-header .bg-slate-200 {
  background-color: rgba(255, 255, 255, .24);
}

.site-header nav ul {
  gap: 48px !important;
  color: #fff !important;
  font-size: 17.5px !important;
  font-weight: 600;
}

.site-header nav a {
  color: #fff;
  text-transform: uppercase;
}

.site-header .codex-nav-list,
.site-header .codex-subnav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .codex-nav-list {
  align-items: center;
}

.site-header .codex-nav-item {
  position: relative;
}

.site-header .codex-nav-list > .codex-nav-item.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 24px;
  z-index: 79;
}

.site-header .codex-nav-item > a {
  position: relative;
  display: block;
  white-space: nowrap;
  text-decoration: none;
}

.site-header .codex-subnav {
  display: none;
  position: absolute;
  left: 0;
  top: 49px;
  z-index: 80;
  width: 360px;
  padding: 18px 0;
  background: rgba(8, 20, 33, .96);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .24);
  opacity: 1;
  pointer-events: auto;
}

.site-header .codex-subnav--level-2 {
  display: none;
  left: calc(100% - 1px);
  top: 0;
  z-index: 81;
  width: 320px;
  padding: 12px 0;
  background: rgba(6, 18, 32, .98);
}

.site-header .codex-nav-item:hover > .codex-subnav,
.site-header .codex-nav-item:focus-within > .codex-subnav {
  display: block;
}

.site-header .codex-subnav a {
  position: relative;
  display: block;
  padding: 10px 24px;
  color: #fff;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  text-transform: none;
}

.site-header .codex-subnav a:hover,
.site-header .codex-subnav a:focus {
  background: #004799;
}

.site-header .codex-subnav .has-children > a {
  padding-right: 46px;
}

.site-header .codex-subnav .has-children > a::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: .75;
  transform: translateY(-50%) rotate(-45deg);
}

.site-header .codex-subnav--level-2 a {
  padding: 9px 22px;
  font-size: 14.5px;
  line-height: 1.35;
  text-transform: none;
}

.site-header > div,
.site-header > div span {
  color: #fff !important;
  font-size: 17.5px !important;
}

.site-header .site-header-phone span {
  font-size: 14.5px !important;
  white-space: nowrap;
}

.site-header img[src$="icon-phone.png"],
.site-header img[src$="icon-search.png"],
.site-header img[src$="icon-caret.png"] {
  filter: brightness(0) invert(1);
}

.hero a[href="#products"] {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .96);
  background-color: transparent;
  font-size: 17.5px !important;
}

.hero a[href="#products"]:hover {
  background-color: rgba(255, 255, 255, .12);
}

.about-section img[src$="icon-plant.png"],
.about-section img[src$="icon-cnc.png"],
.about-section img[src$="icon-people.png"] {
  filter: brightness(0) invert(1);
}

.about-section h2 {
  font-size: 62px !important;
  line-height: 1.08 !important;
}

.about-section p {
  font-size: 17px !important;
  line-height: 1.9 !important;
}

.about-section .font-extrabold[style*="font-size:42px"] {
  font-size: 48px !important;
}

.about-section div[style*="font-size:15.5px"][style*="rgba(255,255,255"] {
  font-size: 17.5px !important;
}

.products-section {
  background: transparent !important;
  z-index: 1;
}

.products-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -254px;
  width: 1920px;
  height: 1462px;
  background: #f1f2f7;
}

.products-section > h2,
.advantages-section > h2,
.news-section > h2 {
  font-size: 53px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.products-section > a,
.news-section > a {
  font-size: 17.5px !important;
}

.products-section article {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.products-section article > span {
  height: 1px !important;
  background: #3d3d3d !important;
}

.products-section article > a {
  color: inherit;
  text-decoration: none;
}

.products-section article .codex-product-card__rule {
  height: 1px !important;
  background: #3d3d3d !important;
}

.products-section article .codex-product-card__title {
  color: #1f2532;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.2;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.products-section article .text-center {
  font-size: 22px !important;
  font-weight: 600 !important;
}

.advantages-section {
  background: transparent !important;
}

.advantages-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 975px;
  background: #fff;
}

.advantages-section > a {
  font-size: 17.5px !important;
}

.advantages-section article > div {
  font-size: 20px !important;
}

.codex-video-frame {
  background: #06111f;
}

.codex-video-frame__media {
  display: block;
}

.codex-video-play {
  transition: opacity .2s ease, transform .2s ease;
}

.codex-video-play img {
  filter: brightness(0) invert(1);
}

.codex-video-play:hover,
.codex-video-play:focus-visible {
  transform: scale(1.04);
}

.codex-video-play:focus-visible {
  outline: 3px solid rgba(0, 69, 165, .55);
  outline-offset: 6px;
}

.codex-video-frame.is-loading .codex-video-play {
  opacity: .6;
}

.codex-video-frame.is-playing .codex-video-play {
  opacity: 0;
  pointer-events: none;
}

.codex-video-frame.has-video-error .codex-video-play {
  cursor: default;
  opacity: .45;
}

.news-section {
  background: #f1f2f7 !important;
}

.news-section article {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.news-section article p {
  font-size: 15.5px !important;
}

.news-section article h3 {
  font-size: 22px !important;
  line-height: 1.48 !important;
}

.news-section article a {
  font-size: 16.5px !important;
}

.cta-footer h2 {
  font-size: 95px !important;
  line-height: 1.05 !important;
}

.cta-footer > p {
  font-size: 17.5px !important;
}

.cta-footer footer h3 {
  font-size: 16.5px !important;
}

.cta-footer footer ul {
  font-size: 15.5px !important;
}

.cta-footer { z-index: 3; }
.news-section { z-index: 2; }
.advantages-section { z-index: 5; }
