* {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    padding: 0;
    margin: 0;
    outline: none !important;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

i {
    line-height: 1px
}

body {
    background: #efefef;
    overflow-x: hidden !important;
    direction: rtl;
}

:root {
    max-width: 100%;
    overflow-x: hidden !important;
    --theme: #852726;
    --theme2: #b74d4c;
}

::selection {
    color: white;
    background: var(--theme);
}

main {
    overflow-x: hidden !important;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 0;
    position: relative;
}

button {
    cursor: pointer !important;
    user-select: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

img {
    user-select: none;
    font-size: 0px;
}

header {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 6px 2%;
    background: #ffffff;
}

.HeaderInside {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

.HeaderAuth {
    display: flex;
    justify-content: start;
    align-items: center;
    width: max-content;
}

.HeaderAuth button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 5px;
    color: var(--theme2);
    border: solid 2px;
    background: none;
    transition: 350ms;
    font-size: 15px;
}

.HeaderAuth button i {
    margin: 0 0;
    margin-left: 5px;
}

.HeaderAuth button:last-child {
    color: #282828;
}

.HeaderLogo {
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    filter: brightness(100%);
    transition: 350ms;
    padding-right: 31px;
}

.HeaderLogo img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 50px;
}

.HeaderLogo:hover {
    transform: scale(1.1);
    filter: brightness(110%);
}

.HeaderLogo .Shine {
    display: none;
}

.HeaderTabs {
}

.HeaderTabs ul {
    display: flex;
    justify-content: start;
    align-items: center;
    width: max-content;
    padding: 0;
    margin: 0 0;
}

.HeaderTabs ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    cursor: pointer;
    user-select: none;
    transition: 300ms;
    font-weight: 500;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 600;
}

.HeaderTabs ul li:hover {
    transform: scale(1.05);
    color: var(--theme2);
}


.HeaderAuth button:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: white;
    transform: scale(1.05);
}

.HeaderAuth button:last-child:hover {
    background: var(--theme2);
    border-color: var(--theme2);
    color: white;
}

.BannerSlider {
    direction: ltr;
    position: relative;
    overflow: hidden;
    background: white;
}

.BannerSliderItem {
}

.BannerSliderItemInner {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 672px;
    position: relative;
    overflow: hidden;
    border-radius: 0px 0px 80px 80px;
    background: #afafaf;
}

.BannerSliderItemInner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: 350ms;
    cursor: pointer;
    filter: brightness(95%) contrast(95%);
}

.BannerSlider .slick-dots {
    position: absolute;
    left: 57px;
    bottom: 15px;
    padding: 0;
    margin: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.BannerSlider .slick-dots li {
    display: block;
    margin: 0 0;
    width: fit-content;
    padding: 0;
}

.BannerSlider .slick-dots li div {
    display: block;
    margin: 0 3px;
    width: 17px;
    aspect-ratio: 1/1;
    background: #ffffff;
    opacity: 0.6;
    border-radius: 100px;
    cursor: pointer;
    transition: 350ms;
}

.BannerSlider .slick-dots .slick-active div {
    transform: scale(1.05);
    opacity: 1;
    pointer-events: none;
}

.BannerSliderItemInner img:hover {
    filter: brightness(105%) contrast(105%);
    transform: scale(1.02);
}

.Shine {
    position: absolute;
    right: -40px;
    top: -50%;
    height: 200%;
    width: 0;
    transform: rotate(32deg);
    box-shadow: 1px 1px 10px 5px white;
    -webkit-animation: ButtonShineAnimation 3s ease-in-out infinite;
    animation: ButtonShineAnimation 3s ease-in-out infinite;
}

@keyframes ButtonShineAnimation {
    0% {
        right: -120%;
    }
    100% {
        right: 220%;
    }
}

.LatestBlogs {
    display: block;
    margin: 0 auto;
}

.BlogsGH {
    display: flex;
    justify-content: start;
    align-items: start;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.BlogsItem {
    display: block;
    margin: 30px 1%;
    width: 23%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 20px;
}

.BlogsItemThumb {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.6;
    object-fit: cover;
    object-position: center;
    transition: 600ms;
    filter: grayscale(10%);
}

.BlogsItemDetails {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

.BlogsItemDetails h4 {
    display: block;
    margin: 0 auto 10px;
    width: 100%;
    font-size: 18px;
    color: var(--theme2);
    font-weight: bold;
}

.BlogsItemDetails p {
    display: block;
    margin: 15px auto;
    width: 100%;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 63px;
}

.BlogsItemDetails h5 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    font-size: 13px;
}

.BlogsItemDetails h5 g {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: #00000014;
    margin: 5px 0;
    padding: 6px 14px;
    margin-left: 10px;
    border-radius: 1000px;
}

.BlogsItemDetails h5 g i {
    margin-left: 4px;
}

.BlogsItemDetails button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    text-transform: uppercase;
    background: #337c3a;
    color: white;
    border: none;
    border-radius: 1000px;
    font-size: 14px;
    transition: 350ms;
    margin-left: 10px;
}

.BlogsItemDetails button i {
    margin-left: 8px;
}

.CourseTrailerBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    background: var(--theme2);
    color: white;
    border: none;
    border-radius: 1000px;
    margin: 10px;
    z-index: 2;
    font-size: 25px;
    transition: 350ms;
}

.CourseTrailerBtn:hover {
    transform: scale(1.1);
    background: var(--theme);
}


.BlogsItemDetails button:hover {
    transform: scale(1.1);
    background: #282828;
}

.LatestBlogsHeader {
    display: block;
    margin: 10px auto 0;
    width: 98%;
    background: #ffffff;
    padding: 18px 20px;
    font-size: 18px;
    border-right: solid 11px var(--theme);
    border-radius: 20px 20px 10px 10px;
    position: relative;
}

/*.BlogsItem:hover .BlogsItemThumb {*/
/*    transform: scale(1.04) rotate(-1deg);*/
/*    filter: grayscale(0);*/
/*}*/

.BlogsItemDetails .SubscribedPurchaseBtn {
    background: var(--theme);
}

.BlogsItemDetails .SubscribedPurchaseBtn i {
}

.HomeSearch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.HomeSearchDiv {
    display: flex;
    margin: 30px auto;
    width: 930px;
    max-width: 95%;
    justify-content: space-between;
    align-items: center;
}

.HomeSearchHolder {
    display: block;
    margin: 0 3%;
    width: 100%;
    height: 65px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    z-index: 2;
}

.HomeSearchHolder i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme2);
    opacity: 0.5;
    font-size: 20px;
    pointer-events: none;
}

.HomeSearchHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: none;
    background: none;
    padding: 0 68px;
}

.HomeSearchHolder .setbg {
    position: absolute;
    left: 0;
    top: -38%;
    width: auto;
    height: 160%;
    aspect-ratio: 1/1;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.HomeSearchDiv button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: var(--theme);
    color: white;
    padding: 20px 29px;
    border: none;
    border-radius: 10px;
    transition: 300ms;
}

.HomeSearchDiv button:hover {
    background: var(--theme2);
    transform: scale(1.1);
    box-shadow: -9px -1px 1px 1px #00000026;
}

.HomeAbout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 30px auto 0;
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 70px 3%;
    padding-left: 32%;
}

.HomeAboutArt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 105%;
    position: absolute;
    left: 0;
    bottom: 0;
    /* -webkit-animation: GraduateAnimation 15s ease-in-out infinite; */
    /* animation: GraduateAnimation 15s ease-in-out infinite; */
    /* filter: drop-shadow(-30px -3px 23px black); */
}

@keyframes GraduateAnimation {
    0% {
        left: -2%;
        transform: scale(1.0) rotate(-3deg);
    }
    50% {
        left: -5%;
        transform: scale(1.1) rotate(3deg);
    }
    100% {
        left: -2%;
        transform: scale(1.0) rotate(-3deg);
    }
}

.HomeAboutArt .setbg {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    /* filter: hue-rotate(-17deg) grayscale(10%); */
}


.HomeAboutText {
}

.HomeAboutText h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 55px;
    font-weight: bold;
    color: var(--theme);
}

.HomeAboutText p {
    display: block;
    margin: 30px auto;
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    text-align: justify;
    line-height: 2;
}

.HomeAboutText button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 0;
    padding: 10px 20px;
    color: var(--theme2);
    position: relative;
    border: solid 2px;
    background: none;
    padding-right: 50px;
    border-radius: 10px;
    transition: 300ms;
}

.HomeAboutText button i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    transition: 300ms;
}

.HomeAboutText button:hover {
    border-color: var(--theme2);
    background: var(--theme2);
    color: white;
}

.HomeAboutBG {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.HomeAboutBG .setbg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.2;
    -webkit-animation: HomeAboutBGAnimation 3s ease-in-out infinite;
    animation: HomeAboutBGAnimation 3s ease-in-out infinite;
}

@keyframes HomeAboutBGAnimation {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

.FAQ {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0%;
    position: relative;
    z-index: 1;
}

.FAQIGH {
    display: block;
    margin: 0 2%;
    width: 70%;
}

.FAQItem {
    display: block;
    margin: 24px auto;
    width: 100%;
    border: solid 2px;
    color: var(--theme2);
    padding: 21px 25px;
    border-radius: 10px;
    padding-right: 60px;
    position: relative;
    cursor: pointer;
    filter: grayscale(1);
    user-select: none;
    background: #ffffff;
    transition: 350ms;
}

.FAQItem g {
    position: absolute;
    right: 5px;
    top: 8px;
    width: 50px;
    height: fit-content;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.FAQItem h5 {
    display: block;
    margin: 0 auto 15px;
    width: 100%;
    font-size: 17px;
    font-weight: bold;
    position: relative;
    padding-left: 40px;
}

.FAQItem h5 i {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 350ms;
}

.FAQItem p {
    display: none;
    margin: 13px auto;
    width: 100%;
    font-size: 14px;
    /* color: #ffffff; */
}

.OpenedFAQItem {
    filter: grayscale(0);
}

.OpenedFAQItem p {
    display: block;
}

.OpenedFAQItem h5 i {
    transform: rotateX(180deg);
}

.Counters {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 0 25px;
}

.CountersItem {
    display: block;
    margin: 10px 0;
    width: fit-content;
    padding: 0 25px;
}

.CountersItem h5 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 19px;
    font-weight: bold;
    text-decoration: none;
    color: #4d9153;
}

.CountersItem h5 u {
    text-decoration: none;
    font-size: 25px;
}

.CountersItem label {
    display: block;
    margin: 9px auto;
    width: 100%;
    font-size: 15px;
    color: #3c3c3c;
}

.AfterBanner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.PlatformFeatures {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    flex-wrap: wrap;
}

.PlatformFeaturesItem {
    display: block;
    margin: 5px auto;
    width: 25%;
    padding: 17px 25px 0;
    border-right: solid 1px #ffffff1f;
    position: relative;
    padding-right: 60px;
    min-height: 115px;
}

.PlatformFeaturesItem i {
    position: absolute;
    right: 8px;
    top: 0;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    font-size: 20px;
    color: var(--theme2);
}

.PlatformFeaturesItem h5 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: var(--theme2);
}

.PlatformFeaturesItem label {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-size: 13px;
    line-height: 1.8;
}

.FixedWhatsAppBtn {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: #2d873d;
    color: white;
    border: none;
    border-radius: 10000px;
    font-size: 30px;
    margin: 20px;
    transition: 300ms;
    box-shadow: -4px -2px 1px 1px #00000038;
}


.FixedWhatsAppBtn:hover {
    transform: scale(1.1);
    background: #161616;
}

footer {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    background: var(--theme);
    padding: 60px 0;
    color: white;
}

.FooterSection {
    display: block;
    margin: 0 3%;
    width: 20%;
}

.FooterVision {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.FooterVision img {
    display: block;
    margin: 0 0 7px;
    width: auto;
    height: 67px;
}

.FooterVision p {
    display: block;
    margin: 18px auto;
    width: 100%;
    font-size: 13px;
    text-align: justify;
    color: white;
}

.FooterSectionHeader {
    display: block;
    margin: 16px auto;
    width: 100%;
    font-weight: bold;
}

.FooterSection ul {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.FooterSection ul li {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 8px 20px;
    font-size: 14px;
    border-bottom: solid 1px #ffffff0d;
    user-select: none;
    cursor: pointer;
    transition: 350ms;
}

.FooterSection ul li:hover {
    background: #ffffff26;
}

.FooterSubscribe {
    display: flex;
    margin: 10px 3%;
    width: 45%;
    justify-content: start;
    align-items: center;
    padding: 30px 37px;
    background: #00000057;
    border-radius: 20px;
}

.SubscriptionForm {
}

.SubscriptionFormInner {
    display: block;
    margin: 0 auto;
    width: 540px;
    max-width: 100%;
}

.SubscriptionFormInner h5 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 21px;
    font-weight: bold;
}

.SubscriptionFormInner p {
    display: block;
    margin: 12px auto;
    width: 100%;
    font-size: 15px;
    color: #ffffffd6;
}

.SubscriptionInputGroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 25px auto 0;
}

.SubscriptionInputGroup input {
    display: block;
    margin: 0 auto;
    width: -webkit-fill-available;
    border: none;
    padding: 12px 12px;
    border-radius: 5px;
    font-size: 13px;
}

.SubscriptionInputGroup button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    min-width: 130px;
    color: white;
    background: var(--theme2);
    border: none;
    padding: 10px 0;
    font-size: 15px;
    position: relative;
    padding-right: 20px;
    border-radius: 5px;
    transition: 350ms;
    margin-right: 10px;
}

.SubscriptionInputGroup button i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.FooterSocials {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto 20px;
}

.FooterSocials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    background: #ffffff21;
    aspect-ratio: 1/1;
    margin: 0 0;
    margin-left: 10px;
    border-radius: 100000px;
    font-size: 20px;
    color: #ffffff;
    text-shadow: -1px 1px 0px #000000;
    transition: 300ms;
}

.FooterSocials a i {
    height: fit-content;
    line-height: normal;
}

.FooterSocials a:hover {
    transform: scale(1.1);
    background: var(--theme2);
    color: white;
    text-shadow: 0px 0px 0px;
}

.Preloader {
}

.PreloaderInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.PreloaderDiv {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.PreloaderDiv img {
    display: block;
    margin: 0 auto;
    width: 210px;
    max-width: 90%;
    filter: grayscale(10%) contrast(110%);
}

.FAQSectionHeader {
    display: block;
    margin: 35px auto;
    width: 94%;
}

.FAQSectionHeader h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme);
}

.FAQSectionHeader p {
    display: block;
    margin: 11px auto;
    width: 100%;
    font-size: 16px;
}

.LatestBlogsHeader a {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: var(--theme2);
    padding: 0 10px;
    font-size: 15px;
    opacity: 0.7;
    transition: 350ms;
}

.LatestBlogsHeader a i {
    margin: 0 8px;
}

.LatestBlogsHeader a:hover {
    transform: scale(1.1);
    opacity: 1;
}

.FAQInner {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.Reels {
    direction: ltr;
    width: 500px;
}

.ReelsSlider {
}

.ReelsSliderItem {
}

.ReelsSliderItemInner {
    display: block;
    margin: 23px auto;
    width: 90%;
    aspect-ratio: 1/1.42;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
    z-index: 2;
    cursor: pointer;
}

.ReelsSliderItemInner .setbg {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
    margin: 11px;
}

.ReelsSliderItemThumb {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
    object-position: center center;
    object-fit: cover;
}

.ReelDetails {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    color: #ffffff;
    padding: 20px;
    padding-right: 80px;
    direction: rtl;
}

.ReelDetails label {
    display: block;
    margin: 0 0;
    width: fit-content;
    direction: ltr;
    font-size: 14px;
    font-weight: bold;
    color: #d3d3d3;
    pointer-events: none;
}

.ReelDetails label i {
    margin: 0 5px;
}

.ReelDetails p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 13px;
    margin: 6px auto;
    color: #ffffff;
}

.ReelsSliderItemFade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: #000000;
    z-index: -1;
    box-shadow: 0px -54px 76px 122px #000000;
    opacity: 0.8;
}

.ReelDetails img {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    aspect-ratio: 1/1;
    background-color: #b7b7b7;
    border-radius: 1000px;
    border: solid 3px var(--theme);
    object-fit: contain;
    margin: 10px;
}

.ReelsSlider .slick-dots {
    position: absolute;
    right: -3%;
    bottom: 31px;
    padding: 0;
    margin: 0;
    display: block;
}

.ReelsSlider .slick-dots li {
    display: block;
    margin: 0 0;
    width: fit-content;
    padding: 0;
}

.ReelsSlider .slick-dots li div {
    display: block;
    margin: 5px auto;
    width: 17px;
    aspect-ratio: 1/1;
    background: #000000;
    opacity: 0.4;
    border-radius: 100px;
    cursor: pointer;
    transition: 350ms;
}

.ReelsSlider .slick-dots .slick-active div {
    transform: scale(1.05);
    opacity: 1;
    pointer-events: none;
    background: var(--theme2);
}

.CourseShowPageCover {
    display: block;
    margin: 0 auto;
    width: 100%;
    background: #ffffff;
    height: 50vh;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    z-index: 2;
    border-radius: 0px 0px 90px 90px;
}

.CourseShowPageCover img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center center;
    opacity: 0.8;
}

.CourseShowPageCover .CourseTrailerTrigger {
    display: none;
}

.CourseShowPageCover .CourseTrailerTrigger i {
}


.CourseShowPageCover:hover .CourseTrailerTrigger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background: #ffffff8f;
    font-size: 100px;
    color: var(--theme2);
    cursor: pointer;
}

.CourseShowPageDetails {
    display: block;
    margin: 31px auto;
    width: 90%;
}

.CourseShowPageDetails h1 {
    display: block;
    width: 100%;
    font-size: 31px;
    color: var(--theme2);
    font-weight: bold;
    margin: 0px auto 10px;
}

.CourseShowPageDetails h5 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    font-size: 17px;
}

.CourseShowPageDetails h5 g {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: 10px;
    background: #dddddd;
    padding: 6px 14px;
    border-radius: 1000px;
}

.CourseShowPageDetails h5 g i {
    margin-left: 4px;
}

.CourseShowPageDetails p {
    width: 100%;
    font-size: 19px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 63px;
    margin: 15px auto;
    overflow: hidden;
}

.CourseSubscriptionIntroduction {
    display: block;
    margin: 25px 0 0;
    width: 40%;
    height: 100%;
}

.CourseSubscriptionIntroduction h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    color: var(--theme2);
}

.CourseSubscriptionIntroduction p {
    display: block;
    margin: 13px auto;
    width: 100%;
    font-size: 20px;
}

.CourseSubscription {
    display: flex;
    margin: 40px auto;
    width: 90%;
    background: #dddddd;
    padding: 40px 30px;
    border-radius: 20px;
    border: dashed 2px var(--theme);
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.CourseSubscriptionPlansGH {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 58%;
    flex-wrap: wrap;
}

.CourseSubscriptionPlanItem {
    display: block;
    margin: 10px 1%;
    width: 31%;
    background: #f7f7f7;
    padding: 25px;
    border-radius: 10px;
}

.CourseSubscriptionPlanItem h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme);
    font-size: 20px;
}

.CourseSubscriptionPlanItem label {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.CourseSubscriptionPlanItem h2 {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-weight: bold;
    font-size: 23px;
}

.CourseSubscriptionPlanItem h2 u {
    text-decoration: none;
    font-size: 16px;
}

.CourseSubscriptionPlanItem button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 7px 0;
    border: solid 2px;
    background: none;
    color: var(--theme2);
    border-radius: 5px;
    transition: 300ms;
    margin: 25px auto 0;
}

.CourseSubscriptionPlanItem button:hover {
    border-color: var(--theme2);
    background: var(--theme2);
    color: white;
}

.CourseModulesGH {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 94%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.CourseModuleItem {
    display: block;
    margin: 30px 1%;
    width: 23%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    color: #747474;
    border: solid 1px #c1c1c1;
    min-height: 305px;
}

.CourseModuleItem h1 {
    margin: 0 auto 18px;
    width: 100%;
    font-size: 22px;
    color: var(--theme);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    padding-right: 45px;
    min-height: 52px;
}

.CourseModuleItem h5 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    font-size: 13px;
}

.CourseModuleItem h5 g {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 5px 0;
    margin-left: 10px;
    background: #efefef;
    padding: 6px 14px;
    border-radius: 1000px;
}

.CourseModuleItem h5 g i {
    margin-left: 6px;
}

.CourseModuleItem h5 g u {
    text-decoration: none;
    font-weight: bold;
}

.CourseModuleItem p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
}

.CourseModuleItem button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    font-size: 16px;
    border: solid 2px;
    color: var(--theme2);
    background: none;
    padding: 5px 13px;
    position: relative;
    padding-right: 50px;
    border-radius: 0px 19px;
    font-weight: bold;
    margin: 26px 0 0;
    transition: 300ms;
}

.CourseModuleItem button i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.CourseModuleItem button:hover {
    transform: scale(1.1);
    background: var(--theme2);
    border-color: var(--theme2);
    color: white;
}

.CourseModuleItem h1 u {
    background: var(--theme);
    color: white;
    width: 30px;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    line-height: normal;
    font-weight: 700;
    border-radius: 5px;
    margin-left: 7px;
    top: 2px;
    position: absolute;
    right: 0;
}

.CourseShowPage .LatestBlogs {
    width: 94%;
}

.HeaderAuth h6 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    background: #ffdada;
    padding: 10px 10px;
    border: solid 2px;
    position: relative;
    color: var(--theme2);
    font-weight: bold;
    font-size: 16px;
    padding-right: 60px;
    min-width: 170px;
    border-radius: 10px;
    padding-left: 40px;
    transition: 350ms;
}

.HeaderAuth h6 .bi-person {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 33px;
}

.HeaderAuth h6 label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    color: #666666;
    pointer-events: none;
}

.HeaderAuth h6 g {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    padding-top: 17px;
    transition: 500ms;
}

.HeaderAuth h6:hover {
    filter: brightness(110%);
}

.AuthOptions {
    display: none;
}

.AuthOptionsInner {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.AuthOptionsFade {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #636363;
    opacity: 0.5;
}

.AuthOptionsDiv {
    display: block;
    margin: 10px 2%;
    width: 230px;
    background: #ffffff;
    padding: 20px;
    max-width: 90%;
    box-shadow: 0px 0px 33px 0px #000000;
    border-radius: 20px;
}

.AuthOptionsDiv ul {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.AuthOptionsDiv ul li {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 10px 10px;
    position: relative;
    border-bottom: solid 1px #ffffff14;
    font-size: 13px;
    cursor: pointer;
    padding-right: 42px;
    font-weight: 700;
    transition: 450ms;
}

.AuthOptionsDiv ul li:hover {
    color: var(--theme2);
    transform: scale(1.05);
}

.HeaderAuth .AuthTriggered {
    filter: grayscale(1);
    opacity: 0.5;
}

.HeaderAuth .AuthTriggered g {
    transform: rotateX(180deg);
    padding: 0px 0;
}

.AuthOptionsDiv ul li i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AuthOptionsDiv ul li:last-child {
    border: 0;
}

.HeaderAuth h7 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    aspect-ratio: 1/1;
    background: var(--theme);
    position: relative;
    border-radius: 10px;
    font-size: 24px;
    color: white;
    margin: 0 10px;
    cursor: pointer;
    transition: 350ms;
}

.HeaderAuth h7 label {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: #fd5a5a;
    aspect-ratio: 1/1;
    overflow: hidden;
    font-size: 13px;
    border-radius: 1000px;
    margin: -5px;
    pointer-events: none;
}

.HeaderAuth h7:hover {
    background: var(--theme2);
    transform: scale(1.1);
}

.HeaderAuth h7:hover i {
    transition: 350ms;
    transform: scale(1.1);
}

#Notifications {
    width: 410px;
    margin: 15px 10%;
    aspect-ratio: 1/1;
    overflow: hidden;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


#Notifications::-webkit-scrollbar {
    display: none;
}


.AuthOptionsDiv ul .SignOutLI {
    color: #e54646 !important;
}

.MyNotifications {
}

.MyNotificationItem {
    display: block;
    margin: 0 auto 15px;
    width: 100%;
    padding: 10px;
    background: #e9e9e9;
    border: solid 2px;
    position: relative;
    padding-right: 50px;
    color: #898989;
    border-radius: 10px;
    transition: 350ms;
}

.MyNotificationItem g {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: auto;
    margin: 10px;
    font-size: 25px;
}

.MyNotificationItem label {
    display: flex;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    opacity: 0.7;
    pointer-events: none;
}

.MyNotificationItem label i {
    margin-left: 10px;
}

.MyNotificationItem p {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-size: 13px;
}

.UnreadNotificationItem {
    filter: grayscale(0);
    color: var(--theme2);
    background: #ffdada;
}

.MyNotificationItem:hover {
    filter: grayscale(1) brightness(95%);
}

.UnreadNotificationItem:hover {
    filter: grayscale(0) brightness(110%);
}

.NoNotifications {
}

.NoNotificationsDiv {
    text-align: center;
    margin: 29px auto 0;
    width: 100%;
}

.NoNotificationsDiv .setbg {
    display: block;
    margin: 0 auto;
    width: 52%;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.NoNotificationsDiv h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    color: var(--theme);
    font-weight: bold;
    font-size: 21px;
}

.NoNotificationsDiv p {
    display: block;
    margin: 8px auto;
    width: 100%;
    font-size: 14px;
    color: #6c6c6c;
}

.upcoming-countdown {
    text-align: center;
    color: #3d8ed7; /* your theme color */
}

.upcoming-countdown .time {
    font-size: 28px;
    font-weight: bold;
    direction: ltr; /* keeps numbers aligned left-to-right */
    margin: 5px 0;
}

.AuthOptionsDiv ul li label {
    position: absolute;
    left: 0;
    top: 20%;
    width: auto;
    height: 60%;
    background: #e3e3e3;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #343434;
    border-radius: 5px;
    font-size: 11px;
    line-height: normal;
}

.LiveSessionUpcoming {
    background: #ffe2e2;
    color: #c13d3d;
    filter: none !important;
}

.LiveSessionUpcoming g {
}

.HomeFlagsHere {
    background: #ffffff;
    padding: 15px 0;
    border-radius: 0px 0px 40px 40px;
}

.HomeFlagsHereDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    max-width: 96%;
    margin: 0 auto;
}

.HomeFlagsHereDiv button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 10px 15px;
    color: var(--theme);
    border: solid 2px;
    border-radius: 5px;
    background: none;
    padding-right: 46px;
    margin: 10px 10px;
    position: relative;
    cursor: not-allowed !important;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 300ms;
}

.HomeFlagsHereDiv button .setbg {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center center;
}

.HomeFlagsHereDiv .ActiveHomeFlag {
    opacity: 1;
    filter: grayscale(0);
    cursor: pointer !important;
}

.HomeFlagsHereDiv .ActiveHomeFlag:hover {
    background: var(--theme);
var(--theme): white;
    border-color: var(--theme);
    color: white;
}

.HeaderLogo .setbg {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.VideoPlayer {
    display: none;
}

.VideoPlayerInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.VideoPlayerFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #777777;
    opacity: 0.5;
    z-index: -1;
}

.VideoPlayerDiv {
    display: block;
    margin: 0 auto;
    width: 70%;
    aspect-ratio: 1/1;
    position: relative;
    z-index: 2;
    background: #000000;
    border-radius: 10px;
    max-height: 90%;
}

.VideoPlayerDiv video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.CourseSpecificationsItem {
}


.Lessons {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    padding-right: 385px;
    overflow-y: auto;
}

.LessonsList {
    position: fixed;
    right: 0;
    top: 0;
    width: 350px;
    height: 100%;
    z-index: 22;
    background: #ffffff;
    padding: 20px;
    overflow-y: auto;
}

.LessonsListItem {
    display: block;
    margin: 0 auto 15px;
    width: 100%;
    position: relative;
    padding: 20px 15px 30px;
    color: white;
    cursor: pointer;
    transition: 300ms;
    filter: grayscale(1);
    opacity: 0.8;
    border-radius: 10px;
}

.LessonsListItem:last-child {
    border: 0
}

.LessonsListItem h4 {
    display: block;
    margin: 0 auto 5px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--theme2);
}

.LessonsListItem p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 12px;
    color: #838383;
}

.LessonsListItem label {
    position: absolute;
    left: 0;
    bottom: 0;
    width: fit-content;
    background: #353535;
    padding: 0 5px;
    margin: 10px;
    font-size: 12px;
    pointer-events: none;
    border-radius: 5px;
}

.LessonsListItem:hover {
    background: #e9e9e9;
}

.LessonsBody {
}

.LessonsVideoHolder {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.5;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
    position: relative;
    z-index: 2;
}

.LessonsVideoHolder video {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.LessonsVideoHolder iframe {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.LessonsBodyDetails {
    display: block;
    margin: 20px auto;
    width: 100%;
}

.LessonsBodyDetails h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 30px;
    color: var(--theme2);
}

.LessonsBodyDetails p {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-size: 20px;
    color: #898989;
}

.LoginInner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: var(--theme);
    position: relative;
    z-index: 2;
}

.LoginDiv {
    display: block;
    margin: 0 auto;
    width: 600px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 20px;
    max-width: 95%;
    max-height: 90%;
    overflow-y: auto;
}

.VideoBG {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: color-dodge;
}

.LoginPageView {
    display: none;
}

.LoginPageView form {
}

.LoginFormHolder {
    display: block;
    margin: 25px auto;
    width: 100%;
    height: 45px;
    background: #ffffff;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    z-index: 2;
    direction: ltr;
}

.LoginFormHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: none;
    border: none;
    padding: 0 0;
    padding-left: 50px;
}

.LoginFormHolder input u {
}

.ShowPassBtn {
    position: absolute;
    right: 10px;
    top: 15%;
    width: auto;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    background: none;
    border: none;
    color: var(--theme2);
    font-size: 20px;
    background: #ffdbdb;
    border-radius: 10000px;
    line-height: initial;
}

.ShowPassBtn i {
    pointer-events: none;
    line-height: normal;
    height: fit-content;
}

.ShowPassBtn:hover {
}

.RememberMe {
    display: flex;
    justify-content: start;
    align-items: center;
    width: fit-content;
    user-select: none;
    cursor: pointer;
    margin: 0 0 20px;
}

.RememberMe input {
    margin: 0 0;
    margin-left: 10px;
}

.LoginSubmitBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: var(--theme);
    color: white;
    border: none;
    padding: 12px 10px;
    border-radius: 5px;
    position: relative;
    transition: 350ms;
}

.LoginSubmitBtn:hover {
    background: var(--theme2);
    transform: scale(1.01);
}

.LoginSubmitBtn i {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.LoginPageView h7 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #363636;
    margin: 19px auto 0;
    font-weight: 400;
}

.LoginPageView h7 a {
    color: #db9796;
    text-decoration: none;
    font-weight: bold;
    margin: 0 6px;
    transition: 350ms;
}

.LoginLogo {
    display: block;
    margin: 0 auto 30px;
    width: 280px;
    object-fit: contain;
    object-position: center center;
    max-width: 90%;
}

.LoginDivTabs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    margin: 10px auto;
}

.LoginDivTabs button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: none;
    color: #666666;
    border: solid 2px;
    padding: 10px 10px;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 13px;
    transition: 300ms;
}

.LoginDivTabs button i {
    margin-left: 5px;
    font-size: 16px;
}

.LoginDivTabs button:hover {
    background: #f9e1e0;
    border-color: #ebbab8;
    color: var(--theme);
    transform: scale(1.1);
}

.LoginDivTabs .ActiveLoginDivTab {
    background: var(--theme) !important;
    border-color: var(--theme) !important;
    color: white !important;
}

.LoginFormHolder u {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
    font-size: 20px;
    color: var(--theme2);
    opacity: 0.5;
    text-decoration: none;
}

.LoginPageView h7 a:hover {
    transform: scale(1.05);
    color: var(--theme2);
}

.PasswordIsVisible {
    color: #669b5a;
    background: #e3f7de;
}

.ActiveLessonsListItem {
    filter: grayscale(0) !important;
    opacity: 1 !important;
    color: #ffffff !important;
    background: var(--theme) !important;
}

.ActiveLessonsListItem p {
    display: none;
}

.Profile {
}

.ProfileCover {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: var(--theme);
}

.ProfileCover video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    mix-blend-mode: luminosity;
    opacity: 0.5;
    pointer-events: none;
}

.ProfileDetails {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1%;
}

.ProfileDetailsLeft {
    display: block;
    margin: 0 20px;
    width: fit-content;
    color: #ffffff;
    position: relative;
    padding: 30px 0;
    padding-right: 160px;
}

.ProfileDetailsLeft .AuthImage {
    position: absolute;
    right: 0;
    top: -16px;
    width: 132px;
    aspect-ratio: 1/1;
    border: solid 5px var(--theme2);
    border-radius: 100%;
    object-fit: cover;
    object-position: center center;
    background-color: #ffffff;
}

.ProfileDetailsLeft h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme2);
    font-size: 30px;
}

.ProfileDetailsLeft label {
    display: flex;
    justify-content: start;
    align-items: center;
    width: max-content;
    direction: ltr;
    margin: 6px 0;
    font-size: 19px;
    font-weight: 300;
    color: #9f9f9f;
}

.ProfileDetailsLeft label i {
    margin: 0 10px;
}

.ProfileDetailsRight {
}

.ProfileMainBtns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: max-content;
}

.ProfileMainBtns button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    font-size: 16px;
    margin: 0 8px;
    color: var(--theme2);
    background: none;
    padding: 10px;
    border: solid 2px;
    border-radius: 5px;
    transition: 300ms;
}

.ProfileMainBtns button i {
    margin: 0 6px;
}

.ProfileMainBtns button:last-child {
    color: #f5ae08;
}

.ProfileMainBtns button:hover {
}

.ProfileTabs {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding: 20px 2% 0;
}

.ProfileTabs button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: #dfdfdf;
    color: #4c4c4c;
    border: none;
    padding: 9px 20px;
    border-radius: 20px 20px 0px 0px;
    transition: 350ms;
    margin: 0 10px;
}


.ProfileTabs button:hover {
    background: #ffffff;
    color: #222222;
}

.ProfileTabs .ActiveProfileTab {
    background: #ffffff;
    pointer-events: none;
    color: var(--theme2);
}

.ProfileView {
    display: none;
    margin: 0 auto;
    width: 100%;
    height: auto;
    min-height: 60vh;
    background: #ffffff;
}

.AuthDetails {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 96%;
    margin: 0 auto;
}

.AuthDetails p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 17px;
    padding: 23px 0;
    border-bottom: solid 1px #d3d3d3;
}

.AuthDetails p strong {
    float: left;
}

.AuthDetailsBox {
    display: block;
    margin: 35px 0;
    width: 48%;
    background: #efefef;
    border-radius: 10px;
    color: #303030;
    padding: 20px;
    overflow-y: auto;
    min-height: 440px;
}

.AuthDetailsBoxHeader {
    display: block;
    margin: 0 auto 25px;
    width: 100%;
    color: var(--theme2);
    font-size: 19px;
    padding: 0 0 20px;
    border-bottom: solid 1px #00000021;
    font-size: 17px;
}

.AuthDetailsBoxHeader i {
    margin: 0 5px;
}

.MyCards {
}

.MyCardsItem {
    color: var(--theme2);
    border-bottom: solid 1px #00000029;
    position: relative;
    z-index: 2;
    padding: 10px 10px;
    padding-right: 60px;
    padding-left: 50px;
    cursor: pointer;
    transition: 350ms;
}

.MyCardsItem g {
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
    font-size: 30px;
    margin: 10px;
}

.MyCardsItem h4 {
    display: block;
    margin: 0 auto 8px;
    width: 100%;
    font-size: 18px;
}

.MyCardsItem label {
    color: #ffffff;
    background: var(--theme);
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: 300;
    pointer-events: none;
}

.MyCardsItem input {
    position: absolute;
    left: 20px;
    top: 0;
    width: auto;
    height: 100%;
}

.ActiveMyCardsItem {
    background: var(--theme);
    pointer-events: none;
}

.ActiveMyCardsItem h4 {
    color: white;
}

.ActiveMyCardsItem label {
}

.ActiveMyCardsItem g {
    color: white;
}

.MyCardsItem:hover {
    background: #dddddd;
}

.AuthDetailsBoxHeader button {
    display: flex;
    float: left;
    justify-content: center;
    align-items: center;
    color: var(--theme2);
    background: none;
    border: solid 2px;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 16px;
    transition: 350ms;
}

.AuthDetailsBoxHeader button:hover {
    background: var(--theme2);
    border-color: var(--theme2);
    color: #ffffff;
}

.LatestTransactions {
}

.LatestTransactionItem {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 15px 80px;
    border-bottom: solid 1px #cbcbcb;
    position: relative;
    z-index: 2;
}

.LatestTransactionItem .LatestTransactionsThumb {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 10px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.LatestTransactionItem h4 {
    display: block;
    margin: 0 0;
    width: fit-content;
    font-size: 15px;
    color: var(--theme2);
    transition: 300ms;
    cursor: pointer;
    transition: 350ms;
}

.LatestTransactionItem label {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    direction: ltr;
    padding: 27px 10px;
}

.LatestTransactionItem label u {
    text-decoration: none;
    font-size: 12px;
    margin: 0 4px;
}

.LatestTransactionItem h5 {
    display: block;
    margin: 8px auto;
    width: 100%;
    font-size: 14px;
}

.LatestTransactionItem h5 i {
    margin-left: 5px;
}


.LatestTransactionItem h4:hover {
    color: var(--theme);
    text-decoration: underline;
}

.CertificatesGH {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding: 20px;
    flex-wrap: wrap;
}

.CertificatesItem {
    display: block;
    margin: 15px 1%;
    width: 31%;
    background: #efefef;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    padding-right: 128px;
}

.CertificatesItem .setbg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    aspect-ratio: 1/1;
    background-size: cover;
    object-position: center center;
    background-repeat: no-repeat;
    border-radius: 5px;
    margin: 10px;
    background-color: #cdcdcd;
}

.CertificatesItem h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 19px;
    font-weight: bold;
    color: var(--theme2);
}

.CertificatesItem label {
    display: block;
    margin: 8px auto;
    width: 100%;
    font-size: 16px;
    direction: ltr;
    text-align: right;
    color: #858585;
}

.CertificatesItem label i {
    margin: 0 3px;
}

.CertificatesItemBtns {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.CertificatesItemBtns button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border: solid 2px;
    background: none;
    border-radius: 5px;
    color: var(--theme2);
    transition: 350ms;
}

.CertificatesItemBtns button:first-child:hover {
    background: var(--theme2);
    border-color: var(--theme2);
    color: white;
}

.CertificatesItemBtns button:last-child:hover {
    background: #505050;
    border-color: #505050;
    color: white;
}

.CertificatesItemBtns button i {
    margin-left: 4px;
}

.CertificatesItemBtns button:last-child {
    color: #7a7a7a;
    margin-right: 12px;
}

.BlogsGH .BlogsItem {
    background: #f7f7f7;
}

.ActiveLessonsListItem h4 {
    color: white;
}

.LessonsVideoWaterMarkParent {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    background: #ffffff1c;
    border-radius: 10000px;
    margin: 10px;
}

.LessonsVideoWaterMark {
    width: auto;
    height: 80px;
    aspect-ratio: 1/1;
    z-index: 22;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 10px;
}

.WaterMarkShine {
    position: absolute;
    right: -40px;
    top: -50%;
    height: 200%;
    width: 0;
    transform: rotate(32deg);
    box-shadow: 1px 1px 29px 8px white;
    -webkit-animation: ButtonShineAnimation 3s ease-in-out infinite;
    animation: ButtonShineAnimation 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes ButtonShineAnimation {
    0% {
        right: -120%;
    }
    100% {
        right: 220%;
    }
}

.LessonsBodyToolsBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto 20px;
}

.ToolsBar {
    display: flex;
    justify-content: start;
    align-items: center;
    width: max-content;
}

.ToolsBar button {
    margin: 0 8px;
    width: 45px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #c7c7c7;
    background: #ffffff;
    border-radius: 1000px;
    transition: 300ms;
    font-size: 21px;
    color: #8d8d8d;
}

.ToolsBar button i {
    pointer-events: none;
    line-height: normal;
    height: fit-content;
    transition: 300ms;
}

.ToolsBar button:hover {
    border-color: var(--theme2);
}

.LessonsBodyEscapers {
}

.LessonsBodyEscapers button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 10px 10px;
    border: none;
    background: #dbdbdb;
    border-radius: 5px;
    color: #919191;
    font-size: 14px;
    transition: 350ms;
}

.LessonsBodyEscapers button:hover {
    background: #ffffff;
    color: #c96e6e;
}

.LessonsBodyEscapers button i {
    margin-left: 6px;
}

.ToolsBar button:hover i {
    transform: scale(1.2);
    color: var(--theme2);
}

.ToolsBar .DraftPopUpIsVisible {
    background: var(--theme2) !important;
    border-color: var(--theme2) !important;
    color: white !important;
}

.ToolsBar .DraftPopUpIsVisible i {
    color: white !important;
}

.DraftPopUp {
    display: none;
}

.DraftPopUpDiv {
    position: fixed;
    left: 0;
    top: 0;
    width: 400px;
    background: #ffffff;
    margin: 1%;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 39px;
    max-height: 500px;
    box-shadow: 1px 1px 42px -10px #000000;
}

.DraftPopUpHeader {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px;
    color: var(--theme2);
    cursor: move; /* better UX */
    user-select: none;
}

.DraftPopUpHeader h5 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    font-size: 15px;
    margin: 0 auto;
}

.DraftPopUpHeader h5 i {
    margin-left: 5px;
}

.DraftPopUpHeader .bi-arrows-move {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    color: #c9c9c9;
    font-size: 22px;
}

.ProfileForm {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin: 50px auto;
    width: 700px;
    max-width: 100%;
    flex-wrap: wrap;
    background: #efefef;
    border-radius: 10px;
    align-content: flex-start;
    padding: 20px;
}

.ProfileFormRow {
    display: block;
    margin: 0 0;
    width: 50%;
    padding: 10px;
}

.ProfileFormRow label {
    display: block;
    margin: 0 auto 10px;
    font-size: 14px;
}

.ProfileFormHolder {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 45px;
    background: #ffffff;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.ProfileFormHolder g {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme2);
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

.ProfileFormHolder input, .ProfileFormHolder select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: none;
    background: none;
    font-size: 14px;
    padding-right: 50px;
    text-align: right;
    direction: ltr;
}

.ProfileFormSubmit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
}

.ProfileFormSubmit button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: var(--theme2);
    color: white;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    transition: 350ms;
    margin: 27px auto 0;
}

.ProfileFormSubmit button i {
    margin: 0;
    margin-left: 10px;
}

.ProfileFormSubmit button:hover {
    background: var(--theme);
    transform: scale(1.1);
}

#EditProfile, #UpdatePassword {
    padding: 20px;
}

.UpdateProfileHolderParent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.UpdateProfileHolder {
    display: block;
    margin: 0 auto;
    width: 100px;
    aspect-ratio: 1/1;
    max-width: 90%;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.UpdateProfileHolder img {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center center;
    border-radius: 1000px;
    border: solid 2px var(--theme2);
    padding: 6px;
    background-color: #e5e5e5;
}

.UpdateProfileHolder i {
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    aspect-ratio: 1/1;
    background: var(--theme2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    font-size: 13px;
}

.ShowPassword {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: none;
    color: var(--theme2);
    font-size: 19px;
    z-index: 2;
}

.ShowPassword i {
}

.PassVisible {
    color: #32ab32;
}

#UpdatePassword .ProfileFormHolder input, .ProfileFormHolder select {
    padding-left: 47px;
}

.FormsValidation {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 700px;
    margin: 0 auto;
    color: #ad5555;
    background: #f3e0e0;
    padding: 10px;
    text-align: right;
    border: solid 1px #ebbfbf;
    border-radius: 10px;
}

.FormsValidation i {
    margin: 0 10px;
    font-size: 20px;
}

.FormsValidation p {
    display: block;
    margin: 0 0;
    width: fit-content;
}

.LiveSessionsGH {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.LiveSessionsItem {
    display: block;
    margin: 15px 1%;
    width: 23%;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    color: #747474;
    border: solid 1px #c1c1c1;
}

.CourseModuleItem h4 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    font-size: 14px;
}

.CourseModuleItem h4 i {
    margin-left: 10px;
}

.CourseModuleItem h4 span {
    display: block;
    margin: 0 5px;
}

.LivCardIcon {
    display: block;
    margin: 0 auto 17px;
    width: 100%;
    height: 110px;
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: grayscale(30%) brightness(90%) contrast(140%);
}


.CertificatesPrintable {
    display: none;
}

.FormsSuccess {
    background: #d6edda;
    color: #2d7845;
    border-color: #a1cba8;
}

.HomeFlagsHereDiv .SelectedCountry {
    background: var(--theme);
    border-color: var(--theme);
    color: white;
    pointer-events: none;
}

.AboutPageCover {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: var(--theme);
    padding: 150px 0;
}

.AboutPageCover video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    mix-blend-mode: luminosity;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.AboutPage {
}

.AboutPageCover h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    font-size: 100px;
    text-shadow: 1px 1px 1px #000000;
    font-weight: bold;
}

.AboutPageIndexGH {
    display: block;
    margin: -30px auto 0;
    width: 95%;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    z-index: 22;
}

.AboutPageIndexGH h1,
.AboutPageIndexGH h2,
.AboutPageIndexGH h3,
.AboutPageIndexGH h4,
.AboutPageIndexGH h5,
.AboutPageIndexGH h6,
.AboutPageIndexGH h1 *,
.AboutPageIndexGH h2 *,
.AboutPageIndexGH h3 *,
.AboutPageIndexGH h4 *,
.AboutPageIndexGH h5 *,
.AboutPageIndexGH h6 * {
    color: var(--theme);
}

.AboutPageIndexGH * {
    max-width: 100%;
}


.QuizPage {
    display: block;
    margin: 25px auto 55px;
    width: 95%;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
}

.QuizIntroduction {
}

.QuizIntroduction h1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: var(--theme2);
}

.QuizIntroduction label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 28px;
    color: #666666;
}

.QuizItem {
    display: block;
    margin: 40px auto;
    width: 100%;
    background: #efefef;
    padding: 25px;
    border-radius: 20px;
}

.QuizItem h3 {
    display: block;
    margin: 11px auto;
    width: 100%;
    font-weight: bold;
    font-size: 21px;
}

.QuizItemAnswers {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.QuizItemAnswerItem {
    display: block;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 49%;
    margin: 30px 0px 0;
    padding: 15px 10px;
    background: #ffffff;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    border: solid 3px transparent;
    transition: 300ms;
}

.QuizItemAnswerItem:hover {
    border-color: #c9c9c9;
}

.QuizItemAnswerItem input {
    margin: 0 10px;
    user-select: none;
}

.SelectedAnswer {
    border-color: var(--theme);
    background: var(--theme);
    color: white;
    user-select: none;
}

.QuizIntroduction p {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-size: 20px;
}

/* Card wrapper */
.QuizAttemptCard {
    width: 100%;
    max-width: 100%;
    height: fit-content;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 24px;
    /* box-shadow: 0 12px 28px rgba(0,0,0,0.08); */
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

/* Header */
.QuizAttemptHeader {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

/* Rows */
.AttemptRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
}

/* Label */
.AttemptLabel {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

/* Value */
.AttemptValue {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Divider look between rows */
.AttemptRow:not(:last-child) {
    border-bottom: 1px dashed #e5e7eb;
}

/* Badges */
.badge {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1;
}

.badge-info {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

/* Empty state */
.NoAttemptState {
    width: 100%;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.NoAttemptState p {
    font-size: 14px;
    color: #6b7280;
}

/* Empty icon */
.EmptyIcon {
    width: 90px;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .AttemptRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .AttemptValue {
        justify-content: flex-start;
    }
}


.QuizForm {
}

.QuizForm button[type=submit] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    background: var(--theme);
    border: none;
    color: white;
    font-size: 20px;
    padding: 15px 0;
    border-radius: 5px;
    user-select: none;
    transition: 330ms;
}

.QuizForm button[type=submit]:hover {
    background: #282828;
}

.QuizResult {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.QuizResultInner {
}

.QuizResultDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 20px;
    background: #f3f3f3;
    border-radius: 20px;
    min-width: 330px;
    max-width: 100%;
}

.QuizResultDiv h2 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 25px;
    font-weight: bold;
    color: var(--theme);
}

.QuizResultDiv label {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.QuizResultDiv h1 {
    display: block;
    margin: 25px auto;
    width: fit-content;
    font-size: 70px;
    font-weight: bold;
}

.MyQuizzesGH {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
}

.MyQuizzesItem {
    display: block;
    margin: 17px 1%;
    width: 23%;
    background: #ededed;
    padding: 10px;
    border-radius: 10px;
    border: solid 1px #d9d9d9;
    min-height: 260px;
}

.MyQuizzesItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 19px;
    font-weight: bold;
    color: var(--theme2);
    text-transform: uppercase;
}

.MyQuizzesItem p {
    display: block;
    margin: 13px auto;
    width: 100%;
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 45px;
}

.MyQuizzesItem h5 {
    display: flex;
    justify-content: start;
    align-items: baseline;
    margin: 0 auto 20px;
    width: 100%;
}

.MyQuizzesItem h5 u {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: #528949;
    padding: 7px 5px 4px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 17px;
    margin: 0 5px;
    line-height: 12px;
}

.MyQuizzesItem h5 u:last-child {
    background: #545454;
}

.MyQuizzesItem label {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: start;
    align-items: baseline;
    text-transform: uppercase;
    color: #818181;
}

.MyQuizzesItem label i {
    margin: 0 7px;
}

.MyQuizzesItem button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: none;
    color: var(--theme2);
    font-size: 16px;
    padding: 5px 15px;
    border: solid 2px;
    border-radius: 5px;
    margin: 15px 0 0;
    transition: 350ms;
    font-weight: 700;
}

.MyQuizzesItem button i {
    margin-left: 9px;
}


.MyQuizzesItem button:hover {
    color: white;
    background: var(--theme2);
    border-color: var(--theme2);
}

.MyQuizzesGHPage .MyQuizzesItem {
    background: #ffffff;
}

.QuizResultButtons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.QuizResultButtons button {
    display: flex;
    justify-content: start;
    align-items: center;
    width: max-content;
    font-size: 15px;
    padding: 6px 9px;
    background: none;
    border: solid 2px;
    color: var(--theme2);
    margin: 0 6px;
    border-radius: 5px;
    transition: 350ms;
}

.QuizResultButtons button i {
    margin-left: 10px;
}

.QuizResultButtons button:last-child {
    color: #565656;
}

.QuizResultButtons button:hover {
    transform: scale(1.1);
    background: var(--theme2);
    border-color: var(--theme2);
    color: white;
}

.QuizResultDiv p {
    display: block;
    margin: 6px auto;
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.SideMenu, .SideMenuBtn, .VideoCloser {
    display: none;
}

navbar {
    display: none;
}

.LessonsListTrigger {
    display: none;
}

.LessonsListFade {
    display: none;
}

.ContactPopUp {
    display: none;
}

.ContactPopUpDiv {
    display: block;
    margin: 15px auto;
    width: 520px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 20px;
    border: solid 1px #d7d7d7;
    padding: 20px;
    direction: ltr;
}

.ContactPopUpDiv h1 {
    display: block;
    margin: 27px auto 0;
    width: 100%;
    font-weight: bold;
    color: #444444;
    font-size: 22px;
    cursor: pointer;
}

.ContactPopUpDiv h1 i {
    color: var(--theme2);
    margin-right: 10px;
}

.ContactSocials {
    display: flex;
    justify-content: start;
    align-items: start;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
}

.ContactSocials a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 47px;
    background: #e5e5e5;
    aspect-ratio: 1/1;
    margin-right: 10px;
    border-radius: 1000px;
    color: var(--theme2);
    font-size: 25px;
    transition: 350ms;
}

.ContactSocials a i {
    pointer-events: none !important;
}

.ContactSocials a:hover {
    transform: scale(1.1);
    background: var(--theme2);
    color: white;
}

.ContactPopUpInner {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContactPopUpFade {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
    opacity: 0.5;
}

.ContactPopUpCover {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: var(--theme);
    padding: 50px 0;
    border-radius: 20px;
}

.ContactPopUpCover video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    mix-blend-mode: luminosity;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.ContactPopUpCover h5 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 44px;
    text-shadow: 0px 0px 17px #000000;
}

.BlogsItemBtns {
    display: flex;
    justify-content: start;
    align-items: start;
    margin: 0 auto;
    width: 100%;
}

.BlogsItemBtns .BlogsItemBtnsEditBtn {
    background: #e5c23b;
}

.NoSubsRF {
    display: block;
    margin: 40px auto;
    width: 500px;
    max-width: 100%;
}

.NoSubsRF img {
    display: block;
    margin: 0 auto;
    width: 140px;
    max-width: 90%;
}

.NoSubsRF h6 {
    display: block;
    margin: 8px auto;
    width: 90%;
    text-align: center;
    color: var(--theme2);
    font-weight: bold;
}

.NoSubsRF button {
    display: block;
    margin: 30px auto 0;
    width: fit-content;
    padding: 10px 15px;
    border: solid 2px;
    color: var(--theme2);
    border-radius: 10px;
    font-weight: 500;
    transition: 350ms;
}

.NoSubsRF button:hover {
    border-color: var(--theme2);
    background: var(--theme2);
    color: #ffffff;
}

.NoSubsRF h6 u {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: bold;
}

.GlobePagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 25px auto;
    flex-wrap: wrap;
}

.GlobePagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 3px 10px 0px;
    text-decoration: none !important;
    border: solid 2px;
    border-radius: 5px;
    margin: 5px 5px;
    color: #545454;
    transition: 300ms;
}

.GlobePagination a:hover {
    transform: scale(1.1);
    background: #efefef;
}

.GlobePagination .ActivePage {
    background: var(--theme2);
    border-color: var(--theme2);
    color: white;
    pointer-events: none;
}

.AuthDetails p:last-child, .AuthDetails p:last-of-type {
    border: 0;
}

.LatestTransactionItem:last-child, .LatestTransactionItem:last-of-type {
    border: 0;
}

.AppRF {
    display: block;
    margin: 0 auto;
    width: 450px;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
}

.AppRF h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--theme);
}

.AppRF p {
    display: block;
    margin: 10px auto;
    width: 100%;
    text-align: center;
    font-size: 15px;
}

.AppRF a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background: #52b35a;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    margin: 0 auto;
    transition: 300ms;
}


.AppRFArt {
    display: block;
    margin: 0 auto 10px;
    width: 140px;
    filter: grayscale(20%);
}

.AppRF a i {

    margin-left: 7px;
}


.AppRF a:hover {
    background: #3ba143;
    transform: scale(1.1);
}
