:root {
    /* index */

    --hover-text-color: white;
    --font-family: "Irish Grover", system-ui;
    --text-color-green: #1f2e57;
    --hr-color: #abcb80;

    /* course */

    --main-bg-color: #ffffff;
    --gradient-color: #d8effb;
    /* --gradient-color: #b6e152; */
    --gradient-color2: #ffffff;
    --text-color: #1f2e57;
    --btn-bg-color: #1f2e57;
    --light-bg-color: #f6fbe8;
}

@font-face {
    font-family: 'Nikosh';
    src: url('../fonts/Nikosh.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url("../image/body-img.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    min-height: 100vh;
    /*font-family: 'Nikosh', sans-serif !important;*/
}


.theme-text {
    color: var(--text-color);
}

/* //////////////////////////////////      Registration      //////////////////////////// */

.signup-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    /* min-height: 700px; */
    gap: 10px;
    justify-content: center;
    align-items: stretch;
}

/* Left Section */
.left-section {
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    padding: 10px;
    margin-left: 10px;
    border: 1px solid #000;
    border-radius: 100px;
    max-height: 600px;
}

.left-section img {
    width: 250;
    height: 250px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    /* background: linear-gradient(135deg, #f4e8ff 70%, #ffffff 30%); */
}

.left-section h2 {
    color: #4a4a4a;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
    margin-top: 20px;
}

.left-section h3 {
    font-weight: 700;
}

.left-section p {
    color: #555;
    font-size: 16px;
}

/* Right Section */
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /* min-width: 320px; */
    /* Ensures it's not too small on mobile */
    border: 1px solid #000;
    border-radius: 100px;
    margin-right: 10px;
}

.form-card {
    /* width: 70%; */
    /* max-width: 700px; */
    /* background: #ffffff; */
    /* border-radius: 15px; */
    padding: 4;
}

.form-card h3 {
    color: #854fea;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.reginput,
.regselect {
    border-radius: 25px;
    padding: 10px 15px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: "Poppins", sans-serif;
    /* Apply font to inputs */
}

.btn-signup {
    background: linear-gradient(90deg, #a450f7, #b06df7);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;
    /* Apply font to buttons */
}

.btn-signup:hover {
    background: linear-gradient(90deg, #9442e5, #9b59e5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(148, 66, 229, 0.3);
}

.footer-text {
    margin-top: 15px;
    font-size: 14px;
    color: #6a32d4;
    text-align: center;
}

.footer-text a {
    text-decoration: none;
    color: #6a32d4;
    font-weight: bold;
}

.footer-text a:hover {
    text-decoration: underline;
}

.placeholder-sm::placeholder {
    font-size: 13px;
    color: #888;
}

.custom-select {
    font-size: 13px;
    padding: 10px 12px;
    color: #888;
}

.custom-select option:disabled {
    font-size: 12px;
    color: #888;
}

.custom-select option {
    font-size: 13px;
}

.custom-select:focus {
    border-color: #6a32d4;
    box-shadow: 0 0 5px rgba(106, 50, 212, 0.2);
}

@media (max-width: 768px) {
    .signup-wrapper {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        display: none;
    }

    .right-section {
        margin-top: 50px;
    }

    .form-card {
        width: 100%;
        padding: 20px;
    }

    .btn-signup {
        padding: 12px;
    }

    .footer-text {
        width: 100%;
    }

    .col-6 {
        flex: 1 0 100%;
    }

    .reginput,
    .regselect {
        font-size: 14px;
    }

    .footer-text p {
        margin-top: 15px;
        font-size: 14px;
        color: #6a32d4;
        text-align: center;
    }

    .footer-text a {
        text-decoration: none;
        color: #6a32d4;
        font-weight: bold;
    }
}

.small-error {
    font-size: 12px;
    margin-top: 2px;
    display: block;
}

.small-input {
    height: 30px;
    padding: 2px 8px;
    font-size: 14px;
}

.btnRegister {
    float: right;
    margin-top: 10%;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: #fff;
    font-weight: 700;
    width: 50%;
    cursor: pointer;
}

/* //////////////////////////////////      Login         //////////////////////////// */

.signin-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* height: 100vh; */
    gap: 10px;
}

/* Left Section */
.loginleft-section {
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: black;
    border: 1px solid #000;
    border-radius: 100px;
    margin-left: 10px;
}

/*
.loginleft-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: white;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.1);
}*/

.loginleft-section img {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    /* background: linear-gradient(135deg, #f4e8ff 70%, #ffffff 30%); */
}

.loginleft-section img:hover {
    transform: scale(1.1);
}

.loginleft-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.loginleft-section h3 {
    font-weight: 700;
}

.loginleft-section p {
    font-size: 18px;
    opacity: 0.85;
}

/* Right Section */
.loginright-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 40px; */
    background-color: white;
    border: 1px solid #000;
    border-radius: 100px;
    margin-right: 10px;
}

.loginform-card {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loginform-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.loginform-card h3 {
    color: #6a32d4;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 28px;
    text-align: center;
}

.logininput {
    border-radius: 30px;
    padding: 14px 18px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

.logininput:focus {
    border-color: #6a32d4;
    box-shadow: 0 0 8px rgba(106, 50, 212, 0.2);
}

.btn-signin {
    background: linear-gradient(90deg, #a450f7, #b06df7);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-signin:hover {
    background: linear-gradient(90deg, #9442e5, #9b59e5);
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(148, 66, 229, 0.3);
}

.placeholder-sm::placeholder {
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .signin-wrapper {
        flex-direction: column;
        height: auto;
    }

    .loginleft-section {
        display: none;
    }

    .loginform-card {
        width: 100%;
        padding: 30px;
    }

    .btn-signin {
        padding: 16px;
        font-size: 16px;
    }
}

.loginBtn {
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: var(--light-bg-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 700;
}

/*///////////////////////////////    Home     //////////////////////////////////*/

@media screen and (max-width: 991px) {
    .search-input {
        width: 100%;
    }

    .search-icon {
        display: none;
    }
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.search-input {
    width: 188px;
    height: 40px;
    padding: 0 40px 0 15px;
    border: 2px solid #ccc;
    border-radius: 20px;
    font-size: 16px;
    /* margin-bottom: 10px; */
}

.search-icon {
    position: absolute;
    right: 18px;
}

.dropdown-menu {
    margin-top: 10px;
}

.dropdown-item {
    padding: 5px 0;
}

.fas {
    color: #1f2e57;
}

.text-dark {
    color: #1f2e57;
}

.freeman-regular {
    font-family: "Freeman", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.homecarousel {
    background-color: var(--light-bg-color);
}

.mainBanner {
    background-image: linear-gradient(180deg,
            var(--gradient-color) 0%,
            var(--gradient-color2) 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.wave-container {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.carouselbtn {
    margin-top: 37px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .carouselbtn {
        display: none;
    }
}

.mainBanner img {
    margin-top: 1rem;
    width: 23rem;
    height: 23rem;
}

.hr_color {
    color: var(--hr-color);
}

.popularCourseCard {
    width: 18rem;
    height: 18rem;
}

.categoryBtn {
    background-color: var(--gradient-color);
    color: var(--text-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.card {
    padding: 1rem;
}

.categoryCard {
    width: 25rem;
    border: none;
    border-radius: 0 40px 0 40px;
    /* padding: 4px 38px; */
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 2rem;
    padding-right: 2rem;
}

.categoryCard:is(:hover, :focus) {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition-property: transform, box-shadow, background-color;
    transition-duration: 350ms;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 50px 0 50px;
}

@media (max-width: 576px) {
    .categoryCard {
        width: 23rem;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .categoryCard {
        width: 43rem;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.viewMoreBtn {
    background-color: var(--text-color);
    color: var(--light-bg-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
    border-radius: 16px;
    font-weight: 700;
}

@media (min-width: 320px) {
    .viewMoreBtn {
        margin-top: 5px;
        margin-bottom: 5px;
        margin-left: 5px;
        margin-right: 5px;
    }
}

.viewMoreBtn_course {
    color: var(--text-color);
    background-color: var(--light-bg-color);
    width: 100px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-color);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.viewMoreBtn_course:hover,
.viewMoreBtn_course:focus {
    background-color: var(--text-color);
    color: var(--light-bg-color);
    text-decoration: none;
}

.course {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 18rem;
    height: 22rem;
    color: var(--text-color-green);
    overflow: hidden;
    transition: transform 0.4s ease;

    &:hover {
        transform: translateY(-10px);
    }
}

.CourseImg {
    border-radius: 18px;
}

.card-body {
    padding: 0 !important;
}

@media (max-width: 576px) {
    .course {
        width: 22rem;
    }
}

.mainCoursepDiv {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.mainCoursepDiv:hover,
.mainCoursepDiv:focus {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

/* //////////////////////////Course Free Home Page///////////////////////// */

.freeCourseImg {
    height: 150px;
    width: 100%;
}

.freeCourseDiv {
    padding-left: 5px;
    padding-right: 5px;
}

.freeCourse {
    transition: 0.5s;
    cursor: pointer;
}

.card-title {
    .freeCourseImg {
        height: 150px;
        width: 100%;
    }

    .freeCourseDiv {
        padding-left: 5px;
        padding-right: 5px;
    }

    .freeCourse {
        transition: 0.5s;
        cursor: pointer;
    }

    .card-title {
        /* font-size:15px; */
        transition: 1s;
        cursor: pointer;
    }

    .card-title i {
        font-size: 15px;
        transition: 1s;
        cursor: pointer;
        color: #ffa710;
    }

    .card-title i:hover {
        transform: scale(1.25) rotate(100deg);
        color: #18d4ca;
    }

    .freeCourse:hover {
        transition: 1s;
        cursor: pointer;
    }

    .card-title i {
        font-size: 15px;
        transition: 1s;
        cursor: pointer;
        color: #ffa710;
    }

    .card-title i:hover {
        transform: scale(1.25) rotate(100deg);
        color: #18d4ca;
    }

    .freeCourse:hover {
        transform: scale(1.05);
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    }

    .card-text {
        height: 80px;
    }

    .freeCourse::before,
    .freeCourse::after {
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    }

    .card-text {
        height: 80px;
    }

    .freeCourse::before,
    .freeCourse::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: scale3d(0, 0, 1);
        transition: transform 0.3s ease-out 0s;
        background: rgba(255, 255, 255, 0.1);
        content: "";
        pointer-events: none;
    }

    .freeCourse::before {
        transform-origin: left top;
    }

    .freeCourse::after {
        transform-origin: right bottom;
    }

    .freeCourse:hover::before,
    .freeCourse:hover::after,
    .freeCourse:focus::before,
    .freeCourse:focus::after {
        transform: scale3d(1, 1, 1);
    }
}

/* //////////////////////////Success Story Home Page///////////////////////// */

.italic {
    font-style: italic;
}

.iconFa {
    color: var(--text-color);
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1.5 !important;
}

.successContainer {
    background-color: white;
}

.successStory_categoryContent {
    padding-top: 60px;
    padding-left: 71px;
}

.successStory_button {
    background-color: var(--text-color);
    color: var(--text-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.successStory_button2 {
    background-color: var(--text-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

/* succes story responsive  */

.successStory_content h1 {
    font-size: 2rem;
}

.successStory_content p {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .successStory_content h1 {
        font-size: 1.5rem;
    }

    .successStory_content p {
        font-size: 0.875rem;
    }
}

.successStory_content {
    text-align: left;
}

@media (max-width: 767px) {
    .successStory_content {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .successStory_content {
        text-align: center;
    }
}

/* sucess story responsive end */

.navbarCenter {
    width: 120px;
    height: 60px;
    position: relative;
    margin-left: 2px;
}

.btnr {
    width: 120px;
    height: 60px;
    cursor: pointer;
    background: transparent;
    border: 0px #fffffe;
    outline: none;
    transition: 1s ease-in-out;
}

.btnr svg {
    position: absolute;
    left: 0;
    top: 0;
    fill: none;
    stroke: #131b57;
    stroke-dasharray: 150 480;
    stroke-dashoffset: 150;
    transition: 1s ease-in-out;
}

.btnr:hover {
    transition: 1s ease-in-out;
}

.btnr:hover svg {
    stroke-dashoffset: -480;
}

.btnr span {
    color: var(--text-color);
    font-size: 21px;
    font-size: 21px;
    font-weight: 700;
}

.navbarCenterr {
    margin-top: -0.5rem;
}

.phoneIcon {
    font-size: smaller;
}

/*///////////////////////////    Footer    //////////////////////////*/

footer .background-footer {
    padding: 70px 0px;
    color: var(--text-color);

    background-image: url("../image/banner-en.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.1);
}

.subscribe {
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: var(--light-bg-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
    border-radius: 16px;
    font-weight: 700;
}

/* Container for social icons */
.social-media-icons li {
    list-style: none;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-link i {
    color: inherit;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background-color: #3b5998;
    transform: scale(1.1);
    color: white;
}

.social-link i {
    color: white;
}

.social-link[href*="facebook"] {
    background-color: #3b5998;
}

.social-link[href*="youtube"] {
    background-color: #ed302f;
}

/*/////////////////////////   dashboard ////////////////////////*/

.dashboard_slider {
    width: 18rem;
    height: 36rem;
    color: var(--text-color-green);
}

.viewMoreBtn_dashboard {
    background-color: var(--text-color);
    color: var(--light-bg-color);
    width: 221px;
    height: 53px;
    display: flex;
    align-items: center;
    border: 4px solid #92b464;
    font-weight: 700;
    justify-content: space-around;
}

/* //////////////////////////////////      Course Details         //////////////////////////// */

/* Course mainBanner  */
.courseBanner {
    background-image: linear-gradient(180deg,
            var(--gradient-color) 0%,
            var(--gradient-color2) 100%);
    min-height: 400px;
    padding: 20px;
}

.course-name {
    color: var(--text-color);
    border: 1px solid #000;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .course-name {
        margin-top: 50px;
    }
}

.instructor-name {
    color: var(--text-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    border: 4px solid var(--btn-bg-color);
}

@media (max-width: 767px) {
    .video-container {
        padding-bottom: 75%;
    }
}

.course-description {
    border-bottom: 3px solid var(--text-color);
    color: var(--text-color);
    width: 250px;
}

.buyNow {
    background-color: var(--btn-bg-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
}

.messengerIcon {
    color: var(--text-color);
}

/*////////////////////// //////  Instructor Start   ///////////////////*/

.instructorInfo {
    background-color: var(--main-bg-color);
    padding: 20px;
    border: 2px solid #dbe1eb;
    display: flex;
    justify-content: left;
}

.instructorInfo h4 h5 {
    color: var(--text-color);
}

/*///////////////// instructor and hover  //////////////*/

.image {
    justify-content: space-between;
    height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
}

.image:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-140%, -50%);
    background-color: var(--gradient-color);
    opacity: 0.8;
    border-radius: 50%;
    transition: 0.8s;
}

.image:hover:after {
    transform: translate(-50%, -50%);
}

.image .show {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.8s;
}

.image .ima {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-2000px, -50%);
    color: #1f2e57;
    transition: 0.8s;
    transition-timing-function: ease-in;
}

.image:hover .ima {
    transform: translate(-50%, -50%);
    transition-timing-function: ease;
}

/*////////////////////////////////////   Featured Start ////////////////////////////*/

.featureSection {
    background-color: var(--light-bg-color);
    padding: 20px;
    border: 2px solid #dbe1eb;
}

.featureSection h4 h5 {
    color: var(--text-color);
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

@media (min-width: 992px) {
    .sticky {
        height: calc(100vh - 20px);

        overflow-y: auto;
    }
}

.container-height-tracker {
    height: auto;
}

@media (max-width: 767px) {
    .stickyTop {
        display: block;
        background-color: var(--light-bg-color);
        width: 100%;
        padding: 20px;
        margin-left: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
    }
}

/* /////////////////////   Learn Start //////////////////////////////// */

.learnInfo {
    background-color: var(--main-bg-color);
    padding: 20px;
    border: 2px solid #dbe1eb;
}

.learnInfo h4 h5 {
    color: var(--text-color);
}

/*/////////////////////////////////  Description Start ////////////////*/

.descriptionInfo {
    background-color: var(--main-bg-color);
    padding: 20px;
    border: 1px solid #000;
    border-radius: 30px;
}

.descriptionInfo h4 h5 {
    color: var(--text-color);
}

/*//////////////////////    Courses    ////////////////////////*/

.custom-card {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.custom-card img {
    height: 200px;
    object-fit: cover;
}

.custom-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fa-star {
    color: var(--text-color);
}

.courseManiBanner {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.courseManiBanner-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-bg-color);
    color: var(--text-color);
    padding: 20px;

    border-radius: 0 45px 0 45px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.courseManiBanner h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.courseManiBanner p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.courseManiBannerBtn {
    border: none;
    border-radius: 1.5rem;
    font-size: 1em;
    padding: 10px 20px;
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: #fff;
    font-weight: 700;
    width: 50%;
    cursor: pointer;
    text-decoration: none;
}

.heart-shape {
    position: absolute;
    width: 80px;
    height: 70px;
    background: radial-gradient(#5e75b4, #4e67aa);
    overflow: hidden;
    transform: rotate(-45deg);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    animation: moveUpDown 4s infinite;
}

.heart-shape::before,
.heart-shape::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(#5e75b4, #4e67aa);
    border-radius: 50%;
}

.heart-shape::before {
    top: -50px;
    left: 0;
}

.heart-shape::after {
    left: 50px;
    top: 0;
}

.heart-shape-top-left {
    top: 05;
    left: 140px;
}

.heart-shape-bottom-right {
    bottom: 30;
    right: 140px;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(-20px);
    }
}

@media (max-width: 576px) {
    .courseManiBanner {
        padding: 10px 0;
        min-height: 350px;
    }

    .courseManiBannerBtn {
        width: 80%;
    }

    .heart-shape {
        display: none;
    }

    .courseManiBanner-content {
        height: 50%;
        width: 70%;
        margin-top: 100px;
    }

    .courseManiBanner-content h1 {
        font-size: 18px;
    }

    .courseManiBanner-content p {
        font-size: 14px;
    }
}

.course_button {
    background-color: #5b5e69;
    color: var(--text-color);
    color: var(--text-color);
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
}

.course_button2 {
    background-color: #5b5e69;
    color: var(--text-color);
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
}

/* ////////////////////////////////////////////  Checkout   /////////////////////////// */

.progressbar {
    counter-reset: step;
}

.progressbar li {
    list-style: none;
    display: inline-block;
    width: 33%;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #ddd;
    border-radius: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    background-color: var(--text-color);
}

.progressbar li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active {
    color: var(--text-color);
}

.progressbar li.active:before {
    border-color: var(--text-color);
}

.progressbar li.active+li:after {
    background-color: var(--text-color);
}

/* Tablet (Medium screens) */
@media (max-width: 1024px) {
    .progressbar li {
        width: 31%;
    }
}

/* Mobile (Small screens) */
@media (max-width: 480px) {
    .progressbar li {
        width: 30%;
        text-align: center;
    }
}

.paymentBox {
    background-color: var(--main-bg-color);
    padding: 20px;
    border: 2px solid #dbe1eb;
    display: flex;
    min-height: 200px;
}

/* Tablet (Medium screens) */
@media (max-width: 1024px) {
    .paymentBox {
        padding: 15px;
        min-height: 150px;
        flex-direction: column;
    }
}

/* Mobile (Small screens) */
@media (max-width: 480px) {
    .paymentBox {
        padding: 10px;
        border: 1px solid #dbe1eb;
        flex-direction: column;
        min-height: 120px;
    }
}

.btnproceed {
    border: none;
    border-radius: 10px;
    padding: 2%;
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.paymentHr {
    border-top: 1px dashed #1f2e57;
}

.paymentBox h4 h5 {
    color: var(--text-color);
}

/*/////////////////////////>>>>>> Quiz <<<<<<//////////////////*/

.quizBox {
    background-color: var(--main-bg-color);
    padding: 15px;
    border: 2px solid #dbe1eb;
}

.assessmentBox {
    background-color: var(--main-bg-color);
    padding: 33px;
    /* border: 2px solid #dbe1eb; */
}

.progress-bar {
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
}

/*/////////////////////////>>>>>> Feed <<<<<<//////////////////*/

.feedBody {
    background-color: #eeeeee;
}

.feedBody a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .menu_top_dashboard {
        margin-top: 90px !important;
        padding-top: 10px;
    }
}


.h7 {
    font-size: 0.8rem;
}

.gedf-wrapper {
    margin-top: 0.97rem;
}

@media (min-width: 992px) {
    .gedf-main {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .gedf-card {
        margin-bottom: 2.77rem;
    }
}

.feed-search-input {
    padding-left: 30px;
    width: 350px;
    height: 45px;
    border-radius: 25px;
    background-color: #eeeeee;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.feed-search-icon {
    position: absolute;
    border-radius: 1px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
    padding-left: 8px;
    padding-right: 20px;
}

.shareBtn {
    margin-top: 10%;
    border: none;
    border-radius: 10px;
    padding: 2%;
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.feedP {
    font-size: 15px;
    font-family: Montserrat, sans-serif;
}

.font-xsssss {
    font-size: 10px !important;
}

.font-xssss {
    font-size: 15px !important;
}

.font-xsss {
    font-size: 14px !important;
}

.font-xss {
    font-size: 16px !important;
}

.font-xs {
    font-size: 18px !important;
}

.font-sm {
    font-size: 20px !important;
}

.font-md {
    font-size: 22px !important;
}

.font-lg {
    font-size: 25px !important;
}

.font-xl {
    font-size: 28px !important;
}

.font-xxl {
    font-size: 32px !important;
}

.mont-font {
    font-family: Montserrat, sans-serif;
}

.avatar {
    top: 3px;
    position: relative;
}

.avatar img {
    display: inline-block;
    margin-bottom: 0;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.bg-primary-gradiant {
    background: linear-gradient(135deg, #05f, #09f) !important;
}

.bg-primary-confirm {
    background: linear-gradient(135deg, #05f, #09f) !important;
    text-decoration: none;
}

.bg-mini-gradiant {
    background: linear-gradient(to right, #ee0979, #ff6a00) !important;
}

.bg-blue-gradiant {
    background: linear-gradient(to right, #0575e6, #021b79) !important;
}

.bg-grey {
    background-color: #eee !important;
}

.bg-lightblue {
    background-color: #e8f1fa !important;
}

.bg-gold-gradiant {
    background: linear-gradient(to right, #f2994a, #f2c94c) !important;
}

.bg-red-gradiant {
    background: linear-gradient(to right, #e44d26, #f16529) !important;
}

.rounded-xl {
    border-radius: 30px !important;
}

.ls-1 {
    letter-spacing: 0.4px;
}

.ls-2 {
    letter-spacing: 0.6px;
}

.ls-3 {
    letter-spacing: 1px;
}

.bg-grey {
    background-color: var(--light-bg-color) !important;
    text-decoration: none;
}

.bg-lightblue {
    background-color: #e8f1fa !important;
}

.bg-lightblue2 {
    background-color: #f7f9fd !important;
}

.bg-lightgreen {
    background-color: #f2faf6 !important;
}

.bg-greyblue {
    background-color: #f6f7fc !important;
}

.bg-greylight {
    background-color: #f5f5f5 !important;
}

.bg-lightgrey {
    background-color: #f9f9f9 !important;
}

.btn-round-sm {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    display: inline-block;
    line-height: 35px !important;
    text-align: center;
}

.btn-round-sm i {
    line-height: 35px !important;
}

.h100 {
    height: 100px !important;
}

.bor-0 {
    border: 0 !important;
}

.rounded-xxl {
    border-radius: 15px !important;
}

.text-grey-500 {
    color: #adb5bd !important;
}

.text-grey-600 {
    color: #6c757d !important;
}

.text-grey-700 {
    color: #495057 !important;
}

.text-grey-800 {
    color: #343a40 !important;
}

.text-grey-900 {
    color: #212529 !important;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.border-light-md {
    border: 2px #f1f1f1 solid !important;
}

.border-dark-md {
    border: 2px #999 solid !important;
}

.text-grey-700 {
    color: #495057 !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-xss {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
}

.fw-600 {
    font-weight: 600 !important;
    font-size: 12px !important;
}

.ls-1 {
    letter-spacing: 0.4px;
}

.card-body a {
    text-decoration: none;
}

.iconss {
    font-size: 10px !important;
    color: #fff;
    top: 0;
    position: relative;
}

.navigation .nav-content ul li.brackets {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.feeedCard {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.feeedCard>hr {
    margin-right: 0;
    margin-left: 0;
}

.feeedCard>.list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.feeedCard>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.feeedCard>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.feeedCard>.feeedCard-header+.list-group,
.feeedCard>.list-group+.feeedCard-footer {
    border-top: 0;
}

.feeedCard-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.feeedCard-title {
    margin-bottom: 0.5rem;
}

.feeedCard-subtitle {
    margin-top: -0.25rem;
    margin-bottom: 0;
}

.feeedCard-text:last-child {
    margin-bottom: 0;
}

.feeedCard-link:hover {
    text-decoration: none;
}

.feeedCard-link+.feeedCard-link {
    margin-left: 1rem;
}

.feeedCard-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.feeedCard-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.feeedCard-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.feeedCard-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.feeedCard-header-tabs {
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
    margin-left: -0.5rem;
    border-bottom: 0;
}

.feeedCard-header-pills {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.feeedCard-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

.feeedCard-img,
.feeedCard-img-bottom,
.feeedCard-img-top {
    width: 100%;
}

.feeedCard-img,
.feeedCard-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.feeedCard-img,
.feeedCard-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.feeedCard-group>.feeedCard {
    margin-bottom: 15px;
}

.color-theme-blue {
    --theme-color: #05f;
    --theme-color-rgb: 33, 150, 243;
    --theme-color-shade: #09f;
    --theme-color-tint: #1e74fd;
}

.color-theme-deepblue {
    --theme-color: #0f36c0;
    --theme-color-rgb: 33, 150, 243;
    --theme-color-shade: #103ace;
    --theme-color-tint: #1e74fd;
}

.text-current {
    color: #05f;
}

.feedNavMain {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.feedNavMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.feedNavMenu ul li {
    text-decoration: none;
    list-style: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedNavMenu ul li img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .feedNavMain .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .feedNavMain .col-lg-10 {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .stickySidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        overflow-y: auto;
        max-height: calc(100vh - 20px);
    }
}

@media (max-width: 768px) {
    .feedNavMain .col-md-3 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .feedNavMain .col-md-9 {
        flex: 0 0 80%;
        max-width: 80%;
        margin: 0;
    }

    .stickySidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        overflow-y: auto;
        max-height: calc(100vh - 20px);
    }
}

@media (max-width: 576px) {
    .feedNavMain .nav-top {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .feedNavMain .col-sm-4 {
        flex: 0 0 100%;
        max-width: 100%;
        background-color: #ffffff;
        margin-top: 18px;
    }

    .feedNavMain .d-flex.justify-content-between {
        flex-wrap: wrap;
    }

    .feedNavMain .search-container {
        display: none;
    }

    .feedNavMain .feedNavMenu {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
}

.leftList {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(245, 246, 249);
    font-size: 20px;
}

.leftSecondList {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: #eeeeee;
}

.news-feed {
    margin-left: 10px;
    line-height: 50px;
    font-size: 15px;
    transition: all 0.2s ease;
    margin-right: auto;
    padding-right: 10px;
}

.open-font {
    font-family: "Open Sans", sans-serif;
}

@media (max-width: 767.98px) {
    .order-md-2 {
        order: 1;
    }

    .order-md-1 {
        /* display: none; */
    }

    .order-md-3 {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .order-md-2 {
        order: 1;
    }

    .order-md-1 {
        /* display: none; */
    }

    .order-md-3 {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .nav-header .nav-top {
        position: relative;
        width: 100%;
    }
}

/*////////////////////          Customer Dashboard           /////////////////*/

.nav-header .nav-top a {
    line-height: 90px;
    width: 280px;
    text-align: left;
    padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.stickySidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow-y: auto;
    max-height: calc(100vh - 20px);
}

@media (max-width: 992px) {
    .stickySidebar {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .stickySidebar {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
}

.leftSidebar {
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    border-right: 1px solid #dee2e6;
    transition: all 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    /* position: fixed; */
    /* top: auto;
    left: auto;
    bottom: auto;
    overflow-y: auto; */
}

.profileDashboard {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-image {
    width: 80px;
    height: 80px;
    margin-left: 5px;
    object-fit: cover;
    border: 2px solid #1f2e57;
}

.profile-name {
    font-size: 1.25rem;
    color: #343a40;
    margin: 0;
}

.icon-with-badge {
    position: relative;
}

.icon-container {
    display: flex;
    gap: 15px;
}

.icon-container a {
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.icon-container a:hover {
    background-color: #e2e6ea;
}

.icon-container svg {
    width: 24px;
    height: 30px;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.icon-container a:hover svg {
    transform: scale(1.1);
}

.sidebar-nav .nav-item {
    margin: 10px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #343a40;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-link:hover {
    background-color: #e9ecef;
    color: #1f2e57;
}

.icon-with-badge {
    position: relative;
}

.coursenotificatio {
    position: absolute;
    top: 0px;
    right: 1px;
    width: 16px;
    height: 16px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    transition: transform 0.2s ease-in-out;
}

.sidebar-item i {
    font-size: 18px;
    margin-right: 10px;
}

.nav-link.active {
    background-color: #1f2e57;
    color: #ffffff;
}

.search-container {
    position: relative;
}

.sidebar-header {
    font-size: 0.75rem;
}

a.sidebar-link {
    padding: 0.625rem 1.625rem;
    display: block;
    font-size: 1rem;
}

/* @media (max-width: 576px) {

    .sidebar-nav .nav-link .fa-regular,
    .sidebar-nav .nav-link .fa-solid {
        display: inline-block !important;
        width: 0.3rem;
        text-align: center;
    }

    .sidebar-nav .nav-link span {
        display: block;
        text-align: left;
        font-size: 10px;
    }

    .profileDashboard {
        display: none;
    }
} */

@media (max-width: 768px) {

    .sidebar-nav .nav-link .fa-regular,
    .sidebar-nav .nav-link .fa-solid {
        display: inline-block !important;
        width: 0.3rem;
        text-align: center;
    }

    .sidebar-nav .nav-link span {
        /* display: none; */
        display: block;
        text-align: left;
        font-size: 13px;
        margin-left: -15px;
    }

    .profileDashboard {
        display: none;
    }
}

@media (max-width: 992px) {
    .dashboardRow .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .dashboardRow .col-lg-10 {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .stickySidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        overflow-y: auto;
        max-height: calc(100vh - 10px);
    }
}

@media (max-width: 768px) {
    .dashboardRow .col-md-3 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .dashboardRow .col-md-9 {
        flex: 0 0 80%;
        max-width: 80%;
        margin: 0;
    }

    .stickySidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 61px;
        overflow-y: auto;
        max-height: calc(100vh - 10px);
    }
}

@media (max-width: 576px) {
    .dashboardRow .col-sm-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .dashboardRow .col-sm-10 {
        flex: 0 0 80%;
        max-width: 80%;
        margin: 0;
    }

    .stickySidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 61px;
        overflow-y: auto;
        max-height: calc(100vh - 10px);
    }
}

.dashboard_border {
    color: #f8f9fa;
    border: none;

    background-image: linear-gradient(135deg, #0d6efd, #4572bf);
    width: 100%;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
}

.dashboard_border::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.6s ease-in-out;
    transform: rotate(45deg);
    z-index: 0;
}

.dashboard_border:hover::before {
    top: -70%;
    left: -70%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.3),
            transparent);
}

.dashboard_border:hover {
    background-image: linear-gradient(135deg, #9fb2d5, #a2b5d2);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
    cursor: pointer;
    color: #000;
}

.dashboard_border .sidebar-link {
    color: #dddfe7 !important;
}

.dashboard_border:hover {
    color: #dddfe7;
}

.nav-header .nav-menu.active {
    background-color: transparent;
}

.nav-header .nav-menu.active:before {
    transform: translateY(8px) rotate(45deg);
}

.nav-header .nav-menu.active:after {
    transform: translateY(-8px) rotate(-45deg);
    top: 22px;
    width: 30px;
}

@media (max-width: 991.98px) {
    .nav-header .nav-menu {
        display: inline-block;
    }
}

@media (max-width: 991.98px) {
    .nav-header .header-search {
        display: none;
    }
}

.nav-header .header-search .form-group.icon-input i {
    top: 14px;
}

@media (max-width: 991.98px) {
    .nav-header .menu-icon {
        display: none;
    }
}

.dashboard_quiz {
    height: 20rem;
}

@media (max-width: 768px) {
    .dashboard_quiz {
        height: auto !important;
        padding: 0 !important;
        display: block !important;
    }
}

.dashCountCard {
    height: 7rem;
}

mt-100 {
    margin-top: 200px;
}

.progressy {
    width: 150px;
    height: 150px !important;
    float: left;
    line-height: 150px;
    background: none;
    margin: 20px;
    box-shadow: none;
    position: relative;
}

.progressy:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 22px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.progressy>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progressy .progressy-left {
    left: 0;
}

.progressy .progressy-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 22px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progressy .progressy-left .progressy-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progressy .progressy-right {
    right: 0;
}

.progressy .progressy-right .progressy-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}

.progressy .progressy-value {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    font-size: 24px;
    color: black;
    line-height: 135px;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 5%;
}

.progressy.blue .progressy-bar {
    border-color: #5a00dd;
}

.progressy.blue .progressy-left .progressy-bar {
    animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}

/*////////////////////    my-course        ////////////////////*/

.showBtn {
    border: none;
    border-radius: 1.5rem;
    font-size: 1em;
    padding: 10px 20px;
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

/*////////////////////    overview        ////////////////////*/

.overviewCertificate {
    padding: 0.25rem;
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    max-width: 100%;
}

.lockIcon {
    position: absolute;
    top: 41%;
    left: 45%;
}

.overview h4 {
    color: var(--btn-bg-color);
}

.stretch-cardd>.cardd {
    width: 100%;
    min-width: 100%;
}

@media (max-width: 991.98px) {
    .padding {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .padding {
        padding: 1rem;
    }
}

.work {
    width: 15rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    color: black;
}

.padding {
    padding: 3rem;
}

.cardd {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}

.cardd {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    margin-left: -22px;
    padding-top: -3px;
    border-radius: 0;
}

.cardd .card-block {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
}

h6 {
    font-size: 16px !important;
}

.text-c-green {
    color: #2ed8b6;
}

.m-l-10 {
    margin-left: 10px;
}

.proj-progress-card .progresss {
    height: 6px;
    overflow: visible;
    margin-bottom: 10px;
}

.proj-progress-card .progresss .progresse-bar {
    position: relative;
}

.progresss .progresse-bar {
    height: 100%;
    color: inherit;
}

.bg-c-red {
    background: #ff5370;
}

.proj-progress-card .progresss .progresse-bar.bg-c-red:after {
    border: 3px solid #ff5370;
}

.proj-progress-card .progresss .progresse-bar:after {
    content: "";
    background: #fff;
    position: absolute;
    right: -6px;
    top: -4px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.bg-c-blue {
    background: #4099ff;
}

.proj-progress-card .progresss .progresse-bar.bg-c-blue:after {
    border: 3px solid #4099ff;
}

.proj-progress-card .progresss .progresse-bar.bg-c-green:after {
    border: 3px solid #2ed8b6;
}

.bg-c-green {
    background: #2ed8b6;
}

.bg-c-yellow {
    background: #ffb64d;
}

.proj-progress-card .progresss .progresse-bar.bg-c-yellow:after {
    border: 3px solid #ffb64d;
}

.m-b-30 {
    margin-bottom: 30px;
}

.text-c-red {
    color: #ff5370;
}

@media (max-width: 1199.98px) {
    .nav-header .center-menu-icon {
        display: none;
    }
}

.nav-header .menu-search-icon {
    display: none;
}

@media (max-width: 991.98px) {
    .nav-header .menu-search-icon {
        display: inline-block;
    }
}

.feedcoursen i {
    font-size: 20px;
}

.bg-transparent-card {
    background: 0 0 !important;
}

.item-content {
    display: inline;
    padding-left: 0;
    position: relative;
}

.switchcolor-wrap ul li .item-content .ti-check {
    left: 10px;
    top: 3px !important;
}

.switchcolor-wrap ul li .item-content .ti-check:before {
    color: #fff;
    opacity: 0;
}

.display1-size {
    font-size: 36px !important;
}

.display2-size {
    font-size: 44px !important;
}

.display3-size {
    font-size: 50px !important;
}

.fredoka-font {
    font-family: "Fredoka One", cursive;
}

/* progress bar 2nd */

.progress-title {
    font-size: 18px;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    margin: 0 0 25px;
}

.progress {
    height: 15px;
    background: #e9e9ea;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: visible;
    position: relative;
}

.progress:before,
.progress:after {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e9e9ea;
    position: absolute;
    top: -5px;
    left: 0;
    z-index: 1;
}

.progress:after {
    border: 10px solid #e9e9ea;
    left: auto;
    right: 0;
}

.progress .progress-bar {
    box-shadow: none;
    border: none;
    border-radius: 15px;
    position: relative;
    -webkit-animation: animate-positive 1s;
    animation: animate-positive 1s;
}

.progress .progress-value {
    width: 70px;
    height: 35px;
    line-height: 27px;
    border-radius: 20px;
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    right: 0;
    z-index: 2;
}

.progress.orange:before {
    border: 7px solid #fe3b3b;
}

.progress.blue:before {
    border: 7px solid #1a4966;
}

.progress.green:before {
    border: 7px solid #53aa2c;
}

.progress.purple:before {
    border: 7px solid #66406f;
}

.progress.orange .progress-value {
    border: 5px solid #fe3b3b;
    color: #fe3b3b;
}

.progress.blue .progress-value {
    border: 5px solid #1a4966;
    color: #1a4966;
}

.progress.green .progress-value {
    border: 5px solid #53aa2c;
    color: #53aa2c;
}

.progress.purple .progress-value {
    border: 5px solid #66406f;
    color: #66406f;
}

@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

/* 3rd row dashboard */
.main-container {
    background: white;
    color: #f3f4f6;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
}

.year-stats {
    white-space: nowrap;
    max-height: 170px;
    overflow: hidden;
}

.year-stats:hover {
    overflow-x: auto;
}

::-webkit-scrollbar {
    height: 5px;
    width: 100%;
}

::-webkit-scrollbar-track {
    background: #444e80;
}

::-webkit-scrollbar-thumb {
    background: #abafc6;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #5397d6;
}

.month-group {
    cursor: pointer;
    max-width: 400px;
    height: 110px;
    margin: 10px;
    display: inline-block;
}

.bar {
    background-color: #abafc6;
    width: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.month-group:hover .bar,
.selected .bar {
    background: #5397d6;
}

.month-group:hover p,
.selected p {
    color: black;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.stats-info {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.graph-container {
    position: relative;
}

.percent {
    display: block;
    width: 120px;
    height: 120px;
}

.circle {
    stroke: #915db1;
    fill: none;
    stroke-width: 3;
}

.circle:nth-child(2) {
    stroke: #e59f3c;
}

.circle:nth-child(3) {
    stroke: #5397d6;
}

.circle:nth-child(4) {
    stroke: #4cc790;
}

.graph-container p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: black;
    text-align: center;
}

.info p {
    margin-bottom: 10px;
}

.info span {
    color: black;
}

/* //////////////////////////   Connection Request    ///////////////////*/

.requestSidebar {
    background-color: white;
    box-shadow: 5px 0px 15px rgba(0, 0, 0, 0.1);
}

.requestIcon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #eeeeee;
    text-align: center;
    line-height: 30px;
    margin-right: 5px;
    font-size: 15px;
}

.request_border {
    color: #05f;
    border: none;
    border-radius: 0px 40px 40px 0px;
    background-color: #eeeeee;
    width: 100%;
}

.nav-caption {
    margin-bottom: 5px;
    padding-left: 25px;
    white-space: nowrap;
    -webkit-transition: padding 0.25s;
    -o-transition: padding 0.25s;
    transition: padding 0.25s;
}

/*/////////////////////        Profile       ////////////////// */

.avatar .profileImg {
    display: inline-block;
    margin-bottom: 0;
    height: 150px;
    width: 150px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/*///////////////            chat         /////////////*/

.chat-body {
    margin-top: 20px;
    margin-bottom: 0;
    padding-right: 20px;
    padding-left: 20px;
    overflow: auto !important;
}

.chat-body .messages-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 70px !important;
}

.chat-body .messages-content .message-item.outgoing-message {
    margin-left: auto;
    margin-right: 5px;
}

.chat-body .messages-content .message-item.outgoing-message .message-user {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.chat-body .messages-content .message-item.outgoing-message .message-wrap {
    background-color: var(--theme-color);
}

.chat-body .messages-content .message-item {
    max-width: 97%;
    margin-bottom: 20px;
}

@media (max-width: 1199.98px) {
    .chat-body .messages-content .message-item {
        max-width: 75%;
    }
}

.chat-body .messages-content .message-item .message-wrap {
    padding: 8px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    z-index: 2;
}

.chat-body .messages-content .message-item .message-wrap:after {
    background-color: var(--theme-color);
    opacity: 0.1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    z-index: 1;
}

.chat-body .messages-content .message-item .message-wrap.outgoing-message::after {
    display: none;
}

@media (max-width: 1199.98px) {
    .chat-body .messages-content .message-item .message-wrap {
        padding: 20px;
    }
}

.chat-body .messages-content .message-item .message-user {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
}

.chat-body .messages-content .message-item .message-user .avatar {
    top: 3px;
    position: relative;
}

.chat-body .messages-content .message-item .message-user .avatar img {
    display: inline-block;
    margin-bottom: 0;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.chat-body .messages-content .message-item .message-user .h5,
.chat-body .messages-content .message-item .message-user h5 {
    font-size: 14px;
    color: #0c0c0d;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.chat-body .messages-content .message-item .message-user .time {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 0;
    position: relative;
    top: -3px;
    right: auto;
    display: inline-block;
}

.chat-body .messages-content .message-item .message-user .time .ti-double-check:before {
    content: "";
    font-family: themify;
    position: relative;
    left: 9px;
}

.chat-body .messages-content .message-item .message-user .time .ti-double-check:after {
    content: "";
    font-family: themify;
}

/*////////////////////////            coursen    ///////////////////*/

.coursen-box li a {
    padding-left: 70px !important;
    position: relative;
}

.coursen-box li {
    list-style-type: none;
}

.coursen-box li a .h6,
.coursen-box li a h6 {
    float: left;
}

.coursenImage {
    position: absolute;
    left: 15px;
    top: 15px;
}

.coursen-box li a .coursen-react {
    position: absolute;
    top: 40px;
    left: 45px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    line-height: 20px;
    text-align: center;
}

.btn-round-md {
    width: 45px;
    height: 45px;
    border-radius: 45px;
    display: inline-block;
    line-height: 45px !important;
    text-align: center;
}

.btn-round-lg {
    width: 45px;
    height: 45px;
    border-radius: 45px;
    display: inline-block;
    line-height: 22px !important;
    text-align: center;
}

/*/////////////////////////////        Chat         //////////////////////////*/

.chat-bottom {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    width: 98%;
    z-index: 11;
}
@media (max-width: 767.98px) {
    .chat-bottom {
        width: 90%;
    }
}

.chat-form {
    padding: 4px;
    width: 100%;
}

.chat-form .form-group {
    width: calc(100% - 90px);
    border-radius: 30px;
    float: left;
    margin: 0 5px;
    position: relative;
}

.chat-form .form-group:after {
    background-color: var(--theme-color);
    opacity: 0.08;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
}

.chat-form input {
    width: 100%;
    border: 0;
    border-radius: 30px;
    font-size: 14px;
    padding: 0 15px;
    line-height: 40px;
    color: #ddd;
    font-weight: 500;
    border: 2px solid #ddd;
}

.chat-form button {
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.chat-form button i {
    font-size: 16px;
}

.chat-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0 0;
}

@media (max-width: 767.98px) {
    .chat-body {
        margin-top: 20px;
        margin-bottom: 0;
        padding-right: 20px;
        padding-left: 20px;
        overflow: auto !important;
    }
}

/*//////////////////////////////           Connections         ///////////////////////*/

.search-form-2 {
    position: relative;
}

.search-form-2 input {
    height: 45px;
    line-height: 45px;
    padding-left: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.search-form-2 .connectionI {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #999;
}
@media (max-width: 767.98px) {
    .search-form-2 {
        margin-top: 15px;
    }
}

.form-control:focus {
    border-color: var(--theme-color);
}

.avatarFriend {
    display: inline-block;
    margin-bottom: 0;
    height: 80px;
    width: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.card_slider {
    padding: 50px 0;
}

.slider_container .container {
    padding: 0 15px;
    max-width: 1230px;
    margin: -auto;
}

/* paid course content */
.course_video {
    height: 23rem;
    width: 40rem;

    border: 4px solid var(--btn-bg-color);
    border-radius: 10px;
}

@media (max-width: 767px) {
    .course_video {
        width: 95%;
    }
}

.featureSection2 {
    padding: 20px;
    border: 2px solid #dbe1eb;
    border-radius: 10px;
}

/* progresse */

.file {
    background-color: #fbad41;
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
}

.doc {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 577px) and (max-width: 768px) {
    .course-btn {
        margin-top: -10rem;
        margin-left: 20rem;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .course-btn {
        margin-top: -10rem;
        margin-left: 20rem;
        text-align: center;
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .course-btn {
        margin-top: -15rem;
        margin-left: 30rem;
        text-align: center;
    }
}

@media (min-width: 1400px) {
    .course-btn {
        margin-top: -15rem;
        margin-left: 40rem;
        text-align: center;
    }
}

/*////////////////////////                overview       ///////////////////////////*/

@media (min-width: 768px) {
    .overview-margin {
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media (min-width: 320px) {
    .vertical-line {
        border-left: 1px dashed #000;
        height: 30px;
        margin-top: -20px;
        margin-bottom: -10px;
        margin-left: 5px;
    }
}

.course-text {
    /* overflow: hidden; */
    white-space: nowrap;
    text-overflow: ellipsis;
}

.overviewBanner {
    height: 200px;
}

/*
invoice
 */

@media (max-width: 576px) {
    #banner_margin {
        margin-top: 9rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #banner_margin {
        margin-top: 4rem;
    }
}

@media (min-width: 769px) and (max-width: 2560px) {
    #banner_margin {
        margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    #factt {
        width: 10rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #factt {
        width: 10rem;
    }
}

@media (min-width: 769px) and (max-width: 2560px) {
    #factt {
        width: 10rem;
    }
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
    display: block;
}

.sliderStory_button {
    background-color: var(--text-color);
    color: var(--text-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 31px;
    transform: translateY(-50%);
}

.sliderStory_button2 {
    background-color: var(--text-color);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 31px;
    transform: translateY(-50%);
}

/* ///////////////////////        Lesson  ///////////////////////// */

.lesson {
    background-color: var(--main-bg-color);
    border: 2px solid #dbe1eb;
}

.lessonBanner {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lessonBanner-content {
    max-width: 800px;
    color: var(--text-color);
}

.lessonBanner h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.lessonBanner a {
    text-decoration: none;
    color: var(--btn-bg-color);
}

.dropdown-menu .dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -1px;
}

/* For mobile and tablet devices */
@media (max-width: 992px) {
    .dropdown-menu .dropdown-submenu {
        position: static;
    }
}

.dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-submenu .dropdown-menu {
    display: none;
    min-width: 180px;
    left: 100%;
    top: 0;
    margin-top: -1px;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

@media (max-width: 992px) {
    .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: auto;
        position: static;
        margin-top: 0;
    }
}

.stickySidebar_two {
    position: -webkit-sticky;
    position: sticky;
    top: 82px;
    overflow-y: auto;
    max-height: calc(100vh - 20px);
}

@media (max-width: 992px) {
    .stickySidebar_two {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .stickySidebar_two {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
}

.border_color {
    /* background-color: #ABCB80; */
    margin: 10px;
}

/* .border_color2 { */
/* border: 5px solid #ABCB80; */
/*
} */

/*///////////////////////////     Instructor    ////////////////////////*/

.instructorBanner {
    width: 100%;
    height: 500px;
    text-align: center;
    background-color: var(--gradient-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.instructorBanner-content {
    width: 90%;
    height: 400px;
    background-color: white;
    color: var(--text-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insBannerImg {
    position: relative;
    display: inline-block;
}

@media (max-width: 768px) {
    .insBannerImg {
        display: none;
    }
}

.semiCircle {
    border-radius: 0% 100% 100% 0% / 100% 0% 100% 0%;
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    position: absolute;
    top: 215px;
    right: 1398px;
    width: 100px;
    height: 100px;
    transform: translate(50%, -50%);
    opacity: 1.4;
}

.semiCircle2 {
    border-radius: 0% 100% 0% 100% / 0% 0% 100% 100%;
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    position: absolute;
    top: 215px;
    right: 137px;
    width: 100px;
    height: 100px;
    transform: translate(50%, -50%);
    opacity: 1.4;
}

@media (max-width: 768px) {
    .semiCircle2 {
        right: 84px;
    }
}

.insBannerImg img {
    display: block;
    max-width: 100%;
}

/*///////////////////////////    Invoice    ////////////////////////*/

.invoice-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.invoice-header img {
    height: 70px;
}

.invoice-title {
    text-align: right;
}

.invoice-title h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.invoice-title p {
    margin: 5px 0;
    color: #777;
}

.invoice-details {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
}

.invoice-details div {
    width: 48%;
}

.invoice-details h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.invoice-details p {
    margin: 5px 0;
    color: #555;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.invoice-table thead {
    /* background-color: #F6FBE8; */
    background-color: #d0dcff;
}

.invoice-table th,
.invoice-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.invoice-table th {
    font-size: 16px;
    color: #333;
}

.invoice-table td {
    font-size: 14px;
    color: #555;
}

.invoice-total {
    text-align: right;
    margin-top: 20px;
}

.invoice-total h2 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.invoice-footer {
    text-align: center;
    margin-top: 50px;
    color: #777;
}

.exportBtn {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 5px;
    padding-top: 10px;
}

.print {
    color: blue;
}

.export {
    color: red;
}

.swiper-pagination-bullet-active {
    background-color: var(--btn-bg-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--light-bg-color);
}

/*//////////////////////////////   certificate   ///////////////////////*/

.overviewCertificate1 {
    padding: 0.25rem;
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    max-width: 100%;
}

.lockIcon1 {
    position: absolute;
    top: 41%;
    left: 45%;
}

.certificate {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

.certificate img {
    height: auto;
    width: 100%;
}

form .form-group input {
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ced4da;
}

form button {
    border-radius: 0;
}

.bannerResponsive {
    margin-left: 8rem;
}

@media (min-width: 992px) {
    .responsive-margin {
        margin-left: 3rem !important;
    }
}

@media (max-width: 576px) {
    #factt {
        width: 16rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #factt {
        width: 16rem;
    }
}

@media (min-width: 769px) and (max-width: 2560px) {
    #factt {
        width: 16rem;
    }
}

@media (max-width: 576px) {
    .bannerResponsive {
        margin-left: 0px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .bannerResponsive {
        margin-left: 0px;
    }
}

@media (min-width: 769px) and (max-width: 2560px) {
    .bannerResponsive {
        margin-left: 0rem;
    }
}

.bannerNew {
    margin-bottom: 3rem;
}

select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

select,
textarea.reply-textbox {
    width: 100%;
    padding: 24px;
    border: 1px solid #ccc;
    border-radius: 50px;
    resize: vertical;
}

/* Media query for mobile devices */
@media (max-width: 540px) {

    select,
    textarea.reply-textbox {
        padding: 12px;
        border-radius: 20px;
        width: 100%;
    }
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type="submit"] {
    background-color: #04aa6d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    width: 10rem;
    margin-left: 52rem;
}

@media (max-width: 576px) {
    input[type="submit"] {
        margin-left: 0rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    input[type="submit"] {
        margin-left: 15rem;
    }
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.containerReview {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
    font-weight: 700;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

    .col-25,
    .col-75,
    input[type="submit"] {
        width: 100%;
        margin-top: 0;
    }
}

.enbn {
    text-decoration: none;
}

.bg-custom-blue {
    background-color: #1f2e57;
}

.month-group.selected .bar {
    background-color: #007bff;
}

.month-group .bar {
    background-color: #b0b0b0;
}

.bar {
    width: 100%;
    height: 100%;
    background-color: #b0b0b0;
}

.selected .bar {
    background-color: #007bff;
}

.checkbox_radio {
    width: 1.3rem;
    height: 1.3rem;
}

/*/////////////////////////  chatbox for discussion start ////////////////////////*/

.open-button {
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    border: none;
    margin-bottom: 50px;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    z-index: 9;
    height: 223px;
    width: 296px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align: center;
}

.form-container {
    width: 19rem;
    padding: 10px;
    background-color: white;
    border: 2px solid #1f2e57;
    border-radius: 1rem;
}

.form-container textarea {
    width: 100%;
    padding: 20px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 50px;
}

.form-container textarea:focus {
    background-color: #ddd;
    outline: none;
}

.form-container .btn {
    background-color: #1f2e57;
    color: white;
    padding: 5px 2px;
    border: none;
    cursor: pointer;
    width: 60%;
    margin-bottom: 92px;
    opacity: 0.8;
}

.form-container .btn2 {
    border: none;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    background-color: white;
}

.form-container .btn:hover,
.open-button:hover {
    opacity: 1;
}

.stickychat {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow-y: auto;
    max-height: 400px;
}

#chat2 .form-control {
    border-color: transparent;
}

#chat2 .form-control:focus {
    border-color: transparent;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.chatting {
    height: 5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.chat-messages {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.livechat {
    width: 3.5rem;
    height: 3.5rem;
}

.livechatclose {
    width: 3rem;
    height: 3rem;
}

/*//////////////////////////// chatbox for discussion end //////////////////*/

/*/////////////////////      reply page ///////////////////////////////////*/
.like {
    width: 1rem;
    height: 1rem;
}

.like {
    width: 1rem;
    height: 1rem;
}

.reply {
    width: 1rem;
    height: 1rem;
}

.ins-img {
    width: 5rem;
    height: 5rem;
}

.folder {
    width: 2rem;
    height: 2rem;
}

.folder {
    width: 2rem;
    height: 2rem;
}

.text-color {
    color: var(--text-color);
}

.star-color {
    color: #ffa500;
}

.courseSortBtn {
    background-image: linear-gradient(90deg, #1f2e57 0%, #5974bf 100%);
    color: var(--light-bg-color);
    border-radius: 8px;
}

.courseSortOutlineBtn {
    background-color: white;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    border-radius: 8px;
    padding: 3px;
}

/*//////////////////////////   discussion  ////////////////////// */

.discussion_button {
    background-color: #1f2e57;
    color: white;
    padding: 5px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
}

.discussion_button:hover {
    background-color: white;
    color: #1f2e57;
}

.reply_button {
    background-color: #1f2e57;
    color: white;
    padding: 3px 7px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.reply_button:hover {
    background-color: white;
    color: #1f2e57;
    font-weight: bold;
}

.discussion_icon {
    color: white;
}

.submit_button {
    background-color: #1f2e57;
    border-radius: 5px;
    height: 2.5rem;
    width: 2.5rem;
}

.discussion_icon {
    color: white;
}

.submit_button {
    background-color: #1f2e57;
    border-radius: 5px;
    height: 2.5rem;
    width: 2.5rem;
}

/*/////////////////////  discussion end //////////////////*/

.btn-toggle {
    position: relative;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 1rem;
    width: 3rem;
    height: 1.5rem;
    background-color: #ddd;
    transition: background-color 0.25s;
}

.btn-toggle .handle {
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #fff;
    transition: left 0.25s;
}

.btn-toggle.active {
    background-color: #29b5a8;
}

.btn-toggle.active .handle {
    left: 1.6rem;
}

/* For small button size */
.btn-sm {
    width: 2.5rem;
    height: 1.25rem;
}

.btn-sm .handle {
    width: 1rem;
    height: 1rem;
}

.btn-sm.active .handle {
    left: 1.5rem;
}

.comment {
    background-color: #f8f9fa;
    padding: 1rem;
}

.comment_title {
    color: #1f2e57;
    font-weight: bold;
}

/* Only for small devices */
@media (max-width: 576px) {
    .navbar_res {
        margin-left: 1.5rem;
    }
}

.modal-dialog_1 {
    opacity: 1;
    margin-top: 200px;
}

.submit {
    border: none;
}

/*///////////        Settings    ///////////////////*/

.search-box {
    margin-top: 20px;
}

.popular-topics {
    margin-top: 30px;
}

.topic-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(227, 232, 227, 0.862);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 15rem;
}

.topic-box:hover {
    background-color: #f7f7f7;
}

.topic-icon {
    width: 40px;
    margin-right: 15px;
}

.help-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #eaf4ff;
    border-radius: 8px;
    width: 60rem;
}

.help-card h6 {
    margin-bottom: 0;
}

.settingTitle {
    padding-left: 3rem;
}

.custom-sidebar {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    height: 100vh;
}

.custom-sidebar h4 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.custom-sidebar-nav {
    list-style-type: none;
    padding-left: 0;
}

.custom-sidebar-nav .custom-sidebar-item {
    margin-bottom: 15px;
}

.custom-sidebar-nav .custom-sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.custom-sidebar-nav .custom-sidebar-link:hover {
    background-color: #007bff;
    color: #fff;
}

.custom-sidebar-nav .custom-sidebar-link.custom-active {
    background-color: #007bff;
    color: #fff;
}

.custom-sidebar-nav .custom-sidebar-link i {
    margin-right: 12px;
}

.custom-sidebar-divider {
    border-top: 1px solid #dee2e6;
    margin: 15px 0;
}

.course_details {
    width: 25rem;
    height: 21rem;
    margin-top: 7rem;
    padding-left: 2rem;
}

.custom-captcha {
    border: 1px solid #28a745;
    padding: 18px;
}

.custom-captcha-button {
    font-size: 28px;
    margin-left: 18px;
}

.first_navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
}

@media (max-width: 576px) {
    .navbar_position {
        margin-top: 3.75rem;

        position: fixed;
        top: 10;
        right: 0;
        left: 0;
        z-index: 1030;
        /* transition: margin-top 0.1s; */
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .navbar_position {
        /* margin-top: 3.75rem; */

        position: fixed;
        top: 10;
        right: 0;
        left: 0;
        z-index: 1030;
        /* transition: margin-top 0.1s; */
    }
}

@media (min-width: 769px) and (max-width: 2560px) {
    .navbar_position {
        /* margin-top: 1.75rem; */

        position: fixed;
        top: 27px;
        right: 0;
        left: 0;
        z-index: 1030;
        /* transition: margin-top 0.1s; */
    }
}

.navbar_fixed {
    margin-top: 0;
}

@media (max-width: 576px) {
    .navbar_bottom {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .navbar_bottom {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 769px) and (max-width: 2560px) {
    .navbar_bottom {
        margin-bottom: 4.5rem;
    }
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 2rem;
}

.logo-name {
    color: #198754;
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .home-page-logo {
        height: 40px;
    }

    .home-page-logo img {
        vertical-align: middle;
        height: 100%;
        padding: 2px;
    }

    .logo-name {
        color: #198754;
        font-size: 17px;
        font-weight: 600;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .home-page-logo {
        height: 40px;
    }

    .home-page-logo img {
        vertical-align: middle;
        height: 100%;
        padding: 2px;
    }

    .logo-name {
        color: #198754;
        font-size: 17px;
        font-weight: 600;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (min-width: 769px) and (max-width: 2560px) {
    .home-page-logo {
        height: 72px;
        padding: 3px;
    }

    .home-page-logo img {
        vertical-align: middle;
        height: 100%;
    }
}

.line_design img {
    width: 17rem;
    height: 3rem;
    padding-left: 2rem;
}

.fixed-height {
    width: 63rem;
    height: 42rem;
    overflow: hidden;
    margin-top: -2rem;
}

.register-right.fixed-height {
    height: 750zpx;
    /* Set the desired fixed height */
    overflow: hidden;
    /* Prevents scrollbars and hides any overflowing content */
}

@media (max-width: 576px) {
    .register-right.fixed-height {
        height: 773px;
        /* Set the desired fixed height */
        overflow: hidden;
        /* Prevents scrollbars and hides any overflowing content */
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .register-right.fixed-height {
        height: 773px;
        overflow: hidden;
    }
}

/* hashtag suggestions */

#hashtag-suggestions {
    position: relative;
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    margin-top: -3px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* badge icone */

.badge-icon {
    top: 50px;
    right: 50px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid #1f2e57; */
}

.file_logo {
    width: 2rem;
    height: 2rem;
}

.submission-status {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0 auto;
}

.submission-status h3 {
    font-size: 24px;
    color: #333;
}

.status-item {
    margin-bottom: 15px;
}

.status-item strong {
    font-weight: 600;
}

.status {
    font-size: 14px;
    font-weight: 400;
}

.submitted {
    color: #28a745;
    /* Green */
    background-color: #d4edda;
    padding: 8px 8px;
    border-radius: 5px;
}

.not-graded {
    color: #6c757d;
    /* Gray */
    background-color: #e2e3e5;
    padding: 8px 8px;
    border-radius: 5px;
}

.time-remaining {
    color: #17a2b8;
    /* Blue */
    background-color: #d1ecf1;
    padding: 8px 8px;
    border-radius: 5px;
}

.last-modified {
    color: #1424fc;
    /* Yellow */
    background-color: #98a6e4;
    padding: 8px 8px;
    border-radius: 5px;
}

.file-submissions {
    margin-top: 20px;
}

.file-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #007bff;
}

.file-link:hover {
    color: #0056b3;
}

.file-icon {
    font-size: 20px;
    margin-right: 10px;
}

.timestamp {
    font-size: 12px;
    color: #6c757d;
    margin-left: auto;
}

.choose_file {
    width: 50%;
    /* Adjust width as needed */
    /* padding: 20px; */
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0px;
    margin: 0 auto;
    /* This centers the element */
}

.choose_file .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.choose_file .form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

/*  */
/* Keyframes for animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-in-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-in-out forwards;
}

.slide-in-bottom {
    animation: slideInBottom 0.8s ease-in-out forwards;
}

/* notice */
.notice {
    height: 26rem;
    overflow: hidden;
}

.notice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.important_notice {
    color: black;
    top: 21%;
    left: 42%;
    font-size: 2.5rem;
    font-weight: bold;
}

.notice_description {
    color: black;
    top: 53%;
    left: 47%;
    font-size: 1.75rem;
}

/* Mobile Devices */
@media (max-width: 576px) {
    .notice {
        height: 7rem;
        /* Adjust height for smaller screens */
    }

    .important_notice {
        top: 20%;
        left: 44%;
    }

    .important_notice h1 {
        font-size: 13px;
    }

    .notice_description {
        top: 65%;
        left: 47%;
    }

    .notice_description p {
        font-size: 12px;
    }
}

/* Tablets */
@media (min-width: 577px) and (max-width: 768px) {
    .notice {
        height: 15rem;
        /* Adjust height for tablets */
    }

    .important_notice {
        font-size: 2rem;
        /* Adjust font size */
        top: 18%;
        left: 50%;
        transform: translateX(-50%);
    }

    .notice_description {
        font-size: 1.2rem;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* required */
.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.main-content {
    max-height: 100vh;
    /* full screen height */
    overflow-y: auto;
    /* enable vertical scroll when content overflows */
    scrollbar-width: thin;
    /* for Firefox */
    scrollbar-color: #aaa #f5f5f5;
    /* scrollbar color (thumb, track) */
}

/* Optional: nice scrollbar for WebKit browsers (Chrome, Edge, Safari) */
.main-content::-webkit-scrollbar {
    width: 8px;
}

.main-content::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* mobile menu for community left menu */
/* Default header height */
:root {
    --community-header-height: 120px;
}

/* Offcanvas ALWAYS stays below the fixed header */
#mobileMenu.offcanvas {
    top: var(--community-header-height) !important;
    height: calc(100% - var(--community-header-height)) !important;
    z-index: 2000 !important;
}

/* Medium screens */
@media (max-width: 768px) {
    :root {
        --community-header-height: 135px;
    }
}

/* Small phones */
@media (max-width: 576px) {
    :root {
        --community-header-height: 155px;
    }
}

/* Very small phones */
@media (max-width: 400px) {
    :root {
        --community-header-height: 170px;
    }
}
/* profi details*/
.about-title {
    text-align: center;
    font-size: 20px;        /* Larger font */
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
