﻿@font-face {
    font-display: swap;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/oswald-v53-cyrillic_cyrillic-ext_latin_latin-ext-200.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/oswald-v53-cyrillic_cyrillic-ext_latin_latin-ext-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/oswald-v53-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/oswald-v53-cyrillic_cyrillic-ext_latin_latin-ext-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/oswald-v53-cyrillic_cyrillic-ext_latin_latin-ext-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/oswald-v53-cyrillic_cyrillic-ext_latin_latin-ext-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--black);
    background: var(--lightgrey);
}

a {
    text-decoration: none;
    color: var(--black);
}

h1,
.size-xxl {
    font-family: 'Oswald';
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
}

h2,
.size-xl {
    font-family: 'Oswald';
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
}

h3,
.size-l {
    font-family: 'Oswald';
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    text-transform: uppercase;
}

h4,
.size-m {
    font-family: 'Oswald';
    font-size: 2.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

h5 {
    font-family: 'Oswald';
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

h6 {
    font-family: 'Oswald';
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
}

:root {
    --yellow: #febd17;
    --black: #000;
    --darkestgrey: #1a1a1a;
    --darkgrey: #353535;
    --lightgrey: #edeeef;
    --white: #fff;
  color-scheme: light !important;
}
.btn.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    padding: .8rem 1.25rem;
}

    .btn.btn-yellow:hover {
        background: #ecb018;
    }

.btn.btn-black {
    background: var(--black);
    color: var(--white);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    padding: .8rem 2rem;
}

    .btn.btn-black:hover {
        background: var(--darkgrey);
    }

.btn.btn-white {
    background: var(--white);
    color: var(--black);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    border-radius: 2px;
    padding: .8rem 1.25rem;
}

    .btn.btn-white:hover {
        background: rgba(255, 255, 255, .8);
    }

.container {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

#error-message {
    display: none;
    padding-top: 1rem;
    margin: 0;
    text-align: center;
    color: #ff0000;
    font-weight: bold;
}

/* Header */
header {
    width: 100%;
    background: var(--yellow);
    margin: 0;
    padding: 0;
    height: 74px;
    display: flex;
    flex-direction: row;
    align-content: center;
}

    header .logo-dewalt img {
        height: 58px;
        padding-left: 10px;
    }

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

input.form-control {
    background: var(--white);
    color: var(--darkgrey);
    border: 1px solid #cecece;
    box-shadow: none;
    border-radius: 0;
    padding: .8rem 1rem;
}

    input.form-control::placeholder {
        color: rgba(255, 255, 255, .4);
    }

    input.form-control:focus {
        border: 1px solid var(--yellow);
        box-shadow: none;
        border-radius: 0;
        padding: .8rem 1rem;
    }

#submitbtn {
    margin: 1rem auto;
    background: var(--black);
    border: 0;
    border-radius: 3px;
    opacity: 1;
    display: block;
    min-width: 200px;
    padding: .7rem 1rem;
    font-family: var(--font);
}

.form-group label {
    margin-bottom: .3rem;
}

.privacynote {
    text-align: center;
    font-size: 12px;
    margin-bottom: 0;
}

/* Footer */
footer .footer-boxes {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #eeeeee;
}

    footer .footer-boxes .material-icons {
        font-size: 36px;
    }

    footer .footer-boxes li {
        list-style-type: none;
        flex: 1;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    footer .footer-boxes h6 {
        margin-top: 2rem;
    }

    footer .footer-boxes p {
        margin-bottom: 1rem;
    }

    footer .footer-boxes a:hover {
        text-decoration: none;
    }

footer .footer-tagline {
    text-align: center;
    background-color: #f8b119;
    color: black;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

    footer .footer-tagline span {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        color: black;
        text-transform: uppercase;
        font-family: Helvetica, Arial, sans-serif;
        font-weight: 700;
        font-size: 2.3rem;
    }

footer .social-icons {
    display: flex;
}

footer a.social-link-facebook:before {
    content: url("../img/logo-facebook.svg");
    display: block;
}

footer a.social-link-instagram:before {
    content: url("../img/logo-instagram.svg");
    display: block;
}

footer a.social-link-youtube:before {
    content: url("../img/logo-youtube.svg");
    display: block;
}

footer .footer-legal {
    background-color: #1a1a1a;
    color: #eeeeee;
}

footer .footer-legal {
    color: #eeeeee;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 1rem;
    text-align: center;
}

    footer .footer-legal ul {
        margin: 0;
        padding: 0;
    }

    footer .footer-legal li {
        position: relative;
        list-style-type: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }

        footer .footer-legal li:after {
            position: absolute;
            content: '';
            height: 100%;
            width: 0.0625rem;
            background-color: #6b6b6b;
            margin-left: 1rem;
        }

        footer .footer-legal li:last-child::after {
            display: none;
        }

        footer .footer-legal li a {
            color: #eeeeee;
            text-decoration: none;
        }

            footer .footer-legal li a:hover {
                text-decoration: underline;
            }

footer .copyright-text-footer {
    font-size: 0.875rem;
}

/*------------------------*
/* CUSTOM */
/*------------------------*/

.white-bg {
    background: var(--white);
}

.grey-bg {
    background: var(--lightgrey);
}

.black-bg {
    background: var(--darkestgrey);
}

.yellow-bg {
    background: var(--yellow);
}

.black-bg p {
    color: var(--white);
}

.black-bg h2 {
    color: var(--white);
}

.black-bg h3 {
    color: var(--white);
}

.nav-tabs {
    display: flex;
    flex-direction: row;
    gap: 5px;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: -1px;
}

    .nav-tabs .nav-link {
        border-left: 1px solid #C4C4C4;
        border-top: 1px solid #C4C4C4;
        border-right: 1px solid #C4C4C4;
        padding: 16px 10px;
        width: 280px;
        text-align: center;
        border-radius: 0;
        background: var(--lightgrey);
        color: var(--black);
        border-bottom: none;
    }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-link:hover {
            border-left: 1px solid #C4C4C4;
            border-right: 1px solid #C4C4C4;
            border-top: 2px solid #275CE2;
            border-bottom: 1px solid var(--lightgrey);
            background: var(--lightgrey);
            border-bottom: none;
        }

.nav-tabs-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #C4C4C4;
}

img {
    max-width: 100%;
}

/* --- HERO SECTION --- */
#top-banner.hero {
    position: relative;
    background: url(../images/top-banner.jpg);
    background-size: cover;
    background-position: top -80px center;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
}

#top-banner .ps-logo {
    position: absolute;
    left: 20%;
    top: 60%;
}

#top-banner .hero-form-wrapper {
    background-color: var(--yellow);
    padding: 40px;
    max-width: 550px;
    width: 100%;
    margin-left: auto;
}

#top-banner .hero-form-wrapper h1 {
  font-size: 3rem;
  line-height: 3.1rem;
  margin-bottom: 5px;
}

    #top-banner .hero-form-wrapper h3 {
        font-size: 1.2rem;
        line-height: 2rem;
        margin-bottom: 25px;
    }

    #top-banner .hero-form-wrapper p {
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

#top-banner .form-group {
    margin-bottom: 10px;
}

    #top-banner .form-group input,
    #top-banner .form-group select {
        width: 100%;
        padding: 12px !important;
        border: 1px solid var(--grey);
        background: var(--white);
        min-height: 50px;
    }

        #top-banner .form-group input:focus,
        #top-banner .form-group select:focus {
            border: 1px solid var(--yellow) !important;
        }

#top-banner .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.75rem;
    margin: 15px 0;
}

#top-banner .checkbox-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin-bottom: 30px
}

#top-banner .checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
}

    #top-banner .checkbox-row input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

#top-banner .custom-box {
    position: relative;
    height: 28px;
    width: 28px;
    background-color: #ffffff;
    flex-shrink: 0;
    margin-left: 20px;
}

    #top-banner .custom-box::after {
        content: "";
        position: absolute;
        display: none;
        left: 10px;
        top: 4px;
        width: 6px;
        height: 14px;
        border: solid #000;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

#top-banner .checkbox-row input:checked ~ .custom-box::after {
    display: block;
}

#top-banner .become-btn {
    position: absolute;
    right: 0;
    top: 20%;
}

/* --- INTRO TEXT --- */
#intro-text .container {
    background: var(--white);
    margin-top: -3rem;
    padding: 50px 3rem 60px 3rem;
    z-index: 999;
    position: relative;
    text-align: center;
    max-width: 700px;
}

#intro-text h2 {
    margin-bottom: 2rem;
}

#intro-text .btn {
    margin-top: 1rem;
}

/* --- BATTERY SYSTEM --- */
#battery-system {
    padding: 60px 0;
}

    #battery-system h2 {
        margin-bottom: 1rem;
        padding-bottom: 0;
    }

    #battery-system h3 {
        margin-bottom: 2rem;
    }

    #battery-system .container {
        text-align: center;
        max-width: 800px;
    }

    #battery-system .carousel-container {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        overflow: hidden;
        padding-top: 60px;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }

    #battery-system .carousel-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 20px 0;
    }

        #battery-system .carousel-track::-webkit-scrollbar {
            display: none;
        }

    #battery-system .card {
        flex: 0 0 28vw;
        scroll-snap-align: center;
        text-align: center;
        background: transparent;
        border: none;
        border-radius: 0;
        transition: opacity 0.3s ease;
    }

        #battery-system .card:first-child {
            margin-left: calc(50vw - 14vw);
        }

        #battery-system .card:last-child {
            margin-right: calc(50vw - 14vw);
        }

        #battery-system .card img {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        #battery-system .card h3 {
            font-size: 1.4rem;
            line-height: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin: 10px 0;
        }

        #battery-system .card p {
            font-size: 1rem;
            margin-bottom: 20px;
        }

    #battery-system .btn {
        display: inline-block;
        background: var(--white);
        color: var(--black);
        padding: 10px 25px;
        text-decoration: none;
        font-size: .85rem;
        border-radius: 0;
        font-weight: normal;
        max-width: 150px;
        margin: auto;
    }

    #battery-system .carousel-footer {
        display: flex;
        justify-content: center;
        padding: 20px 0 0;
    }

    #battery-system .controls {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    #battery-system .counter {
        font-weight: 800;
        font-size: 0.9rem;
        min-width: 60px;
        text-align: right;
    }

    #battery-system .prev-btn,
    #battery-system .next-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

        #battery-system .prev-btn:hover,
        #battery-system .next-btn:hover {
            background: #f0f0f0;
        }

/* --- STICKY NAV --- */
#sticky-nav {
    background: var(--darkestgrey);
    color: var(--white);
    margin-top: -1px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    #sticky-nav ul {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 100%;
        justify-content: space-evenly;
        gap: 0;
    }

    #sticky-nav li {
        padding: 16px;
        border-bottom: 4px solid var(--darkestgrey);
    }

    #sticky-nav a {
        color: var(--white);
    }

    #sticky-nav li.active,
    #sticky-nav li:hover {
        border-bottom: 4px solid var(--yellow);
    }

/* --- VIDEO --- */
#watch-video {
    padding: 5rem 0;
    text-align: center;
}

    #watch-video h2 {
        text-transform: uppercase;
        margin-bottom: 2rem;
    }

    #watch-video .interview-video {
        max-width: 100%;
        margin: 1rem 0 0 0;
    }

    #watch-video .video-wrapper {
        position: relative;
        display: inline-block;
    }

    #watch-video .interview-video {
        width: 100%;
        height: auto;
        display: block;
    }

    #watch-video .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 80px;
        color: white;
        opacity: 0.8;
        cursor: pointer;
        transition: opacity 0.3s;
    }

        #watch-video .play-button:hover {
            opacity: 1;
        }


/* --- BENEFITS --- */
#benefits {
    padding: 50px 0;
}

    #benefits h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    #benefits h3 {
        margin-bottom: 20px;
    }

    #benefits .tab-pane.active {
        padding: 50px 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    #benefits .tab-image,
    #benefits .tab-text {
        width: 50%;
    }

    #benefits .accordion {
        display: none;
    }

/* --- LEAD THE CHARGE --- */
#lead-the-charge {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    font-size: 16px;
}

    #lead-the-charge .become-btn {
        position: absolute;
        right: 0;
        top: 10%;
    }

    #lead-the-charge .demographics {
        font-size: 14px;
        padding: 30px 0;
    }

    #lead-the-charge h4 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    #lead-the-charge .lead-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 60px;
        margin-bottom: 30px;
    }

    #lead-the-charge .circle-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

#lead-the-charge .circle-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lead-the-charge .circle {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 20px;
    font-family: Oswald, Impact, sans-serif;
    font-weight: 700;
    isolation: isolate;
}

#lead-the-charge .circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(var(--yellow) var(--percentage, 0%), #626262 0);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 calc(100% - 22px + 0.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 calc(100% - 22px + 0.5px));
    z-index: -1;
}

/* --- JOIN THE SHIFT --- */
#join-the-shift {
    padding: 50px 0;
    background: var(--white);
}

    #join-the-shift h2 {
        text-align: center;
        margin-bottom: 50px;
    }

    #join-the-shift .background-wrapper {
        padding: 50px 0;
        height: 550px;
        background: url(../images/join-the-shift.jpg) var(--white);
        background-size: 60% auto;
        background-repeat: no-repeat;
        background-position: center left;
    }

    #join-the-shift .col-white {
        background: var(--white);
        padding: 100px 30px;
    }

    #join-the-shift h3 {
        margin-bottom: 30px;
    }

    #join-the-shift .btn {
        text-transform: none;
        font-weight: normal;
        margin-top: 1rem;
    }

/* --- BUILT FOR --- */
#built-for {
    padding: 0;
    background: var(--black);
    color: var(--white);
}

    #built-for h2 {
        margin-bottom: 30px;
    }

    #built-for .cts-logo {
        max-width: 320px;
        margin-bottom: 30px;
    }

    #built-for .background-wrapper {
        padding: 50px 0;
        height: auto;
        background: url(../images/built-for.jpg) var(--black);
        background-size: 65% auto;
        background-repeat: no-repeat;
        background-position: center left;
    }

    #built-for .col-black {
        background: var(--black);
        padding: 50px 30px;
    }


    #built-for .btn {
        text-transform: none;
        font-weight: normal;
        margin-top: 1rem;
    }

/* --- BOOK --- */
#book {
    padding: 50px 0;
    background: var(--white);
}

    #book .col-6 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #book h2 {
        margin-bottom: 30px;
    }

    #book .btn {
        text-transform: none;
        font-weight: normal;
        margin-top: 1rem;
        max-width: 170px;
    }


/*------------------------*
/* RESPONSIVE */
/*------------------------*/
@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}

@media (max-width: 1200px) {
    .nav-tabs .nav-link {
        font-size: 13px;
        padding: 12px;
        max-width: auto;
        width: auto;
    }

    #top-banner .ps-logo {
        position: absolute;
        left: 10%;
        top: 60%;
    }
}

@media (max-width: 992px) {
    #top-banner .ps-logo {
        position: absolute;
        left: 2%;
        top: 60%;
        max-width: 200px;
    }
}


@media (min-width:768px) {
    .hide-desktop {
        display: none;
    }
}

@media (max-width:960px) {
    .hide-tablet {
        display: none;
    }

    #top-banner .ps-logo {
        display: none !important;
    }

    #lead-the-charge .become-btn {
        display: none !important;
    }

    footer .footer-legal ul {
        flex-direction: column;
    }

    footer .footer-legal li:after {
        display: none;
    }

    footer .footer-boxes .d-flex {
        flex-wrap: wrap;
        width: 100%;
        padding: 0 2rem;
    }

    footer .footer-tagline span {
        font-size: 1.5rem;
    }
}

@media (max-width:768px) {
    .languageswitch {
        position: absolute;
        right: 10px;
        top: 15px;
        font-family: Oswald, Impact, sans-serif;
        font-weight: 700;
        font-size: 1rem;
    }

    .hide-mobile {
        display: none;
    }

    main {
        position: relative;
    }

    footer {
        padding-bottom: 0;
    }

        footer .footer-wrapper {
            background: var(--darkgrey);
            padding: 1rem 1rem 20% 1rem;
            display: flex;
            flex-direction: column;
            max-width: 100%;
            text-align: center;
        }

        footer .footer-copyright {
            margin: auto;
        }

    h1,
    .size-xxl {
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: 1rem;
    }

    h2,
    .size-xl {
        font-size: 2.7rem;
        line-height: 3rem;
    }

    h3,
    .size-l {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    h4,
    .size-m {
        font-size: 1.8rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1rem;
    }

    #sticky-nav .container {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }

    #mobileDropdown {
        background: transparent;
        color: var(--white);
        border-radius: 0;
        border: 0;
        text-align: left;
        padding: 1rem 2rem;
    }

    #sticky-nav ul {
        display: none;
        flex-direction: column;
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 100%;
        justify-content: space-evenly;
        gap: 0;
        background: var(--darkestgrey);
        border-radius: 0;
    }

        #sticky-nav ul.show {
            display: block;
        }

        #sticky-nav ul li {
            display: flex;
            flex-direction: column;
            list-style-type: none;
            margin: 0;
            padding: 0;
            width: 100%;
            justify-content: space-evenly;
            gap: 0;
            background: var(--darkestgrey);
            border-radius: 0;
        }

            #sticky-nav ul li a {
                padding: .5rem 2rem;
            }

            #sticky-nav ul li:hover a {
                background: var(--darkestgrey);
            }

    #benefits .tab-image,
    #benefits .tab-text {
        width: 100%;
    }

    #battery-system .accordion,
    #benefits .accordion {
        display: block;
    }

    #battery-system .accordion-item,
    #battery-system .accordion-header,
    #benefits .accordion-item,
    #benefits .accordion-header {
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        outline: none;
    }

    #battery-system .accordion-button,
    #benefits .accordion-button {
        background: transparent;
        border: none;
        box-shadow: none;
        outline: none;
        color: var(--black);
        font-weight: 600;
        border-bottom: 1px solid #C4C4C4;
    }

        #battery-system .accordion-button:not(.collapsed)::after,
        #battery-system .accordion-button.collapsed::after,
        #benefits .accordion-button:not(.collapsed)::after,
        #benefits .accordion-button.collapsed::after {
            display: none;
        }

        #battery-system .accordion-button.collapsed::before,
        #benefits .accordion-button.collapsed::before {
            content: '+';
            font-weight: normal;
            background-image: none;
            transform: none;
            font-size: 40px;
            border: 1px solid #C4C4C4;
            padding: 10px;
            margin: 0 1rem 0 0;
            padding: 0;
            position: relative;
            top: 0;
            left: 0;
            line-height: 40px;
            width: 40px;
            height: 40px;
            text-align: center;
            border-radius: 4px;
        }

        #battery-system .accordion-button:not(.collapsed)::before,
        #benefits .accordion-button:not(.collapsed)::before {
            content: '-';
            font-weight: normal;
            background-image: none;
            transform: none;
            font-size: 40px;
            border: 1px solid #C4C4C4;
            padding: 10px;
            margin: 0 1rem 0 0;
            padding: 0;
            position: relative;
            top: 0;
            left: 0;
            line-height: 30px;
            width: 40px;
            height: 40px;
            text-align: center;
            border-radius: 4px;
        }

    #benefits .accordion-body img {
        margin-bottom: 1rem;
    }

    #battery-system .nav-tabs,
    #benefits .nav-tabs,
    #battery-system .tab-content,
    #benefits .tab-content {
        display: none;
    }

    #battery-system .card {
        flex: 0 0 80vw;
    }

        #battery-system .card:first-child {
            margin-left: 10vw;
        }

        #battery-system .card:last-child {
            margin-right: 10vw;
        }

    #join-the-shift .row {
        flex-direction: column;
    }

    #join-the-shift .col-6,
    #join-the-shift .col-6 {
        width: 100%;
    }

    #join-the-shift .background-wrapper {
        padding: 400px 0 0 0;
        height: auto;
        background-size: 100% auto;
        background-position: top center;
    }

    #join-the-shift .col-white {
        background: var(--white);
        padding: 30px 30px;
    }


    #join-the-shift img {
        margin-bottom: 1rem;
    }


    #join-the-shift h3 {
        margin-bottom: 20px;
    }

    #built-for .background-wrapper {
        padding: 500px 0 0 0;
        height: auto;
        background-size: 100% auto;
        background-position: top center;
    }

    #built-for .col-black {
        background: var(--black);
        padding: 30px 30px;
    }

    #built-for .col-6 {
        width: 100%;
    }

    #book .row {
        display: flex;
        flex-direction: column;
    }

    #book .col-6 {
        width: 100%;
    }


        #book .col-6 img {
            margin-bottom: 2rem;
        }

    #battery-system .accordion-body {
        padding: 2rem;
    }

    #battery-system .carousel-navigation {
        width: 100px;
    }

    #lead-the-charge .lead-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    #top-banner.hero {
        min-height: auto;
        padding-top: 40vh;
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
    }

    #top-banner .hero-form-wrapper {
        background-color: var(--yellow);
        padding: 20px;
        max-width: 100%;
        width: 100%;
        margin-left: auto;
    }

    #intro-text .container {
        margin-top: 0;
        padding: 20px;
    }
}

@media (max-width:576px) {

    #lead-the-charge,
    #book,
    #battery-system .container {
        padding: 20px;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
}

    .video-wrapper .interview-video,
    .video-wrapper iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        display: block;
        border: 0;
    }

    .video-wrapper img.interview-video {
        object-fit: cover;
    }

.privacy {
    font-size: xx-small !important;
    margin-top: 0.5rem;
}

.privacy a{
    text-decoration: underline;
}



.languageswitch {
	position: absolute;
	right: 30px;
	top: 20px;
	font-family: Oswald, Impact, sans-serif;
	font-weight: 600;
	font-size:18px;
}
.languageswitch a{
	text-decoration:none;
}

.languageswitch span{
	border-bottom:3px solid;
}

.scroll-down-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.scroll-down-indicator a {
    color: #000000;
    display: inline-block;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
    text-decoration: none;
    opacity: 1;
}

.scroll-down-indicator a:hover {
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}


.error-message {
    display: none;
    margin: 20px 0 22px 0;
    padding: 12px 14px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    border-left: 26px solid #d71920;
}

    .error-message.has-error {
        display: block;
    }

.input-error {
    border: 1px solid #d71920 !important;
    background: #fff4f4 !important;
}

#sticky-page {
	min-height: calc(100vh - var(--hdr) - var(--ftr));
	display: flex;
	align-items: center;
}

.thankyoumessage {
	text-align: center;
	text-wrap: balance;
	margin: 0 15%;
}

.thankyou{
	text-align: center;
}