:root {
    --blue: #4286EF;
    --white: #fff;
    --black: #000;
    --menu: #3D484D;
    --light-blue: #4286EF;
    --red: rgba(236, 95, 95, 0.05);
    --red-bg: #EC5F5F;
    --grey-bg: #C2C9CC;
    --yellow: #F0AD49;
    --green: #3DE07F;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 30px;
    /* transition: all .2s linear; */
}

html {
    scroll-behavior: smooth;
}


body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--black);
}

a:hover {
    color: var(--black);

}

p {
    line-height: 30px;
    margin: 0;
}

ul {
    margin: auto;
    padding: auto;
}

.shadow {
    box-shadow: 0px 6px 20px rgba(29, 82, 163, 0.12) !important;
}


/* navigation starts  */

.navigation {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    background-color: var(--white);
}

.navigation .login {
    font-size: 20px;
}

.navigation .login a {
    color: #000 !important;
}

.navigation .account-form {
    position: fixed;
    top: 0;
    right: -105%;
    width: 35rem;
    background: #fff;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
    gap: 2rem;
    justify-content: center;
    height: 100%;
    z-index: 1200;
    padding: 2rem;
    text-align: center;
}

.navigation .account-form.active {
    right: 0;
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
}

.navigation .account-form #close-form {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-size: 4rem;
    cursor: pointer;
    color: #444;
}

.navigation .account-form #close-form:hover {
    transform: rotate(90deg);
}

.navigation .account-form form {
    border: 0.1rem solid var(--blue);
    padding: 2rem;
    display: none;
}

.navigation .account-form form.active {
    display: block;
}

.navigation .account-form form h3 {
    font-size: 2.5rem;
    text-transform: capitalize;
    color: #444;
    padding-bottom: .5rem;
    text-transform: uppercase;
}

.navigation .account-form form .box {
    width: 100%;
    padding: 1.2rem 1.4rem;
    border: 0.1rem solid var(--blue);
    font-size: 1.6rem;
    margin: .7rem 0;
}

.navigation .account-form form .flex {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.navigation .account-form form .flex label {
    font-size: 1.5rem;
    color: #777;
    cursor: pointer;
}

.navigation .account-form form .flex a {
    font-size: 1.5rem;
    color: #777;
    margin-left: auto;
}

.navigation .account-form form .flex a:hover {
    text-decoration: underline;
    color: var(--blue);
}

.navigation .account-form form .btn {
    width: 100%;
}

.navigation .account-form .buttons .btn {
    margin: 0 .5rem;
}

.navigation .account-form .buttons .btn.active {
    background: var(--blue);
    color: var(--white);
}


.navigation .header {
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 3%;
}

.navigation .navbar ul {
    padding: 0;
}

.navigation .navbar ul li {
    display: inline-block;
    margin: 0 .5rem;
    text-decoration: none;
    text-transform: uppercase;
}

.navigation .navbar ul li a {
    font-weight: 600;
    font-size: 15px;
    padding: 10px;
    color: var(--menu) !important;
}

.navigation .header .btn {
    margin-top: 0;
}

.navigation .login .btn {
    padding: .5rem 1.5rem;
    margin: 5px;
}

.navigation .btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    color: #369abd;
    border: 0.2rem solid #369abd;
    border-radius: 1rem;
    cursor: pointer;
    background: none;
}


.navigation .navbar-brand {
    padding: 20px 10px;
    margin: 0;
}

.navigation .navbar-brand img {
    width: 60px;
}

.navigation .after-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    padding: 5px 20px;
    border-radius: 10px;
    margin-right: 15px;
}

.pre-btn {
    border: 2px solid var(--blue);
    color: var(--light-blue);
    background: var(--white);
}

.next-btn {
    border: 2px solid var(--blue);
    background: var(--blue);
    color: var(--white);
}

.navbar .dropdown-menu-end[data-bs-popper] {
    right: -75px;
    top: 45px;
}

.nav-user2 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background-color: var(--blue);
    cursor: pointer;
}

.nav-user img {
    max-width: 100%;
    max-height: 100%;
    padding: 7px 10px;
}

.nav-user a.dropdown-toggle {
    padding: 0 10px;
}

.nav-user .dropdown-menu {
    right: 10px !important;
    top: 20px !important;
}

.nav-user .dropdown-item-icon img {
    height: auto;
    width: auto;
    padding: 0 10px;
}

.nav-notif2 a {
    padding: 0 20px 0 0;
}

.nav-user {
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    ;
    padding-left: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading img {
    margin-right: 10px;
}

.nav-notif2 {
    position: relative;
}


.notif-dropdown {
    display: none;
    position: absolute;
    top: 45px;
    right: -10px;
    width: 300px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 10px 15px 0px rgba(29, 82, 163, 0.15);
    border: none;
}

.notif-dropdown h5 {
    margin: 0;
    padding-top: 10px;
}

.notif-dropdown p:first-of-type,
.notif-dropdown p:nth-of-type(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 5px;
}

.pro-user {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background-color: var(--blue);
    cursor: pointer;
    display: none;
}

.pro-user img {
    max-width: 100%;
    max-height: 100%;
    padding: 7px 10px;
}

#menu-btn {
    display: none;
}


/* footer  */

.footer {
    display: none;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);

}


.footer .navbar2 ul {
    margin: 15px 0;
}


/* Css for content  */

/* After login starts */

#acc-del {
    margin-top: 125px;
    margin-bottom: 30px;
}


.acc-del h2 {
    font-weight: 400;
    text-align: center;
    font-size: 35px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 0 0 40px 0px;
    margin-top: 5px;
}

.acc-del .warn {
    /* text-align: center; */
    /* background: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-del .warn p {
    color: var(--red-bg);
    background-color: rgba(236, 95, 95, 0.12);
    padding: 10px;
    border-radius: 10px 15px;
    text-align: center;
}

.acc-del .warn p img {
    margin-right: 5px;
}

.acc-del h2 span {
    color: #4286EF;
    font-size: 35px;
}

.acc-del h2 .head-name {
    color: var(--black);
}

.acc-del .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acc-del .box {
    background: #fff;
    padding: 18px;
    box-shadow: 0px 8px 20px rgba(38, 98, 192, 0.12);
    border-radius: 10px;

}

.acc-del .box img {
    height: 65px;
    width: 65px;
    padding: 13px 10px;
    border-radius: 15px;
}

.acc-del .box .img {
    width: 65px;
}

.acc-del .box .image-box1 {
    background-color: rgba(159, 193, 247, 0.22);
    align-items: center;
    border-radius: 13.6875px;
}

.acc-del .box .image-box2 {
    background-color: rgba(236, 186, 47, 0.2);
    align-items: center;
    border-radius: 13.6875px;
}

.acc-del .box .image-box3 {
    background-color: rgba(147, 202, 236, 0.2);
    align-items: center;
    border-radius: 13.6875px;
}

.acc-del .box .image-box4 {
    background-color: rgb(245 234 228);
    align-items: center;
    border-radius: 13.6875px;
}

.acc-del .box .image-box5 {
    background-color: rgba(118, 233, 180, 0.2);
    align-items: center;
    border-radius: 13.6875px;
}

.acc-del .box .image-box6 {
    background-color: rgba(110, 162, 242, 0.22);
    align-items: center;
    border-radius: 13.6875px;
}

.acc-del .box .image-box7 {
    background-color: #FFF6F1;
    align-items: center;
    border-radius: 13.6875px;
}


.acc-del .box .image-box6 img {
    padding: 8px 16px;
}

.acc-del .box .content {
    height: 6rem;
    margin-top: 25px;
}

.acc-del .box .content h4 {
    font-weight: 600;
    font-size: 20px;
}

#acc-del2 {
    margin-top: 110px;
    margin-bottom: 85px;
}

#acc-del2 .play img {
    margin-right: 10px;
}

#acc-del2 .play p {
    font-size: 30px;
    font-weight: 600;
}

#acc-del2 h2 {
    font-weight: 400;
    text-align: left;
    color: #4286EF;
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 0 0 20px 0px;
    margin-top: 5px;
}

#acc-del2 h2 span {
    color: rgba(125, 34, 31, 1);
    font-size: 35px;
    border-bottom: 2px solid rgba(125, 34, 31, 1);
}


/* after login ends  */

/* courses starts  */


#mycourses {
    margin-top: 120px;
    margin-bottom: 30px;
}


h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

h2 i {
    font-size: 45px;
    margin-right: 10px;
    color: rgba(103, 95, 101, 1);
}

.mycourses h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.mycourses .box {
    box-shadow: 0px 6px 20px rgba(29, 82, 163, 0.12);
    border-radius: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.mycourses .box1 {
    background: #fff;
    padding: 18px;
    display: flex;
    border-radius: 16px;
}

.mycourses .vdo {
    height: 85px;
    width: 85px;

}

.mycourses .vdo video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.mycourses .vdo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.mycourses .box .content {
    padding-left: 20px;
}

.mycourses .box h6 {
    font-weight: bold;
    padding: 5px 0px;
}

.mycourses .box .content p {
    font-size: 14px;
    padding-top: 10px;
    margin-bottom: 5px;
}

.mycourses .box .content .bar {
    height: 5px;
    width: 400px;
    background: #dce4e5;
    border-radius: 9999px;
    overflow: hidden;
}

.mycourses .box .box2 {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}



.mycourses .box .exit-btn {
    background: none;
    border: none;
    color: blue;
}

.mycourses .box .go-btn {
    background: blue;
    border: none;
    color: #fff;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: bold;
}

.completed-bar {
    color: rgba(61, 224, 127, 1);
}

/* courses ends  */

/* fees starts */

#myfees {
    margin-top: 120px;
    margin-bottom: 30px;
}


.myfees h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.myfees h2 i {
    font-size: 45px;
    margin-right: 10px;
    color: rgba(103, 95, 101, 1);
}

.myfees .box {
    box-shadow: 0px 6px 20px rgba(29, 82, 163, 0.12);
    border-radius: 16px;
    height: 150px;
    margin: 30px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
}

.myfees .box span {
    font-size: 32px;
    margin-left: 10px;
    font-weight: 600;
}

.table>:not(caption)>*>* {
    border-bottom-width: 0px !important;
}

thead {
    border-radius: 16px;
}

th {
    padding: 20px !important;
}

td {
    padding: 40px 30px !important;
}


tbody,
td,
tfoot,
th,
thead,
tr {
    vertical-align: middle;
}

.td-fee {
    color: rgba(66, 134, 239, 1);
}

.td-amt {
    color: rgba(240, 173, 73, 1);
}

.td-paid {
    color: rgba(61, 224, 127, 1);
}

.td-btn-paid button {
    border: none;
    color: var(--white);
    background: var(--grey-bg);
    border-radius: 8px;
}


.td-btn-notpaid button {
    border: none;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
}

.td-notpaid {
    color: rgba(236, 95, 95, 1);
}

.arrow {
    border: solid #4286EF;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 2px;
    margin-left: 4px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


/* fees ends  */

/* how to refer  */

#referral-form {
    margin-top: 90px;
    margin-bottom: 30px;
}


.referral-form .first-part .box {
    text-align: center;
    margin: 50px 0;
}


.referral-form .middle-part .box {
    margin: 20px;
}


.referral-form .middle-part .box div {
    font-weight: bold;
    margin: 8px 0;
}


.referral-form .middle-part .box .input-field {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 10px !important;
    border: 1px solid #c9c9b6;
}

.referral-form .last-part .box {
    text-align: center;
    margin: 50px 0;
}


.referral-form .last-part .submit-btn {
    border: none;
    color: #fff;
    background-color: #4286EF;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    width: 35%;
}


.referral-form .last-part .see-ref a {
    color: #4286EF;
}

/* how to refer ends  */

/* your referral starts  */

#myreferral {
    margin-top: 90px;
    margin-bottom: 30px;
}

.myreferral .first-part .box {
    margin: 50px 0 0 0;
}

.myreferral p {
    text-align: justify;
    padding: 20px 0;
}


.myreferral .middle-part .box .input-field {
    width: 50%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 10px !important;
    border: 1px solid #c9c9b6;
}


.myreferral .middle-part .ref-btn {
    border: none;
    color: #fff;
    background-color: #F0AD49;
    border-radius: 16px;
    width: 50%;
    padding: 13px;
    font-weight: bold;
}

.myreferral .middle-part .box.right {
    text-align: right;
}

.myreferral .middle-part {
    margin-bottom: 40px;
}

.mob {
    color: #4286EF;
}

.date {
    color: #F0AD49;
}

/* your referral ends  */

/* claims starts  */



#claims {
    margin-top: 90px;
    margin-bottom: 30px;
}

.claims .first-part .box {
    margin: 40px 0 20px;
}


.claims .middle-part .box {
    margin: 20px;
}


.claims .middle-part {
    box-shadow: 0px 8px 20px rgba(38, 98, 192, 0.20);
    border-radius: 16px;
    margin-top: 20px;
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}


.claims .middle-part .box div {
    font-size: 30px;
    font-weight: 600;
}

.claims .middle-part2 .box .input-field {
    width: 50%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 10px !important;
    border: 1px solid #c9c9b6;
}


.claims .middle-part2 .ref-btn {
    border: none;
    color: #fff;
    background-color: #F0AD49;
    border-radius: 10px;
    padding: 13px;
    font-weight: bold;
    width: 50%;
}


.claims .middle-part2 .box.right {
    text-align: right;
}

.claims .row.middle-part2 {
    margin-bottom: 50px;
}

.date {
    color: #F0AD49;
}


.td-fee {
    color: rgba(66, 134, 239, 1);
}

.td-amt {
    color: rgba(240, 173, 73, 1);
}

.td-paid {
    color: rgba(61, 224, 127, 1);
}

.td-notpaid {
    color: rgba(236, 95, 95, 1);
}


/* claims ends  */


/* exams starts  */

#exams {
    margin-top: 92px;
    margin-bottom: 30px;
}

.exams .first-part .box {
    margin: 25px 0;
}


.exams h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 32px;
}

.exams h3 i {
    font-size: 50px;
    margin-right: 10px;
    color: rgba(103, 95, 101, 1);
}


.exams .first-part h2 {
    margin-bottom: 20px;
}


.exams .first-part h6 {
    font-weight: 600;
    text-align: justify;
}


.exams .first-part h5 {
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 25px;
}


.exams .first-part p {
    margin-bottom: 10px;
}


.exams .startquiz-btn {
    border: none;
    color: #fff;
    background-color: #4286EF;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 30%;
}


/* exams ends  */

/* exam-qus start */

#exam-qus {
    margin-top: 92px;
    margin-bottom: 30px;
}

.exam-qus .first-part .box {
    margin-top: 25px;
}


.exam-qus .first-part h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 32px;
}

.exam-qus .first-part h3 i {
    font-size: 50px;
    margin-right: 10px;
    color: rgba(103, 95, 101, 1);
}

.exam-qus .first-part p {
    text-align: center;
}


.exam-qus .mid-part h5 {
    font-weight: 600;
}


.exam-qus .mid-part .time-btn {
    color: #fff;
    border: none;
    background: #F0AD49;
    padding: 10px 24px;
    border-radius: 12px;
}


.exam-qus .mid-part .time-btn i {
    margin-right: 7px;
}


.exam-qus .mid-part .box2 {
    text-align: center;
}


.exam-qus .last-part div {
    padding: 10px 3px;
}

.exam-qus .last-part .select i {
    color: #4286EF;
}

.exam-qus .last-part i {
    margin-right: 7px;
}

.exam-qus .last-part button {
    border: none;
    padding: 10px;
    border-radius: 10px;
    margin-right: 5px;
    margin-top: 25px;
    width: 47%;
}


.exam-qus .last-part .pre-btn {
    border: 2px solid #4286EF;
    color: #4286EF;
    background: #fff;
}


.exam-qus .last-part .next-btn {
    border: 2px solid #4286EF;
    background: #4286EF;
    color: #fff;
}
.exam-qus .last-part .finish-btn {
    border: 2px solid #F0AD49;
    background: #F0AD49;
    color: #fff;
}
/* exam-qus ends  */

/* referral starts  */


#referral {
    margin-top: 92px;
    margin-bottom: 30px;
}


.referral .first-part .box {

    border-radius: 24px;
    padding: 20px;
    height: 180px;
    margin: 30px 5px 50px 5px;
    display: flex;
    justify-content: space-between;
    ;
    align-items: center;
    font-size: 19px;
}

.referral .first-part i {
    color: #fff;
}

.referral .first-part i.fa-solid.fa-users {
    background-color: rgb(26 104 219);
}

.referral .first-part .box .content {
    color: #fff;
    font-weight: 600;
    margin-top: 30px;
}

.referral .first-part .left i {
    font-size: 26px;
    padding: 15px;
    text-align: center;
    width: 40%;
    border-radius: 10px;
}

.referral .first-part i.fa-solid.fa-indian-rupee-sign {
    background-color: rgb(223 147 35);
}

.referral .first-part i.fa-solid.fa-building-columns {
    background-color: rgb(75 165 221);
}

.referral .middle-part {
    background: rgba(66, 134, 239, 0.08);
    border-radius: 24px;
    padding: 35px;

}

.referral .middle-part .left {
    padding: 30px 0;
}

.referral .middle-part .left .ref {
    padding: 25px 0;
}

.referral .middle-part .right {
    display: flex;
    justify-content: center;
    align-items: center;
}


.referral .middle-part .left .ref div {
    margin-bottom: 15px;
}


.referral .middle-part .left .input-field {
    width: 70%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 10px !important;
    border: 1px solid #c9c9b6;
}


.referral .middle-part .left .copy-btn {
    background-color: rgba(66, 134, 239, 1);
    color: #fff;
    padding: 9px;
    border: none;
    border-radius: 10px;
    margin-left: 10px;
    width: 20%;
}


.referral .middle-part .left .social {
    text-align: center;
    margin-top: 10px
}


.referral .middle-part .left .social i {
    font-size: 20px;
    margin-right: 6px
}


.referral .middle-part .left .social button {
    padding: 20px;
    color: #fff;
    border-radius: 15px;
    margin: 5px;
    font-size: 15px;
    border: none;
    width: 30%;
}


.referral .middle-part .left .social .conn {
    margin-top: 20px;
}


.referral .last-part .box {
    text-align: center;
    margin: 50px 0;
}

.referral .last-part .add-btn {
    border: none;
    color: #fff;
    background-color: #F0AD49;
    border-radius: 16px;
    padding: 15px;
    width: 25%;
    margin-top: 15px;
}

.referral .last-part .faq div {
    display: flex;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 14px rgba(29, 82, 163, 0.08);
    border-radius: 6px;
    margin-top: 20px;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
}

/* referral ends  */

/* student login starts  */


.stu-login .right {
    background-color: #F0F5FC;
    text-align: center;
    border-radius: 18px;
    height: 93vh;
    width: 40%;
    position: fixed;
    margin: 20px 0;
}

.stu-login .right .img1 {
    padding: 35px 0;
    width: 25%;
}

.stu-login .right .img2 {
    width: 100%;
}


.stu-login .left {
    margin: 0px;
    padding: 10px;
    height: 630px;
    position: relative;
}

.stu-login .left .box1 h2 {
    font-weight: 600;

}

.stu-login .left .box-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stu-login .aff-btn {
    border: none;
    background: #4286EF;
    color: #fff;
    border-radius: 13px;
    padding: 12px 18px;
    box-shadow: 0px 10px 15px rgba(29, 82, 163, 0.15);
}

.stu-login .box h6 {
    font-weight: bold;
    margin: 11px 0;
}


.stu-login .box .input-field {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 10px !important;
    background: rgba(194, 201, 204, 0.05);
    border: 1px solid rgba(66, 134, 239, 0.2);
}

.stu-login .mob-input .input-field {
    width: auto;
    padding: 0px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 0px !important;
    background: none;
    border: none;
}

.stu-login .box .input-group {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 10px !important;
    background: rgba(194, 201, 204, 0.05);
    border: 1px solid rgba(66, 134, 239, 0.2);

}

.input-group>.form-control,
.input-group>.form-select {
    flex: none;
    width: 15%;
}

.stu-login .box .input-group .form-select {
    display: unset;
    background-color: transparent;
    border: none;
}

/* comment Css for Invalid Mob-No */

.stu-login .inputError {
    background: var(--red) !important;
    border: 1px solid var(--red-bg) !important;
}

.stu-login .box {
    padding: 8px 0;
}


.stu-login .bot {
    position: absolute;
    bottom: 0;
}


.stu-login .prm-btn {
    border: none;
    background: #4286EF;
    color: #fff;
    border-radius: 13px;
    padding: 15px 20px;
    box-shadow: 0px 10px 15px rgba(29, 82, 163, 0.15);
    width: 100%;
}


.stu-login p {
    text-align: center;
    margin: 25px 0;
}

.stu-login p a {
    color: #4286EF;
}

.stu-login .left-img {
    display: none;
    text-align: center;
    margin-bottom: 35px;
}

.stu-login .left-img img {
    height: 35px;
}

.password-container {
    position: relative;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.eye-icon i {
    color: #999;
    font-size: 18px;
    transition: color 0.3s ease;
}

.eye-icon i:hover {
    color: #555;
}

.password-input {
    padding-right: 30px;
}

/* student login ends  */

/* student signup starts  */

#stu-signup .left {
    height: 900px;
}


#stu-signup .right .laptop {
    min-height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}


#stu-signup .right .img2 {
    width: 380px;
}

#stu-signup .chk-box {
    text-align: center;
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

#stu-signup .chk-box input {
    margin-right: 10px;
}



.stu-login .custom_select select {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    outline: none;
    margin: 5px 0;
    border-radius: 10px !important;
    border: 1px solid rgba(66, 134, 239, 0.2);
}

.form-select:focus {
    box-shadow: none !important;
}

.form-select {
    display: unset;
    background-color: rgba(194, 201, 204, 0.05);
}

.form-select .inputError {
    background: var(--red) !important;
    border: 1px solid var(--red-bg) !important;
}


/* student signup ends  */


/* otp verification starts  */

.otp-ver p {
    text-align: left;
    margin: 10px 0;
}

.otp-ver .box .otpfield {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.otp-ver .box .input-field {
    width: 50px;
    text-align: center;
    margin: 5px 5px;
}

.otp-ver .box {
    margin-top: 60px;
    text-align: center;
}

.otp-ver .left {
    height: 90vh !important;
}

.otp-ver .box p {
    text-align: center;
}

/* otp verification ends  */


/* notice starts  */


#notice {
    margin-top: 120px;
    margin-bottom: 30px;
}

h2 span {
    vertical-align: middle;
    font-size: 25px;
}

.notice h5 {
    margin-top: 20px;
}

.att {
    color: var(--red-bg);
}

.notice .box {
    border-bottom: 1px solid #dbd8d8;
    width: 80%;
    margin: auto;
}

.notice .box p {
    text-align: justify;
}

/* notice ends  */

/* orders starts  */

#orders {
    margin-top: 120px;
    margin-bottom: 30px;
}

.orders h2 {
    margin-bottom: 60px;
}

.table-full-width {
    text-align: center;
}

/* orders ends  */

/* checkout starts  */

#checkout {
    margin-top: 110px;
    margin-bottom: 30px;
}

.checkout .box {
    box-shadow: none;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 15px 30px;
}


.square-radio input[type="radio"] {
    display: none;
    /* Hide the default radio button */
}

.square-radio label {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid var(--menu);
    border-radius: 5px;
    margin-right: 5px;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

.square-radio input[type="radio"]:checked+label::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--menu);
    border-radius: 2px;
}

.checkout .box-amt .td-fee {
    font-size: 25px;
    font-weight: 600;
    margin-right: 10px;
    vertical-align: middle;
}

.checkout .course {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.5px solid #C2C9CC;
}

.checkout .box-feed {
    box-shadow: 0px 6px 20px rgba(29, 82, 163, 0.12);
    border-radius: 24px;
}

.checkout td {
    padding: 10px 0 !important;
}

.checkout h2 {
    margin-top: 0px;
    margin-bottom: 20px;
}

.checkout .box-feed tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout .box-feed th {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout th {
    padding: 10px 0 !important;
}

.checkout .box-feed .select-btn {
    margin-bottom: 20px;
}

.checkout .box-feed label {
    margin-right: 25px;
}

.checkout .box-feed .input-group {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px !important;
    border: 1px solid #c9c9b6;
}

.checkout .box-feed .input-field {
    outline: none;
    border: none;
}

.checkout .box-feed .button {
    padding: 5px 10px;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    margin: 0;
    color: var(--blue);
    font-weight: 600;
}

.checkout th h4 {
    font-weight: 600;
    margin: 0;
    padding: 7px 0;
}

.checkout tr.total-chk {
    border-bottom: 0.5px solid #C2C9CC;
    border-top: 0.5px solid #C2C9CC;
    margin-top: 20px;
}

.checkout .box-feed .pay-btn .submit-btn {
    border: none;
    color: #fff;
    background-color: #4286EF;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    width: 75%;
}

.checkout .box-feed .pay-btn {
    text-align: center;
}

.checkout .box-feed .pay-img {
    padding: 20px;
}

.checkout .box-feed .pay-img img {
    padding: 0 10px;
}

.checkout .box-feed .vec span {
    vertical-align: middle;
    margin-left: 5px;
}

/* checkout ends  */

/* my profile starts  */

#myprofile {
    margin-top: 110px;
    margin-bottom: 30px;
}

.myprofile h2 {
    margin-top: 10px;
}

.myprofile .mypro-box1 {
    display: flex;
    align-items: center;
    position: relative;
}

.myprofile .mypro-box1 img {
    border-radius: 50%;
    height: 140px;
    width: 140px;
    margin: 20px 0;

}

.myprofile .mypro-box1 i {
    position: absolute;
    bottom: 40px;
    left: 115px;
    color: var(--white);
    background: var(--blue);
    padding: 7px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

.myprofile .mypro-box1 .content {
    padding: 20px;
}

.myprofile h3 {
    font-weight: 600;
}

.myprofile h5 {
    font-weight: 600;
}

.myprofile .mypro-box1 .content p {
    color: var(--yellow);
}

.myprofile .mypro-box2 .bar {
    height: 4px;
    width: 270px;
    background: #dce4e5;
    border-radius: 9999px;
    position: relative;
    margin: 15px 0;
}

.myprofile .mypro-box2 .bar p {
    position: absolute;
    top: -10px;
    right: -40px;
}


.myprofile .mypro-box2 {
    background: rgba(66, 134, 239, 0.08);
    border-radius: 8px;
    padding: 20px;
}

.myprofile .last-part {
    box-shadow: 0px 6px 20px rgba(29, 82, 163, 0.12);
    border-radius: 24px;
    padding: 20px;
    margin: 20px 0px;
}

.myprofile .last-part .box1 {
    border-bottom: 0.5px solid #C2C9CC;
    padding: 15px 0;
}

.myprofile .last-part .box1 .content {
    display: flex;
    justify-content: space-between;

}

.myprofile .last-part .box2 {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.myprofile .last-part .mid-box {
    border-bottom: 0.5px solid #C2C9CC;
    padding-bottom: 15px;
}

.myprofile .last-part .box3 {
    padding: 15px 0;
}

.myprofile .last-part .box2 .edit {
    display: flex;
    justify-content: space-between;
}

.myprofile .last-part .box2 .edit .ph {
    margin-left: 300px;
}

.myprofile .last-part .box44 {
    padding: 15px 0;
}

.myprofile .last-part .box44 .content {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.5px solid #C2C9CC;
}

.popup-sec .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* display: none; */
}

.popup-box {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    width: 35%;
    margin: 0 auto;
    background-color: var(--white);
    padding: 20px 15px;
    z-index: 2;
    box-sizing: border-box;
    box-shadow: 0px 6px 20px rgba(29, 82, 163, 0.12);
    border-radius: 15px;
    /* display: none; */
}

.popup-sec .popup-box h4 {
    font-weight: 600;
}

.popup-sec .popup-box .pop-box2 {
    padding: 10px 40px;
}

.popup-sec .popup-box .pop-box2 input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 3px 0 15px;
    border-radius: 10px !important;
    border: 1px solid #c9c9b6;
}

.popup-sec .popup-box .pop-box3 button {
    border: none;
    padding: 10px;
    border-radius: 8px;
    margin-right: 5px;
    margin-top: 25px;
    width: 47%;
}

.popup-sec .popup-box .pop-box3 .pre-btn {
    border: 1px solid #4286EF;
    color: #4286EF;
    background: #fff;
}

.popup-sec .popup-box .pop-box3 .next-btn {
    border: 1px solid #4286EF;
    background: #4286EF;
    color: #fff;
}

.popup-sec .popup-box .pop-box3 {
    padding: 5px 40px;
}

/* my profile ends  */

/* online class starts  */

.online-cls {
    margin-top: 110px;
    margin-bottom: 30px;
}

.online-cls h2 {
    margin-top: 0px;
    margin-bottom: 30px;
}

.online-cls .box1 {
    text-align: center;
}

.online-cls .box1 a {
    padding: 5px 12px;
    background: var(--green);
    border-radius: 10px;
    font-size: 12px;
    color: var(--white);
    margin-left: 10px;
    vertical-align: middle;
}

#online-cls .line2 {
    border-bottom: 2px solid var(--grey-bg);
}

#online-cls .line1 {
    border-bottom: 4px solid var(--blue);
}

.online-cls .box4 {
    box-shadow: 0px 6px 20px rgba(29, 82, 163, 0.12);
    border-radius: 24px;
    padding: 20px;
    margin-top: 30px;
}

.online-cls .box4 .content {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.online-cls .box4 .content p span {
    background-color: var(--green);
    border-radius: 50%;
    height: 10px;
    display: inline-block;
    width: 10px;
    margin-right: 10px;
    vertical-align: middle;
}

.online-cls .box4 .content p strong {
    background-color: var(--black);
    border-radius: 50%;
    height: 5px;
    display: inline-block;
    width: 5px;
    margin: 0 5px;
    vertical-align: middle;
}

.online-cls .box4 i {
    margin-right: 7px;

}

.online-cls .box4 p {
    margin-bottom: 5px;
}

#online-cls2 .line2 {
    border-bottom: 4px solid var(--blue);
}

#online-cls2 .line1 {
    border-bottom: 2px solid var(--grey-bg);
}

#online-cls2 .box4 .content p span {
    background-color: var(--yellow);
}

#online-cls2 .next-btn {
    position: absolute;
    bottom: 5px;
    right: -15px;
}

/* online class ends  */

/* available course starts  */

#avl-cs {
    margin-top: 110px;
    margin-bottom: 30px;
}

.avl-cs .box h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.avl-cs .btn {
    text-align: left;
}

.avl-cs .btn button {
    border: none;
    border: 1px solid #C2C9CC;
    color: #626E73;
    border-radius: 106px;
    padding: 12px 20px;
    margin-bottom: 20px;
}

.avl-cs .learn-box1 {
    height: auto;
    cursor: pointer;
    background: var(--white);
    box-shadow: 0px 4.76562px 15.8854px rgba(29, 82, 163, 0.12);
    border-radius: 15px;
    margin: 5px;
}

.avl-cs .learn-box1 img {
    height: 160px;
    width: 100%;
    object-position: center;
    border-radius: 20px;
    padding: 10px;
}

.avl-cs .learn-box1 .content {
    padding: 15px 20px;
    line-height: 30px;
}

.avl-cs .learn-box1 .content h6 {
    padding: 5px 0;
    border-bottom: 0.397135px solid #C2C9CC;
    color: var(--black);
}

.avl-cs .learn-box1 .content a {
    font-size: 13px;
    text-align: justify;
}

.avl-cs .learn-box1 .content a img {
    height: auto;
    width: auto;
    padding: 0;
    margin-right: 10px;
}

.avl-cs .learn-box1 .enroll {
    background: rgba(254, 201, 40, 0.08);
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.avl-cs .learn-box1 .enroll button {
    border: none;
    color: #fff;
    background: linear-gradient(180deg, #F6D198 0%, #F1B458 100%);
    border-radius: 6.35417px;
    padding: 10px;
    width: 75%;
    margin: 15px 0;
}

/* available course ends  */

/* home page starts  */

#home {
    margin-top: 130px;
    margin-bottom: 30px;
    padding: 0;
}

.home h3 {
    font-size: 2.3rem;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 35px;
    text-align: center;
}

.home h3 span {
    color: var(--blue);
}

.home1 h3 {
    text-align: left;
}

.home1 .content h4 {
    margin-bottom: 30px;

}

.home1 .content .content-icon {
    margin: 15px 0;
}

.home1 .content a {
    font-size: 18px;
    line-height: 10px;
}

.home1 .content-icon img {
    margin-right: 10px;
    padding: 10px;
    border-radius: 10px;
}

.home1 .content-icon .img1 {
    background-color: rgba(243, 213, 91, 0.20);
}

.home1 .content-icon .img2 {
    background-color: rgba(243, 75, 88, 0.07);

}

.home .content .btn {
    color: var(--white);
    font-weight: 600;
    padding: 15px;
    background: var(--blue);
    margin: 25px 0;
    border-radius: 5px;
}

.home1 .content .btn:hover {
    border: 1px solid var(--blue);
    color: var(--blue);
    background: var(--white);
}

.home1 .content .btn:focus {
    box-shadow: none;
    border: 1px solid var(--blue) !important;
    color: var(--blue) !important;
    background: var(--white) !important;
}

.home1 .circle {
    position: relative;
    width: 468.663px;
    height: 468.663px;
    background: linear-gradient(45deg, #F0AD49 50%, rgba(240, 173, 73, 0.16) 50%);
    border-radius: 50%;
    overflow: hidden;
    right: 0;
}

.home1 .circle img {
    height: 100%;
    width: 100%;
}

.home2 {
    background-color: rgba(66, 134, 239, 0.06);
}

.home2 h3 {
    text-align: left;
}


.home2 span {
    color: var(--blue);
}

.home2 p span {
    border-bottom: 1px solid var(--blue);
}

.home2 .box1 p {
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0.16px;
    text-align: justify;
    margin-bottom: 40px;
}

.home2 .box1 ul {
    color: var(--g-2, #000);
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.16px;
}


.home2 .box2 .form {
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 12px;
}

.home2 .box2 .form input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 3px 0 15px;
    border-radius: 10px;
    border: 1px solid rgba(66, 134, 239, 0.20);
    background: rgba(194, 201, 204, 0.05);


}

.home2 .box2 .form select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 3px 0 15px;
    border-radius: 10px;
    border: 1px solid rgba(66, 134, 239, 0.20);
}

.send-btn {
    color: var(--white);
    background: var(--yellow);
    width: 100%;
    margin: 15px 0px;
}

.home2 .row {
    align-items: center;
}

.home1 .row {
    align-items: center;
}

.home2 .box2 {
    margin-left: 30px;
}


.home3 h3 {
    color: var(--menu);
    text-align: center;
}

.home3 h5 {
    padding: 20px 20px 0 20px;
    line-height: 30px;
}

.home3 .learn-box1 .stars {
    font-size: 15px;
    color: goldenrod;
    padding: 0 20px;
}

.home3 .learn-box1 .enroll {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.home3 .learn-box1 .enroll button {
    width: 35%;
}

.home3 .learn-box1 .enroll .price p {
    color: var(--blue);
    font-size: 20px;
    font-weight: 600;
}

.home3 .learn-box1 .enroll .price a span {
    color: var(--menu);
    font-size: 14px;
    margin-right: 5px;
    text-decoration: line-through;
}

.home3 .learn-box1 .enroll .price a {
    color: #F0AD49;
    font-size: 14px;

}

.home3 .learn-box1 .content {
    text-align: left;
}

.home3 .content {
    text-align: center;
}

section#home-place {
    padding-bottom: 30px;
}

.home-place .container {
    margin: 40px auto;
    height: 250px;
}

.home-place .box {
    text-align: center;
}

.home-place .box img {
    width: auto;
    height: auto;
}

.home-place .box .img-box {
    height: 160px;
}

.home-place .box h4 {
    font-size: 14px;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.home .container {
    padding: 30px 10px;
}

.home4 .container {
    border-radius: 16.56px;
    background: #262E89;
    margin: 40px auto;
    color: var(--white);
    padding: 0px 80px;
    margin-top: 80px;
}

.home4 h3 {
    text-align: left;
}

.home4 .box a {
    color: var(--blue);
}

.home4 .row {
    justify-content: center;
    align-items: center;
}

.home .box {
    padding: 0;
}

.home4 .image-container {
    position: relative;
    display: inline-block;

}

.home4 .image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 100px;
    width: 335.254px;
    height: 269.208px;
    background: var(--yellow);
    border-radius: 187.728px 187.728px 0px 0px;
    z-index: 1;
}

.home4 .image-container img {
    position: relative;
    z-index: 2;
    margin-top: -7rem;
    bottom: -10px;
    left: 130px;
    right: 0;
}

.home5 {
    opacity: 0.9700000286102295;
    background: rgba(248, 251, 255, 0.87);
}

.home5 .container {
    padding-bottom: 50px;
}

.home5 .box {
    text-align: center;
    margin: 20px 0;
}

.home5 .box h5 {
    margin: 20px 0;
    line-height: 30px;
}

.home5 .box p {
    line-height: 30px;
    margin-top: 20px;
}

.home6 {
    background: rgba(240, 173, 78, 0.10);
    margin: 10px 0 25px 0;
}

.home6 .stars {
    font-size: 25px;
    text-align: center;
    color: var(--yellow);
    padding-bottom: 20px;
}

.home6 h5 {
    text-align: center;
}

.home6 .box {
    background-color: var(--white);
    margin: 30px 0;
    text-align: center;
    height: 280px;
    border-radius: 10px;
    border-bottom: 5px solid var(--blue);
    margin-right: 10px;
}

.home6 .box .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home6 .box .img-box img {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.home6 .box h6 {
    padding: 20px;
    line-height: 30px;
    height: 190px;
}

.slick-dots li.slick-active button:before {
    color: var(--blue);
}

.home7 .box {
    padding: 30px 0;
}

.home7 .box img {
    width: 100%;
    height: 100%;
}

.home8 {
    background-color: var(--blue);
    padding: 20px 0;
}

.home8 .row {
    align-items: center;
}

.home8 .box1 {
    color: var(--white);
}

.home8 .box2 {
    text-align: right;
}


.home-footer {
    background: #242f4c;
    padding: 0;
}

.home-footer .container {
    padding-top: 25px;
}

.home-footer .box h3 {
    color: #fff;
    padding: 10px 0;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding-left: 20px
}

.home-footer .box p {
    font-size: 15px;
    color: #fff;
}

.home-footer .box a {
    font-size: 1rem;
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 8px;
    cursor: pointer;
}

.home-footer a:hover {
    color: #fff !important;
}

.home-footer .box a i {
    padding-right: 15px;
}

.home-footer .credit {
    font-size: 1rem;
    text-align: center;
    padding: 2rem 1rem;
    font-weight: normal;
    letter-spacing: .1rem;
    color: #fff;
}

.home-footer .credit a {
    color: rgb(220, 181, 9);
    text-decoration: none;
}

.home-footer .social {
    display: flex;
    padding: 0 10px;
}

.home-footer .social .fb {
    background-color: #37589b;
    margin: 3px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 20px;
    padding: 1px 0px 0px 8px !important;
    text-align: center;
}

.home-footer .social .inst {
    background-color: #3f729b;
    margin: 3px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 20px;
    padding: 1px 0px 0px 8px !important;
    text-align: center;
}

.home-footer .social .linkd {
    background-color: #3399cc;
    margin: 3px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 20px;
    padding: 1px 0px 0px 8px !important;
    text-align: center;
}

.home-footer .social .yt {
    background-color: #c4302b;
    margin: 3px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 20px;
    padding: 1px 0px 0px 6px !important;
    text-align: center;
}

.home-footer .fas {
    font-size: 14px !important;
}

.home-footer .fa-angle-right {
    padding-right: 15px !important;
}

.home-footer .footer2 {
    background-color: #595353;
    margin-top: 50px;
}

.home-footer .footer2 .text {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.home-footer .footer2 .text strong {
    font-size: 12px;
}

.home-footer .footer2 .text p {
    margin-bottom: 7px !important;
}

/* homepage ends  */

/* about us starts  */

#aboutus {
    margin-top: 90px;
    margin-bottom: 30px;
    height: 540px;
}

.aboutus {
    background: linear-gradient(314deg, #4286EF 0%, #7CADFA 100%);
    padding: 40px 0;
}

.aboutus .box h3 span {
    color: var(--black);
}

.aboutus h3 {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--white);
}

.aboutus .box p {
    color: var(--white);
    text-align: justify;
    line-height: 30px;
    padding: 20px 0;
}

.aboutus .box h6 {
    color: var(--white);
}

.aboutus .box .review-box img {
    height: 50px;
    width: 100px;
    border-radius: 50%;
}


.aboutus .box .review-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--white);
    padding: 10px;
    width: 240px;
    border-radius: 5px;
    margin: 20px 0;
}

.aboutus .box .review-box .stars {
    color: var(--yellow);
    font-size: 12px;
}

.aboutus .box .review-box p {
    color: var(--menu);
    padding: 0;
    font-size: 15px;
}

.aboutus .img-box img {
    height: 100%;
    width: 100%;
    transform: translate(50px, -60px);
}

.aboutus2 {
    width: 70%;
    margin: 5rem auto;
    margin-top: -7rem;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0px 0px 29px 0px rgba(7, 14, 27, 0.11);
    padding: 2.5rem 2rem;
}

.aboutus2 .box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.aboutus2 .box .content {
    text-align: center;
    padding-right: 7%;
}


.aboutus2 .box .content p img {
    margin-right: 10px;
}

#first-box,
#second-box {
    border-right: 2px solid #C2C9CC;
}

.aboutus3 {
    background-color: var(--white);
    margin-bottom: 20px;
}

.aboutus3 .faq .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 35px 0;
}

.aboutus3 .faq button {
    background-color: var(--blue);
    color: var(--white);
}

.aboutus3 .accordian {
    border: 1px solid #D4D4D4;
}

.aboutus3 .accordian .card {
    border: none;
}

.aboutus3 .accordian .card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}


.aboutus3 .accordian .card .card-header h2 {
    cursor: pointer;
    color: #333333;
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.aboutus3 .accordian .card .card-body {
    padding: 20px;
    display: none;
}


.aboutus3 .accordian .card .card-body p {
    font-size: 15px;
    line-height: 24px;
    color: #444444;
    margin: 0px;
    text-align: justify;
}


.aboutus3 .box2 {
    border-radius: 14px;
    box-shadow: 0px 0px 29px 0px rgba(7, 14, 27, 0.11);
    padding: 20px;
    text-align: center;
    margin: 65px auto;
}

.aboutus3 .box2 h4 {
    margin-top: 30px;
}

.aboutus3 .box2 .link {
    color: var(--blue);
    text-decoration: underline;
}

.aboutus3 .box2 .tab-btn {
    border-radius: 7px;
    border: 1px solid rgba(66, 134, 239, 0.50);
    box-shadow: 0px 0px 29px 0px rgba(7, 14, 27, 0.11);
    padding: 2px 0;

}

.aboutus3 .box2 .tab-btn button {
    background: none;
    border-radius: 7px;
    width: 49%;
    margin: 0;
}

.aboutus3 .box2 .tab-btn button.active {
    background-color: var(--blue);
    color: var(--white);
}

.btn-content2 {
    display: none;
}

.aboutus3 .box2 .learn-box1 .content {
    text-align: left;
    line-height: 55px;
}

.aboutus4 {
    margin-bottom: 60px;
}

.aboutus4 .box img {
    height: 60px;
}

.aboutus3 .box2 .learn-box1 {
    box-shadow: none;
}

.aboutus5 {
    background: #F0F5FE;
    margin: 30px 0;
}

.aboutus5 .content .btn {
    width: 20%;
    background-color: var(--yellow);
    color: var(--white);
    border-radius: 10px;
}

.aboutus5 .box-in {
    text-align: center;
    background-color: var(--white);
    height: 250px;
    border-radius: 10px;
    padding: 20px;
}

.aboutus5 .box-in p {
    padding: 30px 45px 0;
}


.aboutus6 .accordian {
    border: 1px solid #D4D4D4;
}

.aboutus6 .accordian .card {
    border: none;
}

.aboutus6 .accordian .card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}


.aboutus6 .accordian .card .card-header h2 {
    cursor: pointer;
    color: #333333;
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.aboutus6 .accordian .card .card-body {
    padding: 20px;
    display: none;
}


.aboutus6 .accordian .card .card-body p {
    font-size: 15px;
    line-height: 24px;
    color: #444444;
    margin: 0px;
    text-align: justify;
}

.aboutus6 .last-part .faq .talk-us {
    /* display: flex; */
    display: inline-block !important;
    margin-top: 55px !important;
    padding: 30px !important;
}

.aboutus6 .last-part .faq .talk-us p {
    padding: 15px;
}

.aboutus6 .last-part .faq .talk-us p a {
    border-bottom: 1px solid #DDD;
    padding-bottom: 15px;
}

.aboutus6 .last-part .faq .talk-us img {
    margin-right: 10px;
}


.aboutus6 .last-part .faq .talk-us button {
    background-color: var(--blue);
    color: var(--white);
    margin: 20px 0 10px 25px;
}

.aboutus7 {
    text-align: center;
    background: rgba(66, 134, 239, 0.10);
}

.aboutus7 .container {
    padding: 37px 0 30px 0;
}

.aboutus7 h3 {
    text-align: center;
}

.aboutus7 .box2 {
    width: 60%;
    margin: auto;
}

.aboutus7 .box2 .form {
    padding: 30px 20px;
    border-radius: 12px;
}

.aboutus7 .box2 .form input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    margin: 3px 0 15px;
    border-radius: 10px;
    border: 1px solid rgba(66, 134, 239, 0.20);
}

.aboutus7 .box2 .form button {
    width: 30%;
    background-color: var(--blue);
}

/* aboutus ends  */

/* Aboutus popup starts  */

.aboutus-popup .popup-box {
    width: 50%;
    top: 180px;
}


.aboutus-popup .pop-box {
    position: relative;
}

.aboutus-popup .pop-box img {
    position: absolute;
    top: -15px;
    right: 5px;
}

.aboutus-popup .popup-box h4 {
    text-align: center;
    margin: 15px 0;
}

.aboutus-popup .popup-box .box input {
    width: auto;
}

.aboutus-popup .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aboutus-popup .box .left {
    display: flex;
    align-items: center;
}

.aboutus-popup .box .left img {
    height: 100%;
    margin-right: 15px;
}

.aboutus-popup .box .left .content {
    padding-right: 56px;
}

.aboutus-popup .box .left .content p {
    font-size: 14px;
}

.aboutus-popup .popup-box .pop-box2 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 20px;

}

.aboutus-popup .popup-box .pop-box3 {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* aboutus popup ends   */

/* affi-page starts  */

.affi-page1 .row {
    align-items: unset;
}

.affi-page1 .img-box img {
    /* height: 72%; */
    width: 75%;
    transform: translate(100px, -10px);
}

.affi-page2 {
    background-color: var(--white);
}

.affi-page2 .box-in .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.affi-page2 .box-in .img-box1 {
    background-color: var(--light-blue);
}

.affi-page2 .box-in .img-box2 {
    background-color: #262E89;
}

.affi-page2 .box-in .img-box3 {
    background-color: var(--yellow);
}


.affi-page2 .box-in .img-box img {
    max-width: 100%;
    max-height: 100%;
    padding: 10px;
}

.affi-page2 .box-in p {
    padding: 20px 30px 0;
}

.affi-page3 {
    background-color: #262E89;
    color: var(--white);
}

.affi-page3 .box {
    padding: 60px;
    display: flex;
    justify-content: space-between;
}

.affi-page3 .box h3 {
    margin: 0;
    line-height: 50px;
}

.affi-page3 .row {
    align-items: center;
}

.affi-page3 .box button {
    background-color: var(--blue);
    color: var(--white);
    margin: auto 0;
}

.affi-page4 .box2 {
    box-shadow: none;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.affi-page4 .box2 .tab-btn button {
    border-radius: 10px;
    padding: 10px;
}

.affi-page4 .box3 {
    padding: 30px 40px;
    border-radius: 10px;
}

.affi-page4 .box3 h6 {
    margin-bottom: 30px;
}

.affi-page5 {
    background-color: var(--white);
}




/* online class  */


.sidenav {
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    overflow: hidden;
    transition: 0.5s;
    padding-top: 30px;
    margin-top: 92px;
}


#main {
    transition: margin-right .5s;
    padding: 16px;
    margin-right: 235px;
    margin-top: 30px;
}

.online-class .container {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.online-class .container .main-video-container {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    transition: all .5s;
    width: 100%;

}

.online-class .container .main-video-container .main-video {
    margin-bottom: 7px;
    border-radius: 5px;
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

.online-class .container .main-video-container .main-vid-title {
    font-size: 1rem;
    display: flex;
    padding: 0px 25px;
    justify-content: space-between;
    align-items: center;
}



.online-class .container .video-list-container {
    overflow-y: scroll;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    background-color: #eee;
    padding: 15px;
}

.online-class .container .video-list-container::-webkit-scrollbar {
    width: 5px;
}

.online-class .container .video-list-container::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 5px;
}

.online-class .container .video-list-container::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 5px;
}

.online-class .container .video-list-container .list {
    gap: 15px;
    padding: 10px;
    background-color: var(--white);
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
}

.online-class .container .video-list-container .list:last-child {
    margin-bottom: 0;
}

.online-class .container .video-list-container .list video {
    display: none;
}


.online-class .container .video-list-container .list .vdo-content {
    display: none;
}

.online-class .container .video-list-container .list.active .list-title {
    color: var(--black);
    padding: 10px;
}

.show-border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);

}
.chapters{
    display: none;
}
.online-class .container .video-list-container .list .list-video {
    width: 100px;
    border-radius: 5px;
}

.online-class .container .video-list-container .list .list-subcourse {
    font-size: 1rem;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.online-class .container .video-list-container .list .list-title {
    font-size: 1rem;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.online-class .container .video-list-container .list .list-title .right img {
    margin-right: 5px;
}

.online-class {
    margin: 120px auto 0;
    position: relative;
}

.online-class h4 {
    font-size: 2rem;
    margin: 10px 15px;
}

.online-class a.nav3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 5px;
}

.online-class .head .back-ds {
    left: 95px;
}

.online-class .head p {
    position: absolute;
    top: 50px;
    transition: .5s;
}

.online-class .head .nav {
    padding: 0 10px 10px;
    color: var(--blue);
    position: absolute;
    right: 88px;
    cursor: pointer;
}

.online-class .vdo-content {
    padding: 10px;

}

.online-class .vdo-content p {
    padding: 10px 0;
}

.online-class .vdo-content p img {
    margin-right: 10px;
}

#online-class2 .box-content {
    margin: 20px 0;
}

#online-class2 .box-content p {
    text-align: justify;
    line-height: 30px;
}

#online-class2 .box {
    margin-right: 235px;
}

.nav-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs-prgs {
    display: flex;
    align-items: center;
}

.cs-prgs img {
    margin-right: 10px;
}

.cs-prgs .bar-per {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.cs-prgs .bar {
    height: 3px;
    width: 150px;
    background: #dce4e5;
    border-radius: 9999px;
    margin-left: 10px;
}

.sidebar .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}

.vdo-footer {
    box-shadow: 0px -15px 14px 0px rgba(29, 82, 163, 0.08);

}

.vdo-footer .box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 10px;
}

.vdo-footer .box img {
    height: auto;
    width: auto;
}