:root {
    --pri-color: #1D50F8;
    --sec-color: #ED2121;
}

.dark-sec-bg {
    background-color: var(--pri-color);
}

p {
    font-size: 15px;
}

.ctm-img-size {
max-width:444px;
}

.mid-title {
    font-family: "Inria Serif", serif;
    font-size: 35px;
    font-weight: bold;
    color: #383131;
}

.inner-banner {
    min-height: 70vh;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

    .inner-banner span {
        font-size: calc(20px + (27 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: #fff;
    }


.mianbanner-form {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.mainBnr-btn {
    background-color: red;
    text-decoration: none;
    color: #fff;
    padding: 9px 22px;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    border-bottom: 2px solid red;
}

    .mainBnr-btn:hover {
        background-color: #000;
        color: #fff;
        border-bottom: 2px solid #000;
    }

.mainBnr-fld {
    font-size: 15px;
    font-weight: 500;
    padding: 9px 12px;
}

.facts-sec h3 {
    font-size: calc(24px + (35 - 24) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    color: #383131;
    line-height: 1;
}

.fact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F9F9F9;
    border: 0;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    padding: 20px;
}

    .fact-box .fact-img {
        max-width: 150px;
    }

        .fact-box .fact-img img {
            width: 100%;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;
        }

    .fact-box .fact-text span {
        font-size: calc(24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)));
        font-weight: bold;
    }

    .fact-box .fact-text {
        max-width: 300px;
    }

        .fact-box .fact-text .red {
            color: var(--sec-color);
        }

        .fact-box .fact-text .blue {
            color: var(--pri-color);
        }

        .fact-box .fact-text p {
            font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: #030303;
        }

.blue-cta {
    border: 0;
    border-radius: 10px;
    background-color: var(--pri-color);
}

    .blue-cta h4 {
        font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
    }

    .blue-cta h3 {
        font-size: calc(26px + (35 - 26) * ((100vw - 300px) / (1920 - 300)));
        font-weight: bold;
    }

    .blue-cta a {
        text-decoration: none;
        margin: 0;
        display: flex;
        align-items: center;
/*        justify-content: center;*/
    }

        .blue-cta a i {
            /* font-family: 'FontAwesome'; */
            color: #fff;
            margin-left: 12px;
        }

.game-box {
    background-color: #F3F6FF;
    padding: 35px 50px;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin: 0 20px;
    min-height: 300px !important;
}

    .game-box h4 {
        font-family: "Inria Serif", serif;
        display: block;
        font-size: calc(20px + (28 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: bold;
        color: #000;
    }

    .game-box p {
        
        font-weight: 400;
        color: #978F8F;
    }

    .game-box .game-text {
        margin-bottom: 40px;
    }

    .game-box .game-bottom {
        display: flex;
        align-items: center;
    }

        .game-box .game-bottom img {
            /*            width: 60px;
            height: 60px;*/
            border: 0;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            margin-right: 15px;
            flex: 1 0 61px;
            max-width: 61px;
        }

        .game-box .game-bottom span {
            font-family: "Inria Serif", serif;
            font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
            font-weight: bold;
            color: #000;
        }

.game-box-1 {
    background-color: #FFF4F4;
}

.game-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5rem 0;
    list-style-type: none;
    position: relative;
}

    .game-slider .slick-dots li {
        margin: 30px 0 0.25rem;
    }

    .game-slider .slick-dots button {
        display: block;
        width: 12px;
        height: 12px;
        padding: 0;
        border: none;
        border-radius: 100%;
        background-color: #EBEBEB;
        text-indent: -9999px;
    }

    .game-slider .slick-dots li.slick-active button {
        background-color: #646363;
    }

.contact-bg {
    background-color: #F9F9F9;
    padding: 30px 50px;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

    .contact-bg h3 {
        font-family: "Inria Serif", serif;
        font-size: calc(28px + (50 - 28) * ((100vw - 300px) / (1920 - 300)));
        font-weight: bold;
        color: #383131;
    }



.acc-box {
    background-color: #F9F9F9;
    border: 0;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    background-color: #FFF4F4;
    min-height: 330px;
    padding: 25px;
}

.acc-bg1 {
    background-color: #F3F6FF;
}

.acc-bg2 {
    background-color: #F3FBFF;
}

.acc-bg3 {
    background-color: #F5EDFF;
}

    

.acc-box .acc-box-icon {
    margin: 15px 0;
}

.acc-box span {
    font-family: "Inria Serif", serif;
    font-size: calc(20px + (25 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    color: #383131;
    margin-bottom: 25px;
}

.acc-box p {
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #978F8F;
    margin-bottom: 0;
    margin-top: 10px;
}

.blue-cta-full {
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: #1d50f8;
}

.blue-cta-full h3 {
    font-size: calc(24px + (35 - 24) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    color: #383131;
    line-height: 1;
}

    .blue-cta-full img {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

.accredited-box {
    border: 1px solid #F3F3F3;
    text-emphasis: none;
    text-align: center;
}

    .accredited-box span {
        font-size: calc(20px + (22 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: #fff;
        background-color: var(--pri-color);
        display: flex;
        justify-content: center;
        padding: 5px 0;
    }

    .accredited-box .accred-box-mid {
        min-height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(20px + (25 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: var(--pri-color);
    }

    .accredited-box label {
        font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: #fff;
        background-color: #ED2121;
        display: flex;
        justify-content: center;
        padding: 5px 0;
    }

    .accredited-box p {
        padding: 12px 10px;
        font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: #000;
        margin: 0;
    }

.program-sec {
    position: relative;
}

    .program-sec .row {
        padding: 30px 20px;
        border-bottom: 1px solid #A19999;
    }

        .program-sec .row:nth-child(1) {
            border-top: 1px solid #A19999;
        }

    .program-sec span {
        font-family: "Inria Serif", serif;
        font-size: calc(20px + (26 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: #383131;
        margin-bottom: 30px;
    }

    .program-sec a {
        margin-top: 25px;
        font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: var(--pri-color);
        padding-bottom: 8px;
    }

.acc-bg {
    background-color: var(--pri-color);
}

    .acc-bg .accordion {
        background-color: transparent;
    }

        .acc-bg .accordion .accordion-item,
        .acc-bg .accordion .accordion-item:focus {
            background-color: transparent;
            box-shadow: none;
            border-radius: 0;
            border: 0;
            border-bottom: 1px solid #fff;
        }

        .acc-bg .accordion .accordion-button,
        .acc-bg .accordion .accordion-button:focus {
            background-color: transparent;
            box-shadow: 0;
            font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: #fff;
        }

        .acc-bg .accordion .accordion-item .accordion-body {
            font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: #fff;
        }

    .acc-bg .accordion-button::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
        transition: all 0.5s;
        filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(0%) hue-rotate(193deg) brightness(105%) contrast(107%);
    }

    .acc-bg .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
        filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(0%) hue-rotate(193deg) brightness(105%) contrast(107%);
    }

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.acc-bg .accordion-button::after {
    transition: all 0.5s;
}

.acc-bg .nav-tabs {
    display: flex;
    justify-content: space-around;
    border: 0;
}

#SignupForm {
    background-color: #fff;
    border: 0;
    padding: 50px 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
    #SignupForm .nav .nav-item {
        display: flex;
        flex: 1 0 50%;
        max-width: 50%;
    }
.disclosure h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 63px;
    color: #383131;
}
.disclosure p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #978F8F;
    margin:0;
}
.disclosure hr {
    border: 0.5px solid #000000;
}
.extra-pad{
    padding-bottom:45px;
}
.acc-bg .nav-tabs .nav-item {
    color: #978F8F;
    border-bottom: 1px solid #978F8F;
    /* padding-bottom: 10px; */
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

    .acc-bg .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        border: 0;
        border-bottom: 1px solid var(--sec-color);
        color: #000;
        font-weight: 600;
    }

#SignupForm input,
#SignupForm select {
    height: 50px;
    border: 1px solid #978F8F;
    margin-bottom: 10px;
    width: 100%;
    padding: 5px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: #333;
}

#SignupForm .form-check .form-check-input {
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0;
}

.step-form-top {
    display: flex;
/*    justify-content: space-between;*/
    margin-bottom: 25px;
    gap: 10px;
}

.step-form-top span {
    font-size: calc(17px + (22 - 17) * ((100vw - 300px) / (1920 - 300)));
    border: 0;
    
    color: #978F8F;
    font-weight: 500;
    padding-bottom: 8px;
    display:flex;
    flex:1 0 50%;
    max-width:50%;
}

.acc-bg #SignupForm select::placeholder {
    color: #978F8F;
}

.flt-box {
    min-height: 180px;
}
/* Step form Css */
.step-form {
    display: none;
}

.step-form.active {
    display: block;
}

.next {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 40px;
    width: 40px;
}

    .next i {
        font-size: 20px;
    }
/* .step-form-box{
    background-color: #fff;
    border: 0;
    padding: 50px 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
fieldset { border:none; width:320px;}
legend { font-size:18px; margin:0px; padding:10px 0px; color:#b0232a; font-weight:bold;}
label { display:block; margin:15px 0 5px;}
input[type=text], input[type=password] { width:300px; padding:5px; border:solid 1px #000;}
.prev, .next { background-color:#b0232a; padding:5px 10px; color:#fff; text-decoration:none;}
.prev:hover, .next:hover { background-color:#000; text-decoration:none;}
.prev { float:left;}
.next { float:right;}
#steps { list-style:none; width:100%; overflow:hidden; margin:0px; padding:0px;}
#steps li {font-size:24px; float:left; padding:10px; color:#b0b1b3;}
#steps li span {font-size:11px; display:block;}
#steps li.current { color:#000;}
#makeWizard { background-color:#b0232a; color:#fff; padding:5px 10px; text-decoration:none; font-size:18px;}
#makeWizard:hover { background-color:#000;} */
/* Step form End */

.expert-sec {
    position: relative;
}

    .expert-sec .accordion {
        background-color: transparent;
    }

        .expert-sec .accordion .accordion-item,
        .expert-sec .accordion .accordion-item:focus {
            background-color: transparent;
            box-shadow: none;
            border-radius: 0;
            border: 0;
            border-bottom: 1px solid #A19999;
        }

        .expert-sec .accordion .accordion-button,
        .expert-sec .accordion .accordion-button:focus {
            background-color: transparent;
            box-shadow: 0;
            font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: #383131;
        }

        .expert-sec .accordion .accordion-item .accordion-body {
            font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: #383131;
        }

.mission-sec {
    position: relative;
}

    .mission-sec h3 {
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .mission-sec .blue-before,
    .mission-sec .red-before {
        position: relative;
    }

        .mission-sec .blue-before::before {
            content: "";
            width: 60px;
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: var(--pri-color);
        }

        .mission-sec .red-before::before {
            content: "";
            width: 60px;
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: var(--sec-color);
        }

    .mission-sec h3:nth-last-child() {
        border-bottom: 1px solid var(--pri-color) !important;
    }

.core-sec {
    background-color: #F5F8FF;
    padding-top:50px;
}

    .core-sec h3 {
        margin-bottom: 100px;
    }
.core-sec-2 h3 {
    margin-bottom: 50px !important;
}
.core-boxes {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
    border-radius: 10px;
    position: relative;
    padding: 40px 20px 25px 20px;
    min-height: 384px;
    margin-top: 10px;
}
.core-boxes-2 {
    min-height: 461px;
}
.core-boxes .core-boxes-icon {
    margin: 10px 0 10px;
}

    .core-boxes .core-boxes-text span {
        font-family: 'Poppins';
        font-size: 25px;
        font-weight: 500;
        color: #383131;
        margin-top: 15px;
    }

    .core-boxes .core-boxes-text p {
        font-size: 14px;
        font-weight: 400;
        color: #978F8F;
        margin-top: 8px;
        margin-bottom: 0;
    }

.cor-top {
    position: relative;
    top: -80px;
}

.guiding-sec .accordion {
    background-color: transparent;
}

    .guiding-sec .accordion .accordion-item,
    .guiding-sec .accordion .accordion-item:focus {
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        border: 0;
        border-bottom: 1px solid #A19999;
    }

    .guiding-sec .accordion .accordion-button,
    .guiding-sec .accordion .accordion-button:focus {
        background-color: transparent;
        box-shadow: 0;
        font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: #383131;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }

    .guiding-sec .accordion .accordion-item .accordion-body {
        font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: #383131;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

.scholar-sec {
    position: relative;
}

    .scholar-sec .red-before {
        font-family: "Inria Serif", serif;
        font-size: 25px;
        font-weight: 500;
        color: #383131;
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

        .scholar-sec .red-before::before {
            content: "";
            width: 60px;
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: var(--sec-color);
        }

    .scholar-sec p {
        font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: #978F8F;
    }

.scholar-list li {
    font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #978F8F;
}

.aids-sec {
    position: relative;
    z-index: 99;
}

    .aids-sec table {
        position: relative;
        z-index: 99;
    }

.table-box {
    position: relative;
    z-index: 99;
}

    .table-box thead,
    .table-box tbody {
        position: relative;
        z-index: 99;
    }

        .table-box tbody tr {
            font-weight: 400;
        }

    .table-box::before {
        content: "";
        background-color: #001E7F;
        width: 30%;
        height: 78%;
        position: absolute;
        right: -2%;
        top: 15%;
        z-index: 1;
        border: 0;
        border-radius: 20px;
    }

.federal-sec {
    position: relative;
}

    .federal-sec .row {
        border-bottom: 1px solid #333;
        padding-bottom: 50px;
        margin-bottom: 50px;
    }

    .federal-sec a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--sec-color);
    }

        .federal-sec a i {
            margin-left: 10px;
        }

.red-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--sec-color);
}

    .red-link i {
        margin-left: 10px;
    }

.federal-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

    .federal-box .federal-box-icon {
        max-width: 200px;
        width: 80px;
        margin-top: 4px;
    }

    .federal-box .federal-box-text {
        max-width: 600px;
    }

        .federal-box .federal-box-text span {
            font-family: "Inria Serif", serif;
            font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)));
            font-weight: bold;
            color: #383131;
            padding-bottom: 0;
            margin: 0;
        }

        .federal-box .federal-box-text p {
            font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            color: #383131;
            margin: 0;
            padding-top: 8px;
        }

.advisor-sec {
    background-color: #1D50F8;
}

.advisor-box {
    background-color: #fff;
    min-height: 244px;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: grid;
    align-items: center;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

    .advisor-box .advisor-box-icon {
        margin-bottom: 10px;
    }

    .advisor-box .advisor-box-text a,
    .advisor-box .advisor-box-text p {
        font-size: calc(14px + (15 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: #383131;
        text-decoration: none;
    }

.advisor-card-box {
    background-color: #fff;
    min-height: 330px;
    border: 0;
    border-radius: 20px;
    padding: 10px;
}

.advisor-card-box-img img {
    width: 100%;
    min-height: 170px;
    object-fit: cover;
    margin-bottom: 20px;
}

.advisor-card-box span {
    font-family: "Inria Serif", serif;
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    color: #56595B;
    margin-bottom: 10px;
}

.advisor-card-box p {
    font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #383131;
    margin: 0;
}

.ready-box {
    display: flex;
    align-items: center;
}

    .ready-box img {
        width: 60px;
        height: 60px;
        border: 0;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin-right: 25px;
    }

    .ready-box span {
        font-family: "Inria Serif", serif;
        font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
        font-weight: bold;
        color: #fff;
        margin: 0;
    }

.btn-holder {
    display: flex;
    align-items: center;
}


/*----------------------------------- Tution Financial Start ---------------------------*/

.tu-cost-card {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    /* padding: 20px 20px; */
}

.cost-card-head {
    background: #1D50F8;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
    padding: 18px 10px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.cost-card-fee {
    padding: 30px 0 20px;
    border-bottom: 1px solid #978F8F;
    margin-left: 30px;
    margin-right: 30px;
}

    .cost-card-fee ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cost-card-fee li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
    }

    .cost-card-fee li p {
        color: #383131;
        margin-bottom: 0;
    }

    .cost-card-total {
        padding: 20px 30px;
    }

    .cost-card-total p {
    /* margin-bottom: 0; */
        color: #383131;
    }

    .cost-card-total strong {
        font-size: 16px;
        font-weight: 600;
        color: #383131;
    }

    .cost-card-btn {
        text-align: center;
        padding: 0 0 40px;
    }

    .cost-card-btn a {
        text-decoration: none;
        padding: 10px 50px;
        border: 1px solid #ED2121;
        border-radius: 20px;
        color: #ED2121;
        font-weight: 400;
        font-size: 14px;
    }

    .tuitionFee-btn {
        padding: 0 0 30px;
        display: flex;
        margin: 0 10px 0 10px;
    }

        .tuitionFee-btn a {
            text-decoration: none;
            padding: 10px 2px;
            width: 100%;
            border: 1px solid #ED2121;
            border-radius: 20px;
            color: #ED2121;
            font-weight: 400;
            font-size: 14px;
            text-align: center;
            transition: 0.3s ease-in-out;
        }

    .tuitionFee-btn a:hover {
        background-color: #ED2121;
        color: #fff;
    }

.cost-card-fee strong p {
    font-size: 18px;
    font-weight: 600;
    color: #383131;
}

    .overallCost-div ul {
        color: #ffff;
        font-size: 14px;
        font-weight: 300;
    }

    .overallCost-btns {
        display: flex;
        gap: 100px;
        color: #fff;        
    }

    .overallCost-btn1 {
        position:relative;
    }

.overallCost-btns i.fa-regular.fa-registered {
    font-size: 8px;
    position: absolute;
    right: -10px;
    top: 7px;
}

.overallCost-btn1 a {
    text-decoration: underline !important;
}

.overallCost-div h3 {
    color: #383131;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins';
}

.overallCost-div p {
    color: #383131;
    line-height: 2;
}

.overallCost-div a {
    text-decoration: underline !important;
    cursor: pointer;
}

.fees-table {
    border: 1px solid #978F8F;
    padding-top: 30px;
}

.fees-table tr {
    border-color: #1D50F8;
}

.fees-table td{
    line-height: 2;
}

.fees-table .rowHead {
    font-weight: 500;
    font-size: 14px;
    color: #000;
    line-height: 2.2;
    padding-left: 14px;
}

.fees-table .colHead {
    font-weight: 600;
    font-size: 18px;
    color: #463030;
    border-bottom: 1px solid #1D50F8;
    padding-bottom: 10px;
}

.fee-table-sec .nav-pills .nav-link.active {
    color: #000;
    background: transparent;
    border-bottom: 2px solid red;
    border-radius: 0;
    padding: 10px 0 0;
    font-size: 18px;
    font-weight: 500;
}

.fee-table-sec .nav-pills .nav-link {
    color: #978F8F;
    background: transparent;
    border-bottom: 2px solid #978F8F;
    border-radius: 0;
    padding: 10px 0 0;
    margin: 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.fees-table .bl-tab {
    background-color: #1D50F8 !important;
    color: #fff;
}

.fee-table-date p {
    text-align: end;
}

.fees-table tr:last-child {
    border-bottom: transparent;
}

.mob-bg {
    background-color: #F5F8FF;
}

.saving-content {
    text-align: center;
}

.savingCost-div {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    position: relative;
    background: #fff;
}

    .savingCost-div span {
        font-size: 35px;
        color: #000;
        font-weight: 600;
        font-family: inria-serif;
    }

.sld-btn {
    background: #fff;
    padding-bottom: 50px;
}

.savingCost-div:before {
    position: absolute;
    content: "";
    background: #727272;
    width: 2px;
    height: 86px;
    top: 34px;
}

.sld-btn p {
    font-size: 18px;
    color: #383131;
    padding-bottom: 20px;
}

.sld-btn a {
    background: #ED2121;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    padding: 10px 70px;
    font-weight: 300;
}

.cost-card-head p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

.ctaLogo-div {
    display: flex;
    gap: 30px;
}

.ctaContent-div p {
    font-size: 18px;
}

.faqExpandFunc a {
    color: #ED2121 !important;
    font-weight: 500;
    cursor: pointer;
}

.priceSaved h2 {
    font-size: 22px;
    color: #383131;
    font-weight: 600;
}

.priceSaved span {
    font-size: 32px;
    color: #383131;
    font-weight: 600;
}

.lgBlue-bg {
    background-color: #F5F8FF;
}

.applyLogo-div h3 {
    color: #383131;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 600;
}

.creditTrans a {
    background-color: #ED2121;
    color: #fff !important;
    font-weight: 500;
    padding: 10px 30px;
    font-size: 14px;
    border-radius: 6px;
}

.ctaForm-bg {
    background-color: #1D50F8;
    border-radius: 10px;
    overflow: hidden;
}

.ctaForm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctaForm-Cont {
    padding-left: 40px;
    padding-right: 20px;
}

.ctaForm-Fields select.form-select {
    border-radius: 18px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.uniCard-Cont h4 {
    color: #56595B;
    font-size: 20px;
    font-weight: 600;
}

.uniCard-Cont p {
    color: #383131;
}

.uniCard-Cont a {
    color: #ED2121;
}

.uniCard-div {
    background: #FFFFFF;
    border: 1px solid #C2CAD1;
    border-radius: 12px;
    padding: 10px 10px 20px 10px;
}

.uniCards-sec p {
    padding-right: 10px;
    min-height: 60px;
}

.uniCardsRow {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.uniCard-Cont a i {
    padding-left: 16px;
}

.courseCredits-sec h4 {
    color: #383131;
    font-weight: 600;
    line-height: 1.6;
}

.courseCredits-sec {
    background-color: #F5F8FF;
}

.courseCredits-sec p {
    line-height: 2;
}

.courseCredits-sec h5 {
    color: #383131;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 600;
}

.courseCredits-sec span {
    color: #383131;
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 600;
}

.bnrCards-main {
    margin-top: -70px;
    position: relative;
}

.bnrCard-div {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 24px;
    min-height: 270px;
}

.bnrCard-div h2 {
   color: #383131;
   font-size: 22px;
   padding-top: 20px;
}

.bnrCard-div p {
    margin-bottom: 0;
}

.bnrCard-div strong {
    color: #978F8F;
    font-weight: 500;
    font-size: 15px;
}

.bnrCard-div a {
    color: #978F8F;
    font-weight: 300;
    font-size: 14px;
}

.mainCard-div {
    background: #F5F8FF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 24px;
    min-height: 320px;
    position: relative;
}

.mainCard-div h2 {
    color: #383131;
    font-size: 22px;
    padding-top: 20px;
}

.mainCard-btn {
    position: absolute;
    bottom: 30px;
}

.mainCard-div a {
    color: #383131;
    font-weight: 400;
    font-size: 14px;
}

.appProcList {
    list-style: none;
    padding: 0;
}

.appProcList h4 {
    color: #383131;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Poppins';
}

.appProcList p {
    color: #383131;
}

.appProc-sec h4 {
    color: #383131;
    font-weight: 600;
}

.aplNow-sec {
    background-color: #001E7F;
}

.aplNow-sec h4 {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
}

.aplNow-sec p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.aplNow-sec a {
    background: #ED2121;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    padding: 12px 34px;
}

.addSupport h5 {
    color: #383131;
    font-size: 24px;
}

.addSup-links ul {
    list-style: none;
    padding: 0;
}

.addSup-links h5 {
    font-size: 13px;
    font-family: 'Poppins';
    font-weight: 300;
    color: #978F8F;
    cursor: pointer;
}

.addSup-links li {
    display: flex;
    justify-content: space-between;
    padding: 16px 10px 8px 10px;
    border-bottom: 1px solid #C1CAD1;
}

.addSup-links span {
    background: #1D50F8;
    border-radius: 26PX;
    padding: 0px 5px;
}

.addSup-links span i {
    color: #fff;
    font-size: 14px;
}

.prog-schl-div {
    background: #FFFFFF;
    border: 1px solid #C2CAD1;
    border-radius: 12px;
    padding: 10px 10px 0px;
}

.prog-schl-Cont {
    position: relative;
    min-height: 210px;
}

.prog-schl-Cont h4 {
    color: #383131;
    font-size: 17px;
    font-weight: 600;
}

.prog-schl-Cont p {
    color: #978F8F;
}

.prog-schl-Cont a {
    background-color: #1D50F8;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}


.prog-Accord .accordion {
    border: none;
}

.prog-Accord .accordion-button{
    background: transparent;
    color: #383131;
    font-size: 24px;
    font-weight: 600;
    padding: 20px 0;
}

.prog-Accord .accordion-body {
    padding: 0 0 10px 0;
}

.prog-Accord .accordion-item {
    border-bottom: 1px solid #9C9696 !important;
    border-radius: 0px !important;
    border: 0;
}

.prog-Accord .accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

.prog-Accord .accordion-button:not(.collapsed) {
    color: #000 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}

.prog-Accord .accordion-button:not(.collapsed)::after {
    border: 1px solid #383131 !important;
    border-radius: 50% !important;
    padding: 10px !important;
}

.prog-Accord .accordion-button::after {
    border: 1px solid #383131 !important;
    border-radius: 50% !important;
    padding: 10px !important;
}

.lgBlue-cta {
    background-color: #F3F6FF;
    border-radius: 24px;
    padding: 40px 20px 40px 20px;
}

.lgBlue-cont h5 {
    font-size: 26px;
    color: #383131;
    font-weight: 600;
}

.lgBlue-cont ul {
    list-style: none;
    padding-left: 0;
}

.lgBlue-cont li {
    padding-bottom: 10px;
    position:relative;
    padding-left: 24px;
}

    .lgBlue-cont li::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0px;  
        top: 0;
        color: #005eff;
    }


.lgBlue-cont span {
    color: #444141;
    font-size: 16px;
    font-family: 'Inria Serif';
    font-weight: 600;
}

.lgBlue-cont li .fa-solid.fa-circle-check {
    color: #145EE7;
}

.blackP p {
    color: #383131;
}

.chose-Card p{
    margin-bottom:0;
}

.choose-us-card h5 {
    color: #252323;
    font-weight: 600;
    font-size: 20px;
}

.choose-us-card:hover {
    background: #1D50F8;
    padding: 40px 10px 10px 20px;
    border-radius: 13px;
}

.choose-us-card {
    position: relative;
    border-radius: 13px;
    padding: 40px 10px 10px 20px;
    transition: 0.3s ease-in-out;
    min-height: 200px;
    border:1px solid;
}

.choose-us-card:hover h5 {
    color: #fff;
}

.choose-us-card:hover p {
    color: #fff;
}

.choose-us-card img {
  position: absolute;
  right: 0;
  top: 20px;
  width: 50px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(1%) saturate(0%) hue-rotate(46deg) brightness(95%) contrast(86%);
}

.choose-us-card:hover img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(25%) saturate(5024%) hue-rotate(221deg) brightness(93%) contrast(103%);
}

.programs-card-div {
    display: flex;
    gap: 30px;
    margin-bottom: 26px;
}

.programs-card-div img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.programs-card-div h5 {
    color: #383131;
        font-weight: 600;
    font-size: 24px;
}


.admissionCta-Cont ul {
    list-style: none;
    padding-left: 0;
    border-bottom: 1px solid #000;
    padding-bottom: 14px;
    margin-bottom: 0;
}

.admissionCta-Cont li {
    padding-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

    .admissionCta-Cont li:before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0px;
        top: 0;
        color: #005eff;
    }

.admissionCta-Cont span {
    font-size: 15px;
    font-family: "poppins";
    font-weight: 400;
}

.admissionCta-Cont li .fa-solid.fa-circle-check {
    color: #145EE7;
    padding-right: 6px;
}

.admissionCta-Image a {
    background: #ED2121;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
}

.unknownDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unknownDiv h6 {
    font-family: "poppins";
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.unknownDiv i.fa-solid.fa-plus {
    font-size: 22px;
}

.faqRow .accordion .accordion-button, .guiding-sec .accordion .accordion-button:focus {
    font-size: 18px;
    font-weight: 400;
}


.degreeTab-div {
    border: 1px solid #000000;
    border-radius: 13px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.degreeTab-div h4 {
    font-size: 15px;
    font-weight: 600;
    color: #444141;
    transition: 0.3s ease-in-out;
    margin:0;
}

.degreeTab-div:hover {
    background-color: #1D50F8;
    border: 1px solid #1D50F8;
}

.degreeTab-div:hover h4 {
    color: #fff;
}


.adCta-accord .accordion {
    border: none;
}

.adCta-accord .accordion-button {
    background: transparent;
    color: #383131;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 0;
    font-family: 'Poppins';
}

.adCta-accord .accordion-body {
    padding: 0 !important;
    padding-bottom: 50px !important;
}

.adCta-accord .accordion-item {
    border-bottom: 1px solid #000 !important;
    border-radius: 0px !important;
    border: 0;
}

.adCta-accord .accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

.adCta-accord .accordion-button:not(.collapsed) {
    color: #000 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}

.adCta-accord .accordion-button:not(.collapsed)::after {
    padding: 10px !important;
}

.adCta-accord .accordion-button::after {
    padding: 10px !important;
}

.foot-col {
    display: flex;
    /*gap: 50px;*/
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.tab-form-top span.active:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ED2121;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.tab-form-top span::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #978F8F;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.tab-form-top span.active {
    background-color: transparent !important;
    color: black !important;
}

.tab-form-top span {
    padding: 0 !important;
    color: #978F8F;
    position: relative
}

.apply-list {
    padding: 0;
}

    .apply-list li {
        list-style: none;
        font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1920 - 320));
        font-weight: 400;
        color: #000;
        margin-bottom: 20px;
        padding-left: 25px;
        position: relative;
    }

        .apply-list li::before {
            content: "\f111";
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 15px;
            color: #0099cc;
            font-family: "FontAwesome";
        }

.applybox {
    margin: 20px 0;
}

    .applybox input {
        border: 1px solid #c7cacde5;
        height: 60px;
        border-radius: 12px;
        padding: 5px 15px;
        color: #4d4d4d;
    }

    .applybox select {
        border: 1px solid #c7cacde5;
        height: 60px;
        border-radius: 12px;
        padding: 5px 15px;
        color: #4d4d4d;
    }

.degreCards-slider .slick-list {
    margin: 0 -10px !important;
}

.degreCards-slider .slick-slide {
    margin: 0 10px !important;
}

.degreCards-slider .slick-track {
    padding: 10px 0;
}


.checkout-sec {
    position: relative;
    /*padding: 80px 0 50px;*/
    font-family: "Poppins", serif;
}

.payment-failure-box {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.20);
    border-radius: 15px;
    text-align: center;
    padding: 25px 40px;
}

.payment-failure-top {
    position: relative;
    margin-top: -80px;
    display: flex;
    justify-content: center;
}

.payment-failure-min p {
    color: #464646;
}

.retry-btn {
    border-radius: 30.79px;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: red;
    padding: 12px 50px;
    text-decoration: none;
}

    .retry-btn:hover {
        background-color: #000;
        color: #fff;
    }


.payThank-sec p {
    color: #464646;
}

.thankImage img {
    max-width: 180px;
}

.order-summary-box {
    background-color: #1D50F8;
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.20);
    padding: 20px;
    border: 0;
    border-radius: 15px;
    margin-bottom: 25px;
}

.order-summary-box-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .order-summary-box-title h3 {
        display: flex;
        color: #fff;
        font-size: calc(24px + (30 - 24) * (100vw - 320px) / (1920 - 320));
        font-weight: 600;
        margin: 0;
        padding-right: 10px;
    }

.order-summary-box-top {
    border-radius: 10px;
    border: 1px #B1B1B1 solid;
    padding: 20px 15px 10px 15px;
    margin-bottom: 20px;
}

.order-summary-box-t {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #B1B1B1;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

    .order-summary-box-t label {
        color: #fff;
        font-size: 15px;
        font-weight: 400;
        word-wrap: break-word;
        margin: 0;
    }

.order-summary-box-m {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 7px 0;
}

    .order-summary-box-m span {
        color: #fff;
        font-size: 15px;
        font-weight: 700;
    }

.order-summary-box-s {
    border-radius: 10px;
    border: 1px #B1B1B1 solid;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .order-summary-box-s label {
        color: #fff;
        font-size: 15px;
        font-weight: 400;
        margin: 0;
    }

    .order-summary-box-s span {
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        margin: 0;
    }


    .ready-boxInfo{
    position:relative;
    border:0;
    border-radius:10px;
    overflow:hidden;
}
.ready-box-img img{
    border:0;
    border-radius:10px 10px 0 0;
    width:100%;
    height:300px;
    /*object-fit:cover;*/
}
.ready-box-text {
    background-color: #ED2121;
    padding: 20px 30px;
}
.ready-box-text h3{
    color: #fff;
    font-size: calc(24px + (30 - 24) * (100vw - 320px) / (1920 - 320));
    font-weight:600;
}
.ready-box-text h6{
    color: #fff;
    font-size: calc(15px + (20 - 15) * (100vw - 320px) / (1920 - 320));
    font-weight:400;
}
.ready-box-ftr{
   min-height: 60px;
    display: flex;
    align-items: center;
}
.ready-box .ready-box-ftr .new-btn{
    border-radius: 30.79px;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: #25374D;
    padding: 12px 50px;
}

.grand-summary-box {
    padding:0;
    margin:30px 0;
    border-bottom: 3px #E2CCA3 dashed;
    border-top: 3px #E2CCA3 dashed;
}
.grand-summary-box-s {
    background-color: #25374D;
    padding: 15px 15px;
    margin:25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius:10px;
    position:relative;
}

.grand-summary-box-s label {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.grand-summary-box-s span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.ready-box-ftr .new-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 50px;
    text-decoration: none;
    background: #1D50F8;
    border-radius: 6px;
}

.course-summary-box h3 {
    display: block;
    color: #ffff;
    font-size: calc(24px +(30 - 24)*(100vw - 320px) /(1920 - 320));
    font-weight: 600;
    margin: 0;
}

.course-summary-box p {
    display: block;
    color: #fff;
    font-size: calc(13px + (15 - 13) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    margin: 0;
}

.info-submit-card{
    min-height:150px !important;
}

.degreeTab-div-info h5 {
    font-size: 30px;
    font-weight: 600;
    color: #444141;
    transition: 0.3s ease-in-out;
}

.degreeTab-div-info:hover h5 {
    color: #fff;
}

.degreeTab-div-info {
    border: 2px solid #1D50F8;
    min-height: 80px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.degreeTab-div-info:hover {
    background-color: #1D50F8;
    border: 1px solid #1D50F8;
}

.tc-box p {
    color: #fff;
    font-weight: 300;
}

.app-pro-sec {
    background-color: #1d50f8;
}

.video-holder{
    position:relative;
}

.videoIcon {
    position: absolute;
    right: 315px;
    top: 160px;
}

.accDegree-card {
    min-height: 186px;
    position:relative;
}

.accDegree-div {
    position: absolute;
    bottom: -8px;
    width: 100%;
}

.accredGsaaa-sec p {
    font-size: 14px;
    margin-bottom: 0;
}

.accredGsaaa-sec p strong {
    color: #383131;
}
.acc-list-2 li {
    font-size: 14px;
    margin-bottom: 0;
}
#SignupForm .acadFormhead {
    background-color: transparent !important;
    color: #6e6e6e;
    font-size: 22px;
    font-weight: 500;
    padding: 10px 0;
}

#SignupForm .nav-pills .nav-link {
    background-color: transparent !important;
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid #ccc;
    border-radius: 0px;
    text-align: left;
    flex: 1;
}

#SignupForm nav {
    margin-bottom: 28px;
    gap: 25px;
}

#SignupForm .nav-pills .nav-link.active {
    background-color: transparent !important;
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid red;
    border-radius: 0px;
}

.prog-offerd-sec .prog-Accord .accordion-button {
    padding: 10px 0;
}

.Newspace-p-tb {
    padding: 40px 0;
}

.ae-icon-box li p {
    font-weight: 500;
}


/*------------------- Apply Now ---------*/

.contForm-row {
    padding-top: 26px;
}

.contForm-row {
    padding-top: 26px;
}

.contForm-row select {
    min-height: 52px;
    font-size: 17px;
    font-weight: 300;
    color: #969191;
    border-radius: 8px;
}

.contForm-row input {
    min-height: 52px;
    font-size: 17px;
    font-weight: 300;
    color: #969191;
    border-radius: 8px;
}

.applyForm-btn {
    background-color: #ED2121;
    border-radius: 6px;
    color: #fff;
    margin-top: 14px;
    transition: 0.3s ease-in;
    padding: 10px 58px;
    border: none;
}

.applyForm-btn:hover {
    background-color: #000;
    border-color: #000;
}

.applyForm-div {
    background: #F9F9F9;
    border-radius: 20px;
}

.appForm-Img {
    height: 350px;
}

.appForm-Img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.applyForm-cont {
    padding: 40px 14px 15px;
}

.applyForm-cont p {
    font-size: 14px;
    font-weight: 300;
}

.chooseUs-sec {
    background: #F2F6F8;
}

.chose-Card {
    background: #FFFFFF;
    border-radius: 31px;
    padding: 40px 40px 40px 20px;
}

.chose-Card h4 {
    font-size: 25px;
    color: #383131;
    font-weight: 600;
    padding-bottom: 14px;
}

.chose-Card p {
    color: #383131;
}

.creditTrans-ImpHead {
    background: #1D50F8;
    border-radius: 14px 16px 0px 0px;
    padding: 14px 12px;
}

.creditTrans-ImpHead span {
    color: #fff;
    font-size: 19px;
    font-weight: 300;
}

.creditTrans-ImpBody {
    background: #F2F6F8;
    border-radius: 0 0 15px 15px;
    padding: 20px 70px 14px 20px;
}

.creditTrans-ImpBody p {
    color: #6E737D;
    font-size: 16px;
}

.creditHeading {
    line-height: 47px !important;
}

.choseUs-bg:before {
    position: absolute;
    background-color: #F2F6F8;
    width: 57%;
    height: 100%;
    content: "";
    z-index: -1;
}

.choseUs-bg {
    position: relative;
}

.choseUs-bg .chose-Card {
    padding: 40px 40px 40px 20px;
    min-height: 230px;
}

.tsCredit-box img {
    display: block;
    margin-bottom: 16px;
}

.tsCredit-box span {
    color: #fff;
    font-size: 22px;
    margin: 16px 0;
}

.tsCredit-box p {
    color: #fff;
    padding: 15px 40px 0px 0;
    font-size: 16px;
    font-weight: 300;
}



.creditCard-brown {
    background: #FFF4F4;
    border-radius: 24px;
    padding: 50px 30px 20px;
    min-height: 280px;
}

.creditCard-brown p {
    font-size: 14px;
    font-weight: 300;
    color: #978F8F;
}


.creditCard-blue {
    background: #F3F6FF;
    border-radius: 24px;
    padding: 50px 30px 20px;
    min-height: 280px;
}

.creditCard-blue p {
    font-size: 14px;
    font-weight: 300;
    color: #978F8F;
}

.creditLogo-sec {
    background: #F2F6F8;
}


/*---------------- Ranking Page -----------------*/

.rankTop-sec {
    position: relative;
}

.halfImage-div {
    width: 50vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.halfImage-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-text {
    background-color: #F8F5FF;
    border-radius: 16px;
    padding:25px 10px 10px 20px;
    margin-right: -106px;
    position: relative;
    margin-top: 20px;
}

.box-text h4 {
    font-size: 25px;
    color: #383131;
    font-weight: 600;
    text-transform: uppercase;    
}

.box-text p {
  font-size:15px;
}


.counter-box {
    background-color: #F8F5FF;
    padding: 60px 20px;
    border-radius: 10px;
}

.ccount-number {
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
    color: #25054D;
}

.counter-box sup {
    font-size: 14px;
    font-weight: 600;
    top: -2.5em;
}

.ctm-counter-label {
    display: block;
    font-size: 16px;
}

h4.sub-heading {
    color: #1F91DF;
    font-size: 20px;
}

.halfImage-divLeft {
    width: 47vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.halfImage-divLeft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mncs-sec {
    background-color: #F8F5FF;
}

.mncsImg-div {
    background-color: #fff;
    padding: 32px;
    border-radius: 18px;
    position: relative;
    top: -120px;
    left: 140px;
    max-width: 570px;
}

.mncsImg-div h3 {
    color: #25054d;
    font-size: 25px;
    font-weight: 500;
}

.mncsImg-div h4 {
    color: #1f91df;
    font-size: 30px;
    font-weight: 600;
}

.mncs {
    background-color: #1F91DF;
    max-width: 278px;
    max-height: 240px;
    text-align: center;
    position: relative;
    left: 60px;
}

.mncs span {
    color: #fff;
    font-size: 94px;
    font-weight: 600;
}

.mncs p {
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
}

.img-quotes {
    position: relative;
    top: -40px;
    right: -206px;
    width: 90px;
}

.quotes {
    padding-left: 110px;
    padding-top: 80px;
}

.quotes p {
    font-size: 28px;
    line-height: 1.4;
    color: #424A4E;
}

.bfAply-box {
    background: #F5F8FF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 24px;
    min-height: 250px;
    position: relative;
}

.bfAply-box h2 {
    color: #383131;
    font-size: 22px;
    padding-top: 20px;
}

.bfAply-box a {
    color: #383131;
    font-weight: 400;
    font-size: 14px;
}

.bfAply-box p {
    margin-bottom: 0;
}

.contact-info-content a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

.lgBlue-cta img {
    border-radius: 18px;
}
.scholar-sec .cp-form-holder.stickyform {
    position: sticky;
    top: 25px;
}
@media (max-width: 1199.98px) {
    .scholar-sec .cp-form-holder.stickyform {
        padding: 20px 15px 15px 15px;
    }
}