* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

:root {
  --brand-color-red: #da292f;
  --brand-color-red-darker: #b81d23;
  --brand-color-black: #3d3d3d;
  --brand-color-grey: #5e5e5e;
  --color-black: #000000;
  --color-off-black: #212121;
  --color-white: #ffffff;
  --color-off-white: #f9f9f9;
}


/* Utility Classes | START */

.section-spacer {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.content-container {
    margin: 0 auto;
    padding:  0 1rem;
    width: min(100%, 100rem);
    text-align: center;
}

.img-full-width {
    width: 100%;
}

a.cta-link {
    text-decoration: none;
}

button.cta-template {
    /* margin-top: 2rem; */
    padding: 1rem 1rem;
    width: min(100%, 21rem);
    border: none;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--brand-color-red);
    transition: all 200ms ease;
}

button.cta-template:hover {
    background-color: var(--brand-color-red-darker);
}

/* Utility Classes | END */


/* ============================================== */
/* Language switcher | START! */
/* ============================================== */
.language-switcher {
    position: absolute;
    z-index: 9999;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.language-switcher a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
}

.language-switcher a:hover {
    color: #dcd9d9;
}

.divider {
    color: #c2c2c2;
}

@media (min-width: 1200px) {
    .language-switcher {
        top: 10px;
        left: auto;
        right: 2%;
        transform: translateX(0);
        font-size: 1rem;
    }
}
/* ============================================== */
/* Language switcher | END */
/* ============================================== */


/* ============================================== */
/* Header section | START */
/* ============================================== */
.hero-container {
    margin: 0;
    padding: 3rem 1rem 2rem 1rem;
    position: relative;
    background-image: url('/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/Wheel-tire-promo-hero-img-mobile.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: var(--color-black);
}

.hero-container::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background-color: var(--color-black);
    opacity: 0.85;
}

.hero-content-wrapper {
        position: relative;
        z-index: 10;
        display: grid;
        align-items: center;
        grid-template-areas: 
        "img"
        "content";
    }

.hero-container  .content-container {
    grid-area: content;
    position: relative;
    z-index: 100;
    /* width: min(100%, 55rem); */
}

.hero-container img.hero-logo.mobile  {
    display: block;
    margin-bottom: 2rem;
    max-width: 400px;
}

.hero-container img.hero-logo.desktop  {
    display: none;
}

.header-content-container {
    margin: 0 auto;
    width: min(100%, 700px);
}

.header-content-container h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    /* filter: drop-shadow(3px 3px 2px var(--color-black)); */
}

.header-content-container p {
    margin-bottom: 1rem;;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    color: #ffffff;
}

.hero-container button.hero {
    margin: 2rem 0 2rem 0;
}

.hero-container .product-feature-img {
    grid-area: img;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.hero-container .product-feature-img img {
    width: min(100%, 600px);
}

@media (min-width: 1200px) {
    .hero-container {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/Wheel-tire-promo-hero-img-tablet.jpg);
    }
}

@media (min-width: 1200px) {

    .hero-container {
        padding: 0;
        height: 550px;
        background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/Wheel-tire-promo-hero-img-desktop.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        background-color: var(--color-black);
    }

    .hero-content-wrapper {
        margin: 0 auto;
        width: min(100%, 1200px);
        height: 100%;
        display: grid;
        align-items: center;
        grid-template-columns: 50% 50%;
        grid-template-areas: "img content";
    }

    .hero-container .content-container {
        padding-top: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-container .hero-content-wrapper .img-container.desktop {
        display: flex;
        justify-content: center;
    }

    .hero-container img.hero-logo.mobile  {
        display: none;
    }

    .hero-container img.hero-logo.desktop  {
        display: block;
        margin-bottom: 2rem;
        max-width: 350px;
    }

    .hero-container .product-feature-img img {
        position: absolute;
        top: 50px;
        left: 0;
    }

}

@media (min-width: 100rem) {

    .hero-content-wrapper {
        width: min(100%, 1600px);
    }

.hero-container .product-feature-img img {
        left: 150px;
    }

}
/* ============================================== */
/* Header section | END */
/* ============================================== */



/* ============================================== */
/* Form section container | START */
/* ============================================== */
.form-container .form-info-container {
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "form"
    "content-section";
}

.form-container {
    grid-area: form;
}


@media (min-width: 1200px) {
    .form-container .form-info-container {
        margin-bottom: -9rem;
        padding: 2rem 0 0 0;
        width: min(100%, 1200px);
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-areas: "content-section form";
    }

    .bg-clr {
        position: absolute;
        display: block;
        content: "";
        width: 100%;
        height: 500px;
        background-color: var(--color-off-white);
        z-index: -1;
    }

}

@media (min-width: 1600px) {
    .form-container .form-info-container {
        width: min(100%, 1600px);
    }
}


/* Supporting info | START */
.supporting-content {
    grid-area: content-section;
    margin-top: 2rem;
    margin-bottom: 0;
}

.supporting-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-color-black);
}

.feature-details-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.supporting-content .feature-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.supporting-content .feature-details p {
    color: var(--brand-color-grey);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.supporting-content .feature-details .checkmark {
    width: 35px;
}


@media (min-width: 1200px) {
    .supporting-content {
        margin-bottom: 1rem;
        padding-top: 3rem;
    }
    
    .supporting-content .content-container {
        padding: 0 2rem 0 0;
    }
    
    .supporting-content h2,
    .supporting-content p {
        text-align: left;
    }

    .feature-details-container {
        gap: 20px;
    }

    .supporting-content .feature-details {
        flex-direction: row;
    }

    .supporting-content .feature-details p {
        text-align: left;
    }

}
/* Supporting info | END */


/* Form | START */
.form-content-container.content-container {
    padding: 0 0.5rem;
}

.contact-form {
    margin: 0 auto;
    padding: 2.5rem 1rem 0 1rem;
    width: min(100%, 700px);
    min-height: 700px;
    position: relative;
    z-index: 5;
    top: -1rem;
    border-radius: 0.25rem;
    background-color: #ffffff;
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, .2);
}

.contact-form h2 {
    margin: 0 auto 0.5rem auto;
    width: min(100%, 600px);
    font-size: 2.3rem;
    font-weight: 900;
    text-align: center;
    line-height: 105%;
    color: var(--brand-color-red);
}

.contact-form p {
    margin: 0 auto 1rem auto;
    width: min(100%, 600px);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    color: var(--brand-color-grey);
}


@media (min-width: 1200px) {
    .form-content-container.content-container {
        position: relative;
    }

    .contact-form {
        padding: 2.5rem 3.5rem;
        position: relative;
        top: -9rem;
    }

    .contact-form h2 {
        font-size: 2.1rem;
    }
}

@media (min-width: 1600px) {

    .contact-form h2 {
        font-size: 2.3rem;
    }
}
/* Form | END */

/* ============================================== */
/* Form section container | END */
/* ============================================== */



/* ============================================== */
/* Operational impact | START */
/* ============================================== */
.operational-impact {
    margin-top: 2rem;
    padding: 1.5rem 1.5rem;
    background-color: var(--color-off-white);
}

.container {
    margin-inline: auto;
}

.section-header {
    text-align: center;
    max-width: 62rem;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    margin: 1rem 0 1rem 0;
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--brand-color-black);
}

.section-header p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--brand-color-grey);
}


/* Cards */
.impact-grid {
    margin: 0 auto;
    width: min(100%, 1400px);
    display: grid;
    gap: 1.5rem;
}

.impact-card {
    margin: 0 auto;
    width: min(100%, 400px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border: 1px solid #e6e6e6;
    box-shadow:
        0 0.125rem 0.125px rgba(0,0,0,.08);
}

.impact-card .icon {
    width: 150px;
    height: auto;
}

.heading-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.heading-container .icon-exclamation {
    width: 25px;
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-color-black);
}

.impact-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.impact-card li {
    line-height: 1.8;
    font-weight: 500;
    font-size: 1rem;    
    color: var(--brand-color-grey);
}

.section-cta {
    margin: 2.5rem auto 2rem auto;
    text-align: center;
}


@media (min-width: 1200px) {

    .operational-impact {
        padding: 0 2rem;
        background-color: #ffffff;
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .section-header p {
        font-size: 1.125rem;
    }
}
/* ============================================== */
/* Operational impact | END */
/* ============================================== */



/* ============================================== */
/* Warning signs | START */
/* ============================================== */
.warning-signs {
    margin-top: 2rem;
    padding: 1.5rem 1.5rem;
    background-color: var(--color-off-black);
}

.section-header {
    text-align: center;
    max-width: 62rem;
    margin: 0 auto 2.5rem;
}

.warning-signs .section-header h2 {
    color: var(--color-white);
}

.warning-signs .section-header p {
    color: var(--color-white);
}


/* Cards */
.warning-signs .impact-grid {
    margin: 0 auto;
    width: min(100%, 1400px);
    display: grid;
    gap: 1.5rem;
}

.warning-signs .impact-card {
    margin: 0 auto;
    padding: 0;
    width: min(100%, 400px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-off-white);
    border: 1px solid #e6e6e6;
    box-shadow:
        0 0.125rem 0.125px rgba(0,0,0,.08);
}

.warning-signs .img-container {
    width: 100%;
    height: 170px;
    background-color: #313131;
    overflow: hidden;
}

.warning-signs .img-container.wheels {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/wheel-tire-images-worn-forklift-poly-wheel.jpg);
    background-size: cover;
}

.warning-signs .img-container.tires {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/wheel-tire-images-worn-forklift-tire.jpg);
    background-size: cover;
}

.warning-signs .img-container.bearings {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/wheel-tire-images-worn-forklift-wheel-bearing.jpg);
    background-size: cover;
}

.warning-signs .impact-card h3 {
    margin: 1rem 0 0.45rem 0;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-color-black);
}

.warning-signs .impact-card hr {
    margin-bottom: 1.25rem;
    width: 80%;
    border: none;
    border-top: 4px solid var(--brand-color-red);
}

.warning-signs .impact-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-color-black);
}

.warning-signs .impact-card ul {
    margin-bottom: 2rem;
}

/* ============================================== */
/* Warning signs | END */
/* ============================================== */



/* ============================================== */
/* Promo section | START */
/* ============================================== */
.promo-offer {
    margin-top: 2rem;
    padding: 1.5rem 1.5rem;
    background-color: var(--color-white);
}

.promo-offer .section-header h2 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.85;
    color: var(--brand-color-red);
}

.promo-offer .section-header h2 span {
    margin-top: 0.4rem;
    display: block;
    font-size: 2rem;
}

.promo-offer .section-header p {
    color: var(--brand-color-grey);
    line-height: 1.3;
}


/* Cards */
.promo-offer .impact-grid {
    margin: 0 auto;
    width: min(100%, 1400px);
    display: grid;
    gap: 1.5rem;
}

.promo-offer .impact-card {
    margin: 0 auto;
    padding: 0;
    width: min(100%, 400px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--brand-color-black);
    border: 1px solid #e6e6e6;
    box-shadow:
        0 0.125rem 0.125px rgba(0,0,0,.08);
}


.promo-offer .heading-container {
    margin: 1rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-offer .img-container {
    width: 100%;
    height: 200px;
    background-color: var(--color-white);
    overflow: hidden;
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-offer .img-container.wheels {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/durasource-wheel.jpg);
}

.promo-offer .img-container.tires {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/durasource-tire.jpg);
}

.promo-offer .img-container.bearings {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/durasource-bearing.jpg);
}

.promo-offer .impact-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: none;
    color: var(--color-white);
}

.promo-offer .impact-card hr {
    margin-bottom: 1.25rem;
    width: 80%;
    border: none;
    border-top: 4px solid var(--brand-color-red);
}

.promo-offer .impact-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
}

.promo-offer .impact-card ul {
    margin-bottom: 2rem;
}

.promo-offer .impact-card li {
    line-height: 1.8;
    font-weight: 400;
    font-size: 1rem;    
    color: var(--color-white);
}

/* ============================================== */
/* Promo section | END */
/* ============================================== */



/* ============================================== */
/* Guidance section | START */
/* ============================================== */

.guidance-section {
    background: var(--color-off-white);
}

.guidance-section .container {
    max-width: 1600px;
    margin-inline: auto;
}

.guidance-section .guidance-content {
    padding: 0 1rem;
}

.guidance-grid {
    display: grid;
    gap: 2rem;
}

.guidance-image {
    max-height: 700px;
    overflow: hidden;
}

.guidance-image img {
    display: block;
    width: 100%;
    height: auto;
}

.guidance-content h2 {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--brand-color-black);
}

.guidance-content p {
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    color: var(--brand-color-grey);
}

.guidance-lists {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.checklist h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--brand-color-black);
}

.checklist {
    margin: 0;
    padding: 0;
}

.checklist-item-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checklist-item img {
    width: 32px;
}

.checklist-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--brand-color-grey);
}

.guidance-note {
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

@media (min-width: 85rem) {

    .guidance-section {
        padding: 5rem 2rem;
    }

    .guidance-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 3.5rem;
    }

    .guidance-content h2 {
        text-align: left;
    }

    .guidance-content p {
        text-align: left;
    }
    
    .guidance-lists {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .checklist-item {
        flex-direction: row;
        align-items: start;
        gap: 10px;
    }

    .checklist h3,
    .checklist p {
        text-align: left;
    }

    .guidance-section .section-cta {
        text-align: left;
    }
}

/* ============================================== */
/* Guidance section | END */
/* ============================================== */



/* ============================================== */
/* Good, better, best | START */
/* ============================================== */
.good-better-best {
    margin-top: 2rem;
    padding: 1.5rem 1.5rem;
    background-color: var(--color-off-black);
}

.section-header {
    text-align: center;
    max-width: 62rem;
    margin: 0 auto 2.5rem;
}

.good-better-best .section-header h2 {
    color: var(--color-white);
}

.good-better-best .section-header p {
    color: var(--color-white);
}


/* Cards */
.good-better-best .impact-grid {
    margin: 0 auto;
    width: min(100%, 1200px);
    display: grid;
    gap: 1.5rem;
}

.good-better-best .impact-card {
    margin: 0 auto;
    padding: 0;
    width: min(100%, 400px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
    background-color: transparent;
    box-shadow:
        0 0.125rem 0.125px rgba(0,0,0,.08);
}

.good-better-best .img-container {
    width: 100%;
    height: 130px;
    overflow: hidden;
    background-color: transparent;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
}

.good-better-best .img-container.good {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/icon-scale-03.svg);
}

.good-better-best .img-container.better {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/icon-scale-02.svg);
}

.good-better-best .img-container.best {
    background-image: url(/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/icon-scale-01.svg);
}

.good-better-best .impact-card h3 {
    margin: 0 0 0.45rem 0;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-white);
}

.good-better-best .impact-card hr {
    margin-bottom: 1.25rem;
    width: 80%;
    border: none;
    border-top: 3px solid var(--brand-color-red);
}

.good-better-best .impact-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
}

.good-better-best .impact-card ul {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.good-better-best .impact-card li {
    color: var(--color-white);
}

/* ============================================== */
/* Good, better, best | END */
/* ============================================== */




/* ============================================== */
/* Brand trust | START */
/* ============================================== */
.brand-trust {
    margin-top: 2rem;
    padding: 1.5rem 1.5rem;
    background-color: var(--color-white);
}

.brand-trust .section-header {
    margin-bottom: 0;
}

.brand-trust .section-header h2 {
    color: var(--color-black);
}

.brand-trust .section-header p {
    color: var(--brand-color-grey);
}

.brand-trust .section-header img {
    margin: 2rem 0;
    max-width: 500px;
}


/* Cards */
.brand-trust .impact-grid {
    margin: 0 auto;
    width: min(100%, 1600px);
    display: grid;
    gap: 1.5rem;
}

.brand-trust .impact-card {
    margin: 0 auto;
    padding: 0;
    width: min(100%, 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.brand-trust .img-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: transparent;
}

.brand-trust .img-container img {
    width: 120px;
}

.brand-trust .impact-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: none;
    line-height: 1;
    color: var(--brand-color-grey);
}

.brand-trust .impact-card p {
    margin-top: 0rem;
    color: var(--brand-color-grey);
}


@media (min-width: 55rem) {

    .brand-trust .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (min-width: 1200px) {

    .brand-trust .impact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* ============================================== */
/* Brand trust | END */
/* ============================================== */



/* ============================================== */
/* Final CTA | START */
/* ============================================== */

.final-cta {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.final-cta__inner {
    max-width: 87.5rem;
    margin-inline: auto;
    text-align: center;
    background: var(--brand-color-red);
    padding: 3rem 1.5rem;
}

.final-cta h2 {
    margin: 0 0 1.5rem;
    color: #fff;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
}

.final-cta__copy {
    max-width: 62rem;
    margin: 0 auto 2rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.final-cta__benefits {
    display: flex;
    flex-direction: column;

    gap: 1rem;

    margin: 0 0 2rem;
    padding: 0;

    list-style: none;
}

.final-cta__benefits li {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    color: #fff;
    font-weight: 700;
}

.final-cta__benefits li::before {
    content: "";

    width: 15px;
    height: 15px;

    flex-shrink: 0;

    background-image: url("/-/media/Dealers/Johnston%20Equipment/Promotions/wheel-tire-promo-2026/checkmark-icon-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.final-cta button.cta-template {
    color: var(--color-white);
    background-color: var(--color-black);
}

.final-cta button.cta-template:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}


/* ============================================== */
/* Final CTA | END */
/* ============================================== */



/* ============================================== */
/* Footer | START */
/* ============================================== */
.promo-footer {
    background: #000;
    padding: 4rem 1.5rem;
}

.promo-footer .container {
    max-width: 87.5rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-footer img {
    margin-bottom: 2rem;
    width: min(100%, 28rem);
    height: auto;
}

.promo-footer {
    color: var(--color-white);
}

@media (min-width: 1200px) {

    .final-cta {
        padding: 5rem 2rem;
    }

    .final-cta__inner {
        padding: 4rem 3rem;
    }

    .final-cta h2 {
        font-size: 3.25rem;
    }

    .final-cta__copy {
        font-size: 1.125rem;
    }

    .final-cta__benefits {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}
/* ============================================== */
/* Footer | END */
/* ============================================== */