:root {
  --ink: #222c3d;
  --muted: #657084;
  --blue: #3b5998;
  --blue-dark: #253f76;
  --blue-soft: #eef2f8;
  --line: #e1e6ee;
  --surface: #f4f6f9;
}
* {
  box-sizing: border-box;
}
@media (min-width: 768px){
  #content .container{
    padding: 0;
  }
}
@media (min-width: 426px) {
  .common-home #slideshow0 {
    margin-bottom: 0;
  }
}
.owl-wrapper-outer .img-responsive{
  margin: 0 auto;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 16px/1.65 Arial, sans-serif;
}

img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #90a3c9;
  outline-offset: 4px;
}

.ref-home {
  padding: 32px 24px 80px;
}
.hero,
.section {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.hero {
  overflow: hidden;
  background: var(--surface);
}
.hero img {
  width: 100%;
  display: block;
}

.section {
  padding-top: 96px;
}
.section-heading {
  margin-bottom: 30px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.55px;
  text-transform: uppercase;
}
.section-heading h1,
.section-heading h2{
  margin: 0;
  max-width: 850px;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -2.2px;
  line-height: 1.05;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.product-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.product-card .number {
  position: relative;
  z-index: 2;
  color: #95a0b3;
  font: 18px/1 monospace;
}
.product-card img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 59%;
  height: 71%;
  object-fit: contain;
  object-position: top right;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card h2 {
  position: relative;
  z-index: 1;
  max-width: 245px;
  margin: auto 0 12px;
  padding-right: 12px;
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}
.product-link {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
}
.product-link b {
  display: inline-block;
  margin-left: 3px;
  color: var(--blue);
  font-size: 18px;
  transition: transform .2s ease;
}
.product-card:hover .product-link b {
  transform: translate(4px, -4px);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industries {
  padding-top: 72px;
}
.industries .section-heading {
  margin-bottom: 24px;
}
.industry-card {
  position: relative;
  min-height: 250px;
  grid-column: span 1;
  overflow: hidden;
  color: #fff;
  background: #1f2a3b;
}
.industry-card--wide {
  grid-column: span 2;
}
.industry-card--square {
  min-height: 0;
  aspect-ratio: 1 / 1;
}
.industry-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 20% 0 0;
  background: linear-gradient(transparent, rgba(19,27,42,.94));
}
.industry-card:hover img {
  transform: scale(1.03);
}
.industry-card > div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}
.industry-card h3 {
  margin: 0;
  max-width: 500px;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}
.industry-card p {
  max-width: 540px;
  margin: 7px 0 0;
  color: #e4e9f1;
  font-size: 14px;
  line-height: 1.45;
}

.advantages {
  padding: 96px 0 0 0;
  color: var(--ink);
  background: #fff;
}
.advantages-heading,
.advantage-grid {
  position: relative;
  z-index: 1;
}
.advantages-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 74px;
}
.advantages .section-heading {
  margin-bottom: 0;
}
.advantages .eyebrow {
  margin-bottom: 12px;
  color: #7894c4;
  font-size: 13px;
  letter-spacing: 4px;
}
.advantages-lead {
  max-width: 460px;
  margin: 0 0 7px;
  color: #50698e;
  font-size: 18px;
  line-height: 1.45;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 24px;
}
.advantage-card {
  position: relative;
  padding: 126px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(222, 231, 243, .85);
  overflow: visible;
  background: rgba(255, 255, 255, .9);
}
.advantage-number {
  position: absolute;
  top: 28px;
  right: 35px;
  color: #edf3fc;
  font-size: clamp(80px, 8vw, 116px);
  font-weight: 700;
  letter-spacing: -8px;
  line-height: .82;
}
.advantage-icon {
  position: absolute;
  top: -36px;
  left: 42px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 9px solid #f8fbff;
  border-radius: 50%;
  background: linear-gradient(145deg, #438de8, #15539f);
}
.advantage-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.advantage-card h3 {
  position: relative;
  max-width: 300px;
  margin: 0;
  color: #102d66;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}
.advantage-card h3::after {
  width: 52px;
  height: 3px;
  display: block;
  margin-top: 22px;
  border-radius: 999px;
  background: #2875d2;
  content: "";
}
.advantage-card p {
  position: relative;
  margin: 20px 0 0;
  color: #50698e;
  font-size: 17px;
  line-height: 1.5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37,63,118,.1);
}
.news-card img {
  width: 100%;
  height: auto;
  display: block;
}
.news-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.news-card time {
  color: #8a93a2;
  font: 12px/1.2 monospace;
}
.news-card h3 {
  margin: 18px 0 0;
  color: var(--blue-dark);
  font-size: 16px;
  line-height: 1.35;
}
.news-link {
  display: inline-block;
  margin-left: 4px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}
.news-card:hover .news-link {
  transform: translate(4px, -4px);
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-card,
  .industry-card--wide {
    grid-column: span 1;
  }
  .industry-card,
  .industry-card--wide,
  .industry-card--square {
    min-height: 260px;
  }
  .industry-card--square {
    aspect-ratio: auto;
  }
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .advantages-lead {
    max-width: 560px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .ref-home {
    padding: 16px 16px 56px;
  }
  .section {
    padding-top: 66px;
  }
  .section-heading h1,
  .section-heading h2{
    font-size: 36px;
    letter-spacing: -1.3px;
  }
  .product-grid,
  .industry-grid,
  .advantage-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 260px;
  }
  .product-card h2 {
    font-size: 22px;
  }
  .industry-card,
  .industry-card--wide,
  .industry-card--square {
    min-height: 280px;
    grid-column: auto;
  }
  .advantages {
    padding: 66px 0 0 0;
  }
  .advantages-heading {
    margin-bottom: 48px;
  }
  .advantages .eyebrow {
    font-size: 11px;
    letter-spacing: 2.8px;
  }
  .advantages h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
  }
  .advantages-lead {
    font-size: 16px;
  }
  .advantages-lead br,
  .advantage-card p br {
    display: none;
  }
  .advantage-grid {
    gap: 52px 16px;
  }
  .advantage-card {
    min-height: auto;
    padding: 108px 26px 28px;
  }
  .advantage-icon {
    top: -32px;
    left: 26px;
    width: 102px;
    height: 102px;
  }
  .advantage-icon img {
    width: 43px;
    height: 43px;
  }
  .advantage-number {
    top: 27px;
    right: 22px;
    font-size: 86px;
  }
  .advantage-card h3 {
    font-size: 21px;
  }
  .advantage-card p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
