:root {
    --blue-color:#000;
    --red-color:#1da69c;
    --more-light-grey-color:#e5e5e5;
    --light-grey-color:#aaaaaa;
    --grey-color:#545454;
    --dark-grey-color:#3E3E3E;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    outline: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    font-size: 16px;
    color: var(--dark-grey-color);
    position:relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins";
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: var(--blue-color);
}

a {
    color: var(--blue-color);
    text-decoration: none;
}

    a:hover, a:focus {
        color: var(--red-color);
    }

img {
    width: auto;
    max-width: 100%;
}

.navbar-brand img {
    width: 250px;
}

.nav-link {
    color: #000;
    font-weight: 500;
}

    .nav-link:hover, .nav-link:focus, .nav-link.active {
        color: var(--red-color);
    }

.nav-item {
    position: relative;
}

    .nav-item::before {
        position: absolute;
        bottom: -15px;
        width: 0;
        height: 4px;
        background: var(--red-color);
        content: "";
        display: block;
        left: 0;
        transition: all 0.4s ease;
        opacity: 0;
        right: 0;
        margin: auto;
    }

    .nav-item:hover::before {
        width: 100%;
        opacity: 1;
    }

.dropdown-toggle::after {
    font-family: "Ionicons";
    content: '\f3d0';
    border: none;
    vertical-align: middle;
}

.slider {
    width: 100%;
    float: left;
    background: url("../images/jumbotron-bg.jpg") center / cover;
    padding: 100px 0;
}

    .slider h3 {
        font-weight: 500;
    }

    .slider h1 {
        font-weight: 800;
    }

    .slider h3, .slider h1 {
        text-shadow: 0 0 10px rgba(0,0,0,1);
    }

section {
    width: 100%;
    float: left;
}

.title {
    margin-bottom: 30px;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.sub-title {
    font-size: 1rem;
    color: var(--light-grey-color);
    font-weight: 500;
}

.current-openings .card {
    padding: 0;
    transition: all 0.4s ease;
}

.current-openings .col {
    margin-bottom: 15px;
}

.opening-title {
    color: var(--blue-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.opening-post {
    color: var(--dark-grey-color);
    font-size: 0.85rem;
}

    .opening-post span {
        font-weight: 600;
        color: var(--red-color);
    }

.btn-text {
    color: var(--red-color);
    font-size: 0.9rem;
    margin-top: 7px;
}

    .btn-text:hover {
        color: var(--blue-color);
    }

.card-hover:hover {
    border-color: var(--blue-color);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
}

.lists {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .lists li {
        position: relative;
        padding: 10px 0;
        padding-left: 25px;
    }

        .lists li:not(:last-child) {
            border-bottom: var(--more-light-grey-color) solid thin;
        }

        .lists li:first-child {
            padding-top: 0;
        }

.lists-arrow li::before {
    font-family: "Ionicons";
    position: absolute;
    left: 0;
    top: 3px;
    content: '\f3d6';
    display: block;
    font-size: 1.5rem;
}

.lists-arrow li:first-child::before {
    top: -6px;
}

.small-font-size {
    font-size: 0.9rem;
}

.list-hover a {
    color: var(--grey-color);
}

    .list-hover a:hover {
        color: var(--blue-color);
    }

.max-height-400 {
    max-height: 400px;
    position: relative;
    overflow: auto;
}

.text-red {
    color: #ff0202;
}

.our-campuses {
    background: url("../images/campus-bg.jpg") no-repeat center fixed;
    background-size: cover;
    
}

.campus-col h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.state-detail {
    padding-left: 20px;
}

.state-icon {
    width: 80px;
    height: 80px;
}


.campus-col .secondry-text {
    color: var(--light-grey-color);
}

.inner-header {
    background: url("../images/inner-header.jpg") no-repeat;
    background-size: cover;
    padding-top: 126px;
    padding-bottom: 116px;
}

    .inner-header h1 {
        color: #fff;
        font-size: 48px;
        margin-bottom: 0px;
        font-weight: 700;
        word-break: break-all;
    }

.page-breadcrum {
    padding: 25px 0;
}

.breadcrumb-item.active {
    color: var(--red-color);
}

.breadcrumb-item a, .breadcrumb-item + .breadcrumb-item::before {
    color: #a0a0a0;
}

    .breadcrumb-item a:hover {
        color: var(--red-color);
    }

.form-label-full {
    width: auto;
    float: left;
}

.page-breadcrum .container {
    border-bottom: var(--light-grey-color) solid thin;
}

.box-design {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.box-title {
    color: var(--blue-color);
    background: #f5f5f5;
    padding: 10px;
    border-left: var(--red-color) solid 5px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.title a {
    margin-top: 10px;
    display: inline-block;
    clear: both;
    width: 100%;
}

.title-divider {
    position: relative;
    z-index: 1;
}

    .title-divider::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background: #dcdcdc;
        display: block;
        top: 20px;
        left: 0;
        z-index: -1;
    }

    .title-divider h2 {
        float: left;
        background: #fff;
        padding-right: 30px;
    }

.secondry-with-title h6 {
    font-weight: 600;
}

.btn-full-width .btn:not(:last-child) {
    margin-bottom: 10px;
}

.agree-register-btns {
    position: relative;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .agree-register-btns .btn {
        width: 46%;
        color: #fff;
        position: relative;
        z-index: 1;
        border: none;
        transition: all 0.4s ease;
        font-size: 0.8rem;
    }

    .agree-register-btns .btn-apply {
        background: var(--blue-color);
    }

        .agree-register-btns .btn-apply::before {
            background: var(--blue-color);
            width: 50px;
            height: 100%;
            content: "";
            position: absolute;
            top: 0;
            right: -12px;
            transform: skewX(-30deg);
            z-index: -1;
            transition: all 0.4s ease;
        }

        .agree-register-btns .btn-apply:hover, .agree-register-btns .btn-apply:hover::before {
            background: #102141;
        }

    .agree-register-btns .btn-register {
        background: var(--red-color);
    }

        .agree-register-btns .btn-register::before {
            background: var(--red-color);
            width: 50px;
            height: 100%;
            content: "";
            position: absolute;
            top: 0;
            left: -12px;
            transform: skewX(-30deg);
            z-index: -1;
            transition: all 0.4s ease;
        }

        .agree-register-btns .btn-register:hover, .agree-register-btns .btn-register:hover::before {
            background: #8A2224;
        }

footer {
    width: 100%;
    float: left;
}

.footer-wrapper {
    background: #181818;
}

.ftr-logo {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

footer p {
    color: #ababab;
}

footer a {
    transition: all 0.4s ease;
}

.uni-cntct-dtl {
    color: #fff;
    margin-top: 10px;
}

.red-divider {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    height: 2px;
    background: var(--red-color);
    position: relative;
}

.ftr-title {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--red-color);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.ftr-menu-widget {
    margin-bottom: 8px;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

    .ftr-menu-widget li {
        padding: 5px 0;
        list-style: none;
        margin: 0;
    }

    .ftr-menu-widget a {
        color: #8d8d8d;
        font-size: 16px;
        font-weight: 500;
    }

        .ftr-menu-widget a:hover {
            color: #fff;
        }

.footer-copyright {
    background: #202020;
    padding: 33px 0;
}

.copyright-text {
    color: #838383;
    font-size: 15px;
}

footer .social a {
    color: var(--red-color);
    font-size: 19px;
}

    footer .social a:hover {
        color: #fff;
    }

    footer .social a:not(:first-child) {
        margin-left: 20px;
    }

.note-section {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    background: #f5f5f5;
}

    .note-section h3 {
        text-transform: uppercase;
        font-size: 1.2rem;
        color: var(--blue-color);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .note-section .lists li {
        padding-top: 6px;
        padding-bottom: 6px;
    }

        .note-section .lists li::before {
            top: 0;
        }

h5 {
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 20px;
}

.table-dark, .table-dark th {
    color: #fff;
    background-color: var(--blue-color) !important;
}

    .table-dark th {
        font-weight: 600;
    }

table .btn, .btn-groups-cust .btn {
    margin: 0 2px;
}

.multi-row-cols > div {
    margin: 10px 0;
}

.col-or {
    font-weight: 600;
    color: var(--blue-color);
    font-size: 1.5rem;
}

.form-input-note {
    color: var(--grey-color);
    font-size: 0.7rem;
    margin-top: 3px;
}

.uploaded-img {
    width: auto;
    max-width: 100px;
}

.form-label {
    font-size: 0.9rem;
}

.radio-cust-full-width .form-check-inline {
    width: 100%;
}


/*loading animation start*/

.cust-loading, .alert-popup {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(22,50,105, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div.circle {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #cdad68;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div.circle:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/*loading animation end*/

.validation {
    font-size: 13px;
    color: #d51212 !important;
    padding: 5px;
    position: relative;
    border-radius: 5px;
    z-index: 1;
    float: left;
    clear: both;
}
.input-group .validation{
    width:100%;
}

.re-design-readio-html5 {
    width: 100%;
    float: left;
}

.table-dark th {
    vertical-align: middle;
}

.imageUploaderField input {
    width: 100% !important;
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
    cursor: not-allowed;
    pointer-events: unset;
}

.border-col-left > div {
    padding-left: 20px;
    position: relative;
}

    .border-col-left > div::before {
        position: absolute;
        left: 10px;
        top: 0;
        border-left: solid 2px #ccc;
        content: "";
        height: 100%;
    }

.border-box-design {
    width: 100%;
}

    .border-box-design:not(:last-child) {
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: #ccc solid thin;
    }

.form-check-box .form-check {
    border: #e5e5e5 solid thin;
    padding: 5px;
    padding-left: 1.9rem;
    margin: 3px 0;
    border-radius: 3px;
    margin: 5px 0;
    margin-right: 5px;
}

.label-required {
    position: relative;
}

    .label-required::after {
        content: "*";
        color: var(--red-color);
        position: absolute;
        right: -10px;
    }

.highlight-label {
    font-weight: 600;
    font-size: 1rem;
}

.table-dark .form-input-note {
    color: #ccc;
}

.re-design-readio-html5 br {
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
 }

.card {
    height:100%;
}

.track-application-section .main-title {
    font-size:1.2rem;
}

.track-application-section .title {
    margin-bottom:15px;
}

/*stepper start*/

.stepper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin: 0 0 30px;
    padding: 15px 0;
    border-top: #e5e5e5 solid thin;
    border-bottom: #e5e5e5 solid thin;
    justify-content: space-between;
}

.stepper__step {
    position: relative;
    padding: 5px;
    flex: 1;
    z-index: 1;
    padding-left: 50px;
    padding-right: 20px;
    overflow:hidden;
}

    .stepper__step:last-child {
        margin-right: 0;
    }

.stepper_inner_box {
    background: #fff;
    border: #e5e5e5 solid thin;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.stepper__step::before {
    position: absolute;
    top: 0;
    left: 0;
    background: #e5e5e5;
    content: "";
    width: 60%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
}

.stepper__step::after {
    width: 30px;
    height: 30px;
    background:#e5e5e5;
    content:"";
    border-radius:5px;
    display:block;
    position:absolute;
    transform:rotate(45deg);
    top:0;
    bottom:0;
    margin:auto;
    right:8px;
    z-index:-1;
}

.stepper__step:last-child::after {
    display:none;
}

.stepper__step__index {
    position: absolute;
    left: 14px;
    font-weight: 600;
    font-size: 1.3rem;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 35px;
    line-height: 35px;
    color: var(--grey-color);
    z-index:1;
}

.stepper__step__index::after {
    width: 30px;
    height: 30px;
    background:#fff;
    content:"";
    border-radius:5px;
    display:block;
    position:absolute;
    transform:rotate(45deg);
    top:0;
    bottom:0;
    margin:auto;
    left:-38px;
}

.stepper .stepper__step:first-child .stepper__step__index::after {
    display:none;
}

.stepper__step h6 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--light-grey-color);
    width: 100%;
}

.stepper__status {
    border: var(--light-grey-color) solid thin;
    color: #aaa;
    border-radius: 30px;
    display: inline-block;
    font-size: 13px;
    padding: 0 7px;
    text-transform: uppercase;
    margin-top: 5px;
}

.stepper__date {
    vertical-align: middle;
    font-size: 0.8rem;
}

.stepper__completed::before {
    background: var(--bs-success);
}

.stepper__completed .stepper_inner_box, .stepper__completed .stepper__status {
    border-color: var(--bs-success);
}

.stepper__completed h6, .stepper__completed .stepper__status {
    color: var(--bs-success);
}

.stepper__completed .stepper__step__index {
    color: #fff;
}

.stepper__completed.stepper__step::after {
    background:var(--bs-success);
}

.stepper__current::before {
    background: var(--blue-color);
}

.stepper__current .stepper_inner_box {
    border-color: var(--blue-color);
}

.stepper__current h6 {
    color: var(--blue-color);
}

.stepper__current .stepper__status {
    border-color: var(--bs-danger);
}

.stepper__current .stepper__status {
    color: var(--bs-danger);
}

.stepper__completed.stepper__current .stepper__status {
    border-color: var(--bs-success);
}

.stepper__completed.stepper__current .stepper__status {
    color: var(--bs-success);
}

.stepper__current .stepper__step__index {
    color: #fff;
}

.stepper__current.stepper__step::after {
    background:var(--blue-color);
}

/* stepper-end */

/*alert popup start*/
.alert-card {
    background:#fff;
    border-radius:10px;
    box-shadow:0 0 10px 0 rgba(0,0,0,0.2);
    padding:15px;
    width:400px;
    max-width:90%;
    text-align:center;
    position:relative;
    padding-top:30px;
    max-height:80vh;
    overflow:auto;
}

    .alert-card h3 {
        font-size:1.3rem;
        color:var(--red-color);
        margin:10px 0 15px;
        font-weight:600;
    }

    .alert-card ul {
        margin:0;
        padding:0;
        list-style:none;
        font-size:0.9rem;
    }

    .alert-card span.text-danger {
        font-weight:600;
    }

    .alert-card ul li:not(:last-child) {
        margin-bottom:5px;
        border-bottom:#ccc solid thin;
        padding-bottom:5px;
    }
.alert-close {
    position:absolute;
    right:10px;
    z-index:10;
    color:#ccc;
    top:10px;
}

/*alert popup end*/

.com-detail-box h4 {
    font-size:1.1rem;
    border-bottom:#ccc solid thin;
    font-weight:600;
}

.btn-text {
    color:var(--red-color);
}

    .btn-text:hover {
        color:var(--blue-color);
    }

.btn-same-details {
    padding:0 5px;
    margin-top:-2px;
}

.form-permanent {
    float:right;
}
    .form-permanent label {
        color:#3e3e3e;
        font-size:14px;
        font-weight:400;
        transform:translateY(2px)
    }



.big-buttons a{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    background:#fff;
    padding:10px;
    height:100%;
    border:#ccc solid thin;
    text-transform:uppercase;
    color:var(--red-color);
    transition:all 0.4s ease;
    font-weight:500;
    justify-content:center;
}


    .big-buttons a:hover {
        background:var(--blue-color);
        color:#fff;
        box-shadow:0 5px 20px 0 rgba(0,0,0,0.2);
    }


.help-section {
    border-top:#ccc solid thin;
    padding-top:20px;
}

.help-section .container > .row{
    position:relative;
}
.help-icon {
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    background:var(--red-color) url(../images/support.png) no-repeat center;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin:auto;    
    background-size:80%;
}

    .help-icon::before {
        position:absolute;
        top:0;
        left:0;
        background:var(--red-color);
        content:"";
        width:100%;
        height:100%;
        z-index:-2;
        opacity:0.1;
        border-radius:50%;
        transform:scale(1.4);
    }

    .help-icon::after {
        position:absolute;
        top:0;
        left:0;
        background:var(--red-color);
        content:"";
        width:100%;
        height:100%;
        z-index:-1;
        opacity:0.1;
        border-radius:50%;
        transform:scale(1.2);
    }

.help-number-email {
    padding-right:100px;
}
.big-buttons {
    padding-left:100px;
}


.help-section .secondry-with-title h6 {
    font-size:0.95rem;
    word-break:break-all;
}


.apply-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.apply-step-col {
    width: 20%;
    padding: 15px;
    text-align: center;
    position: relative;
}

.apply-step-count {
    width: 70px;
    height: 70px;
    color: var(--blue-color);
    border: dashed var(--red-color) 2px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    margin: auto;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 25px;
    background: #fff;
}

.apply-step-col::after, .apply-step-col::before {
    position: absolute;
    content: "";
    border-top: dashed var(--light-grey-color) 2px;
    width: 50%;
    display: block;
    top: 50px;
    z-index: -1;
}

.apply-step-col::after {
    right: 0;
}

.apply-step-col::before {
    left: 0;
}

.apply-step-col:first-child::before {
    display: none;
}


.apply-step-col:last-child::after {
    display: none;
}

/*.cal.mobile::before {
    content: 'DD-MM-YYYY';
}*/

.btn-p-less{
    padding:0 15px;
    line-height:35px;
}

.nav-tabs{
    margin-bottom:10px;
}

.nav-tabs .nav-link {
    color: #666 !important;
}

.nav-tabs .nav-link.active {
    color: var(--red-color) !important;
    font-weight:600;
}

.dropdown-item{
    color:#424951;
}
