/* 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;
}

.ck-editor__editable { height:150px !important; }

body {
    min-height: 100vh;
}

ul {
    padding: 0;
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
}

header {
    transition: all 0.5s ease;
}

header.fixedheader {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
}

nav {
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 50px;
}

.navbar .logo { z-index:99; }
section.inner_section {
    padding: 70px 0;
    position: relative;
}
.result-innerpage-section { position: relative; }

.inner_section ul li { list-style: none; }

.rotate-image {
    position: absolute;
    top: 5%;
    left: -150px;
    width: 350px;
    /* height: 120px; */
    margin: -60px 0 0 -60px;
    -webkit-animation: spin 20s linear infinite;
    -moz-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

.rotate-image-2 {
    position: absolute;
    top: 5%;
    right: -200px;
    width: 350px;
    /* height: 120px; */
    margin: -60px 0 0 -60px;
    -webkit-animation: spin 20s linear infinite;
    -moz-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.navbar .logo a {
    font-size: 30px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}


/* .links li:hover .htmlcss-arrow,
.links li:hover .js-arrow .arrow {
    transform: rotate(180deg);
} */

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    color: #000000;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #fcfcfc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    min-width: 180px;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    /* border-bottom: 1px solid rgba(34, 34, 34, 0.1); */
}

.navbar .links li .sub-menu a {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.navbar .links li .sub-menu a:hover {
    color: #eb1e27;
}

.navbar .links li .sub-menu .more-arrow,
.navbar .links li .sub-menu .more-arrow2,
.navbar .links li .sub-menu .more-arrow3 {
    line-height: 40px;
    display: block;
    width: 100%;
}


/* .navbar .links li .htmlCss-more-sub-menu {
    line-height: 40px; 
} */

.navbar .links li .sub-menu .more-sub-menu,
.navbar .links li .sub-menu .more-sub-menu2,
.navbar .links li .sub-menu .more-sub-menu3 {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu,
.links li .sub-menu .more:hover .more-sub-menu2,
.links li .sub-menu .more:hover .more-sub-menu3 {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }
    nav .navbar .logo a {
        font-size: 27px;
    }
    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }
    nav .navbar .links li a {
        font-size: 15px;
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width:800px) {
    nav {
        /* position: relative; */
    }
    nav .navbar {
        padding: 0 10px;
    }
    .navbar .bx-menu {
        display: block;
    }
    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 300px;
        width: 100%;
        background: #ffc107;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
        overflow: scroll;
    }
    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }
    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 30px;
        color: #bb0505;
    }
    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }
    nav .navbar .links li .arrow {
        line-height: 40px;
    }
    nav .navbar .links li {
        display: block;
    }
    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }
    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }
    .navbar .links li .sub-menu .more-sub-menu,
    .navbar .links li .sub-menu .more-sub-menu2,
    .navbar .links li .sub-menu .more-sub-menu3 {
        display: none;
        position: relative;
        left: 0;
    }
    .navbar .links li .sub-menu .more-sub-menu li,
    .navbar .links li .sub-menu .more-sub-menu2 li,
    .navbar .links li .sub-menu .more-sub-menu3 li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    /* .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow .arrow {
        transform: rotate(0deg);
    } */
    .navbar .links li .sub-menu .more-sub-menu,
    .navbar .links li .sub-menu .more-sub-menu2,
    .navbar .links li .sub-menu .more-sub-menu3 {
        display: none;
    }
    .navbar .links li .sub-menu .more span {
        /* background: red; */
        /* display: flex; */
        align-items: center;
        /* justify-content: space-between; */
    }
    .links li .sub-menu .more:hover .more-sub-menu,
    .links li .sub-menu .more:hover .more-sub-menu2,
    .links li .sub-menu .more:hover .more-sub-menu3 {
        display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }
    nav .navbar .links li .js-sub-menu a {
        white-space: break-spaces;
        line-height: 17px;
        padding: 9px 0;
    }
    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu,
    .navbar .nav-links.show4 .links .more .more-sub-menu2,
    .navbar .nav-links.show5 .links .more .more-sub-menu3 {
        display: block;
    }
    .navbar .nav-links.show2 .links .more .more-sub-menu.sub-menu li,
    .navbar .nav-links.show4 .links .more .more-sub-menu2.sub-menu li,
    .navbar .nav-links.show5 .links .more .more-sub-menu3.sub-menu li {
        padding: 0 8px;
    }
    .navbar .nav-links.show2 .links .more .more-sub-menu.sub-menu a,
    .navbar .nav-links.show4 .links .more .more-sub-menu2.sub-menu a,
    .navbar .nav-links.show5 .links .more .more-sub-menu3.sub-menu a {
        white-space: break-spaces;
        line-height: 15px;
        padding: 9px 0;
    }
    /* .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow arrow {
        transform: rotate(180deg);
    }
    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    } */
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}


/*============== Header end ===================*/

.hero-banner {
    padding: 50px 0;
    background-color: #fff0f0;
}

.hero-banner h2 {
    font-family: "Cal Sans", sans-serif;
    font-size: 3rem;
    color: #000;
    margin-bottom: 20px;
}

.hero-banner p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #5f5f5f;
    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: #000;
    color: #fff;
}

.courses-section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-family: "Cal Sans", sans-serif;
    font-size: 2.7rem;
    color: #000;
    margin-bottom: 40px;
    position: relative;
}

.section-heading:before {
    content: '';
    position: absolute;
    width: 115px;
    height: 53px;
    background-color: #edd60930;
    border: 1px solid #ecf23e;
    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: 1rem;
}

.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: #000;
    color: #fff;
}

.counters {
    background: #ffc107;
    margin-top: 100px;
    border-radius: 15px;
}

.count {
    font-family: "Cal Sans", sans-serif;
    font-size: 40px;
    font-weight: bold;
}

.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: #ffc107;
    margin-bottom: 2rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
}

.btn_explore {
    background: #ffc107;
    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: #fffbed;
}

.review-slider {
    max-width: 100%;
}

.review-slider .owl-stage {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.review-slider .review-details {
    background: #ffc107;
    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: #fff;
}

.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: #ddd;
    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: #ffc107;
}

.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: #fff0f0;
    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: #ffc107;
    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: #ffc107;
}

.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 #ffbec3;
}

.footer-bottom p {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}


/*===============================*/


/*===============================*/


/*============== Inner Page Css =================*/


/*===============================*/


/*===============================*/

.innerpage-banner {
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.innerpage-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffc107;
    top: 0;
    left: 0;
}

.innerpage-banner .container {
    position: relative;
}

.innerpage-banner h1 {
    font-size: 2.6rem;
    font-family: "Cal Sans", sans-serif;
    color: #000;
}

.innerpage-banner ul {
    padding: 0;
    margin: 15px 0;
}

.innerpage-banner ul li {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    padding: 0 8px;
    font-weight: 600;
}

.innerpage-banner ul li a {
    position: relative;
    color: #000;
}

.innerpage-banner ul li a:after {
    position: absolute;
    content: '/';
    right: -13px;
}

.benefits-section {
    padding: 30px 0;
}

.benefits-section h2 {
    font-family: "Cal Sans", sans-serif;
    font-size: 2.7rem;
    color: #000;
    margin-bottom: 40px;
    position: relative;
}

.benefits .benefits_img {
    text-align: center;
}

.benefits .benefits_img h4 {
    font-family: "Cal Sans", sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 40px;
    position: relative;
}

.benefits ul {
    padding-left: 30px;
}

.benefits ul li {
    display: flex;
    padding: 10px 0;
    text-align: justify;
}

.benefits ul li i {
    margin-right: 9px;
    color: #ff6507;
    margin-top: 3px;
}

.result-innerpage-section {
    padding: 80px 0;
}

.result-innerpage-section .nav {
    justify-content: center;
}

.result-innerpage-section .nav .nav-link {
    background: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
    color: #000;
    padding: 15px 0px;
    font-weight: 600;
    width: 140px;
    font-size: 1.2rem;
}

.result-innerpage-section .nav .nav-link.active {
    border-color: #d71b26;
    color: #d71b26;
}

.contact-details {
    padding: 80px 0;
}

.contact-details h3 {
    color: #970707;
    font-size: 1.6rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
}

.contact-details .social-icon {
    display: flex;
}

.contact-details .contact-details-list li {
    display: flex;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
}

.contact-details .contact-details-list li i {
    margin-right: 10px;
    margin-top: 6px;
    color: #eb1e27;
}

.contact-details .contact-details-list li a {
    color: #000;
    font-size: 1.1rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
}

.contact-details .social-icon li {
    display: block;
    padding: 10px;
}

.contact-details .social-icon li .fa-facebook-square {
    color: #1f34dd;
    font-size: 30px;
}

.contact-details .social-icon li .fa-linkedin {
    color: #0070ff;
    font-size: 30px;
}

.contact-details .social-icon li .fa-instagram-square {
    color: #d61c3d;
    font-size: 30px;
}

.contact-details .social-icon li .fa-whatsapp-square {
    color: #04a34d;
    font-size: 30px;
}

.contact-page-form {
    background: #ffb300;
    padding: 40px 30px;
    border-radius: 16px;
}

.contact-page-form .form-control {
    border-radius: 0;
    padding: 10px;
    border: none;
    background: #ffffff;
}

.contact-page-form .form-select {
    border-radius: 0;
    padding: 10px;
    border: none;
    background: #ffffff;
}

.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;
}

.contact-page-form .btn {
    padding: 9px 48px;
    background: #ffc107;
    border: none;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.contact-page-form .btn:focus,
.contact-page-form .btn:hover {
    outline: none;
    background: #000;
    box-shadow: none;
}

.innerpage-course {
    padding: 80px 0;
}

.innerpage-course p {
    text-align: justify;
}

.innerpage-course ul {
    padding-left: 0px;
}

.innerpage-course ul li {
    display: block;
    padding: 5px 0;
}

.innerpage-course ol li {
    padding: 5px 0;
}

.innerpage-course h2 {
    font-size: 1.8rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    color: #5d070c;
}

.innerpage-course h3 {
    font-size: 1.5rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    color: #cf0814;
}

.innerpage-course h4 {
    font-size: 1.3rem;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.sticky {
    position: sticky;
    top: 100px;
}

#enquireModal .btn-close {
    position: absolute;
    right: 30px;
    top: 30px;
}


/*----------++++++++++ Classroom css +++++++++-------------*/

.custom_container {
    max-width: 85%;
    margin: 0 auto;
}

.Super_Nurture_Batch {
    background-image: url(../images//1731069901150381.jpg);
    min-height: 300px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 60px 0 100px;
}

.Super_Enthuse_Batch .custom_container,
.Super_Nurture_Batch .custom_container {
    /* display: flex;
    justify-content: space-between; */
    color: #fff;
    align-items: center;
}

.banner_form .form_wrap {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 364px;
    margin-right: 0;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    left: 4rem;
}

.banner_form .form_wrap h3 {
    background-color: #efa902;
    color: #fff;
    padding: 20px;
    font-size: 1.3rem;
}

.banner_form .form {
    padding: 27px;
}

.form input {
    color: #000;
    width: 100%;
    min-height: 52px;
    border-radius: 10px;
    border: 1px solid #f3f1f1;
    padding: 5px 10px;
    outline: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    background-color: #fbfafa;
}

.form select {
    color: #000;
    width: 100%;
    min-height: 52px;
    border-radius: 10px;
    border: 1px solid #f3f1f1;
    padding: 5px 10px;
    outline: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    background-color: #fbfafa;
    position: relative;
    background-image: url(../images/Polygon.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    padding-right: 20px;
    background-size: 13px 7px;
}

.banner_form .form .btn-primary {
    box-shadow: 0 3px 26px #00000014;
    color: #fff;
    width: auto;
    background-color: #b50303;
    min-width: 100px;
    outline: 0;
    border-radius: 11px;
    padding: 10px 25px;
    border: 0;
    float: none;
    margin: 0 auto;
    display: block;
}


/* .fee-table .fee-div {
        flex: 0 0 24.333333%;
        max-width: 24.333333%;
        text-align: center;
    } */

.fee-table .fee-div {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    text-align: center;
}

.fee-table .fee-div .fee-txt {
    min-height: 100px;
}

.mobile_prayas {
    display: none;
}

.fee-txt p {
    font-size: 12px;
    margin-top: 1rem;
}

.fee-txt .year_1 {
    margin-top: 1rem;
}

.fee-table .fee-div .fee-txt {
    font-size: 1.4rem;
    min-height: 125px;
}

@media (min-width: 992px) {
    .form-col1 img {
        display: none;
    }
}

@media (max-width: 991px) {
    .form-col1 img {
        display: inline-block;
    }
}

@media (max-width:767px) {
    .Super_Nurture_Batch {
        background-image: none;
    }
    .mobile_prayas {
        display: block;
    }
    .desktop_prayas {
        display: none;
    }
    .fee-table .fee-div {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
}

.classroom-innersection {
    padding: 80px 0;
}

.title {
    text-align: center;
    margin-bottom: 40px;
}

.title h1 {
    font-size: 40px;
    color: #b50303;
    font-weight: 700;
    padding: 15px;
}

.title p {
    text-align: center;
    font-size: 20px;
    color: #290404;
    line-height: 1.5;
}

.filters {
    width: 100%;
    max-width: 320px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #f8e5e5;
    position: sticky;
    top: 50px;
    height: 100vh;
}

.filters h3 {
    font-size: 25px;
    color: #fff;
    background-color: #b50303;
    padding: 15px 20px;
    margin: 0;
}

.filters .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #efefef;
    box-shadow: none;
}

.filters .accordion-button {
    box-shadow: none;
    font-weight: 600;
}

.filters .accordion-body ul li {
    display: block;
}

.filters .accordion-body ul li a {
    display: block;
    padding: 5px 0 5px 30px;
    margin-bottom: 5px;
    color: #2c2c2c;
    font-weight: 600;
    position: relative;
}

.filters .accordion-body ul li a:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #757575;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.filters .accordion-body ul li a:after {
    content: none;
    position: absolute;
    width: 12px;
    height: 12px;
    background: #b50303;
    border-radius: 50%;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.filters .accordion-body ul li.active a {
    color: #b50303;
}

.filters .accordion-body ul li.active a:before {
    border-color: #b50303;
}

.filters .accordion-body ul li.active a:after {
    content: '';
}

.sticky-div {
    position: sticky;
    top: 100px;
}

.section-tab {
    background: #f9f8f8;
    padding: 10px;
    border-radius: 16px;
}

.section-tab ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    overflow: auto;
}

.section-tab ul li {
    display: block;
    width: 150px;
    text-align: center;
    margin: 5px;
}

.section-tab ul li a {
    color: #684e4e;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid #684e4e36;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px 17px;
}

.section-tab ul li.active a {
    background-color: #efa902;
    border: 0;
    color: #fff;
}

.course-description {
    background: #fffbf2;
    margin-top: 25px;
    padding: 5px 25px;
    border-radius: 15px;
}

.course-description h2 {
    font-size: 25px;
    color: #343a40;
    font-weight: 900;
    margin: 20px 0;
}

.course-description h4 {
    font-size: 25px;
    color: #290404;
    margin: 20px 0;
    font-weight: 700;
}

.course_cards {
    width: 100%;
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.course_cards figure {
    margin: 0 15px 0 0;
}

.course_cards figure img {
    max-width: 65px;
}

.course_cards p {
    margin-bottom: 0;
}

.best_planner {
    position: relative;
    background: url(../images/planner-bg.png) top left no-repeat #b50303;
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
    height: auto;
}

.planner-img1 {
    position: absolute;
    top: 10px;
    left: 10px;
    height: auto;
}

.planner-img2 {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.planner-img3 {
    width: 25%;
    position: absolute;
    top: 100px;
    right: 20px;
}

.planner-sec {
    padding: 1.5rem 0;
    background-image: url(../images/planner-bg.png);
    position: relative;
    z-index: 1;
}

.planner-sec h4 {
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.planner-sec .planner-li {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.planner-sec .planner-li img {
    width: 40px;
    height: 40px;
}

.planner-sec p {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #fff;
}

.planner-sec p span {
    color: #efa902;
    font-weight: 600;
}

.best_planner .button {
    padding-top: 6px;
    padding-bottom: 6px;
    background: #fff;
    color: #b50303;
    font-weight: 700;
    border-radius: 11px;
    padding: 10px 25px;
    border: 0;
}

.best_planner .button img {
    width: 100%;
    max-width: 20px;
    margin: 0 6px 2px 0;
}

.sec-course-payment h2 {
    font-weight: 700;
    padding: 15px;
    color: #343a40;
    font-size: 1.8rem;
}

.fee-card {
    padding: 12px 0 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / .75);
    height: 100%;
}

.fee-card-col {
    padding: 1rem;
}

.fee-data-btn {
    border: 0;
    font-weight: 500;
    color: #fff;
    padding: .6rem;
    margin: 0 0 1rem;
    border-radius: 0 16px 16px 0;
    background-color: #b50303;
    outline: none;
}

.fee-under-section {
    padding: 0 2rem;
    text-align: center;
}

.fee-text1 {
    min-height: 70px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.fee-table {
    display: flex;
    justify-content: space-between;
}

.fee-table .fee-div {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    text-align: center;
}

.fee-table .fee-div .fee-heading {
    background-color: #f08044;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    border: 1px solid #fff;
    padding: .5rem;
    min-height: 75px;
    display: flex;
    font-size: 1.3rem;
}

.fee-table .fee-div .fee-txt {
    font-size: 1.4rem;
    min-height: 125px;
    background-color: #ffd4cc;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    padding: .5rem;
    display: flex;
}

.fee-btn {
    border: 0;
    color: #fff;
    font-weight: 500;
    padding: .6rem 1rem;
    border-radius: 16px;
    background-color: #b50303;
    outline: 0;
}

.fee-btn:hover {
    color: #fff;
}

.inner_content {
    background: #fffbf2;
    margin-top: 25px;
    padding: 5px 25px;
    border-radius: 15px;
}

.batch_d {
    background: #fff;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / .75);
}

.batches_dates {
    padding: 25px 0;
}

.batch_d h4 {
    font-size: 20px;
    color: #290404;
    margin: 0 0;
    font-weight: 700;
}

.batches_dates button,
.custom_discover_btn {
    background-color: #b50303;
    color: #fff;
}

.batches_dates button {
    cursor: default;
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
    padding: .5rem 1rem;
    border-radius: 12px;
}

.inner_content.best_classroom {
    padding-top: 40px !important;
}

.stop_solution .bg_image {
    position: relative;
    margin: 15px 0;
    padding: .5rem 1rem;
    background-color: #b50303;
    border-radius: 16px;
    background-image: url(../images/bg_lines.png);
    background-size: 120%;
    background-position: right;
}

.content1 {
    height: 100%;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content1 h4 {
    font-size: 2rem;
    line-height: 1.5;
    color: #fff !important;
    font-weight: 700;
    font-size: 25px;
    margin: 20px 0;
}

.content1 h4 span {
    font-size: 2rem;
    line-height: 1.5;
    color: #efa902 !important;
    text-transform: none;
    display: inline-block;
}

.bg_image img {
    position: relative;
    bottom: 2.5rem;
}

.best_classroom ul {
    margin-top: 35px;
}

.best_classroom ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.best_classroom ul li img {
    width: 100%;
    max-width: 25px;
}

.best_classroom ul li .list_text {
    padding-left: 18px;
}

.best_classroom ul li .list_text h4 {
    margin: 0 !important;
    color: #b50303 !important;
    font-weight: 700;
}

.best_classroom ul li .list_text p {
    color: #290404;
    margin-top: 10px;
    font-size: 15px;
    padding: 10px 0;
    line-height: 1.5;
    margin: 0;
}

.testimonial_jee_combine_course_detail {
    padding-top: 30px;
}

.background_styling-testimonial_course_detail_page {
    background-color: #fffbf2;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.jee_result_card h3 {
    font-size: 26px;
    color: #c40000;
    font-weight: 700;
}

.slider_content_start_preparation a {
    background-color: #efa902;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
}

.jee_result_testimonial .owl-nav .owl-next {
    border-radius: 50%;
    line-height: 41px;
    color: #fff !important;
    border: 1px solid #b50303 !important;
    background-color: #b50303 !important;
    right: 0px;
    z-index: 2;
    width: 40px;
    font-size: 15px;
    bottom: 9px;
    position: absolute;
    display: inline-block;
    text-align: center;
    height: 40px;
    cursor: pointer;
}

.jee_result_testimonial .owl-nav .owl-prev {
    border-radius: 50%;
    line-height: 41px;
    color: #fff !important;
    border: 1px solid #b50303 !important;
    background-color: #b50303 !important;
    right: 50px;
    z-index: 2;
    width: 40px;
    font-size: 15px;
    bottom: 9px;
    position: absolute;
    display: inline-block;
    text-align: center;
    height: 40px;
    cursor: pointer;
}

.testimonial_course_detail_page_anisha {
    background-color: #fff;
    border-radius: 15px;
    padding-top: 40px;
    padding-bottom: 30px;
    margin: 20px 0;
}

.testimonial_text_head h3 {
    color: #1f173a;
    font-weight: 700;
    text-align: center;
}

.user_details {
    text-align: center;
}

.user_details h3 {
    color: #1f173a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0
}

.user_details span {
    color: #1f173a;
    font-size: 16px;
    opacity: 1;
    margin-bottom: 15px;
    display: block;
}

.user_details_text_dummy p {
    color: #1f173a;
    font-size: 15px;
    opacity: 1;
    text-align: center;
    padding: 10px 20px;
}

.user_details figure img {
    width: 100px !important;
    height: 100px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid coral;
}

.testimonial_course_detail_page_anisha .owl-nav {
    text-align: center;
}

.testimonial_course_detail_page_anisha .owl-nav .owl-next {
    border-radius: 50%;
    line-height: 41px;
    color: #fff !important;
    border: 1px solid #b50303 !important;
    background-color: #b50303 !important;
    z-index: 2;
    width: 40px;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    height: 40px;
    cursor: pointer;
    margin: 5px 10px;
}

.testimonial_course_detail_page_anisha .owl-nav .owl-prev {
    border-radius: 50%;
    line-height: 41px;
    color: #fff !important;
    border: 1px solid #b50303 !important;
    background-color: #b50303 !important;
    z-index: 2;
    width: 40px;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    height: 40px;
    cursor: pointer;
    margin: 5px 10px;
}

.motion_enroll {
    margin: 15px 0;
    border-radius: 15px;
    overflow: hidden;
}

.section_header {
    background-image: url(../images/banner-img.jpg);
    padding: 3.5rem 2rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section_1 {
    padding: 3rem 0;
}

.section_1 h3 {
    font-family: Newsreader;
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-align: center;
    background: radial-gradient(50% 50% at 50% 50%, #ff7212 0, #f55e29 100%);
    color: #fff;
    border-radius: 12px;
    box-shadow: 10px 10px 2px 0 #ffa484;
    padding: 2rem 0;
}

.section_2 {
    padding: 2rem 0;
}

.section_2 h2 {
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    color: #280000;
}

.section_2 p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.01em;
    text-align: left;
}

.section_3 {
    padding: 2rem;
}

.section_3 h2 {
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    color: #280000;
}

.section_3 .feature {
    border: 1px solid #fa9977;
    background: #fef5f2;
    text-align: center;
    padding: 1rem;
    min-height: 260px;
}

.section_3 .feature h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
}

.section_3 .feature p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
}

.section_4 {
    padding: 4rem 2rem;
    background: #fef5f2;
}

.section_4 h2 {
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    color: #280000;
}

.stucture_cont {
    background: #ffeee4;
    padding: 2rem 0;
    margin-top: 4rem;
    width: 60% !important;
}

.structure {
    text-align: center;
    padding: 2rem 1rem;
}

.under_structure img {
    margin-bottom: 2rem;
}

.under_structure h4 {
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 0.01em;
}

.under_structure h5 {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 0;
    text-align: center;
    background: #ffdacd;
    width: 60%;
    margin: auto;
    padding: 10px;
    border-radius: 12px;
}

.under_structure a {
    display: block;
}

.btn_buyt {
    background: linear-gradient(187.41deg, #4bb542 24.26%, #2f8e26 75.61%);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin-top: 3rem;
    color: #fff;
}

.section_5 {
    padding: 4rem 2rem;
}

.section_5 h2 {
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    color: #280000;
}

.subject1,
.subject2 {
    padding: 1rem;
    text-align: center;
}

.subject1 {
    background: linear-gradient(180deg, rgba(255, 226, 216, 0.4) 0, #ffe2d8 100%);
}

.subject_name {
    font-size: 18px;
    line-height: 29px;
    text-align: center;
    margin-top: 3rem;
}

.subject2 {
    background: linear-gradient(180deg, rgba(255, 220, 173, 0.4) 0, #ffdcad 100%);
}

.section_5 .row {
    margin: 0;
}

.class_name {
    box-shadow: 2px 4px 20px 0 #acacac33;
    background-color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
}

.section_6 {
    padding: 2rem 0 4rem;
}

.section_6 h2 {
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    color: #280000;
}

.testimonial_result .item {
    background-color: #fff;
    padding: 2rem;
    margin-right: 2rem;
    box-shadow: 0 0 10px 5px #0000001a;
    margin-top: 1rem;
    margin-bottom: 1rem;
    height: 400px;
    margin-left: 20px;
}

.item_details {
    display: inline-flex;
    width: 100%;
}

.section_6 .testimonial_result img {
    display: block;
    width: 20%;
    border-radius: 50%;
    border: 1px solid #910001;
}

.item_name {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.item_name h4 {
    font-size: 22px;
    line-height: 29px;
    text-align: left;
}

.item_name p {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
    text-align: left;
    color: #797979;
}

.item_content {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-align: justify;
    margin-top: 1rem;
}

.testimonial_result .owl-prev {
    position: absolute;
    top: 50%;
    height: 36px;
    width: 36px;
    margin-top: -18px;
    color: #940001 !important;
    background-color: #fff !important;
    line-height: 36px !important;
    font-size: 18px;
    border: 1px solid #940001 !important;
    z-index: 10;
    left: -10px;
    border-radius: 50%;
}

.testimonial_result .owl-next {
    position: absolute;
    top: 50%;
    height: 36px;
    width: 36px;
    margin-top: -18px;
    color: #940001 !important;
    background-color: #fff !important;
    line-height: 36px !important;
    font-size: 18px;
    border: 1px solid #940001 !important;
    z-index: 10;
    right: -10px;
    border-radius: 50%;
}

.ready_set {
    background: linear-gradient(360deg, #f87319 -15.22%, #fc7748 100%);
    border-radius: 12px;
    position: relative;
    top: 30px;
}

.ready_text_content {
    padding: 4rem 0 0 2rem;
}

.ready_text_content h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 62px;
    color: #fff;
}

.ready_text_content p {
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    color: #fff;
}

.call_now {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    background-color: #b50503 !important;
    padding: 0.5rem 1rem;
    color: #fff;
}

.reg-form {
    background-color: #fff;
    border: 2px solid #bcbcbc;
    box-shadow: 2px 4px 20px 0 #240b3714;
    border-radius: 12px;
    padding: 1rem;
}

.section_header .reg-form h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #2d2d2d;
    padding: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.reg-form .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-sub {
    background-color: #b50503 !important;
    text-align: center !important;
    color: #fff !important;
    padding: 10px;
    display: block;
    width: 100%;
}

.foundation_offline_section_header {
    min-height: 676px;
    background: url(../images/banner_img.jpg) 0 0 / cover no-repeat;
    padding: 4rem 2rem;
}

.foundation_offline_section_1 {
    padding: 2rem;
    position: relative;
}

.foundation_offline_section_1 .container {
    position: relative;
}

.reg_form_group {
    background: #fff;
    border: .1px solid #989898;
    box-shadow: -2px -4px 20px rgba(36, 11, 55, .2), 2px 4px 20px rgba(36, 11, 55, .2);
    border-radius: 8px;
    padding: 1rem;
}

.reg_form_group h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
}

.form label {
    font-size: 14px;
    line-height: 16.8px;
    text-align: left;
    color: #474747;
}

.reg_form_group .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    box-shadow: none;
}

.submit {
    background: linear-gradient(131.77deg, #940001 27.67%, rgba(148, 0, 1, .7) 77.29%);
    border-radius: 8px;
    color: #fff !important;
    display: block;
    width: 100%;
}

.arrow-line {
    position: absolute;
    width: 97%;
    top: 120px;
}

.arrow-line-2 {
    display: none;
}

.foundation_offline_section_1 h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 43.2px;
    letter-spacing: .02em;
    text-align: center;
    margin-bottom: 4rem;
}

.foundation_offline_section_1 .row {
    margin: 0;
}

.enabled_school,
.pro-d {
    text-align: center;
}

.pro-d img {
    height: 150px;
}

.p-details {
    margin-top: 1rem;
}

.p-details h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    letter-spacing: .01em;
    text-align: center;
    color: #000;
}

.p-details p {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: .01em;
    color: #2d2d2d;
    text-align: center;
}

.foundation_offline_section_2 {
    padding: 2rem 0;
}

.foundation_offline_section_2 h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 43.2px;
    letter-spacing: .02em;
    margin-bottom: 6rem;
    text-align: center;
}

.pro-features {
    position: relative;
    box-shadow: 0 2px 12px 0 #8f8f8f1f;
    border: 1px solid #e9e9e9;
    padding: 3rem 1rem;
    height: 140px;
    margin-bottom: 4rem;
}

.pro-features img {
    position: absolute;
    top: -45px;
    width: 35%;
    left: 50%;
    transform: translateX(-50%);
}

.pro-features p {
    margin-bottom: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 26.04px;
    letter-spacing: .01em;
    padding-top: 15px;
}

.foundation_offline_section_3 {
    background-color: #fff6f6;
    padding: 4rem 0;
}

.foundation_offline_section_3 h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 43.2px;
    letter-spacing: .02em;
    text-align: center;
}

.foundation_offline_section_3 p {
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #121212;
    font-size: 16px;
    letter-spacing: .01em;
}

.salient h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    letter-spacing: .01em;
    color: #c41924;
}

.salient ul li {
    font-weight: 500;
    line-height: 31px;
    margin-bottom: 1rem;
    display: block;
}

.support_program {
    border: .4px solid #cdcdcd;
    box-shadow: 1.79px 3.57px 17.87px 0 #6d6d6d33;
    padding: 2rem 1rem;
    border-radius: 10px;
    height: 180px;
    background-color: #fdeeee;
    margin-bottom: 1rem;
}

.support_program h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 28.8px;
    letter-spacing: .04em;
}

.support_program p {
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: .01em;
    margin-bottom: 0;
    text-align: left;
}

.foundation_offline_section_3 table {
    text-align: center;
}

.foundation_offline_section_4 {
    padding: 4rem 0;
}

.foundation_offline_section_4 h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 43.2px;
    letter-spacing: .02em;
    text-align: center;
}

.foundation_offline_section_4 .para {
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}

.foundation_offline_section_4 table {
    text-align: center;
}

.amrit_section_header {
    padding: 4rem 1rem;
}

.amrit {
    font-size: 155px;
    line-height: 150px;
    text-align: left;
    color: #e62d36;
    margin: 0;
    padding: 0;
}

.motion-bharosa {
    background: #323a5e;
    padding: 5px 15px;
    display: inline-block;
    font-size: 27px;
    font-weight: 700;
    line-height: 43.21px;
    letter-spacing: .02em;
    text-align: left;
    color: #fff;
    border-radius: 8px;
}

.header-title-img h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    color: #343a5b;
    padding: 0;
    margin: 1rem 0;
}

.header-title-img h2 span {
    font-size: 30px;
    font-weight: 800;
    text-align: left;
    color: #ec1f27;
}

.price_tag {
    background-color: #ec1f26;
    padding: .5rem;
    display: inline-block;
    border-radius: 12px;
    width: auto;
    border: 1px solid #ec1f26;
}

.price_tag p {
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 0;
    font-weight: 700;
}

.regs-form-main {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.reg-form h2 {
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    font-weight: 700;
}

.amrit_section_2 {
    padding: 3rem 0;
}

.amrit_section_2 h2,
.amrit_section_2 h2 {
    color: #c9141a;
    background: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #c9141a;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-1 {
    position: relative;
}

.benefits-1 img {
    margin-right: 5px;
}

.amrit_section_2 h4 {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.amrit_section_2 p {
    margin-bottom: 2rem;
}

.amrit_section_3 {
    padding: 4rem 0;
    position: relative;
}

.amrit_section_3 h2,
.amrit_section_6 h2,
.amrit_section_7 h2 {
    color: #c9141a;
    background: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #c9141a;
    font-family: Poppins;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;
}

.para3 {
    text-align: center;
    margin-bottom: 3rem;
}

.access_testimonial .owl-nav {
    text-align: center;
}

.access_testimonial .owl-nav .owl-next {
    border-radius: 50%;
    line-height: 41px;
    color: #fff !important;
    border: 1px solid #b50303 !important;
    background-color: #b50303 !important;
    z-index: 2;
    width: 40px;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    height: 40px;
    cursor: pointer;
    margin: 5px 10px;
}

.access_testimonial .owl-nav .owl-prev {
    border-radius: 50%;
    line-height: 41px;
    color: #fff !important;
    border: 1px solid #b50303 !important;
    background-color: #b50303 !important;
    z-index: 2;
    width: 40px;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    height: 40px;
    cursor: pointer;
    margin: 5px 10px;
}

.amit_section_5 {
    padding: 4rem 0
}

.best-place {
    margin-top: 2rem;
}

.amit_section_5 h2 {
    color: #c9141a;
    background: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #c9141a;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.amit_section_5 h4 {
    line-height: 36px;
    font-weight: 700;
}

.amit_section_5 h4,
.amit_section_5 ul li {
    margin-bottom: 2rem;
    text-align: left;
}

.amit_section_5 ul li {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #2d2d2d;
    display: block;
}

.conditions i,
.amit_section_5 ul li span {
    color: #940001;
}

.amit_section_6 {
    padding: 4rem 0
}

.amit_section_6 h2,
.amit_section_7 h2 {
    color: #c9141a;
    background: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #c9141a;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;
}

.conditions,
.policy {
    padding: 2rem 4rem;
    background: #fbf6e5;
    border-radius: 16px;
}

.for-more {
    font-size: 24px;
    text-align: center;
    padding: 2rem 0;
    font-weight: 700;
}

.tabs {
    --outer-padding: 0px;
    --border-radius: 1000px;
    border-radius: 50px;
    --background-offset: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #eee;
    padding: var(--outer-padding);
}

.tabs li {
    text-align: center;
    flex-basis: 50%;
    color: #6d6d6d;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: color .25s cubic-bezier(.4, 0, .2, 1) .1s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

.tabs li button {
    width: 100%;
    display: block;
    color: #6d6d6d;
    font-weight: 500;
    font-size: 1.3rem;
}

.tabs li button.active {
    color: #fff !important;
    text-decoration: none;
    background: #c9141a !important;
    border: 1px solid #c9141a !important;
}

.offered {
    border: 1px solid #ccc;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    background: #fff;
    transition: .5s ease-in-out;
}

.offered h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 31px;
}

.offered h4 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 600;
}

.offered h5 {
    color: #c9141a;
    text-align: center;
}

.buybtn {
    background: linear-gradient(180deg, #4bb542 24.26%, #2f8e26 75.61%);
    color: #fff !important;
    display: block;
    width: 100%;
}

.amrit_section_3 .accordion .accordion-item {
    border: none;
}

.amrit_section_3 .accordion .accordion-item .accordion-button {
    box-shadow: none;
    background: #fff;
    color: #0026ef;
}

.amrit_section_3 .accordion ul li {
    display: block;
    font-size: 14px;
}

.ncrt_practice_section_header {
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.ncrt_practice_section_header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.8;
}

.ncrt_practice_section_header .container-fluid {
    position: relative;
}

.prep {
    font-weight: 700;
    font-style: italic;
    font-size: 25.44px;
    line-height: 35px;
    letter-spacing: 1%;
    color: #1A3986;
    border: 1px solid #D20104;
    padding: 20px 20px;
    border-radius: 8px;
    display: inline-block;
}

.title-bar h1 {
    font-weight: 800;
    font-size: 124.37px;
    line-height: 149.24px;
    letter-spacing: 2%;
    color: #D20104;
    padding: 0;
    margin: 0;
}

.title-bar .para {
    font-weight: 800;
    font-size: 64px;
    line-height: 81px;
    letter-spacing: 3%;
    color: #173A8A;
}

.grab {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.regss-form {
    box-shadow: 2px 4px 20px 0 #240b3733;
    background-color: #fff;
    border: .1px solid #989898;
    border-radius: 12px;
    width: 400px;
    margin: auto;
    padding: 1rem 1rem;
}

.regss-form h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin-bottom: 1rem;
}

.btn-submit {
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #fff !important;
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(0deg, #d40000, #d40000), linear-gradient(180deg, #e60000 0, #bb0101 100%) !important;
}

.ncrt_practice_section_3 {
    padding: 4rem 2rem;
}

.ncrt_practice_section_3 h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 2rem;
    color: #F22A2D;
}

.ncrt_practice_section_3 .para {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2D2D;
    margin-bottom: 2rem;
}

.no_more {
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 2%;
    text-align: center;
    color: #183989;
    border: 1.6px solid #183989;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}

.ncrt_practice_section_1 {
    padding: 4rem 0;
}

.ncrt_practice_section_1 h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 34px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F22A2D;
    margin-bottom: 0rem;
}

.package {
    border: 0.18px solid #BBBBBB;
    box-shadow: 0px 1.75px 10.51px 0px #68686833;
    border-radius: 15px;
    position: relative;
    transition: all .3s ease-in-out;
    min-height: auto;
    margin-bottom: 2rem;
}

.package_footer {
    padding: 10px 12px;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ncert_class {
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1%;
    text-align: center;
    color: #2D2D2D;
}

.page_wise {
    font-weight: 600;
    font-size: 18px;
    line-height: 21.6px;
    letter-spacing: 1%;
    text-align: center;
    color: #3D3D3D;
}

.completed {
    border: 2px solid #183989;
    border-radius: 12px;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 1%;
    color: #183989;
    text-align: center;
}

.o_price {
    font-weight: 900;
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: 0%;
    color: #121212;
}

.btn_explore {
    background: linear-gradient(180deg, #DA0210 0%, #C7000D 100%) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    color: #fff !important;
    text-align: center !important;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    width: 100%;
    display: block;
}

.ncrt_practice_section_1 .nav-pills {
    justify-content: center;
    /* margin: 42px 0; */
    background: #ddd;
    width: auto;
    display: flex;
    max-width: 50%;
    background-color: #F6F6F7;
    border-radius: 5px;
    margin: 2rem auto;
    border: 1px solid #CECECE;
    padding: 10px;
    border-radius: 5px;
}

.ncrt_practice_section_1 .nav-pills .nav-link {
    padding: .5rem 1rem;
    background: inherit;
    outline: 0;
    border: none;
    border-radius: 0px;
    transition: .1s ease-out;
    font-size: 17px;
    color: #000;
}

.ncrt_practice_section_1 .nav-pills .nav-link.active {
    background: #242459 !important;
    box-shadow: 0px 1px 5px 0px #242459;
    border-radius: 5px;
    color: #fff;
}

.ncrt_practice_section_4 {
    padding: 4rem 2rem;
}

.ncrt_practice_section_4 h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 34px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F22A2D;
    margin-bottom: 2rem;
}

.campus_text ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 1rem;
    position: relative;
    display: block;
}

.campus_text ul li::before {
    content: '';
    width: 50px;
    height: 30px;
    position: absolute;
    left: -40px;
    top: 1px;
    display: block;
    background: url(../images/arrow.png) no-repeat;
    background-size: 50%;
}

.ncrt_practice_section_9 {
    padding: 4rem 2rem;
}

.ncrt_practice_section_9 h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 34px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F22A2D;
    margin-bottom: 2rem;
}

.ncrt_practice_section_9 .accordion-item {
    margin: 8px 0;
    border: 1px solid #000;
    border-radius: 12px;
    overflow: hidden;
}

.ncrt_practice_section_9 .accordion-button {
    font-weight: 600;
}

.ncrt_practice_section_9 .accordion-button:not(.collapsed) {
    background: none;
    color: #000;
    box-shadow: none;
}

.cuet_ug_section_header {
    padding: 4rem 2rem 2rem;
    position: relative;
}

.cuet_ug_section_header .title-bar h1 {
    font-size: 89.23px;
    font-weight: 800;
    line-height: 107.08px;
    letter-spacing: 0.04em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #112F6E;
    padding: 0;
    margin: 0;
}

.cuet_ug_section_header .title-bar .prep {
    font-size: 64px;
    font-weight: 700;
    line-height: 76.8px;
    letter-spacing: 0.04em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #112F6E;
    border: none;
    font-style: normal;
}

.cuet_ug_section_header .title-bar .para {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2D2D;
}

.cuet_ug_section_header .for_class {
    background: #D1010E;
    font-size: 24px;
    font-weight: 700;
    line-height: 37px;
    letter-spacing: 0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
    margin-top: 2rem;
}

.cuet_ug_section_3 {
    padding: 4rem 2rem;
}

.cuet_ug_section_3 h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 2rem;
    color: #F22A2D;
}

.cuet_text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2D2D;
}

.cuet_text ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2D2D;
    margin-bottom: 2rem;
    display: block;
}

.youtube-player {
    width: 100%;
    display: block;
    position: relative;
    cursor: pointer;
    max-height: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.yt-thumbnail {
    width: 100%;
    border-radius: 16px;
}

.play-icon {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url(https://cdn.motion.ac.in/ssp/img/mop/play-16.png) no-repeat;
}

.play-icon .wrapper {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-main {
    position: relative;
    display: inline-block;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.waves {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgb(0 0 0 / 69%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    left: 50%;
    top: 50%;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
    transform: translate(-50%, -50%) !important;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.video-main i {
    color: #fff;
}

.cuet_ug_section_1 {
    padding: 4rem 2rem;
}

.cuet_ug_section_1 h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 34px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F22A2D;
    margin-bottom: 0rem;
}

.cuet_ug_section_1 .package {
    border: 0.18px solid #BBBBBB;
    box-shadow: 0px 1.75px 10.51px 0px #68686833;
    border-radius: 15px;
    position: relative;
    transition: all .3s ease-in-out;
    min-height: 430px;
}

.cuet_ug_section_1 .best-seller {
    position: absolute;
    z-index: 2;
    top: -2%;
    left: -14px;
    width: 40%;
}

.cuet_ug_section_1 .package_head {
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #FFBB22 0%, #FBC23B 92.67%);
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 0;
    border-radius: 15px 15px 0px 0;
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 0 85%);
    min-height: 140px;
}

.circle {
    width: 72px;
    height: 72px;
    background: #FFFBF3;
    box-shadow: 0px 4.57px 4.57px 0px #4544442E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.target-1 {
    width: 50px;
    height: 50px;
}

.jee {
    font-size: 32px;
    font-weight: 800;
    line-height: 38.4px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #113686;
    margin-bottom: 0.5rem;
}

.n_batch {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #121212;
}

.package_footer {
    padding: 10px 20px;
    border-radius: 4px;
}

.combi {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #121212;
}

.validTil {
    text-align: left;
}

.validTil span {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: #1B2D68;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    display: inline-block;
}

.price_expore {
    display: flex;
    justify-content: space-between;
}

.o_price {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #121212;
}

.o_price del {
    font-size: 16px;
}

.cuet_ug_section_5 {
    padding: 4rem 2rem;
}

.cuet_ug_section_5 h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 34px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F22A2D;
    margin-bottom: 1rem;
}

.cuet_ug_section_5 .para {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2D2D;
    margin-bottom: 4rem;
}

.benefit {
    position: relative;
    margin-bottom: 2rem;
    box-shadow: 0px 1.75px 10.51px 0px #68686833;
    border: 1px solid #242459;
    border-radius: 8px;
    padding: 10px;
    width: 330px;
    margin: auto;
    margin-bottom: 4rem;
    min-height: 270px;
}

.benefit_img {
    width: 72px;
    height: 72px;
    border: 1px solid #242459;
    background: #242459;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.benefits .live_clas {
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}

.benefits .watch {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2D2D;
    margin-bottom: 0;
}

.benefit-1 {
    width: 50%;
}

.cuet_ug_section_2 {
    padding: 4rem 2rem;
    position: relative;
    background: #FFFAEF;
}

.cuet_ug_section_2 .nv-sir {
    bottom: 0;
    z-index: 2;
    right: 0;
    width: 60%;
    position: absolute;
}

.course_fe_mob,
.feature h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 38px;
    color: #F22A2D;
    margin-bottom: 2rem;
}

.feature ul {
    margin-left: 2rem;
}

.feature ul li {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    position: relative;
    list-style: disc;
    padding: 10px 0;
}

.nv-sir-mob {
    display: none;
}

.section1 {
    padding: 4rem 2rem 2rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
}

.sec1-col1 h1 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 60px;
    color: #fff;
    margin: 1rem 0;
    padding: 0;
}

.sec1-col1 h1 span {
    color: #ffce31;
}

.sec1-col1 p.text-first {
    font-weight: 400;
    font-size: 1rem;
    line-height: 29px;
    color: #fff;
}

.sec-enroll-form {
    padding: 1rem;
    width: 426px;
    margin: 1.5rem auto;
    background: #fff;
    border: 0.1px solid #989898;
    box-shadow: -2px -4px 20px rgba(36, 11, 55, 0.2), 2px 4px 20px rgba(36, 11, 55, 0.2);
    border-radius: 12px;
}

.sec-enroll-form h3,
.sec-enroll-form span {
    font-size: 22.26px;
    line-height: 26.71px;
    color: #2d2d2d;
    text-align: center;
}

.form label {
    font-size: 14px;
    line-height: 16.8px;
    text-align: left;
    color: #474747;
    font-weight: 600;
}

.sec-enroll-form form button {
    width: 100%;
    background: #c41112;
    outline: #c41112 solid 2px;
    border: none;
    padding: 0.4rem 0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    color: #fff !important;
    cursor: pointer;
    border-radius: 24px;
    transition: 0.3s linear;
}

.section2 {
    background: #fffbf5;
    padding: 3rem 0;
}

.section2 .section-title {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section3 {
    background: #fef1e0;
    padding: 3rem 0;
}

.jeemobile {
    display: none;
}

.section7 {
    padding: 4rem 2rem;
    background: linear-gradient(98.19deg, #fbe9e9 -0.58%, rgba(254, 243, 235, 0) 102.22%);
    position: relative;
}

.section7 .nv-sir {
    position: absolute;
    bottom: 0;
    z-index: 2;
    right: 10%;
}

.section7 .vector {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.section7 .nv-sir-mob_1 {
    display: none;
}

.section7 .feature h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 38px;
    color: #c41924;
    margin-bottom: 1rem;
}

.section7 .feature ul {
    margin-left: 2rem;
}

.section7 .feature ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 0.5rem;
    position: relative;
    display: block;
    padding: 5px 0;
}

.feature ul li::before {
    content: url(../images/star-1.png);
    position: absolute;
    left: -34px;
    top: 8px;
}

.section5 {
    background: url(../images/sec5-bg.png) 0 0 / cover #fef1e0;
    padding: 2rem 0;
}

.section5 .section-title {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mobile-mla {
    display: none;
}

.section6 {
    padding: 3rem 15px;
}

.sec6-col2 h2 {
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    font-size: 2rem;
}

.section3 .nav-pills .nav-item:first-child {
    background: #ddd;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.section3 .nav-pills .nav-item:last-child {
    background: #ddd;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.section3 .nav-item .nav-link {
    outline: 0;
    border: none;
    border-radius: 24px;
    transition: 0.1s ease-out;
    background: #ddd;
    padding: 10px 77px;
    color: #000;
}

.section3 .nav-item .nav-link.active {
    background: #b50303 !important;
    color: #fff;
}

.section3 .card {
    border: none;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(152, 152, 152, 0.06), 0 2px 10px rgba(152, 152, 152, 0.12);
    border-radius: 12px;
    width: 19rem;
    margin: 1rem auto;
    padding: 1rem 0;
}

.section3 .card .card-title {
    font-size: 1rem;
    font-weight: 600;
}

.section3 .card .form-group label span {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    margin-left: 5px;
}

.btn-class-view-demo {
    text-decoration: none;
    background: #c41112 !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px !important;
    font-size: 15px;
    margin-left: 10px;
}

.lectures_section_header {
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.shapes1,
.shapes2,
.shapes3,
.shapes4,
.shapes5,
.side-banner {
    position: absolute
}

.side-banner {
    right: 0;
    top: 0;
    width: 30%
}

.shapes4 {
    animation: 7s ease-in-out 1s infinite alternate float2
}

.shapes3 {
    animation: 5s ease-in-out 1s infinite alternate float
}

.shapes1,
.shapes2 {
    animation: 7s ease-in-out 1s infinite alternate float;
    transition: 1s 3s
}

.shapes1 {
    top: 2rem;
    left: 2rem
}

.shapes5 {
    animation: 5s ease-in-out 1s infinite alternate float2;
    top: 2rem;
    left: 7rem
}

.content ul li,
.for_student,
.offered,
.tabs,
.tabs__button {
    position: relative
}

.shapes2 {
    top: 0;
    left: 0
}

.shapes3 {
    top: 2rem;
    left: 40rem
}

.shapes4 {
    top: 4rem;
    left: 45rem
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0) scale(1);
        opacity: .9
    }
    25% {
        transform: translateY(-30px) translateX(10px) rotate(20deg) scale(.8);
        opacity: .9
    }
    50% {
        transform: translateY(15px) translateX(-15px) rotate(10deg) scale(.7);
        opacity: .9
    }
    75% {
        transform: translateY(30px) translateX(20px) rotate(20deg) scale(.75);
        opacity: .9
    }
    100% {
        transform: translateY(-15px) translateX(15px) rotate(0) scale(.75);
        opacity: .9
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0) translateX(0) rotate(0) scale(1);
        opacity: .9
    }
    25% {
        transform: translateY(-30px) translateX(10px) rotate(20deg) scale(.8);
        opacity: .9
    }
    50% {
        transform: translateY(15px) translateX(-15px) rotate(10deg) scale(.7);
        opacity: .9
    }
    75% {
        transform: translateY(30px) translateX(20px) rotate(20deg) scale(.75);
        opacity: .9
    }
    100% {
        transform: translateY(-15px) translateX(15px) rotate(0) scale(.75);
        opacity: .9
    }
}

.lectures_section_header .container-fluid {
    position: relative;
}

.lectures_section_header .title_contain h1 {
    font-weight: 400;
    text-align: left;
    color: #000;
    padding: 0;
    margin: 0;
    font-size: 3.2rem;
}

.lectures_section_header .title_contain {
    padding: 0 4rem
}

.lectures_section_header .for_student p,
.lectures_section_header .package-1 p {
    line-height: 26px;
    letter-spacing: .01em;
    text-align: left
}

.lectures_section_header .title_contain h1 span {
    font-weight: 700;
    text-align: left;
    color: #c41924
}

.lectures_section_header .packages {
    width: 100%;
    margin-left: 3.5rem;
    padding-top: 1rem;
    margin-bottom: 1rem
}

.lectures_section_header .package-1 p {
    background: #1b194b;
    padding: 5px;
    border-radius: 4px;
    font-family: Lato;
    font-size: 16px;
    font-weight: 600;
    color: #fff
}

.lectures_section_header .for_student,
.lectures_section_header .for_student p {
    margin-bottom: 0;
    font-size: 22px;
    padding: 10px 10px 10px 4.6rem
}

.lectures_section_header .for_student p,
.lectures_section_header .regss-form h2,
.lectures_section_header h3 {
    font-weight: 700
}

.lectures_section_header .package-1 i {
    transform: rotate(45deg);
    color: #ffa740
}

.lectures_section_header .for_student p {
    background-color: #ff9301;
    color: #000
}

.lectures_section_header .for_student {
    background-color: #1b194b;
    color: #fff;
    display: inline-block;
    margin-top: 0;
    z-index: 2
}

.lectures_section_header .for_student::after {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #1b194b;
    transform-origin: bottom left;
    -ms-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
    border-radius: 0 5px 0 0
}

.lectures_section_1 {
    padding: 4rem 0;
    text-align: center;
}

.lectures_section_1 h3 {
    font-size: 40px;
    line-height: 48px;
    color: #c41924;
    margin: 0;
    padding-bottom: 2rem;
}

.lectures_section_1 .para {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    padding-bottom: 4rem;
    text-align: center;
}

.lectures_section_1 .main_package_class {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center
}

.lectures_section_1 .about_package {
    border: 1px solid #1b194b;
    padding: 15px;
    border-radius: 12px;
    width: 190px
}

.lectures_section_1 .about_package_last {
    border: 1px solid #a8030d;
    padding: 15px;
    border-radius: 12px;
    width: 190px
}

.lectures_section_1 .about_package p {
    border: 1px dashed #1b194b;
    padding: 15px;
    border-radius: 12px;
    font-weight: 500;
    color: #1b194b;
    font-size: 14px;
}

.lectures_section_1 .about_package_last p {
    border: 1px dashed #a8030d;
    padding: 15px;
    border-radius: 12px;
    color: #a8030d;
    font-weight: 500;
    font-size: 14px;
}

.lectures_section_1 .offered h4 {
    letter-spacing: .01em;
}

.lectures_section_1 .plus {
    font-size: 80px;
    color: #bb0101;
    margin-top: 0;
    transition: 1s;
}

.lectures_section_1 .plus:hover {
    transform: rotate(360deg)
}

.lectures_section_2 {
    padding: 4rem 0rem;
    background-image: url(../images/bg-black.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.lectures_section_2 h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    padding-bottom: 2rem;
    text-align: center;
}

.lectures_section_2 .offered {
    box-shadow: 0 2px 12px 0 #68686833;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    min-height: 360px
}

.lectures_section_2 .buybtn,
.lectures_section_2 .content ul li,
.lectures_section_2 .proceed_btn {
    margin-bottom: 1rem
}

.lectures_section_2 .tab-content>.active {
    display: block !important
}

.lectures_section_2 .yeal-valid {
    background: #4c4f8c;
    padding: 5px 20px;
    border-radius: 0 12px;
    border: none;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0
}

.lectures_section_2 .offered h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 31px
}

.lectures_section_2 .offered h5 {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 0
}

.lectures_section_2 .offered h6 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #c41924
}

.lectures_section_2 .buybtn {
    background: linear-gradient(180deg, #d40000 24.26%, #d40000 75.61%);
    color: #fff !important;
    margin-top: 1rem;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 19px !important;
    letter-spacing: 0 !important
}

.lectures_section_2 .nav-item {
    flex-basis: 50%;
    font-weight: 500;
    font-size: 18px;
    color: #6d6d6d !important;
    cursor: pointer;
    background: #fff;
    transition: color .25s cubic-bezier(.4, 0, .2, 1) .1s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lectures_section_2 .nav-pills .nav-item:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.lectures_section_2 .nav-pills .nav-item:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.lectures_section_2 .nav-item .nav-link {
    width: 100%;
    text-align: center;
    background: #fff;
    color: #000;
    padding: 1rem;
}

.lectures_section_2 .nav-item .nav-link.active {
    color: #c9141a !important;
    text-decoration: none;
    background: #ffe2e2;
    border: 1px solid #c9141a;
}

.lectures_section_3 {
    padding: 4rem 0rem;
    text-align: center;
}

.lectures_section_3 h3 {
    font-size: 40px;
    line-height: 48px;
    color: #c41924;
    margin: 0;
    padding-bottom: 2rem;
}

.gallery-img {
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.modal-img {
    width: 100%;
    border-radius: 10px;
}


/*----------++++++++++ Classroom css end+++++++++-------------*/


/*=======================My New CSS========================*/
.hom-cent-text {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    padding-top: 12px;
    padding-left: 10px;
}
.courses-section .inner-content { margin-bottom:25px; float:left; width:100%;}

.courses-section .inner-content img { float:left; margin-right: 10px;}


/*=================================== responsive ====================================*/

@media (min-width: 1399px) {
    .section_header {
        padding: 14rem 2rem 4rem;
    }
}

@media (max-width:992px) {
    .Super_Nurture_Batch {
        background: none !important;
        padding: 0;
    }
    .custom_container {
        max-width: 100%;
        padding: 0 15px;
    }
    .banner_form .form_wrap {
        margin: 15px auto;
        left: auto;
        border: 1px solid #efa902;
    }
}

@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;
    }
    .planner-sec p {
        font-size: 1rem;
    }
    .best_planner .button {
        font-size: 13px;
    }
    .fee-table {
        flex-direction: column;
    }
    .fee-table .fee-div {
        max-width: 100%;
    }
    .batch-btn {
        margin-top: 10px;
        text-align: center;
    }
    .batches_dates button {
        margin: 0 auto;
    }
    .section_1 {
        padding: 2rem 0;
    }
    .section_1 h3 {
        font-size: 18px;
    }
    .section_2 h2 {
        font-size: 25px;
        line-height: 30px;
    }
    .section_2 p {
        text-align: center;
        font-size: 14px;
        line-height: 20px;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .section_3 {
        padding: 0;
    }
    .section_3 h2 {
        font-size: 28px;
    }
    .section_3 .feature {
        padding: 0.3rem;
        min-height: 215px;
    }
    .section_3 .feature h3 {
        font-size: 15px;
        line-height: 19px;
    }
    .section_3 .feature p {
        font-size: 12px;
        line-height: 17px;
    }
    .section_4 h2 {
        font-size: 28px;
    }
    .stucture_cont {
        padding: 2rem 0;
        margin-top: 1rem;
        width: 100% !important;
    }
    .under_structure h5 {
        font-size: 23px;
        width: 70%;
    }
    .section_5 {
        padding: 3rem 0rem 0px;
    }
    .section_5 h2 {
        font-size: 28px;
        line-height: 35px;
        padding: 0 20px;
    }
    .section_6 {
        padding: 2rem 0 2rem;
    }
    .section_6 h2 {
        font-size: 28px;
        line-height: 35px;
        padding: 0 20px;
    }
    .testimonial_result .item {
        height: auto;
    }
    .item_details {
        justify-content: center;
        align-items: center;
    }
    .section_6 .testimonial_result img {
        display: block;
        width: 20%;
        height: auto;
    }
    .item_name h4 {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 2px;
    }
    .item_content {
        font-size: 13px;
        line-height: 20px;
    }
    .section_7 {
        padding: 1rem;
    }
    .ready_text_content {
        padding: 2rem 0 0 2rem;
    }
    .ready_text_content h3 {
        font-size: 28px;
        line-height: 34px;
    }
    .ready_text_content p {
        font-size: 18px;
        line-height: 24px;
    }
    .section_header {
        background: center #9a121c;
        padding: 0 0 2rem;
        position: relative;
        z-index: 3;
    }
    .foundation_offline_section_header {
        background: url(../images/mobile_banner_img.jpg) 0 0 / contain no-repeat #fdd900;
        padding: 4rem 0rem;
    }
    .reg_form_group {
        margin-top: 23rem;
    }
    .arrow-line {
        display: none;
    }
    .arrow-line-2 {
        display: block;
        position: absolute;
        top: 94px;
        right: 88px;
    }
    .foundation_offline_section_1 h3,
    .foundation_offline_section_2 h3,
    .foundation_offline_section_3 h3,
    .foundation_offline_section_4 h3 {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    .p-details h4 {
        font-size: 23px;
        line-height: 22.6px;
    }
    .amrit {
        font-size: 100px;
        line-height: 100px;
    }
    .regs-form-main {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        margin-top: 15px;
    }
    .ncrt_practice_section_header {
        padding: 4rem 0 2rem;
    }
    .prep {
        font-size: 18.44px;
        line-height: 23px;
    }
    .title-bar h1 {
        font-size: 81.37px;
        line-height: 87.24px;
    }
    .title-bar .para {
        font-size: 27px;
        line-height: 31px;
    }
    .grab {
        font-size: 15px;
        line-height: 23px;
    }
    .regss-form {
        width: auto;
    }
    .ncrt_practice_section_1 {
        padding: 4rem 1rem;
    }
    .ncrt_practice_section_3 {
        padding: 4rem 0rem 0px;
    }
    .ncrt_practice_section_9 {
        padding: 4rem 0rem 0px;
    }
    .ncrt_practice_section_3 h3 {
        font-size: 28px;
        line-height: 31px;
    }
    .ncrt_practice_section_4 h3 {
        font-size: 28px;
        line-height: 31px;
    }
    .ncrt_practice_section_9 h3 {
        font-size: 28px;
        line-height: 31px;
    }
    .ncrt_practice_section_1 .nav-pills {
        overflow: auto;
        flex-direction: row;
        max-width: 100%;
    }
    .cuet_ug_section_header {
        padding: 4rem 0;
    }
    .cuet_ug_section_header .title-bar h1 {
        font-size: 44.23px;
        line-height: 47.08px;
    }
    .cuet_ug_section_header .title-bar .prep {
        font-size: 38px;
        line-height: 40.8px;
        padding: 5px 0;
    }
    .cuet_ug_section_3,
    .cuet_ug_section_1,
    .cuet_ug_section_5,
    .cuet_ug_section_2 {
        padding: 3rem 1rem;
    }
    .cuet_ug_section_3 h3,
    .cuet_ug_section_1 h3,
    .cuet_ug_section_5 h3,
    .cuet_ug_section_2 h3 {
        font-size: 28px;
        line-height: 32px;
    }
    .section1 {
        padding: 4rem 0 2rem;
    }
    .section1 .title-bar h1 {
        font-size: 39.37px;
        line-height: 43.24px;
    }
    .sec-enroll-form {
        width: auto;
    }
    .section3 .nav-item .nav-link {
        padding: 10px 54px;
    }
    .section7 {
        padding: 4rem 0 0;
    }
    .section7 .nv-sir,
    .section7 .vector {
        display: none;
    }
    .section7 .nv-sir-mob_1 {
        display: block;
        max-width: 100%;
        width: 100%;
    }
    .lectures_section_header .title_contain {
        padding: 0 1rem;
    }
    .lectures_section_header .packages {
        margin-left: 0;
    }
    .lectures_section_1 .main_package_class {
        flex-direction: column;
    }
    .lectures_section_header .for_student,
    .lectures_section_header .for_student p {
        padding: 10px 10px 10px 0.6rem;
    }
    .lectures_section_3 h3 {
        font-size: 27px;
        line-height: 32px;
    }
}