@import url("global.css");

/* Starting of Homepage */

/* Starting of Welcome Section */

.home-main-div {
    padding: 0px 30px;
}

.heading-div h1 {
    color: var(--dark-color);
    font-size: 28px !important;
    font-weight: 800;
    line-height: 28px;
}

@media (min-width: 320px) and (max-width: 480px) {
    .heading-div h1 {
        font-size: 16px !important;
        line-height: normal !important;
    }
}

/* Ending of Welcome Section */

/* Starting of Main Section */

/* Starting of Left Side Section */

.home-left-menu {
    background-color: var(--primary-color);
    padding: 0;
}

.home-inner-left-menu-list ul li {
    border-bottom: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    padding: 20px;
    text-align: center;
}

.menu-left-side-left-details {
    padding-left: 20px;
    text-align: center;
}

.menu-contact-detail span {
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    padding-left: 60px;
}

.menu-contact-detail p {
    color: var(--primary-color);
    font-weight: 800;
}
/* Ending of Letf Side Section */

/* Starting of Middle Section */

.home-page-mid-banner img {
    height: 217px;
    object-fit: cover;
    width: 100%;
}

.home-p-cnt p {
    color: var(--primary-color) !important;
    font-size: 17px;
    font-weight: 500;
    padding: 20px;
    text-align: justify;
}

.home-imp-info {
    background-color: #ebebeb;

    p {
        color: rgb(249, 10, 10);
        font-weight: bold;
    }

    .blink_me {
        -webkit-animation-name: blinker;
        -webkit-animation-duration: 1s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-name: blinker;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }
}

@keyframes blinker {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

.update-alert-div {
    background-color: var(--primary-color);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    color: #fff;
    font-weight: 800;
    margin: 10px;
    padding: 16px 0;
}

.department p,
.update-alert-div p {
    font-size: 24px !important;
    text-align: center;
}

.department p {
    color: black;
    margin: 20px 0;
}

.information-title-div,
.notificatiopn-title-div {
    background-color: var(--primary-color);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    color: #fff;
    font-size: 18px !important;
    font-weight: 800;
    margin: 0 20px;
    padding: 15px 0;
    text-align: center;

    p {
        font-size: 18px !important;
    }
}

.all-alerts-div,
.job-profile-div {
    background-color: #f8e7e8;
    border: 4px solid var(--primary-color);
    border-radius: 38px;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;
    height: 320px;
    margin: 20px;
}

.job-profile-div {
    padding: 20px;
}

.job-profile-div ul li {
    color: var(--dark-color);
    cursor: pointer;
    padding: 10px;
}

#click-here {
    color: var(--primary-color);
}

.new-post {
    background-color: tomato;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 4px;
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    transition: ease-in;
    -webkit-transition: ease-in;
    -moz-transition: ease-in;
    -ms-transition: ease-in;
    -o-transition: ease-in;
}

@keyframes blink-animation {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.2;
    }
    40% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.alert-lits {
    overflow-y: hidden;
    padding: 20px;
    /* height: 294px; */
}

.all-alerts-div ul li {
    color: var(--dark-color);
    padding: 10px;
}

/* Ending of Middle Section */

/* Starting of Right Side */

.right-menu-list {
    background-color: var(--primary-color);
}

.syllabus-div {
    padding: 20px;
}

.right-menu-list ul li,
.syllabus-div ul li {
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    padding: 20px;
    text-align: center;

    a {
        font-size: 17px;
    }
    span {
        color: inherit;
    }
}

.syllabus-div ul li {
    border-bottom: 1px solid var(--dark-color);
    color: var(--dark-color);
}

.right-menu-list ul li {
    border-bottom: 1px solid #fff;
    color: #fff;
}

.blink-text {
    -webkit-animation: blink 1s infinite;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        color: #fff;
    }

    50% {
        color: #ff0;
    }
    100% {
        color: #fff;
    }
}

.live-inter-view-div {
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}

.gallery-div-right-menu-div {
    margin-top: 40px;
}

.gallery-div-right-menu-div p {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.gallery-div-right-menu-div span {
    font-size: 10px;
    text-align: center;
    color: var(--dark-color);
}

/* Ending of Right Side */

/* Ending of Main Section */

@media (max-width: 991px) {
    .gallery-div-right-menu-div,
    .left-menu-width {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .home-mid-content {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    #mobile-row-reverse,
    .home-mid-content {
        flex-direction: column-reverse !important;
    }
}

@media (max-width: 991px) {
    #main-cnt-divider,
    #user-name-left-divider,
    .gandhi-img-right-menu,
    .main-content-div,
    .social-icons-div {
        display: none;
    }
}

@media (max-width: 991px) {
    #mobile-row-reverse {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .charka-gandhi-lef-div img,
    .swathch-bharat-div img {
        width: 77%;
    }
}

@media (max-width: 767px) {
    .heading-div p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .heading-div p {
        font-size: 16px !important;
        line-height: normal !important;
    }
}

@media (max-width: 480px) {
    .charka-gandhi-lef-div img,
    .swathch-bharat-div img {
        width: 70%;
    }
}



@media (max-width: 480px) {
    .footer-menu-list ul li {
        font-size: 11px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .footer-logo-div {
        margin: auto;
        width: 30%;
        text-align:center;
    }
}
@media (max-width: 767px) {
    .inner-heading-div {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .inner-heading-div {
        padding: 15px 0;
    }
}

@media (max-width: 767px) {
    .footer-bottom-menus > ul li:first-of-type,
    .footer-bottom-menus > ul li:nth-of-type(2),
    .footer-bottom-menus > ul li:nth-of-type(3) {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .footer-bottom-menus ul li a {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .footer-bottom-menus > ul li:first-of-type,
    .footer-bottom-menus > ul li:nth-of-type(2),
    .footer-bottom-menus > ul li:nth-of-type(3),
    .footer-bottom-menus > ul li:nth-of-type(5) {
        display: none !important;
    }
}

@media (max-width: 480px) {
    #footer-cpy {
        font-size: 12px;
    }
}

/* Startinf of Quick Links */

.main-quick-links {
    width: 100%;
    background-color: var(--primary-color);

    .quick-links-label {
        width: 15%;
        margin: auto 0;
        text-align: center;

        span {
            color: #fff !important;
            font-size: 25px !important;
            font-weight: bold !important;
        }
    }

    .quick-links {
        width: 85%;
        background-color: #edecec;
        padding: 10px 0px;

        ul li {
            list-style: none;
            width: 25%;
            text-align: center;

            a {
                color: var(--primary-color) !important;
            }
        }
    }
}

@media only screen and (max-width: 978px) {
    .main-quick-links .quick-links ul li a img {
        width: 40%;
    }

    .main-quick-links .quick-links ul li a {
        font-size: 13px;
    }
}


@media only screen and (max-width: 728px) {

    .main-quick-links .quick-links-label {
        width: 25%;
    }

    .main-quick-links .quick-links ul {
        padding: 0;
        display: block !important;
    }

    .main-quick-links .quick-links ul li a img {
        width: 25%;
    }
    .main-quick-links .quick-links ul li {
        float: left;
        margin: 7px 0px;
    }
    .main-quick-links .quick-links {
        padding: 0;
        width: 75%;
    }
}

@media only screen and (max-width: 487px) {
    .main-quick-links .quick-links ul li a {
        font-size: 11px;
    }
}

@media only screen and (max-width: 400px) {
    .main-quick-links .quick-links-label {
        display: none;
    }
    .main-quick-links .quick-links {
        width: 100%;
    }
    .main-quick-links .quick-links ul {
        padding: 0;
    }
}

/* Ending of Quick Links */

/* Starting of Marquee Text */

.slider-notice-bottom {
    p,
    p span {
        color: var(--primary-color) !important;
        font-size: 20px !important;
        font-weight: 700;
        margin: 20px 0 !important;
    }

    p span {
        margin-left: 15px !important;
    }
}
/* Ending of Marquee Text */

/* Starting of Slider Images */

/* .carousel-item {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
} */

/* Ending of Slider Images */

/* Ending of Homepage */

/* Starting of Parallex Pages */

.comm-bg {
    background-color: var(--primary-color);
    border-top: 0.5px solid #ccc;
}

.comm-bg h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    .comm-bg h1 {
        font-size: 20px;
    }
}

.otherpg-tb-space {
    padding: 30px;

    .oth-g-left-img img {
        height: 300px;
        object-fit: cover;
        width: 100%;
    }
    .other-pg-cnt {
        padding: 0 30px;
    }
    .other-pg-cnt h2 {
        color: var(--primary-color);
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
        padding: 20px 0;
        /* text-align: center; */
    }
    .other-pg-cnt p {
        color: var(--primary-color);
        font-size: 18px;
        text-align: justify;
    }
    .otpg-midle-cnt-pg p {
        font-size: 19px;
        text-align: justify;
    }
}
.background-attach-fix-img-div,
.background-attach-fix-img2-div,
.background-attach-fix-img-div-service,
.background-attach-fix-img2-div-service,
.background-attach-fix-img-div-careerat,
.background-attach-fix-img2-div-careerat,
.background-attach-fix-img-div-visionvalue,
.background-attach-fix-img2-div-visionvalue,
.background-attach-fix-img-div-whyaviation,
.background-attach-fix-img2-div-whyaviation {
    background-attachment: fixed;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
}
.background-attach-fix-img-div {
    background-image: url(../img/about-us/abt-para-1.jpg);
}
.background-attach-fix-img2-div {
    background-image: url(../img/about-us/abt-para-2.jpg);
}
.background-attach-fix-img-div-service {
    background-image: url(../img/services/srv-para-1.jpg);
}
.background-attach-fix-img2-div-service {
    background-image: url(../img/services/srv-para-2.jpg);
}
.background-attach-fix-img-div-careerat {
    background-image: url(../img/career/ca-para-1.jpg);
}
.background-attach-fix-img2-div-careerat {
    background-image: url(../img/career/ca-para-2.jpg);
}
.background-attach-fix-img-div-visionvalue {
    background-image: url(../img/vision-value/Background.jpg);
}
.background-attach-fix-img2-div-visionvalue {
    background-image: url(../img/vision-value/Background2.jpg);
}
.background-attach-fix-img-div-whyaviation {
    background-image: url(../img/why-aviation/Background2.jpg);
}
.background-attach-fix-img2-div-whyaviation {
    background-image: url(../img/why-aviation/Background1.jpg);
}

.restpage-secondary-bg {
    background-color: #f2f2f2;

    .container {
        padding: 0;
    }
}
.cont-pg-title-div {
    background-color: var(--primary-color);
    margin: 20px 0;
    padding: 10px;
    text-align: center;
}
.cont-pg-title-div h3 {
    color: #fff;
}
.contact-upper-left-div {
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    padding-bottom: 20px;
    width: 50%;
}
.cont-icon-pg {
    color: var(--primary-color);
    font-size: 64px;
}
.contact-detail-upr {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.contact-detail-upr em,
.contact-detail-upr h3 {
    color: var(--primary-color);
    font-weight: 700;
}
.contact-right-form-div {
    margin-right: 10px;
}
.cont-comp-title-div {
    background-color: var(--primary-color);
    padding: 10px;
    text-align: center;
}
.cont-comp-title-div h3 {
    color: #fff;
}
.contact-detail-upr h5 {
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 700;
    text-align: center;
}
.cont-comp-inner-div {
    padding: 30px;
}
.cont-comp-main-div {
    background-color: #fff;
    border: 1px solid var(--primary-color);
}
.contact-form-submit-btn {
    margin: 20px;
    text-align: center;

    .btn-success {
        background-color: var(--primary-color) !important;
        border: 0px;
    }
}
.cont-comp-inner-form-el {
    margin: 10px;
}
.cont-comp-inner-form-el label {
    color: var(--primary-color);
    font-size: 19px;
    margin-bottom: 10px;
}
.cont-comp-inner-form-el input {
    border: 1px solid var(--primary-color);
    height: 38px;
    outline: none;
    padding: 10px;
    width: 100%;
}
.cont-comp-textarea-div label {
    color: var(--primary-color);
    font-size: 19px;
    margin-bottom: 10px;
}
.cont-comp-textarea-div textarea {
    border: 1px solid var(--primary-color);
    outline: none;
    padding: 10px;
    width: 100%;
}
.contact-form-submit-btn {
    margin: 20px;
    text-align: center;
}

/* Ending of Parallex Pages */

/* Starting of latest news update  */

.restpage-secondary-bg {
    background-color: var(--background-color);
}

.latast-news-height-container {
    height: 660px;
    overflow-y: scroll;
}

.latest-new-inner-div {
    padding: 30px;
}

.latest-news-img-div,
.latestnews-para-link {
    background-color: var(--secondary-color);
    text-align: center;
}

.latest-news-img-div img {
    height: 309px;
    object-fit: cover;
    width: 300px;
}

.latestnews-para-link {
    height: 309px;
}

.latestnews-para-link a,
.latestnews-para-link p {
    font-size: 19px;
    padding: 30px;
    color: initial;
}

.latestnews-para-link p {
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    color: var(--primary-color);
    display: -webkit-box;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    word-break: break-all;
}

/* Ending of latest news update  */

/* Starting of privacy-policy */

.privacy-policy-main-div {
    background-color: var(--background-color);
    padding: 20px 0px;

    ul li {
        font-size: 17px;
        margin-bottom: 8px;
    }

    ul li::marker {
        color: var(--primary-color);
    }

    ul li p {
        color: inherit;
        font-size: 17px;
    }
}

.title-div-policy {
    background-color: var(--primary-color);
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-left: 9px;
    padding-right: 9px;
    padding-top: 6px;
    text-align: center;
}

.company-detail-div,
.title-div-policy {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.policy-title-heading {
    color: var(--secondary-color);
    font-size: 25px;
    margin-bottom: 10px;
}

.company-detail-div {
    background-color: var(--secondary-color);
    padding: 30px;
}

.policy-company-detail-ul {
    list-style: square;
}

#policy-info,
.policy-company-detail-ul li {
    font-size: 17px;
    margin-bottom: 8px;
    color: inherit;
}

.policy-company-detail-ul li p {
    color: inherit;
}

.policy-company-detail-ul li::marker {
    color: var(--primary-color);
}

.second-policy-list-ul {
    list-style: lower-alpha;
    padding-left: 30px;
}

#policy-info {
    text-decoration: underline;
}

.third-policy-list-ul {
    list-style: circle;
    padding-left: 30px;
}

.four-policy-list-ul {
    list-style: inside;
}

.four-policy-list-ul li {
    font-size: 17px;
    margin-bottom: 8px;
}

.topic-heading {
    font-size: 18px;
}

.fith-policy-list-ul {
    list-style: square;
}

.last-policy-div {
    margin-top: 30px;
}

.six-policy-list-ul {
    list-style: lower-roman;
}

.seven-policy-list-ul {
    list-style: disc;
}
/* Ending of privacy-policy */

/* Starting of Notice */

.notice-main-bg-div {
    a {
        color: inherit;
    }
}

/* Ending of Notice */

/* Starting of Syllabus */

thead #syllabus-table-title th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 21px;
    text-decoration: underline;
}

.examfeepostname-price {
    color: var(--primary-color) !important;
    font-size: 19px;
    font-weight: 700;
}

.syllabus-content {
    color: var(--primary-color) !important;
    font-size: 17px;
    font-weight: 500;
}

/* Ending of Syllabus */

/* Staring of Download Admit Card */

.admit-card {
    p,
    span {
        color: #000;
    }
}

.ant-radio-group {
    font-feature-settings: "tnum", "tnum";
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.85);
    display: inline-block;
    font-size: 14px;
    font-size: 0;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;

    span {
        color: inherit;
    }
}
.ant-radio-button-wrapper:first-child {
    border-left: 1px solid #d9d9d9;
    border-radius: 2px 0 0 2px;
}
.ant-radio-button-wrapper {
    background: #fff;
    border-color: #d9d9d9;
    border-style: solid;
    border-width: 1.02px 1px 1px 0;
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    margin: 0;
    padding: 0 15px;
    position: relative;
    transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ant-radio-button-wrapper > .ant-radio-button {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.ant-radio-button-wrapper .ant-radio-inner,
.ant-radio-button-wrapper input[type="checkbox"],
.ant-radio-button-wrapper input[type="radio"] {
    height: 0;
    opacity: 0;
    pointer-events: none;
    width: 0;
}
.ant-radio-group-solid
    .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
    background: #1890ff;
    border-color: #1890ff;
    color: #fff;
}

.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
    background: #fff;
    border-color: #1890ff;
    color: #1890ff;
    z-index: 1;
}
.ant-radio-button-wrapper:last-child {
    border-radius: 0 2px 2px 0;
}
.ant-radio-button-wrapper {
    background: #fff;
    border-color: #d9d9d9;
    border-style: solid;
    border-width: 1.02px 1px 1px 0;
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    margin: 0;
    padding: 0 15px;
    position: relative;
    transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ant-radio-button-wrapper:not(:first-child):before {
    background-color: #d9d9d9;
    box-sizing: initial;
    content: "";
    display: block;
    height: 100%;
    left: -1px;
    padding: 1px 0;
    position: absolute;
    top: -1px;
    transition: background-color 0.3s;
    width: 1px;
}
.ant-radio-button-wrapper > .ant-radio-button {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.candidate-form-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0;
}
.admitcard-form_container-div {
    padding: 10px;
}
.card {
    border: none;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /* border: 1px solid rgba(0, 0, 0, .125); */
    border-radius: 0.25rem;
}
.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}
.loading-Cohntaionr-fropm0-dv {
    align-items: center;
    display: flex;
    justify-content: center;
}
.admit_submit_btn {
    background-color: #816500;
}
.candidate-form-container input {
    margin-top: 10px;
    padding: 3px !important;
}
.card ul li {
    text-align: left;
}
.candidate-form-container li {
    font-size: 16px;
    margin-bottom: 7px;
}
@media (min-width: 320px) and (max-width: 480px) {
    .admitcard-form_container-div {
        width: 95% !important;
    }
}

/* Ending of Download Admit Card */

/* Starting of Result */

.result-iner-wrapper {
    margin: 50px;

    label,
    p {
        color: inherit;
    }
}
.result-heading {
    padding: 20px 0;
    text-align: center;
}
.result-heading h1 {
    color: gray;
    font-size: 20px;
    padding-bottom: 10px;
}
.result-heading h2 {
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
}
hr:not([size]) {
    height: 1px;
}
hr {
    box-sizing: initial;
    height: 0;
    overflow: visible;
}
.result-input-details {
    align-items: center;
    background-color: #fff9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
.result-input-field label {
    font-weight: 700;
    margin-right: 5px;
}
.result-input-field input {
    margin-bottom: 10px;
    padding: 6px !important;
}

@media (max-width: 480px) {
    .result-input-details p,
    .result-input-field label {
        font-size: 11px;
    }
}

/* Ending of Result */

/* Starting of Modal Body */


.modal.csa-modal , .modal.loader-modal {
    /* width: 1000px !important; */

    .modal-dialog{
        max-width: 80%;
        margin: 8.75rem;
    }

}
@media (max-width: 480px){
    
    .modal.csa-modal , .modal.loader-modal {
    /* width: 1000px !important; */

    .modal-dialog{
        max-width: 97%;
        margin: 4rem auto;
    }

}
    
}

.modal-body {
    p,
    a {
        color: inherit;
        font-size: 13px;
        text-align: justify;
        color:#000 !important;
    }
}

.modal-footer button {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

#modal-inner-p1-text {
    font-size: 13px;
    text-align: center;
    text-decoration: underline;
    text-align:left;
}

#bas-name {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
}

/* Ending of Modal Body */

/* Starting of Greenfield Text */

.green-field-text {
    padding: 15px;
    p {
        color: var(--primary-color);
        font-size: 16px;
        font-weight: 500;
        text-align: justify;
    }
    h3 {
        font-size: 20px;
        padding-bottom: 10px;
        text-align: center;
    }
}

/* Ending of Greenfield Text */

/* Starting of Login  */

.login-form {
    background-color: var(--background-color);
}

.login-main-inner-div {
    padding: 40px;

    label {
        color: inherit;
        font-weight: 600;
        margin-bottom: 8px;
    }
    input,
    select {
        height: 38px;
        margin-bottom: 20px;
        padding: 10px;
    }
}

.form-login-div {
    margin: auto;
    width: 60%;
}

.form-login-btn-div {
    p,
    t {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 20px;
    }

    button {
        background-color: var(--primary-color);
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        padding: 5px 48px;
    }
}

@media (max-width: 480px) {
    .form-login-btn-div button {
        font-size: 17px;
    }
    .form-login-div {
        width: 100%;
    }
}

/* Ending of Login */

/* Starting of Application form */

.prsnt-add-div .other-form-link {
    position: absolute;
    top: 0;
    right: 0;
    color: red;
}

@media (max-width: 480px) {
    .prsnt-add-div .other-form-link {
        position: relative;
        text-align: center;
    }
}

/* Starting of Regitration Form */

.registration {
    .row {
        padding: 13px 8px;
    }

    label {
        font-weight: 700;
        color: #666;
        display: block;
        margin-bottom: 8px;
    }
    .input-group-text {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 11px 15px;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: none;
    }
}

.registration .input-group label {
    font-weight: 500;
}

.registration h2 {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.registration-form form {
    padding: 15px 13px;
}

.registration-form h3 {
    margin: 20px 0px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    border-left: 8px double var(--secondary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.registration-form form .form-group {
    margin: 10px 0px;
    padding: 0px 20px;
}

.registration-form {
    background-color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgb(149 148 148 / 15%) !important;

    p {
        color: inherit;
    }
}

.registration-form .row:nth-child(even) {
    background-color: #f9f9f9;
}

.registration-form .input-form-el-div,
.prsnt-add-el-div {
    margin: 8px 10px;
}

.registration-form form .row div:first-child h2 {
    background-color: var(--primary-color);
    padding: 10px 0px;
    color: var(--secondary-color);
}

.registration-form button {
    background-color: var(--primary-color);
    color: var(--background-color);
    font-weight: 700;
    margin: 20px;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}
/* Ending of Registration Form */

/* Ending of Application form */

/* Starting of Dashboard */

.profile{

    p{
        color: inherit;
    }

    .status-text {
        font-size: 16px;
        font-weight: 700;
        color: #8e433e;
        margin: 10px;
        text-align: center;
        display: flex;
        justify-content: center;
        background-color: transparent;
        border: none;
    }

    .card {
        position: relative;
        display: flex;
        flex-direction: row;
        padding: 10px 0;
        border-radius: 15px;
        margin: 0 0 20px;
        border: 1px solid #ebebeb;
        background: #fff;
    }

    .img-cl {
        margin-top: -45px;
        width: 20% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .centre p{
        margin: 4px;
        overflow-wrap: anywhere;
    }

    .content-text {
        font-size: 16px;
        font-weight: 400;
        color: #434343;
    }

    .ot {
        overflow: visible;
        position: relative;
    }
    
    .img-block {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        background-color: #fdfdfd;
        border: 1px solid #ebebeb;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .abs {
        width: 25px;
        height: 25px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        padding: 6px;
        right: -10px;
        top: 40px;
        box-shadow: #00000059 0 5px 15px;
    }

    .right-tab {
        width: 80% !important;
        border-left: 1px solid #ebebeb;
    }

    .top-margin {
        margin: 10px 0;
        padding: 0px 15px;
    }

    .tab-head {
        font-size: 16px;
        font-weight: 700;
        padding: 0 10px;
    }

    .tab-body {
        font-size: 14px;
        font-weight: 400;
        padding: 0 10px;
    }

    button{
        border: none;
        background: none;
    }

    button a {
        background-color: var(--primary-color);
        border-radius: 3px;
        color: #fff;
        font-size: 16px;
        /* font-weight: 700; */
        margin-bottom: 20px;
        padding: 5px 48px;
    }


}

@media (max-width: 991.98px) {
    .img-cl {
        padding: 0 20px;
    }
}

@media (max-width: 767.98px) {
  .profile  .card{
        flex-direction: column;
        width: 99%;
    }
  .profile .img-cl{
        margin-top: 0;
        display: flex;
        gap: 5px;
        align-items: center;
        width: 100% !important;
    }
    .tab{
        border: none;
    }
}

/* Ending of Dashboard */


/*Preview Application*/

.prev-inner-div{

    .input-form-el-div{
         p,lable{
        color:#000 !important;
    }
    }    
    
   
}

.payment-container p{
    color: #000 !important;
}


