.idc-page-header,
.idc-page-header * {
    box-sizing: border-box;
}

.idc-page-header {
    --idc-header-green: #18a650;
    --idc-header-orange: #EC722A;
    --idc-header-ink: #17231e;
    --idc-header-cream: #EDEDED;
    color: var(--idc-header-ink);
    font-family: "Roboto", Arial, sans-serif;
    max-width: 100%;
    overflow: clip;
}

.idc-page-header--descriptive {
    background: var(--idc-header-cream);
    padding: clamp(20px, 3vw, 42px) 0 0;
}

.idc-page-header__visual {
    align-items: flex-end;
    background-color: var(--idc-header-ink);
    background-image: linear-gradient(90deg, rgba(10, 31, 22, .91) 0%, rgba(10, 31, 22, .67) 49%, rgba(10, 31, 22, .12) 100%), var(--idc-page-header-image, linear-gradient(var(--idc-header-ink), var(--idc-header-ink)));
    background-position: var(--idc-page-header-position, center center);
    background-repeat: no-repeat;
    background-size: cover;
    border: 10px solid #fff;
    border-radius: 24px;
    display: flex;
    margin-inline: auto;
    min-height: clamp(460px, 47vw, 625px);
    overflow: hidden;
    padding: clamp(34px, 6vw, 86px);
    position: relative;
    width: min(1320px, calc(100% - clamp(32px, 6vw, 96px)));
}

.idc-page-header__content {
    max-width: 760px;
    min-width: 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.idc-page-header__eyebrow {
    color: #f7b48e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.idc-page-header h1 {
    margin: 0;
    text-wrap: balance;
}

.idc-page-header--descriptive h1 {
    color: #fff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: -.045em;
    line-height: 1;
}

.idc-page-header h1 span {
    color: var(--idc-header-orange);
    font-family: "Ivy Journal", Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.idc-page-header__description {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 300;
    line-height: 1.65;
    margin: clamp(20px, 3vw, 30px) 0 0;
    max-width: 690px;
    overflow-wrap: break-word;
}

.idc-page-header__accent-line {
    background: var(--idc-header-orange);
    bottom: 0;
    height: 5px;
    left: clamp(34px, 6vw, 86px);
    position: absolute;
    width: 86px;
}

.idc-page-header--compact {
    align-items: center;
    background: #1A2B1A;
    color: #fff;
    display: flex;
    min-height: 357px;
    overflow: hidden;
    position: relative;
}

.idc-page-header__compact-inner {
    margin-inline: auto;
    padding: 56px clamp(28px, 4vw, 52px);
    position: relative;
    width: min(1320px, 100%);
    z-index: 2;
}

.idc-page-header--compact h1 {
    color: #fff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 300;
    letter-spacing: -.04em;
    line-height: 1.06;
    max-width: 1000px;
}

.idc-page-header__circle {
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
}

.idc-page-header__circle--small {
    animation: idc-header-pulse 7s ease-in-out infinite;
    background: #EC722A;
    height: 140px;
    left: -70px;
    opacity: .2;
    top: 108px;
    width: 140px;
}

.idc-page-header__circle--large {
    animation: idc-header-pulse 9s ease-in-out infinite reverse;
    background: #EC722A;
    height: 340px;
    opacity: .04;
    right: 40px;
    top: 8px;
    width: 340px;
}

@keyframes idc-header-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.idc-page-header__subsidiary-inner {
    align-items: center;
    display: flex;
    gap: clamp(36px, 6vw, 92px);
    justify-content: space-between;
}

.idc-page-header__subsidiary-copy {
    min-width: 0;
}

.idc-page-header__sector-icons {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: clamp(18px, 2.5vw, 34px);
    justify-content: flex-end;
}

.idc-page-header__sector-icon {
    align-items: center;
    display: flex;
    height: clamp(62px, 7vw, 92px);
    justify-content: center;
    width: clamp(62px, 7vw, 92px);
}

.idc-page-header__sector-icon img {
    display: block;
    height: 100%;
    max-height: 92px;
    max-width: 92px;
    object-fit: contain;
    width: 100%;
}

.idc-page-header--enhanced .idc-page-header__content,
.idc-page-header--enhanced .idc-page-header__compact-inner {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.idc-page-header--enhanced.is-visible .idc-page-header__content,
.idc-page-header--enhanced.is-visible .idc-page-header__compact-inner {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 620px) {
    .elementor-icon-list-items.elementor-inline-items {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .idc-page-header--descriptive {
        padding-top: 14px;
    }

    .idc-page-header__visual {
        background-image: linear-gradient(180deg, rgba(10, 31, 22, .42) 0%, rgba(10, 31, 22, .93) 76%), var(--idc-page-header-mobile-image, var(--idc-page-header-image, linear-gradient(var(--idc-header-ink), var(--idc-header-ink))));
        border-width: 6px;
        border-radius: 18px;
        min-height: 570px;
        padding: 32px 24px 40px;
        width: calc(100% - 28px);
    }

    .idc-page-header--descriptive h1 {
        font-size: clamp(38px, 11.5vw, 48px);
        line-height: 1.02;
        max-width: 100%;
    }

    .idc-page-header__description {
        font-size: 15px;
        line-height: 1.58;
    }

    .idc-page-header__accent-line {
        left: 24px;
    }

    .idc-page-header--compact {
        min-height: 270px;
    }

    .idc-page-header__compact-inner {
        padding: 48px 28px;
    }

    .idc-page-header--compact h1 {
        font-size: clamp(38px, 11vw, 48px);
    }

    .idc-page-header__circle--small {
        height: 112px;
        left: -56px;
        top: 79px;
        width: 112px;
    }

    .idc-page-header__circle--large {
        height: 260px;
        right: -105px;
        top: 4px;
        width: 260px;
    }

    .idc-page-header--subsidiary {
        min-height: 330px;
    }

    .idc-page-header__subsidiary-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 26px;
    }

    .idc-page-header__sector-icons {
        gap: 14px;
        justify-content: flex-start;
    }

    .idc-page-header__sector-icon {
        height: 52px;
        width: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .idc-page-header--enhanced .idc-page-header__content,
    .idc-page-header--enhanced .idc-page-header__compact-inner {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .idc-page-header__circle {
        animation: none;
    }
}
