@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root{
    --blue : #003d88;
}

html.dark-mode{
    filter: invert(100%) hue-rotate(180deg);
}

html.dark-mode img, html.dark-mode video, html.dark-mode iframe{
    filter: invert(100%) hue-rotate(180deg);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

a{
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}

img{
    max-width: 100%;
}

.lg-backdrop{
    opacity: 0.7!important;
}
.lg-toolbar .lg-icon,
.lg-next,
.lg-prev,
.lg-counter{
    color: #fff!important;
}


#preloader img{
    width: 100px;
}
#preloader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    background: #000000bf;
    z-index: 99999;

}



/* ======================= Header ======================= */

header{
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
}
header nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav .logo{}
header nav .logo img{
    height: 50px;
}
header nav ul{
    display: flex;
    align-items: center;
    gap: 4px;
}
header nav ul li{}
header nav ul li a{
    padding: 22px 20px;
    display: inline-block;
    font-weight: 600;
    transition: color 0.3s ease;
}
header nav ul li.active a{
    color: var(--blue);
}
header nav ul li a:hover{
    color: var(--blue);
}
header nav ul li a img{
    height: 30px;
}
header nav .application_btn{}
header nav .application_btn a{
    display: inline-block;
    padding: 7px 15px;
    color: #007bff;
    background-color: rgba(67, 83, 255, .09);
    border-radius: 5px;
    font-weight: 600;
}

header nav .application_btn a.red{
    background: red;
    color: #fff;
}


/* ======================== banner =========================== */

.banner{background: linear-gradient(90deg, rgb(0 61 136) 45%, rgba(232, 137, 26, 0) 100%);color: #fff;}
.banner .container{
    position: relative;
}
.banner .home_section .banner_bg{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    top: 0;
    z-index: -1;
    padding: 0;
}
.banner .home_section .banner_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .home_section{
    /* background: #f5f7ff; */
    border-radius: 15px;
    margin-bottom: 0px;
}
.banner .home_section .home_video{
    margin: 15px;
}
.banner .home_section .home_video video,
.banner .home_section .home_video img{
        position: absolute;
        right: 0px;
        top: 50%;
        max-height: 76%;
        max-width: 50%;
        transform: translateY(-50%);
}
.banner .home_section .home_video p{
    text-align: center;
    margin: 10px;
}

.banner .home_section .home_video iframe{
    width: 95%;
    height: 400px;
    margin-left: 5%;
    border-radius: 15px;
}

.banner .home_section .home_content{
    margin: 40px 0px 60px 0px;
}
.banner .home_section .home_content .country_language{
    display: flex;
    align-items: center;
    gap: 20px;
}
.banner .home_section .home_content .country_language li{
    display: flex;
}
.banner .home_section .home_content .country_language li a{
    display: flex;
    align-items: center;
    gap: 8px;
    /* font-weight: 600; */
    color: #fff;
    cursor: pointer;
}
.banner .home_section .home_content .country_language li img{}
.banner .home_section .home_content .content{}
.banner .home_section .home_content .content h1{
    margin: 20px 0;
    font-weight: 800;
    font-size: 63px;
}
.banner .home_section .home_content .content p{}


.banner .home_section .home_content form{
    margin-top: 30px;
}
.banner .home_section .home_content form input{
    background-clip: padding-box;
    background-image: none;
    border: unset;
    border-radius: 7px;
    color: #606266;
    font-family: -apple-system, "system-ui", Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.banner .home_section .home_content form button{
    width: 100%;
    background-color: #ff0000;
    padding: 10px;
    font-weight: 600;
    color: #fff;
    border: unset;
    border: 2px solid #ff0000;
    box-shadow: rgb(0 0 26 / 61%) 7px 7px 7px -7px;
    transition: all 0.2s ease;
}

.banner .home_section .home_content form button:hover{
    box-shadow: unset;
}

.home_bottom_boxes{
    padding: 0 40px;
    margin-top: 20px;
}
.home_bottom_boxes .box{
    padding: 41px 20px;
    border-top: 1px solid #000;
}
.home_bottom_boxes .box .icon{
    display: inline-block;
    background: rgba(150,144,162,.15);
    padding: 20px;
    border-radius: 100%;
}
.home_bottom_boxes .box .icon i{
    font-size: 26px;
}
.home_bottom_boxes .box h4{
    margin: 20px 0 10px 0;
    font-weight: 600;
}
.home_bottom_boxes .box p{
    margin-bottom: 0;
}




/* ======================== how_to ======================= */

.how_to{
    margin-bottom: 80px;
}
.how_to .how_to_boxes{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 30px 60px;
    background: #f5f7ff;
    border-radius: 10px;
    color: #000000;
    text-align: center;
    margin-top: 40px;
}

.how_to .how_to_boxes .how_to_box{}
.how_to .how_to_boxes .how_to_box h4{
    font-size: 40px;
    font-weight: 700;
}
.how_to .how_to_boxes .how_to_box p{
    margin: 0;
    font-size: 17px;
}
.how_to .how_to_boxes .how_to_box.right{}

.how_to .how_to_boxes .box{
    padding: 0 20px;
    display: grid;
    place-items: center;
}
.how_to .how_to_boxes .box i{width: 60px;height: 60px;background: var(--blue);color: #fff;display: grid;border-radius: 100%;place-items: center;margin-bottom: 20px;font-size: 20px;}
.how_to .how_to_boxes .box h4{
    font-size: 20px;
    font-weight: 900;
    color: var(--blue);
}
.how_to .how_to_boxes .box p{
    font-size: 16px;
    margin-bottom: 0;
}



/* =================================== how_to_study_section ======================== */

.how_to_study_section{}
.how_to_study_section .inner_section{
    background: #f5f7ff;
    border-radius: 10px;
    padding: 30px;
    padding: 20px 90px 20px 100px;
    margin-bottom: 60px;
}
.how_to_study_section .inner_section .steps{
    margin: 30px 50px;
}
.how_to_study_section .inner_section .steps .heading h4{
    font-weight: 600;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.how_to_study_section .inner_section .steps .step{
    /* margin-bottom: 40px; */
}
.how_to_study_section .inner_section .steps .step .title{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.how_to_study_section .inner_section .steps .step .title i{
    padding: 15px;
    border: 2px solid var(--blue);
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.how_to_study_section .inner_section .steps .step .title h4{
    margin: 0;
    font-weight: 600;
}
.how_to_study_section .inner_section .steps .step p{}

.how_to_study_section .inner_section .steps .step:last-child p{
    margin-bottom: 0;
}

.how_to_study_section .inner_section .progress_card{
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
}
.how_to_study_section .inner_section .progress_card .card_photo{
    text-align: center;
    margin-bottom: 30px;
}
.how_to_study_section .inner_section .progress_card .card_photo img{
    max-width: 80%;
    border-radius: 100%;
    height: 250px;
    object-fit: cover;
}

.how_to_study_section .inner_section .progress_card .card_bars{}
.how_to_study_section .inner_section .progress_card .card_bars .progress{
    margin-bottom: 20px;
    margin-top: 10px;
}

.how_to_study_section .inner_section .progress_card p{
    font-size: 18px;
    margin: 0;
}

#progress_1,
#progress_2{
    display: flex;
    justify-content: space-between;

    align-items: center;


}

#progress-bar-1,
#progress-bar-2{
    margin: 6px;
    border-radius: 10px;
}

#progress_1 span,
#progress_2 span{
    font-weight: 600;
}



/* ============================ home_category_section ======================== */

.home_category_section{
    margin-bottom: 60px;
}
.home_category_section .row{
    justify-content: space-evenly;
}
.home_category_section .home_category_box{
    background: var(--blue);
    padding: 40px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.home_category_section .home_category_box .title{}
.home_category_section .home_category_box .title p{
    margin-bottom: 10px;
    font-weight: 600;
}
.home_category_section .home_category_box .title h4{
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 0;
}
.home_category_section .home_category_box .detail{
    text-align: right;
}
.home_category_section .home_category_box .detail p{}
.home_category_section .home_category_box .detail a{
    display: inline-block;
    border: 2px solid #ff0000;
    color: #fff;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 5px;
    background: red;
    box-shadow: rgb(0 0 26 / 61%) 7px 7px 7px -7px;
    transition: all 0.2s ease;
}
.home_category_section .home_category_box .detail a:hover{
    box-shadow: unset;
}



/* ============================== home_testimonials ========================== */

.home_testimonials{
    margin-bottom: 60px;
}
.home_testimonials .testimonial_featured_image{
    position: relative;
    height: 100%;
    width: 100%;
}
.home_testimonials .testimonial_featured_image img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}
.home_testimonials .testimonial_slider{
}
.home_testimonials .testimonial_slider .slider_box{
    padding: 5% 15%;
    text-align: center;
    background: #f5f7ff;
    border-radius: 10px;
}
.home_testimonials .testimonial_slider .slider_box h4{
    font-size: 30px;
    font-weight: 600;
}
.home_testimonials .testimonial_slider .slider_box p.desc{
    font-size: 18px;
    padding: 0 20px;
}

.home_testimonials .testimonial_slider .slider_box h6.state{
    background: #d5d4df;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
}
.home_testimonials .testimonial_slider .slider_box .profile_box{}
.home_testimonials .testimonial_slider .slider_box .profile_box img{
    width: 60px;
    border-radius: 100%;
    margin: 0 auto 10px auto;
}
.home_testimonials .testimonial_slider .slider_box .profile_box h6{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
}
.home_testimonials .testimonial_slider .slider_box .profile_box p{
    margin-bottom: 0;
}

/* ================================== home_faq_section ============================== */

.home_faq_section{
}
.home_faq_section .home_faq_section_box{
    background: #f5f7ff;
    border-radius: 10px;
}
.home_faq_section .home_faq_section_box .pricing_box_home{
    padding: 5% 15%;
}
.home_faq_section .home_faq_section_box .pricing_box_home .heading img{
    width: 40px;
}
.home_faq_section .home_faq_section_box .pricing_box_home .heading h2{
    font-size: 40px;
    font-weight: 800;
    margin-top: 20px;
}
.home_faq_section .home_faq_section_box .pricing_box_home .heading h6{
    background: #d5d4df;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}
.home_faq_section .home_faq_section_box .pricing_box_home ul{
    margin-bottom: 30px;
}
.home_faq_section .home_faq_section_box .pricing_box_home ul li{
    padding: 5px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.home_faq_section .home_faq_section_box .pricing_box_home a{
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: rgb(0 0 26 / 61%) 7px 7px 7px -7px;
    border: 2px solid #ff0000;
    transition: all 0.2s ease;
}

.home_faq_section .home_faq_section_box .pricing_box_home a:hover{
    box-shadow: unset;
}

.home_faq_section .home_faq_section_box .pricing_box_home ul li.close{
    color: grey;
}
.home_faq_section .home_faq_section_box .pricing_box_home ul li.close i{
    color: grey;
}
.home_faq_section .home_faq_section_box .pricing_box_home ul li i{
    color: var(--blue);
}

.home_faq_section{}
.home_faq_section .faq_box {
    padding: 5% 15%;
}
.home_faq_section .faq_box .head{}
.home_faq_section .faq_box .head p{
    margin-bottom: 10px;
}
.home_faq_section .faq_box .head h2{font-size: 40px;font-weight: 800;}
.home_faq_section .faq_box .head a{
    width: 100%;
    border: 2px solid var(--blue);
    color: var(--blue);
    display: block;
    padding: 5px 10px;
    text-align: center;
    font-weight: 600;
    margin: 15px 0;
    border-radius: 5px;
}
.faq_box h4{margin: 0 0 40px 0;font-weight: 800;font-size: 30px;}
.accordion-item{
    background: unset;
}
.accordion-item button{
    font-weight: 700;
    color: var(--blue)!important;
}

.accordion-button:not(.collapsed),
.accordion-button{
    background-color: unset;
}
.accordion-button:focus{
    box-shadow: unset;
}

.nav.nav-tabs button{
    color: var(--blue)!important;
}


/* ================================ footer ====================== */

footer{
    /* margin: 40px 0; */
    padding: 60px 0;
}
footer .footer_box{
    text-align: center;
}
footer .footer_box p{
margin-bottom: 5px;
}
footer .footer_box p.top_links{}
footer .footer_box p.top_links a{
    color: var(--blue);
}
footer .footer_box p.dull{
    margin-bottom: 0;
    color: grey;
}



/* ================================== universities_list ========================== */

.universities_list{
    margin: 40px 0;
}
.universities_list .heading{
    margin-bottom: 40px;
    text-align: center;
}
.universities_list .heading h3{
    color: var(--blue);
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 600;
}
.universities_list .col-md-6{
    margin-top: 30px;
}
.universities_list .university_card{
    background-color: #f9f8fa;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}
.universities_list .university_card img{
    height: 70px;
/*    border-radius: 100%;*/
}
.universities_list .university_card h4{
    margin: 16px 0;
    font-weight: 700;
}
.universities_list .university_card p{}
.universities_list .university_card a{
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 6px 15px;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
}

/* =================================== university_details =========================== */

.university_details{
    margin-top: 10px;
}
.university_details .video_box{
    background: #000000;
}
.university_details .video_box iframe{
    height: 317px;
    width: 100%;
    /* background: #000000; */
}
.university_details .university_content{}
.university_details .university_content img{
    height: 70px;
}
.university_details .university_content h1{
    font-weight: 700;
    margin: 10px 0;
    font-size: 32px;
}
.university_details .university_content h6{
    font-weight: 600;
    font-size: 18px;
}
.university_details .university_content p{
    margin: 0;
    /* height: 138px; */
    overflow: hidden;
    /* line-height: 22.5px; */
}
.university_details .university_content a i{
    transition: all 0.3s ease;
    position: relative;
    right: 0;
}
.university_details .university_content a:hover i{
    
    right: -15px;
}
.university_details .university_content a:hover{
    box-shadow: unset;
}
.university_details .university_content a{
    background: #ff0000;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: rgb(0 0 26 / 61%) 7px 7px 7px -7px;
    transition: all 0.2s ease;
}

.university_details .image_gallery{
    padding: 40px 0 40px 0;
}
.university_details .image_gallery .gallery-container{
    flex-wrap: nowrap;
    overflow-x: auto;
}
.university_details .image_gallery .gallery-container a{
     height: 180px;
     display: block;
}
.university_details .image_gallery .gallery-container img{
    height: 180px;
    object-fit: cover;
    width: 100%;
}
.university_details .details_content{
    border-top:1px solid #d2d2d2 ;
}

.university_details #myTab {
    flex-wrap: nowrap;
}
.university_details #myTab li{}
.university_details #myTab li button{
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.university_details .tab-content{
    padding: 30px;
    border: 1px solid #d2d2d2;
    border-top: unset;
    border-radius: 0px 0px 6px 6px;
    border-bottom: 0;
}
.university_details .tab-content .admission{}
.university_details .tab-content .admission p{}
.university_details .tab-content .admission h6{
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 20px;
}
.university_details .tab-content .admission ul{}
.university_details .tab-content .admission ul li{
    /* font-weight: 600; */
    padding: 5px 0;
    list-style: disc;
    margin-left: 20px;
}

.university_details .accordion-body ul li{
    /* font-weight: 600; */
    padding: 5px 0;
    list-style: disc;
    margin-left: 20px;
}


.tables_content{
    margin-top: 60px;
}

.tables_content figure.wp-block-table{
      margin: 20px 0 60px 0;
}
.tables_content figure.wp-block-table p{
    margin-bottom: 10px;
}
.tables_content .table-responsive,
.tables_content .table_responsive{
    overflow: auto;
   
}
.tables_content table{
    width: 100%!important;
   margin-top: 10px;
    border: 1px solid #d2d2d2;
}
.tables_content table tr{
    border-bottom: 1px solid #d2d2d2;
}
.tables_content table tr th,
.tables_content table tr td{
    padding: 10px 16px;
    font-size: 16px;
    text-align: left;
    width: auto!important;
    white-space: nowrap;
    border: 1px solid #d2d2d2;
}
 table tr th{}
.university_details .details_content ul{margin-bottom: 20px;}
.university_details .details_content ul li{list-style: disc;padding: 5px 0px;margin-left: 20px;}


.university_details .container{
    max-width: 1170px;
}

.other_universities{
    /* margin-top: 60px; */
    box-shadow: 0px 0px 33px -5px rgba(0,0,0,.13);
    border-radius: 10px;
    overflow: hidden;
}
.other_universities .heading{}
.other_universities .heading h2{
    color: #4b5d73;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    padding: 20px 0;
    margin: 0 30px;
    border-bottom: 1px solid #4b5d73;
    font-weight: 800;
}
.other_universities .row{
    flex-wrap: nowrap;
    overflow-x: auto;
}
.other_universities .university_box{
    text-align: center;
    padding: 60px 20px;
}
.other_universities .university_box img{
    height: 73px;
}
.other_universities .university_box h2{
    font-size: 20px;
    margin: 20px auto 0 auto;
    font-weight: 800;
    color: var(--blue);
    transition: color 0.3s ease;
    width: fit-content;
}
.other_universities .university_box h2:hover{
    color: #000;
}
.sign_up{
    background: #f9f9f9;
    margin: 40px 0;
    padding: 30px 0;
    margin-bottom: 0;
}
.sign_up .head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 10px;
}
.sign_up .head h2{
    margin: 0;
    font-weight: 700;
}
.sign_up .head a{
    background: #4b5d73;
    color: #fff;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 5px;
}
.sign_up .content{}
.sign_up .content p{
    width: 50%;
}


/* =================================== contact_us_page ============================== */


.contact_us_page{}
.contact_us_page .banner_section{
    background-color: var(--blue);
    text-align: center;
    color: #fff;
    padding: 150px 20px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}
.contact_us_page .banner_section h3{
    font-size: 34px;
    font-weight: 700;
    color: var(--blue);
}
.contact_us_page .banner_section p{
    margin: 0;
    color: #000;
}
.contact_details .contact_form{
    background: #f9f8fa;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
.contact_details{
    margin: 20px 0;
}
.contact_details .contact_form p{
    margin-bottom: 30px;
}
.contact_details .contact_form h2{
    margin-bottom: 30px;
    text-align: center;
    /* font-weight: 600; */
    font-size: 26px;
}
.contact_details .contact_form form{}
.contact_details .contact_form form select,
.contact_details .contact_form form input:not(.radio){
    background-clip: padding-box;
    background-image: none;
    border: 1px solid #dadbdd;
    border-radius: 7px;
    color: #606266;
    font-family: -apple-system, "system-ui", Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    min-height: 45px;
    background-color: rgba(150,144,162,.08);
}

.contact_details .contact_form form textarea{
    background-color: rgba(150,144,162,.08);
    min-height: 200px;
}


body {
    top: 0!important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
    display: none !important;
    top: 0 !important;
}



.get_in_touch{}
.get_in_touch .title{
    margin: 20px 0;
}
.get_in_touch .title h2{
    font-weight: 600;
    margin: 0;
}
.get_in_touch ul{}
.get_in_touch ul li{
    font-size: 18px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.get_in_touch ul li a{
    font-weight: 700;
}


#google_translate_element{
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}



footer .footer_box ul li{

}
footer .footer_box ul li{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
footer .footer_box ul li{}
footer .footer_box ul li a{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--blue);
}



/* =============================== Guide Section Change ======================= */

.guide_section {
    /* background-color: #eff6fa; */
    padding: 0 0 0px 0;
}

.guide_section .instruction{}
.guide_section .instruction h3{
    font-size: 40px;
    font-weight: 700;
}
.guide_section .instruction p{
    /* margin: 0; */
    font-size: 16px;
}
.guide_section .instruction h6{
    font-size: 20px;
    font-weight: 800;
}

.guide_container {
    position: relative;
    text-align: center;
    height: 100%;
}

.guide_container .cut h6{
    font-size: 20px;
    font-weight: 800;
}

.guide_section_icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.icon_circle {
    background-color: var(--blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
    z-index: 1;
    left: -4px;
}

.guide_section_icon i,
.guide_section_icon img {
    font-size: 28px;
    color: var(--blue);
    height: 100px;
    width: 100px;
    padding: 10px 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 2px solid var(--blue);
    background-color: white;
}

.cut:hover {
    box-shadow: unset;

}
.cut {
    padding: 75px 35px;
    background-color: white;
    border: 2px solid var(--blue);
    border-radius: 10px;
    text-align: center;
    margin-top: 0px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 40px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: all 0.3s ease;
    height: 100%;
    padding-bottom: 30px;
}

.cut h6 {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 10px;
}

.cut p {
    font-size: 14px;
    color: #333;
}

.cut:hover .icon_circle {
    background-color: #ffd700; /* Change icon circle background color on hover */
    color: var(--blue); /* Change icon circle text color on hover */
}


.free_edu {
    text-align: end;
    position: relative;
    margin: 0 0 40px 0;
}

.free_edu .education_span {
    background: var(--blue);
    padding: 20px 30px 20px 123px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 19px;
}

.edu_div {
    /* position: absolute; */
    top: -89px;
    z-index: 9;
    right: 290px;
}

.edu_div img {
    width: 300px;
}

header nav .header_bar_icon{
    display: none;
}

.guide_section .instruction h6 br{
    display: none;
}
@media only screen and (max-width: 620px) {

    header nav .logo {
    padding: 10px 0;
}

.home_category_section{
    margin-top: 60px;
}

.university_details .video_box .iframe_upper{
    padding: 60% 0 0 0;
}
.university_details .university_content p{
    height: unset;
}
.other_universities{
    margin-top: 40px;
}
.university_details .university_content{
    margin-top: 20px;
}
.home_faq_section .home_faq_section_box .pricing_box_home ul li{
    justify-content: center;
}
.faq_box h4{
    text-align: center;
}
.guide_section .instruction h6 br{
    display: block;
}
.home_faq_section .home_faq_section_box .pricing_box_home .heading h2{
    margin-top: 0;
}
footer{
    padding: 40px 0;
}
.how_to .how_to_boxes .box h4{
    margin-bottom: 5px;
}

.how_to{
    margin-bottom: 30px;
}
.guide_section .instruction{
    text-align: center;
    padding: 0 35px;
}
.guide_section .instruction h3{
    margin-bottom: 0;
}

.banner .home_section .home_content .content p{
    text-align: center;
}
.home_testimonials .testimonial_slider .slider_box p.desc{
    font-size: 16px;
}
.banner .home_section .home_content form button{
    width: 85%;
    display: block;
    margin: 0 auto;
}
.banner .home_section .home_content form input::placeholder{
    text-align: center;
}
.banner .home_section .home_content form input{
    width: 70%;
    display: block;
    margin: 0 auto;
}
.how_to .how_to_boxes .box p{
    line-height: normal;
}
.how_to .how_to_boxes .box i{
    margin-bottom: 10px;
}
.container{
    padding: 0 25px;
}
.guidence_section_content{
    margin: 0!important;
}

.banner .home_section .home_content form{
    margin-top: 20px;
}

.home_category_section .home_category_box .detail{
    text-align: center;
}

.banner .home_section .home_content .content{
    margin-top: 235px;
}

.university_details .image_gallery .gallery-container a{

    width: 80%;
}

   
    header nav ul{
            position: fixed;
            background: #fff;
            right: 0%;
            top: 60px;
            height: 100%;
            flex-direction: column;
            width: 60%;
            transition: all 0.3s ease;
    }

    .home_faq_section .home_faq_section_box .pricing_box_home{
        padding: 5% 5%;
        text-align: center;
    }

    .contact_us_page .banner_section{
        padding: 60px 20px;
    }
     table tr td{
        text-align: left;
        font-size: 16px;
    }
    .sign_up .content p{
        width: 100%;
    }
     header nav ul.none{
        right: -100%;
    }
    header nav ul li a{
        /* width: 65px; */
        padding: 10px;
    }
   

    header nav .logo img {
        height: 40px;
    }

    .banner .home_section .home_content .content h1 {
        margin: 15px 0;
        font-weight: 800;
        font-size: 35px;
        /* background: #ff0000; */
        width: 110%;
        margin-left: -5%;
        padding-left: 20px;
        padding: 8px 25px;
        text-align: center;
        background: rgb(0,61,136);
        background: linear-gradient(90deg, rgb(0 61 136 / 0%) 0%, rgba(255, 0, 0, 1) 30%, rgba(255, 0, 0, 1) 70%, rgb(0 61 136 / 0%) 100%);
    }

    .banner {
        position: relative;
        background: linear-gradient(180deg, rgb(0 61 136) 100%, rgba(232, 137, 26, 0) 90%);
        color: #fff;
        overflow: hidden;
    }
    .edu_div{
        /* top: 50%; */
        /* transform: translateY(-55%); */
        right: unset;
        left: 0%;
        width: 300px;
        display: block;
        margin: 0 auto;
    }
    .home_faq_section .faq_box,
    .home_testimonials .testimonial_slider .slider_box{
        padding: 5% 5%;
    }
    .cut{
        padding-bottom:30px !important;
        margin-top: 100px;
        height: auto;
        padding: 75px 25px 30px 25px;
    }
    .home_category_section .home_category_box{
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .home_category_section .home_category_box .title h4{
        margin-bottom: 20px;
        font-size: 50px;
    }
    .how_to .how_to_boxes{
        padding: 30px 10px 0 10px;
        margin-top: 0px;
    }
    .how_to .how_to_boxes .col-md-4:last-child .box{
        margin-bottom: 0;
    }
    .how_to .how_to_boxes .box{
        margin-bottom: 30px;
    }
    .banner .home_section .home_content {
    margin: 20px 0px 20px 0px;
    position: relative;
    z-index: 2;
}
.free_edu .education_span{
    padding: 20px 30px 20px 60px;
    font-size: 16px;
    display: block;
    width: 95%;
    right: -5%;
}

.banner .home_section .banner_bg{
    bottom: unset;
    height: 60%;
}
    .banner .home_section .home_video video,
    .banner .home_section .home_video img{
        height: 270px;
        max-width: 94%;
        bottom: unset;
        top: 210px;
        right: 3%;
        width: auto;
    }

    .mobile_flip{
        /* flex-direction: column-reverse; */
    }
    .free_edu{
        margin-top: 30px;
        margin-bottom: 0px;
        text-align: center;
    }

    header nav .header_bar_icon{
        display: block;
    }
    header nav .header_bar_icon i{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #eeefff;
    border-radius: 100%;
}

.banner .home_section .home_content .country_language li,
footer .footer_box ul li{
    flex-wrap: wrap;
    gap: 10px 0px;
}

}

@media only screen and (min-width: 600px) and (max-width: 980px)  {

        header nav .logo {
    padding: 10px 0;
}
.banner .home_section .home_video img{
    display: none;
}


   
    header nav ul{
            position: fixed;
            background: #fff;
            left: 0%;
            top: 60px;
            height: 100%;
            flex-direction: column;
            width: 60%;
            transition: all 0.3s ease;
    }

    .sign_up{
            margin: 40px 15px;
    padding: 30px 20px;
    }
    .sign_up .content p{
        width: 70%;
    }

       header nav .header_bar_icon{
        display: block;
    }
    header nav .header_bar_icon i{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #eeefff;
    border-radius: 100%;
}

    header nav ul.none{
        left: -100%;
    }
    header nav ul li a{
        /* width: 65px; */
    }
   

    header nav .logo img {
        height: 40px;
    }


    .free_edu .education_span{
        padding: 20px 30px 20px 40px;
        font-size: 16px;
    }

    .how_to .how_to_boxes .box{
        margin: 20px 0;
    }
    .cut{
        padding: 75px 35px 35px;
        height: auto;
    }
    .banner{
        background: #013e89;
    }
    .edu_div {
    position: absolute;
    top: -44px;
    z-index: 9;
    right: 249px;
    width: 83px;
}

.guidence_section_content{
    margin-bottom: 30px;
}
.home_testimonials .testimonial_slider .slider_box{
    padding: 35px;
}
.home_faq_section .faq_box{
    padding: 20px 30px 20px 0px;
}
}


.guidence_section_content {
    height: 75%;
    margin: 40px 0;
}

figure.wp-block-table{
    overflow: auto;
    margin: 0;
}

#btn-whatsapp-pulse {
                background: #25d366;
                color: white;
                position: fixed;
                bottom: 40px;
                right: 40px;
                font-size: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 0;
                height: 0;
                padding: 35px;
                text-decoration: none;
                border-radius: 50%;
                animation-name: pulse;
                animation-duration: 1.5s;
                animation-timing-function: ease-out;
                animation-iteration-count: infinite;
                z-index: 999;
            }

            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
                }
                80% {
                    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
                }
            }

            #player{
                min-height: 100%;
            }


            .button-animation {
    overflow: hidden;
    position: relative;
    display: inline-block;
    color: var(--bs-white);
    padding: 10px 35px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    background: var(--bs-bright-red);
    border-radius: 6px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}



.button-animation span {
    position: absolute;
    display: block;
    z-index: 1;
}

.button-animation.red span:nth-child(1){
    background: linear-gradient(90deg, transparent, #fff);
}
.button-animation.red span:nth-child(2){
    background: linear-gradient(180deg, transparent, #fff);
}
.button-animation.red span:nth-child(3){
    background: linear-gradient(270deg, transparent, #fff);
}
.button-animation.red span:nth-child(4){
    background: linear-gradient(360deg, transparent, #fff);
}

.button-animation span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000);
    animation: btn-anim1 1s linear infinite;
}



.button-animation span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ff0000);
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}



.button-animation span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #ff0000);
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}



.button-animation span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #ff0000);
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}





@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}


/* Header Section */

.rm_news_lists .col-md-3 {
    padding: 0;
}

.rm_news_lists .news_list_head {}

.rm_news_lists .news_list_head p {
    font-size: 1.1em;
    font-weight: 400;
}

.rm_news_lists .news_list_head p strong {}

.rm_news_lists .news_list_head h1 {
    font-size: 55px;
    font-weight: 700;
}

.rm_news_lists .news_list_head .carousal-btn {
    text-align: center;
    margin: 30px 0 0;
}

.rm_news_lists .news_list_head a {
    display: inline-block;
}

.rm_news_lists .news_list_head h1 span {
    color: #f16136;
}

.rm_news_lists .contact-head {
    background-color: #007bff;
    color: #fff;
    padding: 20px 0;
}

.rm_news_lists .contact-head h2 {
    margin: 0;
    text-align: center;
}

/* News Section */

.rm_news_lists .about-section {
    background-color: #fff;
    padding: 20px 0;
}

.rm_news_lists .news-pera {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
}

.rm_news_lists .update-news-panel {
    background-color: #fff;
    /* border-radius: 5px; */
    overflow: hidden;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    border: 1px solid #d2d2d2;
    margin-top: 20px;
}

.rm_news_lists .update-news-panel a {
    opacity: 1;
    color: #fff;
    -webkit-transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
    -o-transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
    transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
}

.rm_news_lists .update-news-panel img {}

.rm_news_lists .update-news-panel .overlay {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
    -o-transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
    transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
}

.rm_news_lists .update-news-pane img {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
    -o-transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
    transition: opacity .35s cubic-bezier(.645, .045, .355, 1) !important;
}

.rm_news_lists .update-news-panel a {
    color: inherit;
    /* Ensures links do not stand out */
    text-decoration: none;
    /* No underlines for links */
}

.rm_news_lists .news {
    display: flex;
    padding: 15px;
    align-items: center;
    position: relative;
    gap: 20px;
}

.rm_news_lists .news .overlay {
    background-color: rgba(17, 16, 19, .5);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    content: "";
    display: block;
    position: absolute;
    /* opacity: 0; */
    /* visibility: hidden; */
}

.rm_news_lists .news img {
    width: 300px;
    /* opacity: 0; */
    /* visibility: hidden; */
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
}

.rm_news_lists .news-info p i {
    color: #ff0000;
}

.rm_news_lists .news-info {
    flex: 1;
    /* Take the remaining space */
    position: relative;
    z-index: 2;
    color: #000;
}

.rm_news_lists .news-head {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 15px 0;
}

.rm_news_lists .about-news {
    font-size: 14px;
    color: #666;
}

/* Responsive adjustments */

/* General Styling for Single News Page */

.rm_single_news {
    margin: 40px 0;
}

.rm_single_news .top-heading {
    color: #000;
    padding: 10px 0;
    margin: 0 auto;
    margin-bottom: 0 !important;
}

.rm_single_news .top-heading h1 {
    /* text-align: center; */
    font-weight: bold;
    font-size: 29px;
    line-height: normal;
}

.rm_single_news .top-heading ul {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.rm_single_news .top-heading ul li i {
    color: #e95231;
    font-size: 20px;
}

.rm_single_news .top-heading ul li {
    list-style: none;
    color: gray;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 9px;
}

.rm_single_news .top-heading h6 {
    color: gray;
    margin-top: 30px;
    border-left: 4px solid #e95231;
    padding-left: 10px;
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: normal;
}

.rm_single_news .up {
    padding: 20px 0;
}

.rm_single_news .up .col-lg-12.rm_news_lists {
    max-width: unset;
}

.rm_single_news .up .col-lg-12 {
    margin: 0 auto;
}

.rm_single_news .up img {
    /*    height: 420px;*/
    display: block;
    width: 100%;
}

.rm_single_news .recent-content {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}
.rm_single_news .recent-content ul{
    padding-left: 2rem;
        margin-top: 0;
    margin-bottom: 1rem;
}
.rm_single_news .recent-content ul li{
    list-style: disc;
}

.rm_single_news .recent-content img {
    margin: 0 auto;
}

.rm_single_news .recent-content .date {
    display: flex;
    align-items: center;
    color: #333;
}

.rm_single_news .recent-content .date i {
    margin-right: 10px;
}

.rm_single_news .contenttt p a {
    color: blue;
    text-decoration: underline;
}

.rm_single_news .contenttt {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.rm_single_news .contenttt h2 {
    letter-spacing: normal;
}

.rm_single_news .recent-news {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rm_single_news .recent-news:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rm_single_news .news-img {
    padding-right: 10px;
}

.rm_single_news .news-content p {
    margin: 0;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Media Queries for Responsive Layout */

.rm_single_news .news_list_head {
    background: #f8f8f9;
    padding: 30px 0;
    text-align: center;
    margin: 55px 50px 0 50px;
    border-radius: 10px;
}

.rm_single_news .news_list_head p {}

.rm_single_news .news_list_head p strong {}

.rm_single_news .news_list_head h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.rm_single_news .news_list_head h1 span {
    color: #e95231;
}

.rm_single_news .news_list_head .carousal-btn {}

.rm_single_news .news_list_head .carousal-btn a {
    display: inline-block;
}

.table-container {
    margin: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

/* tr:nth-child(even) {
  background-color: #f2f2f2;
} */

tr:hover {
    background-color: #dddddd;
}

.rm_news_lists.single .row {
    flex-direction: column;
}

.rm_news_lists.single {
    position: sticky;
    top: 90px;
}

.rm_single_news .news_ads {
    height: 480px;
    width: 100%;
    background: #d2d2d2;
    border-radius: 20px;
    margin-top: 18px;
}

.rm_single_news .rm_news_lists .update-news-panel {}

.rm_single_news .rm_news_lists .up img {
    height: 100px;
    display: block;
    position: unset;
    width: 100px;
}

.rm_single_news .rm_news_lists .news-info {
    color: #000;
}

.rm_news_lists.single .news img {
    position: unset;
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.rm_single_news .rm_news_lists.single .news {
    height: auto;
}

.rm_single_news .rm_news_lists.single p {
    margin-bottom: 5px;
}

.rm_single_news .rm_news_lists.single .news-head {
    font-size: 16px;
    margin-bottom: 0;
}

.rm_single_news .rm_news_lists .news {
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
    /* height: 300px; */
    gap: 20px;
}
/* ====================== rmApplyNowForm ================== */

.news_list_main .rmApplyNowForm {
    position: sticky;
    top: 90px;
}

.rmApplyNowForm .form_img {
    height: 100%;
    position: relative;
}

.rmApplyNowForm .form_img img {
    /* width: 92%; */
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.rmApplyNowForm .apply_form {
    width: 100%;
    padding: 50px 30px 50px 30px;
    text-align: center;
    height: 100%;
    /* display: grid
; */
    place-content: center;
    border: 1px solid #d2d2d2;
    margin-bottom: 20px;
}

.rmApplyNowForm .apply_form .form_heading {}

.rmApplyNowForm .apply_form .form_heading h4 {
    margin-bottom: 30px;
    color: #0b56a4;
    font-weight: 700;
}

.rmApplyNowForm .apply_form input,
.rmApplyNowForm .apply_form select {
    width: 100%;
    padding: 5px;
    border: unset;
    border-bottom: 2px solid #d2d2d2;
    border-radius: unset;
}

.rmApplyNowForm .apply_form_details {
    position: relative;
    height: 100%;
}

.rmApplyNowForm .apply_form_details .form_bg_image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
}

.rmApplyNowForm .apply_form_details .detail {
    height: 100%;
    position: relative;
    display: grid;
    place-content: center;
    text-align: center;
    background: #004a96c4;
    color: #fff;
    padding: 30px 0;
}

.rmApplyNowForm .apply_form_details .detail img {
    display: block;
    width: 130px;
    margin: 0 auto;
    height: 130px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.rmApplyNowForm .apply_form_details .detail h4 {
    color: #fff;
    margin-top: 20px;
    padding: 0 50px;
}

.rmApplyNowForm .apply_form_details .detail p {
    padding: 0 50px;
}

select:focus-visible,
input:focus-visible {
    outline: unset;
}

.rmApplyNowForm button {
    /* width: 100%; */
    border-radius: 10px;
}
.apply_now_global_button {
    background-color: #ff0000;
    padding: 8px 30px 10px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    border: none;
    outline: none;
}