/* Googlefont Poppins CDN Link */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.cal-sans-regular {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-condensed {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

body {
    min-height: 100vh;
}

ul {
    padding: 0;
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
}

header {
    transition: all 0.5s ease;
    background-color: #fff;
    padding: 10px 0;
}

header.fixedheader {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
}


/*============== Header end ===================*/

.hero-banner {
    padding: 50px 0;
    background-color: #fff0f0;
    position: relative;
}

.hero-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #9d080edb;
    top: 0;
    left: 0;
}

.hero-banner .container {
    position: relative;
}

.hero-banner h2 {
    font-family: "Cal Sans", sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-banner p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffe9b7;
    margin-bottom: 32px;
}

.btn-enquire {
    padding: 9px 25px;
    background: #ffc107;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.btn-enquire:hover {
    background-color: #c70302;
    color: #fff;
}

.contact-page-form {
    background: #ffb300;
    padding: 30px 30px;
    border-radius: 16px;
}

.contact-page-form .form-control {
    border-radius: 0;
    padding: 7px 10px;
    border: none;
    background: #ffffff;
    font-size: 14px;
}

.contact-page-form .form-select {
    border-radius: 0;
    padding: 7px 10px;
    border: none;
    background: #ffffff;
    font-size: 14px;
}

.contact-page-form label {
    font-size: 14px;
}

.contact-page-form label span {
    color: red;
}

.contact-page-form .form-control:focus,
.contact-page-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contact-page-form h4 {
    font-size: 1.5rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.contact-page-form .btn {
    padding: 9px 48px;
    background: #e81010;
    border: none;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.contact-page-form .btn:focus,
.contact-page-form .btn:hover {
    outline: none;
    background: #8f0303;
    box-shadow: none;
}

.courses-section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-family: "Cal Sans", sans-serif;
    font-size: 2.7rem;
    color: #eb1e27;
    margin-bottom: 40px;
    position: relative;
}


/* .section-heading:before {
    content: '';
    position: absolute;
    width: 115px;
    height: 53px;
    background-color: #d02c2230;
    border: 1px solid #c70706;
    z-index: -1;
    margin-left: -3px;
} */

.courses-section .course-details {
    display: flex;
    background: #fff;
    padding: 40px 22px;
    box-shadow: 1px 1px 30px #d1d1d1;
    border-radius: 15px;
    animation-name: fadeInUp;
    transition: all .4s ease-in-out;
    margin: 15px 0;
}

.courses-section .course-details:hover {
    transform: translateY(-4px);
}

.courses-section .course-details .icon {
    margin-right: 15px;
}

.courses-section .course-details .icon i.fa-layer-group {
    padding: 10px 9px;
    border-radius: 50%;
    background-color: #3475ff;
    color: #fff;
    font-size: 23px;
}

.courses-section .course-details .icon i.fa-signal {
    padding: 12px 9px;
    border-radius: 50%;
    background-color: #ff8309;
    color: #fff;
    font-size: 23px;
}

.courses-section .course-details .icon i.fa-users {
    padding: 12px 9px;
    border-radius: 50%;
    background-color: #00c3a6;
    color: #fff;
    font-size: 23px;
}

.courses-section .course-details .inner-content h4 {
    font-family: "Cal Sans", sans-serif;
    font-size: 1.6rem;
    color: #2b2b2b;
}

.courses-section .course-details .inner-content p {
    color: #5a5a5a;
    font-size: 0.9rem;
}

.knowmore-btn {
    background-color: #ffc107;
    text-decoration: none;
    transition: all 0.5s ease;
    color: #000;
    padding: 10px 15px;
    font-size: 13px;
    margin-top: 4px;
    display: inline-block;
    border-radius: 7px;
}

.knowmore-btn:hover {
    background-color: #c70302;
    color: #fff;
}

.counters {
    background: #cb0e0e;
    margin-top: 100px;
    border-radius: 15px;
}

.count {
    font-family: "Cal Sans", sans-serif;
    font-size: 40px;
    font-weight: bold;
}

.text-brown {
    color: #450505;
}

.counter-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.counter-inner {
    position: relative;
    z-index: 2;
}

.count-icon {
    font-size: 3rem;
}

.about-section {
    padding: 50px 0;
    background-color: #fffbed;
}

.about-section h2 {
    font-size: 2.4rem;
    font-family: "Cal Sans", sans-serif;
}

.about-section p {
    font-size: 15px;
}

.why-motion-section {
    padding: 80px 0;
}

.whymotion-slider .why-motion-inner {
    text-align: center;
    padding: 20px 15%;
}

.whymotion-slider .why-motion-inner img {
    width: 300px;
    margin: 0 auto;
}

.whymotion-slider .why-motion-inner p {
    font-size: 16px;
    color: #000;
}

.whymotion-slider .owl-dots {
    text-align: center;
}

.whymotion-slider .owl-dots button {
    background: #b8b8b8;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px;
}

.whymotion-slider .owl-dots button.active {
    background: #b92944;
}

.batch-section {
    padding: 50px 0;
}

.batch-section .nav {
    background: #f6f6f7;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #cecece;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.batch-section .nav li {
    font-size: 19px;
    min-width: 30%;
    text-align: center;
}

.batch-section .nav li .nav-link {
    color: #000;
    font-weight: 600;
    display: block;
    width: 100%;
}

.batch-section .nav li .nav-link.active {
    color: #fff;
    background-color: #e6202a;
}

.batch {
    border: 1px solid #e9e9e9;
    box-shadow: 0 1.75px 10.51px 0 #68686833;
    min-height: 374px;
    width: 345px;
    border-radius: 20px;
    padding: 20px
}

.batch_1 {
    background: url(../images/batch_jee_1.webp) 0 0/cover no-repeat
}

.batch_2 {
    background: url(../images/batch_jee_2.webp) 0 0/cover no-repeat
}

.batch_3 {
    background: url(../images/batch_jee_3.webp) 0 0/cover no-repeat
}

.batch_neet_1 {
    background: url(../images/batch_neet_1.webp) 0 0/cover no-repeat
}

.batch_neet_2 {
    background: url(../images/batch_neet_2.webp) 0 0/cover no-repeat
}

.batch_neet_3 {
    background: url(../images/batch_neet_3.webp) 0 0/cover no-repeat
}

.batch_found_1 {
    background: url(../images/batch_found_1.webp) 0 0/cover no-repeat
}

.batch_found_2 {
    background: url(../images/batch_found_2.webp) 0 0/cover no-repeat
}

.batch_title {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0;
    color: #e6202a;
    font-family: "Cal Sans", sans-serif;
}

.batch_txt {
    font-size: 42.64px;
    line-height: 51.17px;
    letter-spacing: 0;
    color: #2f3068;
    margin-bottom: .5rem
}

.batch_footer_title,
.for_class {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0
}

.for_class {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: #e6202a;
    border-radius: 5px;
    font-family: "Cal Sans", sans-serif;
}

.batch_footer_title,
.batch_footer_txt {
    font-size: 17.04px;
    line-height: 20.45px
}

.batch_footer_title {
    color: #2e2e67
}

.batch_footer_txt,
.btn_explore,
.targeting {
    font-weight: 400;
    letter-spacing: 1%;
    font-family: "Cal Sans", sans-serif;
}

.batch_footer_txt {
    color: #e7232f;
    border: 1.07px solid #2f3068;
    display: inline-block;
    padding: 10px;
    border-radius: 0 20px 0 0;
    margin-bottom: .5rem
}

.targeting {
    font-size: 12.97px;
    line-height: 15.56px;
    color: #e6202a;
    margin-bottom: 2rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
}

.btn_explore {
    background: #e6202a;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    line-height: 15.6px
}

.askTo:hover,
.btn_explore:hover {
    text-decoration: none;
    color: #fff
}

@media (max-width:767px) {
    .batch {
        width: 100%;
        margin: auto;
        min-height: 260px;
        padding: 20px 15px 20px 15px;
    }
    .batch_1,
    .batch_2,
    .batch_3,
    .batch_found_1,
    .batch_neet_2,
    .batch_neet_3,
    .batch_neet_1,
    .batch_found_2 {
        background-size: contain;
        background-position: right;
    }
}

.student-review-section {
    padding: 80px 0;
    background: #ffdddd;
}

.review-slider {
    max-width: 100%;
}

.review-slider .owl-stage {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.review-slider .review-details {
    background: #ffe9a9;
    padding: 20px;
    border-radius: 20px;
    margin: 10px 0;
}

.review-student {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.review-student img {
    width: 100px !important;
    margin-right: 10px;
}

.review-student h4 {
    font-size: 1.3rem;
    font-weight: 400;
    font-family: "Cal Sans", sans-serif;
}

.review-student h5 {
    font-size: 0.8rem;
}

.review-details .d-flex {
    position: absolute;
    top: 30px;
    right: 15px;
    color: #ff9b00;
}

.review-details p {
    font-size: 15px;
    text-align: justify;
}

.review-slider .owl-nav {
    padding-top: 0.4em;
    font-family: "Cal Sans", sans-serif;
    font-size: 0.8em;
}

.review-slider .owl-nav>div {
    padding: 0.4em 1.4em;
    border: 1px solid #333;
    background: #000;
    color: white;
    border-radius: 0.4em;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.2));
    box-shadow: 0.1em 0.1em 0.4em rgba(0, 0, 0, 0.5);
}

.review-slider .owl-nav>div:hover {
    background-color: #333;
}

.review-slider .owl-dots {
    text-align: center;
}

.review-slider .owl-dots .owl-dot {
    background-color: #f5b200;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.review-slider .owl-dots .owl-dot.active {
    background-color: #df292a;
}


/* .review-slider .owl-nav .owl-prev {
    float: left;
}

.review-slider .owl-nav .owl-next {
    float: right;
} */

.student-review-section .inner-content h3 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: "Cal Sans", sans-serif;
}

.student-review-section .inner-content h3 {
    font-size: 2rem;
    font-weight: 600;
}

.result-section {
    padding: 80px 0;
}

.result-section p {
    font-size: 17px;
    margin-bottom: 30px;
}

.result-section .result-slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.result-section .result-slider .owl-dots .owl-dot {
    background-color: #ddd;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.result-section .result-slider .owl-dots .owl-dot.active {
    background-color: #df292a;
}

.section_ten {
    background-color: #fff;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.section_ten .container {
    position: relative;
}

.banner_icon {
    position: absolute;
    right: 130px
}

.mlp_app {
    background: #f31b2b;
    border-radius: 2px 16px;
    font-weight: 700;
    font-size: 40px;
    padding: 20px;
    color: #fff
}

.best_exam {
    font-weight: 800;
    font-size: 36px;
    color: #00205a
}

.jee_neet {
    font-weight: 700;
    font-size: 24px;
    color: #f31b2b
}

.downloadTH {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #2d2d2d
}

.app_slider {
    width: 100%;
    max-width: 300px;
    margin: 0 auto
}

.happY,
.needMore {
    margin-bottom: 2rem
}

.app_slider img {
    width: 100%;
    height: auto;
    display: block
}

footer {
    background-color: #fbcd9f;
    padding: 50px 0 0;
}

footer p {
    font-size: 0.9rem;
    margin: 15px 0;
    color: #000;
    text-align: justify;
}

footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e81010;
    margin-bottom: 15px;
}

footer ul li {
    display: block;
}

footer ul li a {
    color: #000;
    font-size: 15px;
    padding: 10px 10px;
}

footer ul li a:hover {
    color: #ffc107;
}

.footer-contact-details li {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.footer-contact-details li i {
    margin: 8px 5px;
    color: #e81010;
}

.social-icon {
    display: flex;
}

.social-icon li a {
    font-size: 20px;
    transition: all 0.5s ease;
}

.footer-bottom {
    padding: 20px 0 20px;
    text-align: center;
    border-top: 2px solid #fff;
}

.footer-bottom p {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.inner-page-section{
	padding:100px 0;
}

.thank-you-inner {
    text-align: center;
}

.thank-you-inner img {
    width: 200px;
    margin: 30px auto;
}

.thank-you-inner p {
    text-align: center;
}

.thank-you-inner .home-btn {
    background: #ff8401;
    padding: 9px 30px;
    color: #fff;
    font-weight: 600;
    margin: 15px 0;
    transition: all 0.5s ease;
}

.thank-you-inner .home-btn:hover {
    background-color: #06276a;
}

/*========================*/
/*========================*/
/*========================*/
/*========= MTSE CSS ===============*/
/*========================*/
/*========================*/
/*========================*/
/* .mtse_banner_sec{
    padding: 6rem 0;
    background: #fff7f7;
} */

.mtse_banner_sec h1{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.mtse_banner_sec h1 span{
    color: #e81010;
}
.mtse_banner_sec ul{
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.mtse_banner_sec ul li{
    display: inline-block;
}
.mtse_banner_sec ul li i{
    margin-right: 10px;
    font-size: 40px;
    color: #e81010;
    width: 60px;
}
.mtse_banner_sec ul li{
    color: #494a4a;
    font-size: 17px;
    text-align: justify;
}
.mtse_banner_sec ul li span{
    color: #e81010;
}

.mtsebanner-slider .owl-dots {
    text-align: center;
}

.mtsebanner-slider .owl-dots button {
    background: #b8b8b8;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px;
}

.mtsebanner-slider .owl-dots button.active {
    background: #b92944;
}
.register-btn{
    display: block;
    width: 100%;
    background: #e81010;
    border-radius: 20px;
    color: #fff;
    padding: 9px;
    font-weight: 600;
}
.unique_benefits_sec{
    padding: 3rem 0;
    background: #fff;
}
.unique_benefits_sec h2{
    font-size: 1.5rem;
    color:#000;
    margin-bottom: 20px;
}
.uniq_benefit h4{
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    margin: 10px 0;
}
.uniq_benefit p{
    font-size: 1rem;
    color: #494a4a;
    font-weight: 400;
}
.pool_sec{
    padding: 3rem 0;
    background: #fff7f7;
}
.pol{
    background: linear-gradient(359deg, #ffd7d7, #ffffffc4);
    padding: 19px;
    border-radius: 18px;
}
.pol img{
    background: #ffdddd;
    border-radius: 50%;
    padding: 6px;
    margin-bottom: 20px;
}
.pol h4{
    font-weight: 800;
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
}
.pol p{
    font-size: 15px;
    color: #494a4a;
    font-weight: 400;
}
.mile_sec{
    padding: 3rem 0;
    background: #fff;
}
.mile_sec h2{
    font-size: 1.5rem;
    color:#000;
    margin-bottom: 20px;
    text-align: center;
}
.mile{
    background: #fff6f6;
    padding: 30px 23px;
    border-radius: 19px;
    min-height: 100%;
}
.ico{
    
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}
.ico:before{
    position: absolute;
    content:'';
    background: #fde9e9;
    width: 60px;
    height: 60px;
    z-index: 0;
    border-radius: 50%;
    top: -5px;
    left: -5px;
}
.ico img{
    position: relative;
}
.mile h5{
    font-weight: 800;
    font-size: 20px;
    color: #000;
    margin-bottom: 7px;
}
.mile p{
    font-size: 15px;
    color: #494a4a;
    font-weight: 400;
}
.download_sec{
    padding: 3rem 0;
    background: #fff;
}
.download_sec h2{
    font-size: 1.5rem;
    color:#000;
    margin-bottom: 40px;
}
.download_sec a{
    background: #ffe4e4;
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 15px;
    align-items: center;
}
.download_sec a h6{
    color: #000;
    margin: 0;
}
.download_sec a span{
    font-weight: 600;
    color: #e81010;
}
.mtse_faq_sec{
    padding: 3rem 0;
    background: #fff;
}
.mtse_faq_sec h2{
    font-size: 1.5rem;
    color:#000;
    margin-bottom: 40px;
    text-align: center;
}
.accordion-flush .accordion-item{
    margin-bottom: 20px;
    border: none;
}
.accordion-flush  .accordion-header button{
    font-weight: 600;
}
.accordion-flush .accordion-button:focus{
     background: none;
    box-shadow: none;
    border: none;
}
.accordion-flush .accordion-button:not(.collapsed){
    background: none;
    box-shadow: none;
    border: none;
    color: #000;
}
.accordion-flush .accordion-body {
    padding: 1rem 5.25rem;
    font-size: 14px;
}
.mtse_review_sec{
    padding: 3rem 0;
    background: #fff7f7;
}
.mtse_review_sec h2{
    font-size: 1.5rem;
    color:#000;
    margin-bottom: 40px;
}
.mtse_review_sec .review-details{
    background: #fff;
    padding: 60px 20px 20px;
    border-radius: 17px;
    position: relative;
    min-height: 450px;
}
.mtse_review_sec .review-details:before{
    font-family: "Font Awesome 5 Free";
    content: "\f10d";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    position: absolute;
    top: 0;
    font-size: 42px;
    z-index: 1;
    color: #eb1e27;
}

.mtse_review_sec  .review-student img {
    margin-right: 10px;
    border-radius: 50%;
    width: 70px !important;
}

.examprocess_sec{
    padding: 3rem 0;
    background: #fff7f7;
}
.examprocess_sec h2{
    font-size: 1.5rem;
    color:#000;
    margin-bottom: 40px;
}
.examprocess_sec .accordion-item{
    border: none;
    border-bottom: 1px solid #ddd;
    background: none;
}
.examprocess_sec  .accordion-header {
    margin-bottom: 0 !important;
}
.examprocess_sec  .accordion-header button{
    font-weight: 600;
    background: none;
}
.examprocess_sec .accordion-button:focus{
     background: none;
    box-shadow: none;
    border: none;
}
.examprocess_sec .accordion-button:not(.collapsed){
    background: none;
    box-shadow: none;
    border: none;
    color: #000;
}
.hd{
    display: none;
}
.hd.show{
    display: block;
}
#MTSEform .btn-close{
    position: absolute;
    right: 26px;
    top: 30px;
}

.mtse_form {
    background: #ffd5d2;
    padding: 30px 30px;
    border-radius: 16px;
}

.mtse_form .form-control {
    border-radius: 0;
    padding: 7px 10px;
    border: none;
    background: #ffffff;
    font-size: 14px;
}

.mtse_form .form-select {
    border-radius: 0;
    padding: 7px 10px;
    border: none;
    background: #ffffff;
    font-size: 14px;
}

.mtse_form label {
    font-size: 14px;
}

.mtse_form label span {
    color: red;
}

.mtse_form .form-control:focus,
.mtse_form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.mtse_form h4 {
    font-size: 1.5rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.mtse_form .btn {
    padding: 9px 48px;
    background: #e81010;
    border: none;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.mtse_form .btn:focus,
.mtse_form .btn:hover {
    outline: none;
    background: #8f0303;
    box-shadow: none;
}

@media (max-width: 767px) {
    .hero-banner {
        text-align: center;
    }
    .hero-banner h2 {
        text-align: center;
        font-size: 2rem;
    }
    .hero-banner p {
        font-size: 1.2rem;
        text-align: center;
    }
    .courses-section {
        padding: 50px 0;
    }
    .section-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .counters {
        margin-top: 50px;
    }
    .count-icon {
        font-size: 2rem;
    }
    .count {
        font-size: 26px;
    }
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .about-section h2 {
        font-size: 2rem;
    }
    .why-motion-section {
        padding: 50px 0;
    }
    .batch-section .nav {
        justify-content: center;
    }
    .batch-section .nav li {
        font-size: 15px;
        min-width: 28%;
        text-align: center;
    }
    .batch-section .nav li {
        font-size: 15px;
        min-width: 28%;
        text-align: center;
    }
    .student-review-section {
        padding: 50px 0;
    }
    .result-section {
        padding: 50px 0;
    }
    .section_ten {
        padding: 1rem 0rem 2rem;
    }
    .mla {
        text-align: center;
        margin-bottom: 15px;
    }
    .benefits-section h2 {
        font-size: 2rem;
    }
    .benefits .benefits_img h4 {
        margin-bottom: 10px;
        font-size: 1.6rem;
    }
    .benefits ul {
        padding: 0;
    }
}