﻿:root {
    --e-brand: #ef5425;
    --e-brand-dark: #d84c21;
    --e-ink: #151515;
    --e-muted: #676767;
    --e-soft: #f7f4f2;
    --e-panel: #f2efed;
    --e-shadow: 0 26px 58px rgba(16, 16, 16, 0.08);
    --e-container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* .container {
    max-width: var(--e-container);
} */

.e-site-header {
    /* position: sticky; */
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.04);
}

.e-brand-image {
    width: 240px;
    max-width: 100%;
}



.e-custom-toggler {
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--e-brand);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: none;
}

.e-custom-toggler span {
    width: 17px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.e-custom-toggler:focus {
    box-shadow: none;
}

.e-notice-bar {
    background: #f7ded5;
    border-top: 4px solid var(--e-brand);
}

.e-notice-bar p {
    text-align: center;
    padding: 0.62rem 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: #4d2f27;
}

.e-hero-media {
    min-height: 36rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    object-fit: cover;
}

.e-hero-content {
    text-align: center;
    padding: 5.75rem 0;
    margin-top: 13rem;
    margin-bottom: auto;
}

.e-eyebrow {
    font-size: 1.1rem;
    font-weight: 500;
}

.e-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 4.8vw, 4.2rem);
    line-height: 1.05;
    font-weight: 550;
    letter-spacing: -0.04em;
}

.e-intro-band {
    padding: 2rem 0 2.2rem;
    background: var(--e-brand);
    color: #fff;
    text-align: center;
}

.e-intro-title {
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 1rem;
    color: white;
}

.e-intro-copy {
    max-width: 77rem;
    margin: 0 auto 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.96);
}

.e-section-space {
    padding: 5rem 0;
    padding-bottom: 1rem;
}

.e-section-space--compact {
    padding-top: 4.2rem;
    padding-bottom: 1rem;
}

.e-section-space--approach,
.e-section-space--blog {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
}

.e-section-heading {
    margin-bottom: 1.3rem;
    font-size: clamp(2.05rem, 3.2vw, 3.15rem);
    /* line-height: 1.12; */
    font-weight: 700;
    letter-spacing: -0.045em;
}

.e-section-heading--stacked {
    font-size: clamp(2rem, 3vw, 3rem);
}

.e-section-heading--light {
    color: #fff;
}

.e-section-copy {
    color: var(--e-muted);
    font-size: 1rem;
    max-width: 41rem;
    margin-bottom: 1rem;
}

.e-rounded-media {
    border-radius: 26px;
}

.e-shadow-soft {
    box-shadow: var(--e-shadow);
}

.e-capabilities-section {
    background: var(--e-brand);
    padding: 3.2rem 0 3.5rem;
}

.e-capabilities-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.15rem;
}

.e-capabilities-viewport::-webkit-scrollbar {
    display: none;
}

.e-capabilities-slider {
    display: flex;
    gap: 2.15rem;
}

.e-capability-card {
    flex: 0 0 calc((100% - 4.3rem) / 3);
    background: #fff;
    border-radius: 14px;
    padding: 0.85rem;
    box-shadow: 0 18px 34px rgba(110, 40, 17, 0.12);
}

.e-capability-card img {
    width: 100%;
    height: 15.5rem;
    border-radius: 12px;
    object-fit: cover;
}

.e-capability-card-body {
    padding: 1.35rem 0.5rem 0.55rem;
    text-align: center;
}

.e-capability-card h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.12;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.03em;
}

.e-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.e-carousel-arrow {
    width: 3.35rem;
    height: 3.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 2px;
    font-size: 2.2rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.e-carousel-arrow:hover {
    background: #fff;
    color: var(--e-brand);
    transform: translateY(-2px);
}

.e-carousel-arrow:focus,
.e-carousel-arrow:focus-visible {
    background: #fff;
    color: #111;
    transform: none;
    outline: none;
    box-shadow: none;
}

.e-hubs-label {
    display: inline-block;
    margin-top: 0.55rem;
    padding: 0.95rem 1.15rem;
    background: #f6f3f1;
    border-left: 4px solid var(--e-brand);
    border-radius: 14px;
    font-size: 0.95rem;
    color: var(--e-ink);
}

.e-hubs-label span {
    color: var(--e-brand);
    font-weight: 700;
    text-transform: uppercase;
}

.e-career-panel {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--e-shadow);
}

.e-career-image-wrap {
    height: 100%;
}

.e-career-copy {
    height: 100%;
    background: var(--e-brand);
    color: #fff;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.e-career-copy p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.35rem;
}

.e-cta-button {
    align-self: flex-start;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 0.78rem 1.45rem;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.e-cta-button:hover,
.e-cta-button:focus {
    background: #fff;
    color: var(--e-brand);
    border-color: #fff;
}

.e-approach-head {
    max-width: 76rem;
    margin: 0 auto 3.25rem;
}

.e-approach-head .e-section-heading {
    margin-bottom: 1rem;
}

.e-approach-head .e-section-copy {
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.85;
}

.e-approach-head .e-section-copy + .e-section-copy {
    margin-top: 0.2rem;
}

.e-approach-diagram {
    display: grid;
    gap: 1.9rem;
}

.e-approach-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.45rem;
    align-items: stretch;
}

.e-approach-item {
    position: relative;
    display: grid;
    align-items: center;
    height: 100%;
}

.e-approach-item--left {
    grid-template-columns: minmax(0, 1fr) 11.2rem;
}

.e-approach-item--right {
    grid-template-columns: 11.2rem minmax(0, 1fr);
}

.e-approach-panel {
    position: relative;
    z-index: 1;
    min-height: 278px;
    height: 100%;
    background: #F8F8F8;
    border-radius: 18px;
    padding: 2.15rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.e-approach-panel > * {
    position: relative;
    z-index: 3;
}

.e-approach-panel::after {
    content: "";
    position: absolute;
    top: 0.1rem;
    bottom: 0.1rem;
    width: 14.8rem;
    border-radius: 999px;
    background: #fff;
    z-index: 2;
    pointer-events: none;
}

.e-approach-panel--left {
    padding-right: 7.95rem;
}

.e-approach-panel--right {
    padding-left: 7.95rem;
    text-align: right;
}

.e-approach-panel--left::after {
    right: -10.4rem;
    right: -11.4rem;
    bottom: 3.1rem;
    width: 15.8rem;
    top: 3rem;
}

.e-approach-panel--right::after {
    left: -7.4rem;
}

.e-approach-panel--right-shape::after {
    /* left: -10.4rem; */
    /* bottom: 0.1rem; */
    /* width: 14.8rem; */
    left: -11.4rem;
    bottom: 3.1rem;
    width: 15.8rem;
    top: 3rem;
}

.e-approach-panel h3 {
    margin: 0 0 1rem;
    font-size: clamp(2.15rem, 3vw, 3rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.e-approach-panel p {
    margin: 0;
    color: var(--e-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    transition: color 0.35s ease;
}

.e-approach-node {
    position: relative;
    z-index: 4;
    width: 11.2rem;
    height: 11.2rem;
    border-radius: 50%;
    background: #F8F8F8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    box-shadow: 0 0 0 11px #F8F8F8;
    transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.e-approach-item--left .e-approach-node {
    margin-left: -2.45rem;
}

.e-approach-item--right .e-approach-node {
    margin-right: -5.45rem;
}

.e-approach-item--right-shape .e-approach-node--right {
    margin-right: -3.45rem;
    margin-left: 2.55rem;
}

.e-approach-node span {
    transform: translateY(2px);
    font-size: clamp(2.35rem, 2.7vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.e-approach-item:hover .e-approach-panel,
.e-approach-item:focus-within .e-approach-panel {
    background: var(--e-brand);
    box-shadow: 0 20px 42px rgba(241, 79, 36, 0.2);
}

.e-approach-item:hover .e-approach-panel h3,
.e-approach-item:hover .e-approach-panel p,
.e-approach-item:focus-within .e-approach-panel h3,
.e-approach-item:focus-within .e-approach-panel p {
    color: #fff;
}

.e-approach-item:hover .e-approach-node,
.e-approach-item:focus-within .e-approach-node {
    background: var(--e-brand);
    color: #fff;
    box-shadow: 0 0 0 11px rgba(255, 255, 255, 0.97), 0 22px 40px rgba(241, 79, 36, 0.3);
}

.e-contact-section {
    margin-top: 0.6rem;
}

.e-contact-panel {
    height: 100%;
    background: var(--e-brand);
    color: #fff;
    padding: clamp(2rem, 5vw, 4rem);
}

.e-contact-title {
    margin: 0 0 0.2rem;
    font-size: clamp(2.2rem, 3.5vw, 3.3rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.e-contact-subtitle {
    margin-bottom: 1.7rem;
    font-size: 1rem;
    font-weight: 500;
}

.e-contact-form .form-control {
    border: 0;
    border-radius: 0;
    min-height: 3rem;
    padding: 0.9rem 1rem;
    box-shadow: none;
    font-size: 0.94rem;
}

.e-contact-form textarea.form-control {
    min-height: 8.2rem;
    resize: vertical;
}

.e-submit-button {
    margin-top: 1.2rem;
    border-radius: 0;
    color: var(--e-brand);
    font-weight: 600;
    padding: 0.68rem 1.45rem;
}

.e-blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);
    gap: 1.2rem;
}

.e-blog-feature,
.e-blog-mini {
    background: #fff;
    border: 1px solid rgba(20,20,20,0.06);
    box-shadow: 0 18px 45px rgba(18,18,18,0.06);
}

.e-blog-feature-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.e-blog-body,
.e-blog-mini-body {
    padding: 1.2rem 1.3rem 1.35rem;
}

.e-blog-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: #8c8c8c;
    font-size: 0.86rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.e-blog-feature h3,
.e-blog-mini h3 {
    margin: 0 0 0.65rem;
    font-size: 1.12rem;
    line-height: 1.4;
    font-weight: 700;
}

.e-blog-feature p {
    margin: 0 0 1rem;
    color: var(--e-muted);
}

.e-blog-stack {
    display: grid;
    gap: 1rem;
}

.e-blog-mini {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: stretch;
}

.e-blog-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.e-blog-button {
    background: var(--e-brand);
    color: #fff;
    border-radius: 0;
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.e-blog-button:hover,
.e-blog-button:focus {
    background: var(--e-brand-dark);
    color: #fff;
}

.e-footer-contact-strip {
    padding-top: 3rem;
    margin-top: -1rem;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, #0d0807 40%, #0d0807 100%);
}

.e-footer-contact-shell {
    background: var(--e-panel);
    border-radius: 2rem;
    padding: 2.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.e-footer-contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    padding: 1.25rem 1.15rem;
    border-radius: 0.75rem;
}

.e-contact-icon {
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--e-brand);
    color: #fff;
    border-radius: 0.55rem;
}

.e-contact-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.e-footer-contact-card h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
}

.e-footer-contact-card p {
    margin: 0;
    color: var(--e-muted);
}

.e-site-footer {
    background: #0d0807;
    color: rgba(255, 255, 255, 0.88);
    padding: 4.5rem 0 2rem;
}

.e-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.9rem;
}

.e-footer-brand-mark {
    width: 4.7rem;
    height: 2.2rem;
    position: relative;
}

.e-footer-brand-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 8%, #fff 8% 18%, transparent 18% 34%, #fff 34% 52%, transparent 52% 64%, #fff 64% 78%, transparent 78%);
    border-radius: 999px;
}

.e-footer-brand-text {
    font-size: 2.45rem;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 500;
    text-transform: lowercase;
}

.e-footer-copy {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
}

.e-footer-title {
    font-size: 2rem;
    line-height: 1.05;
    margin: 0 0 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.04em;
}

.e-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.95rem;
}

.e-footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.e-footer-links a:hover,
.e-footer-links a:focus {
    color: #fff;
}

.e-footer-bottom {
    margin-top: 3rem;
    margin-bottom: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
}

.e-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.e-animate.e-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {

    .e-capabilities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .e-footer-contact-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .e-footer-copy {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .e-section-space,
    .e-section-space--approach,
    .e-section-space--blog {
        padding: 4.3rem 0;
    }

    .e-blog-grid {
        grid-template-columns: 1fr;
    }

    .e-career-copy,
    .e-contact-panel {
        padding: 2.4rem;
    }

    .e-approach-row {
        gap: 1.05rem;
    }

    .e-approach-item--left {
        grid-template-columns: minmax(0, 1fr) 7.8rem;
    }

    .e-approach-item--right {
        grid-template-columns: 7.8rem minmax(0, 1fr);
    }

    .e-approach-panel {
        min-height: 238px;
        padding: 1.65rem 1.45rem;
    }

    .e-approach-panel--left {
        padding-right: 4.6rem;
    }

    .e-approach-panel--right {
        padding-left: 4.6rem;
    }

    .e-approach-panel::after {
        top: 0.05rem;
        bottom: 0.05rem;
        width: 9.6rem;
    }

    .e-approach-panel--left::after {
        right: -4.8rem;
    }

    .e-approach-panel--right::after,
    .e-approach-panel--right-shape::after {
        left: -4.8rem;
        bottom: 0.05rem;
        width: 9.6rem;
    }

    .e-approach-panel h3 {
        font-size: 1.95rem;
    }

    .e-approach-panel p {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .e-approach-node {
        width: 7.8rem;
        height: 7.8rem;
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.95), 0 16px 30px rgba(15, 15, 15, 0.11);
    }

    .e-approach-item--left .e-approach-node {
        margin-left: -3.75rem;
    }

    .e-approach-item--right .e-approach-node,
    .e-approach-item--right-shape .e-approach-node--right {
        margin-right: -3.75rem;
    }

    .e-blog-mini {
        grid-template-columns: 110px minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .e-approach-item {
        height: auto;
    }
    .e-brand-image {
        width: 190px;
    }

    .e-hero-media {
        min-height: 21rem;
    }

    .e-hero-content {
        padding: 4.7rem 0;
    }

    .e-intro-copy,
    .e-section-copy,
    .e-career-copy p {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .e-capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .e-hubs-label {
        display: block;
        width: 100%;
    }

    .e-career-panel {
        border-radius: 22px;
    }

    .e-career-copy,
    .e-contact-panel,
    .e-footer-contact-shell {
        padding: 1.5rem;
    }

    .e-approach-head {
        margin-bottom: 2.35rem;
    }

    .e-approach-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .e-approach-item,
    .e-approach-item--left,
    .e-approach-item--right {
        display: block;
        grid-template-columns: 1fr;
    }

    .e-approach-panel::after,
    .e-approach-item--right-shape .e-approach-panel--right-shape::after {
        display: none;
    }

    .e-approach-node,
    .e-approach-node--right {
        display: none;
    }

    .e-approach-panel,
    .e-approach-panel--right {
        min-height: auto;
        height: auto;
        padding: 1.45rem;
        text-align: left;
    }

    .e-approach-panel h3 {
        font-size: 1.8rem;
    }

    .e-approach-panel p {
        font-size: 0.93rem;
        line-height: 1.78;
    }

    .e-blog-feature-image {
        height: 260px;
    }

    .e-blog-mini {
        grid-template-columns: 1fr;
    }

    .e-blog-mini img {
        height: 180px;
    }

    .e-footer-contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .e-intro-band {
        padding-top: 1.7rem;
    }

    .e-brand-image {
        width: 168px;
    }

    .e-notice-bar p {
        font-size: 0.88rem;
        padding: 0.56rem 0;
    }

    .e-hero-media {
        min-height: 18rem;
    }

    .e-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .e-section-space,
    .e-section-space--approach,
    .e-section-space--blog {
        padding: 3.7rem 0;
    }

    .e-section-heading {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
    }

    .e-cta-button,
    .e-blog-button,
    .e-submit-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .e-footer-contact-card {
        padding: 1rem;
    }

    .e-footer-brand-text {
        font-size: 2rem;
    }

    .e-footer-title {
        font-size: 1.65rem;
    }
}

.e-section-heading--smallweight {
    
    font-weight: 400 !important;
    
}
.pbr-5{
    padding-bottom: 5rem !important;
}
.e-img{
    height: 100% !important;
}




















