[data-script-enabled=true] [aria-hidden=true] {
  display: block;
}

:root {
  --LP-COLOR-WHITE: #fff;
  --LP-COLOR-LIGHTGRAY-PRIMARY: #ddd;
  --LP-COLOR-LIGHTGRAY-SECONDARY: #ececec;
  --LP-COLOR-RED: #ae0025;
  --LP-COLOR-DARKRED: #a50026;
  --LP-COLOR-STEELBLUE: #49698a;
  --LP-COLOR-DARKBLUE: #0d2946;
  --LP-COLOR-NAVY: #081b2c;
  --LP-COLOR-MIDNIGHT: #081929;
  --LP-COLOR-BLUEGRAY: #133447;
  --LP-COLOR-MOSSGREEN: #38514b;
  --LP-FONT-WEIGHT-MEDIUM: 400;
  --LP-FONT-WEIGHT-SEMIBOLD: 600;
  --LP-MARGIN-BOTTOM-DEFAULT: 24px;
  --LP-MARGIN-BOTTOM-HALF-DEFAULT: 12px;
  --LP-BACKGROUND-GRADIENT-PRIMARY: linear-gradient(180deg, var(--LP-COLOR-STEELBLUE) 0%, var(--LP-COLOR-DARKBLUE) 100%);
  --LP-HEADER-FONT: var(--LP-COLOR-WHITE);
  --LP-MAIN-FONT: var(--LP-COLOR-WHITE);
  --LP-FOOTER-FONT: var(--LP-COLOR-LIGHTGRAY-PRIMARY);
  --LP-PAGINATION-BULLET-DEFAULT: var(--LP-COLOR-LIGHTGRAY-PRIMARY);
  --LP-PAGINATION-BULLET-CURRENT: var(--LP-COLOR-WHITE);
}

.lp-layout-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--LP-COLOR-DARKBLUE);
  background-image: var(--LP-BACKGROUND-GRADIENT-PRIMARY);
  color: var(--LP-COLOR-WHITE);
}
@media only screen and (max-width: 1365px) {
  .lp-layout-container {
    min-height: auto;
    background-image: none;
  }
  .lp-layout-container::before {
    content: "";
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--LP-COLOR-DARKBLUE);
    background-image: var(--LP-BACKGROUND-GRADIENT-PRIMARY);
    inset: 0;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-layout-container {
    min-height: auto;
    background-image: none;
  }
  .lp-layout-container::before {
    content: "";
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--LP-COLOR-DARKBLUE);
    background-image: var(--LP-BACKGROUND-GRADIENT-PRIMARY);
    inset: 0;
  }
}

.lp-layout-header {
  z-index: 10;
  grid-column: 1/-1;
  grid-row: 1/2;
  color: var(--LP-HEADER-FONT);
}
.lp-layout-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px 12px;
  gap: 24px;
}
.lp-layout-header-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1919px) {
  .lp-layout-header-content {
    max-width: 1800px;
    margin-inline: auto;
    padding: 24px 20px 12px;
  }
}
@media only screen and (max-width: 1365px) {
  .lp-layout-header-content {
    justify-content: center;
    padding: 32px 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-content {
    padding: 24px 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-header-content {
    align-items: flex-start;
    padding: 22px 20px;
  }
}
.lp-layout-header-logo {
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 1;
}
.lp-layout-header-logo > a {
  display: inline-block;
}
.lp-layout-header-logo > a > img {
  width: 120px;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-logo > a > img {
    width: 94px;
  }
}
.theme-KC .lp-layout-header-logo > a > img {
  width: 223px;
}
@media only screen and (max-width: 1023px) {
  .theme-KC .lp-layout-header-logo > a > img {
    width: 140px;
  }
}

.lp-layout-main {
  z-index: 1;
  grid-column: 1/-1;
  grid-row: 1/-1;
  padding: 80px 0px;
  color: var(--LP-MAIN-FONT);
}
@media only screen and (max-width: 1365px) {
  .lp-layout-main {
    grid-row: 2/3;
    padding: 0px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-main {
    padding: 66px 0px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-layout-main {
    padding: 66px 0px 0px;
  }
}

.lp-layout-footer {
  z-index: 10;
  grid-column: 1/-1;
  grid-row: -1/-2;
  color: var(--LP-FOOTER-FONT);
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer {
    background-color: rgba(19, 52, 71, 0.5);
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer {
    background-color: initial;
  }
}
.lp-layout-footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1800px;
  margin-inline: auto;
  padding: 16px 20px;
  gap: 12px 25px;
}
.lp-layout-footer-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer-content {
    padding: 16px 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-content {
    flex-direction: column;
    max-width: none;
    padding: 24px 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-footer-content {
    padding: 8px 20px;
  }
}
.lp-layout-footer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  gap: 12px 25px;
}
.lp-layout-footer-list > li {
  position: relative;
}
.lp-layout-footer-list > li > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-footer-list > li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -13px;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background-color: currentColor;
}
.lp-layout-footer-list > li > a {
  color: currentColor;
  text-decoration: none;
}
.lp-layout-footer-list > li > a:hover, .lp-layout-footer-list > li > a:active, .lp-layout-footer-list > li > a:focus {
  color: currentColor;
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-list > li:last-child::after {
    display: none;
  }
}
.lp-layout-footer-copyright {
  font-size: 1.2rem;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer-copyright {
    text-align: center;
  }
}

.lp-layout-grid {
  gap: 64px;
  display: grid;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1591px) {
  .lp-layout-grid {
    gap: calc(2rem + (1vw - 1.366rem) * (19.4690265487));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-layout-grid {
    gap: 64px calc(2rem + (1vw - 1.024rem) * (5.8479532164));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-grid {
    gap: 64px 25px;
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-grid {
    --gap-from-height: calc(2rem + (1vh - 0.625rem) * (15.4385964912));
    --gap-from-width: calc(2rem + (1vw - 1.366rem) * (19.4690265487));
    gap: max(20px, min(var(--gap-from-height), var(--gap-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-layout-grid {
    margin-bottom: 40px;
  }
}
.lp-layout-grid-column > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-grid.of-column-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-grid.of-column-3 {
    grid-template-columns: auto;
  }
}

.lp-jumbotron {
  height: 100%;
}
.lp-jumbotron-content {
  max-width: 1708px;
  height: 100%;
  margin-inline: auto;
  padding: 0 58px;
}
.lp-jumbotron-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-content {
    padding: 16px 40px 80px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-content {
    padding: 16px max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349)) 48px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-jumbotron-content {
    padding: 16px 40px 80px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-jumbotron-content {
    padding: 16px 58px 80px;
  }
}
.lp-jumbotron-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
}
.lp-jumbotron-inner > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-inner {
    gap: 20px;
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-inner {
    flex-direction: column-reverse;
    gap: 32px;
    margin-bottom: 32px;
  }
}
.lp-jumbotron-inner.of-rowReverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-inner.of-rowReverse {
    flex-direction: column-reverse;
  }
}
.lp-jumbotron-body {
  flex: 1;
  max-width: 764px;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-body {
    max-width: calc(65.8rem + (1vw - 1.366rem) * (46.9026548673));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-body {
    max-width: none;
  }
}
.lp-jumbotron-titleGroup {
  margin-bottom: 40px;
  text-align: center;
}
.lp-jumbotron-titleGroup > *:last-child {
  margin-bottom: 0 !important;
}
.lp-jumbotron-title {
  display: block;
  margin-bottom: 36px;
  font-size: 6.4rem;
  font-weight: var(--LP-FONT-WEIGHT-SEMIBOLD);
  line-height: 1.5;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-title {
    font-size: calc(3.6rem + (1vw - 1.366rem) * (12.389380531));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-title {
    margin-bottom: 32px;
    font-size: calc(3.6rem + (1vw - 1.024rem) * (5.8479532164));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-title {
    font-size: max(2.6rem, 2.6rem + (1vw - 0.36rem) * (1.5060240964));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-title {
    --font-from-height: calc(5.2rem + (1vh - 0.625rem) * (4.2105263158));
    --font-from-width: calc(5.2rem + (1vw - 1.366rem) * (5.3097345133));
    font-size: max(5.2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-title > em {
  font-size: 8.8rem;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-title > em {
    font-size: calc(6.8rem + (1vw - 1.366rem) * (8.8495575221));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-title > em {
    font-size: calc(5.8rem + (1vw - 1.024rem) * (2.9239766082));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-title > em {
    font-size: max(3.6rem, 3.6rem + (1vw - 0.36rem) * (3.313253012));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-title > em {
    --font-from-height: calc(6.8rem + (1vh - 0.625rem) * (7.0175438596));
    --font-from-width: calc(6.8rem + (1vw - 1.366rem) * (8.8495575221));
    font-size: max(6.8rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-subtitleGroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
  gap: 4px 16px;
}
.lp-jumbotron-subtitleGroup > *:last-child {
  margin-bottom: 0 !important;
}
.lp-jumbotron-subtitle {
  display: block;
  margin-bottom: 16px;
  font-size: 3rem;
  font-weight: var(--LP-FONT-WEIGHT-SEMIBOLD);
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-subtitle {
    font-size: max(1.8rem, 1.8rem + (1vw - 1.366rem) * (5.3097345133));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-subtitle {
    font-size: max(1.6rem, 1.6rem + (1vw - 0.36rem) * (0.3012048193));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-subtitle {
    --font-from-height: calc(2.6rem + (1vh - 0.625rem) * (1.4035087719));
    --font-from-width: calc(2.6rem + (1vw - 0.36rem) * (0.3246753247));
    font-size: max(2.6rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-subtitle.of-primary {
  margin-bottom: 0;
  font-size: 2.4rem;
  line-height: 1.33;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-subtitle.of-primary {
    font-size: max(1.6rem, 1.6rem + (1vw - 1.366rem) * (3.5398230088));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-subtitle.of-primary {
    font-size: max(1.4rem, 1.4rem + (1vw - 0.36rem) * (0.3012048193));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-subtitle.of-primary {
    --font-from-height: calc(2.2rem + (1vh - 0.625rem) * (0.701754386));
    --font-from-width: calc(1.6rem + (1vw - 0.36rem) * (0.6493506494));
    font-size: max(2.2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-seriesGroup {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: var(--LP-FONT-WEIGHT-MEDIUM);
}
.lp-jumbotron-seriesGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-seriesGroup {
    font-size: max(1.4rem, 1.4rem + (1vw - 0.36rem) * (0.487012987));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-seriesGroup {
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-seriesGroup {
    --font-from-height: calc(2.2rem + (1vh - 0.625rem) * (0.701754386));
    --font-from-width: calc(1.4rem + (1vw - 0.36rem) * (0.8116883117));
    font-size: max(2.2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-series {
  display: inline-block;
}
.lp-jumbotron-seriesName {
  font-weight: 600;
}
.lp-jumbotron-image {
  max-width: clamp(704px, 70.4rem + (1vw - 1.592rem) * (35.3658536585), 820px);
}
@media only screen and (max-width: 1591px) {
  .lp-jumbotron-image {
    max-width: calc(58.4rem + (1vw - 1.366rem) * (53.0973451327));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-image {
    max-width: calc(47.2rem + (1vw - 1.024rem) * (32.7485380117));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-image {
    max-width: none;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-image {
    --maxWidth-from-height: calc(57.4rem + (1vh - 0.625rem) * (86.3157894737));
    --maxWidth-from-width: calc(58.4rem + (1vw - 1.366rem) * (53.0973451327));
    max-width: max(574px, min(var(--maxWidth-from-height), var(--maxWidth-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-jumbotron-image {
    max-width: min(58.4rem + (1vw - 1.366rem) * (53.0973451327), 70.4rem + (1vw - 1.592rem) * (35.3658536585), 820px);
  }
}

.lp-section {
  height: 100%;
}
:root:not([data-script-enabled=true]) .lp-section.of-primary {
  position: relative;
}
@media only screen and (max-width: 1365px) {
  .lp-section.of-primary {
    position: relative;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-section.of-primary {
    position: relative;
  }
}
.lp-section-content {
  display: flex;
  align-items: center;
  max-width: 1708px;
  height: 100%;
  margin-inline: auto;
  padding: 0 58px;
}
.lp-section-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-section-content {
    display: block;
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content {
    padding: 48px max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-section-content {
    justify-content: center;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-section-content {
    padding: 80px 58px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-section-content {
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 1365px) {
  .lp-section-content.of-primary {
    padding: 80px 40px 160px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content.of-primary {
    padding: 48px max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-section-content.of-primary {
    padding: 80px 40px 160px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-section-content.of-primary {
    padding: 80px 40px 160px;
  }
}
@media only screen and (max-width: 1365px) {
  .lp-section-content.of-secondary {
    padding: 100px 40px 56px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content.of-secondary {
    padding: 16px max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349)) 0px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-section-content.of-secondary {
    padding: 200px 40px 200px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-section-content.of-secondary {
    padding: 200px 40px 200px;
  }
}
.lp-section-inner > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .lp-section-inner {
    margin-bottom: 36px;
  }
}

.lp-label {
  display: block;
  margin-bottom: var(--LP-MARGIN-BOTTOM-HALF-DEFAULT);
  color: var(--LP-COLOR-WHITE);
  font-size: 2rem;
}
@media only screen and (max-width: 1365px) {
  .lp-label {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-label {
    font-size: max(1.6rem, 1.6rem + (1vh - 0.625rem) * (1.4035087719));
  }
}
.lp-label-outer {
  display: block;
  flex-shrink: 0;
}
.lp-label-outer > *:last-child {
  margin-bottom: 0 !important;
}
.lp-label-outer.of-primary {
  margin-bottom: 4px;
}
@media only screen and (max-width: 1023px) {
  .lp-label-outer.of-secondary {
    margin-bottom: 10px;
  }
}
.lp-label.of-primary {
  width: fit-content;
  max-width: 200px;
  padding: 4px 16px;
  border-radius: 4px;
  background-image: linear-gradient(114deg, #008ee3 0%, #0047b5 100%);
  color: var(--LP-COLOR-WHITE);
  font-size: 1.6rem;
  font-weight: var(--LP-FONT-WEIGHT-MEDIUM);
}
@media only screen and (max-width: 1365px) {
  .lp-label.of-primary {
    padding: 2px 8px;
    border-radius: 2px;
    background-image: linear-gradient(125deg, #008ee3 0%, #0047b5 100%);
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-label.of-primary {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-label.of-primary {
    padding: 2px 8px;
    border-radius: 2px;
    font-size: max(1.4rem, 1.4rem + (1vh - 0.625rem) * (1.4035087719));
  }
}
.lp-label.of-secondary {
  width: fit-content;
  padding: 1px 10px;
  background-color: var(--LP-COLOR-RED);
  color: var(--LP-COLOR-WHITE);
  font-size: 2rem;
}
@media only screen and (max-width: 1365px) {
  .lp-label.of-secondary {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-label.of-secondary {
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-label.of-secondary {
    font-size: max(1.6rem, 1.6rem + (1vh - 0.625rem) * (1.4035087719));
  }
}

.lp-media {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
  gap: 16px 64px;
}
@media only screen and (max-width: 1591px) {
  .lp-media {
    gap: 16px calc(2rem + (1vw - 1.366rem) * (19.4690265487));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-media {
    gap: 16px calc(2.5rem + (1vw - 1.024rem) * (4.3859649123));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-media {
    gap: 16px;
  }
}
.lp-media-body {
  width: 100%;
}
.lp-media-body > *:last-child {
  margin-bottom: 0 !important;
}

.lp-mediaProduct {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
  gap: 16px 146px;
}
@media only screen and (max-width: 1591px) {
  .lp-mediaProduct {
    gap: 16px calc(4rem + (1vw - 1.366rem) * (46.9026548673));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaProduct {
    gap: 16px calc(2.5rem + (1vw - 1.024rem) * (4.3859649123));
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaProduct {
    grid-template-columns: auto;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.lp-mediaProduct.of-reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1365px) {
  .lp-mediaProduct.of-reverse .lp-mediaProduct-image {
    order: -1;
  }
}
.lp-mediaProduct-body {
  flex: 1;
  max-width: 626px;
}
.lp-mediaProduct-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-mediaProduct-body {
    max-width: none;
  }
}
.lp-mediaProduct-image {
  max-width: clamp(704px, 70.4rem + (1vw - 1.592rem) * (35.3658536585), 820px);
}
@media only screen and (max-width: 1591px) {
  .lp-mediaProduct-image {
    max-width: calc(58.4rem + (1vw - 1.366rem) * (53.0973451327));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaProduct-image {
    max-width: none;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaProduct-image {
    order: -1;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-mediaProduct-image {
    --maxWidth-from-height: calc(57.4rem + (1vh - 0.625rem) * (86.3157894737));
    --maxWidth-from-width: calc(58.4rem + (1vw - 1.366rem) * (53.0973451327));
    max-width: max(574px, min(var(--maxWidth-from-height), var(--maxWidth-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-mediaProduct-image {
    max-width: min(58.4rem + (1vw - 1.366rem) * (53.0973451327), 70.4rem + (1vw - 1.592rem) * (35.3658536585), 820px);
  }
}

.lp-mediaFeature {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 16px 64px;
}
@media only screen and (max-width: 1591px) {
  .lp-mediaFeature {
    gap: 16px calc(4rem + (1vw - 1.366rem) * (10.6194690265));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaFeature {
    gap: 16px 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaFeature {
    flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-mediaFeature {
    gap: 16px 64px;
  }
}
.lp-mediaFeature-body {
  flex: 1;
  width: 100%;
  max-width: 350px;
}
.lp-mediaFeature-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .lp-mediaFeature-body {
    max-width: none;
  }
}
.lp-mediaFeature-image {
  max-width: min(106.2rem + (1vw - 1.592rem) * (35.3658536585), 1178px);
}
.lp-mediaFeature-image > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1591px) {
  .lp-mediaFeature-image {
    max-width: calc(83.6rem + (1vw - 1.366rem) * (100));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaFeature-image {
    max-width: calc(58.9rem + (1vw - 1.024rem) * (72.2222222222));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaFeature-image {
    max-width: none;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-mediaFeature-image {
    --maxWidth-from-height: calc(77.5rem + (1vh - 0.625rem) * (141.4035087719));
    --maxWidth-from-width: calc(88rem + (1vw - 1.366rem) * (80.5309734513));
    max-width: max(775px, min(var(--maxWidth-from-height), var(--maxWidth-from-width)));
  }
}
.lp-mediaFeature-image.of-background-primary {
  position: relative;
}
.lp-mediaFeature-image.of-background-primary::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 100vw;
  height: min(42.3rem + (1vw - 1.592rem) * (14.3292682927), 470px);
  transform: translateY(-50%);
  background-color: var(--LP-COLOR-MIDNIGHT);
}
@media only screen and (max-width: 1591px) {
  .lp-mediaFeature-image.of-background-primary::before {
    height: calc(35rem + (1vw - 1.366rem) * (32.3008849558));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaFeature-image.of-background-primary::before {
    height: max(120px, 12rem + (1vw - 0.36rem) * (18.0722891566));
    margin-inline: calc(50% - 50vw);
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-mediaFeature-image.of-background-primary::before {
    --height-from-height: calc(35rem + (1vh - 0.625rem) * (42.1052631579));
    --height-from-width: calc(35rem + (1vw - 1.366rem) * (32.3008849558));
    height: max(350px, min(var(--height-from-height), var(--height-from-width)));
  }
}
.lp-mediaFeature.of-rowReverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1023px) {
  .lp-mediaFeature.of-rowReverse {
    flex-direction: column-reverse;
  }
}
.lp-mediaFeature.of-rowReverse .lp-mediaFeature-image.of-background-primary::before {
  right: 0;
  left: auto;
}

.lp-card {
  max-width: 848px;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
  margin-inline: auto;
  padding: 40px 84px;
  border-radius: 8px;
  background-color: rgba(20, 48, 78, 0.5);
  color: var(--LP-COLOR-WHITE);
}
.lp-card > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-card {
    max-width: 704px;
    padding: 32px 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-card {
    padding: 32px 20px;
    background-color: rgba(8, 27, 44, 0.5);
  }
}
.lp-card-seriesGroup {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
}
.lp-card-seriesGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1591px) {
  .lp-card-seriesGroup {
    font-size: calc(1.8rem + (1vw - 1.024rem) * (1.0563380282));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-card-seriesGroup {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-card-seriesGroup {
    font-size: max(1.4rem, 1.4rem + (1vw - 0.36rem) * (0.6024096386));
  }
}
.lp-card-series {
  display: inline-block;
}
.lp-card-seriesName {
  font-weight: var(--LP-FONT-WEIGHT-SEMIBOLD);
}

.lp-headingLevel2 {
  display: block;
  margin-bottom: 24px;
  font-size: 5.6rem;
  font-weight: var(--LP-FONT-WEIGHT-SEMIBOLD);
  line-height: 1.5;
}
@media only screen and (max-width: 1591px) {
  .lp-headingLevel2 {
    font-size: calc(4.4rem + (1vw - 1.024rem) * (2.1126760563));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-headingLevel2 {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel2 {
    margin-bottom: 8px;
    font-size: max(2.8rem, 2.8rem + (1vw - 0.36rem) * (2.4096385542));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel2 {
    --font-from-height: calc(4.4rem + (1vh - 0.625rem) * (4.2105263158));
    --font-from-width: calc(4.4rem + (1vw - 1.024rem) * (2.1126760563));
    font-size: max(4.8rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-headingLevel2.of-small {
  font-size: 4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1591px) {
  .lp-headingLevel2.of-small {
    font-size: calc(3.2rem + (1vw - 1.024rem) * (1.0563380282));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel2.of-small {
    font-size: max(2rem, 2rem + (1vw - 0.36rem) * (1.8072289157));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel2.of-small {
    --font-from-height: calc(3.4rem + (1vh - 0.625rem) * (1.4035087719));
    --font-from-width: calc(2.8rem + (1vw - 1.024rem) * (1.7605633803));
    font-size: max(3.4rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-headingLevel2-subtitle {
  display: block;
  margin-bottom: var(--LP-MARGIN-BOTTOM-HALF-DEFAULT);
  font-size: 2.4rem;
  font-weight: var(--LP-FONT-WEIGHT-MEDIUM);
}
@media only screen and (max-width: 1591px) {
  .lp-headingLevel2-subtitle {
    font-size: calc(2rem + (1vw - 1.024rem) * (1.4084507042));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel2-subtitle {
    font-size: max(1.8rem, 1.8rem + (1vw - 0.36rem) * (0.3012048193));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel2-subtitle {
    --font-from-height: calc(2.2rem + (1vh - 0.625rem) * (2.1052631579));
    --font-from-width: calc(2rem + (1vw - 1.024rem) * (1.4084507042));
    font-size: max(2.2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-headingLevel2-outer {
  margin-bottom: 42px;
}
.lp-headingLevel2-outer > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-headingLevel2-outer {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel2-outer {
    text-align: center;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel2-outer {
    margin-bottom: max(32px, 3.2rem + (1vh - 0.625rem) * (2.8070175439));
  }
}
.lp-headingLevel2-textGroup {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel2-textGroup {
    justify-content: center;
    gap: 8px;
  }
}
.lp-headingLevel2-text {
  display: block;
  font-size: 2.4rem;
  font-weight: var(--LP-FONT-WEIGHT-SEMIBOLD);
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel2-text {
    font-size: 1.8rem;
  }
}

.lp-headingLevel3 {
  margin-bottom: 16px;
  font-size: 3.2rem;
  font-weight: var(--LP-FONT-WEIGHT-SEMIBOLD);
  line-height: 1.46;
}
@media only screen and (max-width: 1919px) {
  .lp-headingLevel3 {
    font-size: calc(2.8rem + (1vw - 1.592rem) * (0.6097560976));
  }
}
@media only screen and (max-width: 1591px) {
  .lp-headingLevel3 {
    font-size: max(2.4rem, 2.4rem + (1vw - 1.366rem) * (1.7699115044));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel3 {
    font-size: max(2rem, 2rem + (1vw - 0.36rem) * (0.6024096386));
    line-height: 1.38;
    text-align: center;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel3 {
    --font-from-height: calc(2.4rem + (1vh - 0.625rem) * (2.1052631579));
    --font-from-width: calc(2.4rem + (1vw - 1.366rem) * (1.7699115044));
    font-size: max(2.4rem, min(var(--font-from-height), var(--font-from-width)));
  }
}

.lp-text {
  margin-bottom: 48px;
  color: var(--LP-COLOR-LIGHTGRAY-PRIMARY);
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1591px) {
  .lp-text {
    font-size: calc(1.5rem + (1vw - 1.024rem) * (0.3521126761));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-text {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-text {
    margin-bottom: max(32px, 3.2rem + (1vh - 0.625rem) * (2.8070175439));
  }
}

.lp-textLead {
  margin-bottom: 40px;
  font-size: 4.8rem;
  line-height: 1.25;
}
@media only screen and (max-width: 1591px) {
  .lp-textLead {
    font-size: calc(2.4rem + (1vw - 1.024rem) * (4.2253521127));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-textLead {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-textLead {
    font-size: max(2rem, 2rem + (1vw - 0.36rem) * (0.6024096386));
  }
}

.lp-textPhone {
  margin-bottom: 16px;
  color: currentColor;
}
.lp-textPhone > *:last-child {
  margin-bottom: 0;
}
.lp-textPhone-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1365px) {
  .lp-textPhone-body {
    flex-direction: column;
  }
}
.lp-textPhone-body.of-flexDirection-column {
  flex-direction: column;
}
.lp-textPhone-body.of-flexDirection-column .lp-textPhone-note {
  margin-right: 0;
  margin-bottom: 8px;
}
.lp-textPhone-note {
  margin-right: 8px;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1365px) {
  .lp-textPhone-note {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.lp-textPhone-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  fill: currentColor;
}
.lp-textPhone-numberGroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
}
@media only screen and (max-width: 1365px) {
  .lp-textPhone-numberGroup {
    font-size: 2rem;
  }
}
.lp-textPhone-numberGroup > a {
  text-decoration: none;
  cursor: inherit;
}
.lp-textPhone-numberGroup > a,
.lp-textPhone-numberGroup > .AutoPhoneCall {
  color: inherit;
}

.lp-listButton {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  gap: 24px;
}
@media only screen and (max-width: 1365px) {
  .lp-listButton {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-listButton {
    gap: 16px;
  }
}
.lp-listButton > li > *:last-child {
  margin-bottom: 0 !important;
}

.lp-button {
  display: inline-block;
  position: relative;
  min-width: 300px;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
  padding: 16px 44px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--LP-COLOR-WHITE);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.09);
  color: var(--LP-COLOR-DARKRED);
  font-size: 1.6rem;
  font-weight: var(--LP-FONT-WEIGHT-SEMIBOLD);
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .lp-button {
    min-width: 280px;
    padding: 12px 44px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-button {
    min-width: 280px;
    padding: 12px 44px;
  }
}
.lp-button:hover, .lp-button:active, .lp-button:focus {
  background-color: var(--LP-COLOR-LIGHTGRAY-SECONDARY);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.102);
}
.lp-button.of-primary {
  color: var(--LP-COLOR-MOSSGREEN);
}
.lp-button.of-price::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translate(-50%, -50%);
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-bottom: transparent;
  border-left: transparent;
}
.lp-button-body > *:last-child {
  margin-bottom: 0 !important;
}
.lp-button-icon {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 3.6rem;
  transform: translateY(-50%);
  fill: currentColor;
}

[data-script-enabled=true] .lp-slider {
  visibility: hidden;
  grid-area: 1/-1;
  height: 100%;
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 0;
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-slider {
    visibility: visible;
    height: auto;
    transform: none;
    opacity: 1;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-slider {
    visibility: visible;
    height: auto;
    transform: none;
    opacity: 1;
  }
}
.lp-slider-outer {
  height: 100%;
}
[data-script-enabled=true] .lp-slider-outer {
  display: grid;
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-slider-outer {
    display: block;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-slider-outer {
    display: block;
  }
}

.lp-pagination {
  display: flex;
  position: fixed;
  z-index: 10;
  top: 50%;
  right: 0;
  flex-direction: column;
  transform: translateY(-50%);
}
.lp-pagination-button {
  position: relative;
  width: 42px;
  height: 50px;
  transition-property: color, font-size;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--LP-PAGINATION-BULLET-DEFAULT);
  font-size: 1.8rem;
}
.lp-pagination-button > *:last-child {
  margin-bottom: 0 !important;
}
.lp-pagination-button::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  background-color: var(--LP-PAGINATION-BULLET-CURRENT);
}
.lp-pagination-buttonText {
  display: block;
  transform: translateX(0);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-pagination-button.is-current {
  color: var(--LP-PAGINATION-BULLET-CURRENT);
  font-size: 2.8rem;
}
.lp-pagination-button.is-current .lp-pagination-buttonText {
  transform: translateX(-15%);
}
.lp-pagination-button.is-current::after {
  opacity: 1;
}
.lp-pagination-button:hover {
  color: var(--LP-PAGINATION-BULLET-CURRENT);
  font-size: 2.8rem;
}
.lp-pagination-button:hover .lp-pagination-buttonText {
  transform: translateX(-15%);
}
.lp-pagination-button:hover::after {
  opacity: 1;
}

.lp-navigationSeries {
  padding-inline: 15px;
}
.lp-navigationSeries-linkList {
  display: flex;
  flex-wrap: wrap;
  margin: -3px 0 0 -16px;
  color: currentColor;
  gap: 12px 0;
}
@media only screen and (max-width: 1023px) {
  .lp-navigationSeries-linkList {
    justify-content: center;
  }
}
.lp-navigationSeries-linkList > li {
  display: flex;
  position: relative;
  margin-top: 3px;
  margin-left: 16px;
  padding: 0;
  background: none;
  font-size: 1.2rem;
  line-height: 1.3;
}
.lp-navigationSeries-linkList > li > a {
  display: block;
  position: relative;
  width: 100%;
  padding-left: 11px;
  color: currentColor;
  line-height: 1.3;
  text-decoration: none;
}
.lp-navigationSeries-linkList > li > a:hover, .lp-navigationSeries-linkList > li > a:active, .lp-navigationSeries-linkList > li > a:focus {
  color: currentColor;
  text-decoration: underline;
}
.lp-navigationSeries-linkList > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: -2px;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.lp-utility-line-break {
  display: block;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-justifyContent-start {
  justify-content: start;
}
.lp-utility-background-primary {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -80px;
  right: 0;
  bottom: -80px;
  left: 0;
  background-color: var(--LP-COLOR-BLUEGRAY);
  background-image: url(../../../../img/products/im-x1000/186643003/186643003_bg_01.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  color: var(--LP-COLOR-WHITE);
}
@media only screen and (max-width: 1365px) {
  .lp-utility-background-primary {
    top: 0;
    bottom: -50px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-utility-background-primary {
    display: none;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-utility-background-primary {
    top: -66px;
    bottom: -66px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-utility-background-primary {
    top: 0;
    bottom: -34px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-utility-background-primary {
    top: 0;
    bottom: -80px;
  }
}

@media only screen and (min-width: 1366px) {
  .lp-extraLargeScreen-hidden {
    display: none;
  }
  .lp-extraLargeScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1365px) {
  .lp-largeScreen-hidden {
    display: none;
  }
  .lp-largeScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .lp-smallScreen-line-break {
    display: block;
  }
  .lp-smallScreen-justifyContent-start {
    justify-content: start;
  }
}

@media only screen and (max-width: 1023px) {
  .lp-extraSmallScreen-line-break {
    display: block;
  }
  .lp-extraSmallScreen-inline {
    display: inline-block;
  }
  .lp-extraSmallScreen-hidden {
    display: none;
  }
  .lp-extraSmallScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}
