body {
    --alpha-color: #0052CC;
    --beta-color: #FEC400;
    --alpha-text-dark-color: #333333;
    --alpha-text-light-color: #737B8F; 
    font-family: "Poppins", sans-serif;
}
.tc-grey {
    color: var(--alpha-text-light-color);
}
.tc-dark {
    color: var(--alpha-text-dark-color);
}
.section .container-fluid {
    width: 80%;
}
.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--alpha-text-dark-color);
    line-height: 58px;
}
/* header css start */

header .navbar {
    --bs-navbar-padding-y: 10px;
    --bs-navbar-brand-padding-y: 0;
    --bs-navbar-nav-link-padding-x: 0;
    --bs-navbar-color: var(--alpha-text-dark-color);
    --bs-navbar-hover-color: var(--alpha-color);
    --bs-navbar-active-color: var(--alpha-color);
}
header .navbar>.container-fluid {
    --bs-gutter-x: 80px;
}
header .navbar-brand img {
    display: block;
    max-height: 60px;
}
header .navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0;
}
header .nav-link {
    font-weight: 600;
}
header .navbar-nav .nav-link.login {
    background-color: var(--alpha-color);
    color: #fff;
    border-radius: 10px;
    padding: 12px 36px;
    text-transform: uppercase;
}
.nav-link.contact .icon {
    color: var(--alpha-color);
    margin-right: 4px;
}
/* banner css start */
.section {
    position: relative;
}
.banner-photo {
    position: relative;
}
.banner-photo:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(57.64% 395.11% at 43.09% 50%, rgba(0, 82, 204, 0.564) 0%, rgba(0, 82, 204, 0.94) 100%); */
    background: radial-gradient(50% 60% at 36% 50%, rgba(0, 82, 204, 0.3) 0%, rgba(0, 82, 204, 0.6) 100%);
}
.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #fff;
}
.banner-overlay-photo {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    overflow: hidden;
}
.banner-overlay-photo:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;;
    height: 100%;
    background-image: url(../images/banner_img_02.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.banner-overlay-photo img {
    position: relative;
    display: block;
    width: auto;
    height: 100%;
}
.banner-overlay .section-title {
    color: #fff;
    font-size: 50px;
    line-height: 76px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.banner-overlay p {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.banner-overlay .btn {
    padding: 10px 12px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
}
.banner-overlay .btn .icon {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: #fff;
    border-radius: 50%;
    color: #FEC400;
}
.banner-overlay .btn-primary {
    --bs-btn-bg: #FEC400;
    --bs-btn-border-color: #FEC400;
    --bs-btn-hover-bg: #FEC400;
    --bs-btn-hover-border-color: #FEC400;
    --bs-btn-active-bg: #FEC400;
    --bs-btn-active-border-color: #FEC400;
    --bs-btn-disabled-bg: #FEC400;
    --bs-btn-disabled-border-color: #FEC400;
}
/* about section css start */
.about-section {
    padding: 100px 0;
}
.about-content {
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 10px 30px 0px #4048521A;
}
.about-content p {
    font-size: 18px;
    line-height: 27px;
}
.about-content p:last-child, .ecs-box p:last-child, .aps-box p:last-child {
    margin-bottom: 0;
}
.about-banner {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin-right: -180px;
    height: 100%;
}
.about-banner img {
    height: 100%;
    width: auto;
}
.about-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.375) 100%);
}
/* eligibility section css start */
.eligibility-section {
    background-color: #DFECFF;
    padding: 40px 0;
}
.ecs-box {
    --ecs-icon-size: 48px;
    --ecs-icon-color: #fff;
    --ecs-icon-bg-color: var(--alpha-color);
    --ecs-icon-radius: 8px;
    --ecs-title-font-size: 18px;
    --ecs-title-font-weight: 600;
    background-color: #fff;
    border-radius: 20px;
    padding: 16px;
    min-height: 100%;
    font-size: 14px;
}
.ecs-box .ecs-icon {
    width: var(--ecs-icon-size);
    height: var(--ecs-icon-size);
    background-color: var(--ecs-icon-bg-color);
    color: var(--ecs-icon-color);
    border-radius: var(--ecs-icon-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.ecs-box .ecs-title {
    font-size: var(--ecs-title-font-size);
    font-weight: var(--ecs-title-font-weight);
    color: var(--alpha-text-dark-color);
    margin-bottom: 6px;
}
/* application css start */
.application-section {
    padding: 100px 0 30px;
}
.aps-box {
    --aps-icon-margin-end: 16px;
    --aps-title-font-size: 24px;
    --aps-title-font-weight: 600;
    background-color: #fff;
    border-radius: 12px;
    padding: 16px;
    min-height: 100%;
    font-size: 14px;
    box-shadow: 0px 24.56px 32.74px -14.73px #95959540;
}
.aps-box .aps-icon {
    color: var(--alpha-text-dark-color);
    margin-right: var(--aps-icon-margin-end);
}
.aps-box .aps-title {
    font-size: var(--aps-title-font-size);
    font-weight: var(--aps-title-font-weight);
    color: var(--alpha-text-dark-color);
    margin-bottom: 6px;
}
.aps-content {
    max-width: calc(100% - 40px);
}
.aps-box p {
    font-size: 18px;
    line-height: 27px;
}
/* need css start */
.help-section {
    padding: 50px 0;
    position: relative;
}
.help-section:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #F4F9FF;
    width: 100%;
    height: 90px;
    z-index: -1;
}
.help-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/help_bg_02.png), url(../images/help_bg_03.png);
    background-size: auto 172px, auto 140px;
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 0px left calc(10% - 25px), top right calc(10% - 20px);
    z-index: -1;
}
.help-box {
    background-color: #DFECFF;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
}
.help-box .help-content {
    padding: 35px 48px;
}
.help-box .help-icon {
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    background-image: url(../images/help_bg_01.png);
    background-size: auto 230px;
    background-repeat: no-repeat;
    background-position: center right;
    padding-right: 75px;
}
.help-box .hns-text {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 8px;
}
.help-box h6 {
    font-size: 20px;
    margin-bottom: 0;
}
.pg-footer {
    background-color: #F4F9FF;
    padding: 5px 0 20px;
}
.pg-footer p {
    font-size: 18px;
    line-height: 27px;
}

/* @media css start */
@media screen and (max-width: 1199px) {
    .help-box .help-icon {
        padding: 0;
        justify-content: center;
        background-size: 90% auto;
        background-position: center;
    }
    .help-icon svg {
        width: 100px;
        height: auto;
    }
}
@media screen and (max-width: 991px) {
    .section .container-fluid {
        width: 90%;
    }
    .section-title {
        font-size: 34px;
        line-height: 44px;
    }
    .banner-overlay .section-title {
        font-size: 44px;
        line-height: 66px;
    }
    .banner-overlay p {
        font-size: 28px;
    }
    .about-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .aps-box {
        --aps-title-font-size: 20px;
    }
    .help-section {
        padding: 24px 0;
    }
    .help-section:after {
        background-size: auto 100px, auto 80px;
        background-position: bottom 0px left calc(5% - 10px), top right calc(5% - 10px);
    }
    .help-box {
        border-radius: 44px;
    }
    .help-box .help-content {
        padding: 24px 36px;
    }
    .help-box .hns-text {
        font-size: 16px;
        line-height: 20px;
    }
    .help-box .hns-text .text {
        white-space: nowrap;
    }
    .help-box h6 {
        font-size: 18px;
    }
    .pg-footer p {
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 767px) {
    header .navbar .navbar-collapse {
        position: fixed;
        display: block;
        background-color: #fff;
        top: 0;
        left: -260px;
        z-index: 10;
        height: 100vh;
        width: 240px;
        text-align: center;
        box-shadow: 0 0 20px rgb(0 0 0 / 10%);
        transition: all 200ms linear;
    }
    header .navbar .navbar-collapse.show {
        left: 0;
        transition: all 200ms linear;
    }
    header .navbar-toggler {
        position: relative;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 0;
        outline: 0;
        box-shadow: none !important;
        /* transition: all 200ms linear; */
    }
    header .navbar-toggler[aria-expanded="true"] {
        color: var(--alpha-color);
        /* transition: all 200ms linear; */
    }
    header .navbar-toggler:before,
    header .navbar-toggler:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        top: calc(50% - 1px);
        transition: all 200ms linear;
    }
    header .navbar-toggler:before {
        margin-top: -8px;
    }
    header .navbar-toggler:after {
        margin-top: 8px;
    }
    header .navbar-toggler[aria-expanded="true"]:before {
        margin-top: 0;
        transform: rotate(45deg);
        transition: all 200ms linear;
        transition-delay: 100ms;
    }
    header .navbar-toggler[aria-expanded="true"]:after {
        margin-top: 0;
        transform: rotate(-45deg);
        transition: all 200ms linear;
        transition-delay: 100ms;
    }
    header .navbar-toggler .navbar-toggler-icon {
        background-image: none;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        top: calc(50% - 1px);
        transition: all 200ms linear;
        transition-delay: 100ms;
    }
    header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        opacity: 0;
        transition: all 200ms linear;
    }
    header .navbar-nav {
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    header .nav-link {
        margin-bottom: 16px;
    }
    .banner-overlay p {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .banner-overlay .section-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 4px;
    }
    .banner-overlay .btn {
        padding: 8px 10px;
        font-size: 14px;
        border-radius: 8px;
    }
    .about-section {
        padding: 60px 0;
    }
    .application-section {
        padding: 60px 0 20px;
    }
    .about-banner {
        margin-right: 0;
        margin-bottom: 24px;
        height: auto;
    }
    .about-banner img {
        height: auto;
        width: 100%;
    }
    .foot-logo img {
        width: 240px;
    }
    .help-icon svg {
        width: 60px;
        height: auto;
    }
    .help-box .help-content {
        padding: 18px 26px;
    }
}
@media screen and (max-width: 575px) {
    header .navbar {
        --bs-nav-link-font-size: 12px;
    }
    header .nav-link {
        margin-bottom: 12px;
    }
    .nav-link.contact .icon svg {
        width: 18px;
        height: auto;
    }
    header .navbar-nav .nav-link.login {
        border-radius: 8px;
        padding: 10px 24px;
        display: inline-block;
    }
    header .navbar>.container-fluid {
        --bs-gutter-x: 32px;
    }
    header .navbar-brand img {
        display: block;
        max-height: 48px;
    }
    header .navbar .navbar-collapse {
        width: 200px;
        left: -220px;
    }
    .banner-overlay .section-title {
        font-size: 18px;
        line-height: 22px;
    }
    .banner-overlay p {
        font-size: 12px;
    }
    .banner-overlay .btn {
        padding: 4px 6px;
        font-size: 10px;
        border-radius: 6px;
    }
    .banner-overlay .btn .icon {
        width: 16px;
        height: 16px;
        line-height: 16px;
    }
    .banner-overlay .btn .icon svg {
        width: 10px;
        height: auto;
    }
    .about-section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 20px;
        line-height: 24px;
    }
    .about-content p {
        font-size: 14px;
        line-height: 18px;
    }
    .ecs-box {
        --ecs-icon-size: 48px;
        --ecs-title-font-size: 14px;
        text-align: center;
        font-size: 12px;
    }
    .ecs-box .ecs-icon {
        margin: 0 auto 12px;
    }
    .application-section {
        padding: 40px 0 10px;
    }
    .aps-box {
        --aps-title-font-size: 16px;
    }
    .aps-box p {
        font-size: 14px;
        line-height: 18px;
    }
    .help-box .help-content {
        padding: 16px 16px;
    }
    .help-box .section-title {
        text-align: center;
        margin-bottom: 16px;
    }
    .help-box .hns-text {
        font-size: 10px;
        line-height: 14px;
        justify-content: center;
    }
    .help-box .hns-text svg {
        height: auto;
        width: 12px;
    }
    .help-box h6 {
        font-size: 12px;
        text-align: center;
    }
    .help-box .col-sm-3 {
        padding: 16px 0 0;
    }
    .help-box .help-icon {
        width: 100px;
        height: 60px;
        padding: 0;
        justify-content: center;
        background-size: auto 100%;
        background-position: center;
        margin: 0 auto;
    }
    .help-icon svg {
        width: 32px;
        height: auto;
    }
    .pg-footer p {
        font-size: 10px;
        line-height: 16px;
    }
    .foot-logo img {
        width: 140px;
    }
}