

.topbar {
    background: var(--Black-color, #000);
}

    .topbar ul {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-end;
        gap: 60px;
        list-style: none;
    }

        .topbar ul li {
            color: var(--White-color, #FFF);
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px; /* 157.143% */
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 10px 0;
        }

            .topbar ul li i {
                width: 20px;
                height: 20px;
                font-size: 20px;
                color: #EF994A;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .topbar ul li a {
                color: #fff;
                display: flex;
                align-items: center;
                column-gap: 8px;
            }
/* header */
.navbar-nav .nav-link {
    color: var(--Text-color, #2E2E2E);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    margin-left: 24px;
    border: 0;
    background: 0 0;
}

    .navbar-nav .nav-link:hover {
        color: #ef994a;
    }

.btn-header-orange {
    margin-left: 30px;
}

.navbar-brand {
    max-width: 155px;
    display: block;
}

    .navbar-brand img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

nav.navbar {
    height: 82px;
}

header {
    transition: all 0.5s;
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
}

    header.fixed {
        top: 0;
        transition: all 0.5s;
        box-shadow: 0 1px 40px 0 #0000000a;
    }
/* Hero Banner */
.hero-banner {
    position: relative;
    z-index: 1;
}

.hero-banner-img {
    width: 100%;
    height: 650px;
    position: relative;
    z-index: 1;
}

    .hero-banner-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-banner-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(89deg, rgba(0, 0, 0, 0.70) 19.84%, rgba(0, 0, 0, 0.00) 87.57%);
    }

.her-banner-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 480px;
}

    .her-banner-info h1 {
        color: var(--White-color, #FFF);
        margin-bottom: 7px;
        font-size: 46px;
        font-style: normal;
        font-weight: 500;
        line-height: 126.9%; /* 58.374px */
        letter-spacing: 0.92px;
        text-transform: capitalize;
    }

        .her-banner-info h1 span {
            color: #EF994A;
        }

    .her-banner-info p {
        color: var(--White-color, #FFF);
        margin-bottom: 20px;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }

.hero-btn-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-orange {
    background: #EF994A;
    border-radius: 4rem;
    color: var(--white-color, #FFF);
    /* Button text/titlecase */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.32px;
    text-transform: capitalize;
    padding: 14px 30px;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    border: 1px solid #EF994A;
    gap: 8px;
}

    .btn-orange i, .btn-border-white i {
        width: 19px;
        height: 19px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-orange:hover {
        background: transparent;
        color: #EF994A;
        border: 1px solid #EF994A;
    }

.btn-border-white {
    padding: 14px 30px;
    color: var(--White-color, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.32px;
    text-transform: capitalize;
    border: 1px solid #fff;
    border-radius: 4rem;
    display: flex;
    gap: 8px;
    transition: all 0.5s;
}

    .btn-border-white:hover {
        background: #fff;
        border: 1px solid #fff;
        color: #000;
    }

.hero-btn-wrap a {
    max-width: 224px;
    width: 100%;
    justify-content: center;
}

/* formations-section */
.p-100 {
    padding: 100px 0;
}

.main-title {
    color: var(--Text-color, #2E2E2E);
    /* Headings/H2 */
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.9%; /* 40.608px */
    letter-spacing: 0.64px;
    text-transform: capitalize;
    margin-bottom: 9px;
}

    .main-title span {
        color: #EF994A;
    }

.sub-title {
    color: var(--Orange-color, #EF994A);
    /* Headings/H3 */
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.9%; /* 27.918px */
    letter-spacing: 0.44px;
    text-transform: capitalize;
}

.title-main {
    margin-bottom: 60px;
}

.formations-pills {
    justify-content: center;
    width: max-content;
    margin: 0 auto 50PX;
    background: rgba(239, 153, 74, 0.10);
    border-radius: 4rem;
}

    .formations-pills button.nav-link {
        padding: 19px 34px;
        border-radius: 4rem;
        color: var(--Text-color, #2E2E2E);
        /* Titles/medium-titlecase */
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 126.9%; /* 17.766px */
        letter-spacing: 0.28px;
        text-transform: capitalize;
    }

        .formations-pills button.nav-link.active {
            background: #EF994A;
        }

.formations-wrap {
    list-style: none;
    padding: 0;
    margin: 0 0 85px 0;
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    background: var(--White-color, #FFF);
    box-shadow: -10px 10px 60px 0px rgba(156, 156, 156, 0.30);
    overflow: hidden;
}

    .formations-wrap li {
        width: 20%;
        padding: 50px 30px;
        border: 1px solid #F4F4F4;
        height: 162px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .formations-wrap li h6 {
            color: var(--Black-color, #000);
            /* Titles/medium-uppercase */
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 126.9%; /* 17.766px */
            letter-spacing: 0.28px;
            text-transform: capitalize;
            margin-bottom: 5px;
        }

        .formations-wrap li p {
            color: var(--Text-color, #2E2E2E);
            /* Body text/extra-small */
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin-bottom: 0;
        }

        .formations-wrap li h5 {
            color: var(--White-color, #FFF);
            text-align: center;
            /* Button text/uppercase */
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 140%; /* 22.4px */
            letter-spacing: 0.16px;
            text-transform: uppercase;
        }

        .formations-wrap li.active {
            background: #EF994A;
        }

.formations-btn-wrap {
    justify-content: center;
}

.formations-section {
    position: relative;
    z-index: 1;
}

    .formations-section::after {
        content: "";
        background: url('../img/formations-bg.jpg');
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 396px;
        z-index: -1;
        background-position: center;
    }

/* ambition-section */
.ambition-section {
    background: #FFF6ED;
}

.ambition-wrap-btns {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .ambition-wrap-btns li a {
        padding: 10px 40px;
        display: flex;
        border: 1px solid var(--Black-color, #000);
        border-radius: 4rem;
        color: var(--Text-color, #2E2E2E);
        text-align: center;
        /* Body text/small */
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 157.143% */
        text-decoration: none;
        align-items: center;
        gap: 6px;
        transition: all 0.5s;
    }

        .ambition-wrap-btns li a i {
            font-size: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ambition-wrap-btns li a:hover {
            background: #000;
            color: #fff;
        }

.orientation-section {
    position: relative;
    z-index: 1;
}

.orientation-img {
    height: 480px;
    width: 100%;
    background: #000;
}

    .orientation-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.55;
    }

.orientation-info {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    text-align: center;
}

    .orientation-info h2 {
        color: #fff;
    }

        .orientation-info h2 span {
            color: #EF994A;
        }

    .orientation-info p {
        color: var(--White-color, #FFF);
        text-align: center;
        /* Body text/large */
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        margin-bottom: 40px;
    }

.orientation-btn-wrap {
    justify-content: center;
}

    .orientation-btn-wrap a {
        max-width: 300px;
    }

.innovante-section .main-title span {
    color: #EF994A;
}

.sub-text {
    color: var(--Text-color, #2E2E2E);
    text-align: center;
    /* Subtitle */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    max-width: 692px;
    margin: 0 auto;
}

.innovante-items {
    display: block;
    text-decoration: none;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.5s;
    background: #fff;
    margin-bottom: 20px;
}

    .innovante-items:hover {
        background: rgba(239, 153, 74, 0.10);
    }

.innovante-img {
    width: 100%;
    border-radius: 8px;
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .innovante-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s;
    }

.innovante-info h6 {
    color: var(--Text-color, #2E2E2E);
    /* Titles/large */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.9%; /* 20.304px */
    letter-spacing: 0.32px;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.innovante-info p {
    color: var(--Text-color, #2E2E2E);
    /* Body text/small */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    margin-bottom: 0;
}

.innovante-items:hover .innovante-img img {
    transform: scale(1.05);
}

/* footer */
footer {
    background: var(--Black-color, #000);
    padding-top: 100px;
}

.footer-logo {
    margin-bottom: 14px;
    display: block;
    max-width: 138px;
}

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

footer p {
    color: var(--White-color, #FFF);
    /* Body text/small */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    margin-bottom: 20px;
    max-width: 360px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: var(--White-color, #FFF);
    /* Body text/small */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    gap: 2px;
}

    .footer-contact li i {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        color: #EF994A;
        font-size: 16px;
    }

footer h4 {
    color: var(--Orange-color, #EF994A);
    /* Titles/large */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.9%; /* 20.304px */
    letter-spacing: 0.32px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.footer-links li a {
    color: var(--White-color, #FFF);
    /* Body text/small */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: all 0.5s;
}

p.copyright-info {
    color: var(--Beige-color, #FFF6ED);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: capitalize;
    padding: 20px 15px;
    text-align: center;
    max-width: 100%;
    border-top: 1px solid rgb(255 255 255 / 30%);
    margin-top: 80px;
    margin-bottom: 0;
}

.footer-links li a:hover {
    color: #EF994A;
}



/* Form css */
.wizard,
.wizard .nav-tabs,
.wizard .nav-tabs .nav-item {
    position: relative;
}

    .wizard .nav-tabs:after {
        content: "";
        width: 100%;
        border-bottom: solid 1px #ccc;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        top: 50%;
        z-index: -1;
        transform: translateY(-50%);
    }

    .wizard .nav-tabs .nav-item .nav-link {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        background: white;
        border: 1px solid #000;
        color: #000;
        z-index: 10;
        font-size: 18px;
    }

        .wizard .nav-tabs .nav-item .nav-link:hover {
            color: #333;
            border: 2px solid #333;
        }

        .wizard .nav-tabs .nav-item .nav-link.active {
            font-size: 20px;
            background: #ef994a;
            border: 2px solid #ef994a;
            color: #ffffff;
            font-weight: 600;
        }

        .wizard .nav-tabs .nav-item .nav-link:after {
            content: " ";
            position: absolute;
            left: 50%;
            transform: translate(-50%);
            opacity: 0;
            margin: 0 auto;
            bottom: 0px;
            border: 5px solid transparent;
            border-bottom-color: #0dcaf0;
            transition: 0.1s ease-in-out;
        }

.nav-tabs .nav-item .nav-link.active:after {
    content: " ";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    opacity: 1;
    margin: 0 auto;
    bottom: -10px;
    border: 7px solid transparent;
    border-bottom-color: #ee984a;
}

.wizard .nav-tabs .nav-item .nav-link svg {
    font-size: 25px;
}

ul#myTab {
    display: flex;
    align-items: center;
    justify-content: space-between !IMPORTANT;
    padding: 10px 0px;
    border: none;
}

.tab-content > .tab-pane {
    padding: 10px 0px;
}

a.btn.btn-secondary.previous {
    border-radius: 4rem;
    color: var(--white-color, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    padding: 14px 30px;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    border: 1px solid #000000;
    gap: 8px;
    background: black;
}

.container form .user__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 12px 0;
}
/* inside the form user details */
form .user__details .input__box {
    width: calc(100% / 2 - 20px);
}

.user__details .input__box .details {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.input__box input, .input__box select {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ef994a;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.user__details .input__box input:focus,
.user__details .input__box input:valid {
    border-color: var(--main-purple);
}

.wizard.my-5 .title-main.text-center {
    margin-bottom: 30px;
}

span.details {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

span.project__title {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.category {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .category input {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }

    .category label {
        display: flex;
        align-items: center;
        gap: 6px;
        position: relative;
    }

    .category input:checked + span {
        background: #ffffff;
        border-color: black;
    }

    .category input + span {
        width: 20px;
        height: 20px;
        border-radius: 3px;
        border: 1px solid black;
        transition: all 0.5s;
    }

    .category input:checked + span:after {
        opacity: 1;
    }

    .category input + span:after {
        content: "✓";
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: all 0.5s;
        color: #000000;
        font-weight: 500;
    }

.card {
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    max-width: 600px;
    height: auto;
    background-color: #ffffff;
    padding: 10px 30px 40px;
    margin: auto;
}

    .card h3 {
        font-size: 22px;
        font-weight: 600;
    }

.drop_box {
    margin: 10px 0 0px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dotted #a3a3a3;
    border-radius: 5px;
}

    .drop_box h4 {
        font-size: 16px;
        font-weight: 400;
        color: #2e2e2e;
    }

    .drop_box p {
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 12px;
        color: #a3a3a3;
    }

    .drop_box .btn {
        text-decoration: none;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        outline: none;
        transition: 0.3s;
    }

        .drop_box .btn:hover {
            text-decoration: none;
            background-color: #ffffff;
            color: #005af0;
            padding: 10px 20px;
            border: none;
            outline: 1px solid #010101;
        }

.form input {
    margin: 10px 0;
    width: 100%;
    background-color: #e2e2e2;
    border: none;
    outline: none;
    padding: 12px 20px;
    border-radius: 4px;
}

.form {
    width: 100%;
}

/* Inner Banner  */
.inner-banner {
    background: rgb(255,255,255);
    background: linear-gradient(146deg, rgba(255,255,255,1) 0%, rgba(240,224,197,1) 100%);
    padding: 50px 0 50px 0;
}

.inner-banner-text h1 {
    font-size: 36px;
    font-weight: 500;
    color: #2E2E2E;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.inner-banner-text strong {
    font-size: 20px;
    font-weight: 500;
    color: #EF994A;
    border-left: 6px solid #EF994A;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 4px;
    padding-left: 15px;
    max-width: 555px;
    line-height: 1.6;
    text-transform: capitalize;
}
/* At CHR  */
.at-chr {
    padding-top: 60px;
}

.chr-content h3 {
    font-size: 24px;
    font-weight: 500;
}

.chr-content strong {
    font-size: 18px;
    color: #EF994A;
    list-style: decimal;
}

.pillars img {
    width: 100%;
    max-width: 700px;
    margin: 25px 0 30px 0;
}

.pillars p {
    font-size: 18px;
    color: #2E2E2E;
    margin: 10px 0 30px 0;
}

.rewards {
    margin-top: 24px;
}

    .rewards p {
    }
/* training-sec */
.training-sec {
    padding: 60px 0 !important;
}

.training-title h2 {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #000;
    border-bottom: 1px solid #00000026;
    padding-bottom: 20px;
}

    .training-title h2 span {
        color: #EF994A;
    }

.training-box {
    border-radius: 10px;
    background-color: #9A9A9A1A;
    height: 100%;
}

    .training-box h4 {
        font-weight: 500;
        font-size: 20px;
        letter-spacing: 0.02em;
        text-transform: capitalize;
        color: #FFFFFF;
        background-color: #000;
        padding: 24px;
        text-align: center;
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
    }

    .training-box p {
        max-width: 446px;
        padding: 36px 0 36px 45px;
        font-weight: 400;
        font-size: 16px;
        line-height: 25px;
        color: #2E2E2E;
    }
/* benefit-sec  */
.benefit-sec {
    position: relative;
    z-index: 1;
    padding: 30px 0 100px 0;
}

    .benefit-sec::after {
        content: "";
        background: url('../img/formations-bg.jpg');
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 550px;
        z-index: -1;
        background-position: center;
    }

.benefit-img {
    margin-bottom: 70px;
}

    .benefit-img img {
        border-radius: 8px;
    }

.benefit-text h2 {
    color: #FFF;
}

.benefit-text p {
    font-size: 18px;
    color: #F6F9FF;
    max-width: 910px;
    margin: auto;
    font-weight: 400;
    line-height: 1.6;
}
/* local-support */
.local-support {
    padding: 100px 0;
    background-color: #FFF6ED73;
}

.local-title {
    border-bottom: 1px solid #00000026;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.local-support .row {
    margin-top: 60px;
}

.local-box {
    display: flex;
    column-gap: 20px;
    border-bottom: 0.8px dashed #B3B3B3;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.local-icon img {
    width: 125px;
}

    .local-icon img.i-1 {
        width: 110px;
    }

    .local-icon img.i-2 {
        width: 70px;
    }

    .local-icon img.i-4 {
        width: 140px;
    }

.local-text h4 {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.local-text p {
    font-size: 16px;
    color: #2E2E2E;
    line-height: 1.7;
}
/* story-sec */
.story-sec {
    background-color: #FFF6ED73;
    padding-bottom: 60px;
}

.story-box {
    margin-bottom: 50px;
}

    .story-box h2 {
        border-bottom: 1px solid #00000026;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .story-box p {
        font-size: 18px;
        max-width: 975px;
        color: #2E2E2E;
        line-height: 1.6;
    }

        .story-box p a {
            color: #EF994A;
        }

        .story-box p span {
            color: #ee984a;
            text-decoration: underline;
        }

/* NTC  */
.sub-detail h2 {
    font-size: 16px !important;
}
