.sticky-top {
    z-index: 10;
}
.es-container--narrow {
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto;
}
.ahp-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ahp-btn { display:inline-flex; align-items:center; justify-content:center; min-height:40px; padding:12px 35px; border:1px solid currentColor; text-decoration:none; text-transform:uppercase; letter-spacing:2px; font-size:18px; font-weight:700; line-height:1; transition:background .2s ease,color .2s ease,border-color .2s ease; }

.ahp-btn:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

.ahp-btn--white {
  color: #fff;
}

.ahp-btn--dark {
    color: #fff;
    background: #000;
}

.ahp-btn--dark:hover {
  background: #fff;
  color: #000;
}

.ahp-heading { color: #000; margin:0 0 26px;text-transform:uppercase;letter-spacing: 10px;font-size:clamp(28px, 4vw, 48px);line-height:1.22;font-weight:800;}

.ahp-text {
  font-size: 16px;
  line-height: 1.55;
  color: #000;
  text-align: center;
  margin: 0 auto;
}

.ahp-hero { min-height:750px; position:relative; display:flex; align-items:center; justify-content:center; text-align:center; background-image:url('/images/2023/09/17/arctichp.jpg'); background-size:cover; background-position:center; color:#fff; }
.ahp-hero h1 { color: #fff; margin:0 0 24px; text-transform:uppercase; letter-spacing:10px; font-size:clamp(28px, 4vw, 48px); line-height:1.12; font-weight:800; }
.ahp-hero p { max-width:700px; margin:30px auto 50px; font-size:18px; line-height:1.6; }

.ahp-intro {
  padding: 84px 0 72px;
}

.ahp-info-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 54px;
}

.ahp-info__copy { margin:0 auto 28px; max-width:700px; color:#000; font-size:16px; line-height:1.72; text-align: center; }

.ahp-info__image {
  display: flex;
  justify-content: center;
}

.ahp-info__image img { position:relative; z-index:1; margin:0 auto 0 0; max-height:600px; object-fit:contain; }

.ahp-cost {
  padding: 36px 0 50px;
  text-align: center;
}

.ahp-cost .ahp-text { max-width: 800px; margin-bottom: 34px; font-size: 18px; }

.ahp-chart {
  width: min(1100px, 100%);
  margin: 0 auto 46px;
}

.ahp-chart--cop {
  width: min(1100px, 100%);
}

.ahp-note {
  width: min(1200px, 100%);
  margin: 28px auto 0;
  font-size: 16px;
  line-height: 1.45;
  color: #333;
  text-align: center;
}

/* Gallery */
.es-gallery-section {
  padding: 75px 0px 75px;
}

.es-gallery {
  position: relative;
  width: 100%;
}

.es-gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 78px) / 4);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0;
}

.es-gallery__track::-webkit-scrollbar {
  display: none;
}

.es-gallery__item {
  margin: 0;
  scroll-snap-align: start;
}

.es-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.es-gallery__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 26px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.es-gallery__arrow::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

.es-gallery__arrow--prev {
  left: -38px;
}

.es-gallery__arrow--prev::before {
  border-right: 14px solid #000;
}

.es-gallery__arrow--next {
  right: -38px;
}

.es-gallery__arrow--next::before {
  margin-left: auto;
  border-left: 14px solid #000;
}

/* Gallery lightbox popup */
.es-gallery__item img {
  cursor: zoom-in;
}

.es-lightbox-open,
.es-lightbox-open body {
  overflow: hidden;
}

.es-lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 74px;
  background: rgba(0, 0, 0, .88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.es-lightbox.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.es-lightbox__figure {
  width: 100%;
  margin: 0;
  text-align: center;
}

.es-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.es-lightbox__caption {
  min-height: 18px;
  margin-top: 14px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.es-lightbox__close,
.es-lightbox__nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.es-lightbox__close {
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 44px;
  font-weight: 300;
}

.es-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 72px;
  transform: translateY(-50%);
}

.es-lightbox__nav--prev {
  left: 18px;
}

.es-lightbox__nav--next {
  right: 18px;
}

.es-lightbox__nav::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.es-lightbox__nav--prev::before {
  transform: rotate(-135deg);
}

.es-lightbox__nav--next::before {
  transform: rotate(45deg);
}

.es-lightbox__close:hover,
.es-lightbox__close:focus,
.es-lightbox__nav:hover,
.es-lightbox__nav:focus {
  opacity: .72;
  outline: none;
}

.ahp-specs {
  padding: 22px 0 72px;
}

.ahp-table-wrap {
    max-width: 1250px;
    margin: auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 400px;
}

.ahp-spec-table {
  min-width: 760px;
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: center;
}

.ahp-spec-table th {
  background: #3c6ebf;
  color: #fff;
  font-weight: 700;
}

.ahp-spec-table th,
.ahp-spec-table td {
  padding: 12px 12px;
  border: 1px solid #e2e5ec;
  width: 120px;
}

.ahp-spec-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: #000;
}

.ahp-spec-table td:nth-child(2) {
  font-weight: 600;
}

.ahp-notes {
    max-width: 1250px;
    margin: 50px auto 0;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    text-align: left;
}

.ahp-image-section {
  padding: 36px 0 70px;
  text-align: center;
}

.ahp-performance {
    width: min(1250px, 100%);
    margin: 32px auto 0;
}

.ahp-dimensions {
    width: min(1250px, 100%);
    margin: 32px auto 0;
}

.ahp-footholes {
    width: min(950px, 100%);
    margin: 100px auto 50px;
}

.ahp-center {
  text-align: center;
}

.ahp-cta { background:#1a1c67; color:#fff; padding:62px 0; }
.ahp-cta__grid { display:grid; grid-template-columns: .9fr 1.1fr; align-items:center; gap:70px; }
.ahp-cta__media img { width:100%; display:block; height:auto; padding-left: 50px; }
.ahp-cta__copy { text-align:center; }
.ahp-cta__copy h2 { color:#fff; margin:0 0 28px; text-transform:uppercase; letter-spacing:clamp(6px, .5vw, 10px); font-size:clamp(28px, 4vw, 48px); line-height:1.25; font-weight:900; }
.ahp-cta__copy p { max-width:620px; margin:0 auto 18px; font-size:16px; line-height:1.55; }
.ahp-cta__copy .ahp-btn { margin-top:18px; }

@media (max-width: 1199px) {
  .es-gallery__arrow--prev {
    left: 5px;
  }
.es-gallery__track {
    margin: 0px 25px;
}
  .es-gallery__arrow--next {
    right: 5px;
  }
}

@media (max-width: 991px) {
.ahp-hero { min-height:485px; position:relative; display:flex; align-items:center; justify-content:center; text-align:center; background-image:url('/images/2023/09/17/arctichp-mb.jpg'); background-size:cover; background-position:center; color:#fff; }

  .ahp-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ahp-info__image {
    order: -1;
  }

  .ahp-heading {
    letter-spacing: 7px;
  }
.ahp-page img {
    padding: 0px 30px;
}
.ahp-note {
  padding: 0px 30px;
}
  .ahp-table-wrap {
    max-width: 800px;
}
.ahp-notes {
    padding: 0px 30px;
}
  .es-gallery__track {
    grid-auto-columns: calc((100% - 52px) / 3);
  }

  .ahp-cta__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ahp-cta__media {
    max-width: 520px;
    margin: auto;
  }
  .ahp-cta__media img { padding: 0px 15px !important; }
  .ahp-cta__copy { padding: 0 15px; }
}

@media (max-width: 767px) {
.ahp-container {
    width: 100%;
    padding: 0px 15px !important;
    margin: 0 auto;
}

  .ahp-hero__split {
    display: none;
  }

  .ahp-hero h1 {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .ahp-hero p {
    font-size: 16px;
    max-width: 450px;
  }

  .ahp-btn {
    font-size: 16px;
    padding: 9px 16px;
    letter-spacing: 1.5px;
  }

  .ahp-intro {
    padding: 58px 0 42px;
  }

  .ahp-heading {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .ahp-text {
    font-size: 16px;
  }

  .ahp-info-grid {
    gap: 20px;
  }

  .ahp-info__image img {
    width: 100%;
  }

  .ahp-cost {
    padding: 26px 0 20px;
  }

  .ahp-chart {
    margin-bottom: 28px;
  }

.ahp-note {
    font-size: 14px;
    text-align: center;
    padding: 0px 15px;
}

  .es-gallery-section {
    padding-bottom: 70px;
  }

  .es-gallery__track {
    grid-auto-columns: 100%;
    gap: 0px;
    padding: 0px;
  }

  .es-gallery__arrow {
    display: block;
  }

  .ahp-specs {
    padding: 10px 0 48px;
  }

  .ahp-spec-table {
    font-size: 14px;
    min-width: 120px;
  }

  .ahp-spec-table th,
  .ahp-spec-table td {
    padding: 7px 8px;
  }

  .ahp-notes {
    font-size: 14px;
  }

  .ahp-image-section {
    padding: 28px 0 48px;
  }

  .ahp-performance,
  .ahp-dimensions {
    margin-top: 22px;
  }

  .ahp-footholes {
    margin-top: 34px;
  }

.ahp-cta { padding:46px 0; }
}@media (min-width: 992px) {}@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}#retrina_grand_information_28_1_0_grand_1{position:relative;  padding-left:0px !important ;padding-right:0px !important ;padding-top:0px !important ;padding-bottom:0px !important ;  padding-right: calc(1.5rem * 0.5);padding-left: calc(1.5rem * 0.5);max-width:initial; width:calc(100vw); left: calc(50%); right: calc(50%); margin-left:calc(-50vw); margin-right:calc(-50vw); } #retrina_grand_information_28_1_0_grand_1:after{width:100vw;height:100%;position:absolute;top:0;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;z-index:-1;} 