.es-banner {
  --es-blue: #0b3f70;
  --es-blue-deep: #073762;
  --es-green: #6fb12f;
  --es-green-deep: #4f861c;
  --es-text: #10233a;
  --es-white: #fff;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4.2vw, 56px) 150px;
  color: var(--es-text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 31%, rgba(255, 255, 255, .7) 44%, rgba(255, 255, 255, .08) 67%),
    url("./assets/energy-banner-bg.png") right center / 86% no-repeat;
  box-shadow: 0 24px 60px rgba(7, 55, 98, .16);
}

.es-banner,
.es-banner * {
  box-sizing: border-box;
}

.es-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .9), transparent 22%),
    linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, .42) 39%, transparent 45% 100%);
  transform: translateX(-65%);
  animation: es-shine 5.8s ease-in-out infinite;
  pointer-events: none;
}

.es-banner .bi {
  display: inline-block;
  line-height: 1;
  flex: 0 0 auto;
}

.es-banner__copy {
  position: relative;
  z-index: 2;
  width: min(520px, 47%);
}

.es-brand {
  display: inline-block;
  width: min(300px, 100%);
  margin-bottom: clamp(28px, 4vw, 50px);
  text-decoration: none;
}

.es-brand img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
}

.es-banner__headline {
  text-transform: uppercase;
}

.es-banner__headline h1 {
  margin: 0;
  color: var(--es-blue);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}

.es-banner__headline p {
  margin: 4px 0 0;
  color: var(--es-green);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.03;
  font-weight: 900;
}

.es-banner__lead {
  max-width: 500px;
  margin: 22px 0 26px;
  color: #253241;
  font-size: 19px;
  line-height: 1.4;
}

.es-benefits {
  display: grid;
  gap: 18px;
}

.es-benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.es-benefit__icon {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--es-white);
  background: var(--es-green);
  font-size: 25px;
}

.es-benefit strong,
.es-service-list li,
.es-bottom-strip strong,
.es-green-badge strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0;
}

.es-benefit strong {
  color: var(--es-blue);
  font-size: 18px;
}

.es-benefit em {
  display: block;
  margin-top: 4px;
  color: #263344;
  font-size: 15px;
  line-height: 1.35;
  font-style: normal;
}

.es-service-list {
  position: absolute;
  left: min(560px, 48%);
  bottom: 198px;
  z-index: 2;
  width: 315px;
  margin: 0;
  padding: 0 0 0 34px;
  list-style: none;
  border-left: 2px solid rgba(111, 177, 47, .55);
}

.es-service-list li {
  position: relative;
  display: flex;
  gap: 12px;
  margin: 0 0 18px;
  color: #16283a;
  font-size: 17px;
  line-height: 1.3;
  text-transform: none;
}

.es-service-list .bi {
  margin-top: 2px;
  color: var(--es-green);
  font-size: 18px;
}

.es-green-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: clamp(170px, 17vw, 220px);
  min-height: 185px;
  padding: 34px 26px 24px;
  border-bottom-left-radius: 72px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  color: var(--es-white);
  text-align: center;
  background: linear-gradient(145deg, var(--es-green-deep), #5a901f);
  text-transform: uppercase;
}

.es-green-badge__icon {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  border: 4px solid var(--es-white);
  border-radius: 50%;
  font-size: 36px;
}

.es-green-badge strong,
.es-green-badge span {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
}

.es-bottom-strip {
  position: absolute;
  left: clamp(20px, 3.2vw, 40px);
  right: clamp(20px, 3.2vw, 40px);
  bottom: 24px;
  z-index: 3;
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  padding: 0 36px;
  border-radius: 8px;
  color: var(--es-white);
  background: linear-gradient(90deg, var(--es-blue-deep), #0d4678);
  box-shadow: 0 15px 40px rgba(7, 55, 98, .2);
}

.es-bottom-strip div {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(111, 177, 47, .65);
}

.es-bottom-strip div:last-child {
  border-right: 0;
}

.es-bottom-strip__icon {
  grid-row: span 2;
  color: var(--es-green);
  font-size: 46px;
}

.es-bottom-strip strong {
  font-size: 19px;
  line-height: 1.1;
}

.es-bottom-strip em {
  margin-top: 3px;
  font-size: 18px;
  line-height: 1.1;
  font-style: normal;
  text-transform: uppercase;
}

@keyframes es-shine {
  0%, 42% {
    opacity: 0;
    transform: translateX(-65%);
  }
  58% {
    opacity: .85;
  }
  100% {
    opacity: 0;
    transform: translateX(68%);
  }
}

@media (max-width: 1180px) {
  .es-banner {
    min-height: 680px;
    background-position: 61% center;
  }

  .es-banner__copy {
    width: min(470px, 54%);
  }

  .es-service-list {
    display: none;
  }

  .es-benefits {
    display: none;
  }

  .es-bottom-strip {
    padding: 0 20px;
  }

  .es-bottom-strip div {
    grid-template-columns: 46px 1fr;
    padding: 0 18px;
  }

  .es-bottom-strip__icon {
    font-size: 38px;
  }

  .es-bottom-strip {
    grid-template-columns: 1fr 1fr;
  }

  .es-bottom-strip div:nth-child(3) {
    display: none;
  }
}

@media (max-width: 900px) {
  .demo-page {
    padding: 18px 10px;
  }

  .es-banner {
    min-height: 620px;
    padding: 28px 24px 96px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .3) 100%),
      url("./assets/energy-banner-bg.png") 64% center / cover no-repeat;
  }

  .es-banner__copy {
    width: min(440px, 65%);
  }

  .es-brand {
    width: 245px;
    margin-bottom: 28px;
  }

  .es-banner__lead {
    font-size: 17px;
  }

  .es-green-badge {
    width: 142px;
    min-height: 132px;
    padding: 20px 16px 18px;
    border-bottom-left-radius: 48px;
  }

  .es-green-badge__icon {
    width: 48px;
    font-size: 27px;
  }

  .es-green-badge strong,
  .es-green-badge span {
    font-size: 13px;
  }

  .es-bottom-strip {
    min-height: 84px;
    padding: 0 12px;
  }

  .es-bottom-strip div {
    grid-template-columns: 34px 1fr;
    column-gap: 10px;
    padding: 0 10px;
  }

  .es-bottom-strip__icon {
    font-size: 30px;
  }

  .es-bottom-strip strong,
  .es-bottom-strip em {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .es-banner {
    min-height: 620px;
    padding: 22px 18px 86px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 43%, rgba(255, 255, 255, .2) 75%),
      url("./assets/energy-banner-bg.png") 57% bottom / auto 72% no-repeat,
      linear-gradient(#d8edf8, #f7fbff);
  }

  .es-banner__copy {
    width: 100%;
    max-width: 430px;
  }

  .es-brand {
    width: 210px;
  }

  .es-banner__headline h1 {
    font-size: 32px;
  }

  .es-banner__headline p {
    max-width: 330px;
    font-size: 25px;
  }

  .es-banner__lead {
    max-width: 360px;
    font-size: 15px;
  }

  .es-benefits {
    display: none;
  }

  .es-green-badge {
    display: none;
  }

  .es-bottom-strip {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 64px;
    grid-template-columns: 1fr 1fr;
    padding: 0 8px;
  }

  .es-bottom-strip div {
    grid-template-columns: 28px 1fr;
    padding: 0 8px;
  }

  .es-bottom-strip div:nth-child(3) {
    display: none;
  }

  .es-bottom-strip__icon {
    font-size: 24px;
  }

  .es-bottom-strip strong {
    font-size: 12px;
  }

  .es-bottom-strip em {
    display: none;
  }
}

@media (max-width: 420px) {
  .es-banner {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, .18) 78%),
      url("./assets/energy-banner-bg.png") 53% bottom / auto 62% no-repeat,
      linear-gradient(#d8edf8, #f7fbff);
  }

  .es-brand {
    width: 180px;
    margin-bottom: 22px;
  }

  .es-banner__headline h1 {
    font-size: 27px;
  }

  .es-banner__headline p {
    max-width: 290px;
    font-size: 21px;
  }

  .es-banner__lead {
    max-width: 285px;
    margin-top: 16px;
  }

  .es-bottom-strip {
    min-height: 58px;
  }

  .es-bottom-strip__icon {
    font-size: 21px;
  }
}
