@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* typography start here */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
    font-family: "Poppins";
    color: #2b2b2b;
}
html {
    overflow-x: hidden;
}
h1 {
    font-size: 53px;
    line-height: 63px;
    font-weight: bold;
}

h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: bold;
}

h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
}

h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
}

h5 {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
}

h6 {
    font-size: 18px;
    line-height: 32px;
    font-weight: bold;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: #404040;
}

/* typography ends here */
/* button global css start here*/
body {
    overflow-x: hidden;
}

* {
    font-family: "Poppins";
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: initial;
}

.btn {
    background: #ffc53a;
    border-radius: 0px !important;
    color: #2e2e2e !important;
    padding: 13px 25px;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

a.btn:hover {
    background: #292929;
    color: #fff !important;
}

a.black-btn {
    background: #292929;
    border-radius: 0px !important;
    color: #fff !important;
    padding: 13px 25px;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 600;
    transition: all 0.4s linear;
}

a.black-btn:hover {
    background: #ffc53a;
    color: #292929 !important;
    border: 1px solid #292929;
}

a.yellow-btn {
    background: #ffc53a;
    border-radius: 0px !important;
    color: #2e2e2e !important;
    padding: 13px 25px;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 600;
    transition: all 0.4s linear;
}

a.yellow-btn:hover {
    background: #292929;
    color: #fff !important;
}

/* button global css ends here*/
/* navbar css start here */
header {
    position: absolute;
    width: 100%;
    z-index: 999999;
    top: 0;
}

.desktop-header ul.navlist {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 0px !important;
    margin: 0px;
}

.desktop-header li.Compare a.item-links:hover {
    background: transparent;
    /* padding: inherit !important; */
}

.desktop-header li.Detailed a.item-links:hover {
    background: transparent;
    padding: 27px 0px;
}

.desktop-header li.nav-items {
    width: 81%;
    background: #f5f5f5;
    padding: 27px 3px;
    text-align: center;
    transition: all 0.5s ease-in-out;
}

.desktop-header li.nav-items:nth-child(3) {
    width: 69%;
    transition: all 0.5s ease-in-out;
}

.desktop-header li.nav-items:nth-child(4) {
    width: 69%;
    transition: all 0.5s ease-in-out;
}

.actives {
    /* background: #fbc239;
    padding: 12px 32px; */
    font-weight: bold;
    font-size: 9px;
}

.desktop-header a.item-links {
    color: #2b2b2b;
    font-size: 15px;
    font-weight: 600;
}

/* .desktop-header a.item-links:hover {
    background: #fbc239;
    padding: 12px 32px;
} */

.desktop-header li.Compare {
    width: 100%;
    background: #000000;
}

.desktop-header li.Detailed {
    width: 100%;
    background: #005c32;
    padding: 27px 10px;
}
.desktop-header li.Detailed a {
    color: #fff;
}

.desktop-header li.Compare a {
    color: #fff;
}

.desktop-header li.login {
    background: #292929;
}

.desktop-header li.login a {
    color: #fff;
}

header li.mobile {
    display: none;
}
@media (max-width: 1440px) {
    .desktop-header a.item-links {
        color: #2b2b2b;
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap;
    }
}
@media (max-width: 1366px) {
    .desktop-header li.nav-items:nth-child(2) {
        width: 60%;
    }
    .desktop-header li.Compare {
        width: 117%;
    }
    .desktop-header li.Detailed {
        width: 110%;
    }
}
@media (max-width: 1040px) {
    .desktop-header {
        display: none;
    }

    header li.mobile {
        display: block !important;
    }
}

@media (max-width: 580px) {
    header .col-sm-6 {
        width: 50%;
    }
}

/* mobile header css */
header .mobile-header {
    width: 50%;
    height: 100%;
    position: fixed;
    background: #292929;
    top: 0;
    z-index: 1;
    right: 0;
    padding-top: 30px;
    transition: 0.7s;
    transform: translateX(100%);
}

header .mobile-header.show {
    transform: translateX(0%);
}

header .mobile-header ul.mobile-nav {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

header .mobile-header .cancel {
    background: #fff;
    width: 35px;
    text-align: center;
    height: 35px;
    line-height: 55px;
    margin: 0px 20px 20px auto;
}

header .mobile-header ul.mobile-nav li.nav-item {
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #dddddd4a;
}

header .mobile-header ul.mobile-nav li.nav-item a {
    color: #fff;
    font-size: 14px;
    padding: 0 20px;
}

ul#mob {
    padding: 0px !important;
    display: flex;
    justify-content: end;
}

ul#mob li.mobile.nav-items {
    background: #fbc239;
    padding: 20px 28px;
}

/* mobile header css ends */
/* navbar css ends here */
/* banner starts here */
/* .banner {
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
} */

.banner .overlay {
    position: absolute;
    /* background: #00000075 !important; */
    width: 100% !important;
    height: 100%;
    top: 0%;
}

.banner .uniform select {
    background: #ffffff47;
    backdrop-filter: blur(7px);
    border: 0px !important;
    color: #ffffff;
    border-radius: 0px !important;
    padding: 9px;
}

.uniform {
    padding-top: 60px;
}

.uniform .btn {
    padding: 6px 24px;
    background: #2d755f;
    color: #fff !important;
}

.uniform select.form-control:not([size]):not([multiple]) {
    height: calc(2.5rem + 2px);
}

.banner .uniform select {
    font-family: "Poppins";
    font-size: 16px;
}

.banner .uniform select {
    border-bottom: 2px solid whitesmoke !important;
}

.banner .uniform select:focus {
    border-bottom-color: #fbc239 !important;
}

.uniform .btn {
    padding: 10px 51px;
    background: #005c32;
    color: #fff !important;
    font-weight: 400;
    font-size: 15px;
}

@media (max-width: 480px) {
    .uniform .col-sm-4 {
        margin: 10px;
    }

    .banner h1 {
        font-size: 31px;
        line-height: 41px;
    }
}

/* banner ends here */
/* help section start here */
.Help {
    padding-top: 100px;
    padding-bottom: 100px;
}

.Help a.yellow-btn {
    background: #005c32;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 13px 43px;
}
.Help a.black-btn {
    padding: 13px 43px;
}
.Help a.link {
    color: #5231ff;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 500;
}

.Help .Help-section-content p {
    font-size: 15px;
}

/* help section start here */
/* works section css starts here */
.How-it-works {
    padding-top: 60px !important;
    padding-bottom: 60px;
    background: #f5f5f5;
}
.How-it-works .works-content h5 {
    font-size: 19px;
}
.work-heading {
    border-bottom: 1px solid #d9d9d9;
}

.works-content {
    border-right: 1px solid #d9d9d9;
}

@media (max-width: 480px) {
    .works-content {
        border: 0px;
    }
}

/* works section css ends here */
/* scholarship section css starts here */
.scholarship {
    background: #ffc53a;
    padding-top: 60px;
    padding-bottom: 60px;
}

.scholarship p {
    font-size: 16px;
}

@media (max-width: 1040px) {
    .scholarship a.black-btn {
        font-size: 16px;
    }

    .scholarship h3 {
        font-size: 33px;
        line-height: 43px;
    }
}

/* scholarship section css ends here */
/* data-driven sec starts here*/
.data-driver {
    padding-top: 100px;
    padding-bottom: 30px;
}

.data-driver h2 {
    color: #2b2b2b;
    font-size: 45px;
}

/* data-driven sec ends here*/
/* Topuniversity section css start here  */
.Topuniversity {
    padding-top: 60px;
    /* padding-bottom: 30px; */
}

/* Topuniversity section css ends here  */
/* featured uni section */
section.featured-universities {
    padding-bottom: 60px;
}

/* university cards */
.featured-university {
    padding-top: 47px;
}

/* university cards */
.uni-img {
    position: relative;
}

.featured-university figcaption .admission {
    background: #ffc53a;
    padding: 4px 47px;
    position: absolute;
    bottom: 16px;
}

.unicaption {
    margin-top: 42px;
}

.unicaption p {
    font-size: 16px;
}

.uni-img {
    overflow: hidden;
}

.uni-img img {
    transition: all 2s ease-in-out;
}

.uni-img img:hover {
    transform: scale(1.1);
    transition: all 2s ease-in-out;
}

@media (max-width: 576px) {
    .uni-img img {
        width: 100% !important;
    }
}

/* featured uni section */
/* student life section css start here */
.student-life figure {
    margin: 0px !important;
}

.card-img {
    position: relative;
}

.card-img img {
    transition: all 0.4s linear;
}

.card-img img:hover {
    filter: brightness(0.5);
}

.card-img figcaption {
    position: absolute;
    text-align: end;
    bottom: 0px;
    right: 43px;
    padding: 30px 0px;
}

.student-life-cta {
    padding: 49px;
    background: #f5f5f5;
    height: 260px !important;
}

.std-card figcaption h2 {
    color: #fff !important;
    text-decoration: none !important;
}

.std-card figcaption a.info {
    color: #fff;
    text-decoration: underline;
}

.student-life-cta li a {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    line-height: 50px;
    color: #292929;
    font-weight: bold;
}
.student-life .com {
    overflow: hidden;
    height: 520px !important;
}
.student-life-cta ul {
    padding: 0px;
    list-style-type: none;
}

.std-content {
    background: #ffc53a;
    height: 260px !important;
    padding: 41px 90px;
}

.std-content h3 {
    font-size: 32px;
    line-height: 40px;
}

/* responsive */
@media (max-width: 1440px) {
    .std-content {
        padding: 26px 90px;
    }
    .student-life .com {
        height: 473px !important;
    }
}
@media (max-width: 1366px) {
    .student-life .com {
        height: 448px !important;
    }
    .student-life-cta {
        height: 231px !important;
    }
    .student-life-cta {
        padding: 37px 49px;
    }
}
@media (max-width: 1140px) {
    .card-img img {
        height: 549px;
        object-fit: cover;
    }
}

@media (max-width: 1040px) {
    .card-img img {
        height: 590px;
    }
}

@media (max-width: 992px) {
    .card-img img {
        height: 631px;
    }
}

@media (max-width: 769px) {
    .card-img img {
        height: inherit;
        width: 100%;
    }
}

/* student life section css ends here */
/* faq section css starts here */
.faq {
    padding-top: 60px;
    padding-bottom: 160px;
}

/* faq */
.faq .card {
    border-radius: 5px;
    margin-bottom: 10px;
    border: 0;
}

.faq .card .card-header {
    background: #fff;
    border: 0;
    padding: 0px 0px;
}

#accordion .btn {
    background: #f5f5f5;
}

.faq .card .card-header button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    box-shadow: 0 0 0 0;
    padding: 25px 30px;
}

.faq .card .card-header button .question {
    color: #03262c;
    font-family: "Poppins";
    font-size: 22px;
    font-weight: 500;
}

.faq .card .card-body {
    padding: 0px 30px 20px;
    font-family: "Poppins";
    font-size: 14px;
    line-height: 23px;
}

.faq .card-body p {
    font-size: 14px;
    margin-top: 10px;
}
#accordion .btn .question {
    font-size: 17px;
}

#accordion .btn {
    padding: 18px 30px;
}

.faq .card .card-header button .icon i {
    color: #161616;
}

.faq .card .card-header .btn.btn-link.collapsed .icon i:before {
    content: "\f107" !important;
}

.faq .card .card-header .btn.btn-link .icon i:before {
    content: "\f106" !important;
}

.faq .card .card-header button[aria-expanded="true"] {
    background: #1d8107;
}

.faq .card .card-header button[aria-expanded="true"] .question {
    color: #2b2b2b;
}

.faq .card .card-header button[aria-expanded="true"] .icon i {
    color: #2b2b2b;
}

.faq .card .card-body {
    /* background: #1d8107; */
    color: #fff;
    padding-right: 11%;
}

.faq .card {
    margin-bottom: 7px;
}

.faq .contact-form {
    background: #fff;
    margin: 0 80px;
    padding: 40px 70px 20px 70px;
    border-radius: 10px;
}

.faq .contact-form .head h4 {
    color: #03262c;
    font-weight: 700;
    font-size: 28px;
    font-family: "Poppins";
    padding-bottom: 10px;
}

.faq .contact-form .head p {
    margin: 0;
    font-size: 14px;
    color: #03262c;
    font-weight: 500;
}

.faq .contact-form .form-group label {
    color: #03262c;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 14px;
}

.faq .contact-form .form-group textarea {
    resize: none;
    height: 80px;
}

.faq .contact-form .form-group button {
    border: 0;
    background: #1d8107;
    color: #fff;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 5px;
    margin: 0px auto;
    display: table;
    margin-top: 40px;
    cursor: pointer;
}

.faq .scroll-down-button {
    text-align: center;
    padding-top: 50px;
}

.faq .scroll-down-button h5 a {
    color: #fff;
    font-family: "Montserrat";
    font-size: 15px;
    text-decoration: none;
}

.faq .scroll-down-button .icon-box {
    padding-bottom: 20px;
}

/* faq */
/* faq section css ends here */
/* future-career section css starts here */
.future-career {
    background-color: #ffc53a;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}
.future-career a.black-btn {
    font-weight: 500;
}
.future-career a.black-btn:hover {
    background: #005c32;
    color: #fff !important;
    border: 1px solid;
}
.warpper::before {
    content: url(../img/lady.png);
    position: absolute;
    left: 50%;
    top: 11px;
    transform: translate(-50%, -50%) scale(0.8);
}

.future-career h3 {
    font-size: 31px;
    line-height: 41px;
}

.request-links {
    margin-top: 39px;
}

@media (max-width: 769px) {
    .future-career {
        padding-top: 138px;
    }

    .future-career .career-content {
        padding-bottom: 40px;
        text-align: center;
    }
}

/* future-career section css ends here */
/* News section css starts here */
.News {
    padding-top: 50px;
    padding-bottom: 50px;
}

.news-card {
    background: #f5f5f5;
    padding: 35px;
}

.news-card a {
    text-decoration: none;
}

.news-card h4 {
    font-size: 22px;
}

.news-card .news-date {
    font-size: 14px;
    font-weight: 400;
    color: #878787;
}

.news-card p {
    font-size: 16px;
}

a.more-news-cta {
    font-weight: 600;
    font-size: 20px;
}

/* News section css ends here */
/*blog sec starts here*/
/* news card section css starts here */
.news-blogs {
    padding-top: 140px;
    padding-bottom: 60px;
}
.news-blogs h6.news-title {
    font-weight: 400;
    color: #1e2022;
}
.news-cards a.black-btn {
    font-size: 14px;
    font-weight: 300;
}
.news-cards p.news-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #77838f;
    margin: 0;
}
.news-content {
    padding: 27px 28px;
}
.news-cards span.date {
    background: #fbc239;
    color: #fff;
    padding: 8px 20px;
    position: absolute;
    top: -6px;
    left: 20px;
    font-size: 14px;
}
.unitable table tr.row2 td {
    padding: 14px;
    background: #f3f3f3;
    border: 1px solid #fff;
}
/*.pagination a.black-btn {*/
/*    padding: 6px 26px !important;*/
/*}*/
/*ul.pagination .page-item.active .page-link {*/
/*    background: #fbc239;*/
/*    border-color: #fbc239;*/
/*    color: #fff !important;*/
/*    border-radius: 0px !important;*/
/*}*/
/*ul.pagination a.page-link.black-btn {*/
/*    background: #111;*/
/*    color: #fff !important;*/
/*    font-weight: 400;*/
/*}*/
/*ul.pagination .non a.page-link {*/
/*    border: 0px !important;*/
/*}*/
/*ul.pagination .page-link {*/
/*    color: #bebebe !important;*/
/*    margin: 3px;*/
/*}*/
.news-cards img {
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 260px;
}
.news-cards:hover img {
    filter: brightness(0.5);
}
@media (max-width: 480px) {
    .news-cards img {
        width: 100%;
    }
}
/*blog sec ends here*/
/* footer starts here */
footer {
    background: #292929;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 70px;
}
.footer-menu1 h6 {
    margin-left: -20px;
}
.footer-menu1 a.map {
    line-height: 11px !important;
}
.footer-menu-title h6 {
    color: #fff;
    font-weight: 500;
}
.footer-menu1 a.map::before {
    content: "\f041";
    font-family: "FontAwesome";
    margin-left: -27px;
    margin-right: 6px;
}
.footer-menu1 a.en::before {
    content: "\f0e0";
    font-family: "FontAwesome";
    margin-left: -28px;
}
.footer-menu1 a.phone::before {
    content: "\f095";
    font-family: "FontAwesome";
    margin-left: -28px;
}
footer ul {
    list-style-type: none;
    padding: 0px;
}

ul#about-menu span.loc-values {
    color: #fff;
    margin-left: 10px;
}

footer ul li a {
    color: #fff;
    line-height: 40px;
    font-weight: 400 !important;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

footer ul li a:hover {
    opacity: 1;
    color: #fff;
}

#newsletter input.newsletter-email {
    border-radius: 0px !important;
    border: 1px solid #fff;
    margin-right: 10px;
    font-family: "Poppins";
}

div#newsletter button.btn {
    padding: 12px 24px;
    font-size: 14px;
}

#copyright {
    background: #000000;
    padding-top: 20px;
}

#copyright p {
    color: #c8c8c8;
}

/* footer ends here */

/* Begin of Other css  */
section.student-life {
    padding-bottom: 110px;
}
section.future-career {
    margin: 30px 0px;
}
.news-cards {
    box-shadow: 0px 0px 8px #a9a4a452;
    height: 644px;
}

.news-content p {
    font-size: 16px !important;
    line-height: 29px !important;
    margin-bottom: 40px;
}

.second-banner-head h2 {
    font-size: 47px;
    color: #090909;
    font-family: "Poppins";
    font-weight: 700;
}

section.second-banner {
    padding: 160px 0px;
    position: relative;
}
.second-banner-head h5 {
    font-size: 23px;
    color: #090909;
    font-family: "Poppins";
    font-weight: 500;
    padding-bottom: 30px;
}

.get-started a {
    font-size: 16px;
    font-family: "Poppins";
    font-weight: 600;
    background-color: #292929;
    color: #ffffff;
    padding: 13px 25px;
    /* display: block; */
    /* line-height: 72px; */
}

section.second-banner::before {
    content: url("../img/banner-before.png");
    position: absolute;
    top: -450px;
    right: -210px;
}

.second-banner-img {
    position: relative;
}

.youtube-btn {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.in input {
    box-shadow: 0px 0px 7px #0000001f;
}
.canvasjs-chart-credit {
    display: none;
}
.chart-btn {
    position: absolute;
    bottom: -63px;
    width: 89%;
    right: 1%;
    background: #005c32;
    color: #fff !important;
    font-size: 12px;
    border-radius: 5px !important;
    height: 40px;
}
/* End of other css  */
@media (max-width: 912px) {
    .get-started {
        margin-bottom: 29px;
    }
    .footer-menu1 h6 {
        margin-left: 0px;
    }
    .footer-menu1 a.map::before {
        margin-left: 0px;
    }
    .footer-menu1 a.en::before {
        margin-left: 0px;
    }
    .footer-menu1 a.phone::before {
        margin-left: 0px;
    }
}
@media (max-width: 575px) {
    .footer-menu1 h6 {
        margin-left: unset;
    }
    .footer-menu1 a.en::before {
        margin-left: -1px;
    }
    .second-banner-head h2 {
        font-size: 30px !important;
        line-height: 37px !important;
    }
}
