/* =========================================================
   Statement Section (reusable)
   ========================================================= */
.statement-section {
    position: relative;
    overflow: hidden;
    background: #0A233F;
    margin:0px;
    padding: 130px 0;
}

/* Content sits above the watermark */
.statement-section .container {
    position: relative;
    z-index: 1;
}

.statement-section__content {
    max-width: 720px;
}

/* Eyebrow + divider */
.statement-section__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

/* Heading */
.statement-section__heading {
    margin: 35px 0 0;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -1.12px;
    text-transform: unset;
}
/* Body copy */
.statement-section__text {
    margin-top: 25px;
    max-width: 570px;
}

.statement-section__text p {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 150%;
    margin: 0 0 15px;
}

.statement-section__text p:last-child {
    margin-bottom: 0;
}

/* CTA */
.statement-section__cta {
    margin-top: 45px;
}

/* Light button variant (white bg / navy text) used in this section */
.btn.btn--light {
    background: #fff;
    color: #0A233F;
    letter-spacing: 0.7px;
    transition: all 0.4s ease;
}

.btn.btn--light:hover {
    background: #0A233F;
    color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}

/* Brand "1F" watermark */
.statement-section__watermark {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 52%;
    max-width: 100%;
    height: 100%;
    color: #081C33;
    z-index: 0;
    pointer-events: none;
}
/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .statement-section {
        margin: 0 15px;
        border-radius: 20px;
        padding: 50px 0;
    }

    .statement-section__content {
        max-width: 100%;
    }

    .statement-section__eyebrow {
        font-size: 12px;
        padding-bottom: 16px;
    }

    .statement-section__heading {
        margin-top: 28px;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 110%;
    }

    .statement-section__text {
        margin-top: 20px;
    }

    .statement-section__text p {
        font-size: 16px;
    }

    .statement-section__cta {
        margin-top: 35px;
    }

    .statement-section__watermark {
        top: auto;
        bottom: 0;
        transform: none;
        width: 60%;
    }
}


/* =========================================================
   Media Banner (reusable) — 3 layouts
   ========================================================= */
.media-banner {
    position: relative;
    overflow: hidden;
    background: #0A233F;
    padding-top: 55%;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
}

/* Background image */
.media-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-banner__image--mobile {
    display: none;
}

/* Bottom-up navy gradient (solid at the bottom, fading out ~72% up) */
.media-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, rgba(10, 35, 63, 0.9) 0%, rgba(10, 35, 63, 0) 50%);
    pointer-events: none;
}

/* Content */
.media-banner .container {
    position: relative;
    z-index: 1;
}

.media-banner__content {
    position: absolute;
    width: 100%;
    bottom: 100px;

}

.media-banner__text {
    max-width: 1100px;
}

/* Eyebrow + divider */
.media-banner__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Heading */
.media-banner__heading {
    margin: 35px 0 0;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 105%;
    letter-spacing: -1.12px;
    max-width: 800px;
    text-transform: unset;
}

/* Body copy */
.media-banner__copy {
    margin-top: 25px;
    max-width: 800px;
}

.media-banner__copy p {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 150%;
    margin: 0 0 15px;
}

.media-banner__copy p:last-child {
    margin-bottom: 0;
}

/* CTA */
.media-banner__cta {
    margin-top: 35px;
}

/* Light button variant (white bg / navy text) */
.btn.btn--light {
    background: #fff;
    color: #0A233F;
    transition: all 0.4s ease;
}

.btn.btn--light:hover {
    background: #0A233F;
    color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}

/* ---------- Layout: button at right ---------- */
.media-banner--button-right .media-banner__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.media-banner--button-right .media-banner__text {
    flex: 1 1 auto;
}

.media-banner--button-right .media-banner__cta {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 4px;
}

/* ---------- Mobile: image and navy panel stack ---------- */
@media (max-width: 767px) {
    .media-banner {
        display: block;
        min-height: 0;
    }

    /* Image becomes a fixed-height block at the top */
    .media-banner__image {
        position: relative;
        height: 420px;
    }

    .media-banner__image--desktop {
        display: none;
    }

    .media-banner__image--mobile {
        display: block;
    }

    /* Solid navy panel below the image, no gradient needed */
    .media-banner__overlay {
        display: none;
    }

    .media-banner__content {
        padding: 50px 0 50px;
    }

    .media-banner__text {
        max-width: 100%;
    }

    .media-banner__eyebrow {
        font-size: 12px;
    }

    .media-banner__heading {
        margin-top: 28px;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 110%;
    }

    .media-banner__copy {
        margin-top: 20px;
    }

    .media-banner__copy p {
        font-size: 16px;
    }

    /* All variants stack on mobile */
    .media-banner--button-right .media-banner__content {
        display: block;
    }

    .media-banner--button-right .media-banner__cta,
    .media-banner__cta {
        margin-top: 35px;
        margin-bottom: 0;
    }
}


/* =========================================================
   Card Grid (reusable) — 3 or 4 columns, blue or gray theme
   ========================================================= */
.card-grid {
    padding: 80px 0;
}

/* Backgrounds */
.card-grid--gray {
    background: #F7F6F4;
}

.card-grid--blue {
    background: #0A233F;
    padding-top: 0;
    padding-bottom: 0;
}

/* Row */
.card-grid__row {
    display: grid;
    gap: 15px;
}

.card-grid--cols-3 .card-grid__row {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid--cols-4 .card-grid__row {
    grid-template-columns: repeat(4, 1fr);
}

/* Card */
.card-grid__card {
    padding: 40px;
    border-radius: 40px 0 0 0;
    display: flex;
    flex-direction: column;
}

.card-grid--gray .card-grid__card {
    background: #EAE8E4;
}

.card-grid--blue .card-grid__card {
    background: #fff;
}

/* Heading */
.card-grid__heading {
    margin: 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -0.56px;
    text-transform: unset;
}

/* Body copy — pushed down so it sits in the lower half of the card */
.card-grid__copy {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 70px;
}

.card-grid__copy p {
    margin: 0 0 15px;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 150%;
}

.card-grid__copy p:last-child {
    margin-bottom: 0;
}

/* CTA */
.card-grid__cta {
    margin-top: 30px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {

    .card-grid--cols-3 .card-grid__row,
    .card-grid--cols-4 .card-grid__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Mobile: stack ---------- */
@media (max-width: 767px) {
    .card-grid {
        padding: 50px 0;
    }

    .card-grid--cols-3 .card-grid__row,
    .card-grid--cols-4 .card-grid__row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-grid__card {
        padding: 30px 25px;
        border-radius: 20px 0 0 0;
    }

    .card-grid__heading {
        font-size: 24px;
    }

    .card-grid__copy {
        margin-top: 25px;
    }
}



/* =========================================================
   Reactor section — NEW design
   (replaces the previous "centered animation + floating
   .reactor-info callouts" styles)
   ========================================================= */

section.reactor {
    padding-top: 4vw;
    padding-bottom: 0;
    background: #fff;
}

/* Top: two columns — text left, animation right */
section.reactor .reactor-grid {
    max-width: none;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
    position: relative;
}

/* ---- Left text column ---- */
section.reactor .reactor-content {
    padding-top: 180px;
    max-width: 620px;
}

section.reactor .reactor-eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 16px;
    letter-spacing: 0.7px;
    border-bottom: 1px solid #0A233F;
}

section.reactor .reactor-heading {
    text-transform: unset;
    color: #0A233F;
    margin: 35px 0 0;
    font-size: 60px;
    line-height: 105%;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-align: left;
    width: 100%;
}

section.reactor .reactor-copy {
    margin-top: 30px;
    max-width: 600px;
}

section.reactor .reactor-copy,
section.reactor .reactor-copy p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
}

section.reactor .reactor-copy p {
    margin: 0 0 15px;
}

section.reactor .reactor-copy p:last-child {
    margin-bottom: 0;
}

/* ---- Right animation column (layout only) ---- */
.reactor-animation {
    position: relative;
    height: 100vh;
}

img.round-shape-bg {
    position: absolute;
    top: 53%;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: translateY(-50%);
    z-index: -1;
}

.reactor-animation canvas {
    width: 100%;
    height: 78%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2%;
}

/* ---- Bottom: 4-column card grid ---- */
section.reactor .reactor-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
    margin-top: 0px;
}

section.reactor .reactor-card {
    background: #EAE8E4;
    border-radius: 40px 0 0 0;
    padding: 40px;
    box-sizing: border-box;
}

section.reactor .reactor-card h4 {
    font-family: "Inter", sans-serif;
    color: #0A233F;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.48px;
    margin: 0 0 35px;
    font-weight: 800;
}

section.reactor .reactor-card p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 150%;
    margin: 0;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    section.reactor .reactor-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    section.reactor {
        padding-top: 50px;
    }

    section.reactor .reactor-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    section.reactor .reactor-content {
        padding-top: 0;
        max-width: 100%;
    }

    section.reactor .reactor-heading {
        font-size: 32px;
        letter-spacing: -0.64px;
        margin-top: 28px;
    }

    section.reactor .reactor-copy,
    section.reactor .reactor-copy p {
        font-size: 16px;
    }

    /* keep the animation visible but in normal flow on mobile */
    .reactor-animation {
        height: 60vh;
        margin-top: 30px;
    }

    section.reactor .reactor-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    section.reactor .reactor-card {
        padding: 30px 25px;
        border-radius: 20px 0 0 0;
    }

    section.reactor .reactor-card h4 {
        margin-bottom: 25px;
    }
}


/* =========================================================
   Text Column (reusable) — centered editorial / statement block
   eyebrow + divider, large heading, body paragraphs.
   ========================================================= */
.text-column {
    padding: 90px 0;
    background: #fff;
}

/* Centered column. The design content width is ~1215px, which sits inside
   the .container; keeping it inside .container keeps gutters consistent
   with the rest of the site. */
.text-column__inner {
    max-width: 1215px;
    margin: 0 auto;
}

/* Eyebrow + full-width divider line beneath it */
.text-column__eyebrow {
    display: block;
    font-family: "Industry", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0A233F;
    padding-bottom: 16px;
    border-bottom: 1px solid #0A233F;
}

/* Heading */
.text-column__heading {
    text-transform: unset;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 105%;
    letter-spacing: -1.2px;
    margin: 40px 0 0;
}

/* Body copy */
.text-column__body {
    margin-top: 30px;
    max-width: 935px;   /* per design the paragraphs are slightly narrower than the rule */
}

.text-column__body p {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    margin: 0 0 28px;
}

.text-column__body p:last-child {
    margin-bottom: 0;
}

/* If the eyebrow is omitted, don't leave a gap above the heading */
.text-column__eyebrow + .text-column__heading {
    margin-top: 40px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .text-column__heading {
        font-size: 48px;
        letter-spacing: -0.96px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
    .text-column {
        padding: 50px 0;
    }

    .text-column__heading {
        font-size: 32px;
        letter-spacing: -0.64px;
        margin-top: 28px;
    }

    .text-column__body {
        margin-top: 24px;
    }

    .text-column__body p {
        font-size: 16px;
        line-height: 155%;
        margin-bottom: 22px;
    }
}

/* =========================================================
   Text Column — two-column list
   Left: heading.  Right: body paragraphs.  Thin divider
   between each row (and below the last one).
   ========================================================= */

.text-column__list {
    margin-top: 60px;
    border-bottom: 1px solid #DEDAD5;   /* line below the last row */
}

.text-column__list-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 50px 0;
    border-top: 1px solid #DEDAD5;      /* line above each row */
}

/* Left column — heading */
.text-column__list-heading {
    margin: 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.56px;
    text-transform: unset;
}

/* Right column — body copy */
.text-column__list-copy p {
    margin: 0 0 18px;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 155%;
}

.text-column__list-copy p:last-child {
    margin-bottom: 0;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    .text-column__list-row {
        gap: 40px;
        padding: 40px 0;
    }
}

/* ---------- Mobile: stack heading over copy ---------- */
@media (max-width: 767px) {
    .text-column__list {
        margin-top: 35px;
    }

    .text-column__list-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 0;
    }

    .text-column__list-heading {
        font-size: 24px;
    }

    .text-column__list-copy p {
        font-size: 16px;
    }
}

/* =========================================================
   Cover Image (reusable) — full-width image, nothing else.
   ========================================================= */

.cover-image {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0; /* removes inline-block gap under img */
}

.cover-image__img {
    display: block;
    width: 100%;
    height: auto;
}

/* Desktop image on by default, mobile hidden */
.cover-image__img--desktop {
    display: block;
}

.cover-image__img--mobile {
    display: none;
}

/* Swap on mobile */
@media (max-width: 767px) {
    .cover-image__img--desktop {
        display: none;
    }

    .cover-image__img--mobile {
        display: block;
    }
}


/* =========================================================
   Deployment Section — "EAGL-1 at a glance" stats panel
   Left: reactor image.  Right: card with a warm-gray header
   bar (40px top-left corner) + a 2-column stats grid with
   thin dividing lines.
   ========================================================= */

.deployment-section {
    padding: 90px 0;
    background: #fff;
}

.deployment-section .deployment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* ---- Left: reactor image ---- */
.deployment-section .reactor-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deployment-section .reactor-image-wrap .hero-image {
    width: 100%;
    height: auto;
    max-width: 620px;
    display: block;
}

/* ---- Right: stats card ---- */
.deployment-section .glance-card {
    border-radius: 40px 0 0 0;
    overflow: hidden;
    border: 1px solid #DEDAD5;
    background: #fff;
}

/* Header bar */
.deployment-section .glance-card__header {
    background: #E6E3DF;
    padding: 32px 40px;
}

.deployment-section .glance-card__header h3 {
    margin: 0;
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.44px;
    text-transform: unset;
}

/* Stats grid: 2 columns */
.deployment-section .glance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Each stat cell — dividing lines drawn with borders */
.deployment-section .glance-stat {
    padding: 40px;
    border-top: 1px solid #DEDAD5;
    border-left: 1px solid #DEDAD5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 160px;
    justify-content: center;
}

/* Remove the left border on the first column so the card edge stays clean */
.deployment-section .glance-stat:nth-child(odd) {
    border-left: none;
}

.deployment-section .glance-stat__value {
    color: #0A233F;
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.72px;
}

.deployment-section .glance-stat__label {
    color: #0A233F;
    font-family: "Industry", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .deployment-section .deployment-inner {
        gap: 40px;
    }

    .deployment-section .glance-stat {
        padding: 30px 24px;
        min-height: 140px;
    }

    .deployment-section .glance-stat__value {
        font-size: 30px;
    }
}

/* ---- Mobile: image on top, single-column stats ---- */
@media (max-width: 767px) {
    .deployment-section {
        padding: 50px 0;
    }

    .deployment-section .deployment-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .deployment-section .glance-card__header {
        padding: 24px 25px;
    }

    /* single column — every cell gets a top border, none get a left border */
    .deployment-section .glance-stats {
        grid-template-columns: 1fr;
    }

    .deployment-section .glance-stat {
        padding: 28px 25px;
        min-height: 0;
        border-left: none;
    }

    .deployment-section .glance-stat:nth-child(odd) {
        border-left: none;
    }
}



/**** new v2 css *********/
body.home header.header {
    position: absolute;
    top: 0;
    z-index: 5;
    width: calc(100% - 40px);
    left: 0;
}
.hero-section {
    margin: 0;
    border-radius: 0 !important;
}
.hero-section .hero-image {
    border-radius: 0;
}
.hero-video-cover {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56%;
}
.hero-video-cover video.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(10, 35, 63, 0.55) 0%,
        rgba(10, 35, 63, 0.15) 40%,
        transparent 70%
    );
    pointer-events: none;
}
.hero-section h1 {
    text-align: left;
    font-size: 72px;
}
.hero-section .hero-content {
    top: auto;
    text-align: left;
    padding-left: 60px;
    padding-right: 60px;
    bottom: 11%;
}
@media(min-width:1380px){
    .hero-section .hero-content {
    padding-left: 150px;
    padding-right: 150px;
}
}

header.header .main-menu ul li a {
    letter-spacing: 0.7px;
}

section.reactor .reactor-grid {
    display: block !important;
    max-width: 100%;
    width: 50%;
    margin-left: auto;
    margin-right: 0;
}
.reactor-content-outer {
    position: absolute;
    left: -100%;
    width: 100vw;
    top: 50%;
    transform: translateY(-50%);
}
section.reactor .reactor-content-outer  .reactor-content {
    padding-top: 0px !important;
    max-width: 670px !important;
}
.reactor-content-outer {
    position: absolute;
    left: 0%;
    width: 100vw;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 0 50px;
}
@media(min-width:1380px){
.reactor-content-outer {
    padding: 0 150px;
}
}
section.reactor .reactor-grid h2 {
    position: relative;
    min-width: inherit;
    transform: none;
    left: auto;
    text-align: left !important;
    top: auto;
    margin: 35px 0 0;
}

section.reactor {
    background: linear-gradient(  180deg,  #F7F6F4 0%,  rgba(247, 246, 244, 0) 33%,  rgba(247, 246, 244, 0) 66%,  #F7F6F4 100%);
    padding-bottom: 4vw;
}
section.plant {
    margin: 0;
    padding-top: 0;
    background: #fff;
}
.plant-cards .card {
    background: #0A233F;
 }
 @media(min-width:1380px){
 .container.page-full {
    padding: 0 150px;
    max-width: 100%;
}
 }
.plant-cards .card .text-wrap{
    padding-right: 20px;
}
.plant-cards .card .text-wrap h3 {
    color: #fff;
 }
 .plant-cards .card .text-wrap p {
    color: #fff;
 }
 .plant-cards .card .text-wrap h3 {
    margin: 0 0 12px;
}
 .plant-cards .card .text-wrap div{
    width: 100%;
 }
 .plant-cards .card .text-wrap div p + a {
    margin-top: 15px;
}
.plant-cards {
    column-gap: 15px;
}
.plant-cards .card {
    width: calc(50% - 8px);
}
section.reactor {
    overflow-x: hidden;
}



@media(max-width:1060px){
    .plant-cards .card {
    width: 100%;
    margin: 0 0 20px;
}
}

@media(max-width:1020px){
.hero-section h1 {
    font-size: 48px;
}
.statement-section__heading,.text-column__heading,.media-banner__heading {
    font-size: 46px;

}
section.reactor .reactor-grid h2 {
    font-size: 40px;
}
section.reactor .reactor-grid h2 {
    max-width: 440px;
}
section.reactor .reactor-copy p {
    max-width: 400px;
}
}