@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,600;1,700;1,900&display=swap');
body {
    font-family: "Lexend", sans-serif;
    color: var(--heading-color);
    line-height: 1.8;
    font-weight: 300;
}

:root {
    --white: #ffffff;
    --heading-color: #252525;
    --blue: #266ec9;
    --para-color: #6b6b6b;
}

section {
    padding: 80px 0;
}

span {
    display: inline-block;
}

a {
    display: inline-block;
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
    color: var(--para-color);
    line-height: 1.8;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}


/* header */

.navbar-collapse {
    justify-content: end;
}

.navbar-nav {
    gap: 14px;
}

.nav-link {
    color: var(--thin-black);
    font-weight: 400;
}

.nav-item {
    gap: 0;
    display: flex;
    align-items: center;
}

.nav-item i {
    font-size: 20px;
}

.nav-item {
    position: relative;
}

.menu-drpodown {
    padding: 10px;
    position: absolute;
    bottom: -150px;
    width: 250px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
}

.nav-item:hover .menu-drpodown {
    visibility: visible;
    opacity: 1;
    bottom: -130px;
}

.header_wrapper {
    position: sticky;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
    z-index: 999;
    top: 0
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* header */


/* banner */

.banner_wrap {
    background: linear-gradient(#ffffffb5, #ffffffe0), url(../images/banner-bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner-overlay {
    position: inherit;
    z-index: 9;
}

.banner_wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #286FC9;
}

.banner-sub {
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 700;
}

h1 {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 0px;
}


/* banner */


/* about */

.about-img img {
    object-fit: cover;
    width: 461px;
    height: 330px;
}

.common-sub {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--blue);
}

.common-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.common-para {
    color: var(--para-color);
    line-height: 1.8;
}

.sub-title-1 {
    font-size: 26px;
    font-weight: 300
}

.custom-btn a {
    padding: 10px 35px;
    font-weight: 600;
    background: var(--blue);
    color: var(--white);
    margin-top: 25px;
    transition: .4s;
}

.students-btn a {
    background: #1CC59C !important
}

.universities-btn a {
    background: #FFB31E !important
}

.custom-btn a:hover {
    background: #172f41;
}

.about-img {
    position: relative;
    padding-top: 70px;
    padding-left: 70px;
    padding-bottom: 70px;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    z-index: -1;
    height: 100%;
    border: 20px solid #286FC9;
    transition: .4s;
}


/* about */


/* universities */

.universities_wrap {
    background: #f9f5f1;
    position: relative;
}

.universities-title {
    text-align: center;
    margin-bottom: 50px;
}

.universities-slider {
    position: relative;
	background: var(--white);
}

.students-img {
    background: url(../images/students-img.jpg);
    width: 50%;
    height: 512px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.universities-img {
    background: url(../images/universities-img.jpg);
    width: 50%;
    height: 512px;
    margin-left: auto;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.universities-descrp {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    max-width: 615px;
    padding: 50px;
    border-radius: 5px;
}

.universities-descrp.university-img-pos {
    left: 0;
}

.universities_wrap .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: auto;
    margin-top: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.universities_wrap .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.universities_wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 60px;
    font-weight: 400;
    border-radius: 17px;
    opacity: 1;
    color: var(--blue);
    background: #ccd3cb;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.universities_wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--blue)!important;
    color: var(--white)!important;
}

.universities_wrap .swiper-button-next:after,
.universities_wrap .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    display: none;
}

.universities_wrap .swiper-button-prev:after,
.universities_wrap .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    display: none;
}

.universities_wrap .swiper-button-next,
.universities_wrap .swiper-button-prev {
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 30px;
    background: var(--blue);
    color: var(--white);
    margin: 0px;
    z-index: 99;
}

.slider_arrow {
    display: flex;
    max-width: 250px;
    justify-content: space-between;
    margin: 30px auto 0px;
}


/* universities */


/*=========================== STUDENT PAGE ================================*/


/* breadcrum banner */

.breadcrumb_wrap {
    background: url(../images/page-title-1.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

.breadcrumb_wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(23 47 65 / 79%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bredcrm-head h2 {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}


/* breadcrum banner */


/* achive dreem */

.achive-drm-descrp {
    padding-left: 20px;
}


/* achive dreem */


/* take advance */

.take-adv-icon img {
    width: 70px;
    height: auto;
}

.take_advantage_wrap {
    background: #f9f5f1;
}

.take-adv-main {
    background: url(../images/take-bg-img.jpg);
    padding: 50px;
    position: relative;
}

.take-advantage-title {
    text-align: center;
    margin-bottom: 50px;
}

.take-advant-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    height: 100%;
    opacity: .9
}

.take-itm-tit {
    font-size: 30px;
    margin: 20px 0;
    font-weight: 500;
}

.take_advantage_wrap .swiper-button-next:after,
.take_advantage_wrap .swiper-button-prev:after {
    display: none;
}

.take_advantage_wrap .swiper-button-next,
.swiper-button-prev {
    color: var(--blue);
}

.take_advantage_wrap .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 30px;
    left: auto;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.take_advantage_wrap .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 204px;
    right: auto;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.take_advantage_wrap .swiper-autoheight .swiper-wrapper {
    align-items: stretch;
}


/* take advance */


/* our partners */

.our-partner-descrp {
    padding: 75px 44px;
    background: var(--blue);
}

.our_partners_wrap .common-sub {
    color: var(--white);
}

.our_partners_wrap .common-title {
    color: var(--white);
}

.our_partners_wrap .common-para {
    color: var(--white);
}

.our_partners_wrap .custom-btn a {
    background: var(--white);
    color: var(--heading-color);
}


/* our partners */


/*=========================== STUDENT PAGE ================================*/


/*=========================== PARTNERS PAGE ================================*/

.partners_bread {
    background: url(../images/partners-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.schools_bread {
    background: url(../images/grad-schools-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* student enrollment */

.student-enroll-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.student-enroll-descrp {
    padding-left: 20px;
}


/* student enrollment */


/* help */

.help_wrap {
    background: #f9f5f1;
}

.help-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-sub {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
}

.help-text {
    list-style: disc;
    padding-left: 20px;
}

.help-text li {
    list-style: disc;
    color: var(--para-color);
}

.help-wrap-item {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px 20px;
}

.help-main .help-wrap-item:last-child {
    margin-bottom: 0px;
}

.choose_course {
    padding-top: 20px;
}


/* help */


/*=========================== PARTNERS PAGE ================================*/


/*=========================== ABOUT PAGE ================================*/

.about_bred {
    background: url(../images/about-bred-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


/* who we are */

.who_we_are {
    background: #f9f5f1;
}


/* who we are */


/* student succes */

.stude-succ-img img {
    border-radius: 100%;
}

.stud-succ-para,
.stud-succ-para-2 {
    max-width: 400px;
    height: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0px auto;
    transition: .4s;
}

.stud-succ-para.read-open {
    -webkit-line-clamp: initial;
}

.stud-succ-para-2.read-2-open {
    -webkit-line-clamp: initial;
}

.student-succ-main {
    text-align: center;
}

.student-success {
    background: #f9f5f1;
    padding: 50px 0;
}

.stude-succ-img {
    margin-bottom: 20px;
}

.stud-succ-name {
    font-weight: 500;
    font-size: 22px;
}

.stu-succ-roll {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
}

.read-toggle,
.read-toggle-2 {
    margin-top: 10px;
    padding: 2px 10px;
    font-weight: 400;
    background: var(--blue);
    color: var(--white);
    border: none;
    outline: navy;
}

.team-img img {
    border-radius: 100%;
    width: 200px;
    height: auto;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.who-we-descrp .help-sub {
    color: #555;
}


/* student succes */


/*=========================== ABOUT PAGE ================================*/


/*=========================== TOEFL PAGE ================================*/

.toefl-main {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 50px 100px;
    background: #172f41;
    border-radius: 10px;
}

.toefl-img {
    background: var(--white);
    padding: 15px 40px;
    border-radius: 10px;
}

.toefl-img img {
    height: auto;
    width: 100px;
}

.toefl-tit h2 {
    margin-bottom: 0px;
    color: var(--white);
}

.toefl_wrap {
    padding: 20px 0 0 0;
}

.toefl_wrap p {
    /* text-align: center; */
    /* padding: 0px 100px; */
    margin-top: 20px;
}

.toefl-descrp h4 {
    margin: 20px 0 20px;
}

.tofel_option_wrap {
    background: #f9f5f1;
    padding-bottom: 0px;
}

.tfl-opt-title {
    text-align: center;
    margin-bottom: 50px;
}

.tfl-opt-item {
    padding: 20px 10px;
    background: var(--white);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tfl-opt-item h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tfl-text-2 {
    margin: 15px 0px;
}

.tfl-itm-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tfl-itm-price span {
    font-size: 25px;
    font-weight: 800;
    color: var(--blue);
}

.tfl-itm-price p {
    color: #b1adad;
    font-size: 20px;
}

.color-blue {
    color: var(--blue);
}

.m-pass {
    font-weight: 500;
    border-bottom: 2px solid #e6e5e3;
    padding-bottom: 10px;
}

.tfl-text-2 {
    margin: 10px 0 20px;
}

.what-class {
    margin: 10px 0 20px 0;
}

.most-popular {
    position: relative;
}

.most-popular span {
    border: 2px solid #fff;
    padding: 4px 20px;
    border-radius: 30px;
    background: #0a58ca;
    color: #FFF;
    position: absolute;
    top: -22px;
    font-weight: 400;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99
}

.tfl-itm-list li {
    display: flex;
    align-items: baseline;
    justify-content: left;
    gap: 5px;
    margin-bottom: 6px;
    margin-left: 20px;
}

.tfl-itm-list li strong {
    text-align: left;
    font-weight: 600
}

.tfl-itm-list li i {
    color: var(--blue);
}

.testimnial-descrp span {
    margin-top: 10px;
}

.testimonial_wrap {
    background: #f9f5f1;
}

.testimnial-title {
    text-align: center;
}

.testimonial-descrp {
    padding: 20px;
    max-width: 600px;
    margin: 0px auto;
    background: var(--white);
    text-align: center;
    border-radius: 10px;
}

.star-icon i {
    font-size: 15px;
    color: var(--blue);
}

.star-icon {
    margin-top: 20px;
}

.quort-icon i {
    font-size: 40px;
    color: var(--blue);
}

.quort-icon {
    line-height: 1;
}


/*=========================== TOEFL PAGE ================================*/


/*=========================== CONTACT PAGE ================================*/

section.coming-soon {
    padding: 0px 0;
}


/*=========================== CONTACT PAGE ================================*/


/*=========================== UNIVERSITY PARTNERS PAGE ================================*/

.university-bred {
    background: url(../images/university-bred.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.university-partn-title .custom-btn a {
    margin-top: 0px;
}

.university-partn-title {
    text-align: center;
    margin-bottom: 80px;
}

.uni-part-item {
    text-align: center;
    padding: 30px 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.uni-part-img img {
    object-fit: contain;
    height: 200px;
    width: 229px;
    height: 200p;
}

.uni-part-descrp {
    margin-top: 20px;
}

.uni-part-des-tit {
    font-weight: 500;
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 10px;
}


/*=========================== UNIVERSITY PARTNERS PAGE  ================================*/


/*=========================== PREP COURSES PAGE  ================================*/

.choose-course-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.choose-course-item img {
    width: 40px;
}

.choose-course-item {
    font-weight: 500;
    color: #fff;
    padding: 10px 40px;
    background: var(--blue);
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.choose-course-item:hover {
    color: var(--white);
}

.choose-course-tit {
    text-align: center;
    margin-bottom: 30px;
}

.how-work_wrap {
    background: #f9f5f1;
}

.how-work-tit {
    text-align: center;
    margin-bottom: 30px;
}

.how-work-item {
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 100%;
    height: 100%;
    background: var(--white);
}

.how-work-item h4 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
}

.how-work-descrp li {
    list-style: disc;
    margin-left: 15px;
}

.course-list li {
    list-style: disc;
    margin-left: 20px;
}

.courses-help {
    padding-bottom: 0;
}

.cours-help-descrp {
    padding-bottom: 80px;
}

.courses-img img {
    width: 400px;
    height: auto;
    object-fit: cover;
}


/*=========================== PREP COURSES PAGE  ================================*/


/*=========================== FRIEND PAGE  ================================*/

.friend-descrp {
    padding-left: 20px;
}


/* friend-partner */

.friend-partn-item {
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px 15px 40px 15px;
    height: 100%;
}

.frnd-partn-descrp h4 {
    margin-top: 20px;
    font-weight: 500;
    font-size: 25px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.friend_partner .custom-btn a {
    margin-top: 20px;
}

.frnd-partn-img img {
    object-fit: contain;
    width: 295px;
    height: 128px;
}

.friend_wrap {
    background: #f9f5f1;
}


/*=========================== FRIEND PAGE  ================================*/


/*===========================GRADUATE SCHOOL PAGE  ================================*/

.graduate-contactform {
    background: #f9f5f1;
}

.graduate-school-title {
    text-align: center;
}

.graduate-partner-place {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20x;
    margin-bottom: 20px;
}

.graduate-partner-img {
    background: #f9f5f1;
    padding: 10px;
    border-radius: 10px;
}

.gradiate-contact-title {
    text-align: center;
    margin-bottom: 20px;
}

.graduate-frm-main .form-group {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.graduate-frm-main .form-control {
    padding: 14px 10px;
    border: none;
    background: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: #838b8c;
}

.graduate-frm-main .form-control::placeholder {
    color: #838b8c;
}

.graduate-frm-btn {
    text-align: center;
}

.graduate-frm-btn button {
    padding: 10px 35px;
    font-weight: 600;
    background: var(--blue);
    color: var(--white);
    transition: .4s;
}

.graduate-frm-btn button:hover {
    background: #172f41;
}


/*=========================== GRADUATE SCHOOL PAGE   ================================*/


/*=========================== GRADUATE STUDENT PAGE   ================================*/

.graduate-school-card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.graduate-shool-card-item {
    background: var(--blue);
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.graduate-school-card-tit {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 10px;
}

.graduate-school-text {
    color: var(--white);
    margin: 30px 0;
}

.graduate-shool-card-item img {
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 5px;
}

.graduate-student-help-title {
    margin-bottom: 50px;
}

.graduate-student-help-item {
    padding: 30px;
    background: #f9f5f1;
    border-radius: 10px;
}

.help-para strong {
	font-weight:700;
	color:#333;
	font-size:20px;
}

/*=========================== GRADUATE STUDENT PAGE   ================================*/


/* footer */

.footer_wrapper {
    padding: 50px 0 20px 0;
    background: var(--blue);
    background: linear-gradient(#266ec9d1, #021979), url(../images/take-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

a.ftr-logo {
    margin-bottom: 30px;
}

.ftr-text {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 40px;
}

.ftr-stay {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.ftr-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.ftr-social-link li {
    width: 40px;
    height: 40px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: .6s;
}

.ftr-social-link li:hover {
    background: #172f41;
    transform: translateY(-5px);
}

.ftr-social-link li:hover i {
    color: var(--white);
}

.ftr-social-link li a i {
    font-size: 25px;
    color: #172f41;
    transition: .6s;
}

.ftr-link-tit {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}

.ftr-link li a {
    font-size: 16px;
    color: var(--white);
    line-height: 40px;
}

.ftr-btn {
    background: transparent;
    font-size: 15px;
    color: var(--white);
    padding: 10px 30px;
    border: 2px solid var(--white);
    transition: .4s;
}

.ftr-btn:hover {
    background: var(--white);
    color: var(--heading-color);
}

.ftr-btn i {
    color: var(--blue);
    font-size: 20px;
}

.ftr-logo img {
    width: 230px;
    height: auto;
}

.ftr-left {
    position: relative;
}

.copy-right p {
    color: var(--white);
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #fff;
}


/* footer */

.friend-descrp {
    padding-left: 20px;
}


/* friend-partner */

.friend-partner-item {
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px 15px 40px 15px;
    height: 100%;
}

.friend-partner-descrp h4 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 25px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.friend_partner .custom-btn a {
    margin-top: 20px;
}

.friend-partner-img img {
    object-fit: contain;
    width: 295px;
    height: 128px;
}

.friend_wrap {
    background: #f9f5f1;
}

.take-adv-main .col-sm-6 {
    margin-bottom: 25px;
}

@media screen and (max-width:480px) {
    .take-adv-main {
        padding: 10px
    }
}