.es-container {
  width: 100%;
  margin: 0 auto;
}

.es-container--narrow {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.es-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 25px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.es-btn:hover,
.es-btn:focus {
  background: currentColor;
  text-decoration: none !important;
}

.es-btn:hover span,
.es-btn:focus span {
  color: #fff;
}

.es-btn--white {
  color: #fff;
}

.es-btn--white:hover,
.es-btn--white:focus {
  background: #fff;
  border-color: #fff;
}

.es-btn--white:hover span,
.es-btn--white:focus span {
  color: ##1e2472;
}

.es-btn--dark {
  color: #111;
}

.es-btn--dark:hover,
.es-btn--dark:focus {
  background: #111;
  border-color: #111;
}

.es-btn--dark:hover span,
.es-btn--dark:focus span {
  color: #fff;
}

/* Hero */
.es-hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #273480;
  background-image: url('/images/2023/09/16/energy-bg.jpg');
  background-size: cover;
  background-position: center center;
}

.es-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 100%);
  pointer-events: none;
}

.es-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 22px;
}

.es-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.8em, 4.6vw, 52px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(6px, .5vw, 10px);
}

.es-hero p {
  max-width: 750px;
  margin: 20px auto 40px;
  color: #fff;
  font-size: 24px;
  line-height: 1.48;
  font-weight: 500;
}

/* Intro */
.es-intro {
  padding: 62px 0 92px;
  text-align: center;
}

.es-intro p {
  margin: 0;
  color: #242424;
  font-size: 16px;
  line-height: 1.6;
}

.es-intro p + p {
  margin-top: 0;
}

/* Feature blocks */
.es-feature {
  padding: 0 0 102px;
}

.es-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: center;
  gap: 50px;
}
.es-feature__grid.es-feature__grid--reverse-ratio {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}
.es-feature__copy {
  text-align: center;
  padding: 0 15px;
}

.es-feature__copy--left {
  padding-left: 0;
}

.es-feature h2 {
  margin: 0 0 34px;
  color: #050505;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.22;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(6px, .5vw, 10px);
}

.es-feature p {
  max-width: 750px;
  margin: 0 auto 24px;
  color: #222;
  font-size: 16px;
  line-height: 1.58;
}

.es-feature p + .es-btn,
.es-feature p:last-of-type + .es-btn {
  margin-top: 12px;
}
.es-feature__media picture {
  display: block;
  width: 100%;
}

.es-feature__media picture img {
  display: block;
  width: 100%;
  height: auto;
}
.es-feature__media {
  margin: 0;
  text-align: center;
}

.es-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.es-feature__media--round img {
  max-width: 650px;
}

.es-feature__media--wide img {
  max-width: 650px;
}

.es-feature__media--pump img {
  max-width: 660px;
}

.es-feature--thermal {
  padding-top: 0px;
  padding-bottom: 0px;
}

.es-feature--pump {
  padding-bottom: 128px;
}

/* Gallery */
.es-gallery-section {
  padding: 0 0 112px;
}

.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;
}

/* CTA */
.es-contact {
  padding: 64px 0 72px;
  background: #1a1c67;
  color: #fff;
}

.es-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  align-items: center;
  gap: 50px;
}

.es-contact__image img {
  display: block;
  width: 100%;
  height: auto;
  padding-left: 50px;
}

.es-contact__content {
  text-align: center;
}

.es-contact h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(1.8em, 4vw, 44px);
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(6px, .5vw, 10px);
}

.es-contact p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.es-contact .es-btn {
  margin-top: 12px;
}

@media (max-width: 1199px) {
  .es-gallery__arrow--prev {
    left: 5px;
  }
.es-gallery__track {
    margin: 0px 25px;
}
  .es-gallery__arrow--next {
    right: 5px;
  }
 .es-contact__image img {
   padding: 0px 15px;
 }
  .es-feature__copy {
    padding: 0 15px 0 15px !important;
}
}

@media (max-width: 991px) {
  .es-hero {
    min-height: 500px;
  }

  .es-feature__grid {
    gap: 42px;
  }

  .es-gallery__track {
    grid-auto-columns: calc((100% - 52px) / 3);
  }

  .es-contact__grid {
    gap: 44px;
  }
}

@media (max-width: 767px) {
  .es-container,
  .es-container--narrow {
    width: min(100% - 24px, 540px);
	padding: 0px 15px;
  }

  .es-hero {
    min-height: 570px;
    background-image: url('/images/2023/09/16/energy-bg-mb.png');
    background-position: center center;
  }

  .es-hero__inner {
    padding-top: 36px;
  }

  .es-hero h1 {
    margin-bottom: 18px;
  }

  .es-hero p {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
  }

  .es-intro {
    padding: 42px 0 58px;
  }

  .es-feature,
  .es-feature--thermal,
  .es-feature--pump {
    padding-bottom: 64px;
  }

  .es-feature--thermal {
    padding-top: 6px;
  }

  .es-feature__grid,
  .es-contact__grid,
  .es-feature__grid.es-feature__grid--reverse-ratio {
    grid-template-columns: 1fr;
  }

  .es-feature__grid {
    gap: 28px;
  }

  .es-feature__media--wide,
  .es-feature__media--pump,
  .es-feature__media--round  {
    order: 1;
  }

  .es-feature__copy {
    order: 2;
  }

  .es-feature h2 {
    margin-bottom: 22px;
    font-size: clamp(1.6em, 6vw, 38px);
    letter-spacing: 5px;
  }

  .es-feature p {
    font-size: 16px;
  }

  .es-feature__media--bleed-left {
    margin-left: 0;
  }

  .es-feature__media--round img,
  .es-feature__media--wide img,
  .es-feature__media--pump img {
    max-width: 100%;
  }

  .es-gallery-section {
    padding-bottom: 70px;
  }

  .es-gallery__track {
    grid-auto-columns: 100%;
    gap: 0px;
    padding: 0px;
  }

  .es-gallery__arrow {
    display: block;
  }

  .es-contact {
    padding: 46px 0 52px;
  }

  .es-contact__grid {
    gap: 32px;
  }

  .es-contact__image {
    order: 1;
  }

 .es-contact__content {
    order: 2;
    padding: 0px 15px;
}

  .es-contact p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .es-btn {
    min-height: 36px;
    padding: 9px 16px;
    font-size: 16px;
    letter-spacing: 1.6px;
  }

  .es-hero {
    min-height: 570px;
  }

  .es-contact h2 {
    letter-spacing: 5px;
  }
}@media (min-width: 992px) {}@media (min-width: 768px) and (max-width: 991px) {}@media (max-width: 767px) {}#retrina_grand_information_15_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_15_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;} 