/* Build stamp: 2026-06-02T17:27:58.537Z */
/* v2 is refresh on 2026-04 */
:root {
  --bg: #f2f5f3;
  --paper: #ffffff;
  --ink: #1d2d2a;
  --muted: #4a615c;
  --brand: #005f4f;
  --brand-strong: #004739;
  --line: #d7e1dd;
  /* Semantic fluid typography tokens for font-size (min @ mobile -> max @ desktop). */
  --fs-hero-title: clamp(1.375rem, 0.7588rem + 2.6291vw, 3.125rem); /* 22px -> 50px */
  --fs-v2-body: clamp(1.1458rem, 0.669rem + 2.0344vw, 2.5rem); /* 18.33px -> 40px */
  --fs-v2-h3: clamp(1.25rem, 1.0299rem + 0.939vw, 1.875rem); /* 20px -> 30px */
  --fs-v2-h2: clamp(2.8125rem, 2.4824rem + 1.4085vw, 3.75rem); /* 36px -> 60px */
  --fs-v2-h1: clamp(4.375rem, 3.8028rem + 2.4413vw, 6rem); /* 70px -> 96px */
  --fluid-44-102: clamp(2.75rem, 1.4736rem + 5.446vw, 6.375rem); /* 44px -> 102px */
  --fluid-40-100: clamp(2.5rem, 1.1796rem + 5.6338vw, 6.25rem); /* 40px -> 100px */
  --fluid-29-60: clamp(1.8125rem, 1.1303rem + 2.9108vw, 3.75rem); /* 29px -> 60px */
  --footnotes: clamp(0.9375rem, 0.8275rem + 0.4695vw, 1.25rem); /* 15px -> 20px */
  --fluid-40-70: clamp(2.5rem, 1.8398rem + 2.8169vw, 4.375rem); /* 40px -> 70px */
  --fluid-30-60 : clamp(1.875rem, 1.2148rem + 2.8169vw, 3.75rem); /* 30px -> 60px */
  --fluid-20-30: clamp(1.25rem, 1.0299rem + 0.939vw, 1.875rem); /* 20px -> 30px */
  --fluid-18-24: clamp(1.125rem, 0.993rem + 0.5634vw, 1.5rem); /* 18px -> 24px */
  --fluid-24-40: clamp(1.5rem, 1.1479rem + 1.5023vw, 2.5rem); /* 24px -> 40px */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
}

.site-header,
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  flex-direction: column;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}

.brand,
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.container {
  width: min(100% - 2rem, 980px);
  margin-inline: auto;
}

.hero {
  padding: 3rem 0 2.5rem;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.2rem 0 0.8rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 65ch;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  border-radius: 0.6rem;
  padding: 0.72rem 1.1rem;
  font-weight: 600;
}

.button:hover {
  background: var(--brand-strong);
}

.features {
  padding: 1.5rem 0 2.5rem;
}

.content-section {
  padding: 0 0 2rem;
}

.content-section .container {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1.2rem;
}

.content-section--theme-muted .container {
  background: #e8f0ed;
}

.content-list {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.content-list li+li {
  margin-top: 0.35rem;
}

.stats-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1rem;
}

.stats-title{
  font-size: var(--stat-title-size);
  font-weight: 400;
  color: #5A5A5A;
  margin: 0 0 0 0.5rem;
}

.stat-card {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #f8fbfa;
}

.stat-value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-label {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.quote-block {
  margin: 0;
  padding: 0.4rem 0 0.4rem 1rem;
}

.quote-block blockquote {
  margin: 0;
  font-size: 1.15rem;
}

.quote-block figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
}

.image-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.inline-white-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.inline-white-link:hover,
.inline-white-link:focus {
  color: #ffffff;
}

.image-text--left {
  grid-template-columns: 1fr;
}

.image-text__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1rem;
}

.cta-wrap {
  padding: 0 0 2.5rem;
}

.cta {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1.2rem;
}

.stack {
  padding: 2.2rem 0;
}

.link-list {
  padding-left: 1rem;
}

@media (min-width: 600px) {

  .site-header,
  .site-footer {
    flex-direction: row;
    align-items: center;
  }

  .image-text,
  .image-text--left {
    grid-template-columns: 1.2fr 1fr;
  }

  .image-text--left {
    grid-template-columns: 1fr 1.2fr;
  }

  .image-text--left .image-text__content {
    order: 2;
  }

  .image-text--left .image-text__media {
    order: 1;
  }
}

/* --- Lets Deliver styles (extracted from provided HTML) --- */

@font-face {
  font-family: "EMPrint-Regular";
  src: url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Regular-web.woff2") format("woff2"),
    url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Regular-web.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EMPrint-Bold";
  src: url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Bold-web.woff2") format("woff2"),
    url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Bold-web.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EMPrint-SemiBold";
  src: url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Semibold-web.woff2") format("woff2"),
    url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Semibold-web.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EMPrint-CondensedBold";
  src: url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Condensed-Bold_web.woff2") format("woff2"),
    url("https://mobilserv.mobil.com/fonts/em/EMprint-W05-Condensed-Bold_web.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "EMPrint-Regular", sans-serif !important;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding-top: 20px;
  padding-left: 22px;
  background-color: white;
}

.title_logo {
  width: 100%;
  margin-bottom: 15px;
}

.title_logo img {
  height: 70px;
  width: auto;
}

.layout-canvas-g {
  background-color: #fff;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1440px;
}

body {
  color: #000;
  font-family: "EMPrint-regular", sans-serif;
  font-size: 12px;
  margin: 0;
}

.checkbox-error {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.field-error {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.error-input {
  border: 1px solid #ff6b6b !important;
}

.form-group {
  margin-bottom: 15px;
}

.sectionvideo {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  color: #000;
  overflow: hidden;
  background-color: #f8f8f8f8;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 900 / 612;
  min-height: 370px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to right, #f8f8f8f8 0%, #f8f8f8f8 18%, rgba(248, 248, 248, 0) 55%);
}

@media (min-width: 600px) {
  .hero-media::after {
    background: linear-gradient(to right, #f8f8f8f8 0%, #f8f8f8f8 10%, rgba(248, 248, 248, 0) 45%);
  }
}

@media (min-width: 1440px) {
  .hero-media {
    height: 533px !important;
    min-height: 533px !important;
    max-height: 533px !important;
    aspect-ratio: auto !important;
  }

  .hero-bg {
    object-fit: cover !important;
    object-position: 50% 0% !important;
  }
}

.hero-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.15);
  transition: transform 2.5s ease-out;
}

.hero-copy h1,
.hero-copy .caption2,
.hero-copy .custom__cta {
  opacity: 0;
  transform: translateY(40px); 
  transition: all 1s ease;
}

.hero-active .hero-bg {
  transform: scale(1);
}

.hero-active .hero-copy h1,
.hero-active .hero-copy .caption2,
.hero-active .hero-copy .custom__cta {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy .caption2 {
  transition-delay: 0.2s;
}

.hero-copy .custom__cta {
  transition-delay: 0.4s;
}

.hero-bg[data-loaded="1"] {
  opacity: 1;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  color: black;
  top: 16px;
  left: 16px;
  width: min(76vw, 320px);
  max-width: calc(100% - 32px);
  box-sizing: border-box;
}

.stats-section {
  padding: 24px 0 0px;
  max-width: 920px;
  margin: 0 auto;
}

.stats-container {
  padding: 16px 0;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 30px;
}

.stats-heading {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.stats-desc {
  margin: 0;
}

.stats-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.stats-source {
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.source-button {
  text-decoration: underline;
  background: none;
  border: none;
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 12px;
  color: #5A5A5A;
  cursor: pointer;
}

.source-panel {
  margin-top: 24px;
  width: 100%;
  background: #D9D9D9;

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-10px);

  transition: 
    max-height 0.5s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.source-panel.active {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}

.source-content {
  text-align: left;
  margin: auto;
  padding: 30px;
  position: relative;
  color: #5A5A5A;
  font-size: 12px;
  line-height: 24px;
  max-width: 943px;
  display: flex;
  flex-direction: row-reverse;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.source-panel.active .source-content {
  transform: translateY(0);
  opacity: 1;
}

.source-close {
  position: relative;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  display: flex;
}

@media (min-width: 768px) {
  .source-content {
    display: block;
    flex-direction: initial;
  }

  .source-close {
    position: absolute;
    top: 35px;
    right: -15px;
    display: block;
  }
}

.source-hyper {
  color: #5A5A5A;
}

.source-button {
  background: none;
  border: none;
  text-decoration: underline;
  color: #777;
  cursor: pointer;
  font-size: 14px;
}

.stat-item {
  flex: 1;

  .stat-top {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
  }

}

.stat-item2 {
  flex: 1;

  .stat-top {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    .stat-text {
      font-size: 24px;
      color: #5A5A5A;
      margin-bottom: 5px;
    }
  }
}

.stat-value {
  font-size: var(--stat-value-size);
  font-weight: 600;
  color: #FE000C; 
  line-height: .90;
  font-family: "EMPrint-SemiBold", sans-serif;
}

.stat-title {
  font-size: var(--fluid-40-70);
  font-weight: 600;
  line-height: .90;
  color: #5A5A5A;
  font-family: "EMPrint-SemiBold", sans-serif;
}

.stat-desc {
  font-size: var(--fluid-18-24);
  color: #5A5A5A;
  margin-top: 20px;
  padding: 0px 6px;
  align-content: center;
}

.stat-item2 .stat-top {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.stat-item2 .stat-text {
  margin-bottom: 0;
}

.stat-item2 .stat-title {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.2rem;
}

.stats-below {
  text-align: center;
  margin: 112px 0;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
  font-family: "EMPrint-SemiBold", sans-serif;

    @media (max-width: 767px) {
      margin-top: 86px;
      margin-bottom: 68px;
    }
  h2 {
    color: #5A5A5A;
    font-size: var(--fluid-24-40);
    line-height: 1;
    font-family: "EMPrint-Regular", sans-serif;
    font-weight: normal;

    @media (max-width: 767px) {
      max-width: 355px;
      margin: auto;
    }
  }

  h1 {
    font-size: var(--fluid-40-100);
    line-height: 1;
    color: #FE000C;
    margin-top: 12px;
    margin-bottom: 12px;    
  }
}

.stats-below.active {
  opacity: 1;
  transform: translateY(0);
}

.stats-sup,
.stats-sub {
  font-size: 0.55em;
  line-height: 0;
  margin-left: 2px;
}

.stats-sup--red {
  vertical-align: super;
  color: #FE000C;
}

.stats-sub {
  vertical-align: sub;
}

@media (min-width: 768px) {
  .stats-section {
    padding-top: 60px;
  }

  .stat-desc--wide-right {
    width: 450px;
    max-width: calc(100vw - 32px);
    text-align: center;
  }

  .stats-container {
    gap: 40px;
  }

  .stats-items {
    flex-direction: row;
    gap: 72px;
  }

  .stat-value {
    line-height: .9;
  }

  .stat-title {
    line-height: .9;
  }

  .stat-item .stat-value,
  .stat-item .stat-title,
  .stat-item2 .stat-title {
    display: block;
  }

  .stat-item .stat-title,
  .stat-item2 .stat-title {
    margin-left: 0;
  }

  .stat-item2 .stat-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .stat-item2 .stat-text {
    margin-bottom: 5px;
  }
}

.sectionvideo h1 {
  font-family: "EMPrint-regular", sans-serif;
  /* font-size: 22px; */
  font-size: var(--fs-hero-title);
  line-height: 1.2;
  font-weight: 400;
  color: #0C479D;
  margin: 10px 0 12px 0;
  width: 220px;
}

.sectionvideo .caption {
  font-size: 13px;
  line-height: 1.5em;
  margin-bottom: 20px;
  width: 203px;
}

.sectionvideo .caption2 {
  font-size: 13px;
  line-height: 1.5em;
  margin-bottom: 20px;
  width: 203px;
}

.tm {
  display: inline-block;
  font-size: .5em;
  line-height: 0;
  vertical-align: super;
}

.custom__ctav1 {
  display: inline-block;
  background: #FE000C;
;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.custom__cta {
  font-family: "EMPrint-Bold", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #FE000C;
  text-decoration: none;
  font-weight: 700;
  line-height: 33.727px;
  font-size: 12px;
}

.cta-arrow {
  width: 1.1em;      /* scales with text */
  height: auto;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-arrows {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  top: -2px;
}

.cta-arrows svg {
  display: block;
}

.cta-arrows svg:first-child {
  margin-left: 6px;
  position: relative;
  top: 2px;
  margin-bottom: -2px;
}

.cta-arrows svg:nth-child(2) {
  margin-left: 2px;
  position: relative;
  top: 0px;
  margin-top: -2px;
}

@media (min-width: 768px) {
  .cta-arrows {
    top: 0;
  }

  .custom__cta {
    font-size: 20px;
  }

}

.cta-right {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.cta-right svg {  
  display: block;
}

.v2-blocks {
  width: 100%;
}

.v2-block {
  display: flex;
  flex-direction: column;
}

.v2-blocks--policy .v2-block {
  flex-direction: column-reverse;
}

.block-image {
  position: relative;
}

.block-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.block-image .block-image-overlay__eyebrow,
.block-image .block-image-overlay__body {
  margin: 0;
  color: inherit;
  font-family: "EMPrint-Regular", sans-serif;
  font-size: var(--fluid-44-102);
  font-weight: 600;
}

.block-image .block-image-overlay__title {
  margin: 6px 0;
  color: inherit;
  font-family: "EMPrint-Bold", sans-serif;
  font-size: var(--fluid-44-102);
  line-height: 1.05;
}

.block-image .block-image-overlay__body {
  font-size: var(--fluid-29-60);
  font-weight: 600;
  line-height: 1.35;
}

.block-image:has(.block-image-overlay)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.block-image-overlay {
  z-index: 1;
}

.block-image img {
  width: 100%;
  display: block;
}

.block-content {
  background: #1f4e99;
  /* blue */
  color: white;
  padding: 40px 20px;
}

.two-col-blocks {
  width: 100%;
}

/* Let two-col rows break out of the padded .below-hero wrapper on small screens. */
.below-hero .two-col-blocks {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}

.two-col-row {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: auto;
  grid-template-areas:
    "text"
    "image";
}

/* Prevent grid items from forcing horizontal overflow on narrow screens. */
.two-col-row > * {
  min-width: 0;
}

.two-col-text {
  grid-area: text;
  min-height: 301px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1f4e99;
  color: #fff;
}

.two-col-text h2 {
  margin: 0 0 12px 0;
}

.two-col-copy {
  margin-bottom: 0px;
  padding-left: 52px;
  padding-right: 52px;
}

.two-col-copy--text-small-tight {
  padding-left: 8px;
  padding-right: 8px;
}

.two-col-image {
  grid-area: image;
  min-height: 301px;
  height: 100%;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col-row--reverse {
  grid-template-areas:
    "text"
    "image";
}

@media (min-width: 1024px) {
  .below-hero .two-col-blocks {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .two-col-row {
    grid-template-columns: 1fr 1fr;
    min-height: 578px;
    grid-template-areas: "text image";
  }

  .two-col-row--reverse {
    grid-template-areas: "image text";
  }

  .two-col-text {
    padding: 60px 40px;
  }
}

.block-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 0px;
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.block-left {
  flex: 1 1 auto;
}

@media (min-width: 769px) {
  .block-left h2 {
    position: relative;
    top: -10px
  }
}

.block-right {
  flex: 1 1 auto;
  min-width: 0;
}

.block-left h2,
.block-right h3,
.block-right .cta-btn {
  opacity: 0;
  transform: translateY(-40px); 
  transition: all 0.8s ease;
}

.block-content.active .block-left h2,
.block-content.active .block-right h3,
.block-content.active .block-right .cta-btn {
  opacity: 1;
  transform: translateY(0);
}

.block-content.active .block-right h3 {
  transition-delay: 0.2s;
}

.block-content.active .block-right .cta-btn {
  transition-delay: 0.4s;
}

@media (min-width: 1024px) {
  .block-content {
    padding: 60px 40px;
  }

  .block-inner {
    flex-direction: row;
    gap: 24px;
    padding-left: 60px;
    padding-right: 20px;    
  }

  .block-left {
    flex: 2.1 1 0;
    min-width: 0;
    transform: translateX(-48px);
  }

  .block-right {
    flex: 3 1 0;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.625rem;
  margin-top: 40px;
  background: #FE000C;
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .cta-btn {
    font-size: 19px;
    padding: 20px 20px;
  }
}

@media (min-width: 600px) {
  .hero-media {
    aspect-ratio: 2800 / 973;
    min-height: 300px;
  }

  .hero-copy {
    top: 24px;
    left: 24px;
    width: min(52vw, 420px);
    max-width: calc(100% - 48px);
  }

  .sectionvideo h1 {
    font-size: clamp(22px, 3.1vw, 50px);
    /* font-size: 32px; */
    line-height: 1.2;
    width: auto;
    margin: 0 0 7px 0;
  }

  .sectionvideo .caption {
    font-size: 16px;
    max-width: 320px;
    width: auto;
  }

  .sectionvideo .caption2 {
    font-size: 16px;
    max-width: 320px;
    width: auto;
  }

  .hero-bg {
    object-position: center;
  }
}

@media (min-width: 768px) {
  .sectionvideo .caption {
    font-size: 18px;
    max-width: 320px;
  }
}

@media (min-width: 1024px) {
  .hero-media {
    min-height: 400px;
  }

  .hero-copy {
    top: 40px;
    left: 40px;
    width: min(40vw, 520px);
    max-width: 520px;
  }

  .sectionvideo h1 {
    font-size: 50px;
    line-height: normal;
  }

  .sectionvideo .caption {
    font-size: 22px;
    max-width: none;
  }

  .sectionvideo .caption2 {
    font-size: 24px;
    max-width: none;
  }
}

.ccs-section {
  padding: 60px 40px;
  background: #fff;
}

.ccs-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.ccs-left {
  flex: 1 1 50%;
}

.ccs-left h2 {
  font-size: 20px;
  color: #e21b22;
  font-weight: bold;
  margin: 0 0 16px;
}

@media (min-width: 1024px) {
  .ccs-left h2 {
    font-size: 25px;
  }
}

.ccs-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px;
}

.ccs-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #FE000C;
  background: #fff;
  color: #FE000C;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}

.ccs-btn:hover {
  background: #e21b22;
  color: #fff;
}

.ccs-right {
  flex: 1 1 45%;
  text-align: center;
}

.video-embed {
  position: relative;
  display: block;
  max-width: 960px;
  margin: 0 auto;
}

.video-embed-inner {
  position: relative;
  padding-top: 56.25%;
}

.video-embed-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.nav-tabs {
  display: flex;
  gap: 20px;
  padding: 12px 23px;
  background: #f8f8f8f8;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.nav-tabs a {
  text-decoration: none;
  color: #444;
  padding-bottom: 5px;
  position: relative;
  cursor: pointer;
}

.nav-tabs a.active,
.nav-tabs a:hover {
  color: #000;
}

.nav-tabs a.active::after,
.nav-tabs a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #e21b22;
}

.below-hero {
  padding: 20px 20px;
  margin: 0 auto;
  text-align: left;
}

.below-hero-v2 {
  padding: 0px 0px;
  padding-top: 48px;
  margin: 0 auto;
  text-align: left;
}

.below-hero h2 {
  font-size: 20px;
  color: #e21b22;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .below-hero h2 {
    font-size: 25px;
  }
}

.below-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.v2-blocks {
  h1 {
    font-size: var(--fs-v2-h1);
    color: #FFF;
    line-height: 1.25;
    margin: 0;
    text-align: center;
    font-weight: 400;
  }

  h2 {
    font-size: min(var(--fs-v2-h2), 3.75rem);
    color: #FFF;
    line-height: 1.3;
    font-weight: 400;
    margin: 0;
  }

  h3 {
    font-size: var(--fs-v2-h3);
    color: #FFF;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
  }

  p {
    font-size: min(var(--fs-v2-body), 1.875rem);
    color: #FFF;
    line-height: 1.45;
    margin: 0;
  }

}

@media (max-width: 767px) {
  .two-col-copy {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.headline-block+.headline-block {
  margin-top: 40px;
}

.carbon-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
}

.carbon-flex .left {
  flex: 1 1 100%;
}

.carbon-flex .right {
  flex: 1 1 100%;
  text-align: center;
}

.carbon-flex h3 {
  font-size: 20px;
  color: #e21b22;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {
  .carbon-flex h3 {
    font-size: 25px;
  }
}

.carbon-flex p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.watch-btn {
  display: inline-block;
  border: 2px solid #e21b22;
  color: #e21b22;
  background: #fff;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.watch-btn:hover {
  background: #e21b22;
  color: #fff;
}

.carbon-video {
  max-width: 100%;
  border-radius: 8px;
}

.carbon-center {
  text-align: center;
  margin-top: 40px;
}

.carbon-center p {
  font-size: 27px;
  line-height: 1.6;
  color: #333;
}

.carbon-text h1 {
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
}

.carbon-text h2 {
  text-align: center;
  font-weight: 100;
  font-size: 20px;
  margin-top: 10px;
  color: #000;
}

.form-section {
  background-color: #005bac;
  color: #fff;
  padding: 60px 0px;
  width: 100%;
  box-sizing: border-box;
}

.form-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.form-section h1 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: bold;
}

.form-section h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: normal;
  color: #fff;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-section input,
.form-section select {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  box-sizing: border-box;
}

.form-section button {
  background-color: #e21b22;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.form-section button:hover {
  background-color: #c0181e;
}

.form-section small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
  color: #eee;
}

.success-message {
  display: none;
  text-align: center;
  padding: 15px;
  background-color: #dff2bf;
  color: #4f8a10;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 14px;
}

.three-column-section {
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 48px;
  background-color: #f8f8f8;
  display: none;
}

.three-column-container {
  max-width: 1200px;
  margin: 0 auto;
}

.three-column-title {
  text-align: center;
  font-size: 25px;
  margin-bottom: 40px;
  color: #FE000C;
  font-weight: bold;
  font-family: "EMPrint-SemiBold", sans-serif;
}

@media (min-width: 1024px) {
  .three-column-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .three-column-title {
    font-size: 18px;
  }
}

.columns-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  align-items: stretch;
  flex-direction: column;
}

.column {
  flex: 1 1 30%;
  background: transparent;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.column-image-wrap {
  width: 100%;
  max-width: 536px;
  aspect-ratio: 16 / 9;
  margin: 15px 0;
  border-radius: 12px;
  overflow: hidden;
}

.column-image {
  width: 100%;
  max-width: 536px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin: 0;
  display: block;
}

.column-image-transform {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  display: block;
  transform: scale(1.15);
  transition: transform 1.2s ease;
  will-change: transform;
}

.column.active .column-image,
.column.active .column-image-transform {
  transform: scale(1);
}

.column-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 530px;
}

.column-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #FE000C;
  text-align: left;
  height: 80px;
  font-family: "EMPrint-SemiBold", sans-serif;

  @media (min-width: 601px) {
   font-family: "EMPrint-Regular", sans-serif;
   margin-bottom: 22px;
  }
}

.column-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #5A5A5A;
  margin-bottom: 20px;
  text-align: left;
  font-family: "EMPrint-Regular", sans-serif;

  @media (max-width: 768px) {
   font-family: "EMPrint-Regular", sans-serif;
  }
}

.column-button {
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.625rem;
  color: white;
  background: #FE000C;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "EMPrint-Bold", sans-serif;
  margin-top: auto;
  
}
.column-button:hover {
  background: #e21b22;
  color: #fff;
}

@media (min-width: 601px) {
  .nav-tabs {
    padding: 23px;
  }

  .carbon-flex {
    gap: 30px;
    flex-direction: row;
  }

  .carbon-flex .left,
  .carbon-flex .right {
    flex: 1 1 45%;
  }

  .form-row {
    flex-direction: row;
  }

  .column-title {
    height: 50px;
  }
}

@media (min-width: 768px) {
  .nav-tabs {
    font-size: 15px;
  }
}

@media (min-width: 1025px) {
  .nav-tabs {
    gap: 40px;
    font-size: 18px;
  }

  .columns-wrapper {
    flex-direction: row;
    gap: 90px;
  }

  .column {
    max-width: none;
    margin: 0;
  }
}

.footnotes-wrap {
  padding-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 40px;
  max-width: 540px;
  margin: 0 auto;
  font-family: 'EMPrint-Regular', sans-serif;
  font-weight: 600;
  font-size: var(--footnotes);
  color: #5A5A5A;
}

@media (min-width: 1025px) {
  .footnotes-wrap {
    max-width: 1240px;
  }
}

.footnotes-list {
  margin: 0;
  padding-inline-start: 28px;
}

.footnotes-list li {
  margin: 0;
  padding-left: 0;
  font-family: 'EMPrint-Regular', sans-serif;
  font-size: var(--footnotes);
  line-height: 28px;
  color: #5A5A5A;
  font-weight: 400;
}

.footnotes-list a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footnotes-list li::marker {
  color: #FE000C; /* number */
}

.post-content-extras {
  display: flex;
  flex-direction: column;
}

/* mobile default */
.post-content-extras .footnotes-slot  { order: 1; }
.post-content-extras .newsletter-slot { order: 2; }

/* tablet/desktop override */
@media (min-width: 1024px) {
  .post-content-extras .footnotes-slot  { order: 1; }
  .post-content-extras .newsletter-slot { order: 2; }
}

footer {
  background-color: #232323;
  color: white;
  padding-top: 1rem;
}

.container_footer {
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.container_footer_footer {
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer--top {
  border-bottom: 1px solid #444;
  padding: 8px 22px 32px;
}

.footer--links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-items: start;
}

.footer--link {
  text-decoration: none;
  color: #ccc;
  font-size: 0.875rem;
}

.footer--link:hover {
  color: white;
}

.footer--socialMedia {
  margin-top: 0.75rem;
}

.footer--socialMedia ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
  margin: 0;
}

.footer--socialIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer--socialIcon:hover {
  color: #fff;
}

.footer--socialIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}

.footer--socialIcon:hover .base-icon,
.footer--socialIcon:focus-visible .base-icon {
  opacity: 0;
}

.footer--socialIcon:hover .hover-icon,
.footer--socialIcon:focus-visible .hover-icon {
  opacity: 1;
}

.footer--socialIcon .base-icon {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.footer--socialIcon .hover-icon {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.footer--brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 30px;
  margin-right: 30px;
}

.footer--brandLink img {
  height: 28px;
  transition: opacity 0.3s;
}

.footer--brandLink {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer--brandLink .base-icon {
  position: relative;
  opacity: 1;
}

.footer--brandLink .hover-icon {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.footer--brandLink:hover .base-icon,
.footer--brandLink:focus-visible .base-icon {
  opacity: 0;
}

.footer--brandLink:hover .hover-icon,
.footer--brandLink:focus-visible .hover-icon {
  opacity: 1;
}

.footer--brandLink.mobile-logo {
  order: -1;
  flex-basis: 100%;
  margin-bottom: 0.5rem;
}

.footer--bottom{
    padding: 0px 22px;  
}

.footer--bottom-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer--brands-privacy-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
}

.footer--privacy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: #bbb;
  margin-top: 1rem;
  justify-content: flex-start;
}

.footer--policyWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer--policyWrapper a {
  color: #bbb;
  text-decoration: none;
  position: relative;
}

.footer--policyWrapper a:hover {
  color: white;
}

.footer--policyWrapper a:not(:last-child)::after {
  content: "•";
  margin-left: 1rem;
  pointer-events: none;
}

.footer--copyright {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 1.5rem;
  text-align: left;
}

.visibility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quote-block {
  max-width: 850px;
  margin: 40px auto;
  padding: 24px 20px 16px;
  text-align: center;
  background: #fff;
}

.quote-logo {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  filter: invert(17%) sepia(93%) saturate(4510%) hue-rotate(352deg) brightness(90%) contrast(96%);
}

.quote-copy {
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #0C479D;
  margin: 0 auto 16px;
  max-width: 980px;
  text-align: left;
}

.quote-meta {
  margin-top: 8px;
}

.quote-meta--with-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin: 16px auto 0;
  max-width: 980px;
  text-align: left;
}

.quote-image-frame {
  display: block;
  flex: 0 0 147px;
  width: 147px;
  height: 147px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px #fff;
}

.quote-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.quote-meta-text {
  min-width: 0;
}

.quote-meta--with-image .quote-meta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 147px;
}

.quote-author {
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 24px;
  color: #000000;
}

.quote-role {
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 14px;
  color: #000000;
}

@media (min-width: 600px) {
  .quote-logo {
    width: 36px;
    height: 36px;
  }

  .quote-copy {
    font-size: 22px;
  }

  .quote-author {
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 30px;
  color: #000000;
  }

  .quote-role {
    font-family: "EMPrint-Regular", sans-serif;
    font-size: 18px;
    color: #000000;
  }
}

@media (min-width: 1024px) {
  .quote-copy {
    font-size: 26px;
  }
}

@media (min-width: 600px) {
  .footer--links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 1rem;
  }
}

@media (min-width: 769px) {
  .container_footer_footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .footer--links {
    flex: 1 1 auto;
    min-width: 0;
  }

  .footer--links ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .footer--links .footer--listItem {
    display: inline-flex;
    align-items: center;
  }

  .footer--links .footer--listItem:not(:last-child)::after {
    content: "\2022";
    color: #ccc;
    margin: 0 1rem;
    pointer-events: none;
  }

  .footer--socialMedia {
    margin-top: 0;
    margin-left: auto;
    flex-shrink: 0;
  }

  .footer--brands {
    gap: 2rem;
    margin-bottom: 0;
    margin-right: 0;
  }

  .footer--brandLink.mobile-logo {
    order: initial;
    flex-basis: auto;
    margin-bottom: 0;
  }

  .footer--brands-privacy-container {
    flex-direction: row;
  }

  .footer--privacy {
    margin-top: 0;
    gap: 1.5rem;
  }

  .footer--socialIcon img {
    width: 28px;
    height: 28px;
  }

  .footer--policyWrapper a:not(:last-child)::after {
    margin-left: 1.5rem;
  }

  .footer--copyright {
    margin-top: 1rem;
    text-align: right;
    color: #bbb;
    font-family: "EMPrint-Regular", sans-serif;
  }
}

/* EnergyFactor subscribe page */
html.energyfactor-subscribe-page,
body.energyfactor-subscribe-page {
  height: 100%;
  color: #fff;
  background: linear-gradient(238deg, #d00018 8.67%, #682f60 44.88%, #005da8 81.09%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.energyfactor-subscribe {
  min-height: 100vh;
  color: #fff;
  background: transparent;
}

.energyfactor-subscribe__header {
  padding-top: 10px;
  padding-left: 20px;
}

.energyfactor-subscribe__container {
  width: min(100%, 1235px);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
}

.energyfactor-subscribe__title-logo {
  width: 100%;
  margin-bottom: 15px;
}

.energyfactor-subscribe__title-logo img {
  width: auto;
  height: 70px;
  display: block;
}

.energyfactor-subscribe__content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.energyfactor-subscribe__media {
  flex: 0 0 auto;
}

.energyfactor-subscribe__image {
  width: 550px;
  height: 550px;
  display: block;
  object-fit: cover;
}

.energyfactor-subscribe__form-content {
  flex: 1 1 auto;
  max-width: 530px;
  text-align: left;
}

.energyfactor-subscribe__heading {
  margin: -4px 0 10px;
  color: #fff;
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 43px;
  line-height: 1.1;
  font-weight: 700;
}

.energyfactor-subscribe__intro {
  margin: 0 0 25px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.energyfactor-form {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.energyfactor-form .step {
  height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.3s ease-in-out;
}

.energyfactor-form .step.active {
  height: auto;
  opacity: 1;
  overflow: visible;
}

.energyfactor-form fieldset.step {
  border: 0;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
}

.energyfactor-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.energyfactor-form input[type="text"],
.energyfactor-form input[type="email"],
.energyfactor-form select {
  width: 100%;
  min-height: 40px;
  padding: 12px;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  color: #000;
  font-size: 14px;
}

.energyfactor-form select {
  color: grey;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
}

.energyfactor-form button {
  width: 97px;
  height: 27px;
  border: 0;
  border-radius: 0;
  background: #d00018;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "EMPrint-Regular", sans-serif;
  font-size: 14px;
}

.energyfactor-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.energyfactor-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.energyfactor-form__consent input {
  margin-top: 1px;
  margin-bottom: 0;
}

.energyfactor-form__consent label {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.energyfactor-form__consent a {
  color: #fff;
  text-decoration: underline;
}

.energyfactor-form .checkbox-group,
.energyfactor-form .checkbox-group_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.energyfactor-form .checkbox-group span,
.energyfactor-form .checkbox-group label {
  color: #fff;
  font-size: 14px;
}

.energyfactor-form .error-message,
.energyfactor-form .checkbox-error {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.energyfactor-form .message {
  margin-top: 10px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .energyfactor-form .checkbox-group_group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .energyfactor-subscribe__content {
    gap: 30px;
    justify-content: center;
  }

  .energyfactor-subscribe__image {
    width: 400px;
    height: 400px;
  }

  .energyfactor-subscribe__form-content {
    max-width: 400px;
  }

  .energyfactor-subscribe__heading {
    font-size: 28px;
  }

  .energyfactor-subscribe__intro {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .energyfactor-subscribe__content {
    align-items: stretch;
  }

  .energyfactor-subscribe__form-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .energyfactor-subscribe__content {
    gap: 40px;
    justify-content: center;
  }

  .energyfactor-subscribe__image {
    width: 500px;
    height: 500px;
  }

  .energyfactor-subscribe__form-content {
    max-width: 450px;
  }
}

@media (max-width: 767px) {
  .energyfactor-subscribe__content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .energyfactor-subscribe__title-logo img {
    width: 250px;
    height: auto;
  }

  .energyfactor-subscribe__media {
    width: 100%;
  }

  .energyfactor-subscribe__image {
    width: 100%;
    max-width: 385px;
    height: auto;
    margin: 0 auto;
  }

  .energyfactor-subscribe__form-content {
    max-width: 100%;
  }

  .energyfactor-subscribe__heading {
    font-size: 24px;
  }

  .energyfactor-form input[type="text"],
  .energyfactor-form input[type="email"],
  .energyfactor-form select {
    font-size: 16px;
  }
}
