@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
:root {
  --red: #ad0c14;
  --main-color: #AD0C14;
  --main-color2: #033B7D;
  --blue: #2f5192;
  --ink: #222;
  --muted: #5b5b5b;
  --line: #dedede;
  --pale: #f6f6f6;
  font-size: 16px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font: 400 1rem/1.7 Poppins, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1 {
  font-size: 3.25rem;
  line-height: 1.22;
}
h2 {
  font-size: 2.875rem;
  line-height: 1.3;
  font-weight: 700;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}
p {
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.wrap {
  width: 1600px;
  max-width: 90%;
  margin: 0 auto;
}
.site-header {
  background: #fff;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 20;
}
.header-inner {
  min-height: 6rem;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.brand {
  flex: none;
  height: 58px;
}
.brand img {
  height: 100%;
  width: auto;
  max-width: initial;
}
#site-nav > a,
#site-nav .nav-group > a {
  font-size: 18px;
  color: #030000;
  line-height: 1.35;
  font-weight: bold;
}
#site-nav > a.active,
#site-nav .nav-group > a.active {
  color: var(--main-color);
}
.header-inner nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5.5%;
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
}
.header-inner nav a:hover,
.header-inner nav a[aria-current] {
  color: var(--red);
}
.header-inner > .button {
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  white-space: nowrap;
}
.nav-group {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.2rem;
}
.submenu-toggle {
  background: none;
  border: 0;
  padding: 0.2rem;
  color: inherit;
}
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: white;
  box-shadow: 0 5px 16px #0002;
  padding: 1rem;
}
.submenu a {
  display: block;
  padding: 0.6rem;
  transition: all 0.5s;
}
.nav-group:hover > .submenu,
.nav-group:focus-within > .submenu,
.nav-group.open > .submenu {
  display: block;
}
.language {
  font-size: 0.9rem;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--line);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 50;
  background: white;
  padding: 10px;
}
.skip-link:focus {
  top: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 2px;
  padding: 10px 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  min-height: 44px;
  transition: all 0.5s;
}
.button:hover {
  background: #033B7D;
  border-color: #033B7D;
}
.button.light {
  background: #fff;
  color: var(--red);
  border-color: #ddd;
}
.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button-row.center {
  justify-content: center;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--red);
  font-weight: 600;
  font-size: 1rem;
}
.text-link:hover {
  text-decoration: underline;
}
.page-hero {
  background: linear-gradient(90deg, #0009, transparent 85%), var(--hero-image) center / cover no-repeat;
  min-height: 40rem;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 5rem 0;
}
.hero-content {
  max-width: 58rem;
}
.hero-content p {
  color: inherit;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  max-width: 53rem;
}
.home-hero {
  min-height: 50rem;
}
.home-hero .hero-content {
  max-width: 78rem;
}
.home-hero h1 {
  max-width: 74rem;
  font-size: 3.5rem;
}
.hero-tags {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.4rem 3rem;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
.band {
  padding: 6rem 0;
}
.band.shaded {
  background: var(--pale);
}
.section-heading {
  margin-bottom: 50px;
}
.section-heading p {
  margin-top: 12px;
  font-size: 1.25rem;
}
.center {
  text-align: center;
}
.grid {
  display: grid;
  gap: 2rem;
}
.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}
.split p + p {
  margin-top: 1rem;
}
.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
}
.card > a > img {
  width: 100%;
  aspect-ratio: 2.3;
  object-fit: cover;
}
.card-copy {
  padding: 1.75rem;
}
.card p {
  margin: 1rem 0 1.5rem;
}
.card .text-link {
  padding-top: 1rem;
  display: flex;
}
.feature-grid article {
  background: white;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 50px 25px;
  position: relative;
  min-width: 0;
}
.feature-grid h3 {
  margin-bottom: 1.2rem;
}
.feature-number {
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.feature-grid p {
  font-size: 16px;
}
.intro-columns {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 7rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.intro-columns h2 {
  margin-bottom: 20px;
}
.intro-columns p {
  font-size: 18px;
}
.intro-columns .lead {
  color: var(--blue);
  font-weight: 600;
  font-size: 20px;
}
.home-products .card-copy {
  padding: 2rem 2.5rem;
}
.home-products .card-copy h3 {
  font-size: 1.875rem;
}
.swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.7rem;
}
.swatch {
  background: white;
  text-align: center;
  border-radius: 4px;
  border-radius: 0 0 10px 10px;
}
.swatch .imgs {
  object-fit: cover;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  transition: all 0.5s;
  width: 100%;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}
.swatch img {
  aspect-ratio: 185/136;
  width: 100%;
  transition: all 0.5s;
}
.swatch span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 60px;
  font-size: 16px;
  line-height: 1.26;
  padding: 0.5rem 0.25rem;
  border-radius: 0 0 10px 10px;
  transition: all 0.5s;
}
.swatches .swatch:hover img {
  transform: scale(1.05);
}
.swatches .swatch:hover span {
  color: var(--main-color);
}
.material-groups {
  gap: 40px 60px;
  position: relative;
  z-index: 1;
}
.material-groups::after {
  content: "";
  height: 233px;
  width: 1px;
  background: #C4C4C4;
  left: 50%;
  top: 10px;
  position: absolute;
  opacity: 0.5;
}
.material-groups h3 {
  font-size: 1.25rem;
}
.wholesale {
  background: #f9f8f6;
}
.wholesale .feature-grid article {
  min-height: 11.5rem;
  padding: 36px 2rem;
  box-shadow: 0 2px 4px #0001;
}
.wholesale .feature-number {
  display: none;
}
.wholesale .section-heading {
  margin-bottom: 2rem;
}
.manufacturing .split {
  gap: 2rem;
  align-items: start;
}
.manufacturing h2 {
  font-size: 2.7rem;
}
.manufacturing .section-heading {
  margin-bottom: 2.5rem;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.capabilities > div {
  padding: 2rem 1rem;
  background: #f6f6f6;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}
.capabilities span {
  color: var(--red);
}
.factory-grid {
  margin-top: 2rem;
  gap: 1.25rem;
}
.factory-grid figcaption {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.factory-grid figure {
  margin: 0;
}
.factory-grid img {
  width: 100%;
  aspect-ratio: 390/200;
  object-fit: cover;
}
.project-grid {
  gap: 1.25rem;
}
.project-grid img {
  width: 100%;
  aspect-ratio: 387/220;
  object-fit: cover;
  border-radius: 5px;
}
.project-grid h3 {
  font-size: 1rem;
  margin: 0.9rem 0 0.3rem;
}
.project-grid p {
  font-size: 1rem;
}
.home-bottom {
  background: #f3f3f3;
}
.home-bottom > .wrap {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 4rem;
  align-items: center;
}
.blog-mini {
  display: grid;
  gap: 1.25rem;
}
.blog-mini article {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 1.5rem;
  align-items: center;
}
.blog-mini img {
  aspect-ratio: 240/142;
  object-fit: cover;
  width: 100%;
}
.blog-mini h3 {
  font-size: 1.125rem;
}
.blog-mini time {
  font-size: 0.95rem;
  color: #666;
  display: block;
  margin-top: 1rem;
}
.blog-mini + .button {
  margin-top: 2rem;
}
.enquiry-panel {
  background: #f6f6f6;
  padding: 3rem;
  border-radius: 6px;
}
.enquiry-panel .section-heading {
  margin-bottom: 2.5rem;
}
.enquiry-panel h2 {
  font-size: 2.6rem;
}
.enquiry-form label {
  display: block;
  font-size: 0.9rem;
  color: #555;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px 19px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #bbb;
  padding: 0.7rem;
  background: #fff;
  color: #333;
  min-height: 44px;
  border-radius: 0;
}
.enquiry-form > label {
  margin: 1rem 0;
}
.enquiry-form > .button {
  width: 100%;
  margin-top: 0.5rem;
}
.form-result {
  margin-top: 1rem;
}
.site-footer {
  padding: 7rem 0 0;
  background: #070707;
  color: white;
  font-size: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr 1.05fr 0.95fr 0.85fr 1fr;
  gap: 2.5rem;
}
.footer-grid h3 {
  font-size: 1.125rem;
  margin-bottom: 1.7rem;
}
.footer-grid p {
  color: #ddd;
  margin: 0.75rem 0;
}
.footer-grid a {
  overflow-wrap: anywhere;
}
.footer-grid a:hover {
  color: #e06065;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 0.5rem;
}
.footer-logo {
  width: 14.4375rem;
  margin-bottom: 1rem;
}
.copyright {
  text-align: center;
  color: #aaa;
  font-size: 0.875rem;
  margin-top: 6rem;
  padding: 1rem;
}
.cta {
  background: var(--blue);
  color: white;
}
.cta p {
  color: white;
}
.cta .section-heading {
  margin-bottom: 0;
}
dialog {
  max-width: 680px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow: auto;
  border: 0;
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 12px 70px #0005;
}
dialog::backdrop {
  background: #0009;
}
dialog h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
}
.prose p + p {
  margin-top: 1.2rem;
}
.prose ul {
  padding-left: 1.3rem;
}
.prose h3 {
  margin: 1.7rem 0 1rem;
}
.table-scroll {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  border: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
}
th {
  background: #fff;
}
.faq-list details {
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding-right: 1rem;
}
.faq-list details p {
  padding-top: 1rem;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-bar button {
  background: white;
  border: 1px solid #ddd;
  padding: 0.7rem 1.3rem;
}
.filter-bar button[aria-pressed=true] {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
[hidden] {
  display: none !important;
}
@media (min-width: 1101px) and (max-width: 1500px) {
  :root {
    font-size: 12px;
  }
}
@media (min-width: 1501px) and (max-width: 1800px) {
  :root {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  :root {
    font-size: 14px;
  }
  .wrap {
    width: 90%;
  }
  .header-inner {
    min-height: 76px;
    gap: 1rem;
  }
  .brand {
    height: 50px;
  }
  .header-inner > .button {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 5%;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 8px 12px #0001;
  }
  .header-inner nav.open {
    display: block;
  }
  .header-inner nav > a,
  .nav-group > a {
    display: block;
    padding: 1rem 0;
  }
  .nav-group {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .submenu {
    position: static;
    box-shadow: none;
    width: 100%;
    padding: 0 1rem;
    display: none !important;
  }
  .nav-group.open > .submenu {
    display: block !important;
  }
  .submenu-toggle {
    width: 44px;
    height: 44px;
  }
  .language {
    display: none;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.3rem;
  }
  .page-hero {
    min-height: 540px;
  }
  .home-hero h1 {
    font-size: 3.2rem;
  }
  .band {
    padding: 4rem 0;
  }
  .intro-columns {
    gap: 3rem;
  }
  .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cols-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .split {
    gap: 2rem;
  }
  .material-groups {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
  .home-bottom > .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .enquiry-panel {
    padding: 2rem;
  }
  .enquiry-panel h2,
  .manufacturing h2 {
    font-size: 2.2rem;
  }
  .manufacturing .split {
    grid-template-columns: 1fr;
  }
  .capabilities div {
    min-height: 90px;
  }
  .home-products .card-copy {
    padding: 1.5rem;
  }
  .home-products .card-copy h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .header-inner {
    min-height: 70px;
  }
  .brand {
    height: 46px;
  }
  .header-inner > .button {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .page-hero {
    min-height: 570px;
    padding: 4rem 0;
    background-position: 65% center;
  }
  .page-hero h1,
  .home-hero h1 {
    font-size: 2.25rem;
  }
  .hero-content p {
    font-size: 1.125rem;
  }
  .hero-tags {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 1rem;
  }
  .button-row {
    gap: 0.7rem;
  }
  .button-row .button {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
  h2 {
    font-size: 1.9rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .section-heading {
    margin-bottom: 2rem;
  }
  .section-heading p {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .band {
    padding: 3.3rem 0;
  }
  .cols-2,
  .cols-3,
  .cols-4,
  .intro-columns,
  .split,
  .home-bottom > .wrap {
    grid-template-columns: 1fr;
  }
  .cols-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid {
    gap: 1.4rem;
  }
  .intro-columns {
    gap: 1.5rem;
  }
  .intro-columns .lead {
    font-size: 1rem;
  }
  .feature-grid article {
    padding: 1.7rem;
  }
  .feature-grid h3 {
    margin-bottom: 0.8rem;
  }
  .feature-grid p {
    font-size: 1rem;
  }
  .swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .swatch span {
    font-size: 1rem;
  }
  .material-groups h3 {
    font-size: 1.2rem;
  }
  .capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .capabilities div {
    padding: 1rem;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  .factory-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .factory-grid figcaption {
    font-size: 0.85rem;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .project-grid p {
    font-size: 0.85rem;
  }
  .enquiry-panel {
    padding: 1.5rem;
  }
  .enquiry-panel h2,
  .manufacturing h2 {
    font-size: 1.9rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    font-size: 0.9rem;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .site-footer {
    padding-top: 3rem;
  }
  .copyright {
    margin-top: 3rem;
    font-size: 0.75rem;
  }
  .blog-mini h3 {
    font-size: 1rem;
  }
  .blog-mini article {
    gap: 1rem;
  }
  .blog-mini time {
    font-size: 0.8rem;
  }
  .card-copy {
    padding: 1.5rem;
  }
  .card p {
    font-size: 1rem;
  }
  dialog {
    padding: 2rem 1.5rem;
  }
  .page-hero .button-row {
    margin-top: 1.5rem;
  }
}
.center-hero {
  position: relative;
  text-align: center;
  color: #111;
  min-height: 50rem;
}
.center-hero:before {
  content: '';
  position: absolute;
  inset: 0 18%;
  background: #f6f7f8ed;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}
.center-hero .wrap {
  position: relative;
  z-index: 1;
}
.center-hero .hero-content {
  max-width: 54rem;
  margin: auto;
}
.center-hero .button-row {
  justify-content: center;
}
.center-hero h1 {
  font-size: 3rem;
}
.comparison-table {
  max-width: 1100px;
  margin: auto;
}
.comparison-table table {
  min-width: 650px;
}
.comparison-table thead th {
  color: white;
  background: #999;
}
.comparison-table thead th:nth-child(2) {
  background: var(--red);
}
.comparison-table thead th:nth-child(3) {
  background: var(--blue);
}
.small-title {
  font-size: 1.15rem;
  margin: 1rem 0 0.5rem;
}
.home-hero {
  background-position: center;
}
.home-hero h1 {
  max-width: 80rem;
}
.home-hero .hero-content {
  max-width: 80rem;
}
@media (max-width: 600px) {
  .center-hero:before {
    inset: 0;
    background: #ffffffdf;
    clip-path: none;
  }
  .center-hero h1 {
    font-size: 2.2rem;
  }
  .center-hero {
    min-height: 560px;
  }
  .home-hero {
    background-position: 72% center;
  }
  .home-hero .hero-content {
    background: #0005;
    padding: 1rem;
    border-radius: 0;
  }
  .small-title {
    font-size: 1.1rem;
  }
}
.center-hero:before {
  background: #f3f5f7;
}
.benefit-icons {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}
.benefit-icons img {
  width: 6.875rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}
.benefit-icons h3 {
  font-size: 1.125rem;
}
.product-overview {
  grid-template-columns: 1.6fr 1fr;
}
.product-overview .section-heading {
  margin-bottom: 2rem;
}
.product-overview td,
.product-overview th {
  font-size: 0.95rem;
  padding: 0.8rem;
}
.finish-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #f8fafb;
}
.finish-card > div {
  padding: 2rem 1.7rem;
  align-self: center;
}
.finish-card h3 {
  font-size: 1.25rem;
}
.finish-card h3:before {
  content: '▪';
  display: block;
  color: var(--red);
}
.finish-card p {
  font-size: 1rem;
  margin-top: 0.7rem;
}
.finish-card img {
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  width: 100%;
}
.dark-projects {
  color: #fff;
}
.dark-projects p {
  color: #eee;
}
.siding-hero {
  background-position: right;
  background-size: auto 100%;
  background-color: #062c48;
}
.siding-hero .hero-content {
  max-width: 51rem;
  background: linear-gradient(90deg, #062c48 75%, #062c48dd);
  padding: 3rem 2rem 3rem 0;
}
.siding-hero h1 {
  font-size: 3.5rem;
}
.home-hero {
  background-size: cover;
  background-position: center;
}
@media (max-width: 1100px) {
  .benefit-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-overview {
    grid-template-columns: 1.2fr 1fr;
  }
  .finish-card > div {
    padding: 1rem;
  }
  .finish-card {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .benefit-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }
  .product-overview {
    grid-template-columns: 1fr;
  }
  .finish-card {
    grid-template-columns: 1fr 1.3fr;
  }
  .finish-card img {
    min-height: 200px;
  }
  .finish-card h3 {
    font-size: 1.15rem;
  }
  .siding-hero h1 {
    font-size: 2.3rem;
  }
  .siding-hero .hero-content {
    background: #062c48df;
    padding: 1.5rem;
  }
  .siding-hero {
    background-size: cover;
  }
  .center-hero:before {
    background: #f3f5f7;
  }
}
.page-hero {
  background-repeat: no-repeat;
}
.siding-hero {
  background-size: auto 100%;
  background-position: right;
}
.siding-hero .hero-content {
  background: linear-gradient(90deg, #062c48 60%, #062c48ee);
  padding: 3rem 2rem;
}
.space-top {
  margin-top: 2rem;
}
.swatches figure {
  margin: 0;
}
.profile-options {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.profile-options figure {
  margin: 0;
}
.profile-options figcaption {
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.7rem;
}
.layer-list {
  padding-left: 1.5rem;
  margin-top: 2rem;
}
.layer-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid #ddd;
}
.resource-links > a {
  padding: 1.5rem;
  border: 1px solid #ddd;
  justify-content: space-between;
  color: var(--blue);
}
.dark-projects .feature-grid article {
  background: transparent;
  color: white;
  border: 0;
}
.dark-projects .feature-grid h3 {
  font-size: 1.25rem;
}
.dark-projects .feature-number {
  color: white;
}
.dark-projects .feature-grid p {
  color: #eee;
}
.siding-hero .hero-content {
  max-width: 65rem;
  background: linear-gradient(90deg, #062c48 65%, #062c48ee 90%, transparent);
  padding-right: 10rem;
}
@media (max-width: 1100px) {
  .profile-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .siding-hero .hero-content {
    max-width: 48rem;
    padding-right: 4rem;
  }
}
@media (max-width: 600px) {
  .profile-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .siding-hero .hero-content {
    padding: 1.5rem;
    background: #062c48ed;
  }
}
.modern-hero {
  color: #222;
  background-color: #f1f3f4;
  background-size: auto 100%;
  background-position: right;
}
.modern-hero .hero-content {
  background: linear-gradient(90deg, #f4f5f6 75%, #f4f5f6ed 90%, transparent);
  padding: 4rem 8rem 4rem 0;
  max-width: 66rem;
}
.modern-applications .card > a > img {
  aspect-ratio: 380/400;
}
.finish-cards .finish-card > img:first-child {
  width: 100%;
}
.finish-cards .finish-card:has(>img:first-child) {
  grid-template-columns: 1.65fr 1fr;
}
@media (max-width: 600px) {
  .modern-hero .hero-content {
    padding: 1.5rem;
    background: #f5f6f7ed;
  }
  .finish-cards .finish-card:has(>img:first-child) {
    grid-template-columns: 1.4fr 1fr;
  }
}
.component-cards .card > a > img {
  aspect-ratio: 385/314;
}
.component-cards .card h3 {
  font-size: 1.25rem;
}
.core-options {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 3rem;
  align-items: center;
}
.core-options .section-heading {
  margin-bottom: 0;
}
.core-options .section-heading p {
  font-size: 1.1rem;
}
.core-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.modern-hero {
  background-color: #f5f6f7;
}
@media (max-width: 1100px) {
  .core-options {
    grid-template-columns: 1fr;
  }
  .core-options .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .core-options .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.core-cards {
  gap: 1.25rem;
}
.core-cards .card-copy {
  padding: 1rem;
}
.core-cards p {
  font-size: 0.95rem;
}
.resource-links > a {
  display: flex;
  margin-bottom: 0.8rem;
}
@media (max-width: 1100px) {
  .cols-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .cols-5 {
    grid-template-columns: 1fr;
  }
  .core-cards .card-copy {
    padding: 1.5rem;
  }
  .core-cards img {
    width: 70%;
    margin: auto;
  }
}
.application-portraits {
  align-items: center;
}
.application-portraits img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.application-portraits h3 {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  background: #f4f5f6;
}
.core-comparison {
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
}
.core-comparison h2 {
  font-size: 2.45rem;
}
.core-comparison th,
.core-comparison td {
  font-size: 0.95rem;
  padding: 0.75rem;
}
.core-comparison th img {
  width: 130px;
  max-width: none;
}
.project-discussion {
  padding: 5rem 3rem;
  background: linear-gradient(90deg, #edf5f9ee, #edf5f9aa), url('../images/pages/home/product-cleanroom.webp') center / cover;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media (max-width: 1100px) {
  .core-comparison {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .core-comparison h2 {
    font-size: 1.9rem;
  }
  .core-comparison th img {
    max-width: 100%;
    width: 90px;
  }
  .core-comparison th,
  .core-comparison td {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
  .project-discussion {
    padding: 3rem 1.5rem;
  }
}
.split > *,
.grid > *,
.core-options > * {
  min-width: 0;
}
.core-comparison table {
  min-width: 360px;
}
.finish-comparison {
  min-width: 900px;
}
.finish-comparison th > img {
  width: 150px;
  margin: auto;
}
.finish-comparison tbody th {
  text-align: center;
  width: 220px;
}
.before-after-image {
  width: 81.25%;
  margin: auto;
}
.system-parts figure {
  margin: 0;
  text-align: center;
}
.system-parts figcaption {
  font-size: 1rem;
  margin-top: 0.6rem;
}
.renovation-discussion {
  background: linear-gradient(90deg, #edf5f9ee, #edf5f9aa), url('../images/pages/home/renovation.webp') center / cover;
}
@media (max-width: 600px) {
  .before-after-image {
    width: 100%;
  }
  .system-parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.editorial-hero {
  min-height: 50.25rem;
  background: linear-gradient(90deg, #172938 8%, #172938df 38%, #17293800 80%), var(--photo) center / cover no-repeat;
}
.editorial-hero h1 {
  max-width: 52rem;
  font-size: 3.5rem;
}
.editorial-hero p {
  max-width: 40rem;
  color: white;
  font-size: 1.35rem;
  margin: 1.8rem 0;
}
.editorial-hero .button {
  margin-top: 1rem;
}
.cases-solutions .card > a > img {
  aspect-ratio: 512/290;
}
.building-types {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}
.building-types a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 1.5rem 0.5rem;
  font-weight: 600;
  text-align: center;
  gap: 0.5rem;
  min-height: 11rem;
}
.building-types img {
  width: 6.5rem;
  height: 5.3rem;
  object-fit: contain;
}
.building-types a:hover {
  outline: 1px solid var(--red);
}
.project-tabs [role=tablist] {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.project-tabs [role=tab] {
  border: 0;
  background: #eee;
  padding: 1rem 3rem;
  font-weight: 600;
  min-height: 44px;
}
.project-tabs [aria-selected=true] {
  background: var(--red);
  color: white;
}
.photo-cta {
  background: linear-gradient(90deg, #edf2f8 20%, #edf2f8eb 45%, transparent 75%);
  padding: 6rem;
  min-height: 31.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.photo-cta h2 {
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: 2.8rem;
}
.resource-cards .card {
  border: 0;
}
.resource-cards h3 {
  font-size: 1.15rem;
}
@media (max-width: 1100px) {
  .building-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .photo-cta {
    padding: 3rem;
  }
  .photo-cta h2 {
    max-width: 30rem;
  }
  .editorial-hero {
    min-height: 550px;
  }
}
@media (max-width: 600px) {
  .editorial-hero {
    min-height: 530px;
    background-position: 65% center;
  }
  .editorial-hero h1 {
    font-size: 2.3rem;
  }
  .editorial-hero p {
    font-size: 1.1rem;
  }
  .building-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .building-types a {
    min-height: 10rem;
    font-size: 0.9rem;
  }
  .project-tabs [role=tab] {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  .photo-cta {
    padding: 2rem;
    min-height: 390px;
    background: linear-gradient(90deg, #edf2f8f5, #edf2f8ad), var(--photo) center / cover;
  }
  .photo-cta h2 {
    font-size: 1.9rem;
  }
  .project-tabs .project-grid {
    grid-template-columns: 1fr;
  }
}
.header-controls {
  display: flex;
  align-items: center;
}
.header-controls .button {
  padding: 9px 25px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
}
.header-controls .button::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #c2c2c2;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.header-controls .button img {
  width: 15px;
  flex-shrink: 0;
}
.header-language {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-language > img {
  width: 22px;
  flex-shrink: 0;
  margin-right: 7px;
}
.header-language .header-language-text {
  font-size: 18px;
  transition: all 0.5s;
  color: #666666;
}
.header-language:hover .header-language-text {
  color: var(--main-color);
}
.home-distribution {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.home-distribution > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.home-distribution .flexs {
  display: flex;
  align-items: center;
  padding-bottom: 26px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.home-distribution .flexs .infos .tags {
  font-family: Poppins, Poppins;
  font-weight: 600;
  font-size: 16px;
  color: #999999;
  line-height: 1.4375;
  margin-bottom: 8px;
}
.home-distribution .flexs .infos .tits {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 0;
}
.home-distribution .flexs > img {
  flex-shrink: 0;
  width: 80px;
  margin-left: 30px;
}
.home-products-card .flexs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.home-products-card .flexs .icons {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  background: var(--main-color);
}
.home-products-card .flexs .icons img {
  width: 70%;
}
.home-products-card .flexs .infos p {
  margin-bottom: 0;
  margin-top: 10px;
}
.home-products-card .group-lists {
  display: flex;
  gap: 0 22px;
}
.home-products-card .group-lists .items {
  display: flex;
  align-items: center;
}
.home-products-card .group-lists .items .icon {
  width: 46px;
  flex-shrink: 0;
}
.home-products-card .group-lists .items .texts {
  font-family: Poppins, Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 1.375;
  max-width: 140px;
}
.home-products-card .text-link {
  padding-top: 30px;
  display: flex;
  align-items: center;
}
.home-products-card .text-link svg {
  width: 16px;
}
.home-products .card {
  position: relative;
  z-index: 1;
}
.home-products .card > img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25.641025%;
}
.home-surface {
  position: relative;
  z-index: 1;
}
.home-surface > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  object-fit: cover;
}
.home-surface .material-groups .titles {
  display: flex;
  align-items: center;
}
.home-surface .material-groups .titles img {
  width: 36px;
  flex-shrink: 0;
  margin-right: 15px;
}
.home-soluiton .card-copy {
  position: relative;
  z-index: 1;
  padding: 15px 24px 24px;
}
.home-soluiton .card-copy .icons {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  left: 27px;
  top: 0;
  transform: translateY(-25%);
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-soluiton .card-copy .icons img {
  width: 60%;
}
.home-soluiton .card-copy .tits {
  padding-left: 80px;
}
.home-soluiton .card {
  border-radius: 10px;
}
.home-soluiton .card .text-link {
  border-top: 1px solid #ddd;
}
.home-soluiton .card > a {
  overflow: hidden;
}
.home-soluiton .card > a > img {
  transition: all 0.5s;
}
.home-soluiton .card:hover > a > img {
  transform: scale(1.06);
}
.home-wholesale .feature-grid article {
  padding: 25px 20px;
}
.home-wholesale .contents {
  display: flex;
  align-items: flex-start;
}
.home-wholesale .infos {
  padding-right: 20px;
}
.home-wholesale .infos .tits {
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 15px;
}
.home-wholesale .infos p {
  line-height: 1.4;
}
.home-wholesale .icons {
  width: 54px;
  flex-shrink: 0;
}
.home-wholesale .icons img {
  width: 100%;
  height: auto;
}
.home-choose {
  position: relative;
  z-index: 1;
}
.home-choose > img {
  position: absolute;
  height: 100%;
  width: auto;
  left: 0;
  top: 0;
  z-index: -1;
}
.home-choose-list .items {
  display: flex;
}
.home-choose-list .items .icons {
  width: 42px;
  flex-shrink: 0;
}
.home-choose-list .items .icons img {
  width: 100%;
  height: auto;
}
.home-choose-list .items .tits {
  font-weight: 500;
  font-size: 18px;
  color: #121212;
  line-height: 1.5555555;
}
.home-choose .factory-grid figcaption {
  font-size: 18px;
}
.home-choose .factory-grid {
  cursor: pointer;
}
.home-choose .factory-grid .imgs {
  position: relative;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}
.home-choose .factory-grid .img {
  transition: all 0.5s;
}
.home-choose .factory-grid .video {
  width: 34px;
  height: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.home-choose .factory-grid figcaption {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 6px;
}
.home-choose .factory-grid figcaption::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--main-color);
  flex-shrink: 0;
  display: block;
  margin-top: 9.5px;
  margin-right: 5px;
}
.home-choose .factory-grid figure:hover .img {
  transform: scale(1.05);
}
.project-grids .imgs {
  width: 100%;
}
.project-grids .tits {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  margin-bottom: 6px;
}
.project-grids .tits svg {
  width: 20px;
  flex-shrink: 0;
  margin-right: 5px;
  margin-top: 2px;
}
.project-grids .tits .tit {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}
.project-grids .tits,
.project-grids .texts {
  padding: 0 10px;
}
.home-project-swiper {
  position: relative;
  z-index: 1;
}
.home-project-arrow {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.mod-prev,
.mod-next {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #666666;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.mod-prev svg,
.mod-next svg {
  width: 55%;
}
.mod-prev svg path,
.mod-next svg path {
  fill: #fff;
}
.mod-prev {
  transform: rotate(180deg);
}
.mod-prev:hover,
.mod-next:hover {
  background: var(--main-color);
}
.home-blog {
  position: relative;
  z-index: 1;
}
.home-blog > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.home-blog .blog-mini article {
  border-bottom: 2px dashed #ddd;
  padding-bottom: 20px;
}
.home-blog .blog-mini article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.img_box {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: all 0.5s;
}
.product-systems-flex {
  display: flex;
  margin: 0 -15px;
  gap: 30px 0;
}
.product-systems-flex .items {
  width: 50%;
  padding: 0 15px;
}
.product-systems-flex .contents {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.product-systems-flex .img_box {
  padding-top: 64.102564%;
}
.product-systems-flex .conts {
  position: absolute;
  width: 100%;
  padding: 0 36px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.product-systems-flex .tits {
  font-weight: bold;
  font-size: 26px;
  color: #FFFFFF;
  line-height: 1.384615;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.product-systems-flex .texts {
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.625;
  margin-top: 7px;
}
.product-systems-flex .list01 {
  margin-top: 25px;
  list-style: none;
  padding: 0;
}
.product-systems-flex .list01 li {
  list-style: none;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.45;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  padding-left: 16px;
  margin-bottom: 10px;
}
.product-systems-flex .list01 li::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0;
  top: 7px;
  background: var(--main-color);
}
.product-systems-flex .list01 li:last-child {
  margin-bottom: 0;
}
.product-systems-flex .list02 {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 30px 38px;
  margin-top: 48px;
  margin-bottom: 35px;
}
.product-systems-flex .list02 li {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-systems-flex .list02 li img {
  width: 40px;
  margin-bottom: 5px;
}
.product-systems-flex .list02 li p {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 2.1;
}
.product-compare .section-heading p {
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
  font-weight: 600;
  font-size: 20px;
  color: #2F5192;
  line-height: 1.6;
  text-align: center;
}
.product-compare .comparison-table td,
.product-compare .comparison-table th {
  text-align: center;
}
.product-compare .comparison-table td {
  background: #fff;
}
.product-compare .comparison-table table {
  border: 1px solid #dedede !important;
}
.product-compare .comparison-table td,
.product-compare .comparison-table th {
  border-right: none;
  border-left: none;
}
.product-compare {
  position: relative;
  z-index: 1;
}
.product-compare > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.product-compare .comparison-table td img,
.product-compare .comparison-table th img {
  width: 22px;
  margin-left: auto;
  margin-right: auto;
}
.product-explore .tits {
  display: flex;
  align-items: flex-start;
}
.product-explore .tits img {
  width: 36px;
  flex-shrink: 0;
  height: auto;
  margin-right: 11px;
}
.product-explore .tits .tits {
  font-weight: bold;
  font-size: 24px;
  color: #121212;
  line-height: 1.375;
}
.product-supply {
  background: #fff;
}
.product-supply .section-heading p {
  width: 1223px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  line-height: 1.6;
  text-align: center;
}
.product-choose .section-heading p {
  width: 1223px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 1.6;
  text-align: center;
}
.product-choose-flexs {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -18px 0;
  gap: 36px 0;
}
.product-choose-flexs .items {
  width: 16.666666%;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}
.product-choose-flexs .items::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background: #fff;
  opacity: 0.8;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product-choose-flexs .conts {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  text-align: center;
}
.product-choose-flexs .conts img {
  width: 60px;
  flex-shrink: 0;
  margin-right: 15px;
}
.product-choose {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
.product-choose > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.product-form .split {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
}
.product-form .section-heading p {
  font-weight: 600;
  font-size: 20px;
  color: #2F5192;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 26px;
}
.product-form .link-group {
  margin-top: 58px;
  display: flex;
  gap: 30px 30px;
}
.product-form .link-group .links {
  background: #FFFFFF;
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 18px;
  color: var(--main-color);
  line-height: 25px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.product-form .link-group .links:hover {
  color: #fff;
  background-color: var(--main-color);
}
.product-form-box {
  background-color: #fff;
  border-radius: 10px 10px 10px 10px;
  padding: 50px 60px;
}
.product-form-box .logos {
  text-align: center;
  margin-bottom: 45px;
}
.product-form-box .logos img {
  margin-left: auto;
  margin-right: auto;
}
.product-form-box .flexs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  gap: 24px 0;
}
.product-form-box .items {
  width: 50%;
  padding: 0 9px;
}
.product-form-box .items select,
.product-form-box .items input {
  width: 100%;
  height: 43px;
  padding: 0 15px;
}
.product-form-box .items.block {
  width: 100%;
}
.product-cta {
  background: var(--main-color);
}
.product-cta .flexs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-cta .section-heading h2 {
  font-size: 36px;
}
.product-cta .section-heading p {
  font-size: 18px;
}
.product-cta .section-heading {
  width: 48%;
  text-align: left;
}
.product-cta .rights {
  width: 52%;
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
}
.product-cta .rights .button {
  background-color: #fff;
  color: var(--main-color);
  width: 48%;
  font-size: 20px;
  border-radius: 4px;
  border: none;
}
.product-cta .rights .button:hover {
  background: var(--main-color2);
  color: #fff;
}
.clearroom-components .card {
  display: flex;
  flex-direction: column;
}
.clearroom-components .card-copy {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.clearroom-components .card > a {
  overflow: hidden;
}
.clearroom-components .card > a img {
  transition: all 0.5s;
}
.clearroom-components .card:hover > a img {
  transform: scale(1.05);
}
.clearroom-components .text-link {
  color: var(--main-color2);
  display: flex;
  align-items: center;
  transition: all 0.5;
  text-decoration: none !important;
  margin-top: auto;
}
.clearroom-components .text-link p {
  color: var(--main-color2);
  transition: all 0.5s;
  margin: 0;
}
.clearroom-components .text-link svg {
  width: 16px;
  transition: all 0.5s;
}
.clearroom-components .text-link svg path {
  transition: all 0.5s;
}
.clearroom-components .text-link:hover p {
  color: var(--main-color);
}
.clearroom-components .text-link:hover svg {
  transform: translateX(5px);
}
.clearroom-components .text-link:hover svg path {
  fill: var(--main-color);
}
.clearroom-panel {
  padding-top: 0;
}
.clearroom-panel .capabilities .items {
  display: flex;
  align-items: center;
  background: #F3F6FB;
  border-radius: 10px 10px 10px 10px;
  border: none;
  font-family: Poppins, Poppins;
  font-weight: 600;
  font-size: 18px;
  color: #121212;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding: 30px 30px;
}
.clearroom-panel .capabilities .items img {
  width: 38px;
  flex-shrink: 0;
  margin-right: 20px;
}
.clearroom-core {
  padding-top: 0;
}
.clearroom-core .section-heading p {
  font-weight: 600;
  font-size: 20px;
  color: #2F5192;
  line-height: 1.6;
}
.clearroom-core .clearroom-core-list {
  gap: 17px 17px;
}
.dark-projects .wyn-btns {
  display: flex;
}
.band.shaded.panel-method-comparison {
  min-height: 875px;
  padding: 83px 0 101px;
  background: #f3f4f6;
}
.panel-method-comparison > .wrap {
  width: min(1400px, 90%);
  max-width: none;
}
.panel-method-comparison .section-heading {
  margin-bottom: 55px;
}
.panel-method-comparison .section-heading h2 {
  color: #111;
  font-size: 46px;
  line-height: 1.3;
}
.panel-method-table {
  overflow-x: auto;
}
.panel-method-table table {
  min-width: 900px;
  table-layout: fixed;
  background: #fff;
}
.panel-method-table th,
.panel-method-table td {
  height: 48px;
  padding: 0 20px;
  border: 1px solid #e8e8e8;
  text-align: center;
  vertical-align: middle;
}
.panel-method-table thead th {
  height: 56px;
  background: #fff;
  color: #111;
  font-size: 22px;
  font-weight: 600;
}
.panel-method-table tbody td {
  height: 47.75px;
  color: #666;
  font-size: 17px;
  line-height: 1.35;
}
.panel-method-table tbody td:first-child {
  color: #111;
  font-weight: 600;
}
.panel-method-note {
  margin: 30px 0 0;
  color: #2f5192;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.panel-method-actions {
  margin-top: 42px;
}
.panel-method-actions .button {
  width: 315px;
  min-height: 38px;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.2;
  transform: translateX(7px);
}
@media (max-width: 768px) {
  .band.shaded.panel-method-comparison {
    min-height: 0;
    padding: 54px 0 60px;
  }
  .panel-method-comparison > .wrap {
    width: 90%;
  }
  .panel-method-comparison .section-heading {
    margin-bottom: 34px;
  }
  .panel-method-comparison .section-heading h2 {
    font-size: 30px;
  }
  .panel-method-table th,
  .panel-method-table td {
    padding: 0 14px;
  }
  .panel-method-note {
    margin-top: 24px;
    font-size: 16px;
  }
  .panel-method-actions {
    margin-top: 28px;
  }
  .panel-method-actions .button {
    width: min(315px, 100%);
    transform: none;
  }
}
.product-cta.cta-blue-theme {
  background: var(--main-color2);
}
.product-cta.cta-blue-theme .rights .button {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.product-cta.cta-blue-theme .rights .button:hover {
  background: #fff;
  color: var(--main-color2);
}
.support-need .card-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.support-need .card-copy .info .tits {
  transition: all 0.5s;
}
.support-need .card-copy .info p {
  margin-bottom: 36px;
  margin-top: 10px;
}
.support-need .card-copy .mores {
  width: 40px;
}
.support-need .card-copy .mores img {
  width: 100%;
  transition: all 0.5s;
}
.support-need .card-copy:hover .info .tits {
  color: var(--main-color);
}
.support-need .card-copy:hover .mores img {
  transform: translateX(6px);
}
.support-need .card-copy:hover .bottoms .icons svg path {
  fill: var(--main-color);
}
.support-need .bottoms {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.support-need .bottoms .icons {
  width: 68px;
  font-size: 0;
}
.support-need .bottoms .icons svg {
  width: 100%;
}
.support-need .bottoms .icons svg path {
  transition: all 0.5s;
  fill: #C4C4C4;
}
.support-product .technical-product-cards .tits {
  font-size: 26px;
}
.support-product .technical-product-cards p {
  margin-top: 10px;
  margin-bottom: 25px;
}
.support-product .technical-product-cards .button {
  font-size: 16px;
  font-weight: 600;
}
.support-product .btn-groups {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.support-product .btn-groups .button {
  background-color: var(--main-color2);
  border: none !important;
  width: 240px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all 0.5s;
}
.support-product .btn-groups .button svg {
  width: 18px;
}
.support-product .btn-groups .button:hover {
  background-color: var(--main-color);
}
.support-download .download-card {
  min-height: auto;
  border-radius: 10px;
  overflow: hidden;
  border-top: 5px solid var(--main-color);
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  padding: 30px 24px;
  justify-content: flex-start;
}
/* Technical specifications + FAQ: matched to the supplied desktop reference. */
.technical-specifications {
  padding: 7rem 0 6.2rem;
  background: #fff;
}
.technical-specifications .spec-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.994fr);
  gap: 2.25rem;
  align-items: start;
}
.technical-specifications .spec-faq-grid > * {
  min-width: 0;
}
.technical-specifications .section-heading {
  margin-bottom: 3.375rem;
}
.technical-specifications .section-heading h2 {
  color: #121212;
  font-size: 2.875rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.technical-specifications .table-scroll {
  overflow-x: auto;
}
.technical-specifications table {
  min-width: 660px;
  table-layout: fixed;
  background: #eef4fa;
  border-bottom: 1px solid #c9c9c9;
}
.technical-specifications th,
.technical-specifications td {
  height: 48px;
  padding: 0 1rem;
  border: 0;
  border-bottom: 1px solid #dce4eb;
  background: transparent;
  vertical-align: middle;
  line-height: 1.35;
}
.technical-specifications th + th,
.technical-specifications th + td {
  border-left: 1px solid #dce4eb;
}
.technical-specifications thead th {
  height: 49px;
  color: #171717;
  font-size: 1.25rem;
  font-weight: 600;
}
.technical-specifications tbody th {
  color: #171717;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}
.technical-specifications tbody td {
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}
.technical-specifications tbody tr:nth-child(3) > * {
  border-bottom-color: transparent;
}
.technical-specifications tbody tr:last-child > * {
  border-bottom: 0;
}
.technical-specifications .spec-download-row {
  margin-top: 2rem;
}
.technical-specifications .spec-download {
  width: 19.5rem;
  min-height: 3.15rem;
  justify-content: space-between;
  padding: 0.65rem 1.35rem 0.65rem 1.45rem;
  border-color: #2f5aa2;
  border-radius: 2px;
  color: #2f5aa2;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
.technical-specifications .spec-download:hover {
  background: #2f5aa2;
  border-color: #2f5aa2;
  color: #fff;
}
.technical-specifications .spec-download svg {
  width: 1.55rem;
  height: 1.55rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.technical-specifications .faq-list {
  border-top: 1px solid #d7d7d7;
}
.technical-specifications .faq-list details {
  padding: 0;
  border-bottom: 1px solid #d7d7d7;
}
.technical-specifications .faq-list summary {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  padding: 0.9rem 4.4rem 0.9rem 2.45rem;
  color: #161616;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 600;
  list-style: none;
}
.technical-specifications .faq-list summary::-webkit-details-marker {
  display: none;
}
.technical-specifications .faq-list summary::after {
  content: "+";
  position: absolute;
  right: 3.15rem;
  top: 50%;
  color: #2f5aa2;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-53%);
}
.technical-specifications .faq-list details[open] summary::after {
  content: "\2212";
}
.technical-specifications .faq-list details p {
  max-width: 43rem;
  padding: 0 4.4rem 1.25rem 2.45rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .technical-specifications {
    padding: 5rem 0;
  }
  .technical-specifications .spec-faq-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
}
@media (max-width: 600px) {
  .technical-specifications {
    padding: 4rem 0;
  }
  .technical-specifications .section-heading {
    margin-bottom: 2rem;
  }
  .technical-specifications .section-heading h2 {
    font-size: 2rem;
    letter-spacing: -0.025em;
  }
  .technical-specifications table {
    min-width: 620px;
  }
  .technical-specifications .spec-download {
    width: min(19.5rem, 100%);
  }
  .technical-specifications .faq-list summary {
    min-height: 62px;
    padding-right: 3.25rem;
    padding-left: 1rem;
    font-size: 1rem;
  }
  .technical-specifications .faq-list summary::after {
    right: 1rem;
  }
  .technical-specifications .faq-list details p {
    padding-right: 3rem;
    padding-left: 1rem;
  }
}
#faq .product-faq-item {
  border-bottom: 1px solid #ddd;
}
#faq .product-faq-trigger {
  display: flex;
  width: 100%;
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: #222;
  font-weight: 600;
  text-align: left;
}
#faq .product-faq-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}
#faq .product-faq-icon::before,
#faq .product-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}
#faq .product-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#faq .product-faq-trigger[aria-expanded="true"] .product-faq-icon::after {
  opacity: 0;
}
#faq .product-faq-answer {
  display: none;
  padding: 0 2.5rem 1.25rem 0;
}
#faq .product-faq-item:first-child .product-faq-answer {
  display: block;
}
#faq .product-faq-answer p {
  margin: 0;
}
.mm-panel .small-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #2F5192;
  line-height: 1.444444;
}
.mm-panel .small-title i {
  font-size: 30px;
  color: #2F5192;
  line-height: 1.2;
  margin-right: 10px;
}
.mm-where {
  background: linear-gradient(0deg, #F3F6FB 0%, #FFFFFF 100%) !important;
}
.mm-where .mm-where-item {
  padding: 60px 50px 50px;
  min-height: 260px;
  transition: all 0.5s;
}
.mm-where .tit-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.mm-where .tit-flex .tits {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  transition: all 0.5s;
}
.mm-where .tit-flex .tits::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 4px;
  background: var(--main-color2);
  left: 0;
  top: -12px;
  transition: all 0.5s;
  opacity: 0;
}
.mm-where .tit-flex img {
  width: 52px;
  flex-shrink: 0;
  margin-left: 20px;
}
.mm-where .mm-where-item:hover {
  background: #F3F6FB;
  border-color: #F3F6FB;
}
.mm-where .mm-where-item:hover .tit-flex .tits {
  color: var(--main-color2);
}
.mm-where .mm-where-item:hover .tit-flex .tits::after {
  opacity: 1;
}
.smooth-titles {
  font-weight: bold;
  font-size: 30px;
  color: #121212;
  line-height: 1.43333;
  margin-top: 60px;
}
.mm-smooth-flexs {
  display: flex;
  margin: 36px -20px 0;
}
.mm-smooth-items:last-child::after {
  display: none;
}
.mm-smooth-items {
  width: 42.8571428%;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.mm-smooth-items .tits {
  font-weight: bold;
  font-size: 24px;
  color: #121212;
  line-height: 1.375;
}
.mm-smooth-items::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 130px;
  background-color: #B4B5B5;
  right: 0;
  bottom: 5px;
}
.mm-smooth-items .profile-options {
  display: flex;
}
.mm-smooth-items .profile-options figure {
  width: 33.333333%;
}
.mm-smooth-items .profile-options figure img {
  width: 100%;
}
.mm-smooth-items.sm-items {
  width: 15.2%;
}
.mm-smooth-items.sm-items .profile-options {
  display: flex;
}
.mm-smooth-items.sm-items .profile-options figure {
  width: 100%;
}
.mm-smooth-items.sm-items .profile-options figure img {
  width: 100%;
}
.profile-options figcaption {
  font-weight: bold;
  font-size: 18px;
  color: #121212;
  line-height: 25px;
}
.wood-app {
  padding-bottom: 0 !important;
}
.wood-app .wood-app-flex {
  display: flex;
}
.wood-app .wood-app-flex .items {
  width: 50%;
  position: relative;
}
.wood-app .wood-app-flex .items .img_box {
  padding-top: 58.3333333%;
}
.wood-app .wood-app-flex .items .img_box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 54.8214285%;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.wood-app .wood-app-flex .items .contents {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 50px 40px;
  z-index: 2;
}
.wood-app .wood-app-flex .items .contents .tits {
  font-weight: bold;
  font-size: 26px;
  color: #FFFFFF;
  line-height: 36px;
}
.wood-app .wood-app-flex .items .contents .texts {
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 28px;
  margin-top: 4px;
}
.wood-choose.dark-projects .feature-grid article {
  padding: 0 !important;
  padding-left: 25px !important;
  position: relative;
  z-index: 1;
}
.wood-choose.dark-projects .feature-grid article::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 8px;
}
.wood-choose.dark-projects .feature-grid p {
  font-size: 16px;
}
.wood-choose {
  position: relative;
  z-index: 1;
}
.wood-choose > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.wood-sys .split {
  grid-template-columns: 0.8fr 1.2fr;
}
.wood-sys .layer-list {
  list-style-type: none;
  padding-left: 0;
}
.wood-sys .layer-list li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #ddd;
  transition: all 0.5s;
}
.wood-sys .layer-list li::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
  transition: all 0.5s;
}
.wood-sys .layer-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.5s;
  flex-shrink: 0;
  margin-right: 12px;
}
.wood-sys .layer-list li:hover {
  border-color: var(--main-color2);
}
.wood-sys .layer-list li:hover::after {
  background: var(--main-color2);
}
.wood-sys .layer-list li:hover span {
  background: var(--main-color2);
}
.wood-band {
  padding-top: 6rem !important;
}
.wood-explore {
  padding-top: 0;
}
.wood-explore .grid {
  gap: 0;
}
.wood-explore .feature-grid .wood-explore-link {
  display: block;
  transition: all 0.5s;
}
.wood-explore .feature-grid .wood-explore-link {
  background: #F3F4F6;
  border-radius: 0;
  border-color: #fff;
  padding: 50px 50px;
  border: 1px solid #fff;
}
.wood-explore .feature-grid .wood-explore-link span {
  display: inline-block;
  z-index: 1;
  display: flex;
  align-items: center;
  color: var(--main-color2);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.5s;
}
.wood-explore .feature-grid .wood-explore-link span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--main-color2);
  transform: translateY(-2px);
  margin-right: 10px;
  transition: all 0.5s;
}
.wood-explore .feature-grid .wood-explore-link .tits {
  font-weight: bold;
  font-size: 22px;
  color: #121212;
  line-height: 1.40909;
  transition: all 0.5s;
  margin-bottom: 24px;
}
.wood-explore .feature-grid .wood-explore-link .texts {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--main-color2);
  font-weight: bold;
  transition: all 0.5s;
}
.wood-explore .feature-grid .wood-explore-link .texts svg {
  width: 22px;
  margin-left: 5px;
  transition: all 0.5s;
}
.wood-explore .feature-grid .wood-explore-link .texts svg path {
  transition: all 0.5s;
  fill: var(--main-color2);
}
.wood-explore .feature-grid .wood-explore-link:hover {
  background: var(--main-color2);
}
.wood-explore .feature-grid .wood-explore-link:hover span::before {
  background: #fff;
}
.wood-explore .feature-grid .wood-explore-link:hover span,
.wood-explore .feature-grid .wood-explore-link:hover .tits {
  color: #fff;
}
.wood-explore .feature-grid .wood-explore-link:hover .texts {
  color: #fff;
}
.wood-explore .feature-grid .wood-explore-link:hover .texts svg {
  transform: translateX(5px);
}
.wood-explore .feature-grid .wood-explore-link:hover .texts svg path {
  fill: #fff;
}
.wood-looking {
  position: relative;
  z-index: 1;
}
.wood-looking .img_box {
  padding-top: 35.1041666%;
}
.wood-looking .wood-looking-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.wood-looking .section-heading p {
  width: 583px;
  max-width: 100%;
  font-weight: 600;
  font-size: 20px;
  color: #2F5192;
  line-height: 1.6;
  margin-top: 25px;
}
.ms-tech,
#specifications {
  position: relative;
  z-index: 1;
}
.ms-tech > img,
#specifications > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  object-fit: cover;
}
.panel-options-arrow {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hmp-product-projects {
  padding-top: 0;
}
/* Hand-made panel application cards: every card shares the same hover state. */
.applications {
  background: linear-gradient(#f3f6fb, #fff);
  padding: 5.625rem 0 6.875rem;
  min-height: 44.8125rem;
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.3125rem;
  margin-top: 3.4rem;
}
.application-grid article {
  background: white;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.application-copy {
  position: relative;
  min-height: 9.375rem;
  padding: 3.1rem 1.375rem 1.1rem;
}
.application-copy::before {
  content: '';
  width: 1.5rem;
  height: 0.25rem;
  position: absolute;
  top: 2rem;
  left: 1.375rem;
  background: var(--blue);
}
.application-copy h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.application-icon {
  position: absolute;
  right: 1.3rem;
  top: 3.5rem;
  width: 3rem;
  height: 3rem;
  fill: none;
  stroke: #777;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.application-grid img {
  width: 100%;
  height: auto;
  margin-top: auto;
  aspect-ratio: 360/241;
  object-fit: cover;
}
.application-grid .laboratory img {
  aspect-ratio: 360/196;
}
.hm-grid {
  align-items: start;
}
.hm-card {
  display: flex;
  flex-direction: column;
  height: 388px;
  min-width: 0;
  overflow: hidden;
  outline: none;
}
.hm-grid img {
  display: block;
  transition: all 0.5 !important;
}
.hm-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(47, 81, 146, 0.35);
}
.hm-card .hm-copy {
  flex-shrink: 0;
}
.hm-copy {
  box-sizing: border-box;
  /* height: 9.375rem; */
  /* min-height: 9.375rem; */
  overflow: hidden;
  transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.24s ease;
}
.hm-copy h3,
.hm-icon {
  transition: color 0.24s ease, stroke 0.24s ease, top 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.hm-list {
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.35rem);
  font-size: 1rem;
  line-height: 1.8;
  transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, visibility 0.2s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), margin 0.36s ease;
}
.hm-list li {
  position: relative;
  padding-left: 1.1rem;
}
.hm-list li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border: 2px solid #5b78ae;
  border-radius: 50%;
  transform: translateY(-50%);
}
.hm-grid img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0;
  aspect-ratio: 360 / 241;
  object-fit: cover;
}
/* .hm-card:is(:hover, :focus, :focus-within) .hm-copy {
    height: 12.2rem;
} */
.hm-card:is(:hover, :focus, :focus-within) .hm-copy h3,
.hm-card:is(:hover, :focus, :focus-within) .hm-icon {
  color: var(--blue);
  stroke: var(--blue);
}
.hm-card:is(:hover, :focus, :focus-within) .hm-list {
  max-height: 5.7rem;
  margin-top: 0.6rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .hm-card {
    height: 25rem;
  }
  .hm-copy {
    height: 8.8rem;
    min-height: 8.8rem;
  }
  .hm-card:is(:hover, :focus, :focus-within) .hm-copy {
    height: 11.2rem;
  }
}
@media (max-width: 600px) {
  .hm-card {
    height: auto;
  }
  .hm-copy {
    height: 7.5rem;
    min-height: 7.5rem;
  }
  .hm-card:is(:hover, :focus, :focus-within) .hm-copy {
    height: 10.9rem;
  }
  .hm-list {
    font-size: 0.875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hm-copy,
  .hm-copy h3,
  .hm-icon,
  .hm-list {
    transition: none;
  }
}
.wyn-who .section-heading h2 {
  font-size: 46px;
  color: #121212;
}
.wyn-who .about-intro .section-heading > p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #121212;
}
.wyn-who .about-intro p {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
}
.wyn-who .about-intro p span {
  color: #AD0C14;
  font-size: 18px;
  font-weight: 600;
}
.wyn-who .about-intro .company-stats > div {
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #F6F6F6;
  display: flex;
  justify-content: space-between;
}
.wyn-who .about-intro .company-stats div img {
  height: 50px;
}
.wyn-who .about-intro .company-stats strong {
  font-weight: 600;
  font-size: 40px;
  color: #AD0C14;
  line-height: 28px;
}
.wyn-who .about-intro .company-stats > div:last-of-type strong {
  font-weight: 600;
  font-size: 30px;
  color: #121212;
  line-height: 40px;
  margin-top: -10px;
}
.wyn-who .about-intro .company-stats span {
  font-weight: 500;
  font-size: 16px;
  color: #121212;
}
.wyn-chain .section-heading p {
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  line-height: 32px;
}
.wyn-chain .production-chain img {
  aspect-ratio: 28/19;
}
.wyn-chain .production-chain figure:not(:last-child):after {
  content: url(/assets/images/wyn2/about-arrow-right.png);
  top: 40%;
  right: -13%;
}
.wyn-distribution {
  background: url(../images/wyn2/about-distribution-bg.png) center / cover;
}
.wyn-distribution .feature-grid h3 {
  font-weight: 600;
  font-size: 22px;
  color: #121212;
}
.wyn-distribution .feature-grid h3:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 8px;
  background-color: #AD0C14;
  margin-right: 10px;
}
.wyn-distribution .feature-grid p {
  margin-left: 17px;
}
.wyn-distribution .feature-grid .wyn-d-desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.wyn-distribution .feature-grid .wyn-d-desc img {
  height: 80px;
  /* margin: 10px; */
  padding: 10px;
  background-color: rgba(239, 0, 12, 0.1);
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.wyn-global .section-heading p {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
}
.wyn-global .market-section li::marker {
  content: "";
}
.wyn-global .market-section li::before {
  color: var(--blue);
  content: "●";
  display: inline-block;
  margin-right: 10px;
}
.wyn-global .section-heading {
  margin-left: 20px;
}
.wyn-global .market-section li {
  font-weight: 600;
  font-size: 20px;
  color: #333333;
}
.wyn-a-b .feature-grid article {
  display: flex;
  justify-content: space-between;
}
.wyn-a-b .feature-grid .feature-number {
  font-size: 40px;
  font-weight: bold;
}
.wyn-a-b .feature-grid article h3 {
  font-weight: bold;
  font-size: 20px;
  color: #121212;
}
.wyn-a-b .feature-grid article div {
  width: 60%;
}
.wyn-a-b .feature-grid article {
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 10px 10px 10px 10px;
}
.wyn-a-b .feature-grid .feature-number::after {
  content: '';
  display: inline-block;
  width: 100px;
  height: 1px;
  background-color: #b8b8b8;
  margin-left: 10px;
  margin-bottom: 13px;
}
.wyn-cta {
  padding: 120px 0;
}
.wyn-cta {
  background: url(../images/wyn2/about-why-bg.png) center / cover;
}
.wyn-cta h2 {
  font-size: 46px;
}
.wyn-cta p {
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
}
.wyn-cta .button-row {
  display: flex;
}
.wyn-cta .button-row .button {
  width: 300px;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.wyn-cta .button-row .light {
  color: #AD0C14;
}
.wyn-who .product-systems {
  margin-top: 100px;
}
.wyn-who {
  padding-bottom: 20px;
}
.wyn-a-b .feature-grid article {
  padding: 36px 25px;
}
.ce-why {
  padding-bottom: 10px;
}
.ce-why .icons {
  width: 54px;
  margin-bottom: 25px;
}
.ce-why .feature-grid article {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 8px 8px 8px 8px;
}
.ce-typical .section-heading p {
  font-weight: 600;
  font-size: 20px;
  color: #2F5192;
  line-height: 1.6;
}
.ce-choose {
  padding-bottom: 0;
}
.ce-typical-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 50px -10px 0;
}
.ce-typcal-item {
  width: 25%;
  padding: 0 10px;
  aspect-ratio: 385/480;
  display: flex;
  align-items: center;
}
.ce-typical-content {
  height: 80%;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}
.ce-typical-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ce-typical-content .tits {
  position: absolute;
  width: calc(100% - 32px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  background: #fff;
  border-radius: 4px 4px 4px 4px;
  padding: 11px 24px;
  font-weight: bold;
  font-size: 20px;
  color: #121212;
  line-height: 1.4;
  transition: all 0.5s;
  text-align: center;
}
.ce-typical-content:hover {
  height: 100%;
}
.ce-typical-content:hover .tits {
  background: var(--main-color2);
  color: #fff;
}
.ce-choose-tabel img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.ce-choose-tabel th,
.ce-choose-tabel td {
  border: none;
  font-size: 16px;
  text-align: center;
  background: transparent;
}
.ce-choose-tabel th,
.ce-choose-tabel thead th {
  font-size: 20px;
}
.ce-choose-tabel thead th {
  padding-bottom: 25px;
}
.ce-choose-tabel tbody tr th:first-child {
  text-align: center;
  font-size: 16px;
}
.ce-choose-tabel tr {
  border-bottom: 1px solid #E1E1E1;
  transition: all 0.5s;
}
.ce-choose-tabel tr:hover {
  background: #F3F6FB;
}
.ce-choose-tabel tbody td,
.ce-choose-tabel tbody th {
  padding-top: 0 !important;
}
.ce-choose-tabel th img {
  width: 170px;
}
.none-pb {
  padding-bottom: 0;
}
.ce-resource .flexs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ce-resource .flexs .lefts {
  width: 33.9375%;
}
.ce-resource .flexs .rights {
  width: 61.1875%;
}
.ce-resource-content {
  position: relative;
  z-index: 1;
}
.ce-resource-content .img_box {
  padding-top: 59.0818363%;
}
.ce-resource-content .contents {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 70px;
}
.ce-resource-content .contents .tits {
  font-weight: bold;
  font-size: 46px;
  color: #121212;
  line-height: 66px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 30px;
}
.ce-resource-content .contents .button {
  background: var(--main-color2);
  border: none !important;
  min-width: 300px;
  cursor: pointer;
}
.ce-resource-content .contents .button:hover {
  background-color: var(--main-color);
}
.er-choose {
  position: relative;
  z-index: 1;
}
.er-choose > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.er-choose .table-box td,
.er-choose .table-box th {
  text-align: center;
  border: none;
}
.er-choose .table-box tr {
  border-bottom: 1px solid #CECECE;
}
.er-choose .table-box img {
  display: inline-block;
}
.er-choose .table-box tr:first-child td {
  font-weight: bold;
  font-size: 20px;
  color: #121212;
  line-height: 28px;
  font-style: normal;
  text-transform: none;
  padding: 20px 0 25px;
}
.er-choose .table-box td {
  font-weight: bold;
  font-size: 16px;
  color: #121212;
  line-height: 23px;
  font-style: normal;
  text-transform: none;
  padding: 10px 0;
}
.er-product .imgs {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16);
}
.er-product .imgs img {
  width: 100%;
}
.er-product figcaption {
  font-weight: 600;
  font-size: 18px;
  color: #121212;
  line-height: 1.8888;
  text-align: center;
}
.er-product .grid {
  gap: 1rem;
}
.er-product .split {
  align-items: flex-start;
}
.er-resource.ce-resource .ce-resource-content .img_box {
  padding-top: 79.74180735%;
}
.er-resource.ce-resource .ce-resource-content .contents {
  top: 15%;
  transform: none;
}
.choice .choice-grid {
  gap: 0 0;
  margin: 50px -20px 40px;
}
.choice .choice-grid article {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.choice .choice-grid article .lines {
  position: absolute;
  right: 0;
  top: 70px;
  transform: translateX(49%);
}
.choice .choice-grid article .lines > img {
  width: 180px;
  right: 0;
  transform: rotate(180deg);
}
.choice .choice-grid article:nth-child(2n) .lines > img {
  transform: rotate(0deg);
}
.choice .choice-grid article:last-child .lines {
  display: none;
}
.mod-banner-btns .button {
  background: #fff;
  border-color: #fff;
  color: var(--main-color);
  text-transform: uppercase;
}
.mod-banner-btns .button:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.mod-banner-blur-theme .button {
  background: #fff;
  border-color: #fff;
  color: var(--main-color2);
  text-transform: uppercase;
}
.mod-banner-blur-theme .button:hover {
  background: var(--main-color2);
  border-color: var(--main-color2);
  color: #fff;
}
.mod-banner-text-black .tits,
.mod-banner-text-black .texts {
  color: #222;
}
.mod-banner {
  position: relative;
  z-index: 1;
  background: none !important;
}
.mod-banner > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.mod-youshi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 40px;
  margin-top: 30px;
}
.mod-youshi .items {
  display: flex;
  align-items: center;
}
.mod-youshi .items .icons {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 15px;
}
.mod-youshi .items .icons img {
  width: 55%;
}
.mod-youshi .items .texts {
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
}
.wyn-help .help-audiences article {
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 10px 10px 10px 10px;
  border: 1px solid rgba(196, 196, 196, 0.43);
  background: url(../images/wyn3/contact-help-bg.webp) center / cover;
}
.wyn-help .help-audiences article div {
  display: flex;
  align-items: center;
}
.wyn-help .help-audiences article div > img {
  width: 30px;
  margin-right: 15px;
}
.wyn-help .help-audiences article h3 {
  font-weight: bold;
  font-size: 24px;
  color: #121212;
  line-height: 33px;
}
.wyn-help .help-audiences article p {
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}
.wyn-help .help-audiences article a {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  height: 45px;
}
.wyn-help-3 {
  background: #FFF;
}
.wyn-help-3 > img {
  border-radius: 10px 10px 10px 10px;
}
.wyn-help-3 hr {
  margin: 15px 0;
  border: none;
  border-top: 2px dashed #ccc;
}
.wyn-help .section-heading p {
  font-weight: 600;
  font-size: 20px;
  color: #333333;
}
.wyn-contact .contact-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.wyn-contact .contact-layout .inquiry-card {
  width: 60%;
}
.wyn-contact .contact-layout .contact-methods {
  width: 37%;
}
.wyn-contact .contact-layout .inquiry-card,
.wyn-contact .contact-layout .contact-methods {
  background: #FFFFFF;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 10px 10px 10px 10px;
  border: 1px solid rgba(196, 196, 196, 0.43);
}
.wyn-contact .contact-layout .inquiry-card h2,
.wyn-contact .contact-layout .contact-methods h2 {
  font-weight: bold;
  font-size: 46px;
  color: #121212;
}
.wyn-contact .contact-methods article {
  border: none;
}
.wyn-contact .contact-methods hr {
  margin: 15px 0;
  border: none;
  border-top: 2px dashed #ccc;
}
.wyn-contact .wyn-method {
  display: flex;
  align-items: flex-start;
}
.wyn-contact .wyn-method .icons {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wyn-contact .wyn-method svg {
  width: 60%;
  /* height: 60px;
    padding: 10px; */
}
.wyn-method {
  margin-bottom: 40px;
}
.wyn-contact .contact-methods article {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.wyn-help .help-audiences article:nth-child(3) {
  background: none;
}
.wyn-follow {
  font-weight: bold;
  font-size: 30px;
  color: #121212;
  line-height: 43px;
  text-align: left;
  margin-bottom: 11px;
}
.wyn-follow-list {
  display: flex;
  gap: 14px;
}
.wyn-follow-links {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.wyn-follow-links svg {
  width: 60%;
}
.wyn-follow-links:hover {
  background-color: var(--main-color2);
}
.band.choice {
  padding-bottom: 6rem;
}
.choice {
  padding: 7rem 0 2rem;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin: 3.3rem 0 3.2rem;
}
.choice-grid article {
  position: relative;
  text-align: center;
  min-width: 0;
}
.choice-grid article > img {
  width: 10.375rem;
  height: 9.75rem;
  object-fit: contain;
  margin: 0 auto 1.1rem;
}
.choice-grid h3 {
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0;
}
.choice-grid p {
  max-width: 17.5rem;
  margin: 0.625rem auto 0;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #444;
}
.choice-grid article:nth-child(2)::after {
  transform: scaleY(-1);
}
.choice .choice-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1100px) {
  .choice {
    padding: 70px 0 30px;
  }
  .choice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin: 36px 0;
  }
  .choice-grid article::after {
    display: none;
  }
  .choice-grid h3 {
    white-space: normal;
  }
  .choice-grid p {
    max-width: 320px;
  }
}
@media (max-width: 600px) {
  .choice {
    padding: 50px 0 20px;
  }
  .choice-grid {
    gap: 30px 20px;
    margin: 30px 0;
  }
  .choice-grid article > img {
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
  }
  .choice-grid h3 {
    font-size: 15px;
    line-height: 1.4;
    min-height: 42px;
  }
  .choice-grid p {
    font-size: 13px;
    line-height: 1.55;
    margin-top: 10px;
  }
  .choice-grid {
    align-items: start;
  }
}
#featured .project-grid h3,
#latest .project-grid h3 {
  padding-left: 16px;
  background: url(../images/lmy/icon-adds.png) no-repeat left 3px;
  background-size: 12px 16px;
}
.photo-cta {
  border-radius: 40px;
}
.support-need .card-copy .info .tits {
  font-size: 1.4rem;
}
/* ==============================
   Project Tabs
   ============================== */
/* 可调整变量 */
/* ==============================
   Project Tabs
   不需要修改现有 DOM
   ============================== */
.project-tabs[data-tabs] {
  /* Tab 按钮区域 */
  /* 内容面板 */
}
.project-tabs[data-tabs] [role='tablist'] [role='tab'] {
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  /* 当前选中的按钮 */
  /* 键盘操作时的焦点样式 */
}
.project-tabs[data-tabs] [role='tablist'] [role='tab'][aria-selected='true'] {
  background-color: #bd0011;
  color: #ffffff;
}
.project-tabs[data-tabs] [role='tablist'] [role='tab']:focus-visible {
  outline: 2px solid #bd0011;
  outline-offset: 2px;
}
.project-tabs[data-tabs] > [role='tabpanel'] {
  /* 隐藏未选中的面板 */
  /* 当前显示面板的切换动画 */
}
.project-tabs[data-tabs] > [role='tabpanel'][hidden] {
  display: none !important;
}
.project-tabs[data-tabs] > [role='tabpanel']:not([hidden]) {
  animation: project-panel-fade 0.25s ease both;
}
/* 面板淡入动画 */
@keyframes project-panel-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wyn-contact .choice-grid {
  padding: 20px 30px;
  margin-top: 0;
  margin-bottom: 0;
  background: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #e0e0e0;
}
.wyn-contact .project-inquiry fieldset {
  margin: 0;
  border-top: 0;
  padding-top: 0;
}
.project-inquiry-items .rights {
  padding: 20px 0;
}
.wyn-method .tits {
  font-size: 22px;
}
.wyn-method .links {
  font-size: 20px;
  font-weight: 600;
}
.wyn-method .texts {
  font-size: 14px;
  color: var(--main-color);
}
.res-help .resource-help article {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 8px 8px 8px 8px;
}
.res-help .resource-help article .text-link path {
  fill: var(--main-color);
}
#technical .machine-made-resources__download-arrow svg path {
  fill: var(--main-color);
}
#technical .machine-made-resources__download-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#technical .machine-made-resources__download-label .text-download {
  font-weight: 600;
  font-size: 16px;
  color: #AD0C14;
  line-height: 23px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 2px;
}
#technical .lefts .button {
  margin-top: 36px;
}
#technical .resource-news-add {
  gap: 0;
}
#technical .resource-news-add article {
  border: 1px solid #D8D8D8;
  padding: 25px 25px;
  display: flex;
  gap: 0rem;
  align-items: center;
}
#technical .resource-news-add article .plain-link {
  font-weight: bold;
  font-size: 18px;
  color: #121212;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
#technical .resource-news-add article .texts {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: left;
}
#technical .resource-news-add time {
  padding: 0;
  width: 102px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #F3F4F6;
  border-radius: 10px;
  margin-right: 17px;
  flex-shrink: 0;
}
#technical .resource-news-center article {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
}
#technical .resource-news-center article .plain-link {
  font-size: 18px;
}
#technical .resource-news-center article p {
  font-size: 16px;
}
#technical .resource-news-center article img {
  aspect-ratio: 160 / 100;
  border-radius: 10px;
}
#technical .resource-news-center article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.res-material .comparison-cards .imgs {
  overflow: hidden;
}
.res-material .res-material-link {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.res-form .flexs {
  background: #F3F4F6;
  border-radius: 10px;
  padding: 70px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.res-form .lefts {
  display: flex;
  align-items: center;
}
.res-form .lefts .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background-color: var(--main-color);
  flex-shrink: 0;
  margin-right: 48px;
}
.res-form .lefts .icons img {
  width: 55;
}
.res-form .lefts .infos .tits {
  font-weight: bold;
  font-size: 46px;
  color: #121212;
  line-height: 1.391;
  margin-bottom: 13px;
}
.res-form .lefts .infos .button {
  border: 1px solid var(--main-color);
  background: #fff;
  color: var(--main-color);
}
.res-form .lefts .infos .button:hover {
  background: var(--main-color);
  color: #fff;
}
.res-form .quick-question {
  width: 45%;
}
.res-form .quick-question input {
  background-color: #fff;
  border: none;
  padding: 0 23px;
  font-size: 20px;
  height: 54px;
}
.res-form .quick-question .button {
  width: 184px;
  font-weight: 18px;
  text-transform: uppercase;
  background-color: var(--main-color);
}
.res-form .quick-question .button:hover {
  background-color: var(--main-color2);
}
.metal-what .guide-intro {
  position: relative;
  z-index: 1;
  padding: 55px 48px;
}
.metal-what .guide-intro > img {
  position: absolute;
  width: 56px;
  right: 59px;
  bottom: 26px;
}
.metal-what .guide-intro-top {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dashed #ccc;
}
.metal-what .guide-intro-top .tits {
  margin-bottom: 12px;
}
.metal-what .guide-intro-top p {
  font-weight: 600;
}
.metal-what .guide-intro-bottom {
  width: 1079px;
  max-width: 100%;
}
.metal-siding .contents .section-heading {
  margin-bottom: 15px;
}
.metal-siding .contents p {
  font-weight: 600;
}
.metal-common {
  background-color: #F5F8FC !important;
}
.metal-common .guide-apps span {
  font-weight: bold;
  font-size: 46px;
  color: #FFFFFF;
  line-height: 64px;
  text-stroke: 1px #707070;
  text-align: left;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 1px #707070;
  right: 30px;
  top: 16px;
}
.metal-common .tits {
  padding-top: 20px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 20px;
  color: #2F5192;
  line-height: 26px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.metal-common .tits::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 4px;
  background-color: var(--main-color2);
  left: 0;
  top: 0;
}
.metal-common .texts {
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.metal-directions .text-link {
  color: var(--main-color) !important;
}
.metal-why {
  padding-bottom: 6rem;
}
.metal.machine-made-selection-section {
  padding-top: 6rem;
}
.wyn-contact .project-inquiry textarea {
  margin-bottom: 0;
}
.wyn-contact .project-inquiry-items:first-child .lefts::before {
  display: none;
}
.wyn-contact .project-inquiry-items:nth-last-child(2) .lefts::after {
  display: none;
}
.wyn-contact .project-inquiry-items {
  display: flex;
  justify-content: space-between;
}
.wyn-contact .project-inquiry-items .lefts {
  width: 250px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.wyn-contact .project-inquiry-items .lefts::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50%;
  top: 0;
  left: 30px;
  background: #ccc;
  z-index: -1;
}
.wyn-contact .project-inquiry-items .lefts::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50%;
  bottom: 0;
  left: 30px;
  background: #ccc;
  z-index: -1;
}
.wyn-contact .project-inquiry-items .content {
  display: flex;
  align-items: center;
  height: 100%;
}
.wyn-contact .project-inquiry-items fieldset {
  width: 100%;
}
.wyn-contact .project-inquiry-items .rights {
  width: calc(100% - 250px - 10px);
}
.wyn-contact .project-inquiry-items .number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 26px;
  color: #666666;
  line-height: 36px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  background-color: #fff;
}
.wyn-contact .project-inquiry-items .texts {
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  line-height: 1.77777;
  margin-left: 14px;
}
.wyn-contact .project-inquiry-items.active .number {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
/* case-studies-list */
.wyn-case-list .case-list .card {
  background: #FFFFFF;
  box-shadow: 0px 2px 6px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid #F6F6F6;
}
.wyn-case-list .case-list .card-copy time {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.wyn-case-list .case-list .card-copy h2 {
  font-weight: bold;
  font-size: 18px;
  color: #121212;
}
.wyn-case-list .case-list .card-copy p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.wyn-case-list .case-list .card-copy a {
  background: #AD0C14;
  border-radius: 2px 2px 2px 2px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: auto;
}
.wyn-case-list .case-list .card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 50%;
}
.wyn-blog-directory .wyn-list-page,
.wyn-case-list .wyn-list-page {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 50px 0 0px;
}
.wyn-blog-directory .wyn-list-page p,
.wyn-case-list .wyn-list-page p {
  font-weight: bold;
  font-size: 18px;
  color: #121212;
  text-align: center;
}
.wyn-blog-directory .wyn-list-page div,
.wyn-case-list .wyn-list-page div {
  display: flex;
  justify-content: center;
  width: 30px;
  transition: all ease 0.1s;
  border-radius: 5px;
}
.wyn-blog-directory .wyn-list-page button,
.wyn-case-list .wyn-list-page button {
  border: none;
  background-color: transparent;
  width: 100%;
}
.wyn-blog-directory .wyn-list-page div:hover,
.wyn-case-list .wyn-list-page div:hover {
  background-color: #AD0C14;
}
.wyn-blog-directory .wyn-list-page div:hover p,
.wyn-case-list .wyn-list-page div:hover p {
  color: #FFF;
}
.wyn-case-cta h2 {
  font-weight: bold;
  font-size: 36px;
  color: #121212;
}
.wyn-case-cta .photo-cta {
  background: var(--photo);
  background-color: #F6F6F6;
  border-radius: 30px 30px 30px 30px;
}
.wyn-case-cta button {
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  text-transform: uppercase;
}
/* case-study */
.wyn-case-article h1 {
  font-weight: 600;
  font-size: 38px;
  color: #121212;
}
.wyn-case-article .wyn-date-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.wyn-case-article .wyn-date-box time {
  margin: 0;
}
.wyn-article-section .article-share p {
  font-weight: 600;
  font-size: 30px;
  color: #121212;
  margin-right: 20px;
}
.wyn-article-section .article-share {
  border-top: none;
}
.wyn-article-section .article-pagination {
  border-top: 2px solid var(--line);
}
.wyn-article-section .article-share a {
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #121212;
  width: 40px;
  height: 40px;
  transition: all 0.5s;
}
.wyn-article-section .article-share a:hover {
  background-color: var(--main-color);
}
.wyn-article-section .article-pagination .text-link {
  font-weight: 400;
  font-size: 16px;
  color: #8e8e8e;
  transition: all 0.5s;
}
.wyn-article-section .article-pagination .text-link:hover {
  color: var(--main-color);
}
.wyn-article-section .article-pagination .text-link:hover span {
  color: var(--main-color);
}
.wyn-article-section .article-pagination .text-link span {
  font-weight: 600;
  font-size: 20px;
  color: #666666;
  transition: all 0.5s;
  display: inline-block;
}
.wyn-case-recommended .card-copy p {
  font-weight: 500;
  font-size: 18px !important;
  color: #333333;
}
.wyn-case-recommended .card > a {
  overflow: hidden;
  display: block;
}
.wyn-case-recommended .card > a img {
  transition: all 0.5s;
}
.wyn-case-recommended .card > a:hover img {
  transform: scale(1.06);
}
/* blog */
.wyn-blog-directory .filter-bar button {
  font-weight: bold;
  font-size: 18px;
}
.wyn-blog-directory .news-list time {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 40px;
}
.wyn-blog-directory .news-list h2 {
  font-weight: bold;
  font-size: 24px;
  color: #121212;
  max-width: 100%;
}
.wyn-blog-directory .news-list p {
  max-width: 100%;
}
.wyn-blog-directory .news-list article {
  border-bottom: 2px solid #eee;
}
/* blog-article */
.wyn-article-layout .article-sidebar > form,
.wyn-article-layout .article-sidebar > nav,
.wyn-article-layout .article-sidebar > div {
  border: none;
}
.wyn-article-layout .article-sidebar h2,
.wyn-article-layout .article-search label {
  font-weight: bold;
  font-size: 26px;
  color: #121212;
}
.wyn-article-layout .article-body .article-meta a,
.wyn-article-layout .article-body .article-meta time {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
}
.wyn-article-layout .wyn-article-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wyn-article-layout .wyn-article-meta img {
  width: 20px;
  height: 20px;
}
.wyn-article-layout .article-meta {
  gap: 60px;
  display: flex;
  justify-content: space-between;
}
.wyn-article-layout .wyn-meta-box {
  display: flex;
  gap: 50px;
}
.wyn-article-layout .article-meta .article-share p {
  font-weight: 600;
  font-size: 30px;
  color: #121212;
  margin-right: 20px;
}
.wyn-article-layout .article-meta .article-share {
  border-top: none;
  padding-top: 0;
}
.wyn-article-layout .article-meta .article-share a {
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #121212;
  width: 40px;
  height: 40px;
  transition: all 0.5s;
}
.wyn-article-layout .article-meta .article-share a:hover {
  background: var(--main-color);
}
.wyn-article-layout .article-pagination {
  border-top: 2px solid var(--line);
}
.wyn-article-layout .article-pagination .text-link {
  font-weight: 400;
  font-size: 16px;
  color: #8e8e8e;
  transition: all 0.5s;
}
.wyn-article-layout .article-pagination .text-link span {
  font-weight: 600;
  font-size: 20px;
  color: #666666;
  transition: all 0.5s;
}
.wyn-article-layout .article-pagination .text-link:hover {
  color: var(--main-color);
}
.wyn-article-layout .article-pagination .text-link:hover span {
  color: var(--main-color);
}
.wyn-article-layout .article-sidebar .sidebar-contact {
  background-image: url(/assets/images/wyn4/blog-contact-bg.png);
}
.wyn-article-layout .article-sidebar .sidebar-contact h2 {
  font-weight: bold;
  font-size: 26px;
  color: #FFFFFF;
}
.wyn-article-layout .article-sidebar .sidebar-contact p {
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
}
.wyn-article-layout .article-sidebar .sidebar-contact button {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.wyn-article-layout .article-sidebar .sidebar-faq summary,
.wyn-article-layout .article-sidebar .sidebar-faq div {
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: #121212;
}
.wyn-article-layout .article-sidebar .sidebar-faq details,
.wyn-article-layout .article-sidebar .sidebar-faq div {
  border-bottom: 2px solid #ddd;
}
.wyn-article-layout .article-sidebar .sidebar-faq details:first-of-type,
.wyn-article-layout .article-sidebar .sidebar-faq > div:first-child {
  border-top: 2px solid #ddd;
}
.wyn-article-layout .sidebar-faq .wyn-slide > p {
  display: none;
}
.wyn-case-list .case-list .card .imgs {
  border-radius: 14px;
  overflow: hidden;
}
.wyn-case-list .case-list .card .imgs img {
  width: 100%;
  transition: all 0.5s;
}
.wyn-case-list .case-list .card:hover .imgs img {
  transform: scale(1.06);
}
.wyn-case-cta .photo-cta {
  min-height: 360px;
  position: relative;
  z-index: 1;
}
.wyn-case-cta .photo-cta > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.wyn-blog-directory.blog-directory .filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px 10px;
}
.wyn-blog-directory.blog-directory .filter-bar a {
  display: flex;
  padding: 11px 26px;
  border: 1px solid #999999;
  border-radius: 60px;
  font-weight: bold;
  font-size: 18px;
  color: #121212;
  line-height: 1.25;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: all 0.5s;
}
.wyn-blog-directory.blog-directory .filter-bar a.active,
.wyn-blog-directory.blog-directory .filter-bar a:hover {
  background: var(--main-color);
  color: #fff;
}
.wyn-blog-directory.blog-directory .news-list article:hover .imgs img {
  transform: scale(1.05);
}
.wyn-blog-directory.blog-directory .news-list .imgs {
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
.wyn-blog-directory.blog-directory .news-list .imgs img {
  transition: all 0.5s;
}
.wyn-article-layout .article-search #article-search {
  outline: none;
}
