:root {
    --second-family: 'Plus Jakarta Sans', sans-serif;
    --font-family: 'DM Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --color-text-text-950: #0f172a;
    --color-text-text-450: #64748b;
    --color-text-text-400: #94a3b8;
    --color-badge-bg: #d8f3e5;
    --color-badge-text: #0f3f2e;
    --primary: #4dc0b5;
    --section-bg: #ffffff;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--section-bg);
    font-family: var(--body-font);
}

.powering-section {
    width: 100%;
    background-color: var(--section-bg);
    padding: 64px 0 0;
    display: block;
}

.powering-container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.left-side {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-side img.first-image {
    width: 100%;
    /* max-width: 690px; */
    height: 600px;
    /* height: auto; */
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 40px;
    display: block;
    margin-left: 0;
    margin-right: auto;
}

.powering-section .stats {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.powering-section .stat-item {
    flex: 1;
    min-width: 240px;
    text-align: left;
}

.powering-section .stat-heading {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: wrap;
}

.powering-section .stat-value {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 54px;
    line-height: 115%;
    color: #292929;
    margin: 0;
}

.powering-section .stat-label {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    color: #292929;
    margin: 0;
}

.powering-section .paragraph-body {
    margin-top: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
}

.powering-section .info-badge {
    display: inline-block;
    background-color: var(--color-badge-bg);
    color: #292929;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 5px;
    margin-bottom: 16px;
    white-space: nowrap;
    max-width: max-content;
    box-sizing: content-box;
}

.right-side {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
}

.right-side .text-content {
    padding-top: 8px;
}

.right-side img.second-image {
    /* width: 460px;
    max-width: 490px;
    height: 490px; */
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 8px;
    margin-top: 24px;
    display: block;
}

.powering-section .header-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 120%;
    color: #292929;
    margin: 0 0 16px 0;
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
    .stat-value {
        font-size: 48px;
    }
    .stat-label {
        font-size: 36px;
    }
    .stat-item {
        min-width: 200px;
    }
}

@media (max-width: 991.98px) {
    .section-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .powering-container {
        padding: 0 15px;
    }

    .left-side {
        align-items: flex-start;
    }

    .left-side img.first-image {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
        margin-left: 0;
        margin-right: auto;
        align-self: flex-start;
    }

    .right-side {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .right-side img.second-image {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
    }

    .right-side .text-content {
        order: 1;
        padding-top: 0;
    }

    .powering-section .header-title {
        font-size: 44px;
        line-height: 130%;
    }

    .powering-section .paragraph-body {
        font-size: 16px;
        line-height: 160%;
    }

    .powering-section .stat-value {
        font-size: 54px;
    }

    .powering-section .stat-label {
        font-size: 42px;
    }

    .powering-section .info-badge {
        font-size: 16px;
        padding: 6px 14px;
    }

    .stats {
        gap: 20px;
    }

    .stat-item {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .left-side img.first-image {
        text-align: left;
        float: none;
        clear: both;
    }

    .powering-section .stats {
        flex-direction: column;
        gap: 16px;
    }

    .powering-section .stat-item {
        min-width: 100%;
        flex: none;
    }

    .powering-section .stat-heading {
        white-space: normal;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .powering-section {
        padding-top: 48px;
    }

    .left-side img.first-image {
        margin-left: 0;
        margin-right: auto;
        display: block;
        max-width: 400px;
        width: 100%;
        height: auto;
    }

    .right-side img.second-image {
        max-height: 424px;
        width: 400px;
        height: auto;
        padding-bottom: 8px;
    }

    .powering-section .header-title {
        font-size: 32px;
    }

    .powering-section .paragraph-body {
        font-size: 15px;
    }

    .powering-section .stat-value {
        font-size: 42px;
    }

    .powering-section .stat-label {
        font-size: 32px;
    }

    .powering-container {
        padding: 0 8px;
    }
}

@media (max-width: 375px) {
    .powering-section .left-side img.first-image {
        max-height: 400px;
        width: 100%;
        height: auto;
        padding-bottom: 8px;
    }
    .right-side img.second-image {
        max-height: 400px;
        width: 100%;
        height: auto;
        padding-bottom: 8px;
    }
}
