    @charset "UTF-8";
    /****** Utils ******/
    
    @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
     :root {
        --white: #fff;
        --dark: #000;
        --black: #000;
        --light: #F8F8F8;
        --gray-100: #E7E7E7;
        --gray-200: #D1D1D1;
        --gray-300: #B0B0B0;
        --gray-400: #888888;
        --gray-500: #6D6D6D;
        --gray-600: #5D5D5D;
        --gray-700: #4F4F4F;
        --gray-800: #3D3D3D;
        --gray-900: #191919;
        --light-100: #FEFEFE;
        --light-200: #FCFCFD;
        --light-300: #FBFBFD;
        --light-400: #F9FAFC;
        --light-500: #F8FAFB;
        --light-600: #F7F9FB;
        --light-700: #F6F8FA;
        --light-800: #F5F7FA;
        --light-900: #F4F6F9;
        --yellow: #FFD700;
        --mc-color-bg-container-dark: #303136;
        --text-span: #ffc107;
        --text-highlight: #00aa55;
        --text-description: #000;
        --border-color: #dad8d8;
        --card-text: #000;
        --card-border: #dad8d8;
        --text-heading: #000;
        --form-border: 1px solid black;
        --card-bg: #ffffff;
        --accordion-border: 1px solid black;
        --form-focus-border-color: black;
        --text-color: #000;
    }
    
    .dark-mode {
        --white: #0D0D0D;
        --dark: #000000;
        --black: #D6DADE;
        --light: #FFF;
        --gray-100: #171717;
        --gray-200: #1F2228;
        --gray-300: #2F343C;
        --gray-400: #9CA3AF;
        --gray-500: #6B7280;
        --gray-600: #4B5563;
        --gray-700: #374151;
        --gray-800: #C8D2E0;
        --gray-900: #D8DFEE;
        --light-100: #0A0A0A;
        --light-200: #0B0B0B;
        --light-300: #0C0C0C;
        --light-400: #0E0E0E;
        --light-500: #0F0F0F;
        --light-600: #101010;
        --light-700: #111111;
        --light-800: #121212;
        --light-900: #181818;
        --text-description: #ffff;
        --border-color: #414341;
        --card-text: #fff;
        --card-border: none;
        --text-heading: #dbdad8;
        --text-highlight: #00ff99;
        --card-bg: #1a1a1a;
        --accordion-border: none;
        --form-focus-border-color: white;
        --text-color: #fff;
    }
    
    header {
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    /******* Base *******/
    
    body {
        font-family: "Inter", sans-serif;
        font-size: 15px;
        color: var(--gray-600);
        line-height: 1.5;
        background-color: var(--white);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    @media (max-width: 767.98px) {
        body {
            font-size: 14px;
        }
    }
    
     ::selection {
        background: #392C7D;
        color: var(--white);
        text-shadow: none;
    }
    
    img {
        max-width: 100%;
        height: auto;
        vertical-align: middle;
    }
    
    * {
        outline: none;
    }
    
    button {
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    
    button:focus {
        box-shadow: none !important;
    }
    
    p {
        margin-bottom: 20px;
    }
    
    p:last-child {
        margin-bottom: 0;
    }
    
    strong {
        font-weight: 700;
    }
    
    h1,
    .h1,
    h2,
    .h2,
    h3,
    .h3,
    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        color: var(--gray-900);
        font-family: "Inter", sans-serif;
        font-weight: 700;
        margin-bottom: 0;
        line-height: 1.3;
    }
    
    ol,
    ul {
        list-style: none;
        margin-block-end: 0;
        padding: 0;
    }
    
    ul {
        list-style: none;
    }
    
    ul.list-disc {
        list-style: disc;
        padding-left: 15px;
    }
    
    ul.list-disc ul {
        list-style-type: circle;
    }
    
    ul.list-decimal {
        list-style: decimal;
        padding-left: 15px;
    }
    
    ul.list-decimal ul {
        list-style-type: decimal;
    }
    
    ul.list-icon {
        list-style: none;
        padding-left: 0;
    }
    
    ul.list-icon>li {
        padding-left: 1.875rem;
        counter-increment: li;
    }
    
    ul.list-icon>li i,
    ul.list-icon>li .feather-icon,
    ul.list-icon>li .svg-icon {
        display: inline-block;
        height: 20px;
        width: 20px;
        text-align: center;
        margin-left: -1.25rem;
        position: relative;
        left: -10px;
        padding: 1px;
        top: -1px;
    }
    
    ul.list-icon>li i {
        font-size: 20px;
        top: 5px;
    }
    
    ul .btn-primary:not(:disabled):not(.disabled):active:focus,
    ul .btn-primary:not(:disabled):not(.disabled).active:focus {
        box-shadow: none;
    }
    
    .bg-primary {
        background-color: #392C7D !important;
    }
    
    .bg-secondary {
        background-color: #FF4667 !important;
    }
    
    .bg-info {
        background-color: #5625E8 !important;
    }
    
    .bg-success {
        background-color: #03C95A !important;
        border-color: #03C95A !important;
    }
    
    .bg-warning {
        background-color: #FFC107 !important;
    }
    
    .bg-danger {
        background-color: #E70D0D !important;
    }
    
    .bg-dark {
        background-color: var(--dark) !important;
    }
    
    .bg-light {
        background-color: var(--light) !important;
    }
    
    .bg-white {
        background-color: var(--white) !important;
    }
    
    .bg-pink {
        background-color: #FD3995 !important;
    }
    
    .bg-purple {
        background-color: #AB47BC !important;
        border-color: #AB47BC !important;
    }
    
    .bg-darkgreen {
        background-color: #111926 !important;
    }
    
    .bg-nightblue {
        background-color: #0F0F41 !important;
    }
    
    .bg-royalblue {
        background-color: #0039C6 !important;
    }
    
    .bg-darkgray {
        background-color: #2E2E48 !important;
    }
    
    .bg-indigo {
        background-color: #391694 !important;
    }
    
    .bg-gray {
        background: var(--light-500);
    }
    
    .bg-primary {
        background-color: #392C7D !important;
    }
    
    .bg-primary.bg-opacity-10 {
        background-color: rgba(57, 44, 125, 0.1) !important;
    }
    
    .bg-primary.bg-opacity-25 {
        background-color: rgba(57, 44, 125, 0.25) !important;
    }
    
    .bg-primary.bg-opacity-50 {
        background-color: rgba(57, 44, 125, 0.5) !important;
    }
    
    .bg-primary.bg-opacity-75 {
        background-color: rgba(57, 44, 125, 0.75) !important;
    }
    
    .bg-primary.bg-opacity-100 {
        background-color: #392c7d !important;
    }
    
    .bg-secondary {
        background-color: #FF4667 !important;
    }
    
    .bg-secondary.bg-opacity-10 {
        background-color: rgba(255, 70, 103, 0.1) !important;
    }
    
    .bg-secondary.bg-opacity-25 {
        background-color: rgba(255, 70, 103, 0.25) !important;
    }
    
    .bg-secondary.bg-opacity-50 {
        background-color: rgba(255, 70, 103, 0.5) !important;
    }
    
    .bg-secondary.bg-opacity-75 {
        background-color: rgba(255, 70, 103, 0.75) !important;
    }
    
    .bg-secondary.bg-opacity-100 {
        background-color: #ff4667 !important;
    }
    
    .bg-info {
        background-color: #5625E8 !important;
    }
    
    .bg-info.bg-opacity-10 {
        background-color: rgba(86, 37, 232, 0.1) !important;
    }
    
    .bg-info.bg-opacity-25 {
        background-color: rgba(86, 37, 232, 0.25) !important;
    }
    
    .bg-info.bg-opacity-50 {
        background-color: rgba(86, 37, 232, 0.5) !important;
    }
    
    .bg-info.bg-opacity-75 {
        background-color: rgba(86, 37, 232, 0.75) !important;
    }
    
    .bg-info.bg-opacity-100 {
        background-color: #5625e8 !important;
    }
    
    .bg-success {
        background-color: #03C95A !important;
    }
    
    .bg-success.bg-opacity-10 {
        background-color: rgba(3, 201, 90, 0.1) !important;
    }
    
    .bg-success.bg-opacity-25 {
        background-color: rgba(3, 201, 90, 0.25) !important;
    }
    
    .bg-success.bg-opacity-50 {
        background-color: rgba(3, 201, 90, 0.5) !important;
    }
    
    .bg-success.bg-opacity-75 {
        background-color: rgba(3, 201, 90, 0.75) !important;
    }
    
    .bg-success.bg-opacity-100 {
        background-color: #03c95a !important;
    }
    
    .bg-warning {
        background-color: #FFC107 !important;
    }
    
    .bg-warning.bg-opacity-10 {
        background-color: rgba(255, 193, 7, 0.1) !important;
    }
    
    .bg-warning.bg-opacity-25 {
        background-color: rgba(255, 193, 7, 0.25) !important;
    }
    
    .bg-warning.bg-opacity-50 {
        background-color: rgba(255, 193, 7, 0.5) !important;
    }
    
    .bg-warning.bg-opacity-75 {
        background-color: rgba(255, 193, 7, 0.75) !important;
    }
    
    .bg-warning.bg-opacity-100 {
        background-color: #ffc107 !important;
    }
    
    .bg-danger {
        background-color: #E70D0D !important;
    }
    
    .bg-danger.bg-opacity-10 {
        background-color: rgba(231, 13, 13, 0.1) !important;
    }
    
    .bg-danger.bg-opacity-25 {
        background-color: rgba(231, 13, 13, 0.25) !important;
    }
    
    .bg-danger.bg-opacity-50 {
        background-color: rgba(231, 13, 13, 0.5) !important;
    }
    
    .bg-danger.bg-opacity-75 {
        background-color: rgba(231, 13, 13, 0.75) !important;
    }
    
    .bg-danger.bg-opacity-100 {
        background-color: #e70d0d !important;
    }
    
    .bg-dark {
        background-color: var(--dark) !important;
    }
    
    .bg-dark.bg-opacity-10 {
        background-color: rgba(var(--dark), 0.1) !important;
    }
    
    .bg-dark.bg-opacity-25 {
        background-color: rgba(var(--dark), 0.25) !important;
    }
    
    .bg-dark.bg-opacity-50 {
        background-color: rgba(var(--dark), 0.5) !important;
    }
    
    .bg-dark.bg-opacity-75 {
        background-color: rgba(var(--dark), 0.75) !important;
    }
    
    .bg-dark.bg-opacity-100 {
        background-color: rgba(var(--dark), 1) !important;
    }
    
    .bg-light {
        background-color: var(--light) !important;
    }
    
    .bg-light.bg-opacity-10 {
        background-color: rgba(var(--light), 0.1) !important;
    }
    
    .bg-light.bg-opacity-25 {
        background-color: rgba(var(--light), 0.25) !important;
    }
    
    .bg-light.bg-opacity-50 {
        background-color: rgba(var(--light), 0.5) !important;
    }
    
    .bg-light.bg-opacity-75 {
        background-color: rgba(var(--light), 0.75) !important;
    }
    
    .bg-light.bg-opacity-100 {
        background-color: rgba(var(--light), 1) !important;
    }
    
    .bg-skyblue {
        background-color: #0DCAF0 !important;
        border-color: #0DCAF0 !important;
    }
    
    .bg-primary {
        background-color: #392C7D !important;
        border: 1px solid #392C7D !important;
        color: var(--white);
    }
    
    .bg-secondary {
        background-color: #FF4667 !important;
        border: 1px solid #FF4667 !important;
        color: var(--white);
    }
    
    .bg-success {
        background-color: #03C95A !important;
        border: 1px solid #03C95A !important;
        color: var(--white);
    }
    
    .bg-info {
        background-color: #5625E8 !important;
        border: 1px solid #5625E8 !important;
        color: var(--white);
    }
    
    .bg-warning {
        background-color: #FFC107 !important;
        border: 1px solid #FFC107 !important;
        color: var(--white);
    }
    
    .bg-danger {
        background-color: #E70D0D !important;
        border: 1px solid #E70D0D !important;
        color: var(--white);
    }
    
    .bg-purple {
        background-color: #AB47BC !important;
        border: 1px solid #AB47BC !important;
        color: var(--white);
    }
    
    .bg-soft-primary {
        background-color: #D6D4E4;
        color: #392C7D;
    }
    
    .bg-soft-secondary {
        background-color: #FFDAE0;
        color: #FF4667;
    }
    
    .bg-soft-success {
        background-color: #D2F5E1;
        color: #03C95A;
    }
    
    .bg-soft-danger {
        background-color: #F6CECE;
        color: #E70D0D;
    }
    
    .bg-soft-warning {
        background-color: #FFF4D2;
        color: #FFC107;
    }
    
    .bg-soft-info {
        background-color: #E1D8FB;
        color: #5625E8;
    }
    
    .bg-soft-purple {
        background-color: #F0DEF3;
        color: #AB47BC;
    }
    
    .bg-soft-light {
        background-color: rgba(var(--light), 0.9);
        color: var(--gray-500);
    }
    
    .bg-soft-dark {
        background-color: rgba(var(--dark), 0.3);
        color: var(--white);
    }
    
    .bg-light {
        color: var(--gray-500);
    }
    
    .bg-primary-gradient {
        background: linear-gradient(90deg, #FEE0DE 0%, #E4F5FD 51.39%, #DDEDFF 100%) !important;
        color: var(--white);
    }
    
    .bg-secondary-gradient {
        background: linear-gradient(180deg, #3B7080 0%, #3D90A9 100%) !important;
        color: var(--white);
    }
    
    .bg-warning-gradient {
        background: linear-gradient(180deg, #FFC107 0%, #FFE8A5 100%) !important;
        color: var(--white);
    }
    
    .bg-info-gradient {
        background: linear-gradient(180deg, #177DBC 0%, #1A91DB 100%) !important;
        color: var(--white);
    }
    
    .bg-success-gradient {
        background: linear-gradient(180deg, #2DCB73 0%, #0DA952 100%) !important;
        color: var(--white);
    }
    
    .bg-danger-gradient {
        background: linear-gradient(180deg, #E70D0D 0%, #810707 100%) !important;
        color: var(--white);
    }
    
    .bg-purple-gradient {
        background: linear-gradient(180deg, #4B3088 0%, #5C2DC8 100%) !important;
        color: var(--white);
    }
    
    .bg-light-gradient {
        background: linear-gradient(180deg, #F8F9FA 0%, #EDEDED 100%) !important;
        color: var(--black);
    }
    
    .bg-dark-gradient {
        background: linear-gradient(180deg, #F3F6FF 0%, #FFFFFF 100%) !important;
        color: var(--white);
    }
    
    .bg-purple-gradient2 {
        background: linear-gradient(10.93deg, #392C7D 16.22%, #6850E3 120.13%) !important;
        color: var(--white);
    }
    
    .bg-blue-gradient2 {
        background: linear-gradient(10.93deg, #2C7A9C 16.22%, #0936CB 120.13%) !important;
        color: var(--white);
    }
    
    .bg-outline-primary {
        background-color: var(--white);
        border: 1px solid #392C7D;
        color: #392C7D;
    }
    
    .bg-outline-secondary {
        background-color: var(--white);
        border: 1px solid #FF4667;
        color: #FF4667;
    }
    
    .bg-outline-warning {
        background-color: var(--white);
        border: 1px solid #FFC107;
        color: #FFC107;
    }
    
    .bg-outline-info {
        background-color: var(--white);
        border: 1px solid #5625E8;
        color: #5625E8;
    }
    
    .bg-outline-success {
        background-color: var(--white);
        border: 1px solid #03C95A;
        color: #03C95A;
    }
    
    .bg-outline-danger {
        background-color: var(--white);
        border: 1px solid #E70D0D;
        color: #E70D0D;
    }
    
    .bg-outline-dark {
        background-color: var(--white);
        border: 1px solid var(--dark);
        color: var(--dark);
    }
    
    .bg-outline-light {
        background-color: var(--white);
        border: 1px solid var(--light) !important;
        color: var(--black) !important;
    }
    
    .bg-primary-transparent {
        background-color: #EBE9F1 !important;
        color: #392C7D !important;
    }
    
    .bg-primary-transparent:hover {
        background-color: #EBE9F1 !important;
        color: #392C7D !important;
    }
    
    .bg-secondary-transparent {
        background-color: #FFEDF0 !important;
        color: #FF4667 !important;
    }
    
    .bg-secondary-transparent:hover {
        background-color: #FFEDF0 !important;
        color: #FF4667 !important;
    }
    
    .bg-info-transparent {
        background-color: #F0EBFD !important;
        color: #5625E8 !important;
    }
    
    .bg-success-transparent {
        background-color: #D2F5E1 !important;
        color: #03C95A !important;
    }
    
    .bg-success-transparent:hover {
        background-color: #D2F5E1 !important;
        color: #03C95A !important;
    }
    
    .bg-warning-transparent {
        background-color: #FFF4D2 !important;
        color: #FFC107 !important;
    }
    
    .bg-warning-transparent:hover {
        background-color: #FFF4D2 !important;
        color: #FFC107 !important;
    }
    
    .bg-danger-transparent {
        background-color: #F6CECE !important;
        color: #E70D0D !important;
    }
    
    .bg-danger-transparent:hover {
        background-color: #F6CECE !important;
        color: #E70D0D !important;
    }
    
    .bg-light-transparent {
        background-color: rgba(var(--light), 0.5) !important;
        color: var(--light) !important;
    }
    
    .bg-light-transparent:hover {
        background-color: rgba(var(--light), 0.5) !important;
        color: var(--gray-500) !important;
    }
    
    .bg-skyblue-transparent {
        background-color: #E9FAFE !important;
        color: #0DCAF0 !important;
    }
    
    .bg-skyblue-transparent:hover {
        background-color: #E9FAFE !important;
        color: #0DCAF0 !important;
    }
    
    .bg-pink-transparent {
        background-color: #FFDBEC !important;
        color: #FD3995 !important;
    }
    
    .bg-pink-transparent:hover {
        background-color: #FFDBEC !important;
        color: #FD3995 !important;
    }
    
    .bg-lightdanger-gradient {
        background: linear-gradient(180deg, #FFFFFF 0%, #FFEEEE 100%);
    }
    
    .bg-lightpink-gradient {
        background: linear-gradient(180deg, #FFFFFF 0%, #FFEBF4 100%);
    }
    
    .bg-lightsuccess-gradient {
        background: linear-gradient(180deg, #FFFFFF 0%, #E8FFF2 100%);
    }
    
    .bg-lightpurple-gradient {
        background: linear-gradient(180deg, #FFFFFF 0%, #FCE8FF 100%);
    }
    
    .bg-primary-100 {
        background-color: #D6D4E4 !important;
    }
    
    .bg-gray-100 {
        background-color: var(--gray-100);
    }
    
    .bg-gray-200 {
        background-color: var(--gray-200);
    }
    
    .bg-gray-300 {
        background-color: var(--gray-300);
    }
    
    .bg-gray-400 {
        background-color: var(--gray-400);
    }
    
    .bg-gray-500 {
        background-color: var(--gray-500);
    }
    
    .bg-gray-600 {
        background-color: var(--gray-600);
    }
    
    .bg-gray-700 {
        background-color: var(--gray-700);
    }
    
    .bg-gray-800 {
        background-color: var(--gray-800);
    }
    
    .bg-gray-900 {
        background-color: var(--gray-900) !important;
    }
    
    .bg-light-100 {
        background-color: var(--light-100) !important;
    }
    
    .bg-light-300 {
        background-color: var(--light-300) !important;
    }
    
    .bg-light-400 {
        background-color: var(--light-400) !important;
    }
    
    .bg-light-500 {
        background-color: var(--light-500) !important;
    }
    
    .bg-success-800 {
        background-color: #33D37A !important;
    }
    
    .svg-primary {
        fill: #392C7D;
    }
    
    .svg-secondary {
        fill: #FF4667;
    }
    
    .svg-success {
        fill: #03C95A;
    }
    
    .svg-danger {
        fill: #E70D0D;
    }
    
    .svg-warning {
        fill: #FFC107;
    }
    
    .svg-white {
        fill: var(--white);
    }
    
    .svg-black {
        fill: var(--black);
    }
    
    .svg-pink {
        fill: #FD3995;
    }
    
    .svg-purple {
        fill: #AB47BC;
    }
    
    .svg-info {
        fill: #5625E8;
    }
    
    .svg-light {
        fill: var(--light);
    }
    
    .svg-dark {
        fill: var(--dark);
    }
    
    .svg-default {
        fill: var(--gray-500);
    }
    
    .color-container {
        width: 5rem;
        height: 5rem;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 3rem;
    }
    
    .text-container {
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
    }
    
    .color-box {
        width: 80px;
        height: 80px;
        border-radius: 4px;
        margin-right: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .bg-light-200 {
        background: var(--light-200);
    }
    
    .bg-light-300 {
        background: var(--light-300);
    }
    
    .bg-transparent-primary {
        background: #EBE9F1;
    }
    
    .bg-transparent-dark {
        background: #E8E8E8;
    }
    
    .bg-transparent-warning {
        background: #FFF4D2 !important;
    }
    
    .bg-transparent-light {
        background: var(--light) !important;
    }
    
    .bg-transparent-danger {
        background: #F6CECE !important;
    }
    
    .bg-transparent-success {
        background: #D2F5E1 !important;
    }
    
    .bg-transparent-info {
        background: #E1D8FB !important;
    }
    
    .bg-transparent-purple {
        background: #F7EEF9 !important;
        color: #AB47BC !important;
    }
    
    .bg-transparent-secondary {
        background: #FFEDF0 !important;
    }
    
    .bg-transparent-skyblue {
        background: #E9FAFE !important;
    }
    
    .bg-light-gray {
        background: var(--light-500);
    }
    
    .bg-soft-pink {
        background: #FFDBEC;
        color: #FD3995;
    }
    
    .bg-soft-skyblue {
        background: #D3F5FC;
        color: #0DCAF0;
    }
    
    .bg-danger-transparent {
        background: #FAE7E7;
        border-color: #FAE7E7 !important;
    }
    
    .bg-pink-transparent {
        background: #FFEDF6 !important;
        color: #FD3995 !important;
    }
    
    .bg-blue-transparent {
        background: #E9FAFE !important;
        color: #0DCAF0 !important;
    }
    
    .bg-purple-transparent {
        background: #F7EEF9 !important;
        color: #AB47BC !important;
    }
    
    .bg-outline-pink {
        border: 1px solid #FD3995 !important;
        color: #FD3995 !important;
    }
    
    .bg-outline-purple {
        border: 1px solid #AB47BC !important;
        color: #AB47BC !important;
    }
    
    .bg-outline-skyblue {
        border: 1px solid #0DCAF0 !important;
        color: #0DCAF0 !important;
    }
    
    .bg-light-900 {
        background: var(--light-900) !important;
        border-color: var(--light-900) !important;
    }
    
    .bg-light-500 {
        background: var(--light-500) !important;
    }
    /******* Components ******/
    
    .avatar {
        position: relative;
        height: 2.625rem;
        width: 2.625rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: var(--white);
        font-weight: 500;
    }
    
    .avatar a.badge:hover {
        color: var(--white);
    }
    
    .avatar img {
        width: 100%;
        height: 100%;
        border-radius: 4px;
    }
    
    .avatar.avatar-rounded {
        border-radius: 50%;
    }
    
    .avatar.avatar-rounded img {
        border-radius: 50%;
    }
    
    .avatar.avatar-radius-0 {
        border-radius: 0;
    }
    
    .avatar.avatar-radius-0 img {
        border-radius: 0;
    }
    
    .avatar .avatar-badge {
        position: absolute;
        inset-block-start: -4%;
        inset-inline-end: -0.375rem;
        width: 1.4rem;
        height: 1.4rem;
        font-size: 0.625rem;
        border: 2px solid var(--white);
        border-radius: 50% !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .avatar.online:before,
    .avatar.offline:before {
        position: absolute;
        content: "";
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        inset-inline-end: 0;
        inset-block-end: 0;
        border: 2px solid var(--white) !important;
        z-index: 1;
    }
    
    .avatar.online:before {
        background-color: #03C95A;
    }
    
    .avatar.offline:before {
        background-color: var(--gray-500);
    }
    
    .avatar.avatar-xs {
        width: 1.25rem;
        height: 1.25rem;
        line-height: 1.25rem;
        font-size: 0.65rem;
    }
    
    .avatar.avatar-xs .avatar-badge {
        padding: 0.25rem;
        width: 1rem;
        height: 1rem;
        line-height: 1rem;
        font-size: 0.5rem;
        inset-block-start: -25%;
        inset-inline-end: -0.5rem;
    }
    
    .avatar.avatar-sm {
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.5rem;
        font-size: 0.65rem;
    }
    
    .avatar.avatar-sm .avatar-badge {
        padding: 0.3rem;
        width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        font-size: 0.5rem;
        inset-block-start: -28%;
        inset-inline-end: -0.45rem;
    }
    
    .avatar.avatar-sm.online:before,
    .avatar.avatar-sm.offline:before {
        width: 0.5rem;
        height: 0.5rem;
    }
    
    .avatar.avatar-md {
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        font-size: 0.8rem;
    }
    
    .avatar.avatar-md .avatar-badge {
        padding: 0.4rem;
        width: 1.2rem;
        height: 1.2rem;
        line-height: 1.2rem;
        font-size: 0.65rem;
        inset-block-start: -6%;
        inset-inline-end: -13%;
    }
    
    .avatar.avatar-md.online:before,
    .avatar.avatar-md.offline:before {
        width: 0.75rem;
        height: 0.75rem;
    }
    
    .avatar.avatar-md svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .avatar.avatar-lg {
        width: 2.813rem;
        height: 2.813rem;
        line-height: 2.813rem;
        font-size: 1rem;
    }
    
    .avatar.avatar-lg .avatar-badge {
        inset-block-start: -15%;
        inset-inline-end: -0.25%;
    }
    
    .avatar.avatar-lg.online:before,
    .avatar.avatar-lg.offline:before {
        width: 0.8rem;
        height: 0.8rem;
    }
    
    .avatar.avatar-lg svg {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .avatar.avatar-xl {
        width: 3.6rem;
        height: 3.6rem;
        line-height: 3.6rem;
        font-size: 1.25rem;
    }
    
    .avatar.avatar-xl .avatar-badge {
        inset-block-start: -8%;
        inset-inline-end: -0.2%;
    }
    
    .avatar.avatar-xl.online:before,
    .avatar.avatar-xl.offline:before {
        width: 0.95rem;
        height: 0.95rem;
    }
    
    .avatar.avatar-xxl {
        width: 5rem;
        height: 5rem;
        line-height: 5rem;
        font-size: 1.5rem;
    }
    
    .avatar.avatar-xxl .avatar-badge {
        inset-block-start: -4%;
        inset-inline-end: 0rem;
    }
    
    .avatar.avatar-xxl.online:before,
    .avatar.avatar-xxl.offline:before {
        width: 1.05rem;
        height: 1.05rem;
        inset-block-end: 0.25rem;
    }
    
    .avatar.avatar-xxxl {
        width: 6rem;
        height: 6rem;
        line-height: 6rem;
        font-size: 1.75rem;
    }
    
    .avatar.avatar-xxxl .avatar-badge {
        inset-block-start: -4%;
        inset-inline-end: 0rem;
    }
    
    .avatar.avatar-xxxl.online:before,
    .avatar.avatar-xxxl.offline:before {
        width: 1.05rem;
        height: 1.05rem;
        inset-block-end: 0.25rem;
    }
    
    .avatar-list-stacked {
        padding: 0;
    }
    
    .avatar-list-stacked.avatar-group-overlapped .avatar {
        margin-right: -0.875rem;
    }
    
    .avatar-list-stacked.avatar-group-overlapped .avatar:hover {
        z-index: 1;
    }
    
    .avatar-list-stacked.avatar-group-lg .avatar {
        width: 3.25rem;
        height: 3.25rem;
    }
    
    .avatar-list-stacked.avatar-group-lg .avatar>.initial-wrap {
        font-size: 0.95rem;
    }
    
    .avatar-list-stacked.avatar-group-lg.avatar-group-overlapped .avatar {
        margin-right: -1rem;
    }
    
    .avatar-list-stacked.avatar-group-sm .avatar {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .avatar-list-stacked.avatar-group-sm .avatar>.initial-wrap {
        font-size: 0.6rem;
    }
    
    .avatar-list-stacked.avatar-group-sm.avatar-group-overlapped .avatar {
        margin-right: -0.625rem;
    }
    
    .avatar-list-stacked.avatar-group-xs .avatar {
        width: 1rem;
        height: 1rem;
        margin-inline-end: -6px !important;
    }
    
    .avatar-list-stacked.avatar-group-xs .avatar>.initial-wrap {
        font-size: 0.6rem;
    }
    
    .avatar-list-stacked.avatar-group-xs.avatar-group-overlapped .avatar {
        margin-right: -6px;
    }
    
    .avatar-list-stacked .avatar {
        margin-inline-end: -20px !important;
        border: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
        transition: transform ease 200ms;
    }
    
    .avatar-list-stacked .avatar:last-child {
        margin-inline-end: 0 !important;
    }
    
    .avatar-list-stacked .avatar:hover {
        z-index: 1;
        transform: translateY(-0.188rem);
    }
    
    .avatar-group {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
    
    .avatar-group .avatar {
        width: 2.625rem;
        height: 2.625rem;
    }
    
    .avatar-group .avatar .avatar-img,
    .avatar-group .avatar>.initial-wrap {
        border: 2px solid var(--white);
        font-size: 0.9rem;
    }
    
    .avatar-group.avatar-group-overlapped .avatar {
        margin-right: -0.875rem;
    }
    
    .avatar-group.avatar-group-overlapped .avatar:hover {
        z-index: 1;
    }
    
    .avatar-group.avatar-group-lg .avatar {
        width: 3.25rem;
        height: 3.25rem;
    }
    
    .avatar-group.avatar-group-lg .avatar>.initial-wrap {
        font-size: 0.95rem;
    }
    
    .avatar-group.avatar-group-lg.avatar-group-overlapped .avatar {
        margin-right: -1rem;
    }
    
    .avatar-group.avatar-group-sm .avatar {
        width: 2rem;
        height: 2rem;
    }
    
    .avatar-group.avatar-group-sm .avatar>.initial-wrap {
        font-size: 0.6rem;
    }
    
    .avatar-group.avatar-group-sm.avatar-group-overlapped .avatar {
        margin-right: -0.625rem;
    }
    
    .avatar.avatar-xl.border.online::before {
        width: 10px;
        height: 10px;
        inset-inline-end: 5px;
    }
    
    .avatar-xxxl.candidate-img {
        width: 135px;
        height: 135px;
    }
    
    .bootstrap-datetimepicker-widget table td.active,
    .bootstrap-datetimepicker-widget table td.active:hover {
        background-color: #392C7D;
        text-shadow: unset;
    }
    
    .bootstrap-datetimepicker-widget table th {
        font-size: 14px;
        font-weight: 600;
        color: var(--gray-900);
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    
    .bootstrap-datetimepicker-widget table th.prev,
    .bootstrap-datetimepicker-widget table th.next {
        padding-bottom: 16px;
    }
    
    .bootstrap-datetimepicker-widget table th.prev span,
    .bootstrap-datetimepicker-widget table th.next span {
        width: 24px;
        height: 24px;
        font-size: 12px;
        border: 1px solid var(--light-900);
        border-radius: 50%;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
    }
    
    .bootstrap-datetimepicker-widget table th.prev span:hover,
    .bootstrap-datetimepicker-widget table th.next span:hover {
        background: var(--dark);
        border-color: var(--dark);
        color: var(--white);
    }
    
    .bootstrap-datetimepicker-widget table td {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .bootstrap-datetimepicker-widget table td.day {
        width: 30px;
        height: 32px;
        line-height: 32px;
    }
    
    .bootstrap-datetimepicker-widget {
        z-index: 999 !important;
    }
    
    .bootstrap-datetimepicker-widget .picker-switch {
        padding-bottom: 16px;
    }
    
    .bootstrap-datetimepicker-widget table td.today:before {
        border-bottom-color: #392C7D;
    }
    
    .bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
        background: transparent;
    }
    
    .border-success {
        border-color: #03C95A !important;
    }
    
    .shadow-sm {
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1) !important;
    }
    
    .shadow-md {
        box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1) !important;
    }
    
    .list-group-item {
        border-color: var(--light-900) !important;
        color: inherit;
    }
    
    .list-group a.active {
        background: #D6D4E4;
        color: #392C7D;
    }
    
    .list-group a:hover {
        background: #D6D4E4;
        color: #392C7D;
    }
    
    .list-styled-dotted li {
        list-style-type: disc;
    }
    
    .link-default {
        color: var(--gray-500);
    }
    
    .link-default:hover {
        color: #392C7D;
    }
    
    .custom-offcanvas.offcanvas.offcanvas-end {
        width: 600px !important;
    }
    
    .custom-offcanvas.offcanvas.offcanvas-end .offcanvas-header .close-btn {
        width: 20px;
        height: 20px;
        color: var(--white);
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        background-color: var(--gray-500);
        border: 1px solid var(--gray-500);
    }
    
    .custom-offcanvas.offcanvas.offcanvas-end .offcanvas-header .close-btn:hover {
        background: #E70D0D;
        border-color: #E70D0D;
    }
    
    .w-40 {
        width: 40%;
    }
    
    @media (max-width: 767.98px) {
        .w-40 {
            width: 100%;
        }
    }
    
    hr {
        border-color: var(--light-900);
    }
    
    .btn-primary {
        color: var(--white);
        background-color: #392C7D;
        border-color: #392C7D;
        font-size: 14px;
        font-size: 14px;
    }
    
    .btn-check:checked+.btn,
    .btn.active,
    .btn.show,
    .btn.show:hover,
    .btn:first-child:active,
     :not(.btn-check)+.btn:active {
        background-color: #392C7D;
        border-color: #392C7D;
        color: var(--white);
    }
    
    button {
        cursor: pointer;
    }
    
    button:focus {
        outline: 0;
        box-shadow: none;
    }
    
    .btn {
        border-radius: 1.5rem;
        padding: 0.4rem 0.85rem;
        font-size: 14px;
        transition: all 0.5s;
        font-weight: 500;
    }
    
    .btn:focus {
        box-shadow: none !important;
    }
    
    .btn:hover {
        transition: all 0.5s;
    }
    
    .btn.btn-xl {
        padding: 9px 16px;
        font-size: 16px;
    }
    
    @media (max-width: 767.98px) {
        .btn.btn-xl {
            padding: 8px 12px;
            font-size: 14px;
        }
    }
    
    .btn.btn-lg {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn.btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .btn.btn-xs {
        padding: 0.25rem 0.5rem;
        font-size: 0.6rem;
    }
    
    .btn.btn-md {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .btn.btn-primary {
        background-color: #392C7D;
        border: 1px solid #392C7D;
        color: var(--white);
    }
    
    .btn.btn-primary:hover,
    .btn.btn-primary:focus,
    .btn.btn-primary.focus,
    .btn.btn-primary:active,
    .btn.btn-primary.active {
        background-color: #2b215f;
        border: 1px solid #2b215f;
        color: var(--white);
    }
    
    .btn.btn-secondary {
        background-color: #FF4667;
        border: 1px solid #FF4667;
        color: var(--white);
    }
    
    .btn.btn-secondary:hover,
    .btn.btn-secondary:focus,
    .btn.btn-secondary.focus,
    .btn.btn-secondary:active,
    .btn.btn-secondary.active {
        background-color: #ff1d45;
        border: 1px solid #ff1d45;
        color: var(--white);
    }
    
    .btn.btn-success {
        background-color: #03C95A;
        border: 1px solid #03C95A;
        color: var(--white);
    }
    
    .btn.btn-success:hover,
    .btn.btn-success:focus,
    .btn.btn-success.focus,
    .btn.btn-success:active,
    .btn.btn-success.active {
        background-color: #02a148;
        border: 1px solid #02a148;
        color: var(--white);
    }
    
    .btn.btn-info {
        background-color: #5625E8;
        border: 1px solid #5625E8;
        color: var(--white);
    }
    
    .btn.btn-info:hover,
    .btn.btn-info:focus,
    .btn.btn-info.focus,
    .btn.btn-info:active,
    .btn.btn-info.active {
        background-color: #4416ce;
        border: 1px solid #4416ce;
        color: var(--white);
    }
    
    .btn.btn-warning {
        background-color: #FFC107;
        border: 1px solid #FFC107;
        color: var(--white);
    }
    
    .btn.btn-warning:hover,
    .btn.btn-warning:focus,
    .btn.btn-warning.focus,
    .btn.btn-warning:active,
    .btn.btn-warning.active {
        background-color: #dda600;
        border: 1px solid #dda600;
        color: var(--white);
    }
    
    .btn.btn-danger {
        background-color: #E70D0D;
        border: 1px solid #E70D0D;
        color: var(--white);
    }
    
    .btn.btn-danger:hover,
    .btn.btn-danger:focus,
    .btn.btn-danger.focus,
    .btn.btn-danger:active,
    .btn.btn-danger.active {
        background-color: #c00b0b;
        border: 1px solid #c00b0b;
        color: var(--white);
    }
    
    .btn.btn-purple {
        background-color: #AB47BC;
        border: 1px solid #AB47BC;
        color: var(--white);
    }
    
    .btn.btn-purple:hover,
    .btn.btn-purple:focus,
    .btn.btn-purple.focus,
    .btn.btn-purple:active,
    .btn.btn-purple.active {
        background-color: #913aa0;
        border: 1px solid #913aa0;
        color: var(--white);
    }
    
    .btn.btn-primary {
        background-color: #342777;
        border: 1px solid #342777;
        color: var(--white);
    }
    
    .btn.btn-primary:hover,
    .btn.btn-primary:focus,
    .btn.btn-primary.focus,
    .btn.btn-primary:active,
    .btn.btn-primary.active {
        background-color: #241B4B;
        border: 1px solid #241B4B;
        color: var(--white);
    }
    
    .btn.btn-light {
        background-color: var(--light);
        border: 1px solid var(--light);
        color: var(--gray-900);
    }
    
    .btn.btn-light:hover,
    .btn.btn-light:focus,
    .btn.btn-light.focus,
    .btn.btn-light:active,
    .btn.btn-light.active {
        background-color: #A8AAB2;
        border: 1px solid #A8AAB2;
        color: var(--gray-900);
    }
    
    .btn.btn-white {
        background-color: var(--white);
        border-color: var(--white);
        color: var(--gray-900);
    }
    
    .btn.btn-white.show,
    .btn.btn-white:hover {
        background-color: #392C7D;
        border-color: #392C7D;
        color: var(--white);
    }
    
    .btn.btn-gray {
        background-color: var(--gray-200);
        border-color: var(--gray-200);
        color: var(--gray-900);
    }
    
    .btn.btn-gray:hover,
    .btn.btn-gray:focus,
    .btn.btn-gray.focus,
    .btn.btn-gray:active,
    .btn.btn-gray.active {
        background-color: #392C7D;
        border-color: #392C7D;
        color: var(--white);
    }
    
    .btn.btn-linear-primary {
        background-image: linear-gradient(90deg, #FEE0DE 0%, #E4F5FD 51.39%, #DDEDFF 100%);
        border: 1px solid #342777;
        color: var(--white);
    }
    
    .btn.btn-linear-primary:hover,
    .btn.btn-linear-primary:focus,
    .btn.btn-linear-primary.focus,
    .btn.btn-linear-primary:active,
    .btn.btn-linear-primary.active {
        background-color: #281e5c;
        border: 1px solid #281e5c;
        color: var(--white);
    }
    
    .btn-group .btn {
        padding: 0.45rem 0.75rem;
    }
    
    .btn-group-lg .btn {
        padding: 0.65rem 1rem;
    }
    
    .btn-group-sm .btn {
        padding: 0.25rem 0.5rem;
    }
    
    .btn.btn-w-xs {
        min-width: 5.625rem;
    }
    
    .btn.btn-w-sm {
        min-width: 6.975rem;
    }
    
    .btn.btn-w-md {
        min-width: 8.125rem;
    }
    
    .btn.btn-w-lg {
        min-width: 9.375rem;
    }
    
    .btn-icon i {
        padding: 0rem;
        margin: -0.5rem;
    }
    
    .btn-icon.btn-xs {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .btn-icon.btn-sm {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
    }
    
    .btn-icon.btn-lg {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.2rem;
    }
    
    .btn-list>button,
    .btn-list>a {
        margin: 0 0.375rem 0.375rem 0;
    }
    
    [dir=rtl] .btn-list button,
    [dir=rtl] .btn-list div,
    [dir=rtl] .btn-list a,
    [dir=rtl] .btn-list input {
        margin: 0 0 0.375rem 0.375rem;
    }
    
    .btn-list {
        margin-block-end: -0.5rem;
    }
    
    .btn-square {
        border-radius: 0;
    }
    
    .btn-group-pill .btn:first-child {
        border-radius: 60px 0 0 60px;
    }
    
    .btn-group-pill .btn:last-child {
        border-radius: 0 60px 60px 0;
    }
    
    .btn-group-square .btn:first-child {
        border-radius: 0px 0 0 0px;
    }
    
    .btn-group-square .btn:last-child {
        border-radius: 0 0px 0px 0;
    }
    
    .btn.btn-primary-light {
        background-color: rgba(57, 44, 125, 0.1);
        color: #392C7D;
    }
    
    .btn.btn-primary-light:hover,
    .btn.btn-primary-light:focus,
    .btn.btn-primary-light:active {
        background-color: #392C7D;
        color: var(--white);
        border-color: #392C7D;
    }
    
    .btn.btn-secondary-light {
        background-color: rgba(255, 70, 103, 0.1);
        color: #FF4667;
    }
    
    .btn.btn-secondary-light:hover,
    .btn.btn-secondary-light:focus,
    .btn.btn-secondary-light:active {
        background-color: #FF4667;
        color: var(--white);
        border-color: #FF4667;
    }
    
    .btn.btn-warning-light {
        background-color: rgba(255, 193, 7, 0.1);
        color: #FFC107;
    }
    
    .btn.btn-warning-light:hover,
    .btn.btn-warning-light:focus,
    .btn.btn-warning-light:active {
        background-color: #FFC107;
        color: var(--white);
        border-color: #FFC107;
    }
    
    .btn.btn-info-light {
        background-color: rgba(86, 37, 232, 0.1);
        color: #5625E8;
    }
    
    .btn.btn-info-light:hover,
    .btn.btn-info-light:focus,
    .btn.btn-info-light:active {
        background-color: #5625E8;
        color: var(--white);
        border-color: #5625E8;
    }
    
    .btn.btn-success-light {
        background-color: rgba(3, 201, 90, 0.1);
        color: #03C95A;
    }
    
    .btn.btn-success-light:hover,
    .btn.btn-success-light:focus,
    .btn.btn-success-light:active {
        background-color: #03C95A;
        color: var(--white);
        border-color: #03C95A;
    }
    
    .btn.btn-danger-light {
        background-color: rgba(231, 13, 13, 0.1);
        color: #E70D0D;
    }
    
    .btn.btn-danger-light:hover,
    .btn.btn-danger-light:focus,
    .btn.btn-danger-light:active {
        background-color: #E70D0D;
        color: var(--white);
        border-color: #E70D0D;
    }
    
    .btn.btn-primary-ghost {
        background-color: transparent;
        color: #392C7D;
        border: 1px solid #392C7D;
    }
    
    .btn.btn-primary-ghost:active {
        color: #392C7D;
        border: 1px solid #392C7D;
        background-color: transparent;
    }
    
    .btn.btn-dark {
        background: var(--gray-900) !important;
        border-color: var(--gray-900) !important;
        box-shadow: none;
        color: var(--white);
    }
    
    .btn.btn-dark:hover {
        background: #252a30 !important;
    }
    
    .btn.btn-secondary-ghost {
        background-color: transparent;
        color: #FF4667;
        border: 1px solid #FF4667;
    }
    
    .btn.btn-secondary-ghost:active {
        color: #FF4667;
        border: 1px solid #FF4667;
        background-color: transparent;
    }
    
    .btn.btn-warning-ghost {
        background-color: transparent;
        color: #FFC107;
        border: 1px solid #FFC107;
    }
    
    .btn.btn-warning-ghost:active {
        color: #FFC107;
        border: 1px solid #FFC107;
        background-color: transparent;
    }
    
    .btn.btn-info-ghost {
        background-color: transparent;
        color: #5625E8;
        border: 1px solid #5625E8;
    }
    
    .btn.btn-info-ghost:active {
        color: #5625E8;
        border: 1px solid #5625E8;
        background-color: transparent;
    }
    
    .btn.btn-success-ghost {
        background-color: transparent;
        color: #03C95A;
        border: 1px solid #03C95A;
    }
    
    .btn.btn-success-ghost:active {
        color: #03C95A;
        border: 1px solid #03C95A;
        background-color: transparent;
    }
    
    .btn.btn-danger-ghost {
        background-color: transparent;
        color: #E70D0D;
        border: 1px solid #E70D0D;
    }
    
    .btn.btn-danger-ghost:active {
        color: #E70D0D;
        border: 1px solid #E70D0D;
        background-color: transparent;
    }
    
    .btn-list button {
        margin: 0 0.375rem 0.375rem 0;
    }
    
    .btn-group-vertical .btn-check:checked+.btn {
        color: var(--white) !important;
    }
    
    .btn-outline-primary {
        border: 1px solid #392C7D !important;
        color: #392C7D !important;
    }
    
    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary.focus,
    .btn-outline-primary:active,
    .btn-outline-primary.active {
        background-color: #392C7D !important;
        border: 1px solid #392C7D !important;
        box-shadow: 0 3px 10px rgba(57, 44, 125, 0.5);
        color: var(--white) !important;
    }
    
    .btn-outline-secondary {
        border: 1px solid #FF4667 !important;
        color: #FF4667 !important;
    }
    
    .btn-outline-secondary:hover,
    .btn-outline-secondary:focus,
    .btn-outline-secondary.focus,
    .btn-outline-secondary:active,
    .btn-outline-secondary.active {
        background-color: #FF4667 !important;
        border: 1px solid #FF4667 !important;
        box-shadow: 0 3px 10px rgba(255, 70, 103, 0.5);
        color: var(--white) !important;
    }
    
    .btn-outline-success {
        border: 1px solid #03C95A !important;
        color: #03C95A !important;
    }
    
    .btn-outline-success:hover,
    .btn-outline-success:focus,
    .btn-outline-success.focus,
    .btn-outline-success:active,
    .btn-outline-success.active {
        background-color: #03C95A !important;
        border: 1px solid #03C95A !important;
        box-shadow: 0 3px 10px rgba(3, 201, 90, 0.5);
        color: var(--white) !important;
    }
    
    .btn-outline-danger {
        border: 1px solid #E70D0D !important;
        color: #E70D0D !important;
    }
    
    .btn-outline-danger:hover,
    .btn-outline-danger:focus,
    .btn-outline-danger.focus,
    .btn-outline-danger:active,
    .btn-outline-danger.active {
        background-color: #E70D0D !important;
        border: 1px solid #E70D0D !important;
        box-shadow: 0 3px 10px rgba(231, 13, 13, 0.5);
        color: var(--white) !important;
    }
    
    .btn-outline-warning {
        border: 1px solid #FFC107 !important;
        color: #FFC107 !important;
    }
    
    .btn-outline-warning:hover,
    .btn-outline-warning:focus,
    .btn-outline-warning.focus,
    .btn-outline-warning:active,
    .btn-outline-warning.active {
        background-color: #FFC107 !important;
        border: 1px solid #FFC107 !important;
        box-shadow: 0 3px 10px rgba(255, 193, 7, 0.5);
        color: var(--white) !important;
    }
    
    .btn-outline-info {
        border: 1px solid #5625E8 !important;
        color: #5625E8 !important;
    }
    
    .btn-outline-info:hover,
    .btn-outline-info:focus,
    .btn-outline-info.focus,
    .btn-outline-info:active,
    .btn-outline-info.active {
        background-color: #5625E8 !important;
        border: 1px solid #5625E8 !important;
        box-shadow: 0 3px 10px rgba(86, 37, 232, 0.5);
        color: var(--white) !important;
    }
    
    .btn-outline-light {
        border: 1px solid var(--light) !important;
        color: var(--gray-700) !important;
    }
    
    .btn-outline-light:hover,
    .btn-outline-light:focus,
    .btn-outline-light.focus,
    .btn-outline-light:active,
    .btn-outline-light.active {
        background-color: var(--light) !important;
        border: 1px solid var(--light) !important;
        color: var(--gray-700) !important;
    }
    
    .btn-outline-dark {
        border: 1px solid var(--dark) !important;
        color: var(--dark) !important;
    }
    
    .btn-outline-dark:hover,
    .btn-outline-dark:focus,
    .btn-outline-dark.focus,
    .btn-outline-dark:active,
    .btn-outline-dark.active {
        background-color: var(--dark) !important;
        border: 1px solid var(--dark) !important;
        box-shadow: 0 3px 10px rgba(var(--dark), 0.5);
        color: var(--white) !important;
    }
    
    .btn-soft-primary {
        background-color: #AEA9C9 !important;
        color: #392C7D !important;
    }
    
    .btn-soft-primary:hover,
    .btn-soft-primary:focus,
    .btn-soft-primary.focus,
    .btn-soft-primary:active,
    .btn-soft-primary.active {
        box-shadow: 0 3px 12px rgba(57, 44, 125, 0.2);
        border-color: #392C7D;
    }
    
    .btn-soft-secondary {
        background-color: #FFB5C1 !important;
        color: #FF4667 !important;
    }
    
    .btn-soft-secondary:hover,
    .btn-soft-secondary:focus,
    .btn-soft-secondary.focus,
    .btn-soft-secondary:active,
    .btn-soft-secondary.active {
        box-shadow: 0 3px 12px rgba(255, 70, 103, 0.2);
        border-color: #FF4667;
    }
    
    .btn-soft-success {
        background-color: #A4EBC4 !important;
        color: #03C95A !important;
    }
    
    .btn-soft-success:hover,
    .btn-soft-success:focus,
    .btn-soft-success.focus,
    .btn-soft-success:active,
    .btn-soft-success.active {
        box-shadow: 0 3px 12px rgba(3, 201, 90, 0.2);
        border-color: #03C95A;
    }
    
    .btn-soft-danger {
        background-color: #EC9E9E !important;
        color: #E70D0D !important;
    }
    
    .btn-soft-danger:hover,
    .btn-soft-danger:focus,
    .btn-soft-danger.focus,
    .btn-soft-danger:active,
    .btn-soft-danger.active {
        box-shadow: 0 3px 12px rgba(231, 13, 13, 0.2);
        border-color: #E70D0D;
    }
    
    .btn-soft-warning {
        background-color: #FFE9A6 !important;
        color: #FFC107 !important;
    }
    
    .btn-soft-warning:hover,
    .btn-soft-warning:focus,
    .btn-soft-warning.focus,
    .btn-soft-warning:active,
    .btn-soft-warning.active {
        box-shadow: 0 3px 12px rgba(255, 193, 7, 0.2);
        border-color: #FFC107;
    }
    
    .btn-soft-info {
        background-color: rgba(86, 37, 232, 0.3) !important;
        color: #5625E8 !important;
    }
    
    .btn-soft-info:hover,
    .btn-soft-info:focus,
    .btn-soft-info.focus,
    .btn-soft-info:active,
    .btn-soft-info.active {
        box-shadow: 0 3px 12px rgba(86, 37, 232, 0.2);
        border-color: #5625E8;
    }
    
    .btn-soft-light {
        background-color: rgba(var(--light), 0.9) !important;
        color: var(--gray-500) !important;
    }
    
    .btn-soft-light:hover,
    .btn-soft-light:focus,
    .btn-soft-light.focus,
    .btn-soft-light:active,
    .btn-soft-light.active {
        box-shadow: 0 3px 12px rgba(var(--light), 0.2);
        border-color: var(--light);
        border-color: var(--gray-500);
    }
    
    .btn-soft-dark {
        background-color: rgba(var(--dark), 0.3) !important;
        color: var(--white) !important;
    }
    
    .btn-soft-dark:hover,
    .btn-soft-dark:focus,
    .btn-soft-dark.focus,
    .btn-soft-dark:active,
    .btn-soft-dark.active {
        box-shadow: 0 3px 12px rgba(var(--dark), 0.2);
        border-color: var(--dark);
    }
    
    .primary-hover:hover {
        background: #392C7D !important;
        color: var(--white);
    }
    
    .warning-btn-hover:hover {
        background: #FFC107 !important;
        border-color: #FFC107 !important;
        color: var(--white);
    }
    
    .success-btn-hover:hover {
        background: #03C95A !important;
        border-color: #03C95A !important;
        color: var(--white);
    }
    
    .danger-btn-hover:hover {
        background: #E70D0D !important;
        border-color: #E70D0D !important;
        color: var(--white) !important;
    }
    
    .secondary-btn-hover:hover {
        background: #FF4667 !important;
        border-color: #FF4667 !important;
        color: var(--white);
    }
    
    .primary-btn-hover:hover {
        background: #392C7D !important;
        border-color: #392C7D !important;
        color: var(--white) !important;
    }
    
    @media (max-width: 575.98px) {
        .btn {
            padding: 5px 12px;
        }
    }
    
    .bn-close.custom-btn-close {
        background-image: none;
    }
    
    .btn.btn-icon:hover {
        background: #E8E8E8;
        color: var(--dark);
    }
    
    .btn.btn-icon.active.bg-white {
        border-color: var(--white);
        color: var(--dark);
    }
    
    .btn.btn-icon:active {
        color: var(--white);
    }
    
    .border-purple {
        border-color: #AB47BC !important;
    }
    
    .btn-light.btn-icon:hover {
        background: #392C7D !important;
        color: var(--white) !important;
    }
    
    .badge.badge-primary {
        background: rgba(57, 44, 125, 0.1);
        box-shadow: 0 1px 1px rgba(57, 44, 125, 0.5);
        color: #392C7D;
    }
    
    .badge.badge-skyblue {
        background-color: #0DCAF0;
        color: var(--white);
    }
    
    .badge.badge-pink {
        background-color: #FD3995;
        color: var(--white);
    }
    
    .badge.badge-dark-transparent {
        background: #E8E8E8;
        color: var(--gray-900);
    }
    
    .badge.badge-secondary-transparent {
        background: #FFEDF0;
        color: #FF4667;
    }
    
    .badge.badge-pink-transparent {
        background: #FFEDF6;
        color: #FD3995;
    }
    
    .badge.badge-secondary-transparent {
        background: #FFEDF0;
        color: #FF4667;
    }
    
    .badge.badge-success-transparent {
        background: #D2F5E1;
        color: #03C95A;
    }
    
    .badge.badge-purple-transparent {
        background: #F7EEF9;
        color: #AB47BC;
    }
    
    .badge.badge-warning-transparent {
        background: #FFF9E9;
        color: #FFC107;
    }
    
    .badge.badge-danger-transparent {
        background: #FAE7E7;
        color: #E70D0D;
    }
    
    .badge.badge-info-transparent {
        background: #F0EBFD;
        color: #5625E8;
    }
    
    .badge.badge-primary {
        background: #392C7D;
        color: var(--white);
    }
    
    .badge.badge-soft-primary {
        background: rgba(57, 44, 125, 0.1);
        color: #392C7D;
    }
    
    .badge.badge-light {
        color: var(--gray-900) !important;
    }
    
    .badge.badge-secondary {
        background: #FF4667;
        color: var(--white);
    }
    
    .badge.badge-soft-secondary {
        background: rgba(255, 70, 103, 0.1);
        color: #FF4667;
    }
    
    .badge.badge-light {
        color: var(--gray-900) !important;
    }
    
    .badge.badge-success {
        background: #03C95A;
        color: var(--white);
    }
    
    .badge.badge-soft-success {
        background: rgba(3, 201, 90, 0.1);
        color: #03C95A;
    }
    
    .badge.badge-light {
        color: var(--gray-900) !important;
    }
    
    .badge.badge-info {
        background: #5625E8;
        color: var(--white);
    }
    
    .badge.badge-soft-info {
        background: rgba(86, 37, 232, 0.1);
        color: #5625E8;
    }
    
    .badge.badge-light {
        color: var(--gray-900) !important;
    }
    
    .badge.badge-warning {
        background: #FFC107;
        color: var(--white);
    }
    
    .badge.badge-soft-warning {
        background: rgba(255, 193, 7, 0.1);
        color: #FFC107;
    }
    
    .badge.badge-light {
        color: var(--gray-900) !important;
    }
    
    .badge.badge-danger {
        background: #E70D0D;
        color: var(--white);
    }
    
    .badge.badge-soft-danger {
        background: rgba(231, 13, 13, 0.1);
        color: #E70D0D;
    }
    
    .badge.badge-light {
        color: var(--gray-900) !important;
    }
    
    .badge.badge-purple {
        background: #AB47BC;
        color: var(--white);
    }
    
    .badge.badge-soft-purple {
        background: rgba(171, 71, 188, 0.1);
        color: #AB47BC;
    }
    
    .badge.badge-light {
        color: var(--gray-900) !important;
    }
    
    .badge {
        padding: 0.25rem 0.45rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 4px;
    }
    
    .badge.badge-xs {
        font-size: 10px;
        font-weight: 500;
        padding: 0px 5px;
        line-height: 18px;
    }
    
    .badge.badge-sm {
        font-size: 11px;
        padding: 5px 8px;
        line-height: 11px;
    }
    
    .badge.badge-md {
        font-size: 12px;
        padding: 5px 12px;
        line-height: 1.5;
    }
    
    .badge.badge-lg {
        font-size: 14px;
        padding: 0px 10px;
        line-height: 30px;
    }
    
    .badge.badge-xl {
        font-size: 16px;
        padding: 0px 15px;
        line-height: 35px;
    }
    
    .badge.badge-soft-skyblue {
        background: #D3F5FC;
        color: #0DCAF0;
    }
    
    .badge.arrow {
        width: 20px;
        height: 20px;
        background: var(--light-200);
        color: var(--dark);
    }
    
    .badge.arrow:hover {
        background: #392C7D;
        color: var(--white);
    }
    
    .badge.bg-light.arrow:hover {
        background: var(--dark) !important;
    }
    
    .badge-primary-hover:hover {
        background: #392C7D !important;
        border-color: #392C7D !important;
        color: var(--white) !important;
    }
    
    .badge-danger-hover:hover {
        background: #E70D0D !important;
        border-color: #E70D0D !important;
        color: var(--white) !important;
    }
    
    .badge.badge-soft-purple {
        background: #F0DEF3 !important;
        color: #AB47BC !important;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6 {
        color: var(--gray-900);
        font-family: "Inter", sans-serif;
        font-weight: 700;
        margin-bottom: 0;
    }
    
    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: inherit;
    }
    
    p {
        color: var(--gray-500);
    }
    /* Button design Top category below */
    
    .tab-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        cursor: pointer;
    }
    
    .nav-pills .tab-button {
        background-color: var(--white);
        color: #787878;
        border-radius: 10px;
        font-weight: 600;
        margin: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 15px;
        border: 1px solid #e7e7f0;
    }
    
    .nav-pills .tab-button:hover {
        background-color: #9a9a9a;
        color: white;
    }
    
    .nav-pills .tab-button.active {
        background-color: #9a9a9a;
        border: 1px solid #9a9a9a;
        color: white;
    }
    
    .nav-pills .tab-button.active i {
        color: var(--yellow);
    }
    /* Dark mode */
    
    .dark-mode .nav-pills .tab-button {
        background-color: #212125;
        color: #9ea0a9;
        border: 1px solid #212125;
    }
    
    .dark-mode .nav-pills .tab-button:hover {
        background-color: #3f4044;
        color: white;
    }
    
    .dark-mode .nav-pills .tab-button.active {
        background-color: var(--mc-color-bg-container-dark);
        border: 1px solid var(--yellow);
        color: white;
    }
    
    .dark-mode .nav-pills .tab-button.active i {
        color: var(--yellow);
    }
    
    @media (max-width: 576px) {
        .nav-pills {
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-pills .nav-link {
            font-size: 13px;
            padding: 8px 12px;
        }
    }
    
    h1,
    .h1 {
        font-size: 50px;
        font-weight: 700;
    }
    
    @media (max-width: 991.98px) {
        h1,
        .h1 {
            font-size: 32px;
        }
    }
    
    @media (max-width: 767.98px) {
        h1,
        .h1 {
            font-size: 26px;
        }
    }
    
    h2,
    .h2 {
        font-size: 36px;
        font-weight: 700;
    }
    
    @media (max-width: 991.98px) {
        h2,
        .h2 {
            font-size: 28px;
        }
    }
    
    @media (max-width: 767.98px) {
        h2,
        .h2 {
            font-size: 24px;
        }
    }
    
    h3,
    .h3 {
        font-size: 28px;
        font-weight: 700;
    }
    
    @media (max-width: 991.98px) {
        h3,
        .h3 {
            font-size: 24px;
        }
    }
    
    @media (max-width: 767.98px) {
        h3,
        .h3 {
            font-size: 22px;
        }
    }
    
    h4,
    .h4 {
        font-size: 24px;
    }
    
    @media (max-width: 767.98px) {
        h4,
        .h4 {
            font-size: 22px;
        }
    }
    
    h5,
    .h5 {
        font-size: 20px;
    }
    
    @media (max-width: 767.98px) {
        h5,
        .h5 {
            font-size: 18px;
        }
    }
    
    h6,
    .h6 {
        font-size: 16px;
        font-weight: 600;
    }
    
    @media (max-width: 767.98px) {
        h6,
        .h6 {
            font-size: 16px;
        }
    }
    
    .display-1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    @media (max-width: 1399.98px) {
        .display-1 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .display-1 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 991.98px) {
        .display-1 {
            font-size: 32px;
        }
    }
    
    @media (max-width: 767.98px) {
        .display-1 {
            font-size: 26px;
        }
    }
    
    .display-4 {
        font-size: 20px;
        font-weight: 700;
    }
    
    @media (max-width: 991.98px) {
        .display-4 {
            font-size: 18px;
        }
    }
    
    @media (max-width: 767.98px) {
        .display-4 {
            font-size: 16px;
        }
    }
    
    .fs-sm {
        font-size: 0.6875rem;
    }
    
    .fs-base {
        font-size: 0.875rem;
    }
    
    .fs-lg {
        font-size: 1.125rem;
    }
    
    .text-xl {
        font-size: 16px;
    }
    
    .fs-1 {
        font-size: 0.0625rem;
    }
    
    .fs-2 {
        font-size: 0.125rem;
    }
    
    .fs-3 {
        font-size: 0.1875rem;
    }
    
    .fs-4 {
        font-size: 0.25rem !important;
    }
    
    .fs-5 {
        font-size: 0.3125rem !important;
    }
    
    .fs-6 {
        font-size: 0.375rem !important;
    }
    
    .fs-7 {
        font-size: 0.4375rem;
    }
    
    .fs-8 {
        font-size: 0.5rem !important;
    }
    
    .fs-9 {
        font-size: 0.5625rem;
    }
    
    .fs-10 {
        font-size: 0.75em !important;
    }
    
    .fs-11 {
        font-size: 0.6875rem;
    }
    
    .fs-12 {
        font-size: 0.75rem;
    }
    
    .fs-13 {
        font-size: 0.8125rem;
    }
    
    .fs-14 {
        font-size: 0.875rem !important;
    }
    
    .fs-15 {
        font-size: 0.9375rem;
    }
    
    .fs-16 {
        font-size: 1rem;
    }
    
    .fs-17 {
        font-size: 1.0625rem;
    }
    
    .fs-18 {
        font-size: 1.125rem;
    }
    
    .fs-19 {
        font-size: 1.1875rem;
    }
    
    .fs-20 {
        font-size: 1.25rem;
    }
    
    .fs-21 {
        font-size: 1.3125rem;
    }
    
    .fs-22 {
        font-size: 1.375rem;
    }
    
    .fs-23 {
        font-size: 1.4375rem;
    }
    
    .fs-24 {
        font-size: 1.5rem;
    }
    
    .fs-25 {
        font-size: 1.5625rem;
    }
    
    .fs-26 {
        font-size: 1.625rem;
    }
    
    .fs-27 {
        font-size: 1.6875rem;
    }
    
    .fs-28 {
        font-size: 1.75rem;
    }
    
    .fs-29 {
        font-size: 1.8125rem;
    }
    
    .fs-30 {
        font-size: 1.875rem;
    }
    
    .fs-32 {
        font-size: 2rem;
    }
    
    .fs-34 {
        font-size: 2.125rem;
    }
    
    .fs-36 {
        font-size: 2.25rem;
    }
    
    .fs-38 {
        font-size: 2.375rem;
    }
    
    .fs-40 {
        font-size: 2.5rem;
    }
    
    .fs-42 {
        font-size: 2.625rem;
    }
    
    .fs-44 {
        font-size: 2.75rem;
    }
    
    .fs-46 {
        font-size: 2.875rem;
    }
    
    .fs-48 {
        font-size: 3rem;
    }
    
    .fs-50 {
        font-size: 3.125;
    }
    
    .text-default {
        color: var(--gray-500) !important;
    }
    
    .heading-color {
        color: var(--gray-900) !important;
    }
    
    .text-muted {
        color: #677788 !important;
    }
    
    .text-primary {
        color: #392C7D !important;
        opacity: 1;
    }
    
    .text-primary.text-opacity-75 {
        color: rgba(57, 44, 125, 0.75) !important;
    }
    
    .text-primary.text-opacity-25 {
        color: rgba(57, 44, 125, 0.25) !important;
    }
    
    .text-primary.text-opacity-50 {
        color: rgba(57, 44, 125, 0.5) !important;
    }
    
    .text-secondary {
        color: #FF4667 !important;
        opacity: 1;
    }
    
    .text-info {
        color: #5625E8 !important;
        opacity: 1;
    }
    
    .text-success {
        color: #03C95A !important;
        opacity: 1;
    }
    
    .text-warning {
        color: #FFC107 !important;
        opacity: 1;
    }
    
    .text-danger {
        color: #E70D0D !important;
        opacity: 1;
    }
    
    .text-skyblue {
        color: #0DCAF0 !important;
        opacity: 1;
    }
    
    .text-pink {
        color: #FD3995 !important;
    }
    
    .text-purple {
        color: #AB47BC !important;
    }
    
    .text-dark {
        color: var(--dark) !important;
    }
    
    .text-light {
        color: var(--light) !important;
    }
    
    .text-gray {
        color: var(--gray-500) !important;
    }
    
    .text-black {
        color: var(--black) !important;
    }
    
    .text-white {
        color: var(--white) !important;
    }
    
    .text-purple {
        color: #AB47BC !important;
    }
    
    .text-primary-soft {
        color: #AEA9C9;
    }
    
    .text-secondary-soft {
        color: #FFB5C1;
    }
    
    .text-gray-1 {
        color: var(--gray-100);
    }
    
    .text-gray-2 {
        color: var(--gray-200);
    }
    
    .text-gray-3 {
        color: var(--gray-300);
    }
    
    .text-gray-4 {
        color: var(--gray-400);
    }
    
    .text-gray-5 {
        color: var(--gray-500);
    }
    
    .text-gray-6 {
        color: var(--gray-600);
    }
    
    .text-gray-7 {
        color: var(--gray-700);
    }
    
    .text-gray-8 {
        color: var(--gray-800);
    }
    
    .text-gray-9 {
        color: var(--gray-900) !important;
    }
    
    .text-title {
        color: var(--gray-900) !important;
    }
    
    .text-dark-transparent {
        color: #E8E8E8;
    }
    
    .text-chromeyellow {
        color: #FFB54A;
    }
    
    .text-lightgreen {
        color: #0DD3A3;
    }
    
    .text-purple {
        color: #AB47BC !important;
    }
    
    a {
        color: var(--gray-900);
        cursor: pointer;
        text-decoration: none;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    
    a:hover {
        color: #FF4667;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    
    a:focus {
        outline: 0;
    }
    
    .link-primary {
        color: #392C7D !important;
    }
    
    .link-primary:hover,
    .link-primary:focus,
    .link-primary:active {
        color: #241B4B !important;
    }
    
    .link-secondary {
        color: #FF4667 !important;
    }
    
    .link-secondary:hover,
    .link-secondary:focus,
    .link-secondary:active {
        color: #FF4667 !important;
    }
    
    .link-success {
        color: #03C95A !important;
    }
    
    .link-success:hover,
    .link-success:focus,
    .link-success:active {
        color: #03C95A !important;
    }
    
    .link-danger {
        color: #E70D0D !important;
    }
    
    .link-danger:hover,
    .link-danger:focus,
    .link-danger:active {
        color: #E70D0D !important;
    }
    
    .link-warning {
        color: #FFC107 !important;
    }
    
    .link-warning:hover,
    .link-warning:focus,
    .link-warning:active {
        color: #FFC107 !important;
    }
    
    .link-info {
        color: #5625E8 !important;
    }
    
    .link-info:hover,
    .link-info:focus,
    .link-info:active {
        color: #5625E8 !important;
    }
    
    .link-light {
        color: var(--light) !important;
    }
    
    .link-light:hover,
    .link-light:focus,
    .link-light:active {
        color: var(--light) !important;
    }
    
    .link-dark {
        color: var(--dark) !important;
    }
    
    .link-dark:hover,
    .link-dark:focus,
    .link-dark:active {
        color: var(--dark) !important;
    }
    
    hr.text-danger {
        border-color: #E70D0D !important;
    }
    
    .blockquote-container {
        padding: 1.25rem;
        border-left: 4px solid var(--gray-100);
        position: relative;
    }
    
    .blockquote-container.text-end {
        border-right: 4px solid var(--gray-100);
        border-left: 0;
    }
    
    .blockquote.custom-blockquote {
        font-size: 0.85rem;
        font-weight: 600;
        padding: 1rem;
        border-radius: 4px;
        position: relative;
    }
    
    .blockquote.custom-blockquote:before {
        content: "\f10d";
        font-family: "Fontawesome";
        z-index: 0;
        font-size: 2rem;
        position: absolute;
        inset-block-start: 0;
        inset-inline-start: 0.5rem;
    }
    
    .blockquote.custom-blockquote.primary {
        background-color: rgba(57, 44, 125, 0.1);
        border-inline-start: 2px solid #392C7D;
    }
    
    .blockquote.custom-blockquote.primary:before {
        color: rgba(57, 44, 125, 0.1);
    }
    
    .blockquote.custom-blockquote.secondary {
        background-color: rgba(255, 70, 103, 0.1);
        border-inline-start: 2px solid #FF4667;
    }
    
    .blockquote.custom-blockquote.secondary:before {
        color: rgba(255, 70, 103, 0.1);
    }
    
    .blockquote.custom-blockquote.info {
        background-color: rgba(86, 37, 232, 0.1);
        border-inline-start: 2px solid #5625E8;
    }
    
    .blockquote.custom-blockquote.info:before {
        color: rgba(86, 37, 232, 0.1);
    }
    
    .blockquote.custom-blockquote.warning {
        background-color: rgba(255, 193, 7, 0.1);
        border-inline-start: 2px solid #FFC107;
    }
    
    .blockquote.custom-blockquote.warning:before {
        color: rgba(255, 193, 7, 0.1);
    }
    
    .blockquote.custom-blockquote.success {
        background-color: rgba(3, 201, 90, 0.1);
        border-inline-start: 2px solid #03C95A;
    }
    
    .blockquote.custom-blockquote.success:before {
        color: rgba(3, 201, 90, 0.1);
    }
    
    .blockquote.custom-blockquote.danger {
        background-color: rgba(231, 13, 13, 0.1);
        border-inline-start: 2px solid #E70D0D;
    }
    
    .blockquote.custom-blockquote.danger:before {
        color: rgba(231, 13, 13, 0.1);
    }
    
    [data-theme-mode=dark] .shadow-sm {
        box-shadow: 0 0.125rem 0.25rem rgba(33, 37, 41, 0.3) !important;
    }
    
    [data-theme-mode=dark] .shadow {
        box-shadow: 0 0.5rem 1rem rgba(33, 37, 41, 0.3) !important;
    }
    
    [data-theme-mode=dark] .shadow-lg {
        box-shadow: 0 1rem 3rem rgba(33, 37, 41, 0.3) !important;
    }
    
    @media screen and (min-width: 576px) {
        .w-sm-auto {
            width: auto;
        }
    }
    
    [dir=rtl] .text-break {
        word-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    .transform-none {
        transform: none !important;
    }
    
    .list-circle {
        list-style: circle;
        padding-left: 2rem;
    }
    /*============================
 12.dropdown
============================*/
    
    .dropdown-auto {
        overflow: auto;
    }
    
    .dropdown-divider {
        margin: 0;
    }
    
    .dropdown .dropdown-toggle {
        font-weight: 400;
        font-size: 14px;
        color: var(--gray-900);
    }
    
    .dropdown .dropdown-toggle:after {
        display: inline-block;
        margin-inline-start: 0.5rem;
        vertical-align: 0;
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        border: 0;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .dropdown .dropdown-toggle.btn-primary {
        color: var(--white);
    }
    
    .dropdown .dropdown-toggle.text-gray-6.show {
        color: var(--white) !important;
        background: #FF4667 !important;
    }
    
    .dropdown .dropdown-toggle.text-gray-6.show i {
        color: var(--white) !important;
    }
    
    .dropdown .dropdown-toggle.text-gray-6.show::after {
        color: var(--white) !important;
    }
    
    .dropdown .dropdown-menu {
        padding: 20px;
        font-family: "Inter", sans-serif;
    }
    
    .dropdown-menu {
        border-color: var(--gray-100);
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
        font-size: 0.875rem;
        color: var(--gray-900);
        background-color: var(--white);
        padding: 0;
        z-index: 10;
        border-radius: 10px;
    }
    
    .dropdown-divider {
        border-color: var(--gray-100);
    }
    
    .dropdown-item-text {
        color: var(--gray-500);
    }
    
    .dropdown-header {
        color: var(--gray-500);
    }
    
    .dropdown-item {
        color: var(--gray-600);
        padding: 0.594rem 0.9375rem;
        font-size: 14px;
    }
    
    .dropdown-item.disabled,
    .dropdown-item:disabled {
        color: var(--gray-500);
        opacity: 0.5;
    }
    
    .dropdown-item:not(.active):hover,
    .dropdown-item:not(.active):focus,
    .dropdown-item:not(.active):active {
        color: var(--white);
        background-color: #FF4667;
        border-radius: 5px;
    }
    
    .dropdown-item.active {
        background-color: var(--light-500);
    }
    
    .dropdown-toggle::after {
        display: inline-block;
        margin-inline-start: 0.25rem;
        vertical-align: 0;
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        border: 0;
        font-size: 0.6rem;
        font-weight: 600;
    }
    
    .dropup .dropdown-toggle::after {
        display: inline-block;
        margin-inline-start: 0.25rem;
        vertical-align: 0;
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        border: 0;
        font-size: 0.6rem;
        font-weight: 600;
    }
    
    .dropup .dropdown-toggle::after {
        display: inline-block;
        margin-inline-start: 0.25rem;
        vertical-align: 0;
        content: "\f077";
        font-family: "Font Awesome 5 Free";
        border: 0;
        font-size: 0.6rem;
        font-weight: 600;
    }
    
    .dropend .dropdown-toggle::after {
        display: inline-block;
        margin-inline-start: 0.25rem;
        vertical-align: 0;
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        border: 0;
        font-size: 0.6rem;
        font-weight: 600;
    }
    
    .dropstart .dropdown-toggle::before {
        display: inline-block;
        margin-inline-start: 0.25rem;
        vertical-align: 0;
        content: "\f053";
        font-family: "Font Awesome 5 Free";
        border: 0;
        font-size: 0.6rem;
        font-weight: 600;
    }
    
    .btn.dropdown-toggle-split {
        opacity: 0.85;
    }
    
    .dropdown-menu-dark {
        background-color: var(--dark);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu-dark li a {
        color: var(--white);
    }
    
    .btn-list a.dropdown-item {
        margin-block-end: 0;
    }
    
    .btn-list .btn-soft-success:hover {
        transform: translateY(0);
    }
    
    .btn-list .btn-soft-danger:hover {
        transform: translateY(0);
    }
    
    .dropdown-menu.dropdown-menu-primary {
        background-color: #392C7D;
    }
    
    .dropdown-menu.dropdown-menu-primary li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu.dropdown-menu-primary .dropdown-item:hover,
    .dropdown-menu.dropdown-menu-primary .dropdown-item:focus,
    .dropdown-menu.dropdown-menu-primary .dropdown-item:active,
    .dropdown-menu.dropdown-menu-primary .dropdown-item.active {
        color: var(--white);
    }
    
    .dropdown-menu.dropdown-menu-secondary {
        background-color: #FF4667;
    }
    
    .dropdown-menu.dropdown-menu-secondary li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu.dropdown-menu-secondary .dropdown-item:hover,
    .dropdown-menu.dropdown-menu-secondary .dropdown-item:focus,
    .dropdown-menu.dropdown-menu-secondary .dropdown-item:active,
    .dropdown-menu.dropdown-menu-secondary .dropdown-item.active {
        color: var(--white);
    }
    
    .dropdown-menu.dropdown-menu-warning {
        background-color: #FFC107;
    }
    
    .dropdown-menu.dropdown-menu-warning li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu.dropdown-menu-warning .dropdown-item:hover,
    .dropdown-menu.dropdown-menu-warning .dropdown-item:focus,
    .dropdown-menu.dropdown-menu-warning .dropdown-item:active,
    .dropdown-menu.dropdown-menu-warning .dropdown-item.active {
        color: var(--white);
    }
    
    .dropdown-menu.dropdown-menu-info {
        background-color: #5625E8;
    }
    
    .dropdown-menu.dropdown-menu-info li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu.dropdown-menu-info .dropdown-item:hover,
    .dropdown-menu.dropdown-menu-info .dropdown-item:focus,
    .dropdown-menu.dropdown-menu-info .dropdown-item:active,
    .dropdown-menu.dropdown-menu-info .dropdown-item.active {
        color: var(--white);
    }
    
    .dropdown-menu.dropdown-menu-success {
        background-color: #03C95A;
    }
    
    .dropdown-menu.dropdown-menu-success li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu.dropdown-menu-success .dropdown-item:hover,
    .dropdown-menu.dropdown-menu-success .dropdown-item:focus,
    .dropdown-menu.dropdown-menu-success .dropdown-item:active,
    .dropdown-menu.dropdown-menu-success .dropdown-item.active {
        color: var(--white);
    }
    
    .dropdown-menu.dropdown-menu-danger {
        background-color: #E70D0D;
    }
    
    .dropdown-menu.dropdown-menu-danger li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu.dropdown-menu-danger .dropdown-item:hover,
    .dropdown-menu.dropdown-menu-danger .dropdown-item:focus,
    .dropdown-menu.dropdown-menu-danger .dropdown-item:active,
    .dropdown-menu.dropdown-menu-danger .dropdown-item.active {
        color: var(--white);
    }
    
    .dropdown-menu.dropmenu-item-primary .dropdown-item:hover,
    .dropdown-menu.dropmenu-item-primary .dropdown-item:focus,
    .dropdown-menu.dropmenu-item-primary .dropdown-item:active,
    .dropdown-menu.dropmenu-item-primary .dropdown-item.active {
        background-color: rgba(57, 44, 125, 0.1) !important;
        color: #392C7D;
    }
    
    .dropdown-menu.dropmenu-item-secondary .dropdown-item:hover,
    .dropdown-menu.dropmenu-item-secondary .dropdown-item:focus,
    .dropdown-menu.dropmenu-item-secondary .dropdown-item:active,
    .dropdown-menu.dropmenu-item-secondary .dropdown-item.active {
        background-color: rgba(255, 70, 103, 0.1) !important;
        color: #FF4667;
    }
    
    .dropdown-menu.dropmenu-item-warning .dropdown-item:hover,
    .dropdown-menu.dropmenu-item-warning .dropdown-item:focus,
    .dropdown-menu.dropmenu-item-warning .dropdown-item:active,
    .dropdown-menu.dropmenu-item-warning .dropdown-item.active {
        background-color: rgba(255, 193, 7, 0.1) !important;
        color: #FFC107;
    }
    
    .dropdown-menu.dropmenu-item-info .dropdown-item:hover,
    .dropdown-menu.dropmenu-item-info .dropdown-item:focus,
    .dropdown-menu.dropmenu-item-info .dropdown-item:active,
    .dropdown-menu.dropmenu-item-info .dropdown-item.active {
        background-color: rgba(86, 37, 232, 0.1) !important;
        color: #5625E8;
    }
    
    .dropdown-menu.dropmenu-item-success .dropdown-item:hover,
    .dropdown-menu.dropmenu-item-success .dropdown-item:focus,
    .dropdown-menu.dropmenu-item-success .dropdown-item:active,
    .dropdown-menu.dropmenu-item-success .dropdown-item.active {
        background-color: rgba(3, 201, 90, 0.1) !important;
        color: #03C95A;
    }
    
    .dropdown-menu.dropmenu-item-danger .dropdown-item:hover,
    .dropdown-menu.dropmenu-item-danger .dropdown-item:focus,
    .dropdown-menu.dropmenu-item-danger .dropdown-item:active,
    .dropdown-menu.dropmenu-item-danger .dropdown-item.active {
        background-color: rgba(231, 13, 13, 0.1) !important;
        color: #E70D0D;
    }
    
    .dropdown-menu.dropmenu-light-primary {
        background-color: rgba(255, 70, 103, 0.1);
        backdrop-filter: blur(2rem);
    }
    
    .dropdown-menu.dropmenu-light-primary .dropdown-item:hover,
    .dropdown-menu.dropmenu-light-primary .dropdown-item:focus,
    .dropdown-menu.dropmenu-light-primary .dropdown-item:active,
    .dropdown-menu.dropmenu-light-primary .dropdown-item.active {
        color: var(--white);
        background-color: #392C7D !important;
    }
    
    .dropdown-menu.dropmenu-light-secondary {
        background-color: rgba(255, 70, 103, 0.1);
        backdrop-filter: blur(2rem);
    }
    
    .dropdown-menu.dropmenu-light-secondary .dropdown-item:hover,
    .dropdown-menu.dropmenu-light-secondary .dropdown-item:focus,
    .dropdown-menu.dropmenu-light-secondary .dropdown-item:active,
    .dropdown-menu.dropmenu-light-secondary .dropdown-item.active {
        color: var(--white);
        background-color: #FF4667 !important;
    }
    
    .dropdown-menu.dropmenu-light-info {
        background-color: rgba(86, 37, 232, 0.1);
        backdrop-filter: blur(2rem);
    }
    
    .dropdown-menu.dropmenu-light-info .dropdown-item:hover,
    .dropdown-menu.dropmenu-light-info .dropdown-item:focus,
    .dropdown-menu.dropmenu-light-info .dropdown-item:active,
    .dropdown-menu.dropmenu-light-info .dropdown-item.active {
        color: var(--white);
        background-color: #5625E8 !important;
    }
    
    .dropdown-menu.dropmenu-light-warning {
        background-color: rgba(255, 193, 7, 0.1);
        backdrop-filter: blur(2rem);
    }
    
    .dropdown-menu.dropmenu-light-warning .dropdown-item:hover,
    .dropdown-menu.dropmenu-light-warning .dropdown-item:focus,
    .dropdown-menu.dropmenu-light-warning .dropdown-item:active,
    .dropdown-menu.dropmenu-light-warning .dropdown-item.active {
        color: var(--white);
        background-color: #FFC107 !important;
    }
    
    .dropdown-menu.dropmenu-light-success {
        background-color: rgba(3, 201, 90, 0.1);
        backdrop-filter: blur(2rem);
    }
    
    .dropdown-menu.dropmenu-light-success .dropdown-item:hover,
    .dropdown-menu.dropmenu-light-success .dropdown-item:focus,
    .dropdown-menu.dropmenu-light-success .dropdown-item:active,
    .dropdown-menu.dropmenu-light-success .dropdown-item.active {
        color: var(--white);
        background-color: #03C95A !important;
    }
    
    .dropdown-menu.dropmenu-light-danger {
        background-color: rgba(231, 13, 13, 0.1);
        backdrop-filter: blur(2rem);
    }
    
    .dropdown-menu.dropmenu-light-danger .dropdown-item:hover,
    .dropdown-menu.dropmenu-light-danger .dropdown-item:focus,
    .dropdown-menu.dropmenu-light-danger .dropdown-item:active,
    .dropdown-menu.dropmenu-light-danger .dropdown-item.active {
        color: var(--white);
        background-color: #E70D0D !important;
    }
    
    .dropdown-divider {
        margin: 0;
    }
    
    .bd-example>.dropdown-menu {
        position: static;
        display: block;
    }
    
    .card-dropdown>a {
        background: var(--white);
        border-radius: 6px;
        font-weight: 400;
        box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
        border: 0;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--gray-700);
        padding: 10px 10px 10px 30px;
        position: relative;
    }
    
    .card-dropdown>a .cal-icon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .card-dropdown>a i {
        font-size: 16px;
        margin-right: 5px;
    }
    
    .card-dropdown>a[aria-expanded=true]::after {
        -webkit-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
    }
    
    .card-dropdown .dropdown-menu {
        border: 0;
        border-radius: 6px;
        padding: 15px;
        box-shadow: 0px 4px 9px -1px rgba(19, 16, 34, 0.031372549);
    }
    
    .card-dropdown .dropdown-menu li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px;
        border-radius: 6px;
        font-size: 14px;
    }
    
    .card-dropdown .dropdown-menu li a i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .card-dropdown .dropdown-menu li a:hover {
        background: var(--light-800);
        color: var(--gray-800);
    }
    
    .dropdown-md {
        min-width: 320px !important;
    }
    
    .dropdown-sm {
        min-width: 260px !important;
    }
    
    .dropdown-menu.notes-menu {
        z-index: 99999;
    }
    
    .dropdown-menu.notes-menu a.dropdown-item {
        color: var(--gray-900);
        font-size: 14px;
        font-weight: 400;
        display: flex;
        align-items: center;
        padding: 8px 15px;
    }
    
    .dropdown-menu.notes-menu span {
        margin-right: 8px;
    }
    
    .dropdown-menu.notes-menu svg {
        width: 14px;
        height: 14px;
        color: var(--gray-500);
    }
    
    .border-container {
        display: inline-block;
        width: 5rem;
        height: 5rem;
        margin: 0.25rem;
        background-color: var(--light);
    }
    
    .border {
        border: 1px solid var(--gray-100) !important;
    }
    
    .border.border-dashed {
        border-style: dashed !important;
    }
    
    .border.border-dotted {
        border-style: dotted !important;
    }
    
    .border.border-pink {
        border-color: #FD3995 !important;
    }
    
    .border.border-purple {
        border-color: #AB47BC !important;
    }
    
    .border.border-primary {
        border: 1px solid #392C7D !important;
        opacity: 1;
    }
    
    .border.border-primary.border-opacity-10 {
        border-color: rgba(57, 44, 125, 0.1) !important;
    }
    
    .border.border-primary.border-opacity-25 {
        border-color: rgba(57, 44, 125, 0.25) !important;
    }
    
    .border.border-primary.border-opacity-50 {
        border-color: rgba(57, 44, 125, 0.5) !important;
    }
    
    .border.border-primary.border-opacity-75 {
        border-color: rgba(57, 44, 125, 0.75) !important;
    }
    
    .border.border-primary.border-opacity-100 {
        border-color: #392c7d !important;
    }
    
    .border.border-secondary {
        border: 1px solid #FF4667 !important;
        opacity: 1;
    }
    
    .border.border-secondary.border-opacity-10 {
        border-color: rgba(255, 70, 103, 0.1) !important;
    }
    
    .border.border-secondary.border-opacity-25 {
        border-color: rgba(255, 70, 103, 0.25) !important;
    }
    
    .border.border-secondary.border-opacity-50 {
        border-color: rgba(255, 70, 103, 0.5) !important;
    }
    
    .border.border-secondary.border-opacity-75 {
        border-color: rgba(255, 70, 103, 0.75) !important;
    }
    
    .border.border-secondary.border-opacity-100 {
        border-color: #ff4667 !important;
    }
    
    .border.border-info {
        border-color: #5625E8 !important;
        opacity: 1;
    }
    
    .border.border-info.border-opacity-10 {
        border-color: rgba(86, 37, 232, 0.1) !important;
    }
    
    .border.border-info.border-opacity-25 {
        border-color: rgba(86, 37, 232, 0.25) !important;
    }
    
    .border.border-info.border-opacity-50 {
        border-color: rgba(86, 37, 232, 0.5) !important;
    }
    
    .border.border-info.border-opacity-75 {
        border-color: rgba(86, 37, 232, 0.75) !important;
    }
    
    .border.border-info.border-opacity-100 {
        border-color: #5625e8 !important;
    }
    
    .border.border-success {
        border-color: #03C95A !important;
        opacity: 1;
    }
    
    .border.border-success.border-opacity-10 {
        border-color: rgba(3, 201, 90, 0.1) !important;
    }
    
    .border.border-success.border-opacity-25 {
        border-color: rgba(3, 201, 90, 0.25) !important;
    }
    
    .border.border-success.border-opacity-50 {
        border-color: rgba(3, 201, 90, 0.5) !important;
    }
    
    .border.border-success.border-opacity-75 {
        border-color: rgba(3, 201, 90, 0.75) !important;
    }
    
    .border.border-success.border-opacity-100 {
        border-color: #03c95a !important;
    }
    
    .border.border-warning {
        border: 1px solid #FFC107 !important;
        opacity: 1;
    }
    
    .border.border-warning.border-opacity-10 {
        border-color: rgba(255, 193, 7, 0.1) !important;
    }
    
    .border.border-warning.border-opacity-25 {
        border-color: rgba(255, 193, 7, 0.25) !important;
    }
    
    .border.border-warning.border-opacity-50 {
        border-color: rgba(255, 193, 7, 0.5) !important;
    }
    
    .border.border-warning.border-opacity-75 {
        border-color: rgba(255, 193, 7, 0.75) !important;
    }
    
    .border.border-warning.border-opacity-100 {
        border-color: #ffc107 !important;
    }
    
    .border.border-danger {
        border: 1px solid #E70D0D !important;
        opacity: 1;
    }
    
    .border.border-danger.border-opacity-10 {
        border-color: rgba(231, 13, 13, 0.1) !important;
    }
    
    .border.border-danger.border-opacity-25 {
        border-color: rgba(231, 13, 13, 0.25) !important;
    }
    
    .border.border-danger.border-opacity-50 {
        border-color: rgba(231, 13, 13, 0.5) !important;
    }
    
    .border.border-danger.border-opacity-75 {
        border-color: rgba(231, 13, 13, 0.75) !important;
    }
    
    .border.border-danger.border-opacity-100 {
        border-color: #e70d0d !important;
    }
    
    .border.border-white {
        border: 1px solid var(--white) !important;
        opacity: 1;
    }
    
    .border.border-white.border-opacity-10 {
        border-color: rgba(var(--white), 0.1) !important;
    }
    
    .border.border-white.border-opacity-25 {
        border-color: rgba(var(--white), 0.25) !important;
    }
    
    .border.border-white.border-opacity-50 {
        border-color: rgba(var(--white), 0.5) !important;
    }
    
    .border.border-white.border-opacity-75 {
        border-color: rgba(var(--white), 0.75) !important;
    }
    
    .border.border-white.border-opacity-100 {
        border-color: rgba(var(--white), 1) !important;
    }
    
    .border.border-light {
        border: 1px solid var(--light) !important;
        opacity: 1;
    }
    
    .border.border-light.border-opacity-10 {
        border-color: rgba(var(--light), 0.1) !important;
    }
    
    .border.border-light.border-opacity-25 {
        border-color: rgba(var(--light), 0.25) !important;
    }
    
    .border.border-light.border-opacity-50 {
        border-color: rgba(var(--light), 0.5) !important;
    }
    
    .border.border-light.border-opacity-75 {
        border-color: rgba(var(--light), 0.75) !important;
    }
    
    .border.border-light.border-opacity-100 {
        border-color: rgba(var(--light), 1) !important;
    }
    
    .border.border-dark {
        border: 1px solid var(--dark) !important;
        opacity: 1;
    }
    
    .border.border-dark.border-opacity-10 {
        border-color: rgba(var(--dark), 0.1) !important;
    }
    
    .border.border-dark.border-opacity-25 {
        border-color: rgba(var(--dark), 0.25) !important;
    }
    
    .border.border-dark.border-opacity-50 {
        border-color: rgba(var(--dark), 0.5) !important;
    }
    
    .border.border-dark.border-opacity-75 {
        border-color: rgba(var(--dark), 0.75) !important;
    }
    
    .border.border-dark.border-opacity-100 {
        border-color: rgba(var(--dark), 1) !important;
    }
    
    .border er-opacity-10 {
        --bs-border-opacity: 0.1 !important;
    }
    
    .border.border-opacity-25 {
        --bs-border-opacity: 0.25 !important;
    }
    
    .border.border-opacity-50 {
        --bs-border-opacity: 0.5 !important;
    }
    
    .border.border-opacity-75 {
        --bs-border-opacity: 0.75 !important;
    }
    
    .border.border-opacity-100 {
        --bs-border-opacity: 1 !important;
    }
    
    .border.border-1 {
        border-width: 1px !important;
    }
    
    .border.border-2 {
        border-width: 2px !important;
    }
    
    .border.border-3 {
        border-width: 3px !important;
    }
    
    .border.border-4 {
        border-width: 4px !important;
    }
    
    .border.border-5 {
        border-width: 5px !important;
    }
    
    .border.border-block-start-dashed {
        border-top-style: dashed;
    }
    
    .border.border-block-start-dotted {
        border-top-style: dotted;
    }
    
    .border.border-inline-end-dashed {
        border-inline-end-style: dashed;
    }
    
    .border.border-inline-end-dotted {
        border-inline-end-style: dotted;
    }
    
    .border.border-block-end-dashed {
        border-bottom-style: dashed;
    }
    
    .border.border-block-end-dotted {
        border-bottom-style: dotted;
    }
    
    .border.border-inline-start-dashed {
        border-inline-start-style: dashed;
    }
    
    .border.border-inline-start-dotted {
        border-inline-start-style: dotted;
    }
    
    .border.border-0 {
        border: 0 !important;
    }
    
    .border.border-top-0 {
        border-block-start: 0 !important;
    }
    
    .border.border-end-0 {
        border-inline-end: 0 !important;
    }
    
    .border.border-bottom-0 {
        border-block-end: 0 !important;
    }
    
    .border.border-start-0 {
        border-inline-start: 0 !important;
    }
    
    .border-top {
        border-top: 1px solid var(--gray-100) !important;
    }
    
    .border-top.border-block-start-dashed {
        border-top-style: dashed !important;
    }
    
    .border-top.border-block-start-dotted {
        border-top-style: dotted !important;
    }
    
    .border-top.border-primary {
        border-color: #392C7D !important;
    }
    
    .border-top.border-secondary {
        border-color: #FF4667 !important;
    }
    
    .border-top.border-warning {
        border-color: #FFC107 !important;
    }
    
    .border-top.border-info {
        border-color: #5625E8 !important;
    }
    
    .border-top.border-success {
        border-color: #03C95A !important;
    }
    
    .border-top.border-danger {
        border-color: #E70D0D !important;
    }
    
    .border-top.border-light {
        border-color: var(--light) !important;
    }
    
    .border-top.border-dark {
        border-color: var(--dark) !important;
    }
    
    .border-top.border-purple {
        border-color: #AB47BC !important;
    }
    
    .border-end {
        border-inline-end: 1px solid var(--gray-100) !important;
    }
    
    .border-end.border-inline-end-dashed {
        border-inline-end-style: dashed !important;
    }
    
    .border-end.border-inline-end-dotted {
        border-inline-end-style: dotted !important;
    }
    
    .border-end.border-primary {
        border-color: #392C7D !important;
    }
    
    .border-end.border-secondary {
        border-color: #FF4667 !important;
    }
    
    .border-end.border-warning {
        border-color: #FFC107 !important;
    }
    
    .border-end.border-info {
        border-color: #5625E8 !important;
    }
    
    .border-end.border-success {
        border-color: #03C95A !important;
    }
    
    .border-end.border-danger {
        border-color: #E70D0D !important;
    }
    
    .border-end.border-light {
        border-color: var(--light) !important;
    }
    
    .border-end.border-dark {
        border-color: var(--dark) !important;
    }
    
    .border-bottom {
        border-bottom: 1px solid var(--gray-100) !important;
    }
    
    .border-bottom.border-block-end-dashed {
        border-bottom-style: dashed !important;
    }
    
    .border-bottom.border-block-end-dotted {
        border-bottom-style: dotted !important;
    }
    
    .border-bottom.border-primary {
        border-color: #392C7D !important;
    }
    
    .border-bottom.border-secondary {
        border-color: #FF4667 !important;
    }
    
    .border-bottom.border-warning {
        border-color: #FFC107 !important;
    }
    
    .border-bottom.border-info {
        border-color: #5625E8 !important;
    }
    
    .border-bottom.border-success {
        border-color: #03C95A !important;
    }
    
    .border-bottom.border-danger {
        border-color: #E70D0D !important;
    }
    
    .border-bottom.border-light {
        border-color: var(--light) !important;
    }
    
    .border-bottom.border-dark {
        border-color: var(--dark) !important;
    }
    
    .border-bottom.border-skyblue {
        border-color: #0DCAF0 !important;
    }
    
    .border-start {
        border-inline-start: 1px solid var(--gray-100) !important;
    }
    
    .border-start.border-inline-start-dashed {
        border-inline-start-style: dashed !important;
    }
    
    .border-start.border-inline-start-dotted {
        border-inline-start-style: dotted !important;
    }
    
    .border-start.border-primary {
        border-color: #392C7D !important;
    }
    
    .border-start.border-secondary {
        border-color: #FF4667 !important;
    }
    
    .border-start.border-warning {
        border-color: #FFC107 !important;
    }
    
    .border-start.border-info {
        border-color: #5625E8 !important;
    }
    
    .border-start.border-success {
        border-color: #03C95A !important;
    }
    
    .border-start.border-danger {
        border-color: #E70D0D !important;
    }
    
    .border-start.border-light {
        border-color: var(--light) !important;
    }
    
    .border-start.border-dark {
        border-color: var(--dark) !important;
    }
    
    .border-start.border-pink {
        border-color: #FD3995 !important;
    }
    
    .border-start.border-purple {
        border-color: #AB47BC !important;
    }
    
    .border-primary {
        border-color: #392C7D !important;
    }
    
    .border-secondary {
        border-color: #FF4667 !important;
    }
    
    .border-warning {
        border-color: #FFC107 !important;
    }
    
    .border-info {
        border-color: #5625E8 !important;
    }
    
    .border-success {
        border-color: #03C95A !important;
    }
    
    .border-danger {
        border-color: #E70D0D !important;
    }
    
    .border-skyblue {
        border-color: #0DCAF0 !important;
    }
    
    .border-3 {
        border-width: 3px !important;
    }
    
    .br-1 {
        border-radius: 0.0625rem;
    }
    
    .br-2 {
        border-radius: 0.125rem;
    }
    
    .br-3 {
        border-radius: 0.1875rem;
    }
    
    .br-4 {
        border-radius: 0.25rem;
    }
    
    .br-5 {
        border-radius: 0.3125rem !important;
    }
    
    .br-6 {
        border-radius: 0.375rem;
    }
    
    .br-7 {
        border-radius: 0.4375rem;
    }
    
    .br-8 {
        border-radius: 0.5rem;
    }
    
    .br-9 {
        border-radius: 0.5625rem;
    }
    
    .br-10 {
        border-radius: 0.625rem;
    }
    
    .br-15 {
        border-radius: 0.9375rem;
    }
    
    .br-20 {
        border-radius: 1.25rem;
    }
    
    .rounded {
        border-radius: 4px !important;
    }
    
    .border-dashed.border-primary {
        border-style: dashed !important;
    }
    /*============================
 17.cards
============================*/
    
    .card {
        background-color: var(--white);
        transition: all 0.5s ease-in-out;
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        box-shadow: none;
        color: inherit;
        margin-bottom: 1.5rem;
    }
    
    .card .card-body {
        padding: 1.25rem;
    }
    
    @media (max-width: 767.98px) {
        .card .card-body {
            padding: 16px;
        }
    }
    
    .card .card-title {
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
        color: var(--gray-900);
    }
    
    @media (max-width: 767.98px) {
        .card .card-title {
            font-size: 16px;
        }
    }
    
    .card .card-header {
        border-color: var(--gray-100);
        position: relative;
        background: transparent;
        padding: 1rem 1.25rem 1rem;
    }
    
    @media (max-width: 767.98px) {
        .card .card-header {
            padding: 15px;
        }
    }
    
    .card .card-header .card-title {
        margin-bottom: 0rem;
    }
    
    .card .card-header .subtitle {
        padding-top: 0.3125rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .card .card-footer {
        border-color: var(--gray-100);
        background: transparent;
        padding: 1rem 1.25rem 1rem;
    }
    
    .card-group .card {
        margin-bottom: 1.5rem;
    }
    
    .card.custom-card {
        border-radius: 4px;
        border: 0;
        background-color: var(--white);
        position: relative;
        margin-block-end: 1.5rem;
        width: 100%;
    }
    
    .card.custom-card .card-header {
        padding: 1rem 1.25rem;
        background-color: transparent !important;
        border-block-end: 1px solid var(--gray-100);
        display: flex;
        align-items: center;
        position: relative;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .card.custom-card .card-header:first-child {
        border-radius: 0.625rem 0.625rem 0 0;
    }
    
    .card.custom-card .card-header .card-title {
        position: relative;
        margin-block-end: 0;
        font-size: 0.9375rem;
        font-weight: 700;
        text-transform: capitalize;
    }
    
    .card.custom-card .card-header .card-title .subtitle {
        margin-block-end: 0;
        text-transform: initial;
    }
    
    .card.custom-card .card-footer {
        background-color: transparent !important;
        border-block-start: 1px solid var(--gray-100);
        padding: 1rem 1.5rem;
        font-size: 14px;
    }
    
    .card.custom-card .card-body {
        padding: 1.5rem;
        color: var(--gray-500);
    }
    
    .card.custom-card .card-link {
        font-size: 0.75rem;
    }
    
    .card .card-text {
        font-size: 0.813rem;
    }
    
    .card .footer-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card.overlay-card {
        position: relative;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .card.overlay-card .card-header {
        border-block-end: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .card.overlay-card .card-footer {
        border-block-start: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .card.overlay-card .over-content-bottom {
        top: auto;
    }
    
    .card.overlay-card:before {
        content: "";
        inset-inline-start: 0;
        inset-inline-end: 0;
        inset-block-start: 0;
        inset-block-end: 0;
        background-color: rgba(0, 0, 0, 0.2);
        position: absolute;
    }
    
    .card.card-bg-primary {
        background-color: #392C7D;
        color: var(--white);
    }
    
    .card.card-bg-primary .card-header {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-end: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-primary .card-header:before {
        background-color: var(--white);
    }
    
    .card.card-bg-primary .card-body {
        color: var(--white);
    }
    
    .card.card-bg-primary .card-footer {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-secondary {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .card.card-bg-secondary .card-header {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-end: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-secondary .card-header:before {
        background-color: var(--white);
    }
    
    .card.card-bg-secondary .card-body {
        color: var(--white);
    }
    
    .card.card-bg-secondary .card-footer {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-warning {
        background-color: #FFC107;
        color: var(--white);
    }
    
    .card.card-bg-warning .card-header {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-end: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-warning .card-header:before {
        background-color: var(--white);
    }
    
    .card.card-bg-warning .card-body {
        color: var(--white);
    }
    
    .card.card-bg-warning .card-footer {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-info {
        background-color: #5625E8;
        color: var(--white);
    }
    
    .card.card-bg-info .card-header {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-end: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-info .card-header:before {
        background-color: var(--white);
    }
    
    .card.card-bg-info .card-body {
        color: var(--white);
    }
    
    .card.card-bg-info .card-footer {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-success {
        background-color: #03C95A;
        color: var(--white);
    }
    
    .card.card-bg-success .card-header {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-end: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-success .card-header:before {
        background-color: var(--white);
    }
    
    .card.card-bg-success .card-body {
        color: var(--white);
    }
    
    .card.card-bg-success .card-footer {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-danger {
        background-color: #E70D0D;
        color: var(--white);
    }
    
    .card.card-bg-danger .card-header {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-end: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-danger .card-header:before {
        background-color: var(--white);
    }
    
    .card.card-bg-danger .card-body {
        color: var(--white);
    }
    
    .card.card-bg-danger .card-footer {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-light {
        background-color: var(--light);
        color: var(--gray-500);
    }
    
    .card.card-bg-light .card-header {
        background-color: rgba(0, 0, 0, 0.05) !important;
        color: var(--gray-500);
        border-block-end: var(--gray-100);
    }
    
    .card.card-bg-light .card-body {
        color: var(--gray-500);
    }
    
    .card.card-bg-light .card-footer {
        background-color: rgba(0, 0, 0, 0.05) !important;
        color: var(--gray-500);
        border-block-start: var(--gray-100);
    }
    
    .card.card-bg-dark {
        background-color: var(--dark);
        color: var(--white);
    }
    
    .card.card-bg-dark .card-header {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-end: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card.card-bg-dark .card-header:before {
        background-color: var(--white);
    }
    
    .card.card-bg-dark .card-body {
        color: var(--white);
    }
    
    .card.card-bg-dark .card-footer {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white);
        border-block-start: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .card .card-anchor {
        position: absolute;
        top: 0;
        inset-inline-end: 0;
        bottom: 0;
        inset-inline-start: 0;
        z-index: 1;
        pointer-events: auto;
        content: "";
    }
    
    .card .collapse-close {
        display: none;
    }
    
    .card.card .collapsed .collapse-close {
        display: block;
    }
    
    .card.card .collapsed .collapse-open {
        display: none;
    }
    
    .card.card-fullscreen {
        position: fixed;
        top: 0;
        inset-inline-start: 0;
        inset-inline-start: 0;
        bottom: 0;
        z-index: 9999;
        margin: 0;
    }
    
    .cals-icon {
        font-size: 50px;
        color: var(--gray-500);
    }
    
    .callout {
        padding: 1.25rem;
        margin-block-start: 1.25rem;
        margin-block-end: 1.25rem;
        background-color: var(--light);
        border-inline-start: 0.25rem solid var(--gray-100);
    }
    
    .callout-info {
        background-color: rgba(86, 37, 232, 0.075);
        border-color: rgba(86, 37, 232, 0.5);
    }
    
    .callout-warning {
        background-color: rgba(255, 193, 7, 0.075);
        border-color: rgba(255, 193, 7, 0.5);
    }
    
    .callout-danger {
        background-color: rgba(231, 13, 13, 0.075);
        border-color: rgba(231, 13, 13, 0.5);
    }
    
    .btn-facebook {
        background-color: #3B5998;
        color: var(--white);
        border: 1px solid #3B5998;
    }
    
    .btn-facebook:hover,
    .btn-facebook:focus,
    .btn-facebook:active {
        background-color: #3B5998 !important;
        color: var(--white) !important;
        border: 1px solid #3B5998 !important;
    }
    
    .btn-instagram {
        background: #f09433;
        background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#f09433", endColorstr="#bc1888", GradientType=1);
        color: var(--white);
        border: 1px solid transparent;
    }
    
    .btn-instagram:hover,
    .btn-instagram:focus,
    .btn-instagram:active {
        color: var(--white);
        border: 1px solid transparent;
    }
    
    .btn-twitter {
        background-color: #00ACEE;
        color: var(--white);
        border: 1px solid #00ACEE;
    }
    
    .btn-twitter:hover,
    .btn-twitter:focus,
    .btn-twitter:active {
        background-color: #00ACEE !important;
        color: var(--white) !important;
        border: 1px solid #00ACEE !important;
    }
    
    .btn-icon {
        width: 2.313rem;
        height: 2.313rem;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .btn-wave {
        display: inline-block !important;
    }
    
    @media (max-width: 575px) {
        .overlay-card .card-text {
            font-size: 0.613rem !important;
        }
    }
    
    @media (max-width: 400px) {
        .overlay-card .card-text {
            font-size: 0.413rem !important;
        }
    }
    
    .card .form-control-plaintext {
        min-height: 38px;
    }
    /*============================
  15.forms
============================*/
    
    .form-control {
        border-color: var(--gray-100);
        color: var(--gray-900);
        background-color: var(--white);
        font-size: 14px;
        padding: 0.5rem 1rem;
        min-height: 40px;
    }
    
    .form-control:focus {
        box-shadow: none;
        border-color: var(--gray-100);
        background: var(--white);
    }
    
    textarea {
        resize: none;
    }
    
    textarea.form-control {
        min-height: 90px;
        height: auto;
    }
    
    .form-control[type=file] {
        padding: 0.3rem 0.5rem;
    }
    
    .form-control[type=file].form-control-sm {
        padding: 0.25rem 0.5rem !important;
    }
    
    .form-control[type=file].form-control-lg {
        padding: 0.5rem 1rem !important;
    }
    
    .form-text {
        color: #677788;
    }
    
    .form-control-light {
        background-color: var(--light);
        border: 0;
    }
    
    .form-control-light:focus {
        background-color: var(--light);
    }
    
    .form-control-primary {
        background-color: rgba(57, 44, 125, 0.1);
        border: 0;
        color: #392C7D;
    }
    
    .form-control-primary:focus {
        background-color: rgba(57, 44, 125, 0.1);
        color: #392C7D;
    }
    
    .form-input-color {
        height: 2.25rem;
        width: 2.25rem;
        border-radius: 4px;
        overflow: hidden;
        padding: 0;
    }
    
    .form-floating>.form-control-plaintext~label,
    .form-floating>.form-control:focus~label,
    .form-floating>.form-control:not(:placeholder-shown)~label,
    .form-floating>.form-select~label {
        color: #677788;
    }
    
    .form-floating>.form-control:not(:placeholder-shown)~label::after {
        background-color: transparent;
    }
    
    .form-select {
        background-color: var(--white);
        border: 1px solid var(--gray-100);
        color: var(--gray-500);
        font-size: 14px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        background-size: 1.25rem;
        line-height: 2;
    }
    
    .form-select option {
        background-color: var(--white);
        padding: 0.35rem 0.75rem;
        border-radius: 0.25rem;
        margin-block-end: 0.25rem;
    }
    
    .form-select option:last-child {
        margin-block-end: 0;
    }
    
    .form-select option:checked {
        background-color: rgba(var(#392C7D), 0.2);
        color: #392C7D;
    }
    
    .form-select option:select {
        background-color: rgba(var(#392C7D), 0.2);
        color: #392C7D;
    }
    
    .form-select option:hover {
        background-color: rgba(var(#392C7D), 0.2);
        color: #392C7D;
    }
    
    .form-select option:focus {
        background-color: rgba(var(#392C7D), 0.2);
        color: #392C7D;
    }
    
    .form-check-label {
        font-size: 14px;
        color: var(--gray-600);
    }
    
    .form-check-input {
        width: 0.9rem;
        height: 0.9rem;
        background-color: var(--white);
        border: 1px solid var(--gray-100);
    }
    
    .form-check-input:checked {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .form-check-input:checked~.form-check-label {
        color: var(--gray-900);
    }
    
    .form-check-input.form-checked-outline:checked {
        background-color: transparent;
        border-color: #392C7D;
    }
    
    .form-check-input.form-checked-secondary:checked {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .form-check-input.form-checked-warning:checked {
        background-color: #FFC107;
        border-color: #FFC107;
    }
    
    .form-check-input.form-checked-info:checked {
        background-color: #5625E8;
        border-color: #5625E8;
    }
    
    .form-check-input.form-checked-success:checked {
        background-color: #03C95A;
        border-color: #03C95A;
    }
    
    .form-check-input.form-checked-danger:checked {
        background-color: #E70D0D;
        border-color: #E70D0D;
    }
    
    .form-check-input.form-checked-light:checked {
        background-color: var(--light);
        border-color: var(--light);
    }
    
    .form-check-input.form-checked-dark:checked {
        background-color: var(--dark);
        border-color: var(--dark);
    }
    
    .form-check-input:focus {
        box-shadow: none;
    }
    
    .form-checked-outline:checked[type=checkbox] {
        background-image: none;
        position: relative;
        background-color: transparent;
    }
    
    .form-checked-outline:checked[type=checkbox]:before {
        content: "\f633";
        font-family: bootstrap-icons !important;
        position: absolute;
        color: #392C7D;
        width: 0.625rem;
        height: 0.625rem;
        inset-block-start: -1px;
        inset-inline-start: 0px;
        font-size: 0.688rem;
    }
    
    .form-checked-outline:checked[type=checkbox].form-checked-secondary:before {
        color: #FF4667;
    }
    
    .form-checked-outline:checked[type=checkbox].form-checked-warning:before {
        color: #FFC107;
    }
    
    .form-checked-outline:checked[type=checkbox].form-checked-info:before {
        color: #5625E8;
    }
    
    .form-checked-outline:checked[type=checkbox].form-checked-success:before {
        color: #03C95A;
    }
    
    .form-checked-outline:checked[type=checkbox].form-checked-danger:before {
        color: #E70D0D;
    }
    
    .form-checked-outline:checked[type=checkbox].form-checked-light:before {
        color: var(--light);
    }
    
    .form-checked-outline:checked[type=checkbox].form-checked-dark:before {
        color: var(--dark);
    }
    
    .form-checked-outline:checked[type=radio] {
        background-image: none;
        position: relative;
        background-color: transparent;
    }
    
    .form-checked-outline:checked[type=radio]:before {
        content: "\f309";
        font-family: bootstrap-icons !important;
        position: absolute;
        color: #392C7D;
        width: 0.625rem;
        height: 0.625rem;
        inset-block-start: -1.13rem;
        inset-inline-start: -0.6rem;
        font-size: 2rem;
    }
    
    .form-checked-outline:checked[type=radio].form-checked-secondary:before {
        color: #FF4667;
    }
    
    .form-checked-outline:checked[type=radio].form-checked-warning:before {
        color: #FFC107;
    }
    
    .form-checked-outline:checked[type=radio].form-checked-info:before {
        color: #5625E8;
    }
    
    .form-checked-outline:checked[type=radio].form-checked-success:before {
        color: #03C95A;
    }
    
    .form-checked-outline:checked[type=radio].form-checked-danger:before {
        color: #E70D0D;
    }
    
    .form-checked-outline:checked[type=radio].form-checked-light:before {
        color: var(--light);
    }
    
    .form-checked-outline:checked[type=radio].form-checked-dark:before {
        color: var(--dark);
    }
    
    fieldset:disabled .btn {
        color: var(--white);
        background-color: #392C7D;
        border-color: #392C7D;
    }
    
    .form-select:focus {
        border-color: rgba(var(#392C7D), 0.5);
        outline: 0;
        box-shadow: none;
    }
    
    .btn-check:focus+.btn,
    .btn:focus {
        background-color: none;
        border-color: none;
        outline: 0;
    }
    
    .btn-check:active+.btn:focus,
    .btn-check:checked+.btn:focus,
    .btn.active:focus,
    .btn.show:focus,
    .btn:active:focus {
        box-shadow: none;
    }
    
    .form-control:disabled,
    .form-select:disabled {
        background-color: var(--light);
        color: var(--gray-500);
    }
    
    .form-control-plaintext {
        color: var(--gray-500);
    }
    
    .form-control::-webkit-file-upload-button {
        color: var(--gray-500);
        background-color: #F8F9FA;
    }
    
    .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
        background-color: #F8F9FA;
    }
    
    .form-control:focus {
        color: var(--gray-900);
    }
    
    .form-control:focus::-webkit-input-placeholder,
    .form-control:focus::placeholder {
        color: var(--gray-300);
        padding-inline-start: 0;
    }
    
    .form-control::-webkit-input-placeholder {
        color: var(--gray-300);
        padding-inline-start: 0px;
        transition: padding-inline-start 0.1s ease-in;
    }
    
    .form-control:-moz-placeholder {
        color: var(--gray-300);
    }
    
    .form-control::-moz-placeholder {
        color: var(--gray-300);
    }
    
    .form-control:-ms-input-placeholder {
        color: var(--gray-300);
    }
    
    .form-control-sm {
        font-size: 0.8rem;
        padding: 0.25rem 0.8rem;
        height: auto;
    }
    
    .form-control-lg {
        font-size: 1rem;
        padding: 0.66rem 1rem;
    }
    
    .form-check-md .form-check-input {
        width: 1.15rem;
        height: 1.15rem;
    }
    
    .form-check-md.form-switch .form-check-input {
        width: 2.25rem;
    }
    
    .form-check-md label {
        margin-inline-start: 0.5rem;
        font-size: 0.95rem;
        margin-block-start: 3px;
    }
    
    .form-check-lg .form-check-input {
        width: 1.35rem;
        height: 1.35rem;
    }
    
    .form-check-lg.form-switch .form-check-input {
        width: 2.5rem;
    }
    
    .form-check-lg label {
        margin-inline-start: 0.5rem;
        font-size: 1rem;
        margin-block-start: 3px;
    }
    
    .label-primary {
        background: #392C7D;
        color: var(--white);
    }
    
    .label-secondary {
        background: #FF4667;
        color: var(--white);
    }
    
    .label-warning {
        background: #FFC107;
        color: var(--white);
    }
    
    .label-info {
        background: #5625E8;
        color: var(--white);
    }
    
    .label-success {
        background: #03C95A;
        color: var(--white);
    }
    
    .label-danger {
        background: #E70D0D;
        color: var(--white);
    }
    
    .label-light {
        background: var(--light);
        color: var(--white);
    }
    
    .label-dark {
        background: var(--dark);
        color: var(--white);
    }
    
    .form-floating>.form-control-plaintext::placeholder,
    .form-floating>.form-control::placeholder {
        color: transparent !important;
    }
    
    .form-floating>.form-control,
    .form-floating>.form-control-plaintext,
    .form-floating>.form-select {
        height: calc(3.5rem - 4px);
    }
    
    .form-floating.floating-primary label {
        color: #392C7D;
        opacity: 1;
    }
    
    .form-floating.floating-primary input {
        border: 1px solid #392C7D;
    }
    
    .form-floating.floating-primary>.form-control:focus~label {
        color: #392C7D !important;
    }
    
    .form-floating.floating-secondary label {
        color: #FF4667;
        opacity: 1;
    }
    
    .form-floating.floating-secondary input {
        border: 1px solid #FF4667;
    }
    
    .form-floating.floating-secondary>.form-control:focus~label {
        color: #FF4667 !important;
    }
    
    .form-floating.floating-warning label {
        color: #FFC107;
        opacity: 1;
    }
    
    .form-floating.floating-warning input {
        border: 1px solid #FFC107;
    }
    
    .form-floating.floating-warning>.form-control:focus~label {
        color: #FFC107 !important;
    }
    
    .form-floating.floating-info label {
        color: #5625E8;
        opacity: 1;
    }
    
    .form-floating.floating-info input {
        border: 1px solid #5625E8;
    }
    
    .form-floating.floating-info>.form-control:focus~label {
        color: #5625E8 !important;
    }
    
    .form-floating.floating-success label {
        color: #03C95A;
        opacity: 1;
    }
    
    .form-floating.floating-success input {
        border: 1px solid #03C95A;
    }
    
    .form-floating.floating-success>.form-control:focus~label {
        color: #03C95A !important;
    }
    
    .form-floating.floating-danger label {
        color: #E70D0D;
        opacity: 1;
    }
    
    .form-floating.floating-danger input {
        border: 1px solid #E70D0D;
    }
    
    .form-floating.floating-danger>.form-control:focus~label {
        color: #E70D0D !important;
    }
    
    .form-floating>.form-control-plaintext~label::after,
    .form-floating>.form-control:focus~label::after,
    .form-floating>.form-control:not(:placeholder-shown)~label::after,
    .form-floating>.form-select~label::after {
        background-color: var(--white);
        border-radius: 4px;
    }
    
    .form-control.is-valid:focus,
    .was-validated .form-control:valid:focus {
        border-color: #03C95A;
        box-shadow: none;
    }
    
    .form-control.is-valid,
    .was-validated .form-control:valid {
        border-color: #03C95A;
    }
    
    .form-control-color {
        width: 1.75rem;
        height: 1.75rem;
        overflow: hidden;
        padding: 0;
    }
    
    .bootstrap-tagsinput {
        border-color: var(--gray-100);
        color: var(--gray-500);
        background-color: var(--white);
        font-size: 15px;
        font-weight: 400;
        border-radius: 5px;
        padding: 0.45rem 0.625rem;
        height: 40px;
        box-shadow: none;
        overflow-y: auto;
        width: 100%;
    }
    
    .bootstrap-tagsinput .tag {
        background: var(--light);
        border: 1px solid var(--gray-100);
        border-radius: 3px;
        padding: 0 5px;
        font-size: 14px;
        color: var(--gray-700);
        display: inline-flex;
        align-items: center;
    }
    
    .bootstrap-tagsinput .tag span::after {
        color: var(--gray-900);
    }
    
    .bootstrap-tagsinput .tag [data-role=remove]:hover {
        box-shadow: none;
    }
    
    .bootstrap-tagsinput .tag [data-role=remove]:hover:active {
        box-shadow: none;
    }
    
    [dir=rtl] [type=email],
    [dir=rtl] [type=number],
    [dir=rtl] [type=tel],
    [dir=rtl] [type=url] {
        direction: rtl;
    }
    
    .form-select.is-invalid:not([multiple]):not([size]) {
        padding-right: 1.125rem;
        background-size: 16px 28px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }
    
    input[type=range]::-webkit-slider-runnable-track {
        background-color: var(--light);
    }
    
    [dir=rtl] .form-checked-outline:checked[type=checkbox]:before {
        inset-inline-start: 1px;
    }
    
    .form-check {
        min-height: inherit !important;
    }
    
    .col-form-label-lg,
    .col-form-label-sm,
    .col-form-label {
        font-weight: 600;
    }
    
    .col-form-label {
        font-size: 15px;
        font-weight: 500;
        color: var(--gray-900);
    }
    
    .form-label {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray-900);
        margin-bottom: 5px;
    }
    
    .input-group-text {
        border-radius: 4px;
    }
    
    [data-theme-mode=dark] input[type=week]::-webkit-calendar-picker-indicator,
    [data-theme-mode=dark] input[type=month]::-webkit-calendar-picker-indicator,
    [data-theme-mode=dark] input[type=date]::-webkit-calendar-picker-indicator,
    [data-theme-mode=dark] input[type=datetime-local]::-webkit-calendar-picker-indicator,
    [data-theme-mode=dark] input[type=time]::-webkit-calendar-picker-indicator {
        filter: invert(1);
    }
    
    [dir=rtl] input[type=week],
    [dir=rtl] input[type=month],
    [dir=rtl] input[type=date],
    [dir=rtl] input[type=datetime-local],
    [dir=rtl] input[type=time] {
        text-align: end;
    }
    
    .input-group-text {
        border-color: var(--light-900);
    }
    /**
Form help
 */
    
    .form-help {
        display: inline-flex;
        font-weight: 700;
        align-items: center;
        justify-content: center;
        width: 1.125rem;
        height: 1.125rem;
        font-size: 0.75rem;
        color: var(--white);
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        user-select: none;
        background: #FF4667;
        border-radius: 4px;
    }
    
    .form-help:hover,
    .form-help[aria-describedby] {
        color: var(--white);
        background: #392C7D;
    }
    
    .input-icon {
        position: relative;
    }
    
    .input-icon .form-control:not(:last-child),
    .input-icon .form-select:not(:last-child) {
        padding-right: 2.5rem;
    }
    /* Input Group */
    
    .input-group-link {
        font-size: 12px;
    }
    
    .input-group-flat:focus-within {
        border-radius: 4px;
    }
    
    .input-group-flat:focus-within .form-control,
    .input-group-flat:focus-within .input-group-text {
        border-color: var(--gray-100) !important;
    }
    
    .input-group-flat .form-control:focus {
        box-shadow: none;
    }
    
    .input-group-flat .form-control:not(:last-child) {
        border-right: 0;
    }
    
    .input-group-flat .form-control:not(:first-child) {
        border-left: 0;
    }
    
    .input-group-flat .input-group-text:first-child {
        padding-right: 0;
    }
    
    .input-group-flat .input-group-text:last-child {
        padding-left: 0;
    }
    
    .custom-radio {
        display: block;
        position: relative;
        padding-left: 25px;
        cursor: pointer;
        font-size: 15px;
        color: var(--gray-700);
        text-transform: capitalize;
    }
    
    .custom-radio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    
    .custom-radio input:checked~.checkmark {
        border-color: #392C7D;
        background: #392C7D;
    }
    
    .custom-radio input:checked~.checkmark::after {
        opacity: 1;
        visibility: visible;
    }
    
    .custom-radio .checkmark {
        width: 20px;
        height: 20px;
        border: 1px solid var(--light-900);
        border-radius: 50%;
        -webkit-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .custom-radio .checkmark::after {
        content: "";
        width: 8px;
        height: 8px;
        background-color: var(--white);
        opacity: 0;
        visibility: hidden;
        border-radius: 50%;
        -webkit-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .check-radio-group {
        flex-wrap: wrap;
        row-gap: 10px;
    }
    
    .check-radio-group .custom-radio {
        margin-right: 15px;
    }
    
    .check {
        display: block;
        margin: 0;
        padding: 0;
        width: 0;
        height: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        position: absolute;
    }
    
    .checktoggle {
        background-color: rgba(115, 103, 240, 0.2);
        border-radius: 12px;
        cursor: pointer;
        display: block;
        font-size: 0;
        height: 24px;
        margin-bottom: 0;
        position: relative;
        width: 46px;
    }
    
    .status-toggle.modal-status label {
        height: 16px;
        width: 30px;
        background-color: var(--white);
        border: 1px solid var(--light-900);
        margin-bottom: 0;
    }
    
    .check:checked+.checktoggle {
        background-color: var(--white);
    }
    
    .checktoggle:after {
        content: " ";
        display: block;
        transform: translate(2px, -50%);
        width: 10px;
        height: 10px;
        background-color: var(--gray-300);
        transition: left 300ms ease, transform 300ms ease;
        border-radius: 50%;
        transform: translate(2px, -50%);
        -webkit-transform: translate(4px, -50%);
        -ms-transform: translate(2px, -50%);
        position: absolute;
        top: 45%;
        left: 0;
    }
    
    .check:checked+.checktoggle:after {
        background-color: #392C7D;
        left: 100%;
        transform: translate(calc(-90% - 4px), -50%);
    }
    
    .input-icon {
        position: relative;
    }
    
    .input-icon-addon {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 2.5rem;
        color: var(--gray-700);
        pointer-events: none;
        font-size: 1.2em;
    }
    
    .input-icon-addon:last-child {
        right: 0;
        left: auto;
    }
    
    .input-icon-start .form-control {
        padding-left: 28px;
    }
    
    .icon-addon {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 2rem;
        color: var(--gray-700);
        pointer-events: none;
        font-size: 1.2em;
    }
    
    input-icon {
        position: relative;
    }
    
    .input-icon .form-control:not(:last-child),
    .input-icon .form-select:not(:last-child) {
        padding-right: 2.5rem;
    }
    
    .input-icon .form-control:not(:first-child),
    .input-icon .form-select:not(:last-child) {
        padding-left: 2.2rem;
    }
    
    .input-icon-addon {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 2.5rem;
        color: var(--gray-500);
        pointer-events: none;
        font-size: 16px;
    }
    
    .input-icon-addon:last-child {
        right: 0;
        left: auto;
    }
    
    .form-wrap .form-wrap-icon {
        position: relative;
    }
    
    .form-wrap .form-wrap-icon i {
        font-size: 18px;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }
    
    .toggle-password {
        cursor: pointer;
        width: 30px;
        height: 30px;
        color: var(--gray-900);
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        border-radius: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        position: absolute;
        top: 50%;
        right: 10px;
        pointer-events: auto;
    }
    
    .toggle-password:hover {
        color: #392C7D;
    }
    
    .pass-group {
        position: relative;
    }
    
    .toggle-passwords,
    .toggle-passworda {
        cursor: pointer;
        width: 30px;
        height: 30px;
        color: var(--gray-900);
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        border-radius: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        position: absolute;
        top: 50%;
        right: 10px;
    }
    
    .toggle-passwords:hover,
    .toggle-passworda:hover {
        color: #392C7D;
    }
    
    .drag-upload-btn {
        font-size: 12px;
        font-weight: 600;
        background: var(--white);
        border: 1px dashed var(--light-900);
        border-radius: 54px;
        padding: 6px 16px;
        position: relative;
        transition: all 0.5s;
    }
    
    .drag-upload-btn input {
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
    }
    
    .drag-upload-btn:hover {
        background: #392C7D;
        border-color: #392C7D;
        color: var(--white);
        transition: all 0.5s;
    }
    
    .bookingrange {
        padding: 4px 8px 4px 30px;
    }
    /*============================
  21.tables
============================*/
    
    caption {
        color: #677788;
    }
    
    .table> :not(caption)>*>* {
        background-color: var(--white);
    }
    
    .table-active {
        --bs-table-color-state: var(--default-text-color);
    }
    
    .table {
        color: var(--gray-500);
        border-color: var(--gray-100);
        margin-block-end: 0;
    }
    
    .table tbody tr {
        border-color: var(--gray-100);
    }
    
    .table tbody tr th {
        font-weight: 500;
    }
    
    .table th,
    .table td {
        padding: 20px 15px;
        vertical-align: middle;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .table thead tr {
        border-color: var(--gray-100);
    }
    
    .table thead tr th {
        font-weight: 600;
        border-color: var(--gray-100);
        background: var(--gray-200);
        font-size: 14px;
        color: var(--gray-900);
    }
    
    .table.table-sm> :not(caption)>*>* {
        padding: 0.3rem;
    }
    
    .table.table-dark {
        color: var(--light-700);
        border-color: rgba(var(--white), 0.1);
    }
    
    .table .thead-primary th {
        background-color: #392C7D;
        color: var(--white);
    }
    
    .table .thead-secondary th {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .table .thead-info th {
        background-color: #5625E8;
        color: var(--white);
    }
    
    .table .thead-warning th {
        background-color: #FFC107;
        color: var(--white);
    }
    
    .table .thead-danger th {
        background-color: #E70D0D;
        color: var(--white);
    }
    
    .table .thead-success th {
        background-color: #03C95A;
        color: var(--white);
    }
    
    .table .thead-dark th {
        background-color: var(--dark);
        color: var(--white);
    }
    
    .table .thead-light th {
        background-color: var(--light);
        color: var(--gray-900);
    }
    
    .table.table-primary {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--primary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--primary-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--primary-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--primary-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--primary-rgb), 0.2);
    }
    
    .table.table-primary.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--primary-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-primary.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--primary-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-primary .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--primary-rgb));
        color: var(--white);
    }
    
    .table.table-secondary {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--secondary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--secondary-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--secondary-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--secondary-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--secondary-rgb), 0.2);
    }
    
    .table.table-secondary.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--secondary-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-secondary.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--secondary-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-secondary .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--secondary-rgb));
        color: var(--white);
    }
    
    .table.table-warning {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--warning-rgb), 0.1);
        --bs-table-border-color: rgba(var(--warning-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--warning-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--warning-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--warning-rgb), 0.2);
    }
    
    .table.table-warning.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--warning-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-warning.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--warning-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-warning .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--warning-rgb));
        color: var(--white);
    }
    
    .table.table-success {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--success-rgb), 0.1);
        --bs-table-border-color: rgba(var(--success-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--success-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--success-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--success-rgb), 0.2);
    }
    
    .table.table-success.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--success-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-success.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--success-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-success .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--success-rgb));
        color: var(--white);
    }
    
    .table.table-danger {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--danger-rgb), 0.1);
        --bs-table-border-color: rgba(var(--danger-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--danger-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--danger-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--danger-rgb), 0.2);
    }
    
    .table.table-danger.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--danger-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-danger.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--danger-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-danger .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--danger-rgb));
        color: var(--white);
    }
    
    .table.table-info {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--info-rgb), 0.1);
        --bs-table-border-color: rgba(var(--info-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--info-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--info-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--info-rgb), 0.2);
    }
    
    .table.table-info.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--info-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-info.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--info-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-info .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--info-rgb));
        color: var(--white);
    }
    
    .table.table-light {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--light-rgb), 0.1);
        --bs-table-border-color: rgba(var(--light-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--light-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--light-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--light-rgb), 0.2);
    }
    
    .table.table-light.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--light-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-light.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--light-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-light .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--light-rgb));
        color: var(--white);
    }
    
    .table.table-dark {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--dark-rgb), 0.1);
        --bs-table-border-color: rgba(var(--dark-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--dark-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--dark-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--dark-rgb), 0.2);
    }
    
    .table.table-dark.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.2);
        color: var(--black);
    }
    
    .table.table-dark.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.4);
        color: var(--white);
    }
    
    .table.table-dark .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--dark-rgb));
        color: var(--white);
    }
    
    .table.table-bordered.border-primary tbody,
    .table.table-bordered.border-primary td,
    .table.table-bordered.border-primary tfoot,
    .table.table-bordered.border-primary th,
    .table.table-bordered.border-primary thead,
    .table.table-bordered.border-primary tr {
        border-color: rgba(57, 44, 125, 0.1);
    }
    
    .table.table-bordered.border-info tbody,
    .table.table-bordered.border-info td,
    .table.table-bordered.border-info tfoot,
    .table.table-bordered.border-info th,
    .table.table-bordered.border-info thead,
    .table.table-bordered.border-info tr {
        border-color: rgba(86, 37, 232, 0.1);
    }
    
    .table.table-bordered.border-secondary tbody,
    .table.table-bordered.border-secondary td,
    .table.table-bordered.border-secondary tfoot,
    .table.table-bordered.border-secondary th,
    .table.table-bordered.border-secondary thead,
    .table.table-bordered.border-secondary tr {
        border-color: rgba(255, 70, 103, 0.1);
    }
    
    .table.table-bordered.border-warning tbody,
    .table.table-bordered.border-warning td,
    .table.table-bordered.border-warning tfoot,
    .table.table-bordered.border-warning th,
    .table.table-bordered.border-warning thead,
    .table.table-bordered.border-warning tr {
        border-color: rgba(255, 193, 7, 0.1);
    }
    
    .table.table-bordered.border-success tbody,
    .table.table-bordered.border-success td,
    .table.table-bordered.border-success tfoot,
    .table.table-bordered.border-success th,
    .table.table-bordered.border-success thead,
    .table.table-bordered.border-success tr {
        border-color: rgba(3, 201, 90, 0.1);
    }
    
    .table.table-bordered.border-danger tbody,
    .table.table-bordered.border-danger td,
    .table.table-bordered.border-danger tfoot,
    .table.table-bordered.border-danger th,
    .table.table-bordered.border-danger thead,
    .table.table-bordered.border-danger tr {
        border-color: rgba(231, 13, 13, 0.1);
    }
    
    .table.table-striped>tbody>tr:nth-of-type(odd)>* {
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.0125);
        color: var(--gray-500);
    }
    
    .table.table-striped-columns> :not(caption)>tr> :nth-child(2n) {
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.025);
        color: var(--gray-500);
    }
    
    .table tbody.table-group-divider {
        border-top: 1px solid var(--gray-100);
    }
    
    .table.table-hover>tbody>tr:hover>* {
        --bs-table-accent-bg: #F8F9FA;
        color: var(--gray-500);
    }
    
    .table .table-active {
        --bs-table-accent-bg: var(--light);
        color: var(--gray-500);
    }
    
    .table thead.table-primary {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--primary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--primary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--primary-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--primary-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--primary-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .table thead.table-secondary {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--secondary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--secondary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--secondary-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--secondary-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--secondary-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .table thead.table-warning {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--warning-rgb), 0.1);
        --bs-table-border-color: rgba(var(--warning-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--warning-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--warning-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--warning-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .table thead.table-success {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--success-rgb), 0.1);
        --bs-table-border-color: rgba(var(--success-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--success-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--success-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--success-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .table thead.table-danger {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--danger-rgb), 0.1);
        --bs-table-border-color: rgba(var(--danger-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--danger-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--danger-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--danger-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .table thead.table-info {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--info-rgb), 0.1);
        --bs-table-border-color: rgba(var(--info-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--info-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--info-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--info-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .table thead.table-light {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--light-rgb), 0.1);
        --bs-table-border-color: rgba(var(--light-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--light-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--light-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--light-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .table thead.table-dark {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--dark-rgb), 0.1);
        --bs-table-border-color: rgba(var(--dark-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--dark-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--dark-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--dark-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .datanew tbody {
        border-top: 1px solid var(--light-900);
    }
    
    .table-primary {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--primary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--primary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--primary-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--primary-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--primary-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--primary-rgb), 0.1);
        background-color: var(--white);
    }
    
    .table-secondary {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--secondary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--secondary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--secondary-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--secondary-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--secondary-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--secondary-rgb), 0.1);
        background-color: var(--white);
    }
    
    .table-warning {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--warning-rgb), 0.1);
        --bs-table-border-color: rgba(var(--warning-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--warning-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--warning-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--warning-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--warning-rgb), 0.1);
        background-color: var(--white);
    }
    
    .table-success {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--success-rgb), 0.1);
        --bs-table-border-color: rgba(var(--success-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--success-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--success-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--success-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--success-rgb), 0.1);
        background-color: var(--white);
    }
    
    .table-info {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--info-rgb), 0.1);
        --bs-table-border-color: rgba(var(--info-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--info-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--info-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--info-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--info-rgb), 0.1);
        background-color: var(--white);
    }
    
    .table-danger {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--danger-rgb), 0.1);
        --bs-table-border-color: rgba(var(--danger-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--danger-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--danger-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--danger-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--danger-rgb), 0.1);
        background-color: var(--white);
    }
    
    .table-dark {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--dark-rgb), 0.1);
        --bs-table-border-color: rgba(var(--dark-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--dark-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--dark-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--dark-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--dark-rgb), 0.1);
        background-color: var(--white);
    }
    
    .table-light {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--light-rgb), 0.1);
        --bs-table-border-color: rgba(var(--light-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--light-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--light-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--light-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--light-rgb), 0.1);
        background-color: var(--white);
    }
    
    [data-theme-mode=dark] .table-dark {
        border-color: rgba(0, 0, 0, 0.025);
    }
    
    [dir=rtl] .table {
        margin-inline-end: 1px;
    }
    
    .invoice-table {
        border: 1px solid var(--light-900);
        border-radius: 5px;
        margin: 20px 0;
    }
    
    .invoice-table thead th {
        border-bottom: 1px solid var(--light-900);
    }
    
    .invoice-table thead th:first-child {
        width: 80%;
    }
    
    .invoice-table tbody tr:last-child td {
        border-bottom: 0;
    }
    
    .invoice-table .delete-invoive-list {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F6CECE;
        color: #E70D0D;
        border-radius: 5px;
        font-size: 16px;
    }
    
    .invoice-product-table {
        border-top: 1px solid var(--light-900);
    }
    
    .table {
        margin: 0;
    }
    
    .table tbody tr td {
        color: var(--gray-700);
        font-size: 14px;
    }
    
    .table tbody tr td .product-img img {
        border: 0;
    }
    
    .table tbody tr td .action-icon a {
        color: var(--gray-500);
    }
    
    .table tbody tr td .action-icon a:hover {
        background: var(--light-900);
        color: var(--gray-900);
    }
    
    .table tbody tr.active {
        border-bottom: 0;
    }
    
    .table tbody tr.active td {
        font-size: 18px;
        color: var(--gray-700);
        font-weight: 600;
        border-bottom: 0;
    }
    
    .table tbody tr .checkboxs .checkmarks {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
    
    .new tbody tr td {
        border-bottom: none;
    }
    
    .dataTables_filter+.dataTables_filter {
        display: none;
    }
    
    .productimgname {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .productimgname a {
        color: #FF4667;
        font-weight: 500;
    }
    
    .table .input-blocks input[type=text] {
        height: 40px;
    }
    
    .table {
        margin: 0;
    }
    
    .table tbody tr td {
        color: var(--gray-500);
    }
    
    .table tbody tr td a {
        color: var(--gray-900);
    }
    
    .table tbody tr td a .info-img {
        margin-right: 8px;
        width: 16px;
        height: 16px;
    }
    
    .table tbody tr td a:hover {
        color: #FF4667;
    }
    
    .table tbody tr.active {
        border-bottom: 0;
    }
    
    .table tbody tr.active td {
        font-size: 18px;
        color: var(--gray-700);
        font-weight: 600;
        border-bottom: 0;
    }
    
    table tbody .productimgname {
        min-width: 200px;
    }
    
    table tbody .productimgname a.stock-img.product-img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        margin-right: 8px;
    }
    
    table tbody .productimgname a.stock-img.product-img img {
        width: 50px;
        height: 50px;
        max-width: 100%;
        margin-right: 0;
    }
    
    table.table-bordered thead tr th p {
        margin-bottom: 0;
    }
    
    .custom-table {
        border-radius: 10px;
        border: 1px solid var(--gray-100);
    }
    
    .custom-table table thead tr th {
        background: var(--light);
        color: var(--gray-900);
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .custom-table table tbody tr td {
        padding: 12px 15px;
    }
    
    .custom-table table tbody tr td .detail-link {
        font-weight: 600;
        color: var(--gray-900);
        text-decoration: underline;
    }
    
    .custom-table table tbody tr td .detail-link:hover {
        color: #392C7D;
    }
    
    .custom-table table tbody tr td .course-title h6 {
        max-width: 262px;
        white-space: pre-wrap;
        font-size: 16px;
    }
    
    @media (max-width: 767.98px) {
        .custom-table table tbody tr td .course-title h6 {
            font-size: 14px;
        }
    }
    
    .custom-table table tbody tr:last-child td {
        border: 0;
    }
    
    .table tbody tr td a.delete-icon {
        font-size: 16px;
        color: #E70D0D;
    }
    
    .table tbody tr td a.delete-icon:hover {
        color: #b70a0a;
    }
    
    .table tr td .attendance-range {
        width: 8px;
        height: 15px;
        border-radius: 5px;
        display: block;
    }
    
    .hotel-list {
        box-shadow: none;
    }
    
    .hotel-list caption {
        color: #677788;
    }
    
    .hotel-list .table-active {
        --bs-table-color-state: var(--default-text-color);
    }
    
    .hotel-list .table {
        color: var(--gray-500);
        border-color: var(--gray-100);
        margin-block-end: 0;
    }
    
    .hotel-list .table tbody tr {
        border-color: var(--light-900);
    }
    
    .hotel-list .table tbody tr th {
        font-weight: 500;
    }
    
    .hotel-list .table th,
    .hotel-list .table td {
        padding: 12px 20px;
        vertical-align: middle;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .hotel-list .table thead tr {
        border-color: var(--light-900);
    }
    
    .hotel-list .table thead tr th {
        font-weight: 500;
        border-color: var(--light-900);
        font-size: 14px;
    }
    
    .hotel-list .table.table-sm> :not(caption)>*>* {
        padding: 0.3rem;
    }
    
    .hotel-list .table.table-dark {
        color: var(--light-700);
        border-color: rgba(var(--white), 0.1);
    }
    
    .hotel-list .table .thead-primary th {
        background-color: #392C7D;
        color: var(--white);
    }
    
    .hotel-list .table .thead-secondary th {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .hotel-list .table .thead-info th {
        background-color: #5625E8;
        color: var(--white);
    }
    
    .hotel-list .table .thead-warning th {
        background-color: #FFC107;
        color: var(--white);
    }
    
    .hotel-list .table .thead-danger th {
        background-color: #E70D0D;
        color: var(--white);
    }
    
    .hotel-list .table .thead-success th {
        background-color: #03C95A;
        color: var(--white);
    }
    
    .hotel-list .table .thead-dark th {
        background-color: var(--dark);
        color: var(--white);
    }
    
    .hotel-list .table .thead-light th {
        background-color: var(--light-200);
        color: var(--gray-900);
    }
    
    .hotel-list .table.table-primary {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--primary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--primary-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--primary-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--primary-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--primary-rgb), 0.2);
    }
    
    .hotel-list .table.table-primary.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--primary-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-primary.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--primary-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-primary .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--primary-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-secondary {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--secondary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--secondary-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--secondary-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--secondary-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--secondary-rgb), 0.2);
    }
    
    .hotel-list .table.table-secondary.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--secondary-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-secondary.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--secondary-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-secondary .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--secondary-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-warning {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--warning-rgb), 0.1);
        --bs-table-border-color: rgba(var(--warning-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--warning-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--warning-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--warning-rgb), 0.2);
    }
    
    .hotel-list .table.table-warning.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--warning-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-warning.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--warning-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-warning .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--warning-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-success {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--success-rgb), 0.1);
        --bs-table-border-color: rgba(var(--success-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--success-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--success-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--success-rgb), 0.2);
    }
    
    .hotel-list .table.table-success.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--success-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-success.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--success-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-success .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--success-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-danger {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--danger-rgb), 0.1);
        --bs-table-border-color: rgba(var(--danger-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--danger-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--danger-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--danger-rgb), 0.2);
    }
    
    .hotel-list .table.table-danger.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--danger-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-danger.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--danger-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-danger .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--danger-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-info {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--info-rgb), 0.1);
        --bs-table-border-color: rgba(var(--info-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--info-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--info-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--info-rgb), 0.2);
    }
    
    .hotel-list .table.table-info.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--info-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-info.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--info-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-info .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--info-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-light {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--light-rgb), 0.1);
        --bs-table-border-color: rgba(var(--light-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--light-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--light-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--light-rgb), 0.2);
    }
    
    .hotel-list .table.table-light.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--light-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-light.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--light-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-light .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--light-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-dark {
        background-color: var(--white);
        color: var(--black);
        --bs-table-color-state: $black;
        border-color: var(--bs-table-border-color);
        --bs-table-bg: rgba(var(--dark-rgb), 0.1);
        --bs-table-border-color: rgba(var(--dark-rgb), 0.05);
        --bs-table-striped-bg: rgba(var(--dark-rgb), 0.2);
        --bs-table-active-bg: rgba(var(--dark-rgb), 0.2);
        --bs-table-hover-bg: rgba(var(--dark-rgb), 0.2);
    }
    
    .hotel-list .table.table-dark.table-striped>tbody>tr:nth-of-type(odd)>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.2);
        color: var(--black);
    }
    
    .hotel-list .table.table-dark.table.table-hover>tbody>tr:hover>* {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.4);
        color: var(--white);
    }
    
    .hotel-list .table.table-dark .table-active {
        background-color: var(--bs-table-accent-bg);
        --bs-table-accent-bg: rgb(var(--dark-rgb));
        color: var(--white);
    }
    
    .hotel-list .table.table-bordered.border-primary tbody,
    .hotel-list .table.table-bordered.border-primary td,
    .hotel-list .table.table-bordered.border-primary tfoot,
    .hotel-list .table.table-bordered.border-primary th,
    .hotel-list .table.table-bordered.border-primary thead,
    .hotel-list .table.table-bordered.border-primary tr {
        border-color: rgba(57, 44, 125, 0.1);
    }
    
    .hotel-list .table.table-bordered.border-info tbody,
    .hotel-list .table.table-bordered.border-info td,
    .hotel-list .table.table-bordered.border-info tfoot,
    .hotel-list .table.table-bordered.border-info th,
    .hotel-list .table.table-bordered.border-info thead,
    .hotel-list .table.table-bordered.border-info tr {
        border-color: rgba(86, 37, 232, 0.1);
    }
    
    .hotel-list .table.table-bordered.border-secondary tbody,
    .hotel-list .table.table-bordered.border-secondary td,
    .hotel-list .table.table-bordered.border-secondary tfoot,
    .hotel-list .table.table-bordered.border-secondary th,
    .hotel-list .table.table-bordered.border-secondary thead,
    .hotel-list .table.table-bordered.border-secondary tr {
        border-color: rgba(255, 70, 103, 0.1);
    }
    
    .hotel-list .table.table-bordered.border-warning tbody,
    .hotel-list .table.table-bordered.border-warning td,
    .hotel-list .table.table-bordered.border-warning tfoot,
    .hotel-list .table.table-bordered.border-warning th,
    .hotel-list .table.table-bordered.border-warning thead,
    .hotel-list .table.table-bordered.border-warning tr {
        border-color: rgba(255, 193, 7, 0.1);
    }
    
    .hotel-list .table.table-bordered.border-success tbody,
    .hotel-list .table.table-bordered.border-success td,
    .hotel-list .table.table-bordered.border-success tfoot,
    .hotel-list .table.table-bordered.border-success th,
    .hotel-list .table.table-bordered.border-success thead,
    .hotel-list .table.table-bordered.border-success tr {
        border-color: rgba(3, 201, 90, 0.1);
    }
    
    .hotel-list .table.table-bordered.border-danger tbody,
    .hotel-list .table.table-bordered.border-danger td,
    .hotel-list .table.table-bordered.border-danger tfoot,
    .hotel-list .table.table-bordered.border-danger th,
    .hotel-list .table.table-bordered.border-danger thead,
    .hotel-list .table.table-bordered.border-danger tr {
        border-color: rgba(231, 13, 13, 0.1);
    }
    
    .hotel-list .table.table-striped>tbody>tr:nth-of-type(odd)>* {
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.0125);
        color: var(--gray-500);
    }
    
    .hotel-list .table.table-striped-columns> :not(caption)>tr> :nth-child(2n) {
        --bs-table-accent-bg: rgba(var(--dark-rgb), 0.025);
        color: var(--gray-500);
    }
    
    .hotel-list .table tbody.table-group-divider {
        border-top: 1px solid var(--gray-100);
    }
    
    .hotel-list .table.table-hover>tbody>tr:hover>* {
        --bs-table-accent-bg: #F8F9FA;
        color: var(--gray-500);
    }
    
    .hotel-list .table .table-active {
        --bs-table-accent-bg: var(--light);
        color: var(--gray-500);
    }
    
    .hotel-list .table thead.table-primary {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--primary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--primary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--primary-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--primary-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--primary-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .table thead.table-secondary {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--secondary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--secondary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--secondary-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--secondary-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--secondary-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .table thead.table-warning {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--warning-rgb), 0.1);
        --bs-table-border-color: rgba(var(--warning-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--warning-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--warning-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--warning-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .table thead.table-success {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--success-rgb), 0.1);
        --bs-table-border-color: rgba(var(--success-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--success-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--success-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--success-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .table thead.table-danger {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--danger-rgb), 0.1);
        --bs-table-border-color: rgba(var(--danger-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--danger-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--danger-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--danger-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .table thead.table-info {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--info-rgb), 0.1);
        --bs-table-border-color: rgba(var(--info-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--info-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--info-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--info-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .table thead.table-light {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--light-rgb), 0.1);
        --bs-table-border-color: rgba(var(--light-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--light-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--light-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--light-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .table thead.table-dark {
        background-color: var(--white);
        color: var(--bs-table-color);
        --bs-table-color-state: #000;
        --bs-table-color: var(--black);
        --bs-table-bg: rgba(var(--dark-rgb), 0.1);
        --bs-table-border-color: rgba(var(--dark-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--dark-rgb), 0.5);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--dark-rgb), 0.5);
        --bs-table-hover-bg: rgba(var(--dark-rgb), 0.5);
        color: var(--bs-table-color);
        border-color: var(--bs-table-border-color);
    }
    
    .hotel-list .datanew tbody {
        border-top: 1px solid var(--light-900);
    }
    
    .hotel-list .table-primary {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--primary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--primary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--primary-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--primary-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--primary-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--primary-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list .table-secondary {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--secondary-rgb), 0.1);
        --bs-table-border-color: rgba(var(--secondary-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--secondary-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--secondary-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--secondary-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--secondary-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list .table-warning {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--warning-rgb), 0.1);
        --bs-table-border-color: rgba(var(--warning-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--warning-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--warning-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--warning-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--warning-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list .table-success {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--success-rgb), 0.1);
        --bs-table-border-color: rgba(var(--success-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--success-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--success-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--success-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--success-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list .table-info {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--info-rgb), 0.1);
        --bs-table-border-color: rgba(var(--info-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--info-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--info-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--info-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--info-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list .table-danger {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--danger-rgb), 0.1);
        --bs-table-border-color: rgba(var(--danger-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--danger-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--danger-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--danger-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--danger-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list .table-dark {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--dark-rgb), 0.1);
        --bs-table-border-color: rgba(var(--dark-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--dark-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--dark-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--dark-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--dark-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list .table-light {
        --bs-table-color: var(--black);
        --bs-table-color-state: $black;
        --bs-table-bg: rgba(var(--light-rgb), 0.1);
        --bs-table-border-color: rgba(var(--light-rgb), 0.1);
        --bs-table-striped-bg: rgba(var(--light-rgb), 0.3);
        --bs-table-striped-color: var(--black);
        --bs-table-active-bg: rgba(var(--light-rgb), 0.3);
        --bs-table-active-color: var(--black);
        --bs-table-hover-bg: rgba(var(--light-rgb), 0.3);
        --bs-table-hover-color: var(--black);
        color: var(--black);
        border-color: rgba(var(--light-rgb), 0.1);
        background-color: var(--white);
    }
    
    .hotel-list [data-theme-mode=dark] .table-dark {
        border-color: rgba(0, 0, 0, 0.025);
    }
    
    .hotel-list [dir=rtl] .table {
        margin-inline-end: 1px;
    }
    
    .hotel-list .invoice-table {
        border: 1px solid var(--light-900);
        border-radius: 5px;
        margin: 20px 0;
    }
    
    .hotel-list .invoice-table thead th {
        border-bottom: 1px solid var(--light-900);
    }
    
    .hotel-list .invoice-table thead th:first-child {
        width: 80%;
    }
    
    .hotel-list .invoice-table tbody tr:last-child td {
        border-bottom: 0;
    }
    
    .hotel-list .invoice-table .delete-invoive-list {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F6CECE;
        color: #E70D0D;
        border-radius: 5px;
        font-size: 16px;
    }
    
    .hotel-list .invoice-product-table {
        border-top: 1px solid var(--light-900);
    }
    
    .hotel-list .table {
        margin: 0;
    }
    
    .hotel-list .table tbody tr td {
        color: var(--gray-700);
        font-size: 14px;
    }
    
    .hotel-list .table tbody tr td .product-img img {
        border: 0;
    }
    
    .hotel-list .table tbody tr.active {
        border-bottom: 0;
    }
    
    .hotel-list .table tbody tr.active td {
        font-size: 18px;
        color: var(--gray-700);
        font-weight: 600;
        border-bottom: 0;
    }
    
    .hotel-list .table tbody tr .checkboxs .checkmarks {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
    
    .hotel-list .new tbody tr td {
        border-bottom: none;
    }
    
    .hotel-list .dataTables_filter+.dataTables_filter {
        display: none;
    }
    
    .hotel-list .productimgname {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .hotel-list .productimgname a {
        color: #FF4667;
        font-weight: 500;
    }
    
    .hotel-list .table .input-blocks input[type=text] {
        height: 40px;
    }
    
    .hotel-list .table {
        margin: 0;
    }
    
    .hotel-list .table tbody tr td {
        color: var(--gray-700);
    }
    
    .hotel-list .table tbody tr td .product-img img {
        border: 0;
    }
    
    .hotel-list .table tbody tr td a {
        color: var(--gray-900);
    }
    
    .hotel-list .table tbody tr td a.product-img {
        margin-right: 5px;
        flex-shrink: 0;
    }
    
    .hotel-list .table tbody tr td a .info-img {
        margin-right: 8px;
        width: 16px;
        height: 16px;
    }
    
    .hotel-list .table tbody tr td a:hover {
        color: #392C7D;
    }
    
    .hotel-list .table tbody tr.active {
        border-bottom: 0;
    }
    
    .hotel-list .table tbody tr.active td {
        font-size: 18px;
        color: var(--gray-700);
        font-weight: 600;
        border-bottom: 0;
    }
    
    .hotel-list table tbody .productimgname {
        min-width: 200px;
    }
    
    .hotel-list table tbody .productimgname a.stock-img.product-img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        margin-right: 8px;
    }
    
    .hotel-list table tbody .productimgname a.stock-img.product-img img {
        width: 50px;
        height: 50px;
        max-width: 100%;
        margin-right: 0;
    }
    
    .hotel-list table.table-bordered thead tr th p {
        margin-bottom: 0;
    }
    
    .hotel-list .custom-table {
        border-radius: 5px;
    }
    
    .hotel-list .custom-table table thead tr th {
        background: var(--gray-100);
        color: var(--gray-900);
        font-size: 14px;
        border: 0;
        padding: 12px 20px;
    }
    
    .hotel-list .custom-table table tbody tr td {
        border: 0;
        padding: 12px 20px;
    }
    
    .hotel-list .custom-table table tbody tr td .detail-link {
        font-weight: 600;
        color: var(--gray-900);
        text-decoration: underline;
    }
    
    .hotel-list .custom-table table tbody tr td .detail-link:hover {
        color: #392C7D;
    }
    
    .hotel-list .table tbody tr td a.delete-icon {
        font-size: 16px;
        color: #E70D0D;
    }
    
    .hotel-list .table tbody tr td a.delete-icon:hover {
        color: #b70a0a;
    }
    
    .hotel-list .custom-table {
        overflow: hidden;
    }
    
    .hotel-list .custom-table .table-responsive tr th {
        border: 0;
        border-bottom: 1px solid var(--light-900);
    }
    
    .hotel-list .custom-table .table-responsive tr.report-first-head th {
        border-bottom: 0;
    }
    
    .hotel-list .custom-table .table-responsive tr td {
        border: 0;
        border-bottom: 1px solid var(--light-900);
    }
    
    .hotel-list .custom-table .table-responsive tr td input.form-control {
        min-width: 200px;
    }
    
    .hotel-list .custom-table .table-responsive tr:last-child td {
        border-bottom: 0;
    }
    
    .hotel-list .table tr td .attendance-range {
        width: 8px;
        height: 15px;
        border-radius: 5px;
        display: block;
    }
    
    .hotel-list .table-responsive {
        border-radius: 0 0 10px 10px;
    }
    
    .hotel-list .table-responsive table tbody tr:last-child td {
        border-bottom: 0;
    }
    
    .cart-table .table-responsive {
        border-radius: 10px;
    }
    
    .modal .modal-content {
        border: 1px solid var(--light-900);
        box-shadow: 0px 4px 74px 0px rgba(208, 208, 208, 0.2509803922);
        border-radius: 5px;
        background: var(--white);
    }
    
    .modal .modal-title {
        font-size: 20px;
        font-weight: 600;
    }
    
    @media (max-width: 991.98px) {
        .modal .modal-title {
            font-size: 16px;
        }
    }
    
    .modal .logo-lg img {
        width: 150px;
    }
    
    .modal .modal-header {
        border-color: var(--gray-100);
        border-bottom: 1px solid var(--gray-100);
    }
    
    .modal .modal-header .close,
    .modal .modal-header .btn-close {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        color: var(--gray-900);
        opacity: 1;
        font-size: 14px;
        width: 24px;
        height: 24px;
        border: 1.5px solid var(--gray-900);
        font-weight: 700;
        background-color: transparent;
        border-radius: 50px;
    }
    
    .modal .modal-header .close:hover,
    .modal .modal-header .btn-close:hover {
        border-color: #E70D0D;
        color: #E70D0D;
    }
    
    .modal .modal-footer {
        border-top: 1px solid var(--gray-100);
    }
    
    .modal .modal-footer .btn {
        margin: 0;
        font-weight: 500;
        padding: 7px 16px;
        font-size: 12px;
    }
    
    .modal .modal-footer .btn-secondary {
        background: #FF4667;
    }
    
    .modal .modal-footer .btn-secondary:hover {
        -webkit-box-shadow: inset 0 0px 0px 100px var(--white);
        -moz-box-shadow: inset 0 0px 0px 100px var(--white);
        box-shadow: inset 0 0px 0px 100px var(--white);
        color: #FF4667 !important;
    }
    
    .modal .note-editor.note-frame.card {
        border: 1px solid rgba(0, 0, 0, 0.2) !important;
    }
    
    .modal-content .modal-header {
        justify-content: space-between;
    }
    
    .modal-content .modal-header .custom-btn-close {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        color: var(--gray-900);
        font-size: 24px;
        margin: 0;
        padding: 0;
        background-image: none;
    }
    
    .modal-content .modal-header .custom-btn-close:hover {
        background-color: #E70D0D;
    }
    
    .modal-btn .btn {
        padding: 5px 20px;
    }
    
    .modal.animated .modal-dialog {
        transform: translate(0, 0);
    }
    
    .modal.effect-scale .modal-dialog {
        transform: scale(0.7);
        opacity: 0;
        transition: all 0.3s;
    }
    
    .modal.effect-scale.show .modal-dialog {
        transform: scale(1);
        opacity: 1;
    }
    
    .modal.effect-slide-in-right .modal-dialog {
        transform: translateX(20%);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    }
    
    .modal.effect-slide-in-right.show .modal-dialog {
        transform: translateX(0);
        opacity: 1;
    }
    
    .modal.effect-slide-in-bottom .modal-dialog {
        transform: translateY(20%);
        opacity: 0;
        transition: all 0.3s;
    }
    
    .modal.effect-slide-in-bottom.show .modal-dialog {
        transform: translateY(0);
        opacity: 1;
    }
    
    .modal.effect-newspaper .modal-dialog {
        transform: scale(0) rotate(720deg);
        opacity: 0;
    }
    
    .modal.effect-newspaper.show~.modal-backdrop,
    .modal.effect-newspaper .modal-dialog {
        transition: all 0.5s;
    }
    
    .modal.effect-newspaper.show .modal-dialog {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    
    .modal.effect-fall {
        -webkit-perspective: 1300px;
        -moz-perspective: 1300px;
        perspective: 1300px;
    }
    
    .modal.effect-fall .modal-dialog {
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        transform: translateZ(600px) rotateX(20deg);
        opacity: 0;
    }
    
    .modal.effect-fall.show .modal-dialog {
        transition: all 0.3s ease-in;
        transform: translateZ(0px) rotateX(0deg);
        opacity: 1;
    }
    
    .modal.effect-flip-horizontal {
        perspective: 1300px;
    }
    
    .modal.effect-flip-horizontal .modal-dialog {
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        transform: rotateY(-70deg);
        transition: all 0.3s;
        opacity: 0;
    }
    
    .modal.effect-flip-horizontal.show .modal-dialog {
        transform: rotateY(0deg);
        opacity: 1;
    }
    
    .modal.effect-flip-vertical {
        perspective: 1300px;
    }
    
    .modal.effect-flip-vertical .modal-dialog {
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        transform: rotateX(-70deg);
        transition: all 0.3s;
        opacity: 0;
    }
    
    .modal.effect-flip-vertical.show .modal-dialog {
        transform: rotateX(0deg);
        opacity: 1;
    }
    
    .modal.effect-super-scaled .modal-dialog {
        transform: scale(2);
        opacity: 0;
        transition: all 0.3s;
    }
    
    .modal.effect-super-scaled.show .modal-dialog {
        transform: scale(1);
        opacity: 1;
    }
    
    .modal.effect-sign {
        perspective: 1300px;
    }
    
    .modal.effect-sign .modal-dialog {
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        transform: rotateX(-60deg);
        transform-origin: 50% 0;
        opacity: 0;
        transition: all 0.3s;
    }
    
    .modal.effect-sign.show .modal-dialog {
        transform: rotateX(0deg);
        opacity: 1;
    }
    
    .modal.effect-rotate-bottom {
        perspective: 1300px;
    }
    
    .modal.effect-rotate-bottom .modal-dialog {
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        transform: translateY(100%) rotateX(90deg);
        transform-origin: 0 100%;
        opacity: 0;
        transition: all 0.3s ease-out;
    }
    
    .modal.effect-rotate-bottom.show .modal-dialog {
        transform: translateY(0%) rotateX(0deg);
        opacity: 1;
    }
    
    .modal.effect-rotate-left {
        perspective: 1300px;
    }
    
    .modal.effect-rotate-left .modal-dialog {
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        transform: translateZ(100px) translateX(-30%) rotateY(90deg);
        transform-origin: 0 100%;
        opacity: 0;
        transition: all 0.3s;
    }
    
    .modal.effect-rotate-left.show .modal-dialog {
        transform: translateZ(0px) translateX(0%) rotateY(0deg);
        opacity: 1;
    }
    
    .offcanvas.offcanvas-end {
        width: auto !important;
    }
    
    .offcanvas.offcanvas-end.em-payrol-add {
        max-width: 1192px !important;
    }
    
    #delete-modal .modal-dialog {
        max-width: 400px;
    }
    
    #delete-modal .modal-dialog .delete-icon {
        width: 60px;
        height: 60px;
        border-radius: 5px;
        margin: 0 auto 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        background: #F6CECE;
        color: #E70D0D;
        font-size: 40px;
    }
    
    #delete-modal .modal-dialog h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    #delete-modal .modal-dialog p {
        margin-bottom: 24px;
    }
    
    .custom-modal .modal-header {
        justify-content: space-between;
        align-items: center;
    }
    
    .modal-header .badge {
        box-shadow: none;
    }
    
    .custom-modal-body {
        padding: 40px;
    }
    /****** Layout ******/
    
     ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        border-radius: 50px !important;
    }
    
     ::-webkit-scrollbar-track {
        background: var(--light-500);
    }
    
     ::-webkit-scrollbar-thumb {
        background: var(--gray-200);
    }
    
     ::-webkit-scrollbar-thumb:hover {
        background: var(--gray-200);
    }
    
    .swal2-header .swal2-title {
        font-size: 18px;
    }
    
    hr {
        border-color: var(--gray-100);
        opacity: 1;
    }
    
    .checkboxs {
        display: block;
        cursor: pointer;
        user-select: none;
        position: relative;
        padding-left: 25px;
    }
    
    .checkboxs input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    
    .checkboxs input~.checkmarks {
        border: 1px solid var(--light-900);
        border-radius: 2px;
    }
    
    .checkboxs input:checked~.checkmarks {
        background-color: #392C7D;
        border-color: #392C7D;
    }
    
    .checkboxs input:checked~.checkmarks:after {
        display: block;
    }
    
    .checkboxs .checkmarks {
        height: 18px;
        width: 18px;
        position: absolute;
        top: 2px;
        left: 0;
    }
    
    .checkboxs .checkmarks::after {
        content: "";
        position: absolute;
        display: none;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        color: var(--white);
        font-weight: 600;
        font-size: 10px;
    }
    
    .shadow-sm {
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
    }
    /*============================
  24.header
============================*/
    
    header {
        background: transparent;
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 1050;
        -webkit-transition: all 0.9s;
        -ms-transition: all 0.9s;
        transition: all 0.9s;
    }
    
    header.fixed {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        width: 100%;
        z-index: 1050;
        -webkit-transition: all 0.9s;
        -ms-transition: all 0.9s;
        transition: all 0.9s;
        background-color: var(--white);
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.15);
    }
    
    header.fixed .header-nav .main-menu-wrapper .main-nav>li>a {
        color: var(--gray-900);
    }
    
    header.fixed .header-nav .main-menu-wrapper .main-nav>li.active>a {
        color: #FF4667;
    }
    
    header.fixed .header-btn .theme-toggle {
        color: var(--gray-900);
    }
    
    header.fixed .header__hamburger .sidebar-menu {
        color: var(--gray-900);
    }
    
    header .header-logo .logo a {
        float: left;
    }
    
    header .header-logo .logo a img {
        float: left;
        max-height: 32px;
    }
    
    header .header-logo.logo-dark {
        display: none;
    }
    
    header .header-nav {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        header .header-nav {
            height: 55px;
        }
    }
    
    @media (max-width: 575.98px) {
        header .header-nav {
            display: block;
        }
    }
    
    @media (max-width: 575.98px) {
        header .header-nav .navbar-logo {
            width: auto;
        }
    }
    
    header .header-nav .main-menu-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        position: relative;
        padding: 15px 0;
        margin-bottom: 0;
        display: block;
    }
    
    @media (max-width: 991.98px) {
        header .header-nav .main-menu-wrapper {
            order: 3;
            width: 260px;
            overflow-x: hidden;
            overflow-y: auto;
            z-index: 1060;
            transform: translateX(-260px);
            -webkit-transform: translateX(-260px);
            -ms-transform: translateX(-260px);
            -webkit-transition: all 0.4s;
            -ms-transition: all 0.4s;
            transition: all 0.4s;
            background-color: var(--white);
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            padding: 0;
        }
    }
    
    @media (max-width: 991.98px) {
        header .header-nav .main-menu-wrapper .navbar-logo {
            display: none;
        }
    }
    
    @media (max-width: 991.98px) {
        header .header-nav .main-menu-wrapper .main-nav {
            -ms-flex-direction: column;
            flex-direction: column;
            margin-bottom: 0;
            list-style: none;
            padding: 0;
            width: 100%;
            padding: 0 20px;
        }
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li {
        padding: 8px 0;
    }
    
    @media (max-width: 991.98px) {
        header .header-nav .main-menu-wrapper .main-nav>li {
            width: 100%;
            padding: 0;
        }
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li>a {
        font-size: 15px;
        font-weight: 500;
        position: relative;
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li>a:hover {
        color: #FF4667;
    }
    
    @media (max-width: 991.98px) {
        header .header-nav .main-menu-wrapper .main-nav>li>a {
            color: var(--gray-500);
            padding: 16px 0;
        }
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li.active.has-submenu>a::after {
        left: calc(50% - 6px);
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li .submenu li {
        position: relative;
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li .submenu li.active {
        color: #FF4667;
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li .submenu li.active>a {
        color: #FF4667;
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li .submenu li a {
        display: block;
        padding: 8px 16px;
        clear: both;
        white-space: nowrap;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        width: 100%;
        position: relative;
        font-weight: 500;
    }
    
    @media (max-width: 991.98px) {
        header .header-nav .main-menu-wrapper .main-nav>li .submenu li a {
            padding: 8px 20px;
            font-size: 14px;
            color: var(--gray-500);
        }
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li .submenu li a:hover {
        color: #FF4667;
        padding-left: 20px;
    }
    
    header .header-nav .main-menu-wrapper .main-nav>li .login-link {
        display: none;
    }
    
    @media (max-width: 575.98px) {
        header .navbar-header {
            width: 100%;
            height: inherit;
            text-align: center;
        }
    }
    
    header .navbar-header .navbar-brand {
        display: inline-block;
        padding: 0;
        line-height: 0;
    }
    
    @media (max-width: 991.98px) {
        header .navbar-header .navbar-brand {
            margin-right: 0;
        }
    }
    
    header .navbar-header .logo-small {
        display: none;
    }
    
    @media (max-width: 575.98px) {
        header .navbar-header .logo-small {
            display: block;
            width: 100%;
            text-align: center;
        }
    }
    
    header .navbar-header #mobile_btn {
        display: none;
        margin-right: 30px;
    }
    
    @media (max-width: 991.98px) {
        header .navbar-header #mobile_btn {
            display: inline-block;
            line-height: 0;
        }
    }
    
    @media (max-width: 575.98px) {
        header .navbar-header #mobile_btn {
            right: 0;
            margin-right: 0;
            padding: 0 0px;
            position: absolute;
            z-index: 99;
        }
    }
    
    header .navbar-header #mobile_btn .bar-icon {
        display: inline-block;
        width: 31px;
        color: #FF4667;
        font-size: 20px;
    }
    
    header .navbar-header #mobile_btn .bar-icon span {
        background-color: #392C7D;
        display: block;
        float: left;
        height: 3px;
        margin-bottom: 7px;
        width: 31px;
        border-radius: 2px;
        margin-bottom: 5px;
    }
    
    header .navbar-header #mobile_btn .bar-icon span:nth-child(2) {
        width: 20px;
    }
    
    header .navbar-header #mobile_btn .bar-icon span:nth-child(3) {
        width: 16px;
        margin-bottom: 0;
    }
    
    @media (max-width: 991.98px) {
        header .navbar-header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: inline-flex;
            align-items: center;
        }
    }
    
    @media (max-width: 575.98px) {
        header .navbar-header {
            width: 100%;
            height: inherit;
        }
    }
    
    header .main-menu-wrapper {
        margin: 0;
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper.active {
            position: unset;
        }
    }
    
    header .main-menu-wrapper .menu-header {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 60px;
        padding: 0 20px;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        display: none;
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .menu-header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            height: 65px;
            align-items: center;
            background: var(--white);
            width: 100%;
        }
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .menu-header .menu-logo img {
            width: 140px;
        }
    }
    
    header .main-menu-wrapper .menu-header .menu-close {
        font-size: 18px;
        color: #392C7D;
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav>li .submenu>li .submenu {
            left: 0;
            top: 10%;
            margin-top: 10px;
            font-size: 14px;
            margin: 0;
            min-width: 200px;
            opacity: 0;
            padding-left: 0;
            position: absolute;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
            transform: scale(1, 0);
            -webkit-transform: scale(1, 0);
            -ms-transform: scale(1, 0);
            transform-origin: 0 0;
            visibility: hidden;
            z-index: 1000;
            border-top: 0;
            display: unset;
        }
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav>li .submenu>li .submenu {
            left: 0;
        }
    }
    
    header .main-menu-wrapper .main-nav>li .submenu>li ul li.has-submenu:hover .submenu {
        top: 0;
        position: relative;
    }
    
    header .main-menu-wrapper .main-nav>li .submenu>li.has-submenu>a::after {
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        font-size: 12px;
    }
    
    header .main-menu-wrapper .main-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        padding: 8px;
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav {
            position: relative;
        }
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav.active {
            position: unset;
        }
    }
    
    header .main-menu-wrapper .main-nav:last-child {
        margin-right: 0;
    }
    
    @media (max-width: 1399.98px) {
        header .main-menu-wrapper .main-nav>li {
            margin-right: 12px !important;
        }
        header .main-menu-wrapper .main-nav>li:last-child {
            margin-right: 0;
        }
    }
    
    @media (max-width: 1199.98px) {
        header .main-menu-wrapper .main-nav>li {
            margin-right: 10px !important;
        }
        header .main-menu-wrapper .main-nav>li:last-child {
            margin-right: 0;
            border: 0;
        }
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav>li {
            margin-right: 0 !important;
        }
        header .main-menu-wrapper .main-nav>li:last-child {
            margin-right: 0;
            border: 0;
        }
    }
    
    header .main-menu-wrapper .main-nav>li.active>a,
    header .main-menu-wrapper .main-nav>li:hover>a {
        color: #FF4667;
    }
    
    header .main-menu-wrapper .main-nav>li a i {
        font-size: 12px;
        margin-left: 4px;
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav>li a {
            display: block;
            line-height: 20px;
            padding: 12px 15px;
            font-size: 14px;
            font-weight: 500;
        }
        header .main-menu-wrapper .main-nav>li a i {
            font-size: 14px;
        }
    }
    
    @media (max-width: 991.98px) and (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav>li a i {
            float: right;
            margin-top: 5px;
            font-size: 14px;
        }
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav>li a:hover {
            color: #FF4667;
        }
    }
    
    header .main-menu-wrapper .main-nav>li:last-child {
        margin-right: 0;
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav>li {
            border-bottom: 1px solid var(--gray-100);
            padding: 0;
        }
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav>li {
            display: block;
            position: relative;
            margin-right: 30px;
        }
        header .main-menu-wrapper .main-nav>li:last-child {
            margin-right: 0;
        }
    }
    
    @media (max-width: 1199.98px) {
        header .main-menu-wrapper .main-nav>li {
            margin-right: 20px;
        }
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav>li>ul {
            background-color: var(--white);
            border-radius: 5px;
            box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
            display: block;
            font-size: 14px;
            left: 0;
            margin: 0;
            min-width: 200px;
            opacity: 0;
            padding: 0;
            position: absolute;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
            transform: scale(1, 0);
            -webkit-transform: scale(1, 0);
            -ms-transform: scale(1, 0);
            transform-origin: 0 0;
            top: 100%;
            visibility: hidden;
            z-index: 1000;
            padding: 5px 0;
            border-radius: 0 0 10px 10px;
        }
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav>li.megamenu {
            position: unset;
        }
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav>li>ul.mega-submenu {
            width: 100%;
            padding: 0;
            border: 0;
            display: block;
            opacity: 0;
            visibility: hidden;
            min-width: 250px;
            transform-origin: center top 0;
            -webkit-transform-origin: center top 0;
            -moz-transform-origin: center top 0;
            -ms-transform-origin: center top 0;
            -o-transform-origin: center top 0;
            transition: all 0.3s ease-in-out 0s;
            -webkit-transition: all 0.3s ease-in-out 0s;
            -moz-transition: all 0.3s ease-in-out 0s;
            -ms-transition: all 0.3s ease-in-out 0s;
            -o-transition: all 0.3s ease-in-out 0s;
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
            -webkit-box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
            -moz-box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
            -ms-box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
            -o-box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
            border-radius: 0px;
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
        }
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav>li.mega-innermenu {
            position: unset;
        }
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu .megamenu-wrapper {
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu .megamenu-wrapper::before {
        content: "";
        background: url("../img/bg/menu-bg.png") no-repeat;
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        background-position: bottom right;
        background-size: contain;
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu h6 {
        margin-bottom: 24px;
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu ul li {
        margin-bottom: 16px;
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu ul li:last-child {
        margin-bottom: 0;
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu ul li a {
        padding: 0 0 0 14px;
        font-weight: 400;
        color: var(--gray-600);
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu ul li a::before {
        font-family: "Fontawesome";
        content: "\f054";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        font-size: 12px;
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu ul li a:hover {
        padding-left: 15px;
    }
    
    header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu ul li.active a {
        color: #FF4667;
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav>li.mega-innermenu>ul.mega-submenu {
            min-width: 600px;
            width: auto;
        }
    }
    
    @media (min-width: 992px) {
        header .main-menu-wrapper .main-nav li.has-submenu:hover>.submenu {
            visibility: visible;
            opacity: 1;
            margin-top: 0;
            transform: scale(1);
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            border-radius: 2px;
        }
        header .main-menu-wrapper .main-nav li.has-submenu:hover>.submenu>.has-submenu .submenu {
            visibility: hidden;
            opacity: 0;
            margin-top: -1px;
            z-index: 1000;
            margin-right: 0;
            margin-top: 10px;
            top: 0;
            position: absolute;
            -webkit-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease;
            transform: scale(1, 0);
            -webkit-transform: scale(1, 0);
            -ms-transform: scale(1, 0);
            transform-origin: 0 0;
            background: var(--white);
            left: 100%;
            box-shadow: 0px 4px 54px 0px rgba(224, 224, 224, 0.2509803922);
        }
        header .main-menu-wrapper .main-nav li.has-submenu:hover>.submenu>.has-submenu:hover>.submenu {
            visibility: visible;
            opacity: 1;
            transform: scale(1);
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            margin-top: 0;
        }
        header .main-menu-wrapper .main-nav li.has-submenu.megamenu:hover>.submenu {
            -webkit-transform: translateY(-14px);
            -ms-transform: translateY(-14px);
            transform: translateY(-14px);
        }
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav .has-submenu ul {
            display: none;
        }
    }
    
    header .main-menu-wrapper .main-nav li.login-link {
        display: none;
    }
    
    @media (max-width: 991.98px) {
        header .main-menu-wrapper .main-nav li.login-link {
            display: block;
        }
    }
    
    @media (max-width: 575.98px) {
        header .header-btn {
            display: none !important;
        }
    }
    
    header .header-btn .icon-btn>a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--gray-100);
        background: var(--white);
        font-size: 16px;
    }
    
    header .header-btn .icon-btn>a:hover {
        background: var(--light);
    }
    
    @media (max-width: 991.98px) {
        header .header-btn .icon-btn:last-child {
            margin-right: 0 !important;
        }
    }
    
    header .header-btn .btn {
        border-radius: 55px;
        padding: 7px 16px;
        margin-right: 12px;
    }
    
    header .header-btn .btn.btn-white:hover {
        background: #392C7D;
        border-color: #392C7D;
        color: var(--white);
    }
    
    header .header-btn .btn.btn-white:hover a {
        color: var(--white);
    }
    
    header .header-btn .btn:last-child {
        margin-right: 0;
    }
    
    @media (max-width: 1199.98px) {
        header .header-btn .btn {
            display: none !important;
        }
    }
    
    header .header-btn .profile-dropdown {
        margin-right: 12px;
    }
    
    header .dropdown-toggle::after {
        display: none;
    }
    
    header.header-two .header-nav {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        position: relative;
    }
    
    @media (max-width: 575.98px) {
        header.header-two .header-nav {
            display: block;
        }
    }
    
    header.header-two .header-nav .main-navbar {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    
    @media (max-width: 575.98px) {
        header.header-two .header-nav .main-navbar {
            height: inherit;
        }
    }
    
    @media (max-width: 575.98px) {
        header.header-two .header-nav .navbar-logo {
            width: auto;
        }
    }
    
    header.header-two .header-btn .icon-btn {
        margin-right: 12px;
    }
    
    header.header-two .header-btn .icon-btn:last-child {
        margin-right: 24px;
    }
    
    header.header-two .header-btn .icon-btn>a {
        background: var(--white);
        border-color: var(--white);
    }
    
    header.header-one {
        position: fixed;
    }
    
    header.header-one.fixed {
        background: #392C7D;
    }
    
    header.header-one.fixed .main-menu-wrapper .main-nav>li>a {
        color: var(--white);
    }
    
    header.header-one .flag-dropdown a img {
        height: 14px;
    }
    
    @media (min-width: 992px) {
        header.header-one .main-menu-wrapper .main-nav {
            display: inline-flex;
            padding: 8px;
            border-radius: 50px;
            justify-content: center;
        }
        header.header-one .main-menu-wrapper .main-nav>li {
            margin-right: 0 !important;
            padding: 0 !important;
        }
        header.header-one .main-menu-wrapper .main-nav>li>a {
            padding: 4px 16px;
            border-radius: 50px;
            display: block;
        }
        header.header-one .main-menu-wrapper .main-nav>li>a:hover {
            color: #FF4667 !important;
        }
    }
    
    @media (min-width: 992px) and (max-width: 1399.98px) {
        header.header-one .main-menu-wrapper .main-nav>li>a {
            padding: 4px 13px;
        }
    }
    
    @media (min-width: 992px) {
        header.header-one .main-menu-wrapper .main-nav>li.active>a {
            color: #FF4667 !important;
        }
        header.header-one .main-menu-wrapper .main-nav>li i {
            font-size: 8px;
            margin-left: 2px;
            vertical-align: middle;
        }
    }
    
    header.header-one .main-menu-wrapper .main-nav>li>a {
        font-size: 15px;
    }
    
    @media (min-width: 992px) {
        header.header-one .main-menu-wrapper .main-nav>li>a {
            color: var(--white);
        }
    }
    
    header.header-one .header-btn .icon-btn {
        margin-right: 12px;
    }
    
    header.header-one .header-btn .icon-btn:last-child {
        margin-right: 24px;
    }
    
    header.header-one .header-btn .icon-btn>a {
        background: var(--white);
        border-color: var(--white);
    }
    
    header.header-one .navbar-header #mobile_btn .bar-icon span {
        background: var(--white);
    }
    
    header.header-one.fixed .navbar-header #mobile_btn .bar-icon span {
        background: #392C7D;
    }
    
    header.header-four {
        position: fixed;
    }
    
    .profile-dropdown a .avatar {
        width: 36px;
        height: 36px;
    }
    
    .profile-dropdown .dropdown-menu {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        padding: 0;
    }
    
    .profile-dropdown .dropdown-menu .profile-header {
        padding: 15px 20px;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .profile-dropdown .dropdown-menu .profile-header .avatar {
        margin-right: 10px;
    }
    
    .profile-dropdown .dropdown-menu .profile-header h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .profile-dropdown .dropdown-menu .profile-header p {
        font-size: 12px;
    }
    
    .profile-dropdown .dropdown-menu .profile-body {
        padding: 15px 20px;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .profile-dropdown .dropdown-menu .profile-body li {
        margin-bottom: 8px;
    }
    
    .profile-dropdown .dropdown-menu .profile-body li:last-child {
        margin-bottom: 0;
    }
    
    .profile-dropdown .dropdown-menu .profile-footer {
        padding: 15px 20px;
    }
    
    .profile-dropdown .dropdown-menu .profile-footer .dropdown-item {
        margin-bottom: 12px;
    }
    
    .profile-dropdown .dropdown-menu .dropdown-item {
        color: var(--gray-900);
        padding: 0;
    }
    
    .profile-dropdown .dropdown-menu .dropdown-item i {
        color: var(--gray-500);
    }
    
    .profile-dropdown .dropdown-menu .dropdown-item:hover {
        color: #FF4667;
        background: transparent;
    }
    
    .profile-dropdown .dropdown-menu .dropdown-item:hover i {
        color: #FF4667;
    }
    
    .profile-dropdown .dropdown-menu .message-count {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        color: var(--white);
        background: #392C7D;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
    
    .menu-opened .main-menu-wrapper {
        transform: translateX(0);
    }
    
    .menu-opened .main-menu-wrapper body {
        overflow: hidden;
    }
    
    .header-topbar {
        padding: 8px 0 0;
        position: relative;
        background: var(--dark);
    }
    
    .header-topbar p {
        color: var(--white);
    }
    
    .header-topbar p i {
        color: var(--gray-500);
    }
    
    .header-topbar .social-icon a {
        width: 15px;
        height: 15px;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: var(--dark);
        border-radius: 50%;
    }
    
    .header-topbar .social-icon a:hover {
        background: #392C7D;
        color: var(--white);
    }
    
    .header-topbar .dropdown>a {
        color: var(--white);
        font-weight: 500;
    }
    
    .header-topbar .dropdown.flag-dropdown img {
        height: 12px;
    }
    
    .header-topbar .dropdown .dropdown-menu {
        z-index: 9999;
    }
    
    .header-topbar .cart-dropdown a,
    .header-topbar .fav-dropdown a {
        color: var(--white);
    }
    
    @media (max-width: 767.98px) {
        .header-topbar {
            display: none;
        }
    }
    
    .flag-dropdown img {
        height: 12px;
        border-radius: 50%;
    }
    
    .count-icon {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        font-size: 10px;
        font-weight: 500;
        position: absolute;
        top: -4px;
        right: -4px;
    }
    
    .header__hamburger .sidebar-menu {
        color: var(--gray-900);
    }
    
    .offcanvas-info {
        background: var(--white) none repeat scroll 0 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 350px;
        height: 100%;
        transform: translateX(calc(100% + 80px));
        -webkit-transform: translateX(calc(100% + 80px));
        -ms-transform: translateX(calc(100% + 80px));
        -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
        -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
        transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
        z-index: 99999;
        overflow-y: scroll;
        overscroll-behavior-y: contain;
        scrollbar-width: none;
    }
    
    .offcanvas-info::-webkit-scrollbar {
        display: none;
    }
    
    .offcanvas-info.show {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
    }
    
    .offcanvas-wrap {
        position: relative;
        height: 100%;
        padding: 20px;
    }
    
    .offcanvas-wrap .offcanvas-detail .offcanvas-close {
        text-align: center;
        color: var(--gray-600);
        position: relative;
        z-index: 9;
        cursor: pointer;
    }
    
    .offcanvas-wrap .offcanvas-detail .offcanvas-close:hover {
        color: #E70D0D;
    }
    
    .offcanvas-wrap .offcanvas-detail .offcanvas__contact {
        margin-top: 20px;
    }
    
    .offcanvas-wrap .offcanvas-detail .offcanvas__contact .header-button .theme-btn {
        width: 100%;
        padding: 16px 40px;
    }
    
    .offcanvas-wrap .offcanvas-detail .offcanvas__contact .dropdown-menu {
        z-index: 999999;
    }
    
    .offcanvas-overlay {
        position: fixed;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 900;
        top: 0;
        opacity: 0;
        visibility: hidden;
        right: 0;
    }
    
    .offcanvas-overlay.overlay-open {
        opacity: 0.8;
        visibility: visible;
    }
    
    @media (max-width: 575px) {
        .offcanvas-info {
            width: 300px;
        }
        .offcanvas-wrap {
            padding: 20px;
        }
    }
    
    .main-header {
        position: absolute;
        z-index: 1050;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    
    @media (max-width: 991.98px) {
        .main-header {
            position: absolute;
        }
    }
    
    .wishlist-info {
        background: var(--light-200);
        border-radius: 10px;
        padding: 20px;
    }
    
    .wishlist-info .cart-dropdown a,
    .wishlist-info .fav-dropdown a {
        font-size: 20px;
        color: var(--gray-900);
    }
    
    .header-dropdown {
        background: var(--light-200);
        border-radius: 10px;
        padding: 20px;
    }
    
    .header-dropdown .dropdown .dropdown-toggle {
        border-radius: 4px;
        padding: 7px 12px;
        color: var(--gray-600);
    }
    
    .header-dropdown .dropdown .dropdown-toggle::after {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
    
    .mean-container .mean-nav ul li a i {
        display: none;
    }
    
    .mean-container .mean-nav ul li a.mean-expand i {
        display: block;
    }
    
    .megamenu-wrapper {
        padding: 24px 24px 0;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
    }
    
    @media (max-width: 991.98px) {
        .megamenu-wrapper {
            padding: 0;
            box-shadow: none;
        }
    }
    
    @media (max-width: 991.98px) {
        .megamenu-wrapper h6 {
            display: none;
        }
    }
    
    .megamenu-wrapper .single-demo {
        padding: 15px;
        transition: 0.4s;
        border-radius: 10px;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        text-align: center;
        margin-bottom: 20px;
    }
    
    .megamenu-wrapper .single-demo a {
        padding: 0 !important;
    }
    
    @media (max-width: 991.98px) {
        .megamenu-wrapper .single-demo a {
            padding: 8px 20px !important;
        }
    }
    
    .megamenu-wrapper .single-demo .demo-img {
        margin-bottom: 10px;
    }
    
    @media (max-width: 991.98px) {
        .megamenu-wrapper .single-demo .demo-img {
            display: none;
        }
    }
    
    .megamenu-wrapper .single-demo .demo-info a {
        font-size: 14px;
        font-weight: 500;
    }
    
    .megamenu-wrapper .single-demo:hover {
        transform: translateY(-2px);
    }
    
    @media (max-width: 991.98px) {
        .megamenu-wrapper .single-demo {
            box-shadow: none;
            padding: 0;
            border: 0;
            text-align: left;
            margin: 0;
        }
    }
    
    .megamenu-wrapper .btn:hover {
        padding-left: 15px !important;
    }
    
    .single-demo.active .demo-info a {
        color: #FF4667 !important;
    }
    
    .menu-img {
        border-radius: 10px;
        max-width: 205px;
        margin-left: auto;
        overflow: hidden;
        -webkit-transition: all 0.9s;
        -ms-transition: all 0.9s;
        transition: all 0.9s;
    }
    
    .menu-img img {
        border-radius: 10px;
        border: 4px solid var(--white);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transition: all 0.9s;
        -ms-transition: all 0.9s;
        transition: all 0.9s;
    }
    
    .menu-img:hover img {
        transform: scale(1.12);
        -webkit-transform: scale(1.12);
        -ms-transform: scale(1.12);
        -webkit-transition: all 0.9s;
        -ms-transition: all 0.9s;
        transition: all 0.9s;
    }
    
    @media (max-width: 991.98px) {
        .menu-img {
            display: none;
        }
    }
    
    .mean-container .mean-nav .main-nav li.mega-innermenu li a {
        padding: 4px 4px 4px 16px !important;
    }
    
    .mean-container .mean-nav .main-nav li.mega-innermenu .megamenu-wrapper ul {
        display: block !important;
    }
    
    .mean-container .mean-nav .main-nav li.mega-innermenu .megamenu-wrapper ul li:last-child {
        margin-bottom: 0;
    }
    
    .mean-container .mean-nav .main-nav li.mega-innermenu .megamenu-wrapper .mean-expand {
        display: none;
    }
    
    .mean-container .mean-nav .main-nav li.mega-menu li a {
        padding: 4px 4px 4px 16px !important;
    }
    
    header.header-five .header-nav .main-menu-wrapper .main-nav>li.active>a::after {
        color: #FF4667;
    }
    
    header.header-six.fixed .header-nav .main-menu-wrapper .main-nav>li.active>a::after {
        color: var(--white);
    }
    
    header .header-btn .icon-btn .theme-toggle {
        display: none;
    }
    
    header .header-btn .icon-btn .theme-toggle.activate {
        display: flex;
    }
    
    .white-logo-responsive {
        display: none;
    }
    
    header.header-five .header-logo.logo-dark {
        display: none;
    }
    
    header.header-five .header-logo.logo-white {
        display: block;
    }
    
    header.header-four .header-logo.logo-dark {
        display: none;
    }
    
    header.header-four .header-logo.logo-white {
        display: block;
    }
    
    header.header-three .header-logo.logo-dark {
        display: none;
    }
    
    header.header-three .header-logo.logo-white {
        display: block;
    }
    
    .header-topbar .logo-white {
        display: none;
    }
    
    @media (max-width: 1199.98px) {
        .header-six .header__hamburger {
            margin-left: auto;
        }
        .header-six .header__hamburger .sidebar-menu {
            color: var(--white) !important;
        }
        .header-six .header-btn {
            display: none !important;
        }
    }
    
    .sidebar-overlay {
        background-color: rgba(0, 0, 0, 0.6);
        display: none;
        height: 100%;
        width: 100%;
        z-index: 1040;
        position: fixed;
        top: 0;
        left: 0;
    }
    
    @media (max-width: 991.98px) {
        .sidebar-overlay.opened {
            display: block;
        }
    }
    
    .menu-opened .main-menu-wrapper {
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
    }
    
    html.menu-opened body {
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        #mobile-menu {
            display: none;
        }
    }
    
    .menu-dropdown {
        padding: 20px;
    }
    
    @media (min-width: 992px) {
        .menu-dropdown {
            display: none;
        }
    }
    
    .menu-dropdown .dropdown>a {
        border: 1px solid var(--gray-100);
        border-radius: 5px;
        padding: 6px 12px;
        display: flex;
    }
    
    .menu-dropdown .dropdown .dropdown-toggle:after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        right: 12px;
    }
    
    .menu-dropdown .cart-item {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .menu-dropdown .cart-item h6 {
        font-weight: 500;
    }
    
    .menu-dropdown .icon-btn>a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--gray-100);
        background: var(--white);
        font-size: 16px;
    }
    
    .menu-dropdown .icon-btn>a:hover {
        background: var(--light);
    }
    
    .menu-login {
        padding: 0 20px 20px;
    }
    
    @media (min-width: 992px) {
        .menu-login {
            display: none;
        }
    }
    /*============================
  32.breadcrumb
============================*/
    
    .breadcrumb-bar {
        padding: 40px 0 40px;
        position: relative;
        z-index: 1;
        background: linear-gradient(90deg, #FEE0DE 0%, #E4F5FD 51.39%, #DDEDFF 100%);
    }
    
    .breadcrumb-bar .breadcrumb-title {
        font-size: 36px;
        color: var(--gray-900);
    }
    
    @media (max-width: 991.98px) {
        .breadcrumb-bar .breadcrumb-title {
            font-size: 26px;
        }
    }
    
    @media (max-width: 767.98px) {
        .breadcrumb-bar .breadcrumb-title {
            font-size: 22px;
        }
    }
    
    .breadcrumb .breadcrumb-item {
        color: var(--gray-900);
        position: relative;
        font-size: 14px;
    }
    
    .breadcrumb .breadcrumb-item a {
        color: var(--gray-900);
    }
    
    .breadcrumb .breadcrumb-item a:hover {
        color: #FF4667;
    }
    
    .breadcrumb .breadcrumb-item+.breadcrumb-item {
        margin-left: 26px;
    }
    
    .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
        content: "";
        width: 15px;
        height: 5px;
        border-radius: 5px;
        background: #FF4667;
        position: absolute;
        left: -16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .breadcrumb .breadcrumb-item.active {
        color: var(--gray-700);
    }
    
    .breadcrumb-bg-01 {
        background: url("../img/bg/breadcrumb.jpg") no-repeat;
        background-size: cover;
    }
    
    .breadcrumb-bg-02 {
        background: url("../img/bg/breadcrumb-02.jpg") no-repeat;
        background-size: cover;
        background-position: center;
    }
    
    .breadcrumb-bg-03 {
        background: url("../img/bg/breadcrumb-03.jpg") no-repeat;
        background-size: cover;
    }
    
    .breadcrumb-bg-04 {
        background-color: var(--gray-900);
    }
    
    .breadcrumb-bg-05 {
        background: url("../img/bg/breadcrumb-05.jpg") no-repeat;
        background-size: cover;
        background-position: center;
    }
    
    .breadcrumb-bg-06 {
        background: url("../img/bg/breadcrumb-04.jpg") no-repeat;
        background-size: cover;
        background-position: center;
    }
    
    .footer {
        position: relative;
        border-top: 1px solid var(--gray-100);
    }
    
    .footer .footer-top {
        padding: 50px 0;
    }
    
    @media (max-width: 991.98px) {
        .footer .footer-top {
            padding: 40px 0;
        }
    }
    
    .footer .footer-about .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer .footer-about p {
        margin-bottom: 30px;
    }
    
    .footer .footer-contact-info .footer-address {
        margin-bottom: 16px;
    }
    
    .footer .footer-contact-info .footer-address:last-child {
        margin-bottom: 0;
    }
    
    .footer .subscribe-input {
        position: relative;
        margin-bottom: 24px;
    }
    
    .footer .subscribe-input input {
        height: 42px;
        border-radius: 45px;
        padding-right: 100px;
        border: 1px solid var(--gray-100);
        font-size: 14px;
        padding-left: 16px;
    }
    
    .footer .subscribe-input input:placeholder {
        color: var(--gray-300);
    }
    
    .footer .subscribe-input button {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
    
    .footer .subscribe-input button i {
        font-size: 10px;
    }
    
    .footer-bg .footer-bg-1 {
        position: absolute;
        left: 0;
        top: 0;
        height: 300px;
        z-index: -1;
    }
    
    .footer-bg .footer-bg-2 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    
    .footer-widget .footer-title {
        margin-bottom: 15px;
    }
    
    .footer-widget ul li {
        margin-bottom: 14px;
    }
    
    .footer-widget ul li:last-child {
        margin-bottom: 0;
    }
    
    .footer-widget ul li a {
        color: var(--gray-500);
        font-size: 15px;
    }
    
    .footer-widget ul li a:hover {
        color: #FF4667;
    }
    
    @media (max-width: 991.98px) {
        .footer-widget ul li a {
            font-size: 14px;
        }
    }
    
    .footer-bottom {
        background: #342777;
        padding: 1.5rem 0;
    }
    
    .footer-bottom .footer-link li {
        position: relative;
    }
    
    .footer-bottom .footer-link li a {
        color: var(--white);
    }
    
    .footer-bottom .footer-link li a:hover {
        color: #FF4667;
    }
    
    .footer-bottom .footer-link li+li {
        padding-left: 15px;
        margin-left: 15px;
    }
    
    .footer-bottom .footer-link li+li::before {
        content: "";
        width: 1px;
        height: 12px;
        background: var(--white);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .footer.footer-one {
        background: var(--dark);
    }
    
    .footer.footer-one .footer-top {
        padding: 60px 0;
    }
    
    @media (max-width: 991.98px) {
        .footer.footer-one .footer-top {
            padding: 40px 0;
        }
    }
    
    .footer.footer-one .footer-about p {
        color: var(--light);
    }
    
    .footer.footer-one .footer-widget .footer-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--white);
    }
    
    .footer.footer-one .footer-widget ul li {
        margin-bottom: 10px;
    }
    
    .footer.footer-one .footer-widget ul li:last-child {
        margin-bottom: 0;
    }
    
    .footer.footer-one .footer-widget ul li a {
        color: var(--light);
    }
    
    .footer.footer-one .footer-widget ul li a:hover {
        color: #FF4667;
    }
    
    .footer.footer-one .subscribe-form {
        position: relative;
        margin-bottom: 16px;
    }
    
    .footer.footer-one .subscribe-form span {
        position: absolute;
        top: 50%;
        left: 32px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        color: var(--gray-500);
        display: flex;
    }
    
    .footer.footer-one .subscribe-form .form-control {
        height: 54px;
        border-radius: 70px;
        padding-left: 56px;
    }
    
    .footer.footer-one .subscribe-form .form-control::placeholder {
        color: var(--gray-500);
    }
    
    @media (max-width: 767.98px) {
        .footer.footer-one .subscribe-form .form-control {
            height: 50px;
        }
    }
    
    .footer.footer-one .footer-newsletter p {
        color: var(--light);
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .footer.footer-one .footer-bottom {
        background: var(--dark);
        border-top: 1px solid var(--gray-800);
    }
    
    .footer.footer-one .footer-bottom p {
        color: var(--light);
        font-size: 14px;
    }
    
    .footer.footer-one .footer-bottom .footer-link li a {
        font-size: 14px;
        color: var(--light);
    }
    
    .footer.footer-one .footer-bottom .footer-link li a:hover {
        color: #FF4667;
    }
    
    .footer.footer-one .footer-bottom .footer-link li+li {
        padding-left: 15px;
        margin-left: 15px;
    }
    
    .footer.footer-one .footer-bottom .footer-link li+li::before {
        content: "";
        width: 1px;
        height: 10px;
        background: var(--white);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .footer.footer-one .footer-bottom .social-icon {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 8px;
    }
    
    .footer.footer-one .footer-bottom .social-icon a {
        width: 20px;
        height: 20px;
        background: var(--light);
        border-radius: 50%;
        color: var(--dark);
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer.footer-one .footer-bottom .social-icon a:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    @media (max-width: 991.98px) {
        .footer.footer-one .footer-bottom .social-icon {
            justify-content: center;
        }
    }
    /*============================
  23.content
============================*/
    
    .content {
        padding: 60px 0;
    }
    
    @media (max-width: 991.98px) {
        .content {
            padding: 40px 0;
        }
    }
    
    .content.content-two {
        padding-bottom: 36px;
    }
    
    @media (max-width: 767.98px) {
        .content.content-two {
            padding-bottom: 16px;
        }
    }
    
    .page-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    
    .page-header .breadcrumb {
        margin-bottom: 0;
    }
    
    @media (max-width: 575.98px) {
        .page-header {
            flex-direction: column;
            align-items: self-start;
        }
    }
    
    .page-header .page-title {
        margin-bottom: 10px;
    }
    
    .page-header h3 {
        font-weight: 700;
        color: var(--gray-900);
        font-size: 18px;
    }
    
    @media (max-width: 991.98px) {
        .page-header h3 {
            font-size: 14px;
        }
    }
    
    .page-header h4 {
        font-weight: 600;
        color: var(--gray-900);
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    @media (max-width: 991.98px) {
        .page-header h4 {
            font-size: 18px;
        }
    }
    
    .page-header h6 {
        font-size: 14px;
        color: var(--gray-700);
        font-weight: 400;
    }
    
    @media (max-width: 991.98px) {
        .page-header h6 {
            font-size: 12px;
        }
    }
    
    @media (max-width: 575.98px) {
        .page-header h6 {
            font-size: 12px;
            margin-bottom: 20px;
        }
    }
    
    .back-to-top-icon {
        position: fixed;
        right: 15px;
        bottom: 30px;
        z-index: 9999;
        width: 36px;
        height: 36px;
        text-align: center;
        border-radius: 0 10px 0 10px;
        background: #392C7D;
        color: var(--white);
        cursor: pointer;
        border: 0;
        text-decoration: none;
        transition: opacity 0.2s ease-out;
        opacity: 0;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    
    .back-to-top-icon:hover {
        color: var(--white);
        background: #392C7D;
    }
    
    .back-to-top-icon.show {
        opacity: 1;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    /******* Vendors ******/
    
    .select2-container {
        min-width: 100% !important;
        z-index: 99;
    }
    
    .select2-container .select2-selection--single {
        height: 40px;
    }
    
    .select2-container--default .select2-selection--single {
        border: 1px solid var(--Stroke, rgba(145, 158, 171, 0.3));
        border-radius: 5px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: var(--gray-900) !important;
        line-height: 40px;
        border-radius: 6px;
        padding-left: 16px;
        font-size: 14px;
        font-weight: 400;
        padding-right: 30px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered span img {
        width: 20px;
        height: 20px;
        border-radius: 50px;
        margin-right: 5px;
    }
    
    .select2-container--default .select2-selection--single .select {
        width: 219px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 40px;
        right: 7px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        position: absolute;
        top: 50%;
        left: 50%;
        border-color: var(--gray-900);
        border-style: solid;
        border-width: 0 1px 1px 0;
        padding: 3px;
        height: 0;
        margin-left: -6px;
        margin-top: -3px;
        width: 0;
        transform: rotate(45deg) translateY(-50%);
        -webkit-transform: rotate(45deg) translateY(-50%);
        -ms-transform: rotate(45deg) translateY(-50%);
    }
    
    .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: var(--black);
        border-width: 1px 0 0 1px;
        margin-top: 3px;
        padding: 3px;
    }
    
    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background: #392C7D;
        color: var(--white);
    }
    
    .select2-container--focus .select2-selection--single {
        border-color: var(--light-900);
    }
    
    span.select2-container.select2-container--default.select2-container--open {
        z-index: 9999;
    }
    
    .select2-container--default .select2-selection--single {
        background: var(--white);
    }
    
    .select2-container--classic .select2-selection--single,
    .select2-container--default .select2-selection--single,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .select2-container--default .select2-selection--single .select2-selection__arrow,
    .select2-container--default .select2-selection--multiple,
    .select2-container--classic .select2-selection--single .select2-selection__arrow,
    .select2-container--classic .select2-selection--single .select2-selection__rendered {
        border-color: var(--gray-100);
        color: var(--gray-900);
    }
    
    .select2-dropdown {
        border-color: var(--gray-100);
        background: var(--white);
    }
    
    .select2-container--default .select2-selection--multiple {
        line-height: 27px;
        height: auto;
        min-height: 40px;
    }
    
    .select2-container--classic .select2-selection--multiple .select2-selection__choice,
    .select2-container--default .select2-selection--multiple .select2-selection__choice,
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        background-color: #5625E8;
        border-color: #5625E8;
        color: var(--white);
    }
    
    .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
        border-color: #392C7D;
    }
    
    .select2-container--default.select2-container--focus .select2-selection--multiple {
        border-color: #392C7D;
    }
    
    .select2-container--open .ti-filter {
        z-index: 9999 !important;
    }
    
    .select2-results__option span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .select2-results__option span img {
        width: 20px;
        height: 20px;
        border-radius: 50px;
        margin-right: 5px;
    }
    
    table.dataTable {
        margin: 0 !important;
    }
    
    table.dataTable>thead .sorting:after,
    table.dataTable>thead .sorting_asc:after,
    table.dataTable>thead .sorting_desc:after,
    table.dataTable>thead .sorting_asc_disabled:after,
    table.dataTable>thead .sorting_desc_disabled:after {
        right: 0px !important;
        content: "\f175" !important;
        font-family: "Font Awesome 5 Free";
        bottom: 8px !important;
        color: var(--gray-300) !important;
        font-size: 10px !important;
        opacity: 1 !important;
        position: absolute;
        font-weight: 600;
        line-height: 1px !important;
    }
    
    table.dataTable>thead .sorting:before,
    table.dataTable>thead .sorting_asc:before,
    table.dataTable>thead .sorting_desc:before,
    table.dataTable>thead .sorting_asc_disabled:before,
    table.dataTable>thead .sorting_desc_disabled:before {
        right: 8px !important;
        content: "\f176" !important;
        font-family: "Font Awesome 5 Free";
        top: 22px !important;
        color: var(--gray-300) !important;
        font-size: 10px !important;
        opacity: 1 !important;
        position: absolute;
        font-weight: 600;
        line-height: 1px !important;
    }
    
    .dataTables_paginate .paging_numbers {
        float: right;
    }
    
    .dataTables_info {
        font-size: 14px;
        color: var(--gray-500);
        font-weight: 500;
    }
    
    @media (max-width: 767.98px) {
        .dataTables_info {
            font-size: 12px;
            text-align: center;
            padding-bottom: 0 !important;
        }
    }
    
    .custom-select {
        min-width: 80px;
        background: url(../img/icons/dropdown.svg) no-repeat 95% 50%;
    }
    
    .dataTables_paginate .pagination {
        justify-content: end;
        -webkit-justify-content: end;
        -ms-flex-pack: end;
    }
    
    .dataTables_paginate .pagination li {
        margin: 0 2px;
    }
    
    .dataTables_paginate .pagination li a {
        background: transparent;
        border-color: var(--gray-200);
        border-radius: 50% !important;
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-500);
        font-size: 12px;
    }
    
    .dataTables_paginate .pagination li a:hover {
        background: #392C7D;
        color: var(--white);
    }
    
    .dataTables_paginate .pagination li.active a.page-link {
        background: #392C7D;
        border-color: #392C7D;
        border-radius: 5px;
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dataTables_paginate .pagination li.previous.disabled,
    .dataTables_paginate .pagination li.prev {
        width: auto;
        margin: 0 10px 0 0;
    }
    
    .dataTables_paginate .pagination li.previous.disabled a,
    .dataTables_paginate .pagination li.prev a {
        background-color: transparent;
        border: 0;
        width: auto;
        padding: 0;
        font-size: 15px;
    }
    
    .dataTables_paginate .pagination li.previous.disabled a i,
    .dataTables_paginate .pagination li.prev a i {
        margin-right: 8px;
    }
    
    .dataTables_paginate .pagination li.previous.disabled a:hover,
    .dataTables_paginate .pagination li.prev a:hover {
        color: #03C95A;
    }
    
    .dataTables_paginate .pagination li.next.disabled,
    .dataTables_paginate .pagination li.next {
        width: auto;
        margin: 0 0 0 10px;
    }
    
    .dataTables_paginate .pagination li.next.disabled a,
    .dataTables_paginate .pagination li.next a {
        background-color: transparent;
        border: 0;
        width: auto;
        padding: 0;
        font-size: 15px;
    }
    
    .dataTables_paginate .pagination li.next.disabled a i,
    .dataTables_paginate .pagination li.next a i {
        margin-left: 8px;
    }
    
    .dataTables_paginate .pagination li.next.disabled a:hover,
    .dataTables_paginate .pagination li.next a:hover {
        color: #392C7D;
    }
    
    @media (max-width: 767.98px) {
        .dataTables_paginate .pagination {
            justify-content: center !important;
            -webkit-justify-content: center !important;
            -ms-flex-pack: center !important;
        }
    }
    
    .dataTables_length {
        padding: 15px 0;
    }
    
    @media (max-width: 767.98px) {
        .dataTables_length {
            text-align: center;
            padding-bottom: 0;
        }
    }
    
    @media (max-width: 767.98px) {
        .dataTables_length label {
            justify-content: center !important;
            -webkit-justify-content: center !important;
            -ms-flex-pack: center !important;
        }
    }
    
    .dataTables_paginate {
        margin-top: 15px !important;
    }
    
    .dataTables_length label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--gray-700);
        font-size: 14px;
    }
    
    .dataTables_length label .form-select {
        width: 61px;
        border: 1px solid var(--gray-200);
        border-radius: 6px;
        color: var(--gray-700);
        margin: 0 8px;
        background-position: right 5px center;
        padding-right: 15px;
        line-height: normal;
    }
    
    @media (max-width: 767.98px) {
        .datatable-length {
            text-align: center;
        }
    }
    
    div.dataTables_wrapper div.dataTables_info {
        padding: 15px 0;
    }
    
    table.dataTable thead>tr>th.no-sort.sorting_asc:before {
        display: none;
    }
    
    table.dataTable thead>tr>th.no-sort.sorting_asc::after {
        display: none;
    }
    
    table.dataTable thead>tr>th.no-sort.sorting:before {
        display: none;
    }
    
    table.dataTable thead>tr>th.no-sort.sorting::after {
        display: none;
    }
    
    .custom-table .table-responsive {
        border: 1px solid var(--gray-200);
        border-radius: 6px;
    }
    
    table.table.dataTable>tbody>tr {
        border-color: var(--gray-200);
    }
    
    table.table.dataTable>tbody>tr td {
        color: var(--gray-500);
        border-bottom: 1px solid var(--gray-200);
        padding: 10px 20px;
    }
    
    table.table.dataTable>thead>tr {
        border-color: var(--gray-200);
    }
    
    table.table.dataTable>thead>tr th {
        color: var(--gray-900);
        font-size: 14px;
        font-weight: 600;
        padding: 10px 20px;
    }
    
    .dataTables_filter {
        margin-bottom: 15px;
    }
    
    #select-all~.checkmarks {
        top: -7px;
    }
    
    #select-all2~.checkmarks {
        top: -7px;
    }
    
    #select-all3~.checkmarks {
        top: -7px;
    }
    
    .custom-datatable-filter {
        background: var(--white);
        border-radius: 5px;
    }
    
    .custom-datatable-filter [class*=col-md] {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    
    .custom-datatable-filter .dataTables_filter {
        margin: 15px 0;
    }
    
    @media (max-width: 767.98px) {
        .custom-datatable-filter .dataTables_filter {
            text-align: center !important;
        }
    }
    
    .custom-datatable-filter .dataTables_paginate {
        margin: 15px 0 !important;
    }
    
    @media (max-width: 767.98px) {
        .custom-datatable-filter .dataTables_paginate {
            text-align: center !important;
        }
    }
    
    .no-datatable_length .dataTables_length {
        display: none;
    }
    
    .no-datatable_length .dataTables_filter {
        display: none;
    }
    
    .no-datatable_length .dataTables_info {
        display: none;
    }
    
    .no-datatable_length .dataTables_paginate {
        display: none;
    }
    
    .datatable-info .dataTables_info {
        display: none !important;
    }
    
    .datatable-info .dataTables_info:first-child {
        display: block !important;
    }
    
    .datatable-length .dataTables_length {
        display: none !important;
    }
    
    .datatable-length .dataTables_length:first-child {
        display: block !important;
    }
    
    .datatable-paginate .dataTables_paginate {
        display: none !important;
    }
    
    .datatable-paginate .dataTables_paginate:first-child {
        display: block !important;
    }
    
    .daterangepicker .ranges li.active {
        background-color: #392C7D;
    }
    
    .daterangepicker td.active {
        background-color: #392C7D;
    }
    
    .daterangepicker td.active:hover {
        background-color: #392C7D;
    }
    
    .daterange-wraper .date-range {
        padding-left: 30px;
        font-size: 14px;
        color: var(--gray-700);
        border: 0;
        min-height: auto;
        height: 36px;
        border: 0;
        box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.0509803922);
    }
    
    .daterange-wraper .date-range:focus {
        border-left: 0;
    }
    
    .daterange-wraper .cal-icon-date {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    /*============================
  60.meanmenu
============================*/
    
    .mean-container a.meanmenu-reveal {
        display: none !important;
    }
    
    .mean-container .mean-bar {
        background: var(--white);
    }
    
    .mean-container .mean-nav {
        background: var(--white);
        margin-top: 0;
    }
    
    .mean-container .mean-nav ul li.active>a {
        color: #392C7D;
    }
    
    .mean-container .mean-nav ul li .submenu li:last-child {
        margin-bottom: 12px;
    }
    
    .mean-container .mean-nav ul li .submenu li a {
        font-size: 14px;
        font-weight: 400;
        padding: 4px 4px 4px 16px;
        width: 100%;
    }
    
    .mean-container .mean-nav>ul {
        display: block !important;
    }
    
    .mean-container .mean-nav>ul>li {
        border-bottom: 1px solid var(--gray-100);
    }
    
    .mean-container .mean-nav>ul li a {
        color: var(--gray-600);
        font-weight: 500;
        padding: 16px 0;
        border: 0;
    }
    /******* Pages ******/
    /*=============================
    Banner
===============================*/
    
    .banner-section {
        position: relative;
        background-color: #392C7D;
        padding: 155px 0 80px;
        z-index: 0;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .banner-section {
            padding: 105px 0 50px;
        }
    }
    
    .banner-section .banner-bg1 {
        position: absolute;
        z-index: -1;
        right: 0;
        top: 0;
    }
    
    .banner-section .banner-bg2 {
        position: absolute;
        z-index: -1;
        left: 0;
        top: 20%;
    }
    
    .banner-section .banner-bg3 {
        position: absolute;
        z-index: -1;
        left: 20px;
        top: 33%;
    }
    
    .banner-section .banner-bg4 {
        position: absolute;
        right: 0;
        top: 30%;
    }
    
    .banner-section .banner-content {
        position: relative;
        z-index: 0;
    }
    
    .banner-section .banner-content .banner-bg5 {
        position: absolute;
        right: -10%;
        top: 0;
        z-index: -1;
    }
    
    .banner-section .banner-content .hero-title {
        display: inline-block;
        background-color: #342777;
        padding: 4px 16px;
        color: var(--white);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 16px;
        border-radius: 30px;
    }
    
    @media (max-width: 991.98px) {
        .banner-section .banner-content h1 {
            font-size: 34px;
        }
    }
    
    @media (max-width: 767.98px) {
        .banner-section .banner-content h1 {
            font-size: 28px;
        }
    }
    
    @media (max-width: 575.98px) {
        .banner-section .banner-content h1 {
            font-size: 26px;
        }
    }
    
    .banner-section .banner-content h1 span {
        color: #FF4667;
        text-decoration: underline;
        margin-bottom: 16px;
    }
    
    .banner-section .banner-content p {
        color: var(--light);
        margin-bottom: 24px;
    }
    
    .banner-section .banner-content .banner-search {
        background: var(--white);
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding: 10px;
        margin-bottom: 40px;
    }
    
    @media (max-width: 575.98px) {
        .banner-section .banner-content .banner-search {
            display: block;
        }
    }
    
    .banner-section .banner-content .banner-search .dropdown {
        flex-shrink: 0;
        margin-right: 20px;
    }
    
    @media (max-width: 575.98px) {
        .banner-section .banner-content .banner-search .dropdown {
            margin-right: 0;
        }
    }
    
    .banner-section .banner-content .banner-search .hero-dropdown {
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--light);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 20px;
    }
    
    .banner-section .banner-content .banner-search .hero-dropdown i {
        margin-left: 29px;
    }
    
    .banner-section .banner-content .banner-search .hero-dropdown:hover {
        color: var(--gray-900);
    }
    
    .banner-section .banner-content .banner-search input {
        height: 48px;
        width: 100%;
    }
    
    @media (max-width: 575.98px) {
        .banner-section .banner-content .banner-search input {
            width: 100%;
        }
    }
    
    .banner-section .banner-content .banner-search button {
        height: 47px;
        width: 47px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 16px;
    }
    
    @media (max-width: 575.98px) {
        .banner-section .banner-content .banner-search button {
            width: 100%;
        }
    }
    
    .banner-section .banner-content .counter-item {
        display: flex;
        align-items: center;
        transition: all 0.3s ease-in-out;
    }
    
    @media (max-width: 991.98px) {
        .banner-section .banner-content .counter-item {
            width: 47%;
        }
    }
    
    .banner-section .banner-content .counter-item .counter-icon {
        margin-right: 8px;
    }
    
    .banner-section .banner-content .counter-item .count-content p {
        font-weight: 500;
        margin-bottom: 0;
    }
    
    @media (max-width: 575.98px) {
        .banner-section .banner-content .counter-item {
            justify-content: center;
        }
    }
    
    .banner-section .banner-image {
        position: relative;
        padding: 0 40px;
    }
    
    .banner-section .banner-image::after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        background: url("../img/bg/ban-bg.png") no-repeat;
        width: 100%;
        height: 318px;
    }
    
    @media (max-width: 991.98px) {
        .banner-section .banner-image {
            display: none;
        }
    }
    
    .banner-section-two {
        position: relative;
        background: var(--light-100);
        max-height: 578px;
        overflow: hidden;
    }
    
    .banner-section-two .star-01 {
        position: absolute;
        z-index: 0;
        top: 0;
        left: -65px;
    }
    
    .banner-section-two .star-02 {
        position: absolute;
        z-index: 0;
        top: 0;
        left: 500px;
    }
    
    .banner-section-two .star-03 {
        position: absolute;
        z-index: 0;
        left: -60px;
        top: 250px;
    }
    
    .banner-section-two .star-04 {
        position: absolute;
        z-index: 0;
        left: 255px;
        top: 125px;
    }
    
    .banner-section-two .star-05 {
        position: absolute;
        z-index: 0;
        bottom: 0;
        right: -70px;
    }
    
    .banner-section-two .star-06 {
        position: absolute;
        z-index: 0;
        top: 40px;
        left: -45px;
        animation: upDown 3s ease-in-out infinite;
    }
    
    .banner-section-two .star-07 {
        position: absolute;
        z-index: 0;
        top: 220px;
        left: 520px;
        animation: verticalRotate 5s linear infinite;
    }
    
    .banner-section-two .star-08 {
        position: absolute;
        z-index: 0;
        top: 115px;
        right: 20px;
        animation: moveDiagonal 4s ease-in-out infinite;
    }
    
    .banner-section-two .star-09 {
        position: absolute;
        z-index: 0;
        bottom: 0;
        left: 320px;
        animation: downUp 4s ease-in-out infinite;
    }
    
    .banner-section-two .star-10 {
        position: absolute;
        z-index: 1;
        bottom: 8px;
        right: 70px;
        animation: downUp 3s ease-in-out infinite;
    }
    
    .banner-section-two .star-11 {
        position: absolute;
        z-index: 0;
        top: 95px;
        left: 430px;
        animation: myAnim 4s ease 0s infinite normal forwards;
    }
    
    .banner-section-two .banner-badge {
        padding: 4px 12px;
        background: #FF4667;
        border-radius: 10px;
        color: var(--white);
    }
    
    .banner-section-two .banner-content {
        padding: 118px 0;
    }
    
    @media (max-width: 991.98px) {
        .banner-section-two .banner-content {
            padding: 80px 0;
            display: block !important;
        }
    }
    
    @media (max-width: 767.98px) {
        .banner-section-two .banner-content {
            padding: 60px 0;
        }
    }
    
    @media (max-width: 575.98px) {
        .banner-section-two .banner-content {
            padding: 20px 0;
        }
    }
    
    .banner-section-two .banner-content .banner-info {
        margin-bottom: 40px;
    }
    
    @media (max-width: 767.98px) {
        .banner-section-two .banner-content .banner-info {
            margin-bottom: 30px;
        }
    }
    
    .banner-section-two .banner-content .banner-info p {
        font-weight: 600;
    }
    
    .banner-section-two h1 .banner-title {
        z-index: 1;
        color: var(--white);
    }
    
    .banner-section-two h1 .banner-title .title-bg {
        z-index: -1;
        top: 4px;
        left: -3px;
    }
    
    .banner-section-two .banner-form {
        position: relative;
        border: 1px solid var(--gray-100);
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--white);
        border-radius: 80px;
        box-shadow: 0px 4px 14px 0px rgba(219, 219, 219, 0.2509803922);
        padding: 15px;
    }
    
    @media (max-width: 991.98px) {
        .banner-section-two .banner-form {
            height: 70px;
        }
    }
    
    @media (max-width: 575.98px) {
        .banner-section-two .banner-form {
            display: block;
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.25);
        }
    }
    
    .banner-section-two .banner-form .form-control {
        position: relative;
        border: none;
        width: 50%;
        background: transparent;
        width: 100%;
        padding-left: 0;
    }
    
    .banner-section-two .banner-form .form-control:focus-visible {
        outline: none;
    }
    
    @media (max-width: 575.98px) {
        .banner-section-two .banner-form .form-control {
            padding-left: 0;
            height: 56px;
            border: 1px solid var(--light) !important;
            border-radius: 80px;
            margin-bottom: 10px;
            padding: 10px 20px;
        }
    }
    
    .banner-section-two .banner-form .btn {
        font-size: 16px;
    }
    
    .banner-section-two .banner-form button {
        right: 16px;
    }
    
    @media (max-width: 575.98px) {
        .banner-section-two .banner-form button {
            width: 100%;
            height: 42px;
        }
    }
    
    .banner-section-two .dropdown {
        padding: 0 16px 0 10px;
        margin-right: 16px;
    }
    
    @media (max-width: 575.98px) {
        .banner-section-two .dropdown {
            border: 1px solid var(--light);
            border-radius: 80px;
            margin-bottom: 10px;
            padding: 15px 20px;
        }
    }
    
    .banner-section-two .dropdown .dropdown-toggle {
        border: none;
        padding: 0;
        width: 100%;
    }
    
    .banner-section-two .dropdown .dropdown-toggle i {
        color: var(--gray-600);
    }
    
    @media (max-width: 575.98px) {
        .banner-section-two .dropdown .dropdown-toggle {
            padding-right: 15px;
        }
    }
    
    @media (max-width: 575.98px) {
        .banner-section-two .dropdown .dropdown-toggle::after {
            position: absolute;
            right: 20px;
        }
    }
    
    .banner-section-two .dropdown .dropdown-menu {
        width: 100%;
    }
    
    .banner-section-two .btn.show,
    .banner-section-two .btn.show:hover,
    .banner-section-two .btn:first-child:active,
    .banner-section-two :not(.btn-check)+.btn:active {
        background: var(--white);
        border-color: var(--white);
        color: var(--gray-900);
    }
    
    .banner-section-two .banner-img-section {
        position: relative;
        text-align: right;
        padding-right: 50px;
        margin-left: 40px;
    }
    
    @media (max-width: 991.98px) {
        .banner-section-two .banner-img-section {
            display: none;
        }
    }
    
    .banner-section-two .banner-img-section .about-img {
        border-radius: 10px;
    }
    
    .banner-section-two .banner-img-section .banner-bg-01 {
        position: absolute;
        bottom: 0;
        z-index: 0;
        left: 70px;
    }
    
    @media (max-width: 1399.98px) {
        .banner-section-two .banner-img-section .banner-bg-01 {
            left: 10px;
        }
    }
    
    .banner-section-two .banner-img-section .banner-bg-02 {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
    }
    
    .banner-section-two .banner-img-section .enrolled-list-cover {
        display: inline-flex;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border: 1px solid var(--light-900);
        border-radius: 30px 30px 0px 30px;
        background: var(--white);
        position: absolute;
        left: 20px;
        top: 85px;
        z-index: 1;
        padding: 10px;
    }
    
    @media (max-width: 1199.98px) {
        .banner-section-two .banner-img-section .enrolled-list-cover {
            top: 20px;
            left: -80px;
        }
    }
    
    .banner-section-two .banner-img-section .enrolled-list-cover .enrolled-list {
        padding: 15px;
        border: 1px solid var(--light);
        border-radius: 30px 30px 0px 30px;
    }
    
    .banner-section-two .banner-img-section .enrolled-list-cover .enrolled-list p {
        color: var(--gray-900);
        font-size: 14px;
        font-weight: 500;
    }
    
    .banner-section-two .banner-img-section .enrolled-list-cover .enrolled-list .avatar-list-stacked {
        margin-bottom: 10px;
    }
    
    .banner-section-two .banner-img-section .course-count {
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        padding: 10px;
        background: #392C7D;
        border-radius: 30px 30px 30px 0;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 170px;
    }
    
    .banner-section-two .banner-img-section .course-count .counter-icon {
        width: 32px;
        height: 32px;
        margin-right: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #FF4667;
        color: var(--white);
    }
    
    .banner-section-two .banner-img-section .course-count:hover h4 {
        animation: verticalRotate 0.5s linear 1;
    }
    
    .banner-section-three {
        position: relative;
        padding: 120px 0 100px;
        overflow: hidden;
    }
    
    .banner-section-three .banner-bg-01 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }
    
    .banner-section-three .banner-bg-02 {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
    }
    
    .banner-section-three .search-box .search-btn {
        width: 150px;
        -ms-flex: 0 0 150px;
        flex: 0 0 130px;
        border-radius: 5px;
        position: absolute;
        top: 8px;
        right: 8px;
        padding: 0px;
    }
    
    @media (max-width: 991.98px) {
        .banner-section-three {
            padding: 115px 0 120px;
        }
    }
    
    .banner-section-four {
        position: relative;
        background: linear-gradient(349.22deg, #FBFCFF 25.7%, #F3EDFF 129.76%);
        padding: 165px 0 80px;
        z-index: 1;
    }
    
    @media (max-width: 991.98px) {
        .banner-section-four {
            padding: 105px 0 50px;
        }
    }
    
    .banner-section-four .drop-detail {
        width: 180px;
        display: flex;
        margin: 0;
        border-radius: 50px !important;
        border: 0;
        height: 44px;
    }
    
    @media (max-width: 575.98px) {
        .banner-section-four .drop-detail {
            width: 100%;
        }
    }
    
    .banner-section-four .drop-detail .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-weight: 600;
    }
    
    .banner-section-four .drop-detail .select2-container--default .select2-selection--single .select2-selection__arrow b {
        margin-top: 0;
    }
    
    .banner-section-four .banner-content .form-inner {
        padding: 10px;
        background-color: var(--white);
        border-radius: 35px;
        width: 100%;
        border: 0;
        max-width: 740px;
    }
    
    .banner-section-four .banner-image {
        margin-left: 24px;
    }
    
    @media (max-width: 1399.98px) {
        .banner-section-four .banner-image {
            margin-left: 0;
        }
    }
    
    @media (max-width: 991.98px) {
        .banner-section-four .banner-image {
            display: none;
        }
    }
    
    .banner-section-four .banner-image .img-01,
    .banner-section-four .banner-image .img-02,
    .banner-section-four .banner-image .img-03 {
        border-radius: 10px;
        width: 100%;
    }
    
    .banner-section-four .logo-cover {
        position: absolute;
        width: 118px;
        height: 118px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        border-radius: 50%;
    }
    
    .banner-section-four .logo-cover img {
        width: 70px;
    }
    
    .banner-five {
        position: relative;
        background-color: var(--light-900);
        background-image: url(../img/bg/bg-1.png);
        background-repeat: no-repeat;
        background-position: right bottom;
        padding-top: 100px;
    }
    
    @media (max-width: 991.98px) {
        .banner-five {
            background-size: 40%;
        }
    }
    
    @media (max-width: 575.98px) {
        .banner-five {
            background-image: none;
        }
    }
    /*=============================
    Testimonial
===============================*/
    
    .testimonials-section {
        padding: 80px 0;
        background: url(../img/bg/testimonials-bg.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    
    @media (max-width: 991.98px) {
        .testimonials-section {
            padding: 50px 0;
        }
    }
    
    .testimonials-two {
        padding: 60px 0 36px;
    }
    
    .testimonials-two .testimonial-item {
        padding: 20px;
        border: 1px solid #E7E7E7;
        border-radius: 10px;
        margin-bottom: 24px;
    }
    
    .testimonials-two .testimonial-item h6 {
        margin-bottom: 8px;
    }
    
    .testimonials-two .testimonial-item p {
        font-size: 14px;
    }
    
    .testimonials-two .testimonial-item a {
        font-size: 14px;
        font-weight: 500;
    }
    
    .testimonials-item {
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        margin: 40px 10px 10px;
        padding: 0 20px 20px;
    }
    
    .testimonials-item .avatar {
        margin-top: -35px;
    }
    
    .testimonials-item .quote {
        position: absolute;
        right: 10px;
        bottom: 0;
    }
    
    .testimonials-item .slick-prev {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        left: -12px;
    }
    
    @media (max-width: 575.98px) {
        .testimonials-item .slick-prev {
            width: 35px;
            height: 35px;
            left: -7px;
        }
    }
    
    .testimonials-item .slick-prev::before {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        color: var(--dark);
        font-size: 16px;
        font-weight: 900;
    }
    
    .testimonials-item .slick-next {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        right: -12px;
    }
    
    @media (max-width: 575.98px) {
        .testimonials-item .slick-next {
            width: 35px;
            height: 35px;
            right: -7px;
        }
    }
    
    .testimonials-item .slick-next::before {
        font-family: "Font Awesome 5 Free";
        content: "\f053";
        color: var(--dark);
        font-size: 16px;
        font-weight: 900;
    }
    
    .testimonials-sec-two {
        padding: 60px 0 36px;
    }
    
    .testimonials-sec-two .testimonial-item {
        border: 1px solid var(--gray-100);
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .course-content {
        padding: 60px 0;
    }
    
    .course-content .form-select {
        width: auto;
        box-shadow: none;
        outline: none;
        margin-right: 10px;
        font-size: 14px;
        height: 40px;
        color: var(--gray-900);
    }
    
    @media (max-width: 575.98px) {
        .course-content .form-select {
            width: 100%;
            margin-right: 0;
            margin-bottom: 10px;
        }
    }
    
    .course-content .clear-filter h4 {
        font-size: 20px;
    }
    
    .course-content .clear-text {
        color: #FF4667;
        font-size: 14px;
        font-weight: 500;
        text-decoration: underline;
    }
    
    .course-content .clear-text:hover {
        color: #392C7D;
    }
    
    @media (max-width: 991.98px) {
        .course-content .show-result {
            margin: 20px 0;
        }
    }
    
    .course-content .view-icons {
        display: inline-flex;
    }
    
    .course-content .view-icons a {
        align-items: center;
        background-color: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        color: var(--black);
        display: flex;
        font-size: 20px;
        justify-content: center;
        text-align: center;
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .course-content .view-icons a.active {
        background-color: #FF4667;
        border-color: #FF4667;
        color: var(--white);
    }
    
    .course-content .select2-container {
        min-width: unset !important;
    }
    
    .course-content .show-filter .select2-selection__rendered {
        height: 40px;
    }
    
    .course-content .show-filter .search-group {
        position: relative;
    }
    
    .course-content .show-filter .search-group i {
        position: absolute;
        left: 15px;
        top: 12px;
        font-size: 14px;
    }
    
    .course-content .show-filter .search-group .form-control {
        border-color: var(--gray-100);
        color: var(--gray-400);
        outline: none;
        box-shadow: none;
        padding: 6px 10px 6px 35px;
        min-height: 40px;
        border-radius: 5px;
    }
    
    .course-content .filter-clear .accordion-item {
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        margin-bottom: 20px;
    }
    
    .course-content .filter-clear .accordion-item:last-child {
        margin-bottom: 0;
    }
    
    .course-content .filter-clear .accordion-item .see-more-btn {
        margin: 10px 0 0;
        color: #FF4667;
        text-decoration: underline;
        display: inline-block;
        font-size: 14px;
    }
    
    .course-content .filter-clear .accordion-item .accordion-button {
        border: none;
        background-color: transparent;
        padding: 20px;
        font-size: 18px;
        font-weight: 700;
        color: var(--gray-900);
        box-shadow: none;
        display: flex;
        justify-content: space-between;
    }
    
    @media (max-width: 1399.98px) {
        .course-content .filter-clear .accordion-item .accordion-button {
            padding: 15px;
        }
    }
    
    .course-content .filter-clear .accordion-item .accordion-button::after {
        font-size: 13px;
        font-weight: 500;
        display: none;
    }
    
    .course-content .filter-clear .accordion-item .accordion-button.collapsed i {
        transform: rotate(0deg);
    }
    
    .course-content .filter-clear .accordion-item .accordion-button i {
        font-size: 12px;
        transform: rotate(-180deg);
    }
    
    .course-content .filter-clear .accordion-item .accordion-body {
        border: none;
        padding: 0 20px 20px;
    }
    
    .course-content .filter-clear .custom_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .course-content .filter-clear .custom_check {
        color: var(--gray-500) !important;
        display: inline-block;
        position: relative;
        font-size: 14px !important;
        margin-bottom: 15px;
        padding-left: 28px;
        cursor: pointer;
        font-weight: 400 !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        line-height: 18px;
        font-family: "Noto Sans", sans-serif;
    }
    
    .course-content .filter-clear .custom_check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 16px;
        width: 16px;
        border: 1px solid var(--gray-100);
        background-color: var(--white);
        border-radius: 2px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    .course-content .filter-clear .custom_check .checkmark::after {
        content: "\e92b";
        font-family: "feather" !important;
        font-weight: 400;
        position: absolute;
        display: none;
        left: 2px;
        top: -1px;
        color: var(--white);
        font-size: 11px;
    }
    
    .course-content .filter-clear .custom_check input:checked~.checkmark:after {
        display: block;
    }
    
    .course-content .filter-clear .custom_check input:checked~.checkmark {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .course-content .course-list-cover {
        margin-bottom: 16px;
    }
    
    .course-content .courses-list-item {
        padding: 20px;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        margin-bottom: 24px;
    }
    
    .course-content .courses-list-item .fa-star {
        font-size: 14px;
    }
    
    .course-content .courses-list-item .course-list-img {
        margin-bottom: 20px;
        background-color: transparent;
        border: none;
    }
    
    .course-content .courses-list-item .course-list-img img {
        transition: 0.3s;
    }
    
    .course-content .courses-list-item .course-list-img img:hover {
        transform: scale(1.1);
    }
    
    .course-content .courses-list-item p a {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .course-content .courses-list-item p a:hover {
        color: #392C7D;
    }
    
    .course-content .courses-list-item p {
        font-size: 14px;
    }
    
    .course-content .courses-list-item span {
        font-size: 16px;
    }
    
    .course-content .courses-list-item h4 {
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
    }
    
    .course-content .courses-list-item .tag-btn {
        color: var(--gray-900);
        font-weight: 500;
        padding: 4px 8px;
        background-color: var(--light-900);
        border-radius: 50px;
        font-size: 13px;
    }
    
    .course-content .courses-list-item .tag-btn:hover {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .course-content .courses-list-item .view-course-btn {
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 50px;
        font-weight: 500;
        display: flex;
        align-items: center;
    }
    
    .course-content .courses-list-item .view-course-btn:hover {
        background-color: #FF4667 !important;
        border-color: #FF4667 !important;
    }
    
    .course-content .courses-list-item .course-list-contents .dot {
        width: 6px;
        height: 6px;
        border-radius: 5px;
        background: #FF4667;
        margin: 0 8px;
    }
    
    .like {
        width: 26px;
        height: 26px;
        display: flex;
        border-radius: 50px;
        background-color: var(--white);
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--gray-700);
    }
    
    .like i {
        transition: color 0.3s ease-in-out;
    }
    
    .like:hover i {
        color: #FF4667;
        content: "\f004";
    }
    
    .pagination {
        display: flex;
        gap: 8px;
        justify-content: flex-end;
    }
    
    .pagination .page-link {
        width: 32px;
        height: 32px;
        background-color: var(--light);
        border-radius: 50px !important;
        font-size: 14px;
        font-weight: 400;
        border: none;
        color: var(--gray-700);
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: normal;
    }
    
    .pagination .page-link:hover {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .pagination .page-item.active .page-link {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .filter-range .irs--flat .irs-grid {
        display: none;
    }
    
    .filter-range .irs--flat .irs-min,
    .filter-range .irs--flat .irs-max {
        background: black;
        border-radius: 5px;
        font-size: 16px;
        color: red;
        padding: 5px 5px;
        display: none;
    }
    
    .filter-range .irs--flat .irs-grid-text {
        visibility: hidden !important;
    }
    
    .filter-range .irs--flat .irs-line {
        background: var(--light);
        height: 3.38px;
        top: 48px;
    }
    
    .filter-range .irs--flat .irs-bar {
        background: #FF4667;
        height: 3.38px;
        top: 48px;
    }
    
    .filter-range .irs--flat .irs-from,
    .filter-range .irs--flat .irs-to {
        background: transparent;
        top: 20px;
        color: var(--gray-500);
        font-size: 14px;
    }
    
    .filter-range .irs--flat .irs-from::before,
    .filter-range .irs--flat .irs-to::before {
        display: none;
    }
    
    .filter-range .irs--flat .irs-single {
        background: #FF4667;
        width: 50px;
        text-align: center;
        margin-left: 10px;
        color: var(--gray-500);
        font-size: 14px;
        background-color: transparent;
    }
    
    .filter-range .irs--flat .irs-single:before {
        border-top-color: #FF4667;
        display: none;
    }
    
    .filter-range .irs--flat .irs-handle.state_hover>i:first-child {
        background: #FF4667;
    }
    
    .filter-range .irs--flat .irs-handle:hover i {
        background: #FF4667;
    }
    
    .filter-range .irs--flat .irs-handle>i {
        background: #FF4667;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        top: 20px;
        left: 0;
    }
    
    .course-list-wrap .card-image {
        max-width: 175px;
        overflow: hidden;
    }
    
    @media (max-width: 767.98px) {
        .course-list-wrap .card-image {
            max-width: unset;
        }
    }
    
    .course-list-wrap .card-image img {
        height: 165px;
        object-fit: cover;
        transition: 0.3s;
    }
    
    @media (max-width: 767.98px) {
        .course-list-wrap .card-image img {
            height: auto;
        }
    }
    
    .course-list-wrap .card-image img:hover {
        transform: scale(1.1);
    }
    
    .course-list-wrap .courses-list .card-body {
        padding: 20px;
    }
    
    .course-category {
        padding: 47px 0 36px;
    }
    
    .course-category h2 {
        font-size: 32px;
    }
    
    @media (max-width: 991.98px) {
        .course-category h2 {
            font-size: 26px;
        }
    }
    
    .course-category .nav-pills {
        gap: 16px;
        margin-top: 35px;
        margin-bottom: 40px;
    }
    
    @media (max-width: 991.98px) {
        .course-category .nav-pills {
            gap: 10px;
            margin-top: 25px;
        }
    }
    
    @media (max-width: 575.98px) {
        .course-category .nav-pills {
            margin-top: 20px;
        }
    }
    
    .course-category .nav-link {
        font-size: 16px;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 10px;
        background-color: var(--gray-100);
        color: var(--gray-900);
    }
    
    .course-category .nav-link.active {
        background-color: #FF4667;
    }
    
    @media (max-width: 991.98px) {
        .course-category .nav-link {
            padding: 8px 13px;
            font-size: 14px;
        }
    }
    
    @media (max-width: 575.98px) {
        .course-category .nav-link {
            padding: 8px 10px;
            font-size: 13px;
        }
    }
    
    .course-category .category-image {
        width: 60px;
        margin-right: 10px;
        border-radius: 10px;
    }
    
    .course-category .cat-count {
        border-radius: 50px;
        width: 24px;
        height: 24px;
        font-size: 13px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    
    .course-category .course-category-item {
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        border-radius: 10px;
        margin-bottom: 24px;
        padding: 20px;
        transition: 0.4s;
    }
    
    .course-category .course-category-item:hover {
        transform: translateY(-5px);
    }
    
    .categories-top {
        background-color: rgb(244, 246, 249);
        padding: 50px;
        overflow: hidden;
        position: relative;
        z-index: 0;
        margin-top: 60px;
        border-radius: 10px;
    }
    
    @media (max-width: 991.98px) {
        .categories-top {
            padding: 30px;
            margin-top: 50px;
        }
    }
    
    @media (max-width: 575.98px) {
        .categories-top {
            padding: 30px 15px;
        }
    }
    
    .categories-top .course-bg {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translate(0, -50%);
        z-index: -2;
    }
    
    .categories-top .course-bg2 {
        position: absolute;
        right: 8%;
        top: 50%;
        transform: translate(0, -50%);
        z-index: -1;
    }
    
    .categories-top .course-bg3 {
        position: absolute;
        right: 30px;
        bottom: 0;
        z-index: -2;
    }
    
    .categories-top h2 {
        font-size: 32px;
    }
    
    @media (max-width: 767.98px) {
        .categories-top h2 {
            font-size: 26px;
        }
    }
    
    @media (max-width: 575.98px) {
        .categories-top h2 {
            font-size: 24px;
        }
    }
    
    .categories-top .form-control {
        height: 70px;
        padding: 10px 120px 10px 20px;
        border-radius: 50px;
        text-overflow: ellipsis;
    }
    
    @media (max-width: 575.98px) {
        .categories-top .form-control {
            height: 60px;
            padding: 16px 95px 16px 25px;
        }
    }
    
    .categories-top .btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translate(0, -50%);
        padding: 10px 20px;
    }
    
    @media (max-width: 575.98px) {
        .categories-top .btn {
            padding: 6px 14px;
            right: 14px;
        }
    }
    
    .categories-top .btn:hover {
        background: #FF4667;
        border-color: #FF4667;
    }
    
    .categories-top .caetgory-form p {
        font-size: 16px;
    }
    
    .course-category-two {
        padding: 40px 0 60px;
        text-align: center;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .course-category-two {
            padding-bottom: 50px;
        }
    }
    
    .course-category-two .btn {
        margin-top: 16px;
        padding: 7px 16px;
        background-color: #392C7D;
        border-color: #392C7D;
    }
    
    .course-category-two .btn:hover {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .course-category-two p {
        font-size: 14px;
    }
    
    .course-category-two .category-item-2 {
        padding: 1.5rem;
        text-align: center;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        margin-bottom: 24px;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
    }
    
    .course-category-two .category-item-2:hover .cat-icon img {
        transform: rotateY(360deg);
        transition: 0.6s;
    }
    
    .course-category-two .category-item-2 h6 {
        color: var(--gray-900);
    }
    
    .course-category-two .category-item-2 h6:hover {
        color: #FF4667;
    }
    
    .course-category-two .cat-icon {
        border-radius: 20px;
        background-color: var(--light-900);
        width: 68px;
        height: 68px;
        box-shadow: 2px 2px 0 0 var(--light-900);
        margin-bottom: 15px;
    }
    
    .course-category-three {
        padding: 40px 0 60px;
        text-align: center;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .course-category-three {
            padding: 40px 0 50px;
        }
    }
    
    .course-category-three .btn {
        margin-top: 16px;
        padding: 7px 16px;
        background-color: #392C7D;
        border-color: #392C7D;
    }
    
    .course-category-three .btn:hover {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .course-category-three .category-item-3 {
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        border-radius: 10px;
        margin-bottom: 24px;
        overflow: hidden;
    }
    
    .course-category-three .category-item-3 img {
        transition: 0.5s;
    }
    
    .course-category-three .category-item-3:hover .course-category-3-item-image img {
        transform: scale(1.1);
    }
    
    .course-category-three .category-item-3 .course-category-3-item-image {
        overflow: hidden;
        border-radius: 10px 10px 0 0;
    }
    
    .course-category-three .category-item-3 .course-category-3-card-body {
        padding: 20px;
    }
    
    .course-category-three .category-item-3 .course-category-3-card-body h6 {
        font-size: 18px;
        font-weight: 700;
    }
    
    .course-category-three .category-item-3 .course-category-3-card-body h6:hover {
        color: #FF4667;
    }
    
    .course-category-three .category-item-3 .course-category-3-card-body p {
        color: var(--gray-500);
        font-size: 16px;
        text-decoration: underline;
    }
    
    .inner-banner {
        position: relative;
        padding: 40px 0;
        z-index: 0;
    }
    
    @media (max-width: 767.98px) {
        .inner-banner {
            text-align: center;
        }
    }
    
    .inner-banner::before {
        position: absolute;
        content: "";
        background-image: url(../img/course/course-details-bg.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    
    .inner-banner h1 {
        font-size: 36px;
    }
    
    @media (max-width: 1199.98px) {
        .inner-banner h1 {
            font-size: 32px;
        }
    }
    
    @media (max-width: 575.98px) {
        .inner-banner h1 {
            font-size: 28px;
        }
    }
    
    .course-details {
        position: relative;
        padding-bottom: 40px;
    }
    
    @media (max-width: 575.98px) {
        .course-details {
            padding-bottom: 20px;
        }
    }
    
    .course-page-content {
        padding-top: 60px;
    }
    
    @media (max-width: 575.98px) {
        .course-page-content {
            padding-top: 45px;
        }
    }
    
    .course-page-content .course-details-1-card {
        padding: 20px;
        margin-bottom: 24px;
        border: 1px solid #E7E7E7;
        border-radius: 10px;
    }
    
    .course-page-content .course-details-1-card h6 {
        margin-bottom: 13px;
    }
    
    .course-page-content .course-details-1-card p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.7;
    }
    
    .course-page-content .course-details-1-card .custom-list {
        list-style: disc;
        margin-left: 24px;
        margin-bottom: 16px;
    }
    
    .course-page-content .course-details-1-card .custom-list li {
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .course-page-content .course-details-1-card .custom-list li:last-child {
        margin-bottom: 0;
    }
    
    .course-page-content .course-details-1-card .order-list {
        margin-left: 24px;
        margin-bottom: 16px;
        list-style: auto;
    }
    
    .course-page-content .course-details-1-card .order-list li {
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .course-page-content .course-details-1-card .order-list li:last-child {
        margin-bottom: 0;
    }
    
    .course-page-content .subs-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 17px;
    }
    
    .course-page-content .accordion.accordion-customicon1.accordions-items-seperate {
        padding: 0 18px;
    }
    
    .course-page-content .accordion.accordion-customicon1.accordions-items-seperate li {
        padding: 15px !important;
    }
    
    .course-page-content .accordion.accordion-customicon1.accordions-items-seperate li .preview-link {
        color: #5625E8;
        font-size: 14px;
        text-decoration: underline;
    }
    
    .course-page-content .accordion.accordion-customicon1.accordions-items-seperate li .preview-link:hover {
        color: #FF4667;
    }
    
    .course-page-content .accordion-item {
        margin-bottom: 10px;
        border: none;
    }
    
    .course-page-content .accordion-button {
        font-size: 14px;
        font-weight: 600;
        background-color: var(--light);
        border-radius: 5px;
        box-shadow: none;
        display: flex;
        justify-content: space-between;
        color: var(--gray-900);
        border: 1px solid var(--gray-100);
    }
    
    .course-page-content .accordion-button::after {
        display: none;
    }
    
    .course-page-content .accordion-button i {
        transform: rotate(-180deg);
    }
    
    .course-page-content .accordion-button.accordion-button.collapsed i {
        transform: rotate(0deg);
    }
    
    .course-page-content .accordion-body ul li {
        border-bottom: 1px solid var(--gray-100);
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .course-page-content .accordion-body ul li:last-child {
        border-bottom: none;
    }
    
    @media (max-width: 767.98px) {
        .course-page-content .accordion-body ul li {
            padding: 13px 10px !important;
        }
    }
    
    .course-page-content .course-info {
        padding: 14px 0;
        border: 1px solid var(--gray-100);
        border-left: none;
        border-right: none;
    }
    
    .course-page-content .course-info p {
        font-size: 16px;
        color: var(--gray-900);
    }
    
    @media (max-width: 1199.98px) {
        .course-page-content .course-info p {
            font-size: 15px;
        }
    }
    
    .course-page-content .course-details-form .form-control {
        height: 42px;
        border-radius: 4px;
        border: 1px solid var(--gray-100);
        box-shadow: none;
    }
    
    .course-page-content .course-details-form textarea.form-control {
        height: 117px;
    }
    
    .course-page-content .course-details-form .post-btn {
        background-color: #392C7D;
        color: var(--white);
        padding: 9px 30px;
    }
    
    .course-page-content .course-details-form .post-btn:hover {
        background-color: #FF4667;
    }
    
    .course-page-content .name-link {
        font-size: 18px;
        font-weight: 600;
        color: var(--gray-900);
    }
    
    .course-page-content .name-link:hover {
        color: #FF4667;
    }
    
    .course-page-content .ordered-list .list-items {
        list-style: auto;
        margin-left: 24px;
        margin-bottom: 8px;
    }
    
    #videoModal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        justify-content: center;
        align-items: center;
    }
    
    .modal-content1 {
        position: relative;
        width: 80%;
        max-width: 720px;
        background: #000;
        padding: 0;
        border-radius: 8px;
    }
    
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
    
    iframe {
        width: 100%;
        height: 150px;
        border: none;
    }
    
    .course-sidebar-sec {
        margin-top: -252px;
    }
    
    @media (max-width: 991.98px) {
        .course-sidebar-sec {
            margin-top: 0;
        }
    }
    
    .course-sidebar-sec h5 {
        margin-bottom: 20px;
    }
    
    .course-sidebar-sec .course-sidebar-sec-card {
        padding: 20px;
        /* border: 1px solid #E7EFV7E7; */
        border-radius: 10px;
        margin-bottom: 24px;
        background: var(--white);
    }
    
    .course-sidebar-sec .course-sidebar-sec-card p {
        margin-bottom: 20px;
        color: var(--gray-500);
    }
    
    .course-sidebar-sec .play-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(1, 1, 1, 0.4);
        border-radius: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    @media (max-width: 1199.98px) {
        .course-sidebar-sec .wishlist-btns {
            flex-wrap: wrap;
        }
    }
    
    @media (max-width: 991.98px) {
        .course-sidebar-sec .wishlist-btns {
            flex-wrap: nowrap;
        }
    }
    
    @media (max-width: 575.98px) {
        .course-sidebar-sec .wishlist-btns {
            flex-wrap: wrap;
        }
    }
    
    .course-sidebar-sec .btn-wish {
        color: var(--gray-900);
        border: 1px solid var(--gray-100);
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    .course-sidebar-sec .btn-wish:hover {
        background-color: #FF4667;
        border-color: #FF4667;
        color: var(--white);
    }
    
    .course-sidebar-sec .btn-enroll {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .course-sidebar-sec .btn-enroll:hover {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .course-sidebar-sec .cou-features-card {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
    }
    
    .course-sidebar-sec .cou-features {
        padding: 20px;
    }
    
    .course-sidebar-sec .cou-features h5 {
        margin-bottom: 20px;
    }
    
    .course-sidebar-sec .cou-features ul li {
        margin-bottom: 1rem;
    }
    
    .course-sidebar-sec .cou-features ul li:last-child {
        margin-bottom: 0;
    }
    
    .course-details-two {
        position: relative;
        padding: 60px 0 45px;
    }
    
    @media (max-width: 575.98px) {
        .course-details-two {
            padding: 45px 0 30px;
        }
    }
    
    .course-details-two .play-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(1, 1, 1, 0.4);
        border-radius: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    @media (max-width: 575.98px) {
        .course-details-two .play-icon {
            width: 70px;
            height: 70px;
        }
    }
    
    .course-details-two .play-again-btn {
        background-color: #392C7D;
        color: var(--white);
    }
    
    .course-details-two .play-again-btn:hover {
        background-color: #FF4667;
    }
    
    .course-details-two .note-btn {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .course-details-two .note-btn:hover {
        background-color: #392C7D;
    }
    
    .course-resume {
        position: relative;
        padding: 60px 0;
    }
    
    @media (max-width: 575.98px) {
        .course-resume {
            padding: 45px 0 45px;
        }
    }
    
    .course-resume .play-again-btn {
        background-color: #392C7D;
        color: var(--white) !important;
    }
    
    .course-resume .play-again-btn:hover {
        background-color: #FF4667 !important;
        border-color: #FF4667 !important;
    }
    
    .course-resume .note-btn {
        background-color: #FF4667;
        color: var(--white) !important;
    }
    
    .course-resume .note-btn:hover {
        background-color: #392C7D;
    }
    
    .course-resume .course-resume-item {
        border-radius: 10px;
        border: 1px solid #E7E7E7;
        margin-bottom: 24px;
    }
    
    .course-resume .course-resume-item:last-child {
        margin-bottom: 0;
    }
    
    .course-resume .course-resume-item .course-resume-details-2 {
        padding: 20px;
    }
    
    .course-resume .course-resume-item .badge-sm {
        font-size: 12px;
    }
    
    .course-resume .course-resume-details-1 {
        border: 1px solid var(--gray-100);
        background-color: var(--light);
        border-radius: 10px;
        padding: 20px;
    }
    
    @media (max-width: 575.98px) {
        .course-resume .course-resume-details-1 {
            padding: 15px;
        }
    }
    
    .course-resume .course-resume-details-1 h2 {
        font-size: 32px;
    }
    
    @media (max-width: 1199.98px) {
        .course-resume .course-resume-details-1 h2 {
            font-size: 28px;
        }
    }
    
    @media (max-width: 767.98px) {
        .course-resume .course-resume-details-1 h2 {
            font-size: 24px;
        }
    }
    
    .course-resume .course-resume-details-1 .cou-resume-image {
        max-width: 270px;
        border-radius: 10px;
        width: 100%;
    }
    
    @media (max-width: 991.98px) {
        .course-resume .course-resume-details-1 .cou-resume-image {
            max-width: unset;
            margin-bottom: 20px;
        }
    }
    
    .course-resume .course-resume-details-1 .cou-resume-image img {
        border-radius: 10px;
    }
    
    .course-resume .course-resume-details-1 .cou-lesson {
        margin-bottom: 16px;
    }
    
    .course-resume .course-resume-details-1 .cou-lesson p {
        font-size: 16px;
        margin-bottom: 0;
        margin-right: 28px;
    }
    
    @media (max-width: 1199.98px) {
        .course-resume .course-resume-details-1 .cou-lesson p {
            margin-right: 14px;
        }
    }
    
    .course-resume .course-resume-details-1 .cou-lesson p img {
        margin-right: 10px;
    }
    
    @media (max-width: 767.98px) {
        .course-resume .course-resume-details-1 .cou-lesson {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .course-resume .course-resume-details-1 .cou-lesson p {
            font-size: 14px;
            margin-bottom: 8px;
        }
        .course-resume .course-resume-details-1 .cou-lesson p:last-child {
            margin-bottom: 0;
        }
    }
    
    .course-resume .btn:hover {
        background-color: #392C7D;
        border-color: #392C7D;
    }
    
    .course-resume .accordion-item {
        margin-top: 20px;
        border: none;
        border-radius: 8px;
        background-color: var(--light);
        border: 1px solid var(--gray-100);
    }
    
    @media (max-width: 575.98px) {
        .course-resume .accordion-item {
            margin-top: 15px;
        }
    }
    
    .course-resume .accordion-item .cou-resume-content h2 {
        font-size: 32px;
    }
    
    @media (max-width: 1199.98px) {
        .course-resume .accordion-item .cou-resume-content h2 {
            font-size: 26px;
        }
    }
    
    @media (max-width: 767.98px) {
        .course-resume .accordion-item .cou-resume-content h2 {
            font-size: 24px;
        }
    }
    
    .course-resume .accordion-item .accordion-item {
        margin-top: 20px;
        border: none;
        border-radius: 8px;
        background-color: var(--light-900);
    }
    
    @media (max-width: 575.98px) {
        .course-resume .accordion-item .accordion-item {
            margin-top: 15px;
        }
    }
    
    .course-resume .accordion-item .accordion-button {
        font-size: 16px;
        font-weight: 600;
        box-shadow: none;
        display: flex;
        justify-content: space-between;
        color: var(--gray-900);
        background-color: transparent;
    }
    
    @media (max-width: 575.98px) {
        .course-resume .accordion-item .accordion-button {
            padding: 15px;
        }
    }
    
    .course-resume .accordion-item .accordion-button::after {
        display: none;
    }
    
    .course-resume .accordion-item .accordion-button i {
        transform: rotate(0deg);
        color: #392C7D;
    }
    
    .course-resume .accordion-item .accordion-button.accordion-button.collapsed i {
        transform: rotate(-180deg);
    }
    
    .course-resume .accordion-item .accordion-body {
        border-top: 1px solid var(--gray-100);
    }
    
    @media (max-width: 575.98px) {
        .course-resume .accordion-item .accordion-body {
            padding: 15px;
        }
    }
    
    .course-resume .accordion-item .accordion-body .progress {
        border-radius: 0;
        height: 3.33px;
    }
    
    .course-resume .accordion-item .accordion-body ul li {
        padding: 20px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .course-resume .accordion-item .accordion-body ul li:last-child {
        border-bottom: none;
    }
    
    @media (max-width: 575.98px) {
        .course-resume .accordion-item .accordion-body ul li h5 {
            font-size: 15px;
        }
    }
    
    .course-resume .accordion-item .accordion-body ul li h5 span {
        font-size: 14px;
    }
    
    .course-resume .accordion-item .accordion-body .delete-btn {
        padding: 4px;
        background: var(--white);
        color: #E70D0D;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }
    
    .course-resume .accordion-item .accordion-body .delete-btn:hover {
        background: #E70D0D;
        color: var(--white);
    }
    
    .course-resume .accordion-item .accordion-body .resume-play-btn {
        padding: 4px;
        background: var(--white);
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        margin-right: 8px;
    }
    
    .course-resume .accordion-item .accordion-body .resume-play-btn:hover {
        background: #392C7D;
        color: var(--white);
    }
    
    .course-list-content .courses-list .card-body h4 {
        font-size: 18px;
    }
    
    .pagination-text {
        font-size: 14px;
        font-weight: 500;
    }
    
    @media (max-width: 767.98px) {
        .pagination-text {
            text-align: center;
        }
    }
    
    .course-item {
        padding: 20px;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        border-radius: 10px;
        -webkit-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    
    .course-item .course-img {
        margin-bottom: 24px;
        position: relative;
    }
    
    .course-item .course-img img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .course-item .course-img .price-badge {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray-900);
        background: var(--white);
        border: 1px solid var(--gray-900);
        padding: 4px 10px;
        border-radius: 20px;
    }
    
    .course-item .badge {
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .course-item .fav-icon {
        width: 26px;
        height: 26px;
        border-radius: 30px;
        background: var(--light-500);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .course-item .fav-icon:hover {
        color: #FF4667;
    }
    
    .course-item h5 {
        font-size: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .course-item .course-rating {
        display: flex;
        align-items: center;
    }
    
    .course-item .course-rating .course-user {
        height: 24px;
        width: 24px;
        border-radius: 50px;
        margin-right: 8px;
    }
    
    .course-item .course-rating .course-user img {
        border-radius: 50px;
    }
    
    .course-item .course-rating a {
        color: #5625E8;
        font-size: 14px;
        text-decoration: underline;
    }
    
    .course-item .course-rating a:hover {
        color: #FF4667;
    }
    
    .course-item .rating {
        font-size: 14px;
        font-weight: 500;
    }
    
    .course-item .buy-course-btn {
        font-size: 14px;
        color: var(--gray-900);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light);
        padding: 6px 10px;
    }
    
    .course-item:hover {
        border: 1px solid rgba(57, 44, 125, 0.3);
    }
    
    .course-item:hover .buy-course-btn {
        background: #FF4667;
        color: var(--white);
    }
    
    .course-item .course-content {
        padding: 0;
    }
    
    .course-item.course-item-two {
        background: var(--white);
        margin-bottom: 24px;
    }
    
    .course-item.course-item-two .course-img {
        border-radius: 10px;
        overflow: hidden;
        transition: all 1.5s;
        max-height: 200px;
    }
    
    .course-item.course-item-two .course-img .bg-01 {
        position: absolute;
        top: 35px;
        left: 0;
        height: 122px;
        width: auto;
        z-index: 9;
    }
    
    .course-item.course-item-two .course-img .bg-02 {
        position: absolute;
        top: 48px;
        left: 0;
        height: 112px;
        width: auto;
        z-index: 9;
    }
    
    .course-item.course-item-two .course-img .course-user {
        position: absolute;
        z-index: 1;
        height: 152px;
        width: auto;
        left: 8px;
        top: 14px;
    }
    
    .course-item.course-item-two .course-img .brand-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        padding: 5px;
        border-radius: 30px;
        background: var(--white);
        box-shadow: 0px 4px 14px 0px rgba(219, 219, 219, 0.2509803922);
        display: inline-flex;
        align-items: center;
    }
    
    .course-item.course-item-two .course-content img {
        width: 24px;
        height: 24px;
    }
    
    .course-item.course-item-two .course-content .title {
        font-size: 18px;
        font-weight: 700;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    @media (max-width: 991.98px) {
        .course-item.course-item-two .course-content .title {
            font-size: 16px;
        }
    }
    
    .course-item.course-item-two .course-content p {
        font-size: 14px;
        white-space: nowrap;
    }
    
    .course-item.course-item-three {
        border-radius: 10px;
        position: relative;
        background: var(--white);
        margin-bottom: 24px;
    }
    
    .course-item.course-item-three .rating {
        margin-left: auto;
        margin-bottom: 15px;
        width: auto;
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .course-item.course-item-three .rating i {
        font-size: 13px;
    }
    
    .course-item.course-item-three .course-img {
        position: relative;
        overflow: hidden;
        z-index: 1;
        border-radius: 10px;
        margin-bottom: 24px;
    }
    
    .course-item.course-item-three .course-img img {
        width: 100%;
        border-radius: 10px;
        transform: translateZ(0);
        transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    }
    
    .course-item.course-item-three .course-img:hover img {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        transform: scale(1.15);
    }
    
    .course-item.course-item-three .course-info {
        justify-content: space-between;
        margin: 0 0 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .course-item.course-item-three .course-info p {
        margin-bottom: 0;
        margin-left: 10px;
    }
    
    .course-item.course-item-three .course-content {
        padding: 0;
    }
    
    .course-item.course-item-three .course-content .title {
        font-size: 20px;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    @media (max-width: 767.98px) {
        .course-item.course-item-three .course-content .title {
            font-size: 18px;
        }
    }
    
    .course-item.course-item-three .course-content .instructor-text {
        max-width: 320px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        font-size: 20px;
        font-weight: 700;
        line-height: 32px;
    }
    
    .course-item.course-item-three .course-content .course-user {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .course-item.course-item-three .course-content .course-user .course-user-img {
        display: flex;
        align-items: center;
    }
    
    .course-item.course-item-three .course-content .course-user .course-user-img img {
        width: 50px;
        height: 50px;
        border-radius: 25px;
        margin-right: 10px;
    }
    
    .course-item.course-item-three .course-content .course-name h4 {
        font-size: 16px;
        margin-bottom: 2px;
        font-weight: 500;
    }
    
    .course-item.course-item-three .course-content .course-name p {
        margin-bottom: 0;
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .course-item.course-item-three .price {
        background: var(--white);
        position: absolute;
        bottom: 20px;
        right: 20px;
        padding: 4px 8px;
        border-radius: 10px;
    }
    
    .course-item.course-item-three .price.combo {
        background: var(--white);
        position: absolute;
        bottom: 20px;
        right: 20px;
        padding: 4px 8px;
        border-radius: 10px;
        min-width: auto;
    }
    
    .course-item.course-item-three .price.combo h3 {
        color: #03C95A;
        font-weight: 600;
        font-size: 20px;
    }
    
    .course-item.course-item-three .price h3 {
        font-size: 20px;
        color: #FF4667;
        font-weight: 700;
        margin-bottom: 0;
    }
    
    .course-item.course-item-three .price h3 span {
        text-decoration: line-through;
        font-size: 14px;
        color: #857DAD;
        font-weight: 600;
    }
    
    .course-item.course-item-four {
        background: var(--white);
        box-shadow: 0px 4px 24px 0px rgba(220, 220, 220, 0.25);
        padding: 0;
        margin-bottom: 24px;
    }
    
    .course-item.course-item-four .course-img {
        position: relative;
        margin-bottom: 0;
    }
    
    .course-item.course-item-four .course-img .course-name {
        background: #03C95A;
        border-radius: 5px;
        position: absolute;
        top: 10px;
        display: flex;
        left: 10px;
        justify-content: center;
        padding: 3px 10px;
        font-size: 14px;
        color: var(--white);
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
        font-weight: 700;
    }
    
    .course-item.course-item-four .course-img img {
        border-radius: 10px 10px 0 0;
        width: 100%;
    }
    
    .course-item.course-item-four .course-content {
        padding: 24px;
    }
    
    .course-item.course-item-four .course-content .rating {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .course-item.course-item-four .course-content .title {
        font-size: 20px;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    @media (max-width: 991.98px) {
        .course-item.course-item-four .course-content .title {
            font-size: 18px;
        }
    }
    
    @media (max-width: 767.98px) {
        .course-item.course-item-four .course-content .title {
            font-size: 16px;
        }
    }
    
    .course-item.course-item-four .course-content .user-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    
    .course-item.course-item-four .course-content .user-info p {
        margin-bottom: 0;
    }
    
    .course-item.course-item-four .course-content .user-info p.user-name {
        color: #5625E8;
        text-decoration: underline;
    }
    
    .course-item.course-item-four .course-content .user-info p.course-level {
        color: #03C95A;
        font-weight: 500;
    }
    
    .course-item.course-item-four .course-content .course-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--gray-100);
        padding-top: 24px;
    }
    
    .course-item.course-item-four .course-content .course-info .course-time {
        margin-bottom: 0;
    }
    
    .course-item.course-item-four .course-content .course-info .course-time i {
        margin-right: 4px;
    }
    
    .course-item.course-item-four .course-content .course-info .price {
        color: #FF4667;
    }
    
    .course-item.course-item-four .course-content .course-info .price span {
        font-size: 14px;
        color: var(--gray-300);
        text-decoration-line: line-through;
    }
    
    .course-item.course-item-five {
        position: relative;
        overflow: hidden;
        padding: 0;
        margin: 0 0 24px;
        box-shadow: -3px 5px 16px rgba(0, 0, 0, 0.07);
    }
    
    .course-item.course-item-five .course-img {
        position: relative;
        border-radius: 10px 10px 0px 0px;
        width: 100%;
        margin-bottom: 0;
        overflow: hidden;
        transform: translateZ(0);
        transition: all 2000mscubic-bezier 0.19, 1, 0.22, 1 0ms;
    }
    
    .course-item.course-item-five .course-img img {
        border-radius: 0;
    }
    
    .course-item.course-item-five .course-content {
        position: relative;
        padding: 20px;
    }
    
    .course-item.course-item-five .course-content .student-counts-info {
        border-bottom: 1px solid var(--gray-100);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .course-item.course-item-five .course-content .course-user-img {
        position: absolute;
        top: -20px;
        right: 15px;
    }
    
    .course-item.course-item-five .course-content .course-user-img img {
        width: 40px;
        height: 40px;
        border: 3px solid var(--white);
        border-radius: 50%;
    }
    
    .course-item.course-item-five .course-content .course-price h3 {
        font-size: 20px;
        margin-bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-item.course-item-five .course-content .course-price span {
        text-decoration: line-through;
        font-size: 14px;
        color: var(--gray-700);
        font-weight: 400;
        line-height: 0;
    }
    /* Course Watch*/
    
    .course-watch-section .progress-overview-section {
        padding: 20px;
    }
    
    @media (max-width: 991.98px) {
        .course-watch-section .progress-overview-section {
            padding: 20px 0 20px;
        }
    }
    
    .course-watch-section .progress-overview-section .progress {
        background-color: var(--light-900);
        height: 0.75rem;
        border-radius: 0.25rem;
    }
    
    .course-watch-section .progress-overview-section .progress.progress-xs,
    .course-watch-section .progress-overview-section .progress-stacked.progress-xs {
        height: 0.3125rem;
    }
    
    .course-watch-section .progress-overview-section .progress.progress-sm,
    .course-watch-section .progress-overview-section .progress-stacked.progress-sm {
        height: 0.5rem;
    }
    
    .course-watch-section .progress-overview-section .progress.progress-lg,
    .course-watch-section .progress-overview-section .progress-stacked.progress-lg {
        height: 1rem;
    }
    
    .course-watch-section .progress-overview-section .progress.progress-xl,
    .course-watch-section .progress-overview-section .progress-stacked.progress-xl {
        height: 1.25rem;
    }
    
    .course-watch-section h3 {
        font-size: 28px;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 24px;
    }
    
    .course-watch-section .accordion-button {
        background-color: var(--light);
        color: var(--gray-500);
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .course-watch-section .accordion-button:not(.collapsed) {
        color: var(--gray-500);
        background-color: var(--light);
        box-shadow: none;
    }
    
    .course-watch-section .accordion-button:focus {
        border-color: rgba(57, 44, 125, 0.3);
        box-shadow: none;
    }
    
    .course-watch-section .accordion-button:after,
    .course-watch-section .accordion-button:not(.collapsed)::after {
        background-image: none;
    }
    
    .course-watch-section .accordion-button:after {
        content: "\f0d7";
        font-family: "Fontawesome";
        font-size: 12px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 3.125rem;
        color: var(--gray-500);
    }
    
    .course-watch-section .accordion-body {
        padding: 1rem;
        font-size: 0.8125rem;
        color: #677788;
        border-top: 1px solid var(--gray-100);
    }
    
    .course-watch-section .accordion-item {
        color: var(--gray-500);
        background-color: var(--white);
        border: 1px solid var(--gray-100);
    }
    
    .course-watch-section .accordions-items-seperate .accordion-item:not(:first-of-type) {
        margin-block-start: 1rem;
    }
    
    .course-watch-section .accordions-items-seperate .accordion-item {
        border-radius: 10px;
        overflow: hidden;
    }
    
    .course-watch-section .accordian-content {
        font-weight: 500 !important;
        font-size: 14px !important;
        color: var(--gray-900) !important;
    }
    
    .course-watch-section .course-watch-content {
        padding: 20px 0 0 20px;
    }
    
    @media (max-width: 991.98px) {
        .course-watch-section .course-watch-content {
            padding: 0;
        }
    }
    
    .course-watch-section .course-watch-content .nav-style-1 .nav-item {
        margin-inline-end: 0.5rem;
        flex-grow: inherit;
    }
    
    .course-watch-section .course-watch-content .nav-style-1 .nav-item:last-child {
        margin-inline-end: 0;
    }
    
    @media (max-width: 575.98px) {
        .course-watch-section .course-watch-content .nav-style-1 .nav-item {
            margin-right: 0;
        }
    }
    
    .course-watch-section .course-watch-content .nav-style-1 .nav-item .nav-link {
        background: var(--light);
        color: var(--gray-900);
        border-radius: 10px;
        font-size: 16px;
    }
    
    @media (max-width: 767.98px) {
        .course-watch-section .course-watch-content .nav-style-1 .nav-item .nav-link {
            margin-bottom: 16px;
        }
    }
    
    .course-watch-section .course-watch-content .nav-style-1 .nav-item .nav-link.active,
    .course-watch-section .course-watch-content .nav-style-1 .nav-item .nav-link:hover {
        background: #FF4667;
        border-color: #FF4667;
        color: var(--white);
    }
    
    .course-watch-section .course-watch-content .video-btn {
        margin-bottom: 30px;
    }
    
    .course-watch-section .course-watch-content .video-btn img {
        border-radius: 10px;
    }
    
    .course-watch-section .course-watch-content .course-video {
        position: relative;
        margin-bottom: 47px;
        width: fit-content;
    }
    
    .course-watch-section .course-watch-content .course-video .icon-play {
        position: absolute;
        top: 230px;
        left: 50%;
    }
    
    .course-watch-section .course-watch-content .tab-pane p {
        line-height: 1.6;
    }
    
    .course-watch-section .course-watch-content .readmore-btn {
        color: #FF4667;
        text-decoration: underline;
        font-size: 16px;
    }
    
    .course-watch-section .course-watch-content .readmore-btn:hover {
        color: #392C7D;
    }
    
    .course-watch-section .course-watch-content .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
    
    .course-watch-section .course-watch-content iframe {
        width: 100%;
        height: 400px;
        border: none;
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-button {
        background-color: var(--white);
        color: var(--gray-900);
        padding: 20px;
        font-size: 18px;
        font-weight: 600;
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-button:not(.collapsed) {
        color: var(--gray-900);
        background-color: var(--white);
        box-shadow: none;
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-button:focus {
        border-color: rgba(57, 44, 125, 0.3);
        box-shadow: none;
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-button:after,
    .course-watch-section .course-watch-content .faq-accordion .accordion-button:not(.collapsed)::after {
        background-image: none;
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-button:after {
        content: "+";
        font-family: "Fontawesome";
        font-size: 12px;
        line-height: 1;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        color: var(--gray-900);
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-button:not(.collapsed)::after {
        transform: rotate(45deg);
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-body {
        font-size: 15px;
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordion-item {
        color: var(--gray-900);
        background-color: var(--white);
        border: 1px solid var(--gray-100);
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordions-items-seperate .accordion-item:not(:first-of-type) {
        margin-block-start: 1rem;
    }
    
    .course-watch-section .course-watch-content .faq-accordion .accordions-items-seperate .accordion-item {
        border-block-start: 1px solid var(--gray-100);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .course-watch-section .back-to-course {
        color: #FF4667;
        font-weight: 500;
    }
    
    .course-watch-section .back-to-course:hover {
        color: #392C7D;
    }
    
    .course-watch-section .back-to-course {
        color: #FF4667;
        font-weight: 500;
        font-size: 14px;
    }
    
    .course-watch-section .back-to-course:hover {
        color: #392C7D;
    }
    
    .course-watch-section .course-accordion-head-1 {
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-900);
    }
    
    .course-watch-section .play-icon {
        width: 50px;
        height: 50px;
        background-color: rgba(1, 1, 1, 0.4);
        border-radius: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .course-watch-section .play-icon i {
        font-size: 16px;
    }
    
    @media (max-width: 575.98px) {
        .course-watch-section .play-icon {
            width: 40px;
            height: 40px;
        }
        .course-watch-section .play-icon i {
            font-size: 14px;
        }
    }
    /* /Course Watch*/
    
    .cart-cover {
        margin: 0 60px;
    }
    
    @media (max-width: 767.98px) {
        .cart-cover {
            margin: 0 20px;
        }
    }
    
    @media (max-width: 575.98px) {
        .cart-cover {
            margin: 0;
        }
    }
    
    .cart-cover .cart-items {
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 0;
    }
    
    .cart-cover .cart-items .items-count {
        background: var(--light-900);
        padding: 10px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-900);
        margin-bottom: 20px;
    }
    
    .cart-cover .cart-items .cart-head {
        margin-bottom: 20px;
    }
    
    .cart-cover .cart-items .cart-item {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 0;
    }
    
    .cart-cover .cart-items .cart-item img {
        border-radius: 10px;
    }
    
    .cart-cover .cart-items p {
        font-size: 14px;
    }
    
    .cart-cover .cart-img {
        overflow: hidden;
        border-radius: 10px;
    }
    
    .cart-cover .cart-img img {
        object-fit: cover;
        transition: 0.5s;
    }
    
    .cart-cover .cart-img:hover img {
        transform: scale(1.1);
    }
    
    .cart-cover .dot {
        width: 6px;
        height: 6px;
    }
    
    .cart-cover .star {
        color: #FFC107;
    }
    
    .cart-cover .trash-btn {
        width: 30px;
        height: 30px;
        padding: 4px;
        border-radius: 18px;
        border: 1px solid var(--gray-100);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #E70D0D;
    }
    
    .cart-cover .trash-btn:hover {
        background: #E70D0D;
        color: var(--white);
        border-color: #E70D0D;
    }
    
    .cart-cover .btn.continue-shopping-btn {
        background: #FF4667;
        color: var(--white);
        padding: 7px 16px;
    }
    
    .cart-cover .btn.continue-shopping-btn:hover {
        background: #392C7D;
    }
    
    .cart-cover .btn.checkout-btn {
        background: #392C7D;
        color: var(--white);
    }
    
    .cart-cover .btn.checkout-btn:hover {
        background: #FF4667;
    }
    
    @media (max-width: 767.98px) {
        .cart-cover .cart-trash {
            margin-top: 10px;
        }
    }
    
    .checkout-content .checkout-item-1 {
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 10px;
        margin-bottom: 47px;
        padding: 20px;
    }
    
    @media (max-width: 991.98px) {
        .checkout-content .checkout-item-1 {
            margin-bottom: 30px;
        }
    }
    
    .checkout-content .checkout-item-1:last-child {
        margin-bottom: 0;
    }
    
    .checkout-content .checkout-item-1 .checkbox {
        width: 20px;
        height: 20px;
        border: 1px solid #FFDEDA;
    }
    
    .checkout-content .checkout-item-1 .input-block {
        margin-bottom: 26px !important;
    }
    
    .checkout-content .checkout-item-1 .form-check-input {
        width: 20px;
        height: 20px;
        margin-top: 0;
        margin-right: 10px;
    }
    
    .checkout-content .nav-style-1 .nav-item {
        margin-inline-end: 1rem;
    }
    
    .checkout-content .nav-style-1 .nav-item:last-child {
        margin-inline-end: 0;
    }
    
    .checkout-content .nav-style-1 .nav-item .nav-link {
        color: var(--gray-900);
        border-radius: 10px;
        border: 1px solid var(--gray-100);
    }
    
    @media (max-width: 767.98px) {
        .checkout-content .nav-style-1 .nav-item .nav-link {
            margin-bottom: 16px;
        }
    }
    
    .checkout-content .nav-style-1 .nav-item .nav-link.active,
    .checkout-content .nav-style-1 .nav-item .nav-link:hover {
        background: var(--light);
    }
    
    .checkout-content .custom_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .checkout-content .custom_check {
        color: var(--gray-500) !important;
        display: inline-block;
        position: relative;
        font-size: 14px !important;
        margin-bottom: 15px;
        padding-left: 28px;
        cursor: pointer;
        font-weight: 400 !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        font-family: "Noto Sans", sans-serif;
    }
    
    .checkout-content .custom_check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border: 1px solid var(--gray-100);
        background-color: var(--white);
        border-radius: 2px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    .checkout-content .custom_check .checkmark::after {
        content: "\e92b";
        font-family: "feather" !important;
        font-weight: 400;
        position: absolute;
        display: none;
        left: 3px;
        top: -1px;
        color: var(--white);
    }
    
    .checkout-content .custom_check input:checked~.checkmark:after {
        display: block;
    }
    
    .checkout-content .custom_check input:checked~.checkmark {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .checkout-item-2 {
        padding: 20px;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
    }
    
    @media (max-width: 991.98px) {
        .checkout-item-2 {
            margin-top: 30px;
        }
    }
    
    .checkout-item-2 .checkout-item-3 {
        overflow: hidden;
    }
    
    .checkout-item-2 .checkout-item-3 .order-img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        position: relative;
    }
    
    .checkout-item-2 .checkout-item-3 .order-img img {
        border-radius: 10px;
        position: relative;
        object-fit: cover;
    }
    
    .checkout-item-2 .checkout-item-3 .order-img a {
        display: none;
        position: absolute;
        background: var(--white);
        color: #E70D0D;
        bottom: 5px;
        right: 5px;
    }
    
    .checkout-item-2 .checkout-item-3 .order-img:hover a {
        display: flex;
    }
    
    .checkout-item-2 .checkout-item-3 .order-img:hover a:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .checkout-item-2 p {
        font-size: 14px;
    }
    
    .notification-content .notification-head {
        margin-bottom: 40px;
    }
    
    @media (max-width: 767.98px) {
        .notification-content .notification-head {
            margin-bottom: 30px;
        }
    }
    
    @media (max-width: 575.98px) {
        .notification-content .notification-head {
            margin-bottom: 20px;
        }
    }
    
    .notification-content .notification-head p {
        font-size: 16px;
        color: var(--gray-500);
    }
    
    .notification-content .delete-all-btn {
        background: #FF4667;
        color: var(--white);
    }
    
    .notification-content .delete-all-btn:hover {
        background: #392C7D;
        border-color: #392C7D;
    }
    
    .notification-content .notification-item {
        border: 1px solid var(--gray-100);
        padding: 20px;
        border-radius: 10px;
        border-radius: 10px;
        padding: 20px;
    }
    
    @media (max-width: 575.98px) {
        .notification-content .notification-item {
            padding: 14px;
        }
    }
    
    .notification-content .notification-item img {
        width: 45px;
        height: 45px;
    }
    
    .notification-content .notification-item .name-highlight {
        color: var(--gray-900);
        font-size: 16px;
        font-weight: 500;
    }
    
    .notification-content .notification-item .delete-all-btn {
        background: #FF4667 !important;
        color: var(--white) !important;
    }
    
    .notification-content .notification-item .delete-all-btn:hover {
        background: #392C7D !important;
    }
    
    .notification-content .notification-item .btn-delete {
        background: #FF4667;
        color: var(--white);
    }
    
    .notification-content .notification-item .btn-delete:hover {
        background: #392C7D;
    }
    
    .notification-content .notification-item .btn-delete-hidden {
        display: none;
        background: #FF4667;
        color: var(--white);
    }
    
    .notification-content .notification-item:hover .btn-delete-hidden {
        display: flex;
        align-items: center;
    }
    
    .notification-content .notification-item:hover .btn-delete-hidden:hover {
        background: #392C7D;
    }
    /*============================
  56.chat
============================*/
    
    .header-navigation {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--light);
        margin-bottom: 20px;
    }
    
    .chat-scroll {
        max-height: calc(100vh - 170px);
        overflow-y: auto;
    }
    
    .chat-scroll::-webkit-scrollbar {
        width: 3px;
        background: var(--white);
        height: 3px;
    }
    
    .chat-scroll::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px var(--white);
        border-radius: 10px;
    }
    
    .chat-scroll::-webkit-scrollbar-thumb {
        background: var(--light-900);
        border-radius: 10px;
    }
    
    .chat-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--light-100);
    }
    
    .chat-cont-left {
        width: 340px;
        border-right: 1px solid var(--gray-100);
        flex-shrink: 0;
    }
    
    .chat-cont-left .chat-scroll {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .chat-cont-left .chat-scroll::-webkit-scrollbar {
        width: 3px;
        background: var(--white);
        height: 3px;
    }
    
    .chat-cont-left .chat-scroll::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px var(--white);
        border-radius: 10px;
    }
    
    .chat-cont-left .chat-scroll::-webkit-scrollbar-thumb {
        background: var(--light-900);
        border-radius: 10px;
    }
    
    .chat-cont-left .chat-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--light-900);
    }
    
    .chat-cont-left .chat-header {
        padding: 20px 20px 0;
    }
    
    .chat-cont-left .chat-header h6 {
        font-size: 20px;
    }
    
    .chat-cont-left .chat-header p {
        margin-bottom: 0;
        font-size: 14px;
    }
    
    .chat-cont-left .chat-header.inner-chat-header {
        padding: 15px 0;
    }
    
    .chat-cont-left .chat-header.inner-chat-header h6 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .chat-cont-left .card {
        border: 1px solid var(--light);
        box-shadow: none;
    }
    
    .chat-cont-left .chat-users-list {
        padding: 20px;
    }
    
    .chat-cont-left .chat-users-list .chat-member {
        background: var(--white);
        padding: 10px;
        border-radius: 10px;
        border: 1px solid var(--white);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
    }
    
    .chat-cont-left .chat-users-list .chat-member.active {
        border-color: #FF4667;
    }
    
    .chat-cont-left .chat-users-list .chat-member .avatar img {
        border-radius: 50%;
    }
    
    .chat-cont-left .chat-users-list .chat-member .avatar.active img {
        border: 2px solid #FFC107;
    }
    
    .chat-cont-left .chat-users-list .chat-member .msg-count {
        width: 20px;
        height: 20px;
        box-shadow: none;
    }
    
    .msg_card_body {
        overflow-y: auto;
        padding: 20px 20px 0;
    }
    
    .msg_card_body.card-body {
        padding-bottom: 0;
    }
    
    .msg_card_body .media .media-body .msg-box+.msg-box {
        margin-top: 5px;
    }
    
    .msg_card_body .media:last-child {
        margin-bottom: 0;
    }
    
    .msg_card_body ul.list-unstyled {
        margin: 0 auto;
        padding: 1rem 0 0;
        width: 100%;
    }
    
    .msg_card_body .media.received {
        margin-bottom: 20px;
        max-width: 550px;
        margin-right: auto;
    }
    
    .msg_card_body .media.received .media-body .msg-box {
        position: relative;
        display: inline-block;
    }
    
    .msg_card_body .media.received .media-body .msg-box .received-message {
        background-color: var(--light-900);
        color: var(--gray-900);
        padding: 15px;
        border-radius: 15px 15px 15px 0;
    }
    
    .msg_card_body .media.received .media-body .msg-box .received-message .img-count {
        position: relative;
    }
    
    .msg_card_body .media.received .media-body .msg-box .received-message .img-count a::before {
        content: "";
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        position: absolute;
        z-index: 1;
        backdrop-filter: blur(3px);
        border-radius: 5px;
    }
    
    .msg_card_body .media.received .media-body .msg-box .received-message .img-count .counts {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    
    .msg_card_body .media.received .media-body .msg-box:first-child .received-message {
        margin-top: 0;
    }
    
    .msg_card_body .media.sent {
        margin-bottom: 20px;
        max-width: 550px;
        margin-left: auto;
    }
    
    .msg_card_body .media.sent .media-body {
        -webkit-box-align: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: flex-end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: flex-end;
        margin-left: 0;
        margin-right: 6px;
    }
    
    .msg_card_body .media.sent .media-body .msg-box {
        margin-left: 70px;
        position: relative;
    }
    
    @media (max-width: 575.98px) {
        .msg_card_body .media.sent .media-body .msg-box {
            margin-left: 30px;
        }
    }
    
    .msg_card_body .media.sent .media-body .msg-box:first-child .sent-message {
        margin-top: 0;
        background: #392C7D;
        padding: 14px;
        border-radius: 15px 15px 0 15px;
    }
    
    .msg_card_body .media.sent .media-body .msg-box:first-child .sent-message p {
        color: var(--white);
    }
    
    .msg_card_body .media.sent .avatar {
        -ms-flex-order: 3;
        order: 3;
    }
    
    .microphone-chat {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }
    
    .chat-input {
        width: 688px;
    }
    
    .chat-input .form-control {
        border-radius: 10px;
    }
    
    .chat-input-icons a {
        padding: 8px;
    }
    
    .type_msg {
        background: var(--white);
        border-radius: 50px;
        overflow-y: auto;
        min-height: 40px;
        border-radius: 10px !important;
        font-size: 14px;
    }
    
    .type_msg:focus {
        box-shadow: none;
        outline: 0px;
        z-index: unset !important;
    }
    
    .send-action {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        display: -webkit-inline-flex;
        align-items: center;
        -webkit-align-items: center;
    }
    
    .send-action .send-action-btn {
        width: 30px;
        height: 30px;
        display: inline-flex;
        display: -webkit-inline-flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        margin-right: 7px;
        font-size: 12px;
        border-radius: 50%;
        padding: 0;
    }
    
    .btn_send {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: inline-flex;
        display: -webkit-inline-flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
        padding: 0;
        font-size: 12px;
    }
    
    @media (max-width: 767.98px) {
        .btn_send {
            width: 35px;
            height: 35px;
        }
    }
    
    .btn_send i {
        font-size: 20px;
    }
    
    @media (max-width: 767.98px) {
        .btn_send i {
            font-size: 15px;
        }
    }
    
    .search_btn {
        background-color: transparent;
        border: 0;
        line-height: 0;
    }
    
    .msg_head {
        position: relative;
        background-color: transparent;
    }
    
    .chat-cont-right .msg_head {
        padding: 20px;
        display: flex;
        display: -webkit-flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        border-bottom: 1px solid var(--gray-100);
        z-index: 15;
    }
    
    .chat-cont-right .msg_head .back-user-list {
        display: none;
        padding-right: 10px;
        margin-left: -10px;
        padding-left: 10px;
    }
    
    @media (max-width: 767.98px) {
        .chat-cont-right .msg_head .back-user-list {
            display: block;
        }
    }
    
    .card-body.chat-users-list {
        padding: 15px;
    }
    
    .chat-cont-right.chat-window-long {
        display: flex;
        overflow: hidden;
    }
    
    .chat-window {
        width: 100%;
        margin-right: 0;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .chat-cont-profile.chat-profile-right {
        width: 0;
        display: none;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .chat-cont-right.chat-window-long.window-full-width .card.chat-window {
        width: 65%;
        margin-right: 24px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .chat-cont-right.chat-window-long.window-full-width .chat-cont-profile.chat-profile-right {
        width: 35%;
        display: flex;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .chat-page-body .sidebar-overlay.opened {
        display: none;
    }
    
    .form-control.type_msg.empty_check {
        padding-right: 130px;
    }
    
    .media.sent .message-more-option {
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .media.received .message-more-option {
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .day-badge {
        position: relative;
        z-index: 1;
    }
    
    .day-badge::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        border: 1px solid var(--light);
        position: absolute;
        z-index: -1;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
    }
    
    .search-icon-right {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 0;
    }
    
    .chat-search {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        transition: ease all 0.5s;
        -webkit-transition: ease all 0.5s;
        -ms-transition: ease all 0.5s;
        opacity: 0;
        visibility: hidden;
    }
    
    .chat-search input[type=text] {
        padding: 8px 8px 8px 15px;
        width: 100%;
        min-height: 37px;
        border-radius: 5px;
        background-color: var(--white);
        color: var(--gray-900);
    }
    
    .chat-search .input-group {
        flex-wrap: nowrap;
    }
    
    .chat-search .input-group .form-control {
        border-right: none;
    }
    
    .chat-search .input-group .input-group-prepend {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        color: var(--gray-700);
        pointer-events: none;
        z-index: 4;
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
    }
    
    .chat-search .input-group .input-group-text {
        background-color: var(--white);
    }
    
    .chat-search.visible-chat {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transition: ease all 0.5s;
        -webkit-transition: ease all 0.5s;
        -ms-transition: ease all 0.5s;
        z-index: 9;
        padding: 0 20px;
    }
    
    .card-footer .no-bg {
        margin-right: 0;
        padding: 8px;
        background-color: var(--white);
        border: var(--white);
        color: var(--gray-900);
    }
    
    .card-footer .no-bg.show {
        background-color: var(--white);
        border-color: var(--white);
        color: var(--gray-900);
    }
    
    .card-footer .no-bg:hover {
        background-color: var(--white);
        border: var(--white);
        color: var(--gray-900);
    }
    
    .emoj-action-foot {
        margin-right: 2px;
        position: relative;
    }
    
    .emoj-action-foot .down-emoji-circle ul {
        padding: 10px;
    }
    
    .emoj-action-foot .down-emoji-circle ul li:last-child a {
        width: 34px;
        height: 34px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .emoj-group-list-foot {
        display: none;
        position: absolute;
        top: -80px;
        left: -30px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .emoj-group-list-foot ul {
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: var(--white);
        border: 1px solid var(--light);
        border-radius: 8px;
        padding: 8px;
    }
    
    .emoj-group-list-foot ul li a {
        padding: 0;
        display: flex;
        align-items: center;
        display: flex;
        width: 16px;
        margin-right: 8px;
    }
    
    .emoj-group-list-foot ul li.add-emoj a {
        background: var(--light-500);
    }
    
    .emoj-group-list-foot ul li.add-emoj a i {
        font-size: 20px;
    }
    
    .chat-cont-right {
        display: flex;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .about-section {
            padding: 50px 0;
        }
    }
    
    .about-section-two {
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .about-section-two {
            padding: 50px 0;
        }
    }
    
    .about-section-two .img-radius {
        border-radius: 100px 0;
    }
    
    @media (max-width: 575.98px) {
        .about-section-two .img-radius {
            border-radius: 60px 0;
        }
    }
    
    .about-section-two .about-icon {
        width: 64px;
        height: 64px;
    }
    
    .about-section-two .about-us-banner {
        margin-bottom: 31px;
    }
    
    .about-section-two .about-us-banner:last-child {
        margin-bottom: 0;
    }
    
    .about-section-two .about-us-banner h6 {
        font-size: 18px;
    }
    
    .benefit-section {
        position: relative;
        padding: 80px 0 56px;
    }
    
    @media (max-width: 991.98px) {
        .benefit-section {
            padding: 50px 0 30px;
        }
    }
    
    .institutions-sec {
        padding-bottom: 30px;
        position: relative;
    }
    
    .counter-sec {
        position: relative;
        background-color: #392C7D;
        padding: 40px 0;
    }
    
    .counter-sec .about-us-count {
        border: 1px solid #E9ECEF;
        box-shadow: 0px 4px 14px 0px rgba(231, 231, 231, 0.2509803922);
        background: var(--white);
        border-radius: 10px;
        padding: 20px;
        height: 112px;
    }
    
    @media (max-width: 1199.98px) {
        .counter-sec .about-us-count {
            margin-bottom: 24px;
        }
    }
    
    .contact-sec {
        position: relative;
        padding: 60px 0;
    }
    
    @media (max-width: 991.98px) {
        .contact-sec {
            padding: 50px 0;
        }
    }
    
    .contact-sec .contact-info {
        margin-bottom: 26px;
    }
    
    .contact-sec .contact-form {
        background: linear-gradient(90deg, #FEE0DE 0%, #E4F5FD 51.39%, #DDEDFF 100%);
    }
    
    .contact-sec .contact-icon span {
        display: block;
        width: 60px;
        height: 60px;
        color: #AEA9C9;
    }
    
    .contact-sec .contact-map {
        margin-top: 60px;
    }
    
    .contact-sec .contact-map iframe {
        filter: grayscale(1);
        transition: 0.3s;
        width: 100%;
        height: 260px;
    }
    
    .contact-sec .contact-map iframe:hover {
        filter: grayscale(0);
    }
    
    h2.main-title {
        font-size: 32px;
    }
    
    @media (max-width: 991.98px) {
        h2.main-title {
            font-size: 28px;
        }
    }
    
    @media (max-width: 767.98px) {
        h2.main-title {
            font-size: 26px;
        }
    }
    
    .share-your-knowledge {
        position: relative;
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .share-your-knowledge {
            padding: 50px 0;
        }
    }
    
    .share-your-knowledge .share-knowledge-content {
        padding: 133px 0 100px;
    }
    
    @media (max-width: 991.98px) {
        .share-your-knowledge .share-knowledge-content {
            padding: 0;
        }
    }
    
    .share-your-knowledge .share-knowledge-content .register-btn-1 {
        padding: 6px 16px;
        background: #FF4667;
        color: var(--white);
    }
    
    .share-your-knowledge .share-knowledge-content .register-btn-1:hover {
        background: #392C7D;
        color: var(--white);
    }
    
    .share-your-knowledge .btn-register {
        background-color: #FF4667;
        color: var(--white);
        padding: 8px 16px;
    }
    
    .share-your-knowledge .btn-register:hover {
        background-color: #392C7D;
    }
    
    .share-your-knowledge-img {
        position: relative;
    }
    
    .share-your-knowledge-img .become-instructor-bg-01 {
        position: absolute;
        top: 218px;
        left: 20px;
    }
    
    .share-your-knowledge-img .become-instructor-bg-02 {
        position: absolute;
        top: 245px;
        left: 105px;
    }
    
    .share-your-knowledge-img .become-instructor-bg-03 {
        position: absolute;
        right: 20px;
        top: 60px;
    }
    
    .share-your-knowledge-img .become-instructor-bg-04 {
        position: absolute;
        top: 0;
        left: 0;
        width: 400px;
    }
    
    .share-your-knowledge-img .become-instructor-bg-05 {
        position: absolute;
        top: 250px;
        right: 0;
        width: 266px;
    }
    
    .share-your-knowledge-img .become-instructor-bg-06 {
        position: absolute;
        top: 105px;
        right: 53px;
    }
    
    @-webkit-keyframes floating-y {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-15px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    .how-it-works-sec {
        position: relative;
        padding: 80px 0;
        text-align: center;
        background: var(--light-900);
    }
    
    @media (max-width: 991.98px) {
        .how-it-works-sec {
            padding: 50px 0 35px;
        }
    }
    
    .how-it-works-sec .share-knowledge-item-2 {
        background: var(--white);
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .how-it-works-sec .text-truncate.line-clamb-2 {
        -webkit-line-clamp: 2;
    }
    
    .counter-sec .become-instructor-item-3 {
        padding: 20px;
        border-radius: 10px;
        background: var(--white);
        height: 113px;
    }
    
    .register-sec {
        position: relative;
        padding: 80px 0 60px;
    }
    
    @media (max-width: 991.98px) {
        .register-sec {
            padding: 50px 0;
        }
    }
    
    .register-sec .toggle-passwords {
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        right: 10px;
    }
    
    .register-sec .register-section {
        padding: 20px;
        background: var(--light-900);
        border-radius: 10px;
    }
    
    .become-an-instructor .instructor-bg-1 {
        right: 25%;
        top: 0;
        position: absolute;
        z-index: -1;
    }
    
    .become-an-instructor .instructor-bg-2 {
        left: 30%;
        bottom: 0;
        position: absolute;
        z-index: -1;
    }
    
    .add-course-item {
        padding: 1.5rem;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        border-radius: 10px;
    }
    
    .add-course-item .wizard {
        padding: 20px;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .add-course-item .wizard p {
        font-size: 14px;
    }
    
    .add-course-item .wizard ul {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    
    .add-course-item .wizard ul li {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
    }
    
    .add-course-item .wizard ul li h5 {
        font-size: 16px;
        margin: 10px 0;
        font-weight: 400;
    }
    
    .add-course-item .wizard ul li span.dot-active {
        width: 34px;
        height: 34px;
        border: 1px solid var(--gray-100);
        background-color: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 8px;
        border-radius: 50%;
        margin: auto;
        margin-bottom: 0;
        z-index: 1;
        color: var(--gray-900);
        font-size: 12px;
        font-weight: 600;
    }
    
    .add-course-item .wizard ul li span.dot-active .number {
        display: block;
    }
    
    .add-course-item .wizard ul li span.dot-active .tickmark {
        display: none;
    }
    
    .add-course-item .wizard ul li::after {
        content: "";
        width: 50%;
        height: 1px;
        background: var(--gray-100);
        position: absolute;
        top: 17px;
        left: 0;
    }
    
    .add-course-item .wizard ul li::before {
        content: "";
        width: 100%;
        height: 1px;
        background: var(--gray-100);
        position: absolute;
        top: 17px;
        right: 0;
    }
    
    .add-course-item .wizard ul li:first-child:before {
        width: 50%;
    }
    
    .add-course-item .wizard ul li:first-child::after {
        display: none;
    }
    
    .add-course-item .wizard ul li:last-child::before {
        display: none;
    }
    
    .add-course-item .wizard ul li.progress-activated::after {
        background: #03C95A;
    }
    
    .add-course-item .wizard ul li.progress-activated::before {
        background: #03C95A;
    }
    
    .add-course-item .wizard ul li.progress-activated span.dot-active {
        border-color: #03C95A;
        background-color: #03C95A;
    }
    
    .add-course-item .wizard ul li.progress-activated span.dot-active .number {
        display: none;
    }
    
    .add-course-item .wizard ul li.progress-activated span.dot-active .tickmark {
        display: block;
        color: var(--white);
        font-size: 12px;
    }
    
    .add-course-item .wizard ul li.progress-active::after {
        background: #03C95A;
    }
    
    .add-course-item .wizard ul li.progress-active span.dot-active {
        background-color: var(--gray-900);
        color: var(--white);
        border-color: var(--gray-900);
    }
    
    @media (max-width: 1199.98px) {
        .add-course-item .wizard {
            padding: 20px;
            border-bottom: 1px solid var(--gray-100);
        }
        .add-course-item .wizard p {
            font-size: 13px;
        }
        .add-course-item .wizard ul {
            display: flex;
            justify-content: center;
            text-align: center;
        }
        .add-course-item .wizard ul li {
            width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
        }
        .add-course-item .wizard ul li h5 {
            font-size: 16px;
            margin: 10px 0;
            font-weight: 400;
        }
        .add-course-item .wizard ul li span.dot-active {
            width: 34px;
            height: 34px;
            border: 1px solid var(--light);
            background-color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px 8px;
            border-radius: 50%;
            margin: auto;
            margin-bottom: 0;
            z-index: 1;
            color: var(--gray-900);
            font-size: 12px;
            font-weight: 600;
        }
        .add-course-item .wizard ul li span.dot-active .number {
            display: block;
        }
        .add-course-item .wizard ul li span.dot-active .tickmark {
            display: none;
        }
        .add-course-item .wizard ul li::after {
            content: "";
            width: 50%;
            height: 2px;
            background: var(--gray-100);
            position: absolute;
            top: 17px;
            left: 0;
        }
        .add-course-item .wizard ul li::before {
            content: "";
            width: 100%;
            height: 2px;
            background: var(--gray-100);
            position: absolute;
            top: 17px;
            right: 0;
        }
        .add-course-item .wizard ul li:first-child:before {
            width: 50%;
        }
        .add-course-item .wizard ul li:first-child::after {
            display: none;
        }
        .add-course-item .wizard ul li:last-child::before {
            display: none;
        }
        .add-course-item .wizard ul li.progress-activated::after {
            background: #03C95A;
        }
        .add-course-item .wizard ul li.progress-activated::before {
            background: #03C95A;
        }
        .add-course-item .wizard ul li.progress-activated span.dot-active {
            border-color: #03C95A;
            background-color: #03C95A;
        }
        .add-course-item .wizard ul li.progress-activated span.dot-active .number {
            display: none;
        }
        .add-course-item .wizard ul li.progress-activated span.dot-active .tickmark {
            display: block;
            color: var(--white);
            font-size: 12px;
        }
        .add-course-item .wizard ul li.progress-active::after {
            background: #03C95A;
        }
        .add-course-item .wizard ul li.progress-active span.dot-active {
            background-color: var(--gray-900);
            color: var(--white);
            border-color: var(--gray-900);
        }
    }
    
    @media (max-width: 991.98px) {
        .add-course-item .wizard {
            padding: 20px;
            border-bottom: 1px solid var(--gray-100);
        }
        .add-course-item .wizard p {
            font-size: 11px;
        }
        .add-course-item .wizard ul {
            display: flex;
            justify-content: center;
            text-align: center;
        }
        .add-course-item .wizard ul li {
            width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
        }
        .add-course-item .wizard ul li h5 {
            font-size: 16px;
            margin: 10px 0;
            font-weight: 400;
        }
        .add-course-item .wizard ul li span.dot-active {
            width: 34px;
            height: 34px;
            border: 1px solid var(--light);
            background-color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px 8px;
            border-radius: 50%;
            margin: auto;
            margin-bottom: 0;
            z-index: 1;
            color: var(--gray-900);
            font-size: 12px;
            font-weight: 600;
        }
        .add-course-item .wizard ul li span.dot-active .number {
            display: block;
        }
        .add-course-item .wizard ul li span.dot-active .tickmark {
            display: none;
        }
        .add-course-item .wizard ul li::after {
            content: "";
            width: 50%;
            height: 2px;
            background: var(--gray-100);
            position: absolute;
            top: 17px;
            left: 0;
        }
        .add-course-item .wizard ul li::before {
            content: "";
            width: 100%;
            height: 2px;
            background: var(--gray-100);
            position: absolute;
            top: 17px;
            right: 0;
        }
        .add-course-item .wizard ul li:first-child:before {
            width: 50%;
        }
        .add-course-item .wizard ul li:first-child::after {
            display: none;
        }
        .add-course-item .wizard ul li:last-child::before {
            display: none;
        }
        .add-course-item .wizard ul li.progress-activated::after {
            background: #03C95A;
        }
        .add-course-item .wizard ul li.progress-activated::before {
            background: #03C95A;
        }
        .add-course-item .wizard ul li.progress-activated span.dot-active {
            border-color: #03C95A;
            background-color: #03C95A;
        }
        .add-course-item .wizard ul li.progress-activated span.dot-active .number {
            display: none;
        }
        .add-course-item .wizard ul li.progress-activated span.dot-active .tickmark {
            display: block;
            color: var(--white);
            font-size: 12px;
        }
        .add-course-item .wizard ul li.progress-active::after {
            background: #03C95A;
        }
        .add-course-item .wizard ul li.progress-active span.dot-active {
            background-color: var(--gray-900);
            color: var(--white);
            border-color: var(--gray-900);
        }
    }
    
    @media (max-width: 575.98px) {
        .add-course-item .wizard ul {
            flex-direction: column;
            row-gap: 10px;
        }
        .add-course-item .wizard ul li {
            border-bottom: 2px solid var(--gray-100);
            padding-bottom: 6px;
        }
        .add-course-item .wizard ul li span.dot-active {
            display: none;
        }
        .add-course-item .wizard ul li::before {
            display: none;
        }
        .add-course-item .wizard ul li::after {
            display: none;
        }
        .add-course-item .wizard ul li.progress-activated {
            border-color: #392C7D;
        }
    }
    
    .add-course-item .profile-step {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .add-course-item .wizard-form-card {
        padding-top: 20px;
        background: var(--white);
    }
    
    .add-course-item .wizard-form-card .title {
        margin-bottom: 20px;
    }
    
    .add-course-item .add-form-btn {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
    }
    
    .add-course-item .add-form-btn .pre-btn {
        background: #E8E8E8;
        border-color: #E8E8E8;
        box-shadow: none;
        color: var(--white);
    }
    
    .add-course-item .initialization-form-set #first {
        display: block;
    }
    
    .add-course-item .initialization-form-set .main-btn {
        display: inline-flex;
        align-items: center;
        gap: 2px;
        background: #FF4667;
        border-color: #FF4667;
        color: var(--white);
    }
    
    .add-course-item .initialization-form-set .main-btn:hover {
        background: #392C7D;
        border-color: #392C7D;
        color: var(--white);
    }
    
    .add-course-item .initialization-form-set .main-btn.prev_btns {
        display: inline-flex;
        align-items: center;
        gap: 2px;
        background: var(--light);
        border-color: var(--light);
        color: var(--gray-900);
    }
    
    .add-course-item .initialization-form-set .main-btn.prev_btns:hover {
        background: #392C7D;
        border-color: #392C7D;
        color: var(--white);
    }
    
    .add-course-item .initialization-form-set fieldset {
        display: none;
    }
    
    .add-course-item .rechange-details {
        padding-bottom: 20px;
    }
    
    .add-course-item .rechange-details span {
        border-radius: 10px;
        background: rgba(5, 161, 68, 0.13);
        color: #05A144;
        padding: 20px;
        display: block;
        text-align: center;
    }
    
    .add-course-item .installation-header {
        background: var(--white);
        padding: 20px 0;
        text-align: center;
    }
    
    .add-course-item .input-block {
        margin-bottom: 16px;
    }
    
    .add-course-item .input-block .add-new-input {
        margin-bottom: 8px;
    }
    
    .add-course-item .input-block .add-new-input .link-trash {
        display: none;
        margin-left: 8px;
    }
    
    .add-course-item .input-block .add-new-input .link-trash:hover {
        color: #E70D0D;
    }
    
    .add-course-item .input-block .add-new-input:hover .link-trash {
        display: flex;
    }
    
    .add-course-item .input-block span {
        font-size: 13px;
        color: var(--gray-500);
    }
    
    .add-course-item .file-upload-btn {
        display: inline-block;
        padding: 11px 16px;
        font-size: 14px;
        color: var(--white);
        background: #392C7D;
        border: none;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        border-radius: 40px;
    }
    
    @media (max-width: 575.98px) {
        .add-course-item .file-upload-btn {
            margin-top: 20px;
        }
    }
    
    .add-course-item .file-upload-btn:hover {
        background: #FF4667;
    }
    
    .add-course-item input[type=file] {
        display: none;
    }
    
    .add-course-item .note-toolbar {
        color: #333;
        background-color: var(--white);
        border-bottom: 1px solid;
        border-color: var(--gray-100);
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }
    
    .add-course-item .note-btn {
        border-color: var(--gray-100);
    }
    
    .add-course-item .note-editor.note-frame {
        border: 1px solid var(--gray-100);
        border-radius: 4px;
    }
    
    .add-course-item .note-editor.note-frame .note-statusbar .note-resizebar {
        padding-top: 1px;
        height: 9px;
        width: 100%;
        cursor: ns-resize;
        background: var(--white);
    }
    
    .add-course-item .check:checked+.checktoggle:after {
        background-color: var(--white);
        left: 100%;
        transform: translate(calc(-90% - 3px), -45%);
    }
    
    .add-course-item .check {
        display: block;
        margin: 0;
        padding: 0;
        width: 0;
        height: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        position: absolute;
    }
    
    .add-course-item .check:checked+.checktoggle {
        background-color: #03C95A;
    }
    
    .add-course-item .relative-form {
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: 5px;
        color: #6e82a3;
        min-height: 40px;
        padding: 6px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .add-course-item .relative-file-upload {
        color: var(--white);
        background: #392C7D;
        border: 1px solid #392C7D;
        border-radius: 40px;
        padding: 6px 16px;
        font-size: 14px;
        margin-bottom: 0;
        cursor: pointer;
        position: absolute;
        right: 21px;
        text-align: center;
    }
    
    .add-course-item .relative-file-upload input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: var(--white);
        cursor: inherit;
        display: block;
    }
    
    .add-course-item .upload-img-section {
        height: 120px;
        background: var(--light);
        border: 1px dashed var(--gray-100);
        border-radius: 6px;
    }
    
    .add-course-item .upload-img-section p {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray-900);
    }
    
    .add-course-item .upload-img-section p:hover {
        color: #FF4667;
    }
    
    .add-course-item .upload-img-section span {
        font-size: 14px;
    }
    
    .add-course-item .play-btn {
        position: absolute;
        z-index: 0;
        top: 50%;
        left: 50%;
    }
    
    .add-course-item .accordion-button {
        background-color: var(--light);
        color: var(--gray-900);
        padding: 16px;
        font-size: 15px;
    }
    
    .add-course-item .accordion-button:not(.collapsed) {
        color: var(--gray-900);
        background-color: var(--light);
        box-shadow: none;
    }
    
    .add-course-item .accordion-button:focus {
        border-color: rgba(57, 44, 125, 0.3);
        box-shadow: none;
    }
    
    .add-course-item .accordion-button:after,
    .add-course-item .accordion-button:not(.collapsed)::after {
        background-image: none;
    }
    
    .add-course-item .accordion-button:after {
        content: "\f13a";
        font-family: "Fontawesome";
        font-size: 14px;
        line-height: 1;
        color: var(--white);
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 3.125rem;
        color: #242B3A;
    }
    
    .add-course-item .accordion-body {
        padding: 1rem;
        font-size: 0.8125rem;
        color: #677788;
        background-color: var(--light);
    }
    
    .add-course-item .accordion-item {
        color: var(--gray-500);
        background-color: var(--white);
        border: 1px solid var(--light-900);
    }
    
    .add-course-item .accordions-items-seperate .accordion-item:not(:first-of-type) {
        margin-block-start: 1rem;
    }
    
    .add-course-item .accordions-items-seperate .accordion-item {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .add-course-item .custom_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .add-course-item .custom_check {
        color: var(--gray-500) !important;
        display: inline-block;
        position: relative;
        font-size: 14px !important;
        margin-bottom: 15px;
        padding-left: 28px;
        cursor: pointer;
        font-weight: 400 !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        font-family: "Noto Sans", sans-serif;
    }
    
    .add-course-item .custom_check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border: 1px solid var(--gray-100);
        background-color: var(--white);
        border-radius: 2px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    .add-course-item .custom_check .checkmark::after {
        content: "\e92b";
        font-family: "feather" !important;
        font-weight: 400;
        position: absolute;
        display: none;
        left: 2px;
        top: -1px;
        color: var(--white);
    }
    
    .add-course-item .custom_check input:checked~.checkmark:after {
        display: block;
    }
    
    .add-course-item .custom_check input:checked~.checkmark {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .add-course-item .add-new-topic {
        color: #FF4667;
        font-size: 14px;
    }
    
    .add-course-item .add-new-topic:hover {
        color: #392C7D;
    }
    
    .add-course-item .btn.add-edit-btn {
        background: #392C7D;
        color: var(--white);
    }
    
    .add-course-item .btn.add-edit-btn:hover {
        background: #FF4667;
    }
    
    .add-course-item .input-block-link {
        margin-bottom: 24px;
    }
    
    .add-course-item .play-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(1, 1, 1, 0.4);
        border-radius: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    @media (max-width: 575.98px) {
        .add-course-item .play-icon {
            width: 25px;
            height: 25px;
        }
        .add-course-item .play-icon i {
            font-size: 6px;
        }
    }
    
    .add-course-item .modal-content {
        position: relative;
        width: 80%;
        max-width: 720px;
        background: #000;
        padding: 0;
        border-radius: 8px;
    }
    
    .add-course-item .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
    
    .add-course-item iframe {
        width: 100%;
        height: 400px;
        border: none;
    }
    
    .add-course-item .edit-btn1 {
        padding: 4px;
        background: var(--white);
        color: #392C7D;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        margin-right: 8px;
    }
    
    .add-course-item .edit-btn1:hover {
        background: #392C7D;
        color: var(--white);
    }
    
    .add-course-item .delete-btn1 {
        padding: 4px;
        background: var(--white);
        color: #E70D0D;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }
    
    .add-course-item .delete-btn1:hover {
        background: #E70D0D;
        color: var(--white);
    }
    
    .pricing-plan-sec {
        position: relative;
        padding: 60px 0;
    }
    
    @media (max-width: 991.98px) {
        .pricing-plan-sec {
            padding: 50px 0;
        }
    }
    
    .pricing-plan-sec h2 {
        font-size: 32px;
    }
    
    .pricing-plan-sec .pricing-cover {
        margin: 40px 0 60px;
    }
    
    .pricing-plan-sec .pricing-item {
        padding: 20px;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 10px;
    }
    
    .pricing-plan-sec .pricing-item h1 {
        font-size: 38px;
    }
    
    .pricing-plan-sec .pricing-item p {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .pricing-plan-sec .form-check-input {
        background-color: var(--gray-100);
        border: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    }
    
    .pricing-plan-sec .form-check-input:checked {
        background-color: #392C7D;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    }
    
    .pricing-plan-sec .form-check-input:focus {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    }
    
    .pricing-plan-sec table tr th {
        font-size: 18px;
        border: none;
        padding: 12px 15px;
    }
    
    @media (max-width: 991.98px) {
        .pricing-plan-sec table tr th {
            font-size: 16px;
        }
    }
    
    .pricing-plan-sec table tr td {
        border: 1px solid var(--gray-100);
        padding: 12px 15px;
        color: var(--gray-900);
        font-size: 16px;
        font-weight: 500;
    }
    
    @media (max-width: 991.98px) {
        .pricing-plan-sec table tr td {
            font-size: 14px;
        }
    }
    
    .pricing-plan-sec table tr.basic td {
        font-size: 18px;
        color: var(--gray-900);
    }
    
    @media (max-width: 991.98px) {
        .pricing-plan-sec table tr.basic td {
            font-size: 16px;
        }
    }
    
    .pricing-plan-sec .btn-start-free {
        color: var(--gray-900);
        background-color: var(--light);
    }
    
    .pricing-plan-sec .btn-start-free:hover {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .faq-sec {
        position: relative;
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .faq-sec {
            padding: 50px 0;
        }
    }
    
    .faq-sec .faq-img {
        position: relative;
        width: fit-content;
    }
    
    .faq-sec .accordion-item {
        margin-top: 16px;
        border: 1px solid var(--gray-100);
        border-radius: 8px;
        background-color: var(--white);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
    }
    
    .faq-sec .accordion-button {
        font-size: 18px;
        font-weight: 600;
        box-shadow: none;
        display: flex;
        justify-content: space-between;
        color: var(--gray-900);
        background-color: transparent;
    }
    
    @media (max-width: 575.98px) {
        .faq-sec .accordion-button {
            font-size: 16px;
        }
    }
    
    .faq-sec .accordion-button::after {
        display: none;
    }
    
    .faq-sec .accordion-button i {
        transform: rotate(45deg);
        transition: 0.2s;
    }
    
    .faq-sec .accordion-button.accordion-button.collapsed i {
        transform: rotate(90deg);
    }
    
    .faq-banner-bg::before {
        position: absolute;
        content: "";
        width: 42.45%;
        height: 100%;
        background-color: #392C7D;
        z-index: -1;
        top: 0;
        left: 0;
    }
    
    @media (max-width: 991.98px) {
        .faq-banner-bg::before {
            background-color: transparent;
        }
    }
    
    .faq-card {
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .faq-title {
        margin-bottom: 0;
    }
    
    .faq-title a {
        padding: 15px;
        font-weight: 600;
        font-size: 16px;
        color: var(--gray-900);
        position: relative;
        display: block;
        padding-right: 60px;
    }
    
    .faq-title>a:after {
        font-family: "Font Awesome 5 Free";
        content: "+";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        color: var(--gray-900);
        width: 16px;
        height: 16px;
        border: 1px solid var(--gray-900);
        border-radius: 50px;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .faq-title>a:not(.collapsed) {
        color: #FF4667;
    }
    
    .faq-title>a:not(.collapsed)::after {
        content: "\f068";
        color: #FF4667;
        border: 1px solid #FF4667;
    }
    
    .faq-detail {
        padding: 0 15px 15px;
    }
    
    .faq-detail p {
        font-size: 14px;
    }
    
    .faq-section .faq-img .faq-bg {
        border-radius: 30px;
    }
    
    .faq-section .faq-img:hover .faq-bg {
        transform: scale(1.1);
        transition: 1s;
    }
    
    .faq-section .faq-img .faq-badge {
        position: absolute;
        width: 88px;
        height: 84px;
        padding: 6px 8px;
        border-radius: 30px;
        background: #FFCB3C;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        top: 15px;
        right: 15px;
    }
    
    .faq-section .faq-img .faq-badge i {
        font-size: 48px;
        color: #242B3A;
        animation: verticalRotate 5s linear infinite;
    }
    
    @media (max-width: 767.98px) {
        .faq-section h2 {
            font-size: 24px;
            line-height: 30px;
        }
    }
    
    @media (max-width: 575.98px) {
        .faq-section h2 {
            font-size: 20px;
            line-height: 26px;
        }
    }
    
    .faq-content .accordion {
        position: relative;
        z-index: 1;
    }
    
    .faq-content .accordion .accordion-item {
        border: 1px solid var(--gray-100);
        border-radius: 16px;
        overflow: hidden;
        padding: 20px;
        margin-bottom: 16px;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
    }
    
    .faq-content .accordion .accordion-item:last-child {
        margin-bottom: 0;
    }
    
    @media (max-width: 991.98px) {
        .faq-content .accordion .accordion-item {
            padding: 16px;
        }
    }
    
    .faq-content .accordion .accordion-item .accordion-body::before {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        background-repeat: no-repeat;
        background-position: right top;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    .faq-content .accordion-button {
        background-color: var(--white);
        color: var(--gray-900);
        padding: 0;
        font-size: 18px;
        font-weight: 700;
    }
    
    @media (max-width: 767.98px) {
        .faq-content .accordion-button {
            font-size: 16px;
        }
    }
    
    .faq-content .accordion-button:not(.collapsed) {
        color: var(--gray-900);
        background: transparent;
        font-size: 18px;
        box-shadow: none;
        position: relative;
        padding-bottom: 16px;
    }
    
    .faq-content .accordion-button:not(.collapsed)::after {
        transform: rotate(45deg);
    }
    
    .faq-content .accordion-button:after {
        content: "+";
        font-family: "Fontawesome";
        background-color: transparent;
        background-image: none;
    }
    
    .faq-content .accordion-body {
        padding: 0;
        font-size: 16px;
    }
    
    @media (max-width: 767.98px) {
        .faq-content .accordion-body {
            font-size: 14px;
        }
    }
    
    .blog-sec {
        position: relative;
        padding: 60px 0;
    }
    
    @media (max-width: 991.98px) {
        .blog-sec {
            padding: 50px 0 50px;
        }
    }
    
    .blog-sec .text-truncate.line-clamb-2 {
        -webkit-line-clamp: 2;
    }
    
    .blog-sec .blog {
        margin-bottom: 24px;
    }
    
    .blog-sec .blog-image {
        position: relative;
        overflow: hidden;
    }
    
    .blog-sec .blog-image img {
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        transform: translateZ(0);
        -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    }
    
    .blog-sec .blog-image img:hover {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        transform: scale(1.15);
    }
    
    .blog-sec .blog-body {
        margin-top: -20px;
        z-index: 1;
        position: relative;
        padding: 0 15px;
    }
    
    @media (max-width: 1399.98px) {
        .blog-sec .blog-body {
            padding: 0 10px;
        }
    }
    
    @media (max-width: 1399.98px) {
        .blog-sec .blog-body h3 {
            font-size: 19px;
        }
    }
    
    @media (max-width: 575.98px) {
        .blog-sec .blog-body h3 {
            font-size: 17px;
        }
    }
    
    .blog-sec .blog-body .rounded-2.border {
        padding: 20px 18px !important;
    }
    
    .blog-sec .blog-info p {
        color: var(--gray-500);
    }
    
    .blog-sec .blog-info ul li {
        position: relative;
        display: flex;
        align-items: center;
        margin-right: 3px;
    }
    
    @media (max-width: 1399.98px) {
        .blog-sec .blog-info ul li {
            margin-right: 0;
        }
    }
    
    .blog-sec .blog-info ul li img {
        width: 16px;
    }
    
    .blog-sec .blog-info ul li::before {
        position: relative;
        content: "";
        width: 1px;
        height: 15px;
        background-color: var(--gray-100);
        display: block;
        margin-right: 6px;
    }
    
    @media (max-width: 1399.98px) {
        .blog-sec .blog-info ul li::before {
            margin-right: 4px;
        }
    }
    
    .blog-sec .blog-info ul li:first-child::before {
        display: none;
    }
    
    @media (max-width: 1399.98px) {
        .blog-sec .blog-info p {
            font-size: 13px !important;
        }
    }
    
    .blog-sec .slick-dots {
        bottom: -65px;
    }
    
    @media (max-width: 1399.98px) {
        .blog-sec .slick-dots {
            bottom: -35px;
        }
    }
    
    .blog-sec .slick-dots li {
        margin: 0 4px;
        width: auto;
    }
    
    .blog-sec .slick-dots li button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gray-100);
    }
    
    .blog-sec .slick-dots li.slick-active button {
        width: 50px;
        border-radius: 5px;
        background-color: #FF4667;
    }
    
    .blog-sec .blog-slider {
        margin-bottom: 70px;
    }
    
    @media (max-width: 1399.98px) {
        .blog-sec .blog-slider {
            margin-bottom: 45px;
        }
    }
    
    .blog-sec .blog-slider .slick-list {
        margin: 0 -12px;
    }
    
    .blog-sec .blog-slider .slick-slide {
        margin: 0 12px;
    }
    
    .blog-widget {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    
    .blog-widget .card-body {
        padding: 0px;
    }
    
    .blog-widget .card-header {
        border-bottom: 0px;
        padding: 0px;
        margin-bottom: 20px;
    }
    
    .category-widget h5 {
        margin-bottom: 20px;
    }
    
    .category-widget h5 a:hover {
        color: #FF4667;
        margin-left: 5px;
    }
    
    .category-widget h5 span {
        font-weight: 400;
        color: var(--gray-500);
    }
    
    .tags-widget .tag {
        background-color: var(--light-900) !important;
        color: var(--gray-900) !important;
    }
    
    .blog-search .btn {
        font-size: 15px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 6;
    }
    
    .blog-search .form-control {
        border-radius: 4px !important;
        height: 38px;
    }
    
    .blog-search .form-control::placeholder {
        color: var(--gray-300);
    }
    
    .post-widget .post-thumb {
        border-radius: 5px;
        width: 80px;
        float: left;
        overflow: hidden;
    }
    
    .post-widget .post-thumb img {
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        transform: translateZ(0);
        -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    }
    
    .post-widget .post-thumb img:hover {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        transform: scale(1.15);
    }
    
    .post-widget .post-info {
        margin-left: 95px;
    }
    
    .post-widget .post-info h5 {
        font-weight: 500;
    }
    
    .post-widget li {
        display: table;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .post-widget li h5 {
        -webkit-line-clamp: 2;
    }
    
    .blog-sec .blog-blockquote {
        border-left: 2px solid #FF4667 !important;
    }
    
    .blog-sec .blog-avatar {
        width: 120px;
        height: 120px;
    }
    
    .blog-sec .reply {
        margin-left: 60px;
        background-color: var(--light-200);
        border: 1px solid var(--light);
    }
    
    @media (max-width: 575.98px) {
        .blog-sec .reply {
            margin-left: 20px;
        }
    }
    
    @media (max-width: 575.98px) {
        .blog-sec .review-info p {
            font-size: 16px;
        }
    }
    
    .blog-sec textarea.form-control {
        height: 100px;
    }
    
    .blog-sec .custom_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .blog-sec .custom_check {
        color: var(--gray-700) !important;
        display: inline-block;
        position: relative;
        font-size: 14px !important;
        padding-left: 24px;
        cursor: pointer;
        font-weight: 400 !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        line-height: 18px;
        font-family: "Noto Sans", sans-serif;
    }
    
    .blog-sec .custom_check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 16px;
        width: 16px;
        border: 1px solid var(--gray-100);
        background-color: var(--white);
        border-radius: 2px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    .blog-sec .custom_check .checkmark::after {
        content: "\e92b";
        font-family: "feather" !important;
        font-weight: 400;
        position: absolute;
        display: none;
        left: 2px;
        top: -1px;
        color: var(--white);
        font-size: 11px;
    }
    
    .blog-sec .custom_check input:checked~.checkmark:after {
        display: block;
    }
    
    .blog-sec .custom_check input:checked~.checkmark {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .blog {
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 10px;
        margin-bottom: 1.5rem;
    }
    
    .blog .blog-image {
        position: relative;
        overflow: hidden;
        border-radius: 10px 10px 0 0;
    }
    
    .blog .blog-image img {
        border-radius: 10px 10px 0 0;
    }
    
    .blog .blog-item {
        padding: 20px;
    }
    
    .blog .blog-item p {
        font-size: 14px;
    }
    
    .blog .blog-item .badge {
        font-size: 10px;
        font-weight: 500;
        padding: 7px 8px;
    }
    
    .blog .blog-item .user-profile a.user-img {
        width: 24px;
        height: 24px;
        display: inline-flex;
        border-radius: 50%;
        margin-right: 8px;
    }
    
    .blog .blog-item .user-profile a.user-img img {
        border-radius: 50%;
        width: 100%;
        height: 100%;
    }
    
    .blog .blog-item .user-profile .user-name {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .blog .blog-item .user-profile .user-name:hover {
        color: #FF4667;
    }
    
    .blog .blog-info ul li {
        display: inline-flex;
        align-items: center;
    }
    
    .blog .blog-info ul li p {
        line-height: normal;
    }
    
    .blog-widget {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        padding: 20px;
    }
    
    .blog-widget .categories-list h6 {
        font-weight: 500;
        margin-bottom: 16px;
    }
    
    .blog-widget .categories-list h6 span {
        font-weight: 400;
        color: var(--gray-500);
    }
    
    .blog-widget .categories-list h6:last-child {
        margin-bottom: 0;
    }
    
    .blog-widget .recent-blog-list li {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }
    
    .blog-widget .recent-blog-list li:last-child {
        margin-bottom: 0;
    }
    
    .blog-widget .recent-blog-list li .post-thumb {
        flex-shrink: 0;
        margin-right: 20px;
        width: 80px;
        height: 80px;
        border-radius: 5px;
    }
    
    .blog-widget .recent-blog-list li .post-thumb img {
        border-radius: 5px;
    }
    
    .blog-widget .recent-blog-list li .post-info h6 {
        margin-bottom: 4px;
        white-space: normal;
    }
    
    .blog-widget .recent-blog-list li .post-info p {
        font-size: 14px;
    }
    
    .blog-widget .latest-tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .blog-widget .latest-tags li {
        margin-right: 8px;
        margin-bottom: 8px;
    }
    
    .blog-widget .latest-tags li:last-child {
        margin-right: 0;
    }
    
    .blog-widget .latest-tags li a {
        background: var(--light-900);
        border-radius: 5px;
        padding: 8px 12px;
        display: inline-flex;
    }
    
    .blog-widget .latest-tags li a:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .blog-search .search-btn {
        width: 30px;
        height: 30px;
        background: #FF4667;
        color: var(--white);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 4px;
        top: 4px;
        border: 0;
    }
    
    .blog-search .search-btn:hover {
        background: #392C7D;
    }
    
    .blog-details p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .blog-details .blog-reviews {
        padding: 20px;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .blog-details .blog-reviews {
            padding: 16px;
        }
    }
    
    .blog-details .blog-reviews p {
        font-size: 16px;
    }
    
    .blog-details .comment {
        padding: 20px;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .blog-details .comment {
            padding: 16px;
        }
    }
    
    .blog-slider .slick-list {
        margin: 0 -12px;
    }
    
    .blog-slider .slick-slide {
        margin: 0 12px;
    }
    
    .blog-slider .slick-dots li {
        width: 10px;
        height: 10px;
        border-radius: 40px;
        background: var(--gray-100);
    }
    
    .blog-slider .slick-dots li.slick-active {
        width: 50px;
        background: #FF4667;
    }
    
    .blog-card {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.1803921569);
    }
    
    .blog-card .blog-img {
        border-radius: 10px;
        overflow: hidden;
    }
    
    .blog-card .blog-img img {
        transition: 1s;
    }
    
    .blog-card .blog-img:hover img {
        transform: scale(1.2);
        transition: 1s;
    }
    
    .blog-card .blog-content {
        padding: 20px;
        position: relative;
    }
    
    .blog-card .blog-content h5 {
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .blog-card .blog-content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .blog-card .blog-user {
        border-top: 1px solid var(--gray-100);
        padding-top: 20px;
    }
    
    .blog-card .blog-user .avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }
    
    .blog-card .blog-user .avatar img {
        border-radius: 50%;
    }
    
    .blog-card .blog-user p {
        font-size: 14px;
    }
    
    .blog-card .blog-user p i {
        font-size: 18px;
        margin-right: 5px;
    }
    
    .blog-section {
        background: var(--white);
        padding: 60px 0;
    }
    
    @media (max-width: 767.98px) {
        .blog-section {
            padding: 40px 0;
        }
    }
    
    .blog-section .blog-bg-01 {
        position: absolute;
        top: -245px;
        right: 0;
    }
    
    @media (max-width: 767.98px) {
        .blog-section .blog-bg-01 {
            display: none;
        }
    }
    
    .timeline-flow {
        position: relative;
        z-index: 1;
    }
    
    .timeline-flow::before {
        content: "";
        width: 1px;
        height: 100%;
        border-left: 1px dashed var(--gray-200);
        position: absolute;
        left: 4px;
        top: 18px;
        z-index: -1;
    }
    
    .timeline-flow::after {
        content: "";
        width: 10px;
        height: 10px;
        background: #03C95A;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 15px;
        z-index: -1;
    }
    
    .timeline-flow:last-child::before {
        display: none;
    }
    
    .list-icons a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
    }
    
    .list-icons a:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .list-icons a.active {
        background: #FF4667;
        color: var(--white);
        border-color: #FF4667;
    }
    
    .price-top {
        color: #FF4667;
        font-weight: 600;
        background: var(--white);
        padding: 4px 8px;
        border-radius: 5px;
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    
    .price-top del {
        color: #857DAD;
    }
    
    .question-info .soft-primary {
        color: #AEA9C9;
    }
    
    .question-info .soft-secondary {
        color: #FFB5C1;
    }
    
    .form-switch-end .form-check-input {
        float: unset;
        margin-left: 8px;
    }
    
    .delete-item {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--gray-100);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    .delete-item:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .certificate {
        border: none;
    }
    
    .certificate .card-header {
        border-bottom: 1px solid var(--gray-100);
        padding: 0;
        padding-bottom: 22px;
        margin-bottom: 20px;
    }
    
    .edit-delete-icon {
        gap: 8px;
    }
    
    .edit-delete-icon li a {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        border: 1px solid var(--gray-100);
        font-size: 14px;
    }
    
    .edit-delete-icon li a:hover {
        background-color: #FF4667;
        color: var(--white);
        border-color: #FF4667;
    }
    
    .modal-content .modal-header .custom-btn-close {
        border: none;
        color: var(--gray-300);
    }
    
    .modal-content .modal-header .custom-btn-close:hover {
        background-color: transparent;
    }
    
    .earnings-icon {
        width: 76px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        border-radius: 10px;
        color: var(--white);
        flex-shrink: 0;
    }
    
    @media (max-width: 1399.98px) {
        .earnings-icon {
            width: 75px;
            height: 75px;
        }
    }
    
    .yearpicker {
        padding: 4px 8px 4px 30px;
    }
    
    .icon-form {
        position: relative;
    }
    
    .icon-form .form-icon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        line-height: normal;
    }
    
    .icon-form input::placeholder {
        color: var(--gray-500);
    }
    
    .alert {
        padding: 0.625rem 0.85rem;
        border-radius: 4px;
        font-size: 0.8125rem;
    }
    
    .alert.alert-dismissible {
        padding: 0.625rem 2.25rem 0.625rem 0.85rem;
    }
    
    .alert i {
        font-size: 20px;
    }
    
    .alert .btn-close {
        background-image: none;
        padding: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .alert .btn-close i {
        font-size: 18px;
        line-height: 18px;
    }
    
    .alert:last-child {
        margin-bottom: 0;
    }
    
    .alert .alert-link {
        font-weight: 600;
    }
    
    .payouts .payout-alert {
        font-size: 16px;
    }
    
    .payouts .payout-alert .btn-close {
        background-image: none;
        color: var(--white);
        opacity: 1;
        font-size: 16px;
        top: 50%;
        transform: translateY(-50%);
        height: auto;
    }
    
    .payouts .earning-this-month {
        background-color: var(--light-500);
        padding: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    
    @media (max-width: 1399.98px) {
        .payouts .earning-this-month {
            padding: 12px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .payouts .earning-this-month {
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 575.98px) {
        .payouts .earning-this-month .earn-img {
            width: 60px;
        }
    }
    
    .payouts .earning-this-month .earning-bg1 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    
    .payouts .earning-this-month .earning-bg2 {
        position: absolute;
        left: 10%;
        bottom: 0;
        z-index: -1;
    }
    
    .payouts .earning-this-month h6 {
        font-weight: 400;
        color: var(--gray-500);
    }
    
    @media (max-width: 1399.98px) {
        .payouts .earning-this-month h6 {
            font-size: 16px;
        }
    }
    
    .payouts .earning-this-month h5 {
        font-weight: 700;
        color: #5625E8;
    }
    
    .payouts .earning-this-month p {
        font-size: 13px;
    }
    
    .payouts .earning-this-month .btn-dark {
        font-size: 12px;
        margin-left: auto;
    }
    
    @media (max-width: 1399.98px) {
        .payouts .earning-this-month .btn-dark {
            padding: 5px 8px;
        }
    }
    
    @media (max-width: 575.98px) {
        .payouts .earning-this-month .btn-dark {
            margin-left: auto;
        }
    }
    
    .payouts .dropdown .dropdown-toggle:after {
        font-size: 8px;
    }
    
    .payouts .dropdown .dropdown-toggle {
        border-radius: 5px;
        border: 1px solid var(--gray-100);
        height: 38px;
    }
    
    .payouts .dropdown-menu {
        padding: 10px;
    }
    
    .form-info {
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        margin-top: 4px;
    }
    
    .form-info i {
        margin-right: 4px;
    }
    
    .page-title {
        border-bottom: 1px solid var(--gray-100);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .statements .dropdown .dropdown-toggle:after {
        font-size: 8px;
    }
    
    .statements .dropdown .dropdown-toggle {
        border-radius: 5px;
        border: 1px solid var(--gray-100);
        height: 38px;
    }
    
    .statements .dropdown-menu {
        padding: 10px;
    }
    
    .instructor-message .received-message {
        padding: 8px 16px !important;
    }
    
    .instructor-message .sent-message {
        padding: 8px 16px !important;
    }
    
    .instructor-message .chat-cont-left {
        width: auto;
        border: none;
        background-color: var(--light-900);
        border-radius: 5px;
        height: 100%;
    }
    
    .instructor-message .chat-cont-left .chat-card {
        border: none;
        background-color: transparent;
    }
    
    .instructor-message .chat-cont-left .chat-card p {
        font-size: 14px;
    }
    
    .instructor-message .chat-cont-left .chat-header {
        padding: 15px 15px 0;
    }
    
    .instructor-message .chat-cont-left .chat-header .form-control {
        color: var(--gray-500);
        padding-left: 32px;
    }
    
    .instructor-message .chat-cont-left .chat-header .form-control::placeholder {
        color: var(--gray-500);
        opacity: 1;
    }
    
    .instructor-message .chat-cont-left .chat-header i {
        color: var(--gray-500);
    }
    
    .instructor-message .chat-cont-left .chat-users-list .chat-member {
        padding: 12px;
        margin-bottom: 8px;
        box-shadow: none;
    }
    
    @media (max-width: 991.98px) {
        .instructor-message .chat-cont-right {
            margin-top: 15px;
        }
    }
    
    .instructor-message .chat-cont-right .card-header {
        position: relative;
    }
    
    .instructor-message .chat-cont-right .input-group-text {
        border-color: #E7E7E7;
    }
    
    .instructor-message .chat-cont-right .chat-search-btn {
        font-size: 20px;
    }
    
    .instructor-message .chat-cont-right .send-action-btn {
        font-size: 14px;
        color: var(--gray-500);
        border: none;
        background-color: transparent;
    }
    
    .course-tab .nav li a {
        border-radius: 50px;
        background-color: var(--light-900);
        padding: 8px 16px;
        font-size: 16px;
        font-weight: 500;
    }
    
    .course-image {
        transition: 0.3s;
    }
    
    .course-image img {
        transition: 0.3s;
    }
    
    .course-image:hover img {
        transform: scale(1.2);
    }
    
    .modal .btn.bg-gray-100 {
        color: var(--gray-900);
        border: none;
    }
    
    .modal .btn.bg-gray-100:hover {
        background-color: var(--light) !important;
    }
    
    .section-header .sub-title {
        display: inline-block;
        border-radius: 30px;
        font-weight: 500;
        padding: 4px 15px;
        background: rgb(255, 237, 240);
        color: rgb(255, 70, 103);
        margin-bottom: 15px;
    }
    
    .section-header .title {
        font-size: 36px;
        line-height: 1.33;
        margin: 0 0;
        letter-spacing: -0.75px;
        text-transform: capitalize;
    }
    
    .section-header .title span:not(.svg-icon) {
        color: var(--tg-theme-primary);
        position: relative;
        color: var(--tg-common-color-white);
        padding: 0 13px 0 20px;
        font-weight: var(--tg-fw-bold);
        display: inline-block;
        z-index: 1;
    }
    
    .section-header .title span:not(.svg-icon)>svg {
        position: absolute;
        left: 0;
        top: -5px;
        width: 100%;
        height: 59px;
        z-index: -1;
        color: var(--tg-theme-secondary);
    }
    
    .section-header .title .svg-icon {
        position: absolute;
        right: -50px;
        top: -50px;
        width: 61px;
        height: 68px;
    }
    
    .section-header .title .svg-icon svg {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .section-header .title .svg-icon path {
        stroke: var(--tg-heading-color);
    }
    
    .section-header p {
        margin-bottom: 0;
    }
    
    .section-header.white-title .sub-title {
        background: var(--tg-theme-primary);
        color: var(--tg-common-color-white);
    }
    
    .section-header.white-title .title {
        color: var(--tg-common-color-white);
    }
    
    .section-header.white-title .title span:not(.svg-icon) {
        color: var(--tg-common-color-white);
    }
    
    .section-header.white-title p {
        color: #ACAACC;
    }
    
    .section-header .desc {
        margin: 10px 0 0;
    }
    
    .instructor-item {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 24px;
        flex-direction: column;
        text-align: center;
        border: 1px solid var(--gray-100);
        padding: 24px;
        border-radius: 10px;
        position: relative;
        background: var(--white);
    }
    
    .instructor-item.instructor-item-two {
        display: block;
        gap: 0;
        background: var(--white);
        border: 1px solid var(--gray-100);
        box-shadow: none;
        border-radius: 10px;
        padding: 0;
        z-index: 3;
        overflow: hidden;
        margin-bottom: 30px;
    }
    
    .instructor-item.instructor-item-two:hover .instructor__thumb-two .shape-one {
        color: var(--tg-theme-primary);
    }
    
    .instructor-item.instructor-item-two .instructor-content .title {
        font-size: 20px;
    }
    
    @media (max-width: 991.98px) {
        .instructor-item.instructor-item-two .instructor-content .title {
            font-size: 18px;
        }
    }
    
    @media (max-width: 767.98px) {
        .instructor-item.instructor-item-two .instructor-content .title {
            font-size: 16px;
        }
    }
    
    .instructor-item.instructor-item-two .instructor-content .designation {
        font-size: 16px;
    }
    
    @media (max-width: 767.98px) {
        .instructor-item.instructor-item-two .instructor-content .designation {
            font-size: 14px;
        }
    }
    
    .instructor-item.instructor-item-two .verify {
        width: 32px;
        height: 32px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #03C95A;
        font-size: 24px;
    }
    
    .instructor-item.instructor-item-two .course-count {
        font-size: 14px;
        font-weight: 500;
        padding: 4px 10px;
        color: var(--gray-900);
        border-radius: 20px;
        border: 1px solid var(--gray-900);
        background: var(--white);
    }
    
    .instructor-item.instructor-item-two .course-count:hover {
        background: var(--gray-900);
        color: var(--white);
    }
    
    .instructor-item.instructor-item-two .favourite {
        width: 26px;
        height: 26px;
        background: var(--light-500);
        justify-content: center;
        border-radius: 30px;
    }
    
    .instructor-item.instructor-item-two .favourite:hover,
    .instructor-item.instructor-item-two .favourite.selected {
        color: #FF4667;
    }
    
    .instructor-item.instructor-item-two .instructor-content {
        padding: 20px;
    }
    
    .instructor-item.instructor-item-two .instructor-content .designation {
        margin-bottom: 16px;
    }
    
    .instructor-item .instructors-img {
        position: relative;
    }
    
    .instructor-item .favourite {
        display: inline-flex;
        align-items: center;
        padding: 5px;
        border-radius: 30px;
        font-size: 16px;
        color: var(--gray-900);
    }
    
    .instructor-item .favourite:hover,
    .instructor-item .favourite.selected {
        color: #FF4667;
    }
    
    .instructor-item .instructor-bottom {
        border-top: 1px solid var(--gray-100);
    }
    
    .instructor-item.instructor-item-three {
        display: block;
        gap: 0;
        background-color: #342777;
        border: 1px solid #483D85;
        border-radius: 10px;
        z-index: 3;
        overflow: hidden;
        margin-bottom: 30px;
    }
    
    .instructor-item.instructor-item-three:hover .instructor__thumb-two .shape-one {
        color: var(--tg-theme-primary);
    }
    
    .instructor-item.instructor-item-three .instructors-img {
        position: relative;
    }
    
    .instructor-item.instructor-item-three .instructors-img img {
        border-radius: 10px;
    }
    
    .instructor-item.instructor-item-three .instructors-img .verify {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--white);
        width: 32px;
        height: 32px;
    }
    
    .instructor-item.instructor-item-three .instructors-img .verify img {
        width: auto;
        height: auto;
    }
    
    .instructor-item.instructor-item-three .favourite {
        width: 30px;
        height: 30px;
        background: var(--white);
        justify-content: center;
        border-radius: 30px;
        bottom: 10px;
        right: 10px;
        top: auto;
    }
    
    .instructor-item.instructor-item-three .favourite:hover {
        color: #FF4667;
    }
    
    .instructor-item.instructor-item-three .instructor-content {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .instructor-item.instructor-item-three .instructor-content .title {
        color: var(--white);
    }
    
    .instructor-item.instructor-item-three .instructor-content .designation {
        color: var(--gray-100);
        text-align: left;
        margin-bottom: 0;
    }
    
    .instructor-item.instructor-item-three .instructor-content .rating {
        margin-bottom: 0;
        color: var(--white);
    }
    
    .instructor-item.instructor-item-three .instructor-content .rating i {
        color: #FFC107;
    }
    
    .instructor-item-four {
        display: block;
        padding: 0;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 24px;
    }
    
    .instructor-item-four .instructors-img {
        position: relative;
        border-radius: 10px 10px 0 0;
    }
    
    .instructor-item-four .instructors-img img {
        border-radius: 10px 10px 0 0;
        width: 100%;
    }
    
    .instructor-item-four .instructors-img .verify {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--white);
        width: 32px;
        height: 32px;
    }
    
    .instructor-item-four .instructors-img .verify img {
        width: auto;
        height: auto;
    }
    
    .instructor-item-four .favourite {
        width: 30px;
        height: 30px;
        background: var(--white);
        justify-content: center;
        border-radius: 30px;
        z-index: 2;
        top: 10px;
        right: 10px;
    }
    
    .instructor-item-four .favourite:hover {
        color: #FF4667;
    }
    
    .instructor-item-four .featured-img {
        width: 48px;
        height: 48px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .instructor-item-four .instructor-content {
        padding: 24px;
    }
    
    .instructor-item-four .instructor-content .title {
        margin-bottom: 4px;
        font-size: 20px;
    }
    
    @media (max-width: 991.98px) {
        .instructor-item-four .instructor-content .title {
            font-size: 18px;
        }
    }
    
    @media (max-width: 767.98px) {
        .instructor-item-four .instructor-content .title {
            font-size: 16px;
        }
    }
    
    .instructor-item-four .instructor-content .designation {
        color: #5625E8;
        text-decoration: underline;
        padding-bottom: 15px;
        margin: 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .instructor-item-four .instructor-content .student-count {
        padding: 15px 0 0;
        color: var(--gray-500);
    }
    
    .instructor-item-four .instructor-content .student-count i {
        color: #FF4667;
    }
    
    .instructor-item-five {
        border: 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-bottom: 24px;
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
        display: block;
    }
    
    .instructor-item-five .instructors-img {
        height: 100%;
    }
    
    .instructor-item-five .instructors-img img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    
    .instructor-item-five .instructor-overlay {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        overflow: hidden;
        height: 0;
        background: rgba(57, 44, 125, 0.8980392157);
        opacity: 0.9;
        z-index: 1;
        display: flex;
        justify-content: end;
        flex-direction: column;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .instructor-item-five .instructor-overlay .favourite {
        background: var(--white);
        top: 20px;
        right: 20px;
    }
    
    .instructor-item-five .instructor-overlay .instructor-content {
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1;
        text-align: left;
    }
    
    @media (max-width: 991.98px) {
        .instructor-item-five .instructor-overlay .instructor-content {
            padding: 10px;
        }
    }
    
    .instructor-item-five .instructor-overlay .instructor-content h6 {
        font-weight: 700;
        font-size: 16px;
        color: var(--white);
        margin-bottom: 0.25rem;
    }
    
    .instructor-item-five .instructor-overlay .instructor-content p {
        color: var(--white);
    }
    
    .instructor-item-five .instructor-overlay .instructor-content .view-link {
        color: var(--white);
        font-size: 18px;
    }
    
    .instructor-item-five .instructor-overlay .instructor-content .view-link:hover i {
        color: #FF4667;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .instructor-item-five .instructor-overlay .instructor-content .view-link i {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .instructor-item-five:hover .instructor-overlay {
        height: 100%;
        bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .instructor-item-six {
        padding: 20px;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        display: block;
        text-align: left;
    }
    
    .instructor-item-six .favourite {
        background: var(--white);
        left: 10px;
        right: auto;
    }
    
    .instructor-item-six .instructor-bottom {
        padding-top: 16px;
    }
    
    .instructor-item-six .instructors-img {
        margin-bottom: 20px;
    }
    
    .instructor-item-six .instructors-img img {
        border-radius: 10px;
        -webkit-transition: 0.3s;
        -ms-transition: 0.3s;
        transition: 0.3s;
    }
    
    .instructor-item-six .instructor-content .rating {
        justify-content: start;
        margin-bottom: 4px;
    }
    
    .instructor-item-six .instructor-content .title {
        font-size: 18px;
    }
    
    .instructor-item-seven {
        padding: 20px;
        text-align: left;
        flex-direction: unset;
        gap: 0;
    }
    
    @media (max-width: 767.98px) {
        .instructor-item-seven {
            flex-direction: column;
        }
    }
    
    .instructor-item-seven .instructor-img {
        width: 202px;
        height: 165px;
        flex-shrink: 0;
        margin-right: 20px;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
    }
    
    @media (max-width: 767.98px) {
        .instructor-item-seven .instructor-img {
            margin: 0 0 20px 0;
        }
    }
    
    .instructor-item-seven .instructor-img img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
        transition: 1s;
    }
    
    .instructor-item-seven .instructor-img img:hover {
        transform: scale(1.1);
    }
    
    .instructor-item-seven .instructor-img .favourite {
        width: 30px;
        height: 30px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .instructor-item-seven .instructor-img .favourite i {
        font-size: 18px;
    }
    
    .instructor-item-seven .instructor-content .designation {
        margin-bottom: 0;
    }
    
    .instructor-item-seven .instructor-content p {
        font-size: 14px;
    }
    
    .instructor-item-seven .instructor-content .rating {
        margin-bottom: 0;
    }
    
    .instructor-img {
        position: relative;
    }
    
    .instructor-img img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        margin: 0 auto;
    }
    
    .instructor-img .verify {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        right: 20px;
        background: #FFF;
        width: 32px;
        height: 32px;
    }
    
    .instructor-img .verify img {
        width: auto;
        height: auto;
    }
    
    .instructor-content .title {
        margin-bottom: 4px;
        font-size: 18px;
        font-weight: 700;
    }
    
    .instructor-content .designation {
        display: block;
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .instructor-content .rating {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        gap: 5px;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .instructor-content .rating i {
        color: #FFC107;
    }
    
    .instructor-content .student-count {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .instructor-content .student-count i {
        color: rgb(255, 83, 100);
    }
    
    .instructor-social {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .instructor-social a {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-100);
        border-radius: 50%;
        font-size: 12px;
        color: var(--dark);
    }
    
    .instructor-social a:hover {
        background: var(--dark);
        color: var(--white);
    }
    
    .payment-method .check-outer {
        width: 16px;
        height: 16px;
        margin: 1px 0 0 0;
        border: 1px solid var(--gray-100);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .payment-method .check-outer i {
        width: 8px;
        height: 8px;
        background-color: transparent;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    .payment-method .btn-check-label {
        position: relative;
        height: 70px;
        border-radius: 10px;
        padding: 20px;
        border: 1px solid var(--gray-100);
    }
    
    .payment-method .btn-check-label:hover {
        border-color: var(--gray-100);
    }
    
    .payment-method .btn-check:checked+.btn {
        color: var(--gray-900);
        border-color: #FF4667;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.25);
    }
    
    .payment-method .btn-check:checked+.btn .check-outer {
        background: #FF4667;
        border-color: #FF4667;
    }
    
    .payment-method .btn-check:checked+.btn .check-outer i {
        background-color: var(--white);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        visibility: visible;
    }
    
    .instructor-profile {
        margin-bottom: 40px;
        background-color: var(--white);
        transition: all 0.5s ease-in-out;
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        box-shadow: none;
        color: inherit;
        z-index: 1;
        overflow: hidden;
        background: linear-gradient(10.93deg, #392C7D 16.22%, #6850E3 120.13%);
        padding: 50px 35px;
    }
    
    @media (max-width: 767.98px) {
        .instructor-profile {
            padding: 30px 20px;
        }
    }
    
    .instructor-profile::after {
        content: "";
        width: 50%;
        height: 100%;
        background-image: url(../img/bg/card-bg-02.png);
        z-index: -1;
        position: absolute;
        left: 50%;
        top: 0;
        border-radius: 10px;
    }
    
    .instructor-profile .verify-tick {
        position: absolute;
        right: 0;
        bottom: 0;
        color: #03C95A;
        width: 24px;
        height: 24px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    .instructor-profile .profile-card-bg-1 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -2;
        mix-blend-mode: luminosity;
    }
    
    .instructor-profile .instructor-profile-bg-1 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -2;
        mix-blend-mode: luminosity;
    }
    
    .settings-sidebar {
        margin-bottom: 0 !important;
    }
    
    @media (max-width: 991.98px) {
        .settings-sidebar {
            margin-bottom: 20px !important;
        }
    }
    
    .add-choice {
        font-size: 14px;
    }
    
    .correct-ans {
        color: #5625E8;
    }
    
    .stu-loc {
        font-size: 14px;
    }
    
    .modal p,
    .modal span {
        font-size: 14px;
    }
    
    .instructor-integrations-item {
        border: 1px solid var(--gray-100);
        padding: 20px;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .instructor-integrations-item {
            padding: 16px;
        }
    }
    
    .instructor-integrations-item .meet-icon {
        background-color: var(--light-900);
        border-radius: 5px;
        width: 46px;
        height: 46px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    @media (max-width: 575.98px) {
        .instructor-integrations-item .meet-icon {
            width: 36px;
            height: 36px;
            padding: 6px;
        }
    }
    
    .withdraw-method {
        border: 1px solid var(--gray-100);
        padding: 20px;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .withdraw-method {
            padding: 16px;
        }
    }
    
    .withdraw-method {
        border: 1px solid var(--gray-100);
        padding: 20px;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .withdraw-method {
            padding: 16px;
        }
    }
    
    .withdraw-method .nav-pills {
        flex-direction: column;
    }
    
    .withdraw-method .nav-pills .nav-link {
        width: 100%;
        border: 1px solid var(--gray-100);
        padding: 20px 20px 20px 46px;
        border-radius: 10px;
        text-align: left;
        color: var(--gray-900);
        font-weight: 500;
        background-color: transparent;
        position: relative;
    }
    
    .withdraw-method .nav-pills .nav-link::before {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50px;
        border: 1px solid var(--gray-100);
        left: 20px;
        top: 23px;
        font-size: 8px;
        font-weight: 900;
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .withdraw-method .nav-pills .nav-link.active::before {
        border-color: #FF4667;
        background-color: #FF4667;
        content: "\f111";
        font-family: "Font Awesome 5 Free";
    }
    
    .withdraw-method .nav-pills .nav-link span {
        color: var(--gray-500);
        font-weight: 400;
        display: block;
    }
    
    .instructor-plans {
        border: 1px solid var(--gray-100);
        padding: 20px;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .instructor-plans {
            padding: 16px;
        }
    }
    
    .instructor-plans .download-btn {
        color: var(--gray-900);
        background-color: var(--gray-100);
    }
    
    .instructor-plans .download-btn:hover {
        background-color: var(--gray-200);
    }
    
    .instructor-plans .active-plan-item,
    .instructor-plans .saved-card-items {
        border: 1px solid var(--gray-100);
        padding: 20px;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .instructor-plans .active-plan-item,
        .instructor-plans .saved-card-items {
            padding: 16px;
        }
    }
    
    .instructor-plans .plan-btns .bg-gray-100 {
        color: var(--gray-900);
    }
    
    .instructor-plans .plan-btns .bg-gray-100:hover {
        background-color: var(--gray-200);
    }
    
    .instructor-plans .standard-plan {
        padding: 21px 0;
    }
    
    .instructor-plans .saved-card-items .payment-card {
        border: 1px solid var(--gray-100);
        padding: 15px;
        border-radius: 10px;
        min-height: 124px;
    }
    
    .instructor-plans .saved-card-items .payment-card-icon {
        padding: 9px 13px;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
    }
    
    .instructor-plans .transaction-history {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        border-bottom: none;
    }
    
    .instructor-plans .transaction-history .custom-table {
        border: none;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0 0 10px 10px;
    }
    
    .instructor-plans .transaction-history .table th,
    .instructor-plans .transaction-history .table td {
        padding: 11px 15px;
    }
    
    .pricing-modal .form-check-input {
        background-color: #E7E7E7;
        border: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    }
    
    .pricing-modal .form-check-input:checked {
        background-color: #FF4667;
    }
    
    .pricing-modal .pricing-item {
        padding: 20px;
        border: 1px solid #E7E7E7;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 10px;
    }
    
    .pricing-modal .pricing-item h1 sup {
        font-size: 24px;
    }
    
    @media (max-width: 767.98px) {
        .pricing-modal .pricing-item h1 sup {
            font-size: 20px;
        }
    }
    
    .add-card-date .input-icon-addon {
        left: auto;
        right: 0;
    }
    
    .add-card-date .datetimepicker.form-control {
        padding: 10px 30px 10px 10px;
    }
    
    .subscription-details {
        padding: 20px;
        border: 1px solid #E7E7E7;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .subscription-details {
            padding: 16px;
        }
    }
    
    @media (max-width: 575.98px) {
        .successful-modal .modal-body {
            padding: 30px;
        }
    }
    
    .add-education-data .delete-item,
    .add-exp-data .delete-item {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-top: 12px;
    }
    
    .pay-meth {
        padding: 20px;
        border: 1px solid #E7E7E7;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .pay-meth {
            padding: 16px;
        }
    }
    
    .pay-meth .nav-pills {
        gap: 0 16px;
    }
    
    .pay-meth .nav-pills .nav-link {
        color: var(--gray-500);
        padding: 0;
        background-color: transparent;
        padding-left: 23px;
        position: relative;
    }
    
    .pay-meth .nav-pills .nav-link::before {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50px;
        border: 1px solid var(--gray-100);
        left: 0;
        top: 3px;
        font-size: 8px;
        font-weight: 900;
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .pay-meth .nav-pills .nav-link.active {
        color: var(--gray-900);
    }
    
    .pay-meth .nav-pills .nav-link.active::before {
        border-color: #FF4667;
        background-color: #FF4667;
        content: "\f111";
        font-family: "Font Awesome 5 Free";
    }
    
    .instructor-student-item {
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1) !important;
    }
    
    .img-hover {
        overflow: hidden;
    }
    
    .img-hover img {
        transition: 0.3s;
    }
    
    .img-hover img:hover {
        transform: scale(1.1);
    }
    
    .instructor-student-item h5 {
        font-size: 18px;
    }
    
    .instructor-course,
    .instructor-student-item {
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    
    @media (max-width: 767.98px) {
        .instructor-course,
        .instructor-student-item {
            padding: 16px;
        }
    }
    
    .instructor-course p,
    .instructor-student-item p {
        font-size: 14px;
    }
    
    .instructor-course span,
    .instructor-student-item span {
        font-size: 14px;
    }
    
    .education-card,
    .experience-card,
    .instructor-course-card,
    .instructor-student-card,
    .instructor-details-card,
    .about-me-card,
    .enrolled-courses-card {
        margin-bottom: 1.5rem;
        background-color: var(--white);
        transition: all 0.5s ease-in-out;
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        box-shadow: none;
        color: inherit;
    }
    
    .education-card .instructor-info-body,
    .education-card .earnings-body,
    .education-card .quiz-question-body,
    .education-card .education-body,
    .education-card .experience-body,
    .education-card .instructor-course-body,
    .education-card .instructor-student-body,
    .education-card .instructor-details-body,
    .education-card .about-me-body,
    .education-card .enrolled-courses-body,
    .experience-card .instructor-info-body,
    .experience-card .earnings-body,
    .experience-card .quiz-question-body,
    .experience-card .education-body,
    .experience-card .experience-body,
    .experience-card .instructor-course-body,
    .experience-card .instructor-student-body,
    .experience-card .instructor-details-body,
    .experience-card .about-me-body,
    .experience-card .enrolled-courses-body,
    .instructor-course-card .instructor-info-body,
    .instructor-course-card .earnings-body,
    .instructor-course-card .quiz-question-body,
    .instructor-course-card .education-body,
    .instructor-course-card .experience-body,
    .instructor-course-card .instructor-course-body,
    .instructor-course-card .instructor-student-body,
    .instructor-course-card .instructor-details-body,
    .instructor-course-card .about-me-body,
    .instructor-course-card .enrolled-courses-body,
    .instructor-student-card .instructor-info-body,
    .instructor-student-card .earnings-body,
    .instructor-student-card .quiz-question-body,
    .instructor-student-card .education-body,
    .instructor-student-card .experience-body,
    .instructor-student-card .instructor-course-body,
    .instructor-student-card .instructor-student-body,
    .instructor-student-card .instructor-details-body,
    .instructor-student-card .about-me-body,
    .instructor-student-card .enrolled-courses-body,
    .instructor-details-card .instructor-info-body,
    .instructor-details-card .earnings-body,
    .instructor-details-card .quiz-question-body,
    .instructor-details-card .education-body,
    .instructor-details-card .experience-body,
    .instructor-details-card .instructor-course-body,
    .instructor-details-card .instructor-student-body,
    .instructor-details-card .instructor-details-body,
    .instructor-details-card .about-me-body,
    .instructor-details-card .enrolled-courses-body,
    .about-me-card .instructor-info-body,
    .about-me-card .earnings-body,
    .about-me-card .quiz-question-body,
    .about-me-card .education-body,
    .about-me-card .experience-body,
    .about-me-card .instructor-course-body,
    .about-me-card .instructor-student-body,
    .about-me-card .instructor-details-body,
    .about-me-card .about-me-body,
    .about-me-card .enrolled-courses-body,
    .enrolled-courses-card .instructor-info-body,
    .enrolled-courses-card .earnings-body,
    .enrolled-courses-card .quiz-question-body,
    .enrolled-courses-card .education-body,
    .enrolled-courses-card .experience-body,
    .enrolled-courses-card .instructor-course-body,
    .enrolled-courses-card .instructor-student-body,
    .enrolled-courses-card .instructor-details-body,
    .enrolled-courses-card .about-me-body,
    .enrolled-courses-card .enrolled-courses-body {
        padding: 1.25rem;
    }
    
    @media (max-width: 767.98px) {
        .education-card .instructor-info-body,
        .education-card .earnings-body,
        .education-card .quiz-question-body,
        .education-card .education-body,
        .education-card .experience-body,
        .education-card .instructor-course-body,
        .education-card .instructor-student-body,
        .education-card .instructor-details-body,
        .education-card .about-me-body,
        .education-card .enrolled-courses-body,
        .experience-card .instructor-info-body,
        .experience-card .earnings-body,
        .experience-card .quiz-question-body,
        .experience-card .education-body,
        .experience-card .experience-body,
        .experience-card .instructor-course-body,
        .experience-card .instructor-student-body,
        .experience-card .instructor-details-body,
        .experience-card .about-me-body,
        .experience-card .enrolled-courses-body,
        .instructor-course-card .instructor-info-body,
        .instructor-course-card .earnings-body,
        .instructor-course-card .quiz-question-body,
        .instructor-course-card .education-body,
        .instructor-course-card .experience-body,
        .instructor-course-card .instructor-course-body,
        .instructor-course-card .instructor-student-body,
        .instructor-course-card .instructor-details-body,
        .instructor-course-card .about-me-body,
        .instructor-course-card .enrolled-courses-body,
        .instructor-student-card .instructor-info-body,
        .instructor-student-card .earnings-body,
        .instructor-student-card .quiz-question-body,
        .instructor-student-card .education-body,
        .instructor-student-card .experience-body,
        .instructor-student-card .instructor-course-body,
        .instructor-student-card .instructor-student-body,
        .instructor-student-card .instructor-details-body,
        .instructor-student-card .about-me-body,
        .instructor-student-card .enrolled-courses-body,
        .instructor-details-card .instructor-info-body,
        .instructor-details-card .earnings-body,
        .instructor-details-card .quiz-question-body,
        .instructor-details-card .education-body,
        .instructor-details-card .experience-body,
        .instructor-details-card .instructor-course-body,
        .instructor-details-card .instructor-student-body,
        .instructor-details-card .instructor-details-body,
        .instructor-details-card .about-me-body,
        .instructor-details-card .enrolled-courses-body,
        .about-me-card .instructor-info-body,
        .about-me-card .earnings-body,
        .about-me-card .quiz-question-body,
        .about-me-card .education-body,
        .about-me-card .experience-body,
        .about-me-card .instructor-course-body,
        .about-me-card .instructor-student-body,
        .about-me-card .instructor-details-body,
        .about-me-card .about-me-body,
        .about-me-card .enrolled-courses-body,
        .enrolled-courses-card .instructor-info-body,
        .enrolled-courses-card .earnings-body,
        .enrolled-courses-card .quiz-question-body,
        .enrolled-courses-card .education-body,
        .enrolled-courses-card .experience-body,
        .enrolled-courses-card .instructor-course-body,
        .enrolled-courses-card .instructor-student-body,
        .enrolled-courses-card .instructor-details-body,
        .enrolled-courses-card .about-me-body,
        .enrolled-courses-card .enrolled-courses-body {
            padding: 16px;
        }
    }
    
    .education-card .instructor-info-body p,
    .education-card .earnings-body p,
    .education-card .quiz-question-body p,
    .education-card .education-body p,
    .education-card .experience-body p,
    .education-card .instructor-course-body p,
    .education-card .instructor-student-body p,
    .education-card .instructor-details-body p,
    .education-card .about-me-body p,
    .education-card .enrolled-courses-body p,
    .experience-card .instructor-info-body p,
    .experience-card .earnings-body p,
    .experience-card .quiz-question-body p,
    .experience-card .education-body p,
    .experience-card .experience-body p,
    .experience-card .instructor-course-body p,
    .experience-card .instructor-student-body p,
    .experience-card .instructor-details-body p,
    .experience-card .about-me-body p,
    .experience-card .enrolled-courses-body p,
    .instructor-course-card .instructor-info-body p,
    .instructor-course-card .earnings-body p,
    .instructor-course-card .quiz-question-body p,
    .instructor-course-card .education-body p,
    .instructor-course-card .experience-body p,
    .instructor-course-card .instructor-course-body p,
    .instructor-course-card .instructor-student-body p,
    .instructor-course-card .instructor-details-body p,
    .instructor-course-card .about-me-body p,
    .instructor-course-card .enrolled-courses-body p,
    .instructor-student-card .instructor-info-body p,
    .instructor-student-card .earnings-body p,
    .instructor-student-card .quiz-question-body p,
    .instructor-student-card .education-body p,
    .instructor-student-card .experience-body p,
    .instructor-student-card .instructor-course-body p,
    .instructor-student-card .instructor-student-body p,
    .instructor-student-card .instructor-details-body p,
    .instructor-student-card .about-me-body p,
    .instructor-student-card .enrolled-courses-body p,
    .instructor-details-card .instructor-info-body p,
    .instructor-details-card .earnings-body p,
    .instructor-details-card .quiz-question-body p,
    .instructor-details-card .education-body p,
    .instructor-details-card .experience-body p,
    .instructor-details-card .instructor-course-body p,
    .instructor-details-card .instructor-student-body p,
    .instructor-details-card .instructor-details-body p,
    .instructor-details-card .about-me-body p,
    .instructor-details-card .enrolled-courses-body p,
    .about-me-card .instructor-info-body p,
    .about-me-card .earnings-body p,
    .about-me-card .quiz-question-body p,
    .about-me-card .education-body p,
    .about-me-card .experience-body p,
    .about-me-card .instructor-course-body p,
    .about-me-card .instructor-student-body p,
    .about-me-card .instructor-details-body p,
    .about-me-card .about-me-body p,
    .about-me-card .enrolled-courses-body p,
    .enrolled-courses-card .instructor-info-body p,
    .enrolled-courses-card .earnings-body p,
    .enrolled-courses-card .quiz-question-body p,
    .enrolled-courses-card .education-body p,
    .enrolled-courses-card .experience-body p,
    .enrolled-courses-card .instructor-course-body p,
    .enrolled-courses-card .instructor-student-body p,
    .enrolled-courses-card .instructor-details-body p,
    .enrolled-courses-card .about-me-body p,
    .enrolled-courses-card .enrolled-courses-body p {
        font-size: 14px;
    }
    
    .education-card .instructor-info-body span,
    .education-card .earnings-body span,
    .education-card .quiz-question-body span,
    .education-card .education-body span,
    .education-card .experience-body span,
    .education-card .instructor-course-body span,
    .education-card .instructor-student-body span,
    .education-card .instructor-details-body span,
    .education-card .about-me-body span,
    .education-card .enrolled-courses-body span,
    .experience-card .instructor-info-body span,
    .experience-card .earnings-body span,
    .experience-card .quiz-question-body span,
    .experience-card .education-body span,
    .experience-card .experience-body span,
    .experience-card .instructor-course-body span,
    .experience-card .instructor-student-body span,
    .experience-card .instructor-details-body span,
    .experience-card .about-me-body span,
    .experience-card .enrolled-courses-body span,
    .instructor-course-card .instructor-info-body span,
    .instructor-course-card .earnings-body span,
    .instructor-course-card .quiz-question-body span,
    .instructor-course-card .education-body span,
    .instructor-course-card .experience-body span,
    .instructor-course-card .instructor-course-body span,
    .instructor-course-card .instructor-student-body span,
    .instructor-course-card .instructor-details-body span,
    .instructor-course-card .about-me-body span,
    .instructor-course-card .enrolled-courses-body span,
    .instructor-student-card .instructor-info-body span,
    .instructor-student-card .earnings-body span,
    .instructor-student-card .quiz-question-body span,
    .instructor-student-card .education-body span,
    .instructor-student-card .experience-body span,
    .instructor-student-card .instructor-course-body span,
    .instructor-student-card .instructor-student-body span,
    .instructor-student-card .instructor-details-body span,
    .instructor-student-card .about-me-body span,
    .instructor-student-card .enrolled-courses-body span,
    .instructor-details-card .instructor-info-body span,
    .instructor-details-card .earnings-body span,
    .instructor-details-card .quiz-question-body span,
    .instructor-details-card .education-body span,
    .instructor-details-card .experience-body span,
    .instructor-details-card .instructor-course-body span,
    .instructor-details-card .instructor-student-body span,
    .instructor-details-card .instructor-details-body span,
    .instructor-details-card .about-me-body span,
    .instructor-details-card .enrolled-courses-body span,
    .about-me-card .instructor-info-body span,
    .about-me-card .earnings-body span,
    .about-me-card .quiz-question-body span,
    .about-me-card .education-body span,
    .about-me-card .experience-body span,
    .about-me-card .instructor-course-body span,
    .about-me-card .instructor-student-body span,
    .about-me-card .instructor-details-body span,
    .about-me-card .about-me-body span,
    .about-me-card .enrolled-courses-body span,
    .enrolled-courses-card .instructor-info-body span,
    .enrolled-courses-card .earnings-body span,
    .enrolled-courses-card .quiz-question-body span,
    .enrolled-courses-card .education-body span,
    .enrolled-courses-card .experience-body span,
    .enrolled-courses-card .instructor-course-body span,
    .enrolled-courses-card .instructor-student-body span,
    .enrolled-courses-card .instructor-details-body span,
    .enrolled-courses-card .about-me-body span,
    .enrolled-courses-card .enrolled-courses-body span {
        font-size: 14px;
    }
    
    .certification-card,
    .quiz-card,
    .earn-year-card {
        margin-bottom: 1.5rem;
        background-color: var(--white);
        transition: all 0.5s ease-in-out;
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        box-shadow: none;
        color: inherit;
    }
    
    .certification-card .certification-body,
    .certification-card .contact-details-body,
    .certification-card .quiz-body,
    .certification-card .certificate-body,
    .certification-card .earn-year-body,
    .quiz-card .certification-body,
    .quiz-card .contact-details-body,
    .quiz-card .quiz-body,
    .quiz-card .certificate-body,
    .quiz-card .earn-year-body,
    .earn-year-card .certification-body,
    .earn-year-card .contact-details-body,
    .earn-year-card .quiz-body,
    .earn-year-card .certificate-body,
    .earn-year-card .earn-year-body {
        padding: 1.25rem;
    }
    
    @media (max-width: 767.98px) {
        .certification-card .certification-body,
        .certification-card .contact-details-body,
        .certification-card .quiz-body,
        .certification-card .certificate-body,
        .certification-card .earn-year-body,
        .quiz-card .certification-body,
        .quiz-card .contact-details-body,
        .quiz-card .quiz-body,
        .quiz-card .certificate-body,
        .quiz-card .earn-year-body,
        .earn-year-card .certification-body,
        .earn-year-card .contact-details-body,
        .earn-year-card .quiz-body,
        .earn-year-card .certificate-body,
        .earn-year-card .earn-year-body {
            padding: 16px;
        }
    }
    
    .certification-card .certification-body p,
    .certification-card .contact-details-body p,
    .certification-card .quiz-body p,
    .certification-card .certificate-body p,
    .certification-card .earn-year-body p,
    .quiz-card .certification-body p,
    .quiz-card .contact-details-body p,
    .quiz-card .quiz-body p,
    .quiz-card .certificate-body p,
    .quiz-card .earn-year-body p,
    .earn-year-card .certification-body p,
    .earn-year-card .contact-details-body p,
    .earn-year-card .quiz-body p,
    .earn-year-card .certificate-body p,
    .earn-year-card .earn-year-body p {
        font-size: 14px;
    }
    
    .certification-card .certification-body span,
    .certification-card .contact-details-body span,
    .certification-card .quiz-body span,
    .certification-card .certificate-body span,
    .certification-card .earn-year-body span,
    .quiz-card .certification-body span,
    .quiz-card .contact-details-body span,
    .quiz-card .quiz-body span,
    .quiz-card .certificate-body span,
    .quiz-card .earn-year-body span,
    .earn-year-card .certification-body span,
    .earn-year-card .contact-details-body span,
    .earn-year-card .quiz-body span,
    .earn-year-card .certificate-body span,
    .earn-year-card .earn-year-body span {
        font-size: 14px;
    }
    
    .contact-card {
        background: var(--light-900);
        border-radius: 10px;
        padding: 20px;
    }
    
    .quiz-info {
        margin-bottom: 1.5rem;
        border-radius: 10px;
        padding: 1.25rem;
    }
    
    @media (max-width: 767.98px) {
        .quiz-info {
            padding: 16px;
        }
    }
    
    .icon-edit {
        width: 25px;
        height: 25px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-500) !important;
    }
    
    .icon-edit:hover {
        background-color: var(--light-900);
    }
    
    .instructor-list {
        padding: 60px 0;
    }
    
    .instructor-list .form-select {
        width: auto;
        box-shadow: none;
        outline: none;
        margin-right: 10px;
        font-size: 14px;
        height: 40px;
    }
    
    @media (max-width: 575.98px) {
        .instructor-list .form-select {
            width: 100%;
            margin-right: 0;
            margin-bottom: 10px;
        }
    }
    
    @media (max-width: 767.98px) {
        .instructor-list .clear-filter {
            margin-bottom: 24px;
        }
    }
    
    .instructor-list .clear-text {
        color: #FF4667;
        font-size: 14px;
        font-weight: 500;
        text-decoration: underline;
    }
    
    .instructor-list .clear-text:hover {
        color: #392C7D;
    }
    
    @media (max-width: 767.98px) {
        .instructor-list .show-result {
            margin: 10px 0;
        }
    }
    
    .instructor-list .view-icons {
        display: inline-flex;
    }
    
    .instructor-list .view-icons a {
        align-items: center;
        background-color: #fff;
        border: 1px solid var(--gray-100);
        border-radius: 5px;
        color: var(--black);
        display: flex;
        font-size: 20px;
        justify-content: center;
        text-align: center;
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .instructor-list .view-icons a.active {
        background-color: #FF4667;
        border-color: #FF4667;
        color: var(--white);
    }
    
    .instructor-list .select2-container {
        min-width: unset !important;
    }
    
    .instructor-list .show-filter .select2-selection__rendered {
        height: 40px;
    }
    
    .instructor-list .show-filter .search-group {
        position: relative;
    }
    
    .instructor-list .show-filter .search-group i {
        position: absolute;
        left: 15px;
        color: var(--gray-900);
        top: 12px;
    }
    
    .instructor-list .show-filter .search-group .form-control {
        border-color: var(--gray-100);
        color: var(--gray-400);
        outline: none;
        box-shadow: none;
        padding: 10px 10px 10px 40px;
        height: 40px;
    }
    
    .instructor-list .filter-clear .accordion-item {
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        margin-bottom: 20px;
    }
    
    @media (max-width: 1399.98px) {
        .instructor-list .filter-clear .accordion-item {
            margin-bottom: 15px;
        }
    }
    
    .instructor-list .filter-clear .accordion-item .see-more-btn {
        margin: 10px 0 0;
        color: #FF4667;
        text-decoration: underline;
        display: inline-block;
        font-size: 14px;
    }
    
    .instructor-list .filter-clear .accordion-item .accordion-button {
        border: none;
        background-color: transparent;
        padding: 20px;
        font-size: 18px;
        font-weight: 600;
        color: var(--gray-900);
        box-shadow: none;
        display: flex;
        justify-content: space-between;
    }
    
    @media (max-width: 1399.98px) {
        .instructor-list .filter-clear .accordion-item .accordion-button {
            padding: 15px;
            font-size: 16px;
        }
    }
    
    .instructor-list .filter-clear .accordion-item .accordion-button::after {
        font-size: 13px;
        font-weight: 500;
        display: none;
    }
    
    .instructor-list .filter-clear .accordion-item .accordion-button.collapsed i {
        transform: rotate(-180deg);
    }
    
    .instructor-list .filter-clear .accordion-item .accordion-button i {
        font-size: 12px;
    }
    
    .instructor-list .filter-clear .accordion-item .accordion-body {
        border: none;
        padding: 0 20px 20px;
    }
    
    .instructor-list .filter-clear .custom_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .instructor-list .filter-clear .custom_check {
        color: var(--gray-700) !important;
        display: inline-block;
        position: relative;
        font-size: 14px !important;
        margin-bottom: 15px;
        padding-left: 28px;
        cursor: pointer;
        font-weight: 400 !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        line-height: 18px;
        font-family: "Noto Sans", sans-serif;
    }
    
    .instructor-list .filter-clear .custom_check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 16px;
        width: 16px;
        border: 1px solid var(--gray-100);
        background-color: var(--white);
        border-radius: 2px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    .instructor-list .filter-clear .custom_check .checkmark::after {
        content: "\e92b";
        font-family: "feather" !important;
        font-weight: 400;
        position: absolute;
        display: none;
        left: 2px;
        top: -1px;
        color: var(--white);
        font-size: 11px;
    }
    
    .instructor-list .filter-clear .custom_check input:checked~.checkmark:after {
        display: block;
    }
    
    .instructor-list .filter-clear .custom_check input:checked~.checkmark {
        background-color: #FF4667;
        border-color: #FF4667;
    }
    
    .instructor-list .courses-list {
        margin-top: 16px;
    }
    
    .instructor-list .courses-list .card {
        border-radius: 10px;
        border-color: var(--gray-100);
        box-shadow: 0 4px 4px 0 rgba(212, 212, 212, 0.25);
    }
    
    .instructor-list .courses-list .card-header {
        padding: 20px;
        background-color: transparent;
        border: none;
    }
    
    .instructor-list .courses-list .card-header img:hover {
        transform: scale(1.1);
        transition: 0.3s;
    }
    
    .instructor-list .courses-list .card-body {
        padding-top: 0;
    }
    
    @media (max-width: 1399.98px) {
        .instructor-list .courses-list .card-body h4 {
            font-size: 16px;
        }
    }
    
    .instructor-list .courses-list .tag-btn {
        color: var(--gray-900);
        font-weight: 500;
        padding: 2px 8px;
        background-color: var(--light);
        border-radius: 50px;
        font-size: 13px;
    }
    
    @media (max-width: 1399.98px) {
        .instructor-list .courses-list .tag-btn {
            font-size: 12px;
            padding: 2px 6px;
        }
    }
    
    .instructor-list .courses-list .view-course-btn {
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 50px;
    }
    
    .instructor-list .pagination {
        display: flex;
        gap: 8px;
        justify-content: flex-end;
    }
    
    .instructor-list .pagination .page-link {
        width: 32px;
        height: 32px;
        background-color: var(--light);
        border-radius: 50px !important;
        font-size: 14px;
        font-weight: 400;
        border: none;
        color: var(--gray-700);
        box-shadow: none;
    }
    
    .instructor-list .pagination .page-link:hover {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .instructor-list .pagination .page-item.active .page-link {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .instructor-list .instructor-details {
        display: flex;
        align-items: center;
    }
    
    @media (max-width: 767.98px) {
        .instructor-list .instructor-details {
            flex-direction: column;
        }
        .instructor-list .instructor-details .instructor-img {
            margin-bottom: 24px;
        }
    }
    
    .instructor-list .instructor-details .instructor-img {
        width: 202px;
        height: 165px;
        flex-shrink: 0;
        margin-right: 20px;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
    }
    
    .instructor-list .instructor-details .instructor-img img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
        transition: 1s;
    }
    
    .instructor-list .instructor-details .instructor-img img:hover {
        transform: scale(1.1);
    }
    
    .instructor-list .instructor-details .instructor-img .heart {
        width: 30px;
        height: 30px;
        position: absolute;
        background: var(--white);
        top: 10px;
        left: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .instructor-list .instructor-details .instructor-img .heart i {
        font-size: 18px;
    }
    
    @media (max-width: 767.98px) {
        .instructor-list .instructor-details .counts-details {
            margin-bottom: 16px;
        }
    }
    
    .instructor-list .instructor-list-item {
        padding: 20px;
        border: 1px solid #E7E7E7;
        border-radius: 10px;
    }
    
    .instructor-list .instructor-list-item .instructor-details p {
        font-size: 14px;
    }
    
    .instructor-list .instructor-list-item .instructor-details span {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    @media (max-width: 767.98px) {
        .instructor-list-img {
            flex-direction: column;
        }
    }
    
    .instructor-list-img .card-image {
        width: 202px;
        height: 165px;
        flex-shrink: 0;
    }
    
    .instructor-list-img .card-image img {
        width: 100%;
        height: 100%;
    }
    
    .instructor-list-img .card-image:hover {
        overflow: hidden;
    }
    
    .instructor-list-img .card-image:hover img {
        transform: scale(1.1);
        transition: 1s;
    }
    
    .instructor-detail-content {
        padding: 60px 0 36px;
    }
    
    @media (max-width: 767.98px) {
        .instructor-detail-content {
            padding: 40px 0;
        }
    }
    
    .instructor-detail-content .instructor-details-item1 {
        background: var(--light-900);
        border: none;
        padding: 20px;
        border-radius: 10px;
    }
    
    .instructor-detail-content .instructor-details-item1 .instructor-details p {
        font-size: 14px;
    }
    
    .instructor-detail-content .instructor-details-item1 .instructor-details span {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .instructor-detail-content .instructor-details-item1 .social-media-btns a {
        width: 18px;
        height: 18px;
        font-size: 12px;
        color: #392C7D;
    }
    
    .instructor-detail-content .instructor-details-item1 .social-media-btns a:hover {
        color: #FF4667;
    }
    
    .instructor-detail-content .instructor-details {
        display: flex;
        align-items: center;
    }
    
    @media (max-width: 767.98px) {
        .instructor-detail-content .instructor-details {
            flex-direction: column;
        }
        .instructor-detail-content .instructor-details .instructor-img {
            margin-bottom: 24px;
        }
    }
    
    .instructor-detail-content .instructor-details .instructor-img {
        width: 202px;
        height: 165px;
        flex-shrink: 0;
        margin-right: 20px;
        border-radius: 10px;
        position: relative;
    }
    
    .instructor-detail-content .instructor-details .instructor-img img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
    }
    
    .instructor-detail-content .instructor-details .instructor-img:hover {
        overflow: hidden;
    }
    
    .instructor-detail-content .instructor-details .instructor-img:hover img {
        transform: scale(1.1);
        transition: 1s;
    }
    
    .instructor-detail-content .instructor-details .instructor-img .heart {
        width: 30px;
        height: 30px;
        position: absolute;
        background: var(--white);
        top: 10px;
        left: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .instructor-detail-content .instructor-details .instructor-img .heart i {
        font-size: 18px;
    }
    
    .instructor-detail-content .instructor-details .instructor-img .heart:hover {
        color: #FF4667;
    }
    
    @media (max-width: 767.98px) {
        .instructor-detail-content .instructor-details .counts-details {
            margin-bottom: 24px;
        }
    }
    
    .instructor-detail-content .read-more-btn {
        color: #FF4667;
        text-decoration: underline;
        font-size: 14px;
    }
    
    .instructor-detail-content .read-more-btn:hover {
        color: #392C7D;
    }
    
    .instructor-detail-content .course-carousal {
        position: relative;
    }
    
    .instructor-detail-content .course-carousal .slick-prev.slick-arrow,
    .instructor-detail-content .course-carousal .slick-next.slick-arrow {
        width: 34px;
        height: 34px;
        background: var(--light);
        border-radius: 30px;
        color: #242B3A;
        position: absolute;
    }
    
    .instructor-detail-content .course-carousal .slick-prev.slick-arrow {
        top: -33px;
        right: 50px;
        left: unset;
    }
    
    .instructor-detail-content .course-carousal .slick-prev.slick-arrow::before {
        position: absolute;
        font-family: "Font Awesome 5 Free";
        content: "\f053";
        color: #08131E;
        font-size: 14px;
        font-weight: 900;
        top: 10px;
        left: 12px;
    }
    
    .instructor-detail-content .course-carousal .slick-next.slick-arrow {
        top: -33px;
        right: 8px;
    }
    
    .instructor-detail-content .course-carousal .slick-next.slick-arrow::before {
        position: absolute;
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        color: #08131E;
        font-size: 14px;
        font-weight: 900;
        top: 10px;
        left: 12px;
    }
    
    .instructor-detail-content .course-carousal h5 {
        font-size: 18px;
    }
    
    .instructor-detail-content .btn.view-course-btn {
        font-size: 12px;
        font-weight: 500;
        padding: 6px 8px;
        border-radius: 50px;
        background: var(--dark);
        color: var(--white);
    }
    
    .instructor-detail-content .btn.view-course-btn:hover {
        background: #FF4667;
    }
    
    .instructor-detail-content .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 50px;
        padding: 10px;
        background: #392C7D;
        color: var(--white);
    }
    
    .text-truncate.line-clamb-2 {
        -webkit-line-clamp: 2;
    }
    
    .student-details-carousal .instructor-course {
        margin: 0 10px !important;
    }
    
    @media (max-width: 767.98px) {
        .student-details-carousal .instructor-course {
            margin: 0 1px !important;
        }
    }
    
    .student-details-carousal .slick-prev.slick-arrow {
        top: -49px !important;
    }
    
    .student-details-carousal .slick-next.slick-arrow {
        top: -49px !important;
    }
    
    .student-details-carousal p a {
        color: var(--gray-500);
    }
    
    .student-details-carousal .tag-btn {
        background-color: var(--light-900);
        color: var(--gray-900);
        padding: 4px 8px;
        border-radius: 40px;
        font-weight: 500;
    }
    
    .instructor-item-six .instructors-img img {
        width: 100%;
    }
    
    .login-content .login-bg {
        background: #FEEEF0;
        min-height: 100vh;
        position: fixed;
        display: flex;
        align-items: center;
        /* width: 65%; */
    }
    
    .login-content .login-banner {
        max-width: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .login-content .login-banner img {
        max-width: 430px;
    }
    
    .login-content .login-carousel {
        width: 100%;
    }
    
    .login-content .login-carousel .login-carousel-section .login-banner {
        margin: auto;
        margin-bottom: 30px;
    }
    
    .login-content .login-carousel .login-carousel-section .mentor-course {
        width: 450px;
        text-align: center;
        margin: auto;
    }
    
    .login-content .login-carousel p {
        font-size: 14px;
    }
    /* Top Category card design  */
    
    .carousel-card {
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 30px 10px;
        text-align: center;
        transition: all 0.3s ease-in-out;
        background-color: transparent;
    }
    
    .carousel-card:hover {
        background-color: #392C7D;
        color: white;
    }
    
    .carousel-card:hover h5,
    .carousel-card:hover a,
    .carousel-card:hover p {
        color: white;
    }
    
    .carousel-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .carousel-card h5 {
        font-weight: bold;
        margin-bottom: 5px;
        transition: color 0.3s;
    }
    
    .carousel-indicators-custom {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    /* Dark Mood */
    
    .dark-mode .carousel-card {
        border: 1px solid black;
    }
    
    .dark-mode .carousel-card:hover {
        background-color: #392C7D;
        color: white;
    }
    
    .dark-mode .carousel-card:hover h5,
    .dark-mode .carousel-card:hover a,
    .dark-mode .carousel-card:hover p {
        color: white;
    }
    
    .carousel-indicators-custom button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        margin: 0 5px;
        background-color: #ddd;
        transition: background-color 0.3s;
    }
    
    .carousel-indicators-custom button.active {
        width: 50px;
        height: 8px;
        border-radius: 50px;
        background-color: #f24b6a;
    }
    
    @media (max-width: 991px) {
        .carousel-item {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
    
    @media (max-width: 576px) {
        .carousel-item {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
    /* End */
    
    .login-content .slick-dots button {
        width: 10px;
        height: 10px;
        border-radius: 50px;
        background: var(--gray-100);
    }
    
    .login-content .slick-dots .slick-active {
        width: 50px;
        height: 10px;
        border-radius: 50px;
        background: #FF4667;
    }
    
    .login-content .slick-dots .slick-active button {
        background: transparent;
    }
    
    .login-content .welcome-login {
        padding: 20px 20px 0px 20px;
    }
    
    .login-content .login-wrap-bg {
        position: absolute;
        right: 0;
        padding: 20px;
    }
    
    .login-content .login-wrap-bg .login-wrapper {
        max-width: 100%;
        height: 100vh;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        justify-content: center;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    
    .login-content .login-wrap-bg .login-wrapper .loginbox {
        max-width: 100%;
        width: 100%;
        font-weight: 600;
        padding: 20;
        /* padding: 20px 100px; */
    }
    
    .login-content .login-wrap-bg .login-wrapper .loginbox .img-logo {
        margin-bottom: 54px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .login-content .login-wrap-bg .login-wrapper .loginbox .img-logo img {
        width: 150px;
    }
    
    .login-content .login-wrap-bg .login-header {
        margin-bottom: 80px;
    }
    
    @media (max-width: 767.98px) {
        .login-content .login-wrap-bg .login-header {
            margin-bottom: 50px;
        }
    }
    
    @media (max-width: 575.98px) {
        .login-content .login-wrap-bg .login-header {
            margin-bottom: 30px;
        }
    }
    
    .login-content .login-wrap-bg .topic {
        margin-bottom: 40px;
    }
    
    @media (max-width: 767.98px) {
        .login-content .login-wrap-bg .topic {
            margin-bottom: 30px;
        }
    }
    
    @media (max-width: 575.98px) {
        .login-content .login-wrap-bg .topic {
            margin-bottom: 20px;
        }
    }
    
    .login-content .login-wrap-bg .form-control:focus {
        border-color: #FF4667;
    }
    
    .login-content .login-wrap-bg .email-input {
        position: relative;
    }
    
    .login-content .login-wrap-bg .email-input::before {
        position: absolute;
        content: "/f007";
        font-family: "Font Awesome 5 Free";
        color: #08131E;
        font-size: 16px;
        font-weight: 900;
        z-index: 1;
        top: 0;
        right: 0;
    }
    
    .login-content .login-wrap-bg .form-check-input {
        width: 20px;
        height: 20px;
        margin-top: 0;
        margin-right: 8px;
    }
    
    .login-content .login-wrap-bg .form-check-label {
        font-weight: 400;
    }
    
    .login-content .login-wrap-bg .form-control.otp {
        width: 88px;
        height: 70px;
        margin-right: 20px;
        text-align: center;
    }
    
    .login-content .login-wrap-bg .form-control.otp:last-child {
        margin-right: 0;
    }
    
    .login-content .login-wrap-bg .form-control.otp {
        -moz-appearance: textfield;
    }
    
    .login-content .login-wrap-bg .form-control.otp::-webkit-inner-spin-button,
    .login-content .login-wrap-bg .form-control.otp::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .login-content .login-wrap-bg .or {
        position: relative;
    }
    /* .login-content .login-wrap-bg .or::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 1px;
    background: var(--gray-100);
    left: 0;
} */
    /* .login-content .login-wrap-bg .or::before {
    position: absolute;
    content: "";
    width: 180px;
    height: 1px;
    background: var(--gray-100);
    right: 0;
} */
    
    .login-content .google-bg span a {
        color: #22100D;
        font-weight: 400;
    }
    
    .login-content .sign-google {
        margin: 32px 0px;
    }
    
    .login-content .pass-group {
        position: relative;
    }
    
    .login-content .toggle-password.feather-eye {
        margin-right: 1px;
        color: #6e82a3;
    }
    
    .login-content .toggle-password.feather-eye-off {
        color: #F66962;
    }
    
    .login-content .pass-checked {
        position: absolute;
        right: 40px;
        top: 55%;
        transform: translateY(-50%);
        color: #4CAF50;
        opacity: 0;
    }
    
    .login-content .pass-checked.active {
        opacity: 1;
    }
    
    .login-content .forgot-link {
        color: #392C7D;
        font-size: 14px;
    }
    
    .login-content .link-1 {
        font-size: 14px;
        color: #FF4667;
        font-weight: 400;
        text-decoration: underline;
    }
    
    .login-content .link-1:hover {
        color: #392C7D;
    }
    
    .login-content .link-2 {
        color: #FF4667;
        font-weight: 400;
        font-size: 14px;
    }
    
    .login-content .link-2:hover {
        color: #392C7D;
    }
    
    .login-content .input-icon {
        cursor: pointer;
        width: 30px;
        height: 30px;
        color: #191919;
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        border-radius: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        position: absolute;
        top: 50%;
        right: 10px;
    }
    
    .login-content .timer-cover {
        margin-bottom: 20px;
    }
    
    .lock-screen {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto auto;
        background: linear-gradient(131.11deg, #FFEEF0 2.29%, #F8F7FF 74.3%);
        height: 100vh;
    }
    
    .lock-screen .lock-wrapper {
        max-width: 410px;
        min-width: 300px;
        width: 100%;
    }
    
    .lock-screen .lock-wrapper .lock-header {
        margin-bottom: 80px;
    }
    
    @media (max-width: 767.98px) {
        .lock-screen .lock-wrapper .lock-header {
            margin-bottom: 50px;
        }
    }
    
    @media (max-width: 575.98px) {
        .lock-screen .lock-wrapper .lock-header {
            margin-bottom: 30px;
        }
    }
    
    .lock-screen .lock-wrapper .user-profile {
        width: 120px;
        height: 120px;
    }
    
    .lock-screen .lock-wrapper input:focus {
        border-color: #FF4667;
    }
    
    .error-page {
        align-items: center;
        color: #1f1f1f;
        display: flex;
        background: linear-gradient(90deg, #FEE0DE 0%, #E4F5FD 51.39%, #DDEDFF 100%);
    }
    
    .error-page .main-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        min-height: unset;
        padding-top: 50px;
    }
    
    .error-box {
        margin: 0 auto;
        max-width: 570px;
        padding: 20px 0;
        text-align: center;
        width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .error-box .error-bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }
    
    .error-box .bg-01 {
        position: absolute;
        top: 70px;
        left: -15px;
    }
    
    .error-box .bg-02 {
        position: absolute;
        top: 25px;
        right: -12px;
    }
    
    .error-box .bg-03 {
        position: absolute;
        top: 410px;
        left: -60px;
    }
    
    .error-box .bg-04 {
        position: absolute;
        top: 260px;
        right: -75px;
    }
    
    .error-box .bg-05 {
        position: absolute;
        bottom: 20px;
        left: -180px;
    }
    
    .error-box .bg-06 {
        position: absolute;
        bottom: 115px;
        right: -150px;
    }
    
    .error-box .bg-07 {
        position: absolute;
        bottom: 115px;
        right: -150px;
        z-index: 0;
    }
    
    .error-box h3 {
        font-weight: 700;
        font-size: 28px;
        margin-top: 20px;
    }
    
    .error-box p {
        margin-bottom: 30px;
        color: var(--gray-700);
        font-size: 16px;
        font-weight: 400;
    }
    
    .error-box h4 {
        font-size: 32px;
        margin-bottom: 0;
    }
    
    .error-box h6 {
        font-size: 16px;
        margin: 35px 0px;
    }
    
    .error-box .big-text {
        font-weight: 700;
        font-size: 40px;
        line-height: 1;
        margin: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        color: #fff;
        border-bottom: 1px solid #F2F2F2;
    }
    
    .error-box .back-to-home-btn {
        background: #FF4667;
        color: var(--white);
    }
    
    .error-box .back-to-home-btn:hover {
        background: #392C7D;
    }
    
    .error-logo {
        margin-bottom: 50px;
    }
    
    .error-logo img {
        width: 150px;
    }
    
    .come-soon-box h5 {
        font-size: 20px;
        margin: 50px 0px 25px;
    }
    
    .social-icon-soon ul {
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
    }
    
    .social-icon-soon ul li {
        list-style: none;
    }
    
    .social-icon-soon ul li i {
        font-size: 24px;
    }
    
    .social-icon-soon ul li i:hover {
        color: #FF4667;
    }
    
    .social-icon-soon ul li:not(:last-child) {
        margin-right: 15px;
    }
    
    .social-icon-soon ul li .face-book {
        color: #1877F2;
    }
    
    .social-icon-soon ul li .twit-ter {
        color: #1DA1F2;
    }
    
    .social-icon-soon ul li .insta-gram {
        color: #000100;
    }
    
    .social-icon-soon ul li .linked-in {
        color: #0A66C2;
    }
    
    .subscribe-soon .btn-danger {
        background: #FF5364;
        border: 1px solid #FF5364;
        min-width: 127px;
        font-size: 16px;
    }
    
    .subscribe-soon .btn-danger:hover {
        background: #e63333;
        border: 1px solid #e63333;
    }
    
    .subscribe-soon .form-control {
        height: 48px;
    }
    
    .countdown-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .countdown-el {
        text-align: center;
        background: rgba(0, 0, 0, 0.4);
        min-width: 140px;
        padding: 38px 20px;
        border-radius: 10px;
        color: #fff;
    }
    
    .countdown-el:not(:last-child) {
        margin-right: 15px;
    }
    
    .countdown-el span {
        font-size: 26px;
    }
    
    .coming-soon-content .coming-soon-topic {
        margin-bottom: 38px;
    }
    
    .coming-soon-content .error-box-img.coming-soon-img {
        margin-bottom: 60px;
    }
    
    .coming-soon-content .coming-soon.media-btn {
        height: 30px;
        width: 30px;
        border-radius: 50px;
        background: #392C7D;
        color: var(--white);
    }
    
    .coming-soon-content .coming-soon.media-btn:hover {
        background: #FF4667;
    }
    
    .coming-soon-content .subscribe-section {
        margin-bottom: 20px;
    }
    
    .coming-soon-content .subscribe-section .subcribe-cover {
        position: relative;
    }
    
    .coming-soon-content .subscribe-section .subcribe-cover .customize-application-input {
        position: absolute;
        border: none;
        width: 50%;
        padding-left: 5px;
    }
    
    .coming-soon-content .subscribe-section .subcribe-cover .customize-application-input:focus-visible {
        outline: none;
    }
    
    .coming-soon-content .subscribe-section .subcribe-cover .subscribe-btn {
        position: absolute;
        right: 16px;
        font-size: 14px;
        line-height: 24px;
        background: #FF4667;
    }
    
    .coming-soon-content .subscribe-section .subcribe-cover .subscribe-btn:hover {
        background: #392C7D;
    }
    
    .coming-soon-content .coming-soon-timer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        margin: 30px 0 53px;
    }
    
    @media (max-width: 1199.98px) {
        .coming-soon-content .coming-soon-timer {
            margin: 20px 0;
        }
    }
    
    .coming-soon-content .coming-soon-timer li {
        border: 1px solid var(--gray-200);
        background: rgba(0, 0, 0, 0.8);
        font-size: 16px;
        width: 120px;
        height: 120px;
        border-radius: 8px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        font-size: 16px;
        font-weight: 500;
        flex-direction: column;
        margin-right: 14px;
        color: var(--white);
    }
    
    @media (max-width: 575.98px) {
        .coming-soon-content .coming-soon-timer li {
            width: 50px;
            height: 50px;
            margin-right: 5px;
        }
    }
    
    .coming-soon-content .coming-soon-timer li span {
        color: var(--white);
        font-size: 32px;
        line-height: normal;
        padding-bottom: 8px;
        margin-bottom: 8px;
        border-bottom: 1px solid #FFFFFF;
        font-weight: 700;
    }
    
    @media (max-width: 575.98px) {
        .coming-soon-content .coming-soon-timer li span {
            font-size: 20px;
        }
    }
    
    .coming-soon-content .coming-soon-timer li.seperate-dot {
        color: #FF4667;
        width: auto;
        height: auto;
        border: 0;
        border-radius: 0;
        background-color: transparent;
    }
    
    .coming-soon-content .coming-soon-timer li:last-child {
        margin-right: 0;
    }
    
    .profile-card {
        position: relative;
        overflow: hidden;
        background-color: var(--white);
        transition: all 0.5s ease-in-out;
        position: relative;
        border-radius: 10px;
        z-index: 1;
    }
    
    .profile-card::after {
        content: "";
        width: 50%;
        height: 100%;
        background-image: url(../img/bg/card-bg-02.png);
        z-index: -1;
        position: absolute;
        left: 50%;
        top: 0;
        border-radius: 10px;
    }
    
    .profile-card .verify-tick {
        position: absolute;
        right: 0;
        bottom: 0;
        color: #03C95A;
        width: 24px;
        height: 24px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    .profile-card .profile-card-bg-1 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -2;
        mix-blend-mode: luminosity;
    }
    
    .settings-sidebar {
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    
    @media (max-width: 767.98px) {
        .settings-sidebar {
            padding: 16px;
        }
    }
    
    .settings-sidebar ul li {
        margin-bottom: 12px;
    }
    
    .settings-sidebar ul li:last-child {
        margin-bottom: 0;
    }
    
    .settings-sidebar ul li a {
        color: var(--gray-500);
    }
    
    .settings-sidebar ul li a.active,
    .settings-sidebar ul li a:hover {
        color: #FF4667;
    }
    
    .settings-sidebar ul li a.active i,
    .settings-sidebar ul li a:hover i {
        color: #FF4667;
    }
    
    .settings-sidebar ul li a i {
        color: var(--gray-900);
    }
    
    .icon-box {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }
    
    .action-icon {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--white);
    }
    
    .action-icon:hover {
        background-color: var(--light);
        color: var(--gray-900);
    }
    
    .circle-progress {
        width: 38px;
        height: 38px !important;
        float: left;
        line-height: 38px;
        background: none;
        box-shadow: none;
        position: relative;
    }
    
    .circle-progress::after {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 4px solid var(--light-900);
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .circle-progress .progress-value {
        position: absolute;
        top: 5%;
        left: 5%;
        width: 90%;
        height: 90%;
        font-size: 10px;
        color: var(--gray-700);
        line-height: 38px;
        text-align: center;
    }
    
    .circle-progress .progress-left {
        left: 0;
    }
    
    .circle-progress .progress-left .progress-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;
    }
    
    .circle-progress .progress-right {
        right: 0;
    }
    
    .circle-progress .progress-right .progress-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;
    }
    
    .circle-progress .progress-bar {
        width: 100%;
        height: 100%;
        background: none;
        border-width: 4px;
        border-style: solid;
        position: absolute;
        top: 0;
    }
    
    .circle-progress>span {
        width: 50%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        top: 0;
        z-index: 1;
    }
    
    @keyframes loading-2 {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(144deg);
            transform: rotate(144deg);
        }
    }
    
    .tab-list .nav {
        margin-bottom: 24px;
    }
    
    .tab-list .nav li {
        margin-bottom: 16px;
        margin-right: 15px;
    }
    
    .tab-list .nav li:last-child {
        margin-right: 0;
    }
    
    .tab-list .nav li a {
        color: var(--gray-900);
        border-radius: 100px;
        background: var(--light);
        padding: 12px 15px;
        font-size: 14px;
        display: inline-flex;
    }
    
    .tab-list .nav li a.active,
    .tab-list .nav li a:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .fav-icon .filled-heart {
        display: none;
    }
    
    .fav-icon.selected {
        color: #FF4667;
    }
    
    .fav-icon.selected .filled-heart {
        display: block;
    }
    
    .fav-icon.selected .not-filled {
        display: none;
    }
    
    .rating i {
        color: var(--gray-100);
    }
    
    .rating i.filled {
        color: #FFC107;
    }
    
    .rating-selction {
        direction: rtl !important;
    }
    
    .rating-selction label {
        display: inline-block;
        color: var(--gray-100);
        cursor: pointer;
        font-size: 16px;
        transition: color 0.2s;
    }
    
    .rating-selction label:hover {
        color: #FFC107;
    }
    
    .rating-selction label:hover~label {
        color: #FFC107;
    }
    
    .rating-selction input {
        display: none;
    }
    
    .rating-selction input:checked~label {
        color: #FFC107;
    }
    
    .arrow-next {
        width: 24px;
        height: 24px;
        background: var(--gray-400);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .arrow-next:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .quiz-img {
        width: 150px;
    }
    
    .quiz-img img {
        border-radius: 10px;
    }
    
    .progress.progress-xs {
        height: 8px;
    }
    
    fieldset {
        display: none;
    }
    
    fieldset#first-field {
        display: block;
    }
    
    fieldset .quiz-attempt-card {
        display: block !important;
    }
    
    .quiz-circle-progress {
        margin: 40px 0;
    }
    
    .quiz-circle-progress .circle-progress {
        width: 80px;
        height: 80px !important;
        float: unset;
        margin: auto;
    }
    
    .quiz-circle-progress .circle-progress .progress-value {
        top: 30%;
        left: 10%;
        font-size: 22px;
    }
    
    .table.invoice-table thead tr th {
        padding: 8px 12px;
    }
    
    .table.invoice-table tbody tr td {
        padding: 8px 12px;
    }
    
    .referral-card {
        border: 0;
    }
    
    .referral-card h4 {
        color: var(--gray-700);
    }
    
    .referral-card .referral-icon {
        width: 76px;
        height: 76px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    @media (max-width: 1399.98px) {
        .referral-card .referral-icon {
            width: 75px;
            height: 75px;
        }
    }
    
    .card.withdraw-item {
        background: var(--light-200);
    }
    
    .file-upload {
        border: 1px dashed var(--gray-100);
        border-radius: 5px;
        text-align: center;
        position: relative;
        padding: 20px;
    }
    
    .file-upload input {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }
    
    .file-upload .upload-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-900);
    }
    
    .settings-nav {
        border-bottom: 1px solid var(--gray-100);
        background-color: var(--light-900);
        margin-bottom: 20px;
        border-radius: 4px 4px 0 0;
    }
    
    .settings-nav li a {
        font-size: 16px;
        color: var(--gray-500);
        font-weight: 500;
        padding: 15px 18px;
        display: inline-flex;
        position: relative;
    }
    
    @media (max-width: 1199.98px) {
        .settings-nav li a {
            font-size: 15px;
            padding: 15px 11px;
        }
    }
    
    @media (max-width: 767.98px) {
        .settings-nav li a {
            font-size: 14px;
            padding: 10px 10px;
        }
    }
    
    .settings-nav li a:after {
        content: "";
        width: 100%;
        height: 3px;
        background: var(--gray-100);
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: 0;
    }
    
    .settings-nav li a.active {
        color: #FF4667;
    }
    
    .settings-nav li a.active:after {
        opacity: 1;
        background: #FF4667;
    }
    
    .profile-upload-group {
        padding: 0 0 20px;
        border-bottom: 1px solid var(--gray-100);
        margin-bottom: 20px;
    }
    
    .edit-profile-info p {
        font-size: 14px;
    }
    
    .image-upload input[type=file] {
        width: 57px;
        opacity: 0;
        position: relative;
        z-index: 9;
        cursor: pointer;
    }
    
    .image-upload .image-uploads {
        text-align: center;
        border-radius: 5px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    
    .password-strength {
        display: flex;
        margin-top: 15px;
    }
    
    .password-strength span {
        width: 100%;
        height: 5px;
        background: var(--gray-100);
        margin-right: 10px;
        border-radius: 5px;
    }
    
    .password-strength span:last-child {
        margin-right: 0;
    }
    
    .weak-pass .password-strength span {
        background: #E70D0D;
    }
    
    .poor-active span.active#poor,
    .poor-active span.active#poors {
        background: #E70D0D;
    }
    
    .avg-active span.active#poor,
    .avg-active span.active#weak,
    .avg-active span.active#poors,
    .avg-active span.active#weaks {
        background: #FFC107;
    }
    
    .strong-active span.active#poor,
    .strong-active span.active#weak,
    .strong-active span.active#strong,
    .strong-active span.active#poors,
    .strong-active span.active#weaks,
    .strong-active span.active#strongs {
        background: #5625E8;
    }
    
    .heavy-active span.active#poor,
    .heavy-active span.active#weak,
    .heavy-active span.active#strong,
    .heavy-active span.active#heavy,
    .heavy-active span.active#poors,
    .heavy-active span.active#weaks,
    .heavy-active span.active#strongs,
    .heavy-active span.active#heavys {
        background: #03C95A;
    }
    
    .input-icon-start .social-icon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .input-range-picker .form-control {
        min-height: auto;
        height: 32px;
    }
    
    .link-light:hover {
        color: #FF4667 !important;
    }
    
    @keyframes fadeInDown {
        0% {
            opacity: 0;
            transform: translateY(-30px);
            /* Start slightly above */
        }
        100% {
            opacity: 1;
            transform: translateY(0);
            /* End at its original position */
        }
    }
    
    .quiz-ans-card {
        overflow: hidden;
        z-index: 0;
    }
    
    .quiz-ans-card p {
        font-size: 14px;
    }
    
    .quiz-ans-card .quiz-ans-bg1 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    
    .quiz-ans-card .quiz-ans-bg2 {
        position: absolute;
        left: 40%;
        bottom: 0;
        z-index: -1;
    }
    
    .edit-profile-icon {
        width: 32px;
        height: 32px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-500);
    }
    
    .edit-profile-icon:hover {
        background-color: var(--light-900);
        color: var(--gray-500);
    }
    
    .students-profile-body span {
        font-size: 14px;
    }
    
    .chat-two-card .chat-footer {
        border-color: var(--gray-100);
        background: transparent;
        padding: 1rem 1.25rem 1rem;
    }
    
    .chat-two-card p {
        font-size: 14px;
    }
    
    .page-title .tab-list .nav li {
        margin: 0;
    }
    
    .page-title .tab-list .nav li a {
        background: var(--light-900);
        padding: 8px 16px;
    }
    
    .page-title .tab-list .nav li a:hover,
    .page-title .tab-list .nav li a.active {
        background-color: #FF4667;
    }
    
    .edit-review,
    .delete-review {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .quiz-attempt-body .btn.bg-gray-100:hover {
        background-color: var(--gray-200);
        color: var(--gray-900);
    }
    
    .student-courses {
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    
    @media (max-width: 767.98px) {
        .student-courses {
            padding: 16px;
        }
    }
    
    .student-courses p a {
        color: var(--gray-500);
    }
    
    .student-courses .view-course-btn {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .student-courses .tag-btn {
        background-color: #F4F6F9;
        color: #191919;
        padding: 4px 8px;
        border-radius: 40px;
        font-weight: 500;
        font-size: 12px;
    }
    
    @media (max-width: 1399.98px) {
        .student-courses .tag-btn {
            padding: 4px 6px;
            font-size: 11px;
        }
    }
    
    .student-info {
        position: relative;
        border-radius: 10px;
        border: 1px solid var(--gray-100);
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    
    @media (max-width: 767.98px) {
        .student-info {
            padding: 16px;
        }
    }
    
    .quiz-ans-card.fixed .logo-dark.header-logo,
    .chat-card.fixed .logo-dark.header-logo,
    .chat-two-card.fixed .logo-dark.header-logo,
    .quiz-attempt-card.fixed .logo-dark.header-logo,
    .header-two.fixed .logo-dark.header-logo {
        display: none;
    }
    
    .quiz-ans-card.fixed .logo-white.header-logo,
    .chat-card.fixed .logo-white.header-logo,
    .chat-two-card.fixed .logo-white.header-logo,
    .quiz-attempt-card.fixed .logo-white.header-logo,
    .header-two.fixed .logo-white.header-logo {
        display: block;
    }
    
    .note-toolbar {
        background: var(--light);
        border-color: var(--gray-100);
    }
    
    .note-btn {
        background: var(--white);
        color: var(--gray-900);
        border-color: var(--gray-100);
    }
    
    .progress,
    .progress-stacked {
        background: var(--light-700);
    }
    
    .benefit-item {
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        position: relative;
        padding: 1.5rem;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        overflow: hidden;
    }
    
    .benefit-item .benefit-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        font-size: 24px;
    }
    
    .client-section {
        padding-bottom: 30px;
    }
    
    .client-section h6 {
        margin-bottom: 20px;
    }
    
    .top-courses-slider .slick-slide>div {
        margin: 0 12px;
    }
    
    .top-courses-sec {
        position: relative;
        padding: 80px 0 80px;
        text-align: center;
        background-color: var(--light-300);
        z-index: 0;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .top-courses-sec {
            padding: 50px 0;
        }
    }
    
    .top-courses-sec .top-courses-bg {
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
    }
    
    .top-courses-sec .top-courses-slider {
        margin-bottom: 40px;
    }
    
    .top-courses-sec .slick-prev {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        left: -12px;
        top: 50%;
    }
    
    @media (max-width: 575.98px) {
        .top-courses-sec .slick-prev {
            width: 35px;
            height: 35px;
            left: -7px;
        }
    }
    
    .top-courses-sec .slick-prev::before {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        color: var(--dark);
        font-size: 16px;
        font-weight: 900;
    }
    
    .top-courses-sec .slick-next {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        right: -12px;
        top: 50%;
    }
    
    @media (max-width: 575.98px) {
        .top-courses-sec .slick-next {
            width: 35px;
            height: 35px;
            right: -7px;
        }
    }
    
    .top-courses-sec .slick-next::before {
        font-family: "Font Awesome 5 Free";
        content: "\f053";
        color: var(--dark);
        font-size: 16px;
        font-weight: 900;
    }
    
    .trust-sec {
        position: relative;
        margin-top: 0;
        background-color: var(--light-300);
        padding-bottom: 80px;
    }
    
    .trust-sec .video-showcase {
        margin: 0 100px;
        margin-bottom: -104px;
        z-index: 1;
        position: relative;
        border-radius: 10px;
    }
    
    @media (max-width: 767.98px) {
        .trust-sec .video-showcase {
            margin: 0 20px;
            margin-bottom: -70px;
        }
    }
    
    .trust-sec .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .trust-sec .video-play a {
        width: 52px;
        height: 52px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--white);
        border-radius: 50px;
        padding: 16px;
        font-size: 24px;
    }
    
    .trust-sec .video-play a i {
        color: #FF4667;
        transition: 0.5s;
    }
    
    .trust-sec .video-play a:hover i {
        color: #392C7D;
    }
    
    .trust-sec .trust-content {
        padding: 145px 100px 70px;
        position: relative;
        z-index: 0;
        background: #392C7D;
        border-radius: 10px;
    }
    
    @media (max-width: 991.98px) {
        .trust-sec .trust-content {
            padding: 125px 100px 40px;
        }
    }
    
    @media (max-width: 767.98px) {
        .trust-sec .trust-content {
            padding: 105px 20px 20px;
        }
    }
    
    @media (max-width: 575.98px) {
        .trust-sec .trust-content {
            padding-top: 95px;
        }
    }
    
    .trust-sec .trust-content h4 {
        color: var(--white);
        line-height: 40px;
    }
    
    @media (max-width: 767.98px) {
        .trust-sec .trust-content h4 {
            line-height: 32px;
        }
    }
    
    .trust-sec .trust-content .trust-btn {
        margin-top: 70px;
    }
    
    @media (max-width: 991.98px) {
        .trust-sec .trust-content .trust-btn {
            margin-top: 40px;
            margin-bottom: 24px;
        }
    }
    
    @media (max-width: 767.98px) {
        .trust-sec .trust-content .trust-btn {
            margin-top: 30px;
        }
    }
    
    .trust-sec .user-goal {
        border-radius: 10px;
    }
    
    .trust-sec .user-goal .avatar.avatar-lg {
        width: 45px;
        height: 45px;
        margin-right: 5px;
    }
    
    .trust-sec .trust-bg {
        bottom: 0;
        left: 0;
        position: absolute;
        z-index: -1;
    }
    
    .featured-courses-section {
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .featured-courses-section {
            padding: 50px 0;
        }
    }
    
    .featured-courses-section .feature-course-slider-2 {
        margin-bottom: 44px;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item {
        padding: 20px;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        border-radius: 10px;
        margin: 0 12px;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-img {
        margin-bottom: 24px;
        position: relative;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-img img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-img .price-badge {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray-900);
        background: var(--white);
        border: 1px solid var(--gray-900);
        padding: 4px 10px;
        border-radius: 20px;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .badge {
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .fav-icon {
        width: 26px;
        height: 26px;
        border-radius: 30px;
        background: var(--light-500);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        color: var(--gray-500);
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .fav-icon:hover {
        color: #FF4667;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item h5 {
        font-size: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-rating {
        display: flex;
        align-items: center;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-rating .feature-course-person {
        height: 24px;
        width: 24px;
        border-radius: 50px;
        margin-right: 8px;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-rating .feature-course-person img {
        border-radius: 50px;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-rating a {
        color: #5625E8;
        font-size: 14px;
        text-decoration: underline;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .feature-course-rating a:hover {
        color: #FF4667;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .rating {
        font-size: 14px;
        font-weight: 500;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item .buy-course-btn {
        font-size: 14px;
        color: var(--gray-900);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light);
        padding: 6px 10px;
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item:hover {
        border: 1px solid rgba(57, 44, 125, 0.3);
    }
    
    .featured-courses-section .feature-course-slider-2 .feature-course-item:hover .buy-course-btn {
        background: #FF4667;
        color: var(--white);
    }
    
    .featured-courses-section .slick-prev {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        left: -22px;
        top: 50%;
    }
    
    @media (max-width: 575.98px) {
        .featured-courses-section .slick-prev {
            width: 35px;
            height: 35px;
            left: -7px;
        }
    }
    
    .featured-courses-section .slick-prev::before {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        color: var(--dark);
        font-size: 16px;
        font-weight: 900;
    }
    
    .featured-courses-section .slick-next {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        right: -22px;
        top: 50%;
    }
    
    @media (max-width: 575.98px) {
        .featured-courses-section .slick-next {
            width: 35px;
            height: 35px;
            right: -7px;
        }
    }
    
    .featured-courses-section .slick-next::before {
        font-family: "Font Awesome 5 Free";
        content: "\f053";
        color: var(--dark);
        font-size: 16px;
        font-weight: 900;
    }
    
    .banner-image .course-item {
        background: var(--white);
    }
    
    .banner-image .course-item .course-img {
        margin-bottom: 12px;
    }
    
    .banner-image .course-item .course-img img {
        transform: scale(1);
    }
    
    .community-to-learn {
        padding: 80px 0;
        background: var(--light-900);
    }
    
    @media (max-width: 991.98px) {
        .community-to-learn {
            padding: 50px 0;
        }
    }
    
    .community-to-learn .section-header {
        margin-bottom: 32px;
    }
    
    .community-to-learn .community-item {
        margin-bottom: 31px;
    }
    
    .community-to-learn .community-item:last-child {
        margin-bottom: 0;
    }
    
    .community-to-learn .community-item h5 {
        font-size: 18px;
    }
    
    .community-to-learn .community-item .community-icon-1 {
        padding: 20px;
        border-radius: 50px;
        background: #EBE9F1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }
    
    .community-to-learn .community-item .community-icon-1 i {
        font-size: 24px;
        color: #392C7D;
    }
    
    .community-to-learn .community-item .community-icon-2 {
        padding: 20px;
        border-radius: 50px;
        background: #FFEDF0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }
    
    .community-to-learn .community-item .community-icon-2 i {
        font-size: 24px;
        color: #FF4667;
    }
    
    .community-to-learn .community-item .community-icon-3 {
        padding: 20px;
        border-radius: 50px;
        background: #E9FAFE;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }
    
    .community-to-learn .community-item .community-icon-3 i {
        font-size: 24px;
        color: #0DCAF0;
    }
    
    .community-to-learn .community-img {
        position: relative;
        padding: 0 0 30px 20px;
    }
    
    .community-to-learn .community-img .community-img-01 {
        position: absolute;
        bottom: 0;
        left: 50px;
    }
    
    .community-to-learn .community-img .community-img-02 {
        position: absolute;
        top: 45px;
        right: 75px;
    }
    
    .community-to-learn .community-img .community-img-03 {
        position: relative;
        left: 0;
        top: 0;
        border-radius: 30px;
        max-width: 73%;
    }
    
    .community-to-learn .community-img .community-img-04 {
        position: absolute;
        bottom: 0;
        right: 36px;
        border-radius: 30px;
        max-width: 266px;
    }
    
    .community-to-learn .community-img .community-img-05 {
        position: absolute;
        top: 100px;
        right: 60px;
    }
    
    .community-to-learn .community-img .community-count {
        display: inline-flex;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border: 1px solid var(--light-900);
        border-radius: 20px 20px 0px 20px;
        background: var(--white);
        position: absolute;
        right: 0;
        top: 85px;
        z-index: 1;
        min-width: 240px;
    }
    
    @media (max-width: 1199.98px) {
        .community-to-learn .community-img .community-count {
            top: 30px;
        }
    }
    
    .community-to-learn .community-img .community-count .enrolled-list {
        padding: 15px;
        border: 1px solid var(--light);
        border-radius: 15px 15px 0px 15px;
        width: 100%;
        text-align: center;
    }
    
    .community-to-learn .community-img .community-count .enrolled-list p {
        color: var(--gray-900);
        font-size: 14px;
        font-weight: 500;
    }
    
    .cliets-section-one {
        background: #392C7D;
        padding: 20px 0;
    }
    
    .cliets-section-one .brand-slide {
        margin-bottom: 0;
    }
    
    .cliets-section-one .slick-dots {
        display: none;
    }
    
    @keyframes verticalRotate {
        0% {
            transform: rotateY(0deg);
        }
        100% {
            transform: rotateY(360deg);
        }
    }
    
    .how-it-works-sec-two {
        position: relative;
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .how-it-works-sec-two {
            padding: 50px 0;
        }
    }
    
    .how-it-works-sec-two .works-items {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .how-it-works-sec-two .works-items .count {
        font-size: 44px;
        color: #392C7D;
        font-weight: 700;
        margin-right: 36px;
    }
    
    @media (max-width: 575.98px) {
        .how-it-works-sec-two .works-items .count {
            margin-right: 20px;
            font-size: 36px;
        }
    }
    
    .how-it-works-sec-two .works-items h5 {
        font-size: 18px;
    }
    
    .how-it-works-sec-two .works-items p {
        font-size: 14px;
    }
    
    .featured-instructor-slider .slick-slide>div {
        margin: 0 12px;
    }
    
    .featured-instructor-sec {
        position: relative;
        background-color: #392C7D;
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .featured-instructor-sec {
            padding: 50px 0;
        }
    }
    
    .featured-instructor-sec .featured-instructor-item {
        background-color: #342777;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #483D85;
        margin: 0 12px;
    }
    
    .featured-instructor-sec .featured-instructor-img {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .featured-instructor-sec .featured-instructor-img img {
        border-radius: 10px;
        transition: 0.3s;
    }
    
    .featured-instructor-sec .featured-instructor-img:hover img {
        transform: scale(1.1);
    }
    
    .featured-instructor-sec .featured-instructor-img .verify {
        background-color: var(--white);
        border-radius: 50px;
        width: 32px;
        height: 32px;
        position: absolute;
        left: 10px;
        top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #03C95A;
    }
    
    .featured-instructor-sec .featured-instructor-img .fav-icon {
        position: absolute;
        width: 26px;
        height: 26px;
        background-color: var(--white);
        border-radius: 50px;
        font-size: 16px;
        color: var(--gray-500);
        right: 10px;
        bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .featured-instructor-sec .featured-instructor-img .fav-icon:hover,
    .featured-instructor-sec .featured-instructor-img .fav-icon.selected {
        color: #FF4667;
    }
    
    .featured-instructor-sec .featured-instructor-img .courses-tag {
        position: absolute;
        font-size: 13px;
        font-weight: 500;
        color: var(--gray-900);
        border: 1px solid var(--gray-900);
        border-radius: 50px;
        background-color: var(--white);
        padding: 4px 10px;
        right: 10px;
        top: 10px;
    }
    
    .featured-instructor-sec .featured-instructor-content h5 {
        color: var(--white);
    }
    
    .featured-instructor-sec .featured-instructor-content span {
        font-size: 14px;
        color: var(--light);
    }
    
    .featured-instructor-sec .slick-prev {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        left: -12px;
        top: 50%;
    }
    
    @media (max-width: 575.98px) {
        .featured-instructor-sec .slick-prev {
            width: 35px;
            height: 35px;
            left: -7px;
        }
    }
    
    .featured-instructor-sec .slick-prev::before {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        color: var(--dark);
        font-size: 16px;
        font-weight: 900;
    }
    
    .featured-instructor-sec .slick-prev:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .featured-instructor-sec .slick-prev:hover::before {
        color: var(--white);
    }
    
    .featured-instructor-sec .slick-next {
        z-index: 99;
        background: var(--white);
        border: 1px solid var(--gray-100);
        transform: matrix(-1, 0, 0, 1, 0, 0) translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 1.5rem;
        right: -12px;
        top: 50%;
    }
    
    @media (max-width: 575.98px) {
        .featured-instructor-sec .slick-next {
            width: 35px;
            height: 35px;
            right: -7px;
        }
    }
    
    .featured-instructor-sec .slick-next::before {
        font-family: "Font Awesome 5 Free";
        content: "\f053";
        font-size: 16px;
        font-weight: 900;
        color: var(--dark);
    }
    
    .featured-instructor-sec .slick-next:hover {
        background: #FF4667;
        color: var(--white);
        border-color: #FF4667;
    }
    
    .featured-instructor-sec .slick-next:hover::before {
        color: var(--white);
    }
    
    .faq-section {
        position: relative;
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .faq-section {
            padding: 50px 0;
        }
    }
    
    .faq-section .faq-bg2 {
        position: absolute;
        left: 10%;
        bottom: -10%;
    }
    
    .faq-section .faq-bg3 {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    @media (max-width: 1199.98px) {
        .faq-section h2 {
            font-size: 30px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .faq-section h2 {
            font-size: 26px;
        }
    }
    
    .faq-section .faq-img {
        position: relative;
        margin-right: 40px;
    }
    
    @media (max-width: 1399.98px) {
        .faq-section .faq-img {
            margin-right: 20px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .faq-section .faq-img {
            margin-right: 0;
        }
    }
    
    @media (max-width: 991.98px) {
        .faq-section .faq-img {
            display: none;
        }
    }
    
    .faq-section .faq-img span {
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 30px;
        background-color: #FFCD36;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 48px;
        color: var(--gray-900);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .faq-section .faq-img span i {
        animation: verticalRotate 5s linear infinite;
    }
    
    .faq-section .accordion-button {
        font-size: 18px;
        font-weight: 700;
        box-shadow: none;
        display: flex;
        justify-content: space-between;
        color: var(--gray-900);
        background-color: transparent;
    }
    
    @media (max-width: 575.98px) {
        .faq-section .accordion-button {
            font-size: 16px;
        }
    }
    
    .faq-section .accordion-button::after {
        display: none;
    }
    
    .faq-section .accordion-button i {
        transform: rotate(45deg);
        transition: 0.2s;
    }
    
    .faq-section .accordion-button.accordion-button.collapsed i {
        transform: rotate(90deg);
    }
    
    .latest-blog-five.latest-blog-three {
        background-color: transparent;
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .latest-blog-five.latest-blog-three {
            padding: 0 0 50px;
        }
    }
    
    .latest-blog-five.latest-blog-three .blog-date {
        color: var(--white);
        display: flex;
        align-items: center;
    }
    
    .latest-blog-five.latest-blog-three .blog-date i {
        font-size: 18px;
        margin-right: 5px;
    }
    
    .latest-blog-five.latest-blog-three .category {
        border: 1px solid var(--white);
        color: var(--white);
        padding: 4px 12px;
        border-radius: 40px;
        margin-right: 15px;
        font-weight: 500;
        font-size: 14px;
    }
    
    @media (max-width: 1199.98px) {
        .latest-blog-five.latest-blog-three .category {
            padding: 3px 10px;
            font-size: 13px;
        }
    }
    
    .latest-blog-five.latest-blog-three .event-span-three {
        margin-bottom: 8px;
    }
    
    .latest-blog-five.latest-blog-three .event-three-title h5 {
        font-size: 24px;
        font-weight: 700;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    @media (max-width: 1399.98px) {
        .latest-blog-five.latest-blog-three .event-three-title h5 {
            font-size: 20px;
        }
    }
    
    @media (max-width: 991.98px) {
        .latest-blog-five.latest-blog-three .event-three-title h5 {
            font-size: 20px;
        }
    }
    
    @media (max-width: 767.98px) {
        .latest-blog-five.latest-blog-three .event-three-title h5 {
            font-size: 16px;
        }
    }
    
    .latest-blog-five.latest-blog-three .btn-view-all {
        padding: 7px 15px;
        background-color: var(--dark);
        color: var(--white);
        margin-top: 20px;
    }
    
    .latest-blog-five.latest-blog-three .btn-view-all:hover {
        background-color: #FF4667;
    }
    
    .feature-course-slider-2 .slick-list {
        margin: 0 -12px;
    }
    
    .feature-course-slider-2 .slick-slide {
        margin: 0 12px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header .section-badge {
        display: inline-flex;
        padding: 5px 20px;
        border-radius: 40px;
        background: #FFEDF0;
        color: #FF4667;
        font-weight: 500;
        margin-bottom: 15px;
    }
    
    .section-header h2 {
        margin-bottom: 10px;
    }
    
    .favorite-course {
        background: var(--white);
        padding: 60px 0;
        position: relative;
        z-index: 1;
    }
    
    @media (max-width: 767.98px) {
        .favorite-course {
            padding: 40px 0;
        }
    }
    
    .favorite-course .bg-01 {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        z-index: -1;
    }
    
    @media (max-width: 991.98px) {
        .favorite-course .bg-01 {
            display: none;
        }
    }
    
    .favorite-course .owl-carousel .owl-nav.disabled {
        display: none;
    }
    
    .favorite-course .owl-carousel .owl-dots.disabled {
        display: flex;
        justify-content: center;
    }
    
    .favorite-course .owl-carousel .owl-dots.disabled .owl-dot {
        width: 7px;
        height: 7px;
        border-radius: 10px;
        background: var(--light);
        margin-right: 4px;
    }
    
    .favorite-course .owl-carousel .owl-dots.disabled .owl-dot.active {
        width: 7px;
        height: 7px;
        border-radius: 10px;
        background: #FF4667;
    }
    
    .benefits-section {
        background: url("../img/bg/benefit-bg.png") var(--dark);
        background-size: cover;
        background-repeat: no-repeat;
        padding: 60px 0;
    }
    
    @media (max-width: 767.98px) {
        .benefits-section {
            padding: 40px 0;
        }
    }
    
    .benefits-section .section-badge {
        background: var(--gray-800);
    }
    
    .benefits-section .section-header {
        margin-bottom: 60px;
    }
    
    @media (max-width: 991.98px) {
        .benefits-section .section-header {
            margin-bottom: 40px;
        }
    }
    
    .benefits-item {
        text-align: center;
        padding: 0 20px;
    }
    
    .benefits-item .benefits-img {
        width: 90px;
        height: 90px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-800);
        color: var(--white);
        border-radius: 80px;
        margin-bottom: 16px;
    }
    
    .benefits-item .benefits-img img {
        width: 43px;
    }
    
    .benefits-item .title {
        margin-bottom: 16px;
        color: var(--white);
    }
    
    .benefits-item:hover .benefits-img {
        background: #FF4667;
        animation: verticalRotate 0.5s linear 1;
    }
    
    .feature-section {
        background: var(--white);
        overflow: hidden;
        padding: 60px 0;
    }
    
    @media (max-width: 767.98px) {
        .feature-section {
            padding: 40px 0;
        }
    }
    
    .feature-section .bg-star-01 {
        position: absolute;
        top: -94px;
        left: -192px;
        z-index: 0;
    }
    
    .feature-section .bg-star-02 {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
    }
    
    .feature-section .nav-tabs {
        max-width: 700px;
        border-bottom: 1px solid #E6E6E6;
        margin-bottom: 40px !important;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        background: transparent;
        position: relative;
        z-index: 1;
    }
    
    .feature-section .nav-tabs .nav-item {
        width: fit-content;
    }
    
    .feature-section .nav-tabs .nav-item a {
        padding: 0 0 10px 0;
        width: fit-content;
        display: inline-flex;
        justify-content: center;
        font-weight: 500;
        color: var(--gray-900);
        border-width: 0 0 1px;
    }
    
    @media (max-width: 767.98px) {
        .feature-section .nav-tabs .nav-item a {
            width: 150px;
            margin-bottom: 10px;
        }
    }
    
    @media (max-width: 575.98px) {
        .feature-section .nav-tabs .nav-item a {
            width: 120px;
            margin-bottom: 10px;
        }
    }
    
    .feature-section .nav-tabs .nav-item a.active,
    .feature-section .nav-tabs .nav-item a:hover {
        border-radius: 0;
        padding-bottom: 10px;
        color: #FF4667 !important;
    }
    
    .feature-section .nav-tabs .nav-item a.active {
        border-width: 0 0 2px;
        border-bottom-color: #FF4667 !important;
        background: transparent;
    }
    
    .feature-section .owl-carousel .owl-nav.disabled {
        display: none;
    }
    
    .feature-section .owl-carousel .owl-dots.disabled {
        display: flex;
        justify-content: center;
    }
    
    .feature-section .owl-carousel .owl-dots.disabled .owl-dot {
        width: 7px;
        height: 7px;
        border-radius: 10px;
        background: var(--light);
        margin-right: 4px;
    }
    
    .feature-section .owl-carousel .owl-dots.disabled .owl-dot.active {
        width: 7px;
        height: 7px;
        border-radius: 10px;
        background: #FF4667;
    }
    
    .nav-bottom .owl-dots {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }
    
    .nav-bottom .owl-dots .owl-dot {
        width: 7px;
        height: 7px;
        border-radius: 10px;
        background: #D6D4E4;
        margin-right: 4px;
    }
    
    .nav-bottom .owl-dots .owl-dot.active {
        width: 15px;
        height: 7px;
        border-radius: 10px;
        background: #FF4667;
    }
    
    .counter-trending-cover {
        background: var(--white);
        padding-bottom: 60px;
        position: relative;
        z-index: 1;
    }
    
    .counter-trending-cover .instructor-bg {
        position: absolute;
        bottom: 30%;
        left: 0;
        width: 330px;
        height: 429px;
        z-index: -1;
    }
    
    @media (max-width: 991.98px) {
        .counter-trending-cover .instructor-bg {
            display: none;
        }
    }
    
    @media (max-width: 767.98px) {
        .counter-trending-cover {
            padding-bottom: 40px;
        }
    }
    
    .counter-trending-cover .counter-section {
        background: var(--dark);
        position: relative;
        border-radius: 20px;
        padding: 60px;
        margin-bottom: 60px;
    }
    
    @media (max-width: 767.98px) {
        .counter-trending-cover .counter-section {
            padding: 40px;
            margin-bottom: 40px;
        }
    }
    
    .counter-trending-cover .counter-section .counter-bg-01 {
        position: absolute;
        top: 50px;
        left: 50px;
        z-index: 0;
        animation: moveDiagonal 4s ease-in-out infinite;
    }
    
    .counter-trending-cover .counter-section .counter-bg-02 {
        position: absolute;
        top: 130px;
        right: 50px;
        z-index: 0;
        animation: moveDiagonal 4s ease-in-out infinite;
    }
    
    .counter-trending-cover .counter-section .counter-item {
        padding-right: 20px;
        position: relative;
    }
    
    .counter-trending-cover .counter-section .counter-item.no-border::after {
        content: none;
    }
    
    .counter-trending-cover .counter-section .counter-item::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 1px;
        top: 0;
        right: 0;
        background: linear-gradient(90deg, #5C28D4 0%, #392C7D 100%);
    }
    
    @media (max-width: 991.98px) {
        .counter-trending-cover .counter-section .counter-item::after {
            content: none;
        }
    }
    
    @media (max-width: 767.98px) {
        .counter-trending-cover .counter-section .counter-item::after {
            width: 0;
            height: 0;
        }
    }
    
    .counter-trending-cover .counter-section .counter-item h2 {
        margin-bottom: 10px;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card {
        box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.1803921569);
        text-align: center;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-image {
        position: relative;
        margin: 0 auto 16px;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-image img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        margin: 0 auto;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-image .verify {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        right: 20px;
        background: var(--white);
        width: 32px;
        height: 32px;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-image .verify img {
        width: auto;
        height: auto;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-image .fav-icon {
        display: inline-flex;
        align-items: center;
        padding: 5px;
        border-radius: 30px;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 16px;
        color: var(--gray-900);
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-image .fav-icon:hover,
    .counter-trending-cover .trending-instruction .instructor-card .instructor-image .fav-icon.selected {
        color: #FF4667;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-content {
        text-align: center;
    }
    
    .counter-trending-cover .trending-instruction .instructor-card .instructor-content p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .counter-trending-cover .trending-instruction .owl-carousel .owl-nav.disabled {
        display: none;
    }
    
    .counter-trending-cover .trending-instruction .owl-carousel .owl-dots.disabled {
        display: flex;
        justify-content: center;
    }
    
    .social-icons a {
        width: 20px;
        height: 20px;
        background: var(--light);
        border-radius: 50%;
        color: var(--dark);
        margin-right: 8px;
        font-size: 10px;
    }
    
    .social-icons a:hover {
        background: var(--dark);
        color: var(--white);
    }
    
    .social-icons a:last-child {
        margin-right: 0;
    }
    
    .subsribe-section {
        background: url("../img/bg/subscribe-bg.png") var(--dark);
        background-repeat: no-repeat;
        background-position: left bottom;
        position: relative;
    }
    
    .subsribe-section .bg-05 {
        position: absolute;
        top: 50px;
        left: -70px;
        animation: moveDiagonal 4s ease-in-out infinite;
    }
    
    .subsribe-section .contact-section {
        padding: 78px 0;
    }
    
    @media (max-width: 767.98px) {
        .subsribe-section .contact-section {
            padding: 40px 0;
        }
    }
    
    .subsribe-section .contact-section .subcribe-form {
        position: relative;
        background: var(--white);
        border-radius: 70px;
    }
    
    .subsribe-section .contact-section .subcribe-form span {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        left: 32px;
        font-size: 16px;
        color: var(--gray-500);
    }
    
    .subsribe-section .contact-section .subcribe-form .form-control {
        height: 72px;
        border: 0;
        padding: 10px 125px 10px 54px;
        background: transparent;
        font-size: 16px;
    }
    
    @media (max-width: 991.98px) {
        .subsribe-section .contact-section .subcribe-form .form-control {
            font-size: 14px;
            height: 60px;
        }
    }
    
    .subsribe-section .contact-section .subcribe-form .btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        font-size: 16px;
    }
    
    @media (max-width: 767.98px) {
        .subsribe-section .contact-section .subcribe-form .btn {
            font-size: 14px;
        }
    }
    
    .subsribe-section .bg-01 {
        position: absolute;
        bottom: 0;
        right: 35px;
        z-index: 0;
    }
    
    .subsribe-section .bg-02 {
        position: absolute;
        bottom: 0;
        right: 100px;
    }
    
    .subsribe-section .bg-03 {
        position: absolute;
        top: 85px;
        left: 105px;
        animation: verticalRotate 5s linear infinite;
    }
    
    .subsribe-section .bg-04 {
        position: absolute;
        top: 125px;
        right: 40px;
        animation: upDown 3s ease-in-out infinite;
    }
    
    .skill-section {
        background: var(--white);
        padding: 60px 0;
    }
    
    @media (max-width: 767.98px) {
        .skill-section {
            padding: 40px 0;
        }
    }
    
    .skill-section .img-01 {
        height: 100%;
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }
    
    @media (max-width: 575.98px) {
        .skill-section .img-01 {
            margin-bottom: 20px;
        }
    }
    
    .skill-section .img-02 {
        height: 100%;
        width: 100%;
        border-radius: 10px;
    }
    
    .skill-section .img-03 {
        height: 100%;
        width: 100%;
        border-radius: 10px;
    }
    
    @media (max-width: 575.98px) {
        .skill-section .img-03 {
            margin-bottom: 20px;
        }
    }
    
    .skill-section .img-04 {
        position: absolute;
        width: 152px;
        height: 145px;
        top: 50%;
        left: 50%;
        z-index: 1;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    
    .skill-section .img-05 {
        position: absolute;
        width: 132px;
        height: 78px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        z-index: 1;
    }
    
    .skill-image {
        padding-right: 35px;
    }
    
    @media (max-width: 1199.98px) {
        .skill-image {
            padding-left: 0;
        }
    }
    
    @media (max-width: 991.98px) {
        .skill-image {
            display: none;
        }
    }
    
    .skill-content h2 {
        font-size: 44px;
        margin-bottom: 24px;
        max-width: 470px;
    }
    
    @media (max-width: 1199.98px) {
        .skill-content h2 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 767.98px) {
        .skill-content h2 {
            font-size: 28px;
        }
    }
    
    .skill-content p {
        margin-bottom: 24px;
    }
    
    .skill-content .skill-list p {
        font-weight: 500;
        margin-bottom: 16px;
    }
    
    .skill-content .skill-list p:last-child {
        margin-bottom: 0;
    }
    
    .cliets-section {
        background: var(--dark);
        padding: 23px 0;
    }
    
    .cliets-section img {
        height: 30px;
    }
    
    .cliets-section dots.disabled,
    .cliets-section .owl-carousel .owl-nav.disabled {
        display: none;
    }
    
    .about-us {
        background: var(--white);
        padding: 60px 0;
        position: relative;
        z-index: 1;
    }
    
    .about-us .about-bg-01 {
        position: absolute;
        left: -80px;
        top: -250px;
        z-index: -1;
    }
    
    .about-us .about-bg-02 {
        position: absolute;
        width: 400px;
        height: 400px;
        top: -5px;
        right: 0;
        z-index: -1;
    }
    
    @media (max-width: 767.98px) {
        .about-us {
            padding: 40px 0;
        }
    }
    
    .about-us .about-us-content {
        position: relative;
        margin-bottom: 60px;
    }
    
    @media (max-width: 767.98px) {
        .about-us .about-us-content {
            margin-bottom: 40px;
        }
    }
    
    .about-us .about-us-content .about-us-head {
        margin-bottom: 40px;
    }
    
    .about-us .about-us-content .about-us-head h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 48px;
        text-align: start;
    }
    
    @media (max-width: 767.98px) {
        .about-us .about-us-content .about-us-head h2 {
            font-size: 28px;
            line-height: 38px;
        }
    }
    
    @media (max-width: 575.98px) {
        .about-us .about-us-content .about-us-head h2 {
            font-size: 24px;
            line-height: 34px;
        }
    }
    
    .about-us .about-us-content .about-us-head p {
        font-weight: 500;
    }
    
    .about-us .about-us-content .owl-carousel .owl-nav.disabled {
        display: none;
    }
    
    .about-us .about-us-content .owl-carousel .owl-dots.disabled {
        display: flex;
        justify-content: start;
    }
    
    .about-us .about-us-content .img-section {
        position: relative;
        padding-left: 70px;
    }
    
    @media (max-width: 1199.98px) {
        .about-us .about-us-content .img-section {
            padding-left: 0;
        }
    }
    
    .about-us .about-us-content .img-section .enrolled-list-cover {
        display: inline-flex;
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 30px 30px 0px 30px;
        background: var(--dark);
        position: absolute;
        left: 0;
        top: 10px;
        padding: 20px;
        z-index: 1;
    }
    
    .about-us .about-us-content .img-section .enrolled-list-cover .enrolled-list {
        border-radius: 30px 30px 0px 30px;
    }
    
    .about-us .about-us-content .img-section .enrolled-list-cover .enrolled-list .avatar-list-stacked {
        margin-bottom: 10px;
    }
    
    .about-us .about-us-content .img-section .enrolled-list-cover .enrolled-list p {
        font-size: 14px;
    }
    
    .about-us .about-us-content .img-section .about-img {
        border-radius: 10px;
    }
    
    .about-us .about-us-content .img-section .arrow {
        position: absolute;
        top: 10%;
        left: -100px;
        z-index: 0;
    }
    
    @media (max-width: 991.98px) {
        .about-us .about-us-content .img-section {
            display: none;
        }
    }
    
    .about-us .apply-role-section .role-item {
        box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.1803921569);
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        overflow: hidden;
        padding: 40px;
    }
    
    @media (max-width: 767.98px) {
        .about-us .apply-role-section .role-item {
            padding: 30px;
        }
    }
    
    @media (max-width: 575.98px) {
        .about-us .apply-role-section .role-item {
            padding: 20px;
        }
    }
    
    .about-us .apply-role-section .role-item .btn {
        z-index: 99;
        padding: 8px 16px;
    }
    
    .about-us .apply-role-section .role-item .role-bg {
        width: 383px;
        position: absolute;
        top: 35px;
        left: 265px;
        z-index: 0;
    }
    
    .about-us .apply-role-section .role-item .role-img {
        position: absolute;
        bottom: 0;
        right: 0;
        max-height: 210px;
    }
    
    .about-us .apply-role-section .role-item::before {
        content: "";
        background: url("../img/bg/role-bg-01.png");
        background-repeat: no-repeat;
        background-position: right bottom;
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    
    @media (max-width: 1199.98px) {
        .about-us .apply-role-section .role-item::before {
            width: 55%;
            height: 55%;
            background-size: contain;
        }
    }
    
    .about-us .apply-role-section .role-item.student-bg .role-img {
        right: 25px;
    }
    
    .about-us .apply-role-section .role-item.student-bg::before {
        background-image: url("../img/bg/role-bg-02.png");
    }
    
    @media (max-width: 767.98px) {
        .about-us .apply-role-section .role-item.student-bg::before {
            display: none;
        }
    }
    
    #review-carousel.nav-bottom .owl-dots {
        justify-content: start;
    }
    
    .review-item {
        position: relative;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        padding: 20px;
        background: var(--white);
        margin-bottom: 24px;
    }
    
    .review-item .rating {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        gap: 4px;
    }
    
    .review-item .rating i {
        color: var(--gray-500);
    }
    
    .review-item .rating i.selected {
        color: #FFC107;
    }
    
    .review-item .title {
        margin-bottom: 10px;
    }
    
    .review-item p {
        margin-bottom: 30px;
    }
    
    .review-item .review-user img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }
    
    .review-item .review-user p {
        font-size: 14px;
    }
    
    @keyframes upDown {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    @keyframes downUp {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(20px);
        }
        100% {
            transform: translateY(0);
        }
    }
    
    @keyframes verticalRotate {
        0% {
            transform: rotateY(0deg);
        }
        100% {
            transform: rotateY(360deg);
        }
    }
    
    @keyframes moveDiagonal {
        0% {
            transform: translate(0, 0);
        }
        50% {
            transform: translate(25px, 25px);
        }
        100% {
            transform: translate(0, 0);
        }
    }
    
    @keyframes myAnim {
        0%,
        50%,
        100% {
            opacity: 1;
        }
        25%,
        75% {
            opacity: 0;
        }
    }
    
    .course-slider-slick .slick-dots li {
        width: 7px;
        height: 7px;
        border-radius: 10px;
        background: #D6D4E4;
        margin-right: 4px;
    }
    
    .course-slider-slick .slick-dots li.slick-active {
        width: 15px;
        height: 7px;
        border-radius: 10px;
        background: #FF4667;
    }
    
    .course-slider-slick .slick-list {
        margin: 0 -12px;
    }
    
    .course-slider-slick .slick-slide {
        margin: 0 12px;
    }
    
    .home-3 .botton-1 {
        font-size: 16px;
        font-weight: 500;
        padding: 9px 16px;
        border-radius: 40px;
        background: #FF4667;
        color: var(--white);
    }
    
    @media (max-width: 767.98px) {
        .home-3 .botton-1 {
            font-size: 14px;
            font-weight: 400;
            padding: 6px 12px;
        }
    }
    
    .home-3 .botton-1:hover {
        background: #392C7D;
    }
    
    .home-3 .section-header-1 {
        display: flex;
        margin-bottom: 40px;
    }
    
    @media (max-width: 767.98px) {
        .home-3 .section-header-1 {
            margin-bottom: 30px;
        }
    }
    
    @media (max-width: 575.98px) {
        .home-3 .section-header-1 {
            margin-bottom: 24px;
            display: block;
        }
    }
    
    .home-3 .section-header-1 .section-sub-head h2 {
        font-size: 32px;
        margin-bottom: 0;
        font-weight: 700;
        color: var(--gray-900);
        line-height: 48px;
    }
    
    @media (max-width: 767.98px) {
        .home-3 .section-header-1 .section-sub-head h2 {
            font-size: 28px;
        }
    }
    
    @media (max-width: 575.98px) {
        .home-3 .section-header-1 .section-sub-head h2 {
            font-size: 24px;
        }
    }
    
    .home-3 .section-header-1 .section-sub-head span {
        color: #FF4667;
        font-size: 18px;
        font-weight: 700;
        display: block;
        line-height: 24px;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .section-header-1 .section-sub-head {
            margin-bottom: 24px;
            display: block;
        }
    }
    
    .home-3 .home-3-header {
        position: fixed;
        width: 100%;
    }
    
    .home-3 .home-slide-text {
        position: relative;
        z-index: 1;
    }
    
    .home-3 .home-slide-text h5 {
        color: var(--gray-500);
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .home-3 .home-slide-text p {
        margin-bottom: 30px;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .home-slide-text p {
            font-size: 14px;
            margin-bottom: 2px;
        }
    }
    
    .home-3 .banner-image img {
        width: 100%;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .banner-image {
            display: none;
        }
    }
    
    .home-3 .location-search .form-control {
        padding-right: 160px;
    }
    
    .home-3 .bg-search {
        background-color: #6255a4;
        border: 1px solid #6255a4;
        color: #fff;
    }
    
    .home-3 .bg-search a {
        font-size: 14px;
        color: #fff;
    }
    
    .home-3 .bg-search:hover {
        background-color: #54469f;
        border: 1px solid #54469f;
        color: #fff;
    }
    
    .home-3 .trust-user {
        position: relative;
        z-index: 1;
    }
    
    .home-3 .trust-user h5 {
        color: var(--gray-500);
        margin-bottom: 10px;
    }
    
    .home-3 .banner-content {
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }
    
    .home-3 .banner-content .form-inner {
        padding: 10px;
        background-color: var(--white);
        border-radius: 35px;
        width: 100%;
        border: 0;
        max-width: 740px;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .banner-content .form-inner {
            border-radius: 10px;
        }
    }
    
    .home-3 .banner-content .input-group {
        background: var(--white);
        border-radius: 130px;
        padding-left: 12px;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .banner-content .input-group {
            display: block;
            padding: 0;
        }
    }
    
    .home-3 .banner-content .input-group .search-icon {
        display: flex;
        align-items: center;
        color: #FF4667;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .banner-content .input-group .search-icon {
            display: none;
        }
    }
    
    .home-3 .banner-content .input-group .form-control::placeholder {
        color: var(--gray-400);
    }
    
    .home-3 .banner-content .input-group .input-group-prepend {
        margin-right: 0;
    }
    
    .home-3 .banner-content .form-control {
        background: var(--white);
        border-radius: 40px;
        border: 0;
        height: 44px;
        color: var(--gray-900);
        font-size: 14px;
        margin-right: 10px;
    }
    
    .home-3 .banner-content .form-control.catecory-mentor {
        background: #FFDAE0;
        margin: 0px 10px;
        font-size: 14px;
        color: #22100D;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .banner-content .form-control {
            width: 100%;
            margin: 0;
        }
    }
    
    .home-3 .banner-content .select2-container--focus .select2-selection--single {
        background-color: #FFDAE0 !important;
    }
    
    .home-3 .banner-content .select2-container {
        border-radius: 50px !important;
        background-color: #FFDAE0;
        z-index: unset;
    }
    
    .home-3 .banner-content .select2-container .select2-selection--single {
        border: 0;
        align-items: center;
        display: flex;
        background: transparent;
        height: 44px;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .banner-content .select2-container .select2-selection--single {
            width: 100%;
        }
    }
    
    .home-3 .banner-content .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
        padding-left: 15px;
    }
    
    .home-3 .banner-content .select2-container--default.select2-container--open.select2-container {
        border-radius: 3px;
    }
    
    .home-3 .banner-content .select2-container--default .select2-selection--single {
        border-radius: 50px !important;
    }
    
    .home-3 .banner-content .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: auto;
    }
    
    .home-3 .banner-content .sub-btn {
        background: #FF4667;
        border-radius: 50px !important;
        font-weight: bold;
        border-color: #FF4667;
        margin: 0px;
        font-size: 16px;
        line-height: 18px;
        padding: 10px 15px;
        color: #fff;
        width: 44px;
    }
    
    .home-3 .banner-content .sub-btn:hover {
        background: #392C7D !important;
        border-color: #392C7D !important;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .banner-content .sub-btn {
            width: 100%;
        }
    }
    
    .home-3 .rate-head h2 {
        margin-right: 20px;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 0;
    }
    
    @media (max-width: 767.98px) {
        .home-3 .rate-head h2 {
            font-size: 36px;
            line-height: 38px;
        }
    }
    
    @media (max-width: 575.98px) {
        .home-3 .rate-head h2 {
            font-size: 28px;
            line-height: 32px;
        }
    }
    
    .home-3 .trust-rating .rating {
        margin-bottom: 0;
    }
    
    .home-3 .trust-rating .rating i {
        padding: 0 8px 0 0;
    }
    
    .home-3 .rating {
        list-style: none;
        margin: 0 0 7px;
        padding: 0;
        width: 100%;
    }
    
    .home-3 .rating h2 {
        font-size: 48px;
        font-weight: 700;
        margin: 0 8px 0 0;
    }
    
    @media (max-width: 767.98px) {
        .home-3 .rating h2 {
            font-size: 36px;
            line-height: 38px;
        }
    }
    
    @media (max-width: 575.98px) {
        .home-3 .rating h2 {
            font-size: 28px;
            line-height: 32px;
        }
    }
    
    .home-3 .rating i {
        color: #dedfe0;
    }
    
    .home-3 .rating i.filled {
        color: #FFB54A;
    }
    
    .home-3 .drop-detail {
        width: 174px;
        display: flex;
        margin: 0px 17px;
        border-radius: 50px !important;
        border: 0;
        height: 44px;
    }
    
    .home-3 .drop-detail .form-select {
        border: 0;
        border-radius: 50px;
        background-color: #FFDAE0;
        font-size: 14px;
    }
    
    .home-3 .drop-detail .form-select:focus {
        box-shadow: none;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .drop-detail {
            width: 100%;
            margin: 0 0 5px;
        }
    }
    
    .home-3 .select2-dropdown {
        border: 1px solid #FFDAE0;
    }
    
    .home-3 .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #22100D;
        border-style: solid;
        border-width: 0 2px 2px 0;
        padding: 3px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-top: -5px;
        margin-left: -11px;
    }
    
    .home-3 .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: #1B2559;
        border-width: 2px 0 0 2px;
        padding: 3px;
        margin-top: 1px;
    }
    
    .home-3 .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #FFDAE0;
        color: #22100D;
        font-size: 14px;
    }
    
    .home-3 .select2-results__option {
        font-size: 14px;
    }
    
    .home-3 .banner-content .sub-btn:hover,
    .home-3 .banner-content .sub-btn:focus {
        background: #fc7f50;
        border-color: #fc7f50;
    }
    
    .home-3 .section-sub-head h2 {
        font-size: 32px;
        margin-bottom: 0;
        font-weight: 700;
        color: var(--gray-900);
        letter-spacing: 0.9px;
    }
    
    .home-3 .section-sub-head span {
        color: #FF4667;
        font-size: 16px;
        font-weight: 700;
        padding-bottom: 18px;
        display: block;
        letter-spacing: 0.9px;
    }
    
    .home-3 .section-text {
        max-width: 700px;
        color: var(--gray-500);
        font-size: 16px;
        font-weight: 500;
    }
    
    .home-3 .online-course {
        border-radius: 20px;
        padding: 25px;
        position: relative;
        background: var(--white);
    }
    
    .home-3 .online-course h4 {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 700;
    }
    
    .home-3 .course-inner-content {
        margin-left: 20px;
    }
    
    .home-3 .course-inner-content h4 {
        margin-bottom: 8px;
        font-weight: 700;
        color: var(--gray-900);
    }
    
    .home-3 .course-inner-content p {
        color: var(--gray-500);
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .home-3 .course-radius {
        border-radius: 20px;
        width: 100%;
        border: 1px solid #e9ecef;
    }
    
    .home-3 .blur-border {
        padding: 3px;
        border-radius: 10px;
    }
    
    .home-3 .blur-border.course-radius {
        padding: 1px;
        border-radius: 20px;
    }
    
    .home-3 .course-full-width {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        top: 0;
        transition: top ease 0.5s;
    }
    
    .home-3 .course-full-width:hover {
        top: -10px;
        transition: top ease 0.5s;
    }
    
    .home-3 .student-course {
        position: relative;
        margin-top: -60px;
    }
    
    .home-3 .how-it-works {
        background: var(--white);
        padding: 80px 0;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .how-it-works {
            padding: 50px 0;
        }
    }
    
    .home-3 .feature-box {
        position: relative;
        z-index: 9;
        width: 100%;
        margin-bottom: 58px;
        background: #FFFFFF;
        border: 1px solid #e9ecef;
        box-shadow: -11.729px -11.729px 32px rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        margin-right: 30px;
    }
    
    .home-3 .feature-bg {
        padding: 25px;
        width: 100%;
        border-radius: 10px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        margin-right: 30px;
    }
    
    .home-3 .feature-bg:hover {
        background: #413655;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .home-3 .feature-bg p {
        color: var(--gray-500);
        font-size: 14px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        margin-bottom: 0px;
    }
    
    .home-3 .slick-dots button {
        width: 15px;
        height: 8px;
        border-radius: 50px;
        background: var(--gray-100);
    }
    
    .home-3 .slick-dots .slick-active {
        width: 50px;
        height: 8px;
        border-radius: 50px;
        background: #FF4667;
    }
    
    .home-3 .slick-dots .slick-active button {
        background: transparent;
    }
    
    .home-3 .slick-slide {
        margin-right: 24px;
    }
    
    @media (max-width: 575.98px) {
        .home-3 .slick-slide {
            margin-right: 0;
        }
    }
    
    .home-3 .feature-bg:hover p,
    .home-3 .feature-bg:hover .feature-text {
        color: #fff;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .home-3 .feature-header {
        margin-bottom: 10px;
    }
    
    .home-3 .feature-icon {
        margin-right: 15px;
        font-size: 30px;
        width: 105px;
        border-radius: 100px;
        height: 105px;
        display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        color: #fff;
        margin: 0 auto;
    }
    
    .home-3 .mentoring-course .slick-dots {
        bottom: -40px;
    }
    
    .home-3 .feature-heading {
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 700;
    }
    
    .home-3 .feature-text {
        font-size: 20px;
        color: var(--gray-900);
        font-weight: 700;
        margin-top: 24px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        margin-bottom: 4px;
    }
    
    .home-3 .new-course {
        padding: 80px 0px 56px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    .home-3 .new-course:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        background-repeat: no-repeat;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .new-course {
            padding: 50px 0 26px;
        }
    }
    
    .home-3 .new-course .home-three-sec-bg .sec-bg-01 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-3 .new-course .home-three-sec-bg .sec-bg-02 {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    
    @media (max-width: 1199.98px) {
        .home-3 .new-course .course-item .btn-xl {
            padding: 9px 9px;
            font-size: 14px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-3 .new-course {
            padding-bottom: 0;
        }
    }
    
    .home-3 .course-info .course-view img,
    .home-3 .course-info .rating-img img {
        width: 18px;
    }
    
    .home-3 .course-view {
        margin-left: auto;
    }
    
    .home-3 .color-active {
        color: red;
        font-weight: 700;
    }
    
    .home-3 .average-rating span {
        color: var(--gray-500);
    }
    
    .home-3 .master-skill {
        padding: 80px 0px 0px;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .master-skill {
            padding: 50px 0 0;
        }
    }
    
    .home-3 .rotate-box {
        position: relative;
        transform: rotate(30deg);
    }
    
    .home-3 .certified-item {
        border: 1px solid var(--gray-100);
        border-radius: 5px;
        padding: 20px;
    }
    
    .home-3 .certified-item p {
        margin-bottom: 0;
        color: var(--gray-900);
        margin-left: 10px;
        font-weight: 500;
    }
    
    .home-3 .certified-group {
        border-radius: 5px;
        position: relative;
        top: 0;
        transition: top ease 0.5s;
        width: 100%;
        border: 1px solid #e9ecef;
    }
    
    .home-3 .certified-group:hover {
        top: -10px;
    }
    
    .home-3 .certified-img {
        background: #FFEDF0;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .home-3 .get-certified {
        background: var(--white);
        padding: 20px;
        border-radius: 5px;
    }
    
    .home-3 .get-certified p {
        margin-bottom: 0;
        color: var(--gray-900);
        font-size: 16px;
        margin-left: 10px;
        font-weight: 500;
    }
    
    .home-3 .career-img {
        position: relative;
        text-align: center;
    }
    
    .home-3 .career-img .master-bg {
        position: absolute;
        z-index: -1;
    }
    
    .home-3 .career-img .float-img-01 {
        position: absolute;
        top: -55px;
        left: 0;
    }
    
    .home-3 .career-img .float-img-02 {
        position: absolute;
        top: -70px;
        right: 0;
    }
    
    .home-3 .career-img .float-img-03 {
        position: absolute;
        bottom: 105px;
        left: -34px;
    }
    
    .home-3 .career-img .float-img-04 {
        position: absolute;
        bottom: 0;
        right: -35px;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .career-img {
            display: none;
        }
    }
    
    .home-3 .career-group {
        margin-bottom: 80px;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .career-group {
            margin-bottom: 50px;
        }
    }
    
    .home-3 .trend-course {
        padding: 80px 0px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .trend-course {
            padding: 50px 0;
        }
    }
    
    .home-3 .trend-course .home-three-sec-bg .sec-bg-01 {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-3 .trend-course .home-three-sec-bg .sec-bg-02 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-3 .slick-prev {
        position: relative;
    }
    
    .home-3 .trending-course .slick-dots {
        bottom: -40px;
    }
    
    .home-3 .trend-box {
        background: transparent;
        padding: 0;
    }
    
    .home-3 .feature-instructors {
        padding-top: 80px;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .feature-instructors {
            padding-top: 50px;
        }
    }
    
    .home-3 .feature-instructors .instructor-item.instructor-item-two {
        box-shadow: none;
    }
    
    .home-3 .feature-head {
        margin: auto;
    }
    
    .home-3 .feature-head h2 {
        margin-bottom: 25px;
    }
    
    .home-3 .instructors-course .slick-dots {
        bottom: -40px;
    }
    
    .home-3 .slick-dots {
        bottom: -40px;
    }
    
    .home-3 .student-count i {
        display: flex;
        align-items: center;
        color: #FF5364;
        margin-right: 17px;
    }
    
    .home-3 .student-count span {
        color: var(--gray-500);
        font-size: 16px;
    }
    
    .home-3 .lead-companies {
        padding: 80px 0;
    }
    
    .home-3 .lead-companies .owl-carousel .owl-stage {
        display: flex;
        display: -webkit-flex;
        -webkit-align-items: center;
        align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .lead-companies {
            padding: 50px 0;
        }
    }
    
    .home-3 .owl-carousel .owl-item .lead-img img {
        width: auto;
    }
    
    .home-3 .trust-lead .get-certified {
        padding: 20px;
    }
    
    .home-3 .trust-lead .certified-img img {
        top: inherit;
        left: inherit;
    }
    
    .home-3 .share-knowledge {
        padding: 80px 0px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .share-knowledge {
            padding: 50px 0;
        }
    }
    
    .home-3 .share-knowledge .home-three-sec-bg .sec-bg-01 {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-3 .share-knowledge .home-three-sec-bg .sec-bg-02 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-3 .share-knowledge .knowledge-img {
        padding-right: 24px;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .share-knowledge .knowledge-img {
            padding-right: 0;
        }
    }
    
    .home-3 .join-mentor h2 {
        margin-bottom: 8px;
    }
    
    .home-3 .join-mentor p {
        margin-bottom: 16px;
    }
    
    .home-3 .latest-blog {
        padding: 80px 0px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .latest-blog {
            padding: 50px 0;
        }
    }
    
    .home-3 .latest-blog .home-three-sec-bg .sec-bg-01 {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-3 .latest-blog .home-three-sec-bg .sec-bg-02 {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-3 .blogs-slide .blog-widget {
        border: 1px solid #e9ecef;
        margin-bottom: 24px;
        padding: 0;
    }
    
    .home-3 .blogs-slide .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    
    .home-3 .blogs-slide .slick-dots {
        bottom: -10px;
    }
    
    .home-3 .blog-widget .instructors-img {
        padding: 0;
    }
    
    .home-3 .enroll-group {
        background: linear-gradient(90deg, rgba(161, 196, 253, 0.79) 0%, rgba(194, 233, 251, 0.36) 100%);
        backdrop-filter: blur(35px);
        border-radius: 20px;
        padding: 24px;
        margin: 80px 0px 50px;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .enroll-group {
            margin: 50px 0;
        }
    }
    
    .home-3 .enroll-group .enroll-course {
        margin-bottom: 0px;
    }
    
    .home-3 .enroll-group .enroll-course .enroll-img {
        background: var(--white);
        border-radius: 10px;
        width: 60px;
        height: 60px;
        border: 4px solid var(--gray-100);
        margin-right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    @media (max-width: 767.98px) {
        .home-3 .enroll-group .enroll-course {
            justify-content: center;
        }
    }
    
    .home-3 .course-count {
        color: var(--gray-500);
    }
    
    .home-3 .course-count p {
        margin-bottom: 0;
        font-size: 18px;
        font-weight: 600;
        color: var(--gray-500);
    }
    
    .home-3 .course-count h3 {
        font-weight: 700;
        font-size: 32px;
        margin-bottom: 4px;
        color: #342777;
    }
    
    .home-3 .icon-group {
        padding-top: 17px;
    }
    
    .home-3 .icon-group .enroll-course {
        margin-bottom: 24px;
        position: relative;
        top: 0;
        transition: top ease 0.5s;
        cursor: pointer;
    }
    
    .home-3 .icon-group .enroll-course:hover {
        top: -10px;
    }
    
    .home-3 .enroll-course {
        margin-bottom: 24px;
    }
    
    .home-3 .user-love {
        padding: 80px 0px;
        background: var(--gray-900);
        min-height: 500px;
    }
    
    .home-3 .user-love .section-sub-head span {
        color: var(--white);
        padding-bottom: 0;
        margin-bottom: 8px;
    }
    
    .home-3 .user-love .section-sub-head h2 {
        color: var(--white);
    }
    
    .home-3 .white-header span,
    .home-3 .white-header h2 {
        color: #fff;
    }
    
    .home-3 .become-instructors {
        padding: 80px 0px 80px;
        position: relative;
    }
    
    .home-3 .become-instructors .become-instructors-bg1 {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    .home-3 .become-instructors .become-instructors-bg2 {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .become-instructors {
            padding: 50px 0;
        }
    }
    
    .home-3 .student-mentor {
        background: #392C7D;
        padding: 40px 40px 0;
        border-radius: 20px;
        color: var(--gray-500);
        position: relative;
    }
    
    .home-3 .student-mentor h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--white);
    }
    
    .home-3 .top-instructors {
        padding-bottom: 40px;
    }
    
    .home-3 .top-instructors p {
        margin-bottom: 20px;
        color: var(--light);
    }
    
    .home-3 .yellow-mentor {
        background: var(--dark);
    }
    
    .home-3 .testimonial-four {
        padding: 80px 0 0;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .testimonial-four {
            padding: 50px 0 0;
        }
    }
    
    .home-3 .testimonial-four::before {
        content: "";
        background: var(--gray-900);
        height: 500px;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .home-3 .testimonial-four .slick-list {
        border: 14px solid #ededed;
        max-width: 70%;
        margin: auto;
        border-radius: 45px;
        background-image: linear-gradient(142.13deg, rgba(255, 255, 255, 0.28) 1.8%, rgba(255, 255, 255, 0.31) 99.75%);
        backdrop-filter: blur(151.39px);
    }
    
    @media (max-width: 767.98px) {
        .home-3 .testimonial-four .slick-list {
            max-width: 100%;
            border-radius: 20px;
            border-width: 10px;
        }
    }
    
    .home-3 .testimonial-four .testimonial-content {
        max-width: 85%;
        border: 0;
        background: none;
        margin: 0 auto;
    }
    
    .home-3 .testimonial-four .testimonial-content p {
        font-size: 20px;
        color: var(--white);
        font-weight: 500;
        font-style: italic;
        margin-bottom: 43px;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .testimonial-four .testimonial-content p {
            font-size: 16px;
            margin-bottom: 24px;
        }
    }
    
    .home-3 .testimonial-four .h-four {
        padding-bottom: 140px;
    }
    
    .home-3 .testimonial-four .slick-slide img {
        transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
    }
    
    .home-3 .testimonial-four .slick-prev {
        left: 20%;
        z-index: 99;
        background: var(--white);
        width: 60px;
        height: 60px;
        border-radius: 0;
    }
    
    .home-3 .testimonial-four .slick-prev:before {
        font-family: "Font Awesome 5 Free";
        content: "\f060";
        color: #392C7D;
        font-weight: 600;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .testimonial-four .slick-prev {
            width: 40px;
            height: 40px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-3 .testimonial-four .slick-prev {
            left: 6%;
        }
    }
    
    .home-3 .testimonial-four .slick-next {
        right: 22%;
        background: var(--white);
        width: 60px;
        height: 60px;
        border-radius: 0;
    }
    
    .home-3 .testimonial-four .slick-next:before {
        font-family: "Font Awesome 5 Free";
        content: "\f061";
        color: #392C7D;
        font-weight: 600;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .testimonial-four .slick-next {
            width: 40px;
            height: 40px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-3 .testimonial-four .slick-next {
            right: 6%;
        }
    }
    
    .home-3 .review {
        width: 100%;
    }
    
    .home-3 .mentor-testimonial {
        z-index: 9;
    }
    
    .home-3 .mentor-testimonial .slick-slide {
        margin-right: 0;
    }
    
    .home-3 .testimonial-bg-left img {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, 50%);
        position: absolute;
        top: 50%;
        left: 174px;
    }
    
    .home-3 .testimonial-bg-left,
    .home-3 .testimonial-bg-right,
    .home-3 .testimonial-bg-top {
        position: relative;
    }
    
    .home-3 .testimonial-bg-right img {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, 50%);
        position: absolute;
        top: 50%;
        right: -125px;
    }
    
    .home-3 .testimonial-bg-top img {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50px;
        left: 38%;
    }
    
    .home-3 .user-img {
        margin-bottom: 5px;
    }
    
    .home-3 .user-img img {
        margin: auto;
        border-radius: 50px;
        width: 80px;
        height: 80px;
        border: 3px solid var(--white);
    }
    
    .home-3 .user-img h6 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .home-3 .testimonial-quotes {
        position: relative;
        left: -30px;
        z-index: 99;
        top: 0;
        margin-bottom: 15px;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .testimonial-quotes {
            width: 60px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-3 .testimonial-quotes {
            width: 40px;
            left: 0;
        }
    }
    
    .home-3 .testimonial-four .slick-prev,
    .home-3 .testimonial-four .slick-next {
        top: 62%;
        border-radius: 50px;
    }
    
    .home-3 .testimonial-four .slick-prev:hover,
    .home-3 .testimonial-four .slick-next:hover,
    .home-3 .testimonial-four .swiper-button-prev:hover,
    .home-3 .testimonial-four .swiper-button-next:hover {
        color: #fff;
        background: #FF4667;
        opacity: 1;
    }
    
    .home-3 .testimonial-four .slick-prev:hover:before,
    .home-3 .testimonial-four .slick-prev:focus:before,
    .home-3 .testimonial-four .slick-next:hover:before,
    .home-3 .testimonial-four .slick-next:focus:before,
    .home-3 .testimonial-four .swiper-button-prev:hover:before,
    .home-3 .testimonial-four .swiper-button-next:hover:before {
        color: #fff;
        opacity: 1;
    }
    
    .home-3 .testimonial-four .slick-next:focus,
    .home-3 .testimonial-four .slick-prev:focus {
        background: #FF4667;
    }
    
    .home-3 [dir=rtl] .testimonial-four .slick-prev:before {
        content: "→";
    }
    
    .home-3 [dir=rtl] .testimonial-four .slick-next:before {
        content: "←";
    }
    
    .home-3 .testimonial-all {
        padding: 40px;
        position: relative;
    }
    
    @media (max-width: 767.98px) {
        .home-3 .testimonial-all {
            padding: 24px;
        }
    }
    
    .home-3 .testimonial-icon {
        position: relative;
    }
    
    .home-3 .testimonial-icon img {
        position: absolute;
        right: -40px;
        top: 0px;
    }
    
    .home-3 .testimonial-user h6 {
        margin-bottom: 5px;
        font-size: 18px;
        font-weight: 700;
    }
    
    .home-3 .testimonial-user span {
        color: var(--gray-500);
    }
    
    @media (max-width: 767.98px) {
        .home-3 .testimonial-user span {
            color: var(--white);
        }
    }
    
    .home-3 .mentor-img img {
        height: 230px;
        bottom: 0;
        right: 40px;
        position: absolute;
    }
    
    .expert-item {
        border: 1px solid var(--gray-100);
        border-radius: 20px;
        padding: 24px;
        display: flex;
        align-items: center;
        background: var(--white);
        position: relative;
        top: 0;
        transition: 0.5 ease all;
    }
    
    .expert-item .expert-img {
        margin-right: 24px;
    }
    
    .expert-item .expert-content h4 {
        margin-bottom: 4px;
    }
    
    .expert-item:hover {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transition: 0.5 ease all;
    }
    
    .blog-wrap {
        background: var(--white);
        border-radius: 10px;
        margin-bottom: 50px;
    }
    
    .blog-wrap .blog-img {
        position: relative;
        overflow: hidden;
        z-index: 1;
        border-radius: 10px 10px 0 0;
        padding-bottom: 0;
    }
    
    .blog-wrap .blog-img img {
        width: 100%;
        transform: translateZ(0);
        transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    }
    
    .blog-wrap .blog-content {
        padding: 20px;
    }
    
    .blog-wrap .blog-content h5 {
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .blog-wrap .blog-content .blog-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }
    
    .blog-wrap .blog-content .blog-category {
        font-weight: 500;
        color: #392C7D;
        text-decoration: underline;
    }
    
    .blog-wrap .blog-content .blog-date i {
        margin-right: 8px;
        color: #FF4667;
    }
    
    .blog-wrap:hover .blog-img img {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        transform: scale(1.15);
    }
    
    .footer.footer-three {
        background: #392C7D;
    }
    
    .footer.footer-three p {
        color: var(--white);
        font-size: 16px;
    }
    
    .footer.footer-three .footer-title {
        color: var(--white);
        position: relative;
        margin-bottom: 24px;
    }
    
    .footer.footer-three .footer-title::before {
        position: absolute;
        content: "";
        height: 2px;
        width: 20px;
        background: #FF4667;
        bottom: -8px;
        border-radius: 10px;
        left: 0;
    }
    
    .footer.footer-three .footer-title::after {
        position: absolute;
        content: "";
        height: 2px;
        width: 9px;
        background: #FF4667;
        bottom: -8px;
        border-radius: 10px;
        left: 23px;
    }
    
    .footer.footer-three a {
        color: var(--light);
    }
    
    .footer.footer-three .contact-infos span {
        font-size: 14px;
        font-weight: 600;
        color: var(--light);
        margin-bottom: 4px;
        display: block;
    }
    
    .footer.footer-three .contact-infos p {
        font-size: 14px;
        color: var(--white);
    }
    
    .footer.footer-three .footer-bottom {
        background: #392C7D;
        border-top: 1px solid #483D85;
    }
    
    .footer.footer-three .footer-bottom .copyright-text p {
        font-size: 14px;
        color: var(--light);
    }
    
    .footer.footer-three .footer-bottom .copyright-text p a {
        color: #FF4667;
    }
    
    .footer.footer-three .footer-bottom .copyright-text p a:hover {
        color: var(--white);
    }
    
    @media (max-width: 767.98px) {
        .footer.footer-three .footer-bottom .copyright-text {
            text-align: center;
        }
    }
    
    .footer.footer-three .footer-bottom .privacy-link {
        display: flex;
        align-items: center;
        justify-content: end;
    }
    
    @media (max-width: 767.98px) {
        .footer.footer-three .footer-bottom .privacy-link {
            justify-content: center;
        }
    }
    
    .footer.footer-three .footer-bottom .privacy-link a {
        display: block;
        font-size: 14px;
        position: relative;
        margin: 0 8px 0 0;
        padding: 0 14px 0 0;
        color: var(--light);
    }
    
    .footer.footer-three .footer-bottom .privacy-link a:hover {
        color: #FF4667;
    }
    
    .footer.footer-three .footer-bottom .privacy-link a::after {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50px;
        background: #FF4667;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        right: 0;
    }
    
    .footer.footer-three .footer-bottom .privacy-link a:last-child {
        margin: 0;
        padding: 0;
    }
    
    .footer.footer-three .footer-bottom .privacy-link a:last-child::after {
        content: none;
    }
    
    @media (max-width: 991.98px) {
        .home-3 .rate-head h2 {
            font-size: 36px;
        }
        .home-3 .rating h2 {
            font-size: 36px;
        }
        .home-3 .student-mentor {
            padding: 30px;
        }
        .home-3 .top-instructors {
            padding-bottom: 0;
        }
    }
    
    .home-3 .privacy-link {
        display: flex;
        align-items: center;
        justify-content: end;
    }
    
    .home-4 .banner-form {
        margin-bottom: 30px;
    }
    
    .home-4 .banner-form .input-group {
        background: var(--white);
        padding-left: 0;
        align-items: center;
    }
    
    @media (max-width: 575.98px) {
        .home-4 .banner-form .input-group {
            display: block;
        }
    }
    
    .home-4 .banner-form .form-inner1 {
        background: var(--white);
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 14px 0px rgba(219, 219, 219, 0.2509803922);
        border-radius: 10px;
        max-width: 856px;
        padding: 10px;
        width: 100%;
    }
    
    .home-4 .banner-form .select2-container .select2-selection--single {
        border: 0;
        align-items: center;
        display: flex;
        background: var(--white);
        height: 40px;
        border-right: 1px solid var(--gray-100);
        border-radius: 0;
    }
    
    @media (max-width: 575.98px) {
        .home-4 .banner-form .select2-container .select2-selection--single {
            border: 0;
        }
    }
    
    .home-4 .banner-form .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 39px;
    }
    
    .home-4 .banner-form .form-control {
        border: 0;
        background: transparent;
        margin-right: 10px;
    }
    
    @media (max-width: 575.98px) {
        .home-4 .banner-form .form-control {
            width: 100%;
            margin: 0 0 5px 0;
        }
    }
    
    .home-4 .banner-form button {
        border-radius: 5px !important;
        min-width: 105px;
        padding: 12px 15px;
    }
    
    @media (max-width: 575.98px) {
        .home-4 .banner-form button {
            width: 100%;
            padding: 10px;
            font-size: 14px;
        }
    }
    
    .home-4 .banner-content h1 {
        color: #392C7D;
        max-width: 627px;
        margin-bottom: 15px;
    }
    
    @media (max-width: 1399.98px) {
        .home-4 .banner-content h1 {
            font-size: 54px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .home-4 .banner-content h1 {
            font-size: 40px;
        }
    }
    
    @media (max-width: 991.98px) {
        .home-4 .banner-content h1 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-4 .banner-content h1 {
            font-size: 28px;
        }
    }
    
    .home-4 .banner-content h6 {
        font-size: 18px;
        font-weight: 700;
        color: #FF4667;
        margin-bottom: 15px;
        text-decoration: underline;
    }
    
    .home-4 .banner-content p {
        margin-bottom: 30px;
    }
    
    .home-4 .trust-user p {
        margin-bottom: 4px;
        font-weight: 500;
        font-size: 16px;
        color: var(--gray-900);
    }
    
    .home-4 .trust-user .rating i {
        font-size: 14px;
        margin-right: 4px;
    }
    
    .home-4 .trust-user .rating i.filled {
        color: #FFC107;
    }
    
    .home-4 .trust-user .rating span {
        font-size: 14px;
        font-weight: 500;
    }
    
    @media (max-width: 575.98px) {
        .home-4 .shapes {
            display: none;
        }
    }
    
    .home-4 .shapes-one {
        position: absolute;
        right: 20%;
        top: 0;
        z-index: -1;
    }
    
    .home-4 .shapes-two {
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    
    .home-4 .shapes-four {
        position: absolute;
        width: 78px;
        left: 0;
        bottom: 10px;
        z-index: -1;
    }
    
    .home-4 .shapes-middle {
        position: absolute;
        left: 60%;
        top: 17%;
        bottom: 0;
        z-index: -1;
    }
    
    .home-4 .about-section li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 20px 0;
    }
    
    .home-4 .about-section li .list-icon {
        text-transform: capitalize;
    }
    
    .home-4 .about-section li .list-icon img {
        width: 20px;
        margin-right: 10px;
    }
    
    .home-4 .about-section .section-header {
        margin-bottom: 24px;
    }
    
    .home-4 .about-section .section-header h6 {
        margin-bottom: 15px;
    }
    
    .home-4 .about-image {
        background: var(--white);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 10px;
        padding: 20px;
        -webkit-transition: all 1.5s;
        transition: all 1.5s;
    }
    
    .home-4 .about-image:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        box-shadow: none;
    }
    
    .home-4 .join-title-one {
        max-width: 515px;
    }
    
    .home-4 .join-title-one h3 {
        margin-bottom: 8px;
    }
    
    .home-4 .join-title-one p {
        margin-bottom: 24px;
    }
    
    .home-4 .join-title-one ul li {
        position: relative;
        padding-left: 28px;
        font-weight: 500;
        margin-bottom: 16px;
    }
    
    .home-4 .join-title-one ul li:last-child {
        margin-bottom: 0;
    }
    
    .home-4 .join-title-one ul li::before {
        content: "ؐ";
        font-family: "iconsax" !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        left: 0;
        color: #03C95A;
        font-size: 20px;
    }
    
    .home-4 .testimonial-sec {
        background-image: url(../img/bg/map-bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        padding: 60px 0 60px;
        width: 100%;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .testimonial-sec {
            padding: 50px 0;
        }
    }
    
    .home-4 .testimonial-sec .section-header h2 {
        margin-bottom: 4px;
    }
    
    .home-4 .testimonial-two-img {
        margin-bottom: 40px;
    }
    
    .home-4 .trending-course-sec {
        padding: 60px 0 60px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .trending-course-sec {
            padding: 50px 0;
        }
    }
    
    .home-4 .trending-course-main {
        margin-bottom: 40px;
    }
    
    .home-4 .about-section {
        padding: 60px 0 60px;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .about-section {
            padding: 50px 0;
        }
    }
    
    .home-4 .about-section .about-bg .about-01 {
        position: absolute;
        left: 0;
        top: 10%;
        width: 96px;
        height: 165px;
        z-index: -1;
    }
    
    .home-4 .about-section .about-bg .about-02 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        width: 350px;
        height: 350px;
        z-index: -1;
    }
    
    .home-4 .about-section .about-bg .about-03 {
        position: absolute;
        bottom: 60px;
        right: 30%;
        width: 350px;
        height: 330px;
        z-index: -1;
    }
    
    .home-4 .about-section .stylist-gallery {
        position: relative;
        padding-left: 24px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .about-section .stylist-gallery {
            padding-left: 0;
        }
    }
    
    .home-4 .about-section .stylist-gallery .image-1 {
        position: relative;
    }
    
    .home-4 .about-section .stylist-gallery .single-image {
        margin-bottom: 30px;
    }
    
    .home-4 .about-count {
        text-align: center;
    }
    
    .home-4 .about-count .course-img {
        margin-bottom: 24px;
    }
    
    .home-4 .about-count .course-img img {
        width: 80px;
    }
    
    .home-4 .about-count h4 {
        margin-bottom: 4px;
    }
    
    .home-4 .about-image.count-one h4 {
        color: #03C95A;
    }
    
    .home-4 .about-image.count-two h4 {
        color: #FF4667;
    }
    
    .home-4 .about-image.count-three h4 {
        color: #FFC107;
    }
    
    .home-4 .about-image.count-four h4 {
        color: #392C7D;
    }
    
    .home-4 .count-content-three p {
        font-weight: 500;
    }
    
    .home-4 .about-content p {
        margin-bottom: 24px;
    }
    
    .home-4 .about-content .about-img {
        margin-bottom: 24px;
    }
    
    .home-4 .about-content .about-img img {
        border-radius: 10px;
    }
    
    .home-4 .patter-bg .patter-one {
        position: absolute;
        left: -5rem;
        bottom: 18rem;
    }
    
    .home-4 .featured-courses-sec {
        padding: 60px 0px 60px;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .featured-courses-sec {
            padding: 50px 0;
        }
    }
    
    .home-4 .featured-info {
        border-bottom: 1px solid #f7f7f7;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .home-4 .skills-item {
        margin-bottom: 40px;
        border-bottom: 1px solid var(--gray-100);
        padding-bottom: 40px;
    }
    
    .home-4 .skills-item:last-child {
        padding: 0;
        margin: 0;
        border: 0;
    }
    
    .home-4 .skills-wrap {
        background: var(--light-900);
        border-radius: 10px;
        padding: 50px;
    }
    
    .home-4 .skills-wrap h3 {
        margin-bottom: 8px;
    }
    
    .home-4 .skills-wrap p {
        margin-bottom: 24px;
    }
    
    .home-4 .skills-wrap ul li {
        font-weight: 500;
        margin-bottom: 16px;
    }
    
    .home-4 .skills-wrap .join-mentor-img {
        position: relative;
        margin-left: 50px;
    }
    
    .home-4 .skills-wrap .join-mentor-img>img {
        border-radius: 10px;
    }
    
    .home-4 .skills-wrap .join-mentor-img .joing-icon-award {
        width: 100px;
        height: 100px;
        position: absolute;
        bottom: 25px;
        left: -50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    @media (max-width: 575.98px) {
        .home-4 .skills-wrap .join-mentor-img .joing-icon-award {
            width: 60px;
            height: 60px;
        }
    }
    
    @media (max-width: 575.98px) {
        .home-4 .skills-wrap .join-mentor-img .joing-icon-award img {
            width: 24px;
        }
    }
    
    .home-4 .skills-wrap .join-mentor-img .joing-icon-award .joing-icon-two {
        position: absolute;
        bottom: 75px;
        right: -35px;
    }
    
    .home-4 .skills-wrap .join-mentor-img .joing-icon-award .joing-icon-three {
        position: absolute;
        bottom: 50px;
        left: -40px;
    }
    
    .home-4 .skills-wrap.skill-center .join-mentor-img {
        margin: 0 50px 0 0;
    }
    
    .home-4 .skills-wrap.skill-center .join-mentor-img .joing-icon-award {
        right: -50px;
        left: auto;
    }
    
    .home-4 .master-skills-sec {
        padding: 60px 0 60px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .master-skills-sec {
            padding: 50px 0;
        }
    }
    
    .home-4 .course-count-two {
        margin-left: 0 !important;
        box-shadow: 0px 4px 24px 0px rgba(220, 220, 220, 0.2509803922);
        border-radius: 10px;
        padding: 24px;
        background: var(--white);
    }
    
    .home-4 .course-count-two h4 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .home-4 .course-count-two p {
        font-weight: 500;
        margin-bottom: 0;
    }
    
    .home-4 .feature-instructors-sec {
        background: var(--white);
        padding: 60px 0 60px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .feature-instructors-sec {
            padding: 50px 0;
        }
    }
    
    .home-4 .feature-instructors-sec .featured-img {
        background: var(--white);
        box-shadow: 0px 4px 4px rgba(159, 159, 159, 0.25);
        border-radius: 50%;
        padding: 10px;
        align-items: center;
        display: flex;
        text-align: center;
    }
    
    .home-4 .feature-instructors-sec .featured-img img {
        width: 30px;
    }
    
    .home-4 .feature-instructors-sec .course-info {
        border-bottom: 1px solid var(--gray-100);
        padding: 0;
        margin: 0;
    }
    
    .home-4 .feature-instructors-sec .student-count {
        padding: 20px 0 0;
    }
    
    .home-4 .feature-instructors-sec .student-count i {
        color: #FF4667;
    }
    
    .home-4 .course-details-two {
        position: relative;
        padding: 0 20px 20px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .home-4 .knowledge-sec {
        width: 100%;
        background: var(--light-700);
    }
    
    .home-4 .knowledge-sec .joing-content {
        margin-left: 24px;
    }
    
    @media (max-width: 767.98px) {
        .home-4 .knowledge-sec .joing-content {
            margin-left: 16px;
        }
    }
    
    .home-4 .knowledge-sec .joing-group {
        padding: 30px;
    }
    
    @media (max-width: 1199.98px) {
        .home-4 .knowledge-sec .joing-group {
            padding: 24px;
        }
    }
    
    @media (max-width: 991.98px) {
        .home-4 .knowledge-sec .joing-group {
            padding: 40px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-4 .knowledge-sec .joing-group {
            padding: 30px;
        }
    }
    
    .home-4 .knowledge-sec .section-header h2 {
        max-width: 520px;
    }
    
    @media (max-width: 1199.98px) {
        .home-4 .knowledge-sec .section-header h2 {
            font-size: 30px;
        }
    }
    
    @media (max-width: 991.98px) {
        .home-4 .knowledge-sec .section-header h2 {
            font-size: 28px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-4 .knowledge-sec .section-header h2 {
            font-size: 24px;
        }
    }
    
    .home-4 .knowledge-sec .featured-img-1 {
        width: 100%;
        float: left;
        background-image: url(../img/feature/feature-28.jpg);
        height: 777px;
        background-size: cover;
        background-position: center center;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .knowledge-sec .featured-img-1 {
            display: none;
        }
    }
    
    .home-4 .knowledge-sec .joing-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
        outline: none;
    }
    
    .home-4 .knowledge-sec .joing-list .joing-header {
        display: flex;
        display: -ms-flexbox;
        margin-bottom: 45px;
    }
    
    @media (max-width: 1199.98px) {
        .home-4 .knowledge-sec .joing-list .joing-header {
            margin-bottom: 20px;
        }
    }
    
    .home-4 .knowledge-sec .joing-list li:last-child .joing-header {
        margin-bottom: 0;
    }
    
    .home-4 .knowledge-sec .joing-list .joing-icon {
        align-items: center;
        display: inline-flex;
        justify-content: center;
        text-align: center;
        border-radius: 10px;
        padding: 0px;
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .knowledge-sec .joing-list .joing-icon {
            width: 55px;
            height: 55px;
        }
    }
    
    .home-4 .knowledge-sec .joing-list .title {
        margin-bottom: 10px;
    }
    
    .home-4 .real-reviews-sec {
        position: relative;
        background: var(--light-300);
        padding: 60px 0 60px;
        z-index: 1;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .real-reviews-sec {
            padding: 50px 0;
        }
    }
    
    .home-4 .real-reviews-sec .review-bg {
        position: absolute;
        bottom: 30%;
        left: 0;
        z-index: -1;
        width: 350px;
        height: 350px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .real-reviews-sec .review-bg {
            display: none;
        }
    }
    
    .home-4 .reviews-img {
        position: relative;
        padding-right: 50px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .reviews-img {
            display: none;
        }
    }
    
    .home-4 .reviews-img .review-icon {
        position: absolute;
        top: 40px;
        right: 0;
    }
    
    .home-4 .featured-instructor-two {
        margin-bottom: 16px;
    }
    
    .home-4 .pattern-review {
        align-items: center;
        display: inline-flex;
        justify-content: center;
        text-align: center;
        border-radius: 10px;
        padding: 0px;
        width: 70px;
        height: 70px;
    }
    
    .home-4 .real-reviews-group {
        padding: 0 0 60px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .real-reviews-group {
            padding-bottom: 50px;
        }
    }
    
    .home-4 .slide-nav-8 button.owl-next,
    .home-4 .slide-nav-8 button.owl-prev {
        background: transparent;
        text-shadow: none;
        top: 0px;
        margin-top: 0;
        cursor: pointer;
        border: 0;
        color: var(--gray-700);
        margin-bottom: 0px;
        transform: rotate(0deg);
        font-size: 20px;
    }
    
    .home-4 .slide-nav-8 button.owl-next:hover,
    .home-4 .slide-nav-8 button.owl-prev:hover {
        color: #FF4667;
    }
    
    .home-4 .real-reviews .owl-nav button.owl-next span,
    .home-4 .real-reviews .owl-nav button.owl-prev span {
        font-size: 34px;
        line-height: 25px;
        transform: rotate(0deg);
        display: flex;
        padding-left: 6px;
        padding-bottom: 3px;
    }
    
    .home-4 .real-reviews .owl-nav button.owl-next {
        margin-left: 10px;
    }
    
    .home-4 .real-reviews-grid {
        margin-bottom: 60px;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .real-reviews-grid {
            margin-bottom: 24px;
        }
    }
    
    .home-4 .real-reviews-grid .review-content h3 {
        margin-bottom: 20px;
    }
    
    .home-4 .real-reviews-grid .review-content p {
        margin-bottom: 20px;
    }
    
    .home-4 .real-reviews-grid .review-info h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .home-4 .real-reviews-grid .review-info h6 {
        font-weight: 600;
        font-size: 16px;
        color: #FF4667;
    }
    
    .home-4 .award-winning-two {
        margin-bottom: 50px;
    }
    
    .home-4 .latest-blog-sec {
        background: var(--white);
        padding: 60px 0 60px;
        z-index: 1;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .latest-blog-sec {
            padding: 50px 0;
        }
    }
    
    .home-4 .latest-blog-sec .blog-bg {
        position: absolute;
        right: 0;
        bottom: 60px;
        z-index: -1;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .latest-blog-sec .blog-bg {
            display: none;
        }
    }
    
    .home-4 .latest-blog-widget {
        position: relative;
    }
    
    .home-4 .latest-blog-widget .latest-blog-img img {
        border-radius: 5px;
    }
    
    .home-4 .event-blog-main {
        position: relative;
        overflow: hidden;
        margin-bottom: 24px;
    }
    
    .home-4 .event-blog-main .latest-blog-img img {
        border-radius: 5px;
        width: 100%;
    }
    
    .home-4 .event-blog-main:hover .latest-blog-img img {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        transform: scale(1.15);
    }
    
    .home-4 .latest-blog-img {
        position: relative;
        overflow: hidden;
        border-radius: 5px;
    }
    
    .home-4 .latest-blog-img:before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.105) 0%, rgba(0, 0, 0, 0.7) 100%);
        content: "";
        position: absolute;
        border-radius: 5px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .home-4 .latest-blog-img img {
        transform: translateZ(0);
        transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    }
    
    .home-4 .blog-content {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        padding: 20px 20px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .home-4 .blog-content .category-name {
        font-weight: 600;
        background: #03C95A;
        margin-bottom: 17px;
        padding: 4px 10px;
        border-radius: 4px;
        display: inline-block;
        color: var(--white);
    }
    
    .home-4 .blog-content .title {
        font-size: 24px;
        margin-bottom: 17px;
        color: var(--white);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    @media (max-width: 991.98px) {
        .home-4 .blog-content .title {
            font-size: 18px;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-4 .blog-content .title {
            font-size: 16px;
        }
    }
    
    .home-4 .blog-content .blog-date {
        display: flex;
        align-items: center;
        color: var(--white);
    }
    
    .home-4 .blog-content .blog-date i {
        margin-right: 5px;
    }
    
    .home-4 .blog-student-count {
        color: var(--white);
    }
    
    .home-4 .more-details {
        margin-top: 16px;
    }
    
    .lead-img img {
        height: 28px;
        width: auto;
    }
    
    .topcategory-sec {
        padding: 60px 0px 60px;
        background: var(--light-300);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .topcategory-sec {
            padding: 50px 0;
        }
    }
    
    .vision-section {
        background: #392C7D;
        padding: 60px 0;
    }
    
    @media (max-width: 991.98px) {
        .vision-section {
            padding: 50px 0;
        }
    }
    
    .vision-section .vision-item {
        background: var(--white);
        border-radius: 10px;
        padding: 24px;
        display: flex;
        align-items: center;
    }
    
    .vision-section .vision-item .vision-icon {
        background: var(--light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .vision-section .vision-item p {
        font-weight: 500;
    }
    
    .accordion-item {
        background: var(--white);
        border-color: var(--gray-100);
    }
    
    .home-five-slide-face {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    
    .banner-slide-img {
        display: flex;
        align-items: end;
    }
    
    @media (max-width: 991.98px) {
        .banner-slide-img {
            display: none;
        }
    }
    
    .home-five-slide-text h1 {
        font-weight: 700;
        font-size: 52px;
        letter-spacing: 0.02em;
        margin-bottom: 15px;
    }
    
    @media (max-width: 1399.98px) {
        .home-five-slide-text h1 {
            font-size: 46px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .home-five-slide-text h1 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 991.98px) {
        .home-five-slide-text h1 {
            font-size: 30px;
        }
    }
    
    .home-five-slide-face h1 span {
        color: #FF4667;
    }
    
    .home-five .drop-detail-three {
        width: 164px;
        display: flex;
        margin: 0px 15px 0 0;
        border-radius: 50px !important;
        border: 0;
        height: 44px;
        background-color: var(--light);
    }
    
    .home-five-slide-text h5 {
        background: #FF4667;
        border-radius: 30px;
        display: inline-flex;
        padding: 12px;
        font-weight: 500;
        font-size: 14px;
        align-items: center;
        color: var(--white);
        margin-bottom: 15px;
    }
    
    .home-five-slide-text p {
        margin-bottom: 35px;
    }
    
    .home-five-slide .girl-slide-img img {
        width: 500px;
        margin-top: 104px;
    }
    
    .search-icon5 {
        padding: 10px 10px 10px 20px;
        font-size: 24px;
        border-left: 1px solid var(--gray-100);
    }
    
    @media (max-width: 575.98px) {
        .search-icon5 {
            border: none;
            padding: 10px 10px 10px 1px;
        }
    }
    
    .banner-three-content .form-inner-three {
        background: var(--white);
        box-shadow: 0px 4px 4px rgba(216, 216, 216, 0.25);
        border-radius: 10px;
        padding: 10px;
        width: 100%;
        border: 0;
        max-width: 100%;
    }
    
    .banner-three-content .select2-container .select2-selection--single {
        border: 0;
        align-items: center;
        text-align: center;
        font-size: 14px;
        display: flex;
        background: var(--light);
        height: 56px;
    }
    
    .banner-three-content .form-control {
        background: var(--white);
        border: 0;
        padding: 0;
        height: 56px;
        color: #000;
        font-size: 15px;
        font-size: 14px;
        margin-right: 10px;
    }
    
    @media (max-width: 575.98px) {
        .banner-three-content .form-control {
            margin-right: 0;
        }
    }
    
    .banner-three-content .input-group .search-icon {
        display: flex;
        align-items: center;
        color: #F66962;
    }
    
    .form-three-select .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: red !important;
        color: var(--white);
        font-size: 14px;
    }
    
    .banner-three-content .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: auto;
    }
    
    .banner-three-content .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #392C7D;
        color: #585858;
        font-size: 14px;
    }
    
    .banner-three-content .select2-dropdown {
        border: 1px solid #ffdeda;
    }
    
    .banner-three-content .sub-btn {
        background: #392C7D;
        border-radius: 10px;
        border: 1px solid #392C7D;
        margin: 0px;
        font-size: 18px;
        line-height: 18px;
        padding: 10px 15px;
        color: #fff;
        width: 60px;
        border-top-left-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .banner-three-content .sub-btn:hover {
        background: #FF4667;
        border-radius: 10px;
        border: 1px solid #FF4667;
        margin: 0px;
        font-size: 18px;
        line-height: 18px;
        padding: 10px 15px;
        color: #fff;
        width: 60px;
        border-right: 1px solid #F4F4F4 !important;
        border-top-left-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
    }
    
    @media (max-width: 575.98px) {
        .banner-three-content .sub-btn {
            width: 100%;
        }
    }
    
    .banner-three-content .input-group> :not(:nth-child(2)) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        font-size: 14px;
    }
    
    .banner-three-content .input-group .search-icon {
        display: flex;
        align-items: center;
        color: #DEDEDE;
    }
    
    .banner-three-content .form-inner-three .input-group::placeholder {
        font-weight: 400;
        font-size: 14px;
        color: var(--gray-300);
    }
    
    .home-five .slick-dots li {
        width: 14px;
        height: 14px;
    }
    
    .student-course {
        position: relative;
        margin-top: -60px;
    }
    
    .student-course-five .course-details-three {
        border-color: var(--gray-100);
    }
    
    .course-details-three {
        border: 1px solid #F4F4F4;
        box-shadow: 0px 4px 14px rgba(231, 231, 231, 0.25);
        border-radius: 10px;
        padding: 24px;
        background: var(--white);
        width: 100%;
        display: -ms-flexbox;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        top: 0;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .course-details-three:hover {
        top: -10px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .course-details-three .course-content-three h4 {
        font-weight: 700;
        font-size: 24px;
    }
    
    .course-details-three .course-content-three p {
        color: var(--gray-600);
        margin-bottom: 0;
    }
    
    .course-count-three {
        color: #000000;
        display: flex;
        display: -ms-flexbox;
        align-items: center;
    }
    
    .course-content-three {
        margin-left: 8px;
    }
    
    .course-count-three .course-img img {
        width: 92px;
    }
    
    .master-three-images {
        position: relative;
        max-width: 513px;
    }
    
    @media (max-width: 991.98px) {
        .master-three-images {
            margin: 0 auto 24px;
        }
    }
    
    @media (max-width: 991.98px) {
        .master-three-images .master-img {
            margin-bottom: 0;
        }
    }
    
    .master-img {
        animation: up-down 3s ease-in-out infinite alternate-reverse both;
        position: relative;
        padding: 0 0 50px 35px;
    }
    
    @media (max-width: 575.98px) {
        .master-img {
            padding: 0 0 30px 20px;
        }
    }
    
    .master-img::before {
        position: absolute;
        content: "";
        width: 231px;
        height: 231px;
        background-color: #0DD3A3;
        border-radius: 50%;
        right: 8px;
        top: 80px;
        z-index: -1;
    }
    
    @media (max-width: 575.98px) {
        .master-img::before {
            right: 6%;
            top: 53px;
            width: 100px;
            height: 100px;
        }
    }
    
    .master-img .master-skill-image1 {
        border-radius: 30px;
        width: 400px;
    }
    
    @media (max-width: 575.98px) {
        .master-img .master-skill-image1 {
            width: 70%;
        }
    }
    
    .master-img .master-skill-image2 {
        border-radius: 30px;
        margin-top: -60%;
        z-index: 1;
        position: relative;
    }
    
    @media (max-width: 575.98px) {
        .master-img .master-skill-image2 {
            width: 50%;
        }
    }
    
    .master-img .master-bg1 {
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0;
    }
    
    @media (max-width: 575.98px) {
        .master-img .master-bg1 {
            width: 50%;
            left: 0;
        }
    }
    
    .master-img .master-bg2 {
        position: absolute;
        right: 39px;
        top: 18%;
    }
    
    @media (max-width: 575.98px) {
        .master-img .master-bg2 {
            width: 80px;
        }
    }
    
    .master-img .master-bg4 {
        position: absolute;
        bottom: 0;
        left: 5px;
        z-index: -1;
    }
    
    @media (max-width: 767.98px) {
        .master-img .master-bg4 {
            width: 55%;
        }
    }
    
    .master-img .master-bg5 {
        position: absolute;
        bottom: 35px;
        left: 95px;
        z-index: -2;
    }
    
    @media (max-width: 767.98px) {
        .master-img .master-bg5 {
            width: 45%;
        }
    }
    
    .master-skill-content {
        padding-left: 40px;
    }
    
    @media (max-width: 1199.98px) {
        .master-skill-content {
            padding-left: 0;
        }
    }
    
    .master-skill-three {
        padding: 80px 0;
        position: relative;
    }
    
    .master-skill-three .home-five-head {
        margin-bottom: 20px;
    }
    
    .master-skill-three .home-five-content {
        margin-bottom: 24px;
    }
    
    .home-five-content {
        margin-bottom: 40px;
    }
    
    .home-five-content p {
        margin-bottom: 0;
    }
    
    .master-three-vector {
        position: absolute;
        right: 0;
        top: 25rem;
        bottom: 0;
        animation: up-down 3s ease-in-out infinite alternate-reverse both;
    }
    
    .master-three-right {
        position: absolute;
        bottom: 0;
        top: 10rem;
        right: 9.9rem;
    }
    
    .vector-layer-one {
        position: absolute;
        left: 0;
        top: 4rem;
        width: 505px;
        z-index: -1;
        background-repeat: no-repeat;
    }
    
    .vector-layer-two {
        position: absolute;
        right: 12rem;
        top: 5.3rem;
        width: 92px;
        height: 83px;
        background-repeat: no-repeat;
    }
    
    .skils-icon {
        background: var(--white);
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 14px 0px rgba(219, 219, 219, 0.2509803922);
        align-items: center;
        display: inline-flex;
        justify-content: center;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 16px;
        padding: 0px;
        width: 60px;
        height: 60px;
    }
    
    .skils-icon-item {
        position: relative;
        top: 0;
        transition: top ease 0.5s;
    }
    
    .skils-icon-item:hover {
        top: -10px;
        transition: top ease 0.5s;
    }
    
    .home-five-head {
        margin-bottom: 40px;
    }
    
    .home-five .see-all a {
        font-weight: 500;
        color: #FF4667;
    }
    
    .home-five .see-all a:hover {
        color: #392C7D;
    }
    
    .home-five .owl-theme .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 0px 5px;
        background: #DEDEDE;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .home-five .accelerate-two {
        position: absolute;
        right: 0;
        bottom: 50rem;
    }
    
    .home-five .swiper-slide {
        flex-shrink: unset;
        width: 100%;
        height: 100%;
        position: relative;
        transition-property: transform;
    }
    
    .home-five .become-content {
        margin-bottom: 20px;
        width: 400px;
        position: relative;
        z-index: 11111;
    }
    
    .home-five .become-content h2 {
        color: var(--white);
        margin-bottom: 20px;
    }
    
    .home-five .become-content h4 {
        font-weight: 500;
        font-size: 20px;
        color: var(--white);
    }
    
    .home-five .become-content p {
        color: var(--light);
        font-size: 16px;
    }
    
    .home-five .testimonial-item-five {
        background: var(--white);
        box-shadow: 0px 4px 24px rgba(100, 100, 100, 0.25);
        border-radius: 10px;
        background-position: center;
        background-size: cover;
        width: 455px;
        padding: 20px;
    }
    
    @media (max-width: 575.98px) {
        .home-five .testimonial-item-five {
            width: 300px;
        }
    }
    
    .home-five .testimonial-item-five .testimonial-users {
        display: flex;
        align-items: center;
        padding: 20px 0 0;
    }
    
    .home-five .testimonial-item-five .testimonial-users .imgbx {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 20px;
    }
    
    .home-five .testimonial-item-five .testimonial-users .imgbx img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .home-five .testimonial-item-five .testimonial-users .imgbx img span {
        font-weight: 400;
        font-size: 14px;
    }
    
    .home-five .testimonial-item-five .testimonial-users h6 {
        font-weight: 600;
        font-size: 16px;
    }
    
    .home-five .testimonial-item-five .testimonial-users p {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .home-five .testimonial-ratings {
        border-bottom: 1px solid var(--gray-100);
        font-size: 14px;
        padding-bottom: 20px;
    }
    
    .home-five .testimonial-ratings .rating {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .home-five .testimonial-ratings .rating span {
        font-weight: 400;
        font-size: 14px;
        color: #736969;
        margin-left: 5px;
    }
    
    .home-five .testimonial-ratings .rating p {
        margin-left: 8px;
        margin-bottom: 0;
    }
    
    .home-five .testimonial-content {
        padding: 20px 0;
    }
    
    .home-five .testimonial-content p {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .home-five .btn-default {
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        background: #392C7D;
        border-radius: 5px;
        min-width: 159px;
        height: 44px;
        padding: 10px;
        overflow: hidden;
        text-transform: initial;
        box-shadow: inset 0 0 0 0 #fff;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .home-five .btn-default:hover {
        background-color: var(--white);
        border-color: #392C7D;
        color: var(--white) !important;
        box-shadow: inset 0 50px 0 0 #392C7D;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .favourite-course-sec .mentoring-course .owl-stage {
        padding-top: 0;
    }
    
    .home-five-head h2 {
        font-weight: 700;
        padding-bottom: 20px;
        margin-bottom: 0px;
        position: relative;
    }
    
    .home-five-head h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 70px;
        height: 4px;
        background: linear-gradient(89.96deg, #7B1FFE 2.92%, #FED700 50.8%, #1CBEEF 99.71%);
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .home-five-favourite {
        position: relative;
    }
    
    .home-five-favourite .category-sec {
        padding: 80px 0;
        border-top: 1px solid var(--gray-100);
    }
    
    @media (max-width: 991.98px) {
        .home-five-favourite .category-sec {
            padding: 50px 0;
        }
    }
    
    @media (max-width: 991.98px) {
        .home-five-favourite .slick-dots li {
            margin: 0 2px;
        }
    }
    
    .home-five-favourite:after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 230px;
        background: var(--light-900);
        text-align: center;
        left: 0;
        right: 0;
        bottom: -30px;
        z-index: -1;
    }
    
    .home-five-favourite .more-set a {
        background-color: #392C7D;
    }
    
    .home-five-favourite .categories-content h3 {
        font-weight: 700;
        font-size: 18px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .home-five-favourite .mentoring-course .owl-stage {
        padding-top: 0px;
    }
    
    .favourite-carousel .slick-list {
        margin: 0 -12px;
    }
    
    .favourite-carousel .slick-slide {
        margin: 0 12px;
    }
    
    .favourite-box {
        background: var(--white);
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 14px 0px rgba(231, 231, 231, 0.2509803922);
        border-radius: 10px;
        display: flex;
        padding: 20px;
        align-items: center;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .favourite-box .categories-icon {
        width: 65px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-900);
        border-radius: 5px;
        margin: 0 auto 12px;
    }
    
    .favourite-box:hover {
        background: #392C7D;
        cursor: pointer;
        border: 1px solid #392C7D;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .favourite-box:hover .categories-content h3 {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .favourite-box:hover .categories-content h3 a {
        color: var(--white);
    }
    
    .favourite-box:hover .instructors-info p {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .favourite-box .instructors-info {
        justify-content: center;
    }
    
    .favourite-box .instructors-info p {
        font-weight: 500;
        font-size: 14px;
        color: #717171;
        margin-bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .favourite-box .course-info {
        border-bottom: 1px solid #F4F4F4;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .home-five .owl-theme .owl-dots .owl-dot.active span,
    .home-five .owl-theme .owl-dots .owl-dot:hover .home-five span {
        width: 8px;
        height: 8px;
        background: #392C7D;
        box-shadow: 0px 0px 0px 3px #392C7D;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .home-five-trending .owl-theme .owl-dots .owl-dot.active span,
    .home-five-trending .owl-theme .owl-dots .owl-dot:hover .home-five-trending span {
        width: 8px;
        height: 8px;
        background: #1A1E21;
        box-shadow: 0px 0px 0px 3px #1A1E21;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .home-five-courses {
        padding: 80px 0;
        background: var(--white);
    }
    
    .home-five-courses .heart-three .fa-heart:hover {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .home-five-courses .price-three-time i {
        font-size: 14px;
    }
    
    .tablist-three {
        margin-bottom: 40px;
    }
    
    .tablist-three .nav-tab {
        font-weight: 500;
        padding: 10px 15px;
        border: 1px solid transparent;
        border-radius: 5px;
    }
    
    .tablist-three .nav-tab.active {
        font-weight: 500;
        color: #FF4667;
        border-color: var(--gray-100);
    }
    
    .tablist-three .nav-tab:hover {
        color: #392C7D;
    }
    
    .course-three-img {
        position: relative;
        overflow: hidden;
        padding: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-three-img img {
        position: relative;
        border-radius: 10px 10px 0px 0px;
        width: 100%;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        transform: translateZ(0);
        -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
        transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    }
    
    .course-box-three {
        position: relative;
        overflow: hidden;
        background: var(--white);
        box-shadow: -3px 5px 16px rgba(0, 0, 0, 0.07);
        border-radius: 10px;
        margin-bottom: 24px;
        transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
    }
    
    .course-three-text {
        margin-bottom: 20px;
    }
    
    .course-three-text p {
        font-weight: 500;
        font-size: 14px;
        color: #FF4667;
        border-bottom: 1px solid #FF4667;
        display: inline-flex;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-three-text h3 {
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    @media (max-width: 1399.98px) {
        .course-three-text h3 {
            font-size: 18px;
        }
    }
    
    .course-three-item {
        position: relative;
        overflow: hidden;
        padding: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .heart-three {
        position: absolute;
        top: 1rem;
        display: inline-block;
        right: 1rem;
        bottom: 0;
    }
    
    .heart-three .fa-heart {
        width: 31px;
        background-color: #fff;
        height: 31px;
        align-items: center;
        display: flex;
        justify-content: center;
        border-radius: 50%;
        font-size: 12px;
        color: #000000;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .heart-three .fa-heart:hover {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .students-three-counts {
        margin-bottom: 20px;
    }
    
    .students-three-counts p {
        font-weight: 400;
        font-size: 14px;
        color: #717171;
        margin-left: 12px;
        margin-bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .group-three-img {
        position: absolute;
        top: -20px;
        right: 15px;
    }
    
    .group-three-img img {
        width: 40px;
        height: 40px;
        border: 3px solid var(--white);
        border-radius: 50%;
    }
    
    .price-three-time {
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .price-three-time span {
        font-size: 14px;
    }
    
    .course-three-content {
        position: relative;
        padding: 20px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .home-five-transform {
        padding: 80px 0;
        background-color: #392C7D;
        background-image: url(../img/bg/benefit-bg.png);
        background-repeat: repeat;
        background-position: top right;
    }
    
    @media (max-width: 991.98px) {
        .home-five-transform {
            padding: 50px 0;
        }
    }
    
    .home-five-transform .cta-content h2 {
        font-weight: 700;
        font-size: 32px;
        color: var(--white);
        margin-bottom: 8px;
    }
    
    .home-five-transform .cta-content p {
        color: var(--white);
    }
    
    .btn-action {
        background: #FFC107;
        border-radius: 10px;
        padding: 12px 30px;
        font-weight: 600;
        font-size: 16px;
        align-items: center;
        color: #0D0D0D;
        text-align: center;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-transform: initial;
        box-shadow: inset 0 0 0 0 #fff;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .btn-action:hover {
        background-color: #392C7D;
        border-color: #392C7D;
        color: #392C7D !important;
        box-shadow: inset 0 50px 0 0 var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .transform-button-three {
        text-align: end;
    }
    
    @media (max-width: 767.98px) {
        .transform-button-three {
            text-align: left;
        }
    }
    
    .instructors-list {
        display: flex;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .instructors-list li {
        margin-left: -20px;
    }
    
    .instructors-list li a img {
        width: 35px !important;
        height: 35px !important;
        border-radius: 50px;
        border: 3px solid var(--white);
    }
    
    .more-set a {
        width: 35px;
        height: 35px;
        background: #1A1E21;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        font-size: 12px;
        color: var(--white);
        line-height: 0;
    }
    
    .instructors-info {
        display: flex;
        display: -ms-flexbox;
        align-items: center;
    }
    
    .accelerate-cloud-three {
        background: #071136;
        padding: 80px 0;
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .accelerate-cloud-three {
            padding: 50px 0;
        }
    }
    
    .accelerate-cloud-three .home-five-head h1 {
        width: 656px;
        font-weight: 700;
        color: var(--white);
        font-size: 28px;
    }
    
    .accelerate-cloud-three .master-img {
        padding: 0 0 82px 0;
    }
    
    .accelerate-cloud-three .master-img .master-skill-image2 {
        position: absolute;
        right: 0;
        bottom: 60px;
        width: 266px;
    }
    
    .award-three-images-one {
        max-width: 515px;
        margin: auto auto 56px;
    }
    
    .award-three-images-three {
        max-width: 515px;
        margin: auto;
    }
    
    .award-three-images-two {
        max-width: 515px;
    }
    
    .award-three-images img {
        animation: up-down 3s ease-in-out infinite alternate-reverse both;
    }
    
    .award-win-icon {
        margin-bottom: 20px;
    }
    
    .award-win-icon img {
        animation: up-down 3s ease-in-out infinite alternate-reverse both;
    }
    
    p.accelerate-three-business {
        color: var(--white);
        margin-bottom: 40px;
        padding-left: 70px;
    }
    
    @media (max-width: 1199.98px) {
        p.accelerate-three-business {
            padding-left: 0;
        }
    }
    
    .accelerate-one {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
    }
    
    .accelerate-one img {
        width: 200px;
    }
    
    .shapes-three-left .accelerate-three {
        position: absolute;
        left: 0;
        top: 18rem;
    }
    
    .shapes-three-left .accelerate-four {
        position: absolute;
        left: 0;
        bottom: 8rem;
    }
    
    .shapes-three-left .accelerate-five {
        position: absolute;
        left: 0;
        bottom: 10rem;
    }
    
    .award-one {
        border-bottom: 1px solid #392C7D;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    
    .learn-anything {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid #392C7D;
    }
    
    .learn-anything h2 {
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .learn-anything .award-three-images img {
        text-align: left;
    }
    
    .development-carrer h2 {
        font-weight: 600;
        color: #03C95A;
    }
    
    .home-five-goals {
        padding: 80px 0;
        background-color: var(--white);
    }
    
    @media (max-width: 991.98px) {
        .home-five-goals {
            padding: 50px 0;
        }
    }
    
    .acheive-goals {
        position: relative;
        z-index: 999;
        position: relative;
        top: 0;
        transition: top ease 0.5s;
        transition-timing-function: ease-in-out;
        max-width: 167px;
        margin: auto;
    }
    
    .acheive-goals h2 {
        font-weight: 700;
        font-size: 32px;
    }
    
    .acheive-goals h2:hover {
        color: #392C7D;
    }
    
    .acheive-goals span {
        font-weight: 700;
        font-size: 32px;
        color: var(--dark);
    }
    
    .acheive-goals p {
        font-weight: 500;
        font-size: 16px;
    }
    
    @media (max-width: 767.98px) {
        .acheive-goals p {
            text-align: center;
        }
    }
    
    .acheive-goals:hover {
        top: -15px;
        transition: top ease 0.8s;
        transform: translateZ(0);
        transition-timing-function: ease-in-out;
    }
    
    @media (max-width: 1199.98px) {
        .acheive-goals {
            margin: 0;
        }
    }
    
    @media (max-width: 767.98px) {
        .acheive-goals {
            text-align: center;
            max-width: 100%;
        }
    }
    
    .acheive-goals-content h4 {
        margin-bottom: 20px;
        text-align: left;
    }
    
    @media (max-width: 767.98px) {
        .acheive-goals-content h4 {
            text-align: center;
        }
    }
    
    .acheive-elips-one {
        position: absolute;
        right: 10px;
        z-index: -1;
        top: -18px;
    }
    
    @media (max-width: 767.98px) {
        .acheive-elips-one {
            right: 44%;
        }
    }
    
    .acheive-goals-main {
        position: relative;
        top: 0;
        transition: top ease 0.5s;
        transition-timing-function: ease-in-out;
    }
    
    @media (max-width: 1199.98px) {
        .acheive-goals-main {
            margin-bottom: 30px;
        }
    }
    
    .acheive-goals-main h2 {
        font-weight: 700;
        font-size: 32px;
    }
    
    @media (max-width: 767.98px) {
        .acheive-goals-main h2 {
            text-align: center;
        }
    }
    
    .acheive-elips-three {
        position: absolute;
        right: 80px;
        z-index: -1;
        top: -18px;
    }
    
    @media (max-width: 767.98px) {
        .acheive-elips-three {
            right: 44%;
        }
    }
    
    .acheive-elips-two {
        position: absolute;
        right: 38px;
        z-index: -1;
        top: -18px;
    }
    
    @media (max-width: 767.98px) {
        .acheive-elips-two {
            right: 44%;
        }
    }
    
    .acheive-goals-icon {
        position: absolute;
        top: 0;
        right: 7rem;
    }
    
    .acheive-goals-icon img {
        width: 64px;
        height: 64px;
    }
    
    .home-five-trending {
        padding: 80px 0;
        background: var(--light-500);
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .home-five-trending {
            padding: 50px 0;
        }
    }
    
    .home-five-trending .price-three-time i {
        font-size: 14px;
    }
    
    .trending-bg-one {
        background: #FFE57A;
        border: 1px solid var(--gray-100);
        border-radius: 10px 10px 0 0;
        padding: 20px;
        transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
    }
    
    .trending-three-item {
        position: relative;
        top: 0;
        transition: 0.7s;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
        cursor: pointer;
        margin-bottom: 40px;
    }
    
    .trending-three-item:hover {
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        border-radius: 10px;
    }
    
    .trending-three-item:hover .course-title-one {
        background-color: #392C7D;
        border-color: #392C7D;
        color: var(--white) !important;
        box-shadow: inset 0 50px 0 0 #392C7D;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .trending-bg-two {
        background: #69FFDB;
        border: 1px solid var(--gray-100);
        border-radius: 10px 10px 0 0;
        padding: 20px;
        transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
    }
    
    .trending-bg-three {
        background: #EBE3FF;
        border: 1px solid var(--gray-100);
        border-radius: 10px 10px 0 0;
        padding: 20px;
    }
    
    .trending-bg-four {
        background: #ABEEFF;
        border: 1px solid var(--gray-100);
        border-radius: 10px 10px 0 0;
        padding: 20px;
        transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
    }
    
    .course-title-one {
        background: var(--gray-900);
        border-radius: 4px;
        padding: 7px 10px;
        margin-bottom: 25px;
        display: inline-flex;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-transform: initial;
        box-shadow: inset 0 0 0 0 var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .course-title-one a {
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        color: var(--white);
    }
    
    .course-title-one a:hover {
        color: var(--white);
    }
    
    .trending-three-text h3 {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .trending-three-text p {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .slick-slide>div {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }
    
    .trending-three-counts p {
        margin-left: 10px;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .trending-three-counts img {
        width: 18px !important;
    }
    
    .trending-content-footer {
        padding: 20px;
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: 0px 0px 10px 10px;
    }
    
    .trending-footer-img img {
        width: 45px !important;
        height: 45px !important;
        border-radius: 50px;
        border: 2px solid #392C7D;
    }
    
    .trending-price-three h3 {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 0;
    }
    
    .trending-price-three span {
        text-decoration: line-through;
        font-size: 14px;
        color: #DEDEDE;
    }
    
    .content-three-overlay {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        overflow: hidden;
        height: 0;
        background: rgba(57, 44, 125, 0.8980392157);
        opacity: 0.9;
        z-index: 1;
        display: flex;
        justify-content: end;
        flex-direction: column;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .gallery-three-img-item {
        border-radius: 10px;
    }
    
    .gallery-three-img-item:hover .content-three-overlay {
        height: 100%;
        bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .gallery-three {
        padding: 80px 0 56px;
        position: relative;
        background: var(--white);
    }
    
    @media (max-width: 991.98px) {
        .gallery-three {
            padding: 50px 0 26px;
        }
    }
    
    .gallery-three .gallery-bg {
        position: absolute;
        left: 0;
        top: 45%;
        transform: translateY(-50%);
    }
    
    .gallery-three .gallery-three-img-item {
        max-width: 100%;
        position: relative;
        overflow: hidden;
        margin-bottom: 24px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
        width: 100%;
    }
    
    .gallery-three .gallery-three-img-item .content-three-main {
        height: 100%;
    }
    
    .gallery-three .gallery-three-img-item .content-three-main .gallery-img {
        height: 100%;
    }
    
    .gallery-three .gallery-three-img-item .content-three-main .gallery-img img {
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-three .content-three-details h6 {
        font-weight: 700;
        font-size: 16px;
        color: var(--white);
        margin-bottom: 0;
    }
    
    .gallery-three .content-three-details p {
        font-weight: 400;
        font-size: 16px;
        color: var(--white);
    }
    
    .gallery-three .service-link i {
        font-size: 25px;
        color: var(--white);
    }
    
    .gallery-img img {
        width: 100%;
    }
    
    .gallery-img-item-one img {
        min-height: 235px;
    }
    
    .content-three-image {
        width: 100%;
    }
    
    .content-three-text {
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1;
    }
    
    @media (max-width: 991.98px) {
        .content-three-text {
            padding: 10px;
        }
    }
    
    .content-three-text h6 {
        font-weight: 700;
        font-size: 16px;
        color: var(--white);
    }
    
    .content-three-text p {
        font-weight: 400;
        font-size: 16px;
        color: var(--white);
    }
    
    .content-three-arrows {
        color: var(--white);
        font-size: 18px;
    }
    
    .content-three-arrows:hover i {
        color: #FF4667;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .content-three-arrows i {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .content-three-details {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .home-five-become {
        background: #FF4667;
        padding: 50px 0;
    }
    
    @media (max-width: 991.98px) {
        .home-five-become {
            padding: 30px 0;
        }
    }
    
    .become-content-three h2 {
        color: var(--white);
        margin-bottom: 10px;
    }
    
    .become-content-three p {
        color: var(--white);
        margin-bottom: 0;
    }
    
    .testimonial-pattern .pattern-left {
        position: absolute;
        left: 0;
        top: 5rem;
    }
    
    .testimonial-pattern .pattern-right {
        position: absolute;
        right: 0;
        bottom: 5rem;
    }
    
    .testimonial-bottom-nav {
        display: flex;
        float: right;
        margin-right: 60px;
    }
    
    @media (max-width: 1199.98px) {
        .testimonial-bottom-nav {
            float: none;
            margin-right: 0;
            justify-content: center;
        }
    }
    
    .testimonial-next-pre {
        background: var(--white);
        border-radius: 50px !important;
        font-size: 16px;
        padding: 10px 15px;
        color: var(--gray-500);
        cursor: pointer;
        margin-right: 20px;
    }
    
    .testimonial-next-pre:hover {
        background: #392C7D;
        color: var(--white);
    }
    
    .become-content h2 {
        font-weight: 700;
        font-size: 32px;
        color: #000000;
    }
    
    .become-content p {
        font-weight: 500;
        font-size: 22px;
        color: #000000;
    }
    
    .btn-become {
        border: 1px solid #392C7D;
        font-weight: 700 !important;
        color: var(--white) !important;
        background: #392C7D;
        border-radius: 10px;
        text-align: center;
        padding: 15px 35px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-transform: initial;
        box-shadow: inset 0 0 0 0 #fff;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .btn-become:hover {
        background-color: #392C7D;
        border-color: #392C7D;
        color: #392C7D !important;
        box-shadow: inset 0 55px 0 0 var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .lead-companies-three {
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .lead-companies-three {
            padding: 50px 0;
        }
    }
    
    .testimonial-three {
        padding: 80px 0;
        background: url(../img/bg/map.png), #071136;
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .testimonial-three {
            padding: 50px 0;
        }
    }
    
    .testimonial-three-content .swiper-wrapper {
        margin-bottom: 20px;
    }
    
    .slide:not(.slick-active) {
        cursor: pointer;
    }
    
    .box-form-newsletter {
        background: var(--white);
        max-width: 635px;
        border-radius: 5px;
        padding: 10px 10px 10px 14px;
        border-radius: 50px;
    }
    
    .box-form-newsletter form {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .box-form-newsletter form .input-newsletter {
        width: 70%;
        height: 38px;
        border: 0;
        background-image: url(../img/icon/email.svg);
        background-repeat: no-repeat;
        background-position: left 10px center;
        padding: 10px 10px 10px 40px;
        font-size: 14px;
        background: transparent;
    }
    
    .custom-select:focus,
     :focus,
    [contenteditable].form-control:focus,
    [type=email].form-control:focus,
    [type=password].form-control:focus,
    [type=tel].form-control:focus,
    [type=text].form-control:focus,
    button:focus,
    input.form-control:focus,
    input[type=email]:focus,
    input[type=number]:focus,
    input[type=password]:focus,
    input[type=text]:focus,
    select:focus,
    textarea.form-control:focus,
    textarea:focus {
        outline: none !important;
        box-shadow: none;
    }
    
    .latest-blog-three {
        background: var(--white);
        padding: 80px 0 60px;
    }
    
    .latest-blog-three .section-header-title {
        padding-bottom: 48px;
    }
    
    @media (max-width: 991.98px) {
        .latest-blog-three {
            padding: 50px 0 30px;
        }
    }
    
    .event-three-title h5 {
        font-weight: 600;
        font-size: 22px;
        color: var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .event-three-title h5:hover {
        color: #FF4667;
    }
    
    @media (max-width: 1399.98px) {
        .event-three-title h5 {
            font-size: 22px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .event-three-title h5 {
            font-size: 18px;
        }
    }
    
    .event-three-title p {
        font-weight: 400;
        font-size: 14px;
        color: #DEDEDE;
    }
    
    .event-blog-three {
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .event-span-three {
        margin-bottom: 15px;
    }
    
    .blog-user-top {
        padding: 8px;
        background: #5625E8;
        border-radius: 40px;
        display: inline-flex;
        align-items: center;
        position: absolute;
        left: 20px;
        top: 20px;
        z-index: 2;
    }
    
    @media (max-width: 575.98px) {
        .blog-user-top {
            left: 15px;
        }
    }
    
    .blog-user-top img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .blog-user-top a {
        color: var(--white);
        display: inline-flex;
        align-items: center;
        font-size: 14px;
    }
    
    .span-name-three {
        border: 1px solid var(--white);
        color: var(--white);
        padding: 4px 12px;
        border-radius: 40px;
        margin-right: 15px;
        font-size: 14px;
    }
    
    @media (max-width: 1199.98px) {
        .span-name-three {
            padding: 3px 10px;
            font-size: 13px;
        }
    }
    
    .blog-widget-three {
        position: relative;
    }
    
    .blog-widget-three .blog-img-three {
        height: inherit;
    }
    
    .blog-widget-three .blog-img-three a {
        display: block;
        height: inherit;
    }
    
    .blog-widget-three .blog-img-three img {
        border-radius: 5px;
        height: inherit;
    }
    
    .blog-widget-three .blog-content-three .span-name-three {
        background: #21B477;
        border-radius: 4px;
        color: var(--white);
        padding: 6px;
    }
    
    .latest-blog-content {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        padding: 20px 20px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    @media (max-width: 575.98px) {
        .latest-blog-content {
            padding: 20px 15px;
        }
    }
    
    .blog-student-count {
        color: #ffffff;
    }
    
    @media (max-width: 1199.98px) {
        .blog-student-count span {
            font-size: 14px;
        }
    }
    
    .latest-blog-img {
        position: relative;
        overflow: hidden;
        border-radius: 5px;
    }
    
    .event-blog-main:hover .latest-blog-img img {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        transform: scale(1.15);
    }
    
    .latest-blog-img img {
        transform: translateZ(0);
        transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    }
    
    .event-blog-main:hover .event-content-title h5 a {
        color: #FF602E;
    }
    
    .event-main-three {
        position: relative;
        overflow: hidden;
    }
    
    .event-main-three .blog-img-three {
        height: inherit;
    }
    
    .event-main-three .blog-img-three img {
        border-radius: 5px;
        width: 100%;
        height: inherit;
    }
    
    .blog-img-three {
        height: 100%;
    }
    
    .blog-img-three:before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
        border-radius: 10px;
    }
    
    .blog-img-three img {
        border-radius: 10px;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-content-three {
        position: absolute;
        bottom: -10%;
        left: 50%;
        z-index: 1;
        width: 100%;
        padding: 15px;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .event-blog-main .span-name {
        background: #21B477;
        border-radius: 4px;
        color: var(--white);
        font-weight: 700;
        font-size: 16px;
        justify-content: center;
        min-width: 90px;
        margin-bottom: 10px;
        padding: 5px;
        display: inline-flex;
    }
    
    .event-blog-main:hover .event-content-title h5 a {
        color: #FF602E;
    }
    
    .event-content-title h5 a {
        font-weight: 700;
        font-size: 22px;
        color: var(--white);
    }
    
    .blog-student-count {
        color: var(--white);
    }
    
    .footer-five {
        background: var(--dark);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        width: 100%;
    }
    
    .footer-five .newsletter-title h6 {
        font-weight: 500;
        font-size: 20px;
        color: var(--white);
        margin-bottom: 18px;
    }
    
    .footer-five .footer-three-top {
        padding: 67px 0;
    }
    
    @media (max-width: 991.98px) {
        .footer-five .footer-three-top {
            padding: 50px 0;
        }
    }
    
    @media (max-width: 767.98px) {
        .footer-five .footer-three-top {
            padding: 40px 0;
        }
    }
    
    .footer-five .footer-bottom-five {
        border-top: 1px solid var(--gray-800);
        padding: 1.5rem 0;
    }
    
    .footer-five .footer-bottom-five .social-icon {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 8px;
    }
    
    @media (max-width: 991.98px) {
        .footer-five .footer-bottom-five .social-icon {
            justify-content: center;
        }
    }
    
    .footer-five .footer-bottom-five .social-icon a {
        width: 20px;
        height: 20px;
        background: #DCDDE0;
        border-radius: 50%;
        color: #08131E;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-five .footer-bottom-five .social-icon a:hover {
        background-color: #FF4667;
        color: var(--white);
    }
    
    .footer-five .footer-bottom-five .copyright-text p {
        color: var(--gray-100);
        font-size: 14px;
    }
    
    .footer-five .footer-bottom-five .copyright-text p a {
        color: #FF4667;
    }
    
    @media (max-width: 991.98px) {
        .footer-five .footer-bottom-five .copyright-text p {
            text-align: center;
        }
    }
    
    .footer-five .footer-bottom-five .privacy-link {
        display: flex;
        align-items: center;
        justify-content: end;
    }
    
    @media (max-width: 991.98px) {
        .footer-five .footer-bottom-five .privacy-link {
            justify-content: center;
        }
    }
    
    .footer-five .footer-bottom-five .privacy-link a {
        color: var(--gray-100);
        position: relative;
        font-size: 14px;
    }
    
    .footer-five .footer-bottom-five .privacy-link a:hover {
        color: #FF4667;
    }
    
    .footer-five .footer-bottom-five .privacy-link a+a {
        padding-left: 12px;
        margin-left: 8px;
    }
    
    .footer-five .footer-bottom-five .privacy-link a+a::before {
        content: "/";
        color: var(--gray-700);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .footer-menu-three ul {
        list-style: none;
        margin: 0;
        padding: 0;
        outline: none;
    }
    
    .footer-menu-three ul li {
        margin-bottom: 10px;
        position: relative;
    }
    
    .footer-menu-three ul li:last-child {
        margin-bottom: 0;
    }
    
    .footer-menu-three ul li a {
        color: var(--gray-100);
        font-weight: 400;
        font-size: 14px;
        margin-left: 18px;
    }
    
    .footer-menu-three ul li a:hover {
        padding-left: 10px;
    }
    
    .footer-menu-three ul li a:before {
        position: absolute;
        top: 7px;
        display: block;
        content: "\f111";
        float: left;
        margin-right: 10px;
        font-size: 6px;
        color: #FF4667;
        transition: all 0.5s ease-in-out;
        font-family: "FontAwesome";
    }
    
    .footer-three-logo {
        margin-bottom: 29px;
    }
    
    .footer-three-logo img {
        width: 217px;
    }
    
    .footer-three-about {
        max-width: 627px;
    }
    
    .footer-three-about p {
        font-weight: 400;
        font-size: 16px;
        color: var(--gray-100);
        margin-bottom: 50px;
    }
    
    .footer-three-title {
        font-weight: 600;
        color: var(--white);
        margin-bottom: 20px;
    }
    
    .privacy-policy-three {
        margin-bottom: 36px;
    }
    
    .privacy-policy-three ul {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .privacy-policy-three ul li {
        padding: 0px 10px;
        border-right: 1px solid #B2B1FC;
        list-style: none;
        height: 10px;
        align-items: center;
        display: flex;
    }
    
    .privacy-policy-three ul li:last-child {
        border-right: 0;
    }
    
    .privacy-policy-three ul li a {
        font-weight: 400;
        font-size: 14px;
        color: var(--white);
    }
    
    .privacy-policy-three ul li a:hover {
        color: #FFC107;
    }
    
    .social-icon-three {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        list-style: none;
        padding: 0;
        margin-bottom: 36px;
        align-items: center;
    }
    
    .social-icon-three ul {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        list-style: none;
        padding: 0;
        margin-left: 20px;
        align-items: center;
        margin-bottom: 0;
    }
    
    .social-icon-three ul li {
        margin-right: 15px;
    }
    
    .social-icon-three ul li .feather-facebook-icon {
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease 0s;
        background: #066AC9;
        border-radius: 50%;
    }
    
    .social-icon-three ul li .feather-facebook-icon:hover {
        background: #392C7D;
    }
    
    .social-icon-three ul li .feather-twitter-icon {
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease 0s;
        background: #2BB7E5;
        border-radius: 50%;
    }
    
    .social-icon-three ul li .feather-twitter-icon:hover {
        background: #392C7D;
    }
    
    .social-icon-three ul li .feather-linkedin-icon {
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease 0s;
        background: #066AC9;
        border-radius: 50%;
    }
    
    .social-icon-three ul li .feather-linkedin-icon:hover {
        background: #392C7D;
    }
    
    .social-icon-three ul li .feather-youtube-icon {
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease 0s;
        background: #FF2D20;
        border-radius: 50%;
    }
    
    .social-icon-three ul li .feather-youtube-icon:hover {
        background: #392C7D;
    }
    
    .social-icon-three h6 {
        font-weight: 500;
        font-size: 20px;
        color: var(--white);
        margin-bottom: 0;
    }
    
    .copyright-three {
        text-align: center;
    }
    
    .copyright-text-three p {
        font-weight: 400;
        font-size: 14px;
        color: var(--white);
    }
    
    .home-five .header-four .main-nav .has-submenu.active>a {
        font-weight: 500;
        font-size: 16px;
        align-items: center;
        color: #EE009C;
    }
    
    .home-five .header-four .main-nav li a {
        display: block;
        font-weight: 500;
        font-size: 16px;
        color: #392C7D;
    }
    
    .home-five .header-four .main-nav li .submenu a:hover {
        color: #EE009C;
        letter-spacing: 0.5px;
        padding-left: 20px;
    }
    
    .list-data {
        list-style: none;
        display: inline-block;
        margin: 0 25px 0 0;
    }
    
    .landing-menu li a {
        font-weight: 600;
        font-size: 16px;
        color: #392C7D;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .landing-menu li a i {
        font-weight: 600;
        font-size: 16px;
        padding-left: 7px;
    }
    
    .landing-menu li a:hover {
        color: #EE009C;
    }
    
    .landing-menu ul {
        padding-left: 0;
        margin: 0;
    }
    
    .landing-menu ul li .landing-page-list::before {
        content: "";
        position: absolute;
        height: 4px;
        bottom: 23px;
        -webkit-transition: all 0.5 ease;
        transition: all 0.5s ease;
        width: 0px;
    }
    
    .landing-menu ul li:hover .landing-page-list::before {
        content: "";
        position: absolute;
        bottom: 23px;
        -webkit-transition: all 0.5 ease;
        transition: all 0.5s ease;
        background-color: #2066e7;
    }
    
    .landing-menu ul li:hover .sub-menu {
        display: block;
        z-index: 20;
    }
    
    .right-header {
        display: flex;
        justify-content: start;
        align-items: center;
    }
    
    .right-header-button {
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
    }
    
    .right-header-button a .active {
        color: #F58E06;
        padding-right: 20px;
    }
    
    .buy-template-btn {
        background: #392C7D;
        border-radius: 32px;
        color: #fff !important;
        font-weight: 700;
        padding: 12px 40px;
        font-size: 16px;
        transition: all 0.6s;
    }
    
    .buy-template-btn:hover {
        background: #EE009C;
        color: #fff;
        box-shadow: inset 0 50px 0 0 #EE009C;
        transition: 0.6s all;
    }
    
    .signup-four {
        background: #EE009C;
        padding: 12px 40px;
        color: #fff !important;
        border-radius: 32px;
        border: 1px solid #EE009C;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-transform: initial;
        box-shadow: inset 0 0 0 0 #fff;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .signup-four:hover {
        background-color: var(--white);
        border: 1px solid #EE009C;
        color: #EE009C !important;
        box-shadow: inset 0 50px 0 0 var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .sub-menu {
        display: none;
        background: white;
        position: absolute;
    }
    
    .sub-menu li {
        display: block;
        padding: 5px 0px;
        border-top: 1px solid #f0f0f0;
    }
    
    .sub-menu li a {
        padding: 15px 20px;
    }
    
    .main-nav {
        display: flex;
        justify-content: center;
    }
    
    .sub-head-wraper {
        background-color: #F3F2F7;
    }
    
    .home-four .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #EE009C;
        color: var(--white);
        font-size: 14px;
    }
    
    .home-four .select2-dropdown {
        border: 1px solid #EE009C;
    }
    
    .home-four .our-courses-slider .owl-nav {
        position: absolute;
        top: -110px;
        right: 20px;
        display: flex;
        gap: 20px;
    }
    
    .home-four .latest-blog-slider .owl-nav {
        position: absolute;
        top: -110px;
        right: 20px;
        display: flex;
        gap: 20px;
    }
    
    .banner-section-four {
        position: relative;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    
    .banner-heading-four {
        padding: 159px 0 159px;
    }
    
    .banner-heading-four h3 {
        font-weight: 500;
        font-size: 20px;
        color: #EE009C;
    }
    
    .banner-heading-four h2 {
        font-weight: 700;
        font-size: 45px;
        color: #392C7D;
        padding-bottom: 35px;
    }
    
    .banner-heading-four h5 {
        font-weight: 400;
        font-size: 16px;
        color: #392C7D;
        margin: 0;
        padding-bottom: 40px;
    }
    
    .vector-four .vector-four-one {
        position: absolute;
        right: 0;
        top: 0;
    }
    
    .vector-four .vector-four-two {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .search-box-four {
        background: var(--white);
        border: 1px solid #EE009C;
        box-shadow: 0px 16px 106px rgba(196, 196, 196, 0.16);
        border-radius: 40px;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .search-box-four .select2-container {
        width: 196px !important;
        background: #E8E6F0;
        border-radius: 90px;
        border: none;
        padding: 20px;
        font-weight: 400;
        font-size: 16px;
        color: #392C7D;
        cursor: pointer;
    }
    
    .search-box-four .select2-container .select2-selection--single .select2-selection__rendered {
        display: block;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .search-box-four .select2-container--default .select2-selection--single {
        border: none;
        background: #E8E6F0;
        color: #392C7D;
    }
    
    .search-box-four .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 22px;
        right: 10px;
        width: 20px;
    }
    
    .search-box-four .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #392C7D;
    }
    
    .search-box-four input {
        border: none;
        font-weight: 400;
        font-size: 16px;
        padding: 0;
        color: #392C7D;
        width: 400px;
    }
    
    .search-box-four input:focus {
        outline: none;
    }
    
    .search-box-four a:hover div {
        background: #fff;
        box-shadow: 50px 0 0 0 #fff inset;
    }
    
    .search-box-four a:hover i {
        color: #EE009C;
    }
    
    .search-icon-four {
        width: 60px;
        height: 60px;
        background: #EE009C;
        border-radius: 32px;
        border: 1px solid #EE009C;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }
    
    .search-icon-four i {
        color: #fff;
    }
    
    .banner-img-four {
        position: relative;
    }
    
    .banner-img-sec {
        position: absolute;
        left: -65px;
        top: 35px;
    }
    
    .banner-img-third {
        position: absolute;
        right: -95px;
        top: 50px;
    }
    
    .banner-img-fourth {
        position: absolute;
        right: -5rem;
        top: 10rem;
    }
    
    .banner-img-sec,
    .banner-img-third,
    .banner-img-fourth,
    .banner-imgs .banner-img-two,
    .banner-imgs .banner-img-three {
        padding: 33px 0px 0px 33px;
        -webkit-animation: float 2s ease-in-out infinite;
        animation: float 2s ease-in-out infinite;
    }
    
    .user-registration .student-img img,
    .master-skill-img-two,
    .master-skill-img-three {
        padding: 33px 0px 0px 33px;
        -webkit-animation: float 2s ease-in-out infinite;
        animation: float 2s ease-in-out infinite;
    }
    
    .circle {
        background: #E8E6F0;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 95px;
    }
    
    .multiple-courses-text span {
        font-weight: 700;
        font-size: 24px;
        color: #392C7D;
    }
    
    .multiple-courses-text h5 {
        font-weight: 500;
        font-size: 16px;
        color: #392C7D;
        margin: 0;
    }
    
    .course-categories {
        padding: 60px 0 60px;
    }
    
    .course-categories .section-heading {
        padding: 70px 0 50px 0;
    }
    
    .section-heading h2 {
        font-weight: 700;
        font-size: 32px;
        color: #392C7D;
    }
    
    .section-heading h5 {
        font-weight: 500;
        font-size: 16px;
        color: #5C5C5C;
        margin: 0;
    }
    
    .development-course {
        background: var(--white);
        border: 1px solid #E0EBFF;
        box-shadow: 0px 4px 34px rgba(57, 44, 125, 0.02);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 135px;
        gap: 20px;
    }
    
    .main-development {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    
    .course-name span {
        font-weight: 500;
        font-size: 18px;
        color: #5C5C5C;
    }
    
    .favourite-course .owl-nav {
        position: absolute;
        top: -110px;
        right: 20px;
        display: flex;
        gap: 20px;
    }
    
    .home-four .owl-nav .owl-prev i,
    .home-four .owl-nav .owl-next i {
        width: 50px;
        height: 50px;
        background: #C4C4C4;
        border-radius: 53px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }
    
    .home-four .owl-nav .owl-prev i:hover,
    .home-four .owl-nav .owl-next i:hover {
        background: #392C7D;
    }
    
    .our-courses {
        background: #F3F2F7;
        padding: 80px 0;
    }
    
    .our-courses .section-heading {
        padding-bottom: 50px;
    }
    
    .our-courses .section-heading h5 {
        font-weight: 500;
        font-size: 16px;
        color: #392C7D;
        margin-bottom: 0;
    }
    
    .our-courses .card-body {
        padding: 0 1rem;
    }
    
    .our-courses .card:hover .php-course a {
        color: #EE009C;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group {
        position: relative;
        overflow: hidden;
        background: var(--white);
        box-shadow: -3px 5px 16px rgba(0, 0, 0, 0.07);
        border-radius: 15px;
        margin-bottom: 20px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group:hover {
        position: relative;
        overflow: hidden;
        background: #EE009C;
        box-shadow: -3px 5px 16px rgba(0, 0, 0, 0.07);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group:hover .web-developer-name a {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group:hover .course-caste span {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group:hover .php-course a {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group:hover .book-img {
        background: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group:hover .course-lesson span {
        color: var(--white);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-body-group .php-course {
        padding: 20px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .rated {
        background: rgba(57, 44, 125, 0.5);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 93.54px;
        height: 39px;
        position: absolute;
        top: 16px;
        left: 20px;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        transition: 0.7s all;
    }
    
    .heart {
        position: absolute;
        top: 16px;
        right: 20px;
        color: #392C7D;
        font-size: 20px;
        cursor: pointer;
    }
    
    .developer-img {
        border-radius: 50px;
        overflow: hidden;
        position: relative;
    }
    
    .developer-img img {
        width: 34px;
        height: 35px;
        border-radius: 50px;
    }
    
    .web-developer-name {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .web-developer-name a {
        margin-bottom: 0;
        font-weight: 500;
        font-size: 16px;
        color: #392C7D;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .web-developer-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }
    
    .course-caste span {
        font-weight: 600;
        font-size: 22px;
        color: #EE009C;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .php-course a {
        font-weight: 500;
        font-size: 20px;
        color: #392C7D;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-lesson-and-duration {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }
    
    .course-lesson {
        display: flex;
        align-items: center;
    }
    
    .course-lesson span {
        font-weight: 400;
        font-size: 14px;
        color: #392C7D;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .book-img {
        width: 38px;
        height: 38px;
        background: rgba(57, 44, 125, 0.2);
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .book-img i {
        color: #392C7D;
    }
    
    .card-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    .card-button .buy-now-btn {
        display: flex;
    }
    
    .card-button .buy-now-btn a {
        font-weight: 700;
        font-size: 16px;
        color: var(--white);
        background: #EE009C;
        border-radius: 32px;
        padding: 15px 50px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .card-button .buy-now-btn a:hover {
        background: #392C7D;
        box-shadow: inset 0 50px 0 0 #392C7D;
    }
    
    .heart-red {
        color: red;
    }
    
    .career-skills {
        padding: 80px 0;
    }
    
    .skills-info .section-heading p {
        font-weight: 400;
        font-size: 17px;
        color: #5C5C5C;
        padding-bottom: 20px;
        margin-bottom: 0;
    }
    
    .skills-info .section-heading h2 {
        padding-bottom: 20px;
        margin: 0;
        max-width: 375px;
    }
    
    .skills-info ul {
        padding-left: 0;
        margin: 0;
    }
    
    .skills-info ul li {
        list-style-type: none;
        font-weight: 400;
        font-size: 16px;
        padding-bottom: 10px;
        color: #5C5C5C;
    }
    
    .skills-info ul li span {
        color: #EE009C;
        padding-right: 10px;
    }
    
    .skills-info ul li:last-child {
        padding: 0;
    }
    
    .multiple-informations {
        display: flex;
        justify-content: space-between;
        max-width: 450px;
        padding: 10px 0 30px 0;
    }
    
    .learning-process span {
        font-weight: 700;
        font-size: 24px;
        color: #5C5C5C;
    }
    
    .learning-process h5 {
        font-size: 16px;
        color: #5C5C5C;
        font-weight: 400;
    }
    
    .explore-button {
        display: flex;
        align-items: center;
    }
    
    .explore-button .explore-btn {
        display: flex;
    }
    
    .explore-button .explore-btn a {
        font-weight: 700;
        font-size: 16px;
        color: var(--white);
        background: #EE009C;
        border-radius: 32px;
        padding: 15px 50px;
        transition: 0.7s all;
    }
    
    .explore-button .explore-btn a:hover {
        background: #392C7D;
        box-shadow: inset 0 50px 0 0 #392C7D;
    }
    
    .skills-img {
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-instructor {
        padding: 80px 0;
    }
    
    .feature-instructor .section-heading {
        padding-bottom: 50px;
    }
    
    .feature-instructor .section-heading h5 {
        color: #392C7D;
    }
    
    .feature-instructor .card {
        background: var(--white);
        box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        border: 1px solid #fff;
        max-width: 100%;
    }
    
    .instructor-info-four {
        text-align: center;
    }
    
    .instructor-info-four h3 {
        font-weight: 500;
        font-size: 20px;
        color: #392C7D;
    }
    
    .instructor-info-four h3:hover {
        color: #EE009C;
    }
    
    .instructor-info-four h4 {
        font-weight: 400;
        font-size: 16px;
        color: #525252;
        padding: 5px 0 20px;
        margin-bottom: 0;
    }
    
    .instructor-info-four h5 {
        font-weight: 600;
        font-size: 16px;
        color: #EE009C;
    }
    
    .feature-instructor-slider .owl-nav {
        position: absolute;
        top: -110px;
        right: 20px;
        display: flex;
        gap: 20px;
    }
    
    .different-companies {
        background: #F3F2F7;
        padding: 80px 0;
    }
    
    .different-companies .section-heading {
        display: flex;
        justify-content: center;
        padding-bottom: 50px;
    }
    
    .different-companies .section-heading h2 {
        max-width: 540px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 0;
    }
    
    .leading-univercities .item {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .leading-univercities.owl-carousel.owl-theme.owl-loaded.owl-drag {
        margin-bottom: 0;
        display: flex;
    }
    
    .leading-univercities .owl-theme .owl-dots,
    .owl-theme .owl-nav {
        margin-top: 0 !important;
    }
    
    .testimonial {
        padding: 80px 0;
        background-image: url(../img/testimonial-background-img-1.png), url(../img/testimonial-background-img-2.png);
        background-repeat: no-repeat;
        background-position: left 10% top 40%, right 10% bottom 30%;
    }
    
    .testimonial .section-heading {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .testimonial .section-heading h5 {
        color: #392C7D;
        margin: 0;
    }
    
    .testimonial-img img {
        border-radius: 50%;
        padding: 50px 0;
        width: 201px;
        height: 301px;
    }
    
    .testimonial-name h2 {
        font-weight: 700;
        font-size: 32px;
        color: #392C7D;
    }
    
    .testimonial-name h5 {
        font-weight: 500;
        font-size: 16px;
        color: #392C7D;
        margin: 0;
    }
    
    .testimonial-name p {
        max-width: 789px;
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        color: #4D4D4D;
        padding: 50px 0;
    }
    
    .founder-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .founder-info .testimonial-name {
        text-align: center;
    }
    
    .testimonial-slider .owl-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .testimonial-slider .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        background: #C4C4C4;
        border-radius: 53px;
    }
    
    .testimonial-slider .owl-dots .active {
        background: #392C7D;
    }
    
    .latest-blog-four {
        background: #F3F2F7;
        padding: 60px 0 60px;
    }
    
    .latest-blog .section-heading {
        padding-bottom: 50px;
    }
    
    .latest-blog .card {
        margin-bottom: 0;
    }
    
    .blog-info .course-name {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(57, 44, 125, 0.1);
    }
    
    .blog-info .course-name h5 {
        font-weight: 700;
        font-size: 14px;
        color: #EE009C;
        transition: 0.5s all;
        margin: 0;
    }
    
    .blog-info .course-info {
        border-bottom: none;
        margin-bottom: 15px;
        padding-bottom: 0;
    }
    
    .blog-info .course-info a {
        font-weight: 700;
        font-size: 20px;
        color: #392C7D;
    }
    
    .blog-info .course-info a:hover {
        color: #EE009C;
    }
    
    .blog-info .course-date {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .latest-blog-slider .card {
        border: none;
        background: var(--white);
        box-shadow: -3px 5px 16px rgba(0, 0, 0, 0.07);
        border-radius: 30px;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .latest-blog-slider .card .card-body {
        padding-bottom: 0;
    }
    
    .education-details {
        background: #D9D9D9;
        padding: 50px 0;
    }
    
    .unlimited-courses-labs {
        padding: 80px 0;
    }
    
    .unlimited-courses-labs .section-heading {
        display: flex;
        justify-content: center;
        padding-bottom: 50px;
    }
    
    .unlimited-courses-labs .section-heading h2 {
        text-align: center;
        max-width: 550px;
    }
    
    .courses-labs-logo {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    
    .courses-labs-logo .owl-theme .owl-dots,
    .owl-theme .owl-nav {
        margin-top: 0 !important;
    }
    
    .education-details-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .education-details-box .card-button {
        display: block;
        padding-bottom: 0;
    }
    
    .education-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
    }
    
    .education-info h2 {
        font-weight: 700;
        font-size: 34px;
        color: var(--white);
    }
    
    .education-info p {
        font-weight: 700;
        font-size: 16px;
        color: var(--white);
        max-width: 350px;
        text-align: center;
    }
    
    .education-img {
        position: relative;
        overflow: hidden;
        border-radius: 25px;
    }
    
    .education-img img {
        border-radius: 25px;
        transition: 0.5s;
    }
    
    .news-letter-four {
        background: #392C7D;
        padding: 50px 0;
    }
    
    .news-letter-four .section-heading h2 {
        font-weight: 700;
        font-size: 40px;
        color: var(--white);
        padding-bottom: 30px;
    }
    
    .news-letter .section-heading {
        padding-bottom: 30px;
    }
    
    .news-letter .section-heading h2 {
        margin-bottom: 0;
        color: #fff;
    }
    
    .request-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .request-box .send-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .request-box .send-btn a {
        padding: 15px 70px;
        background: #EE009C;
        border: 1px solid #EE009C;
        border-radius: 32px;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        transition: 0.5s all;
    }
    
    .request-box .send-btn a:hover {
        background: #FFF;
        box-shadow: inset 0 50px 0 0 #FFF;
        color: #EE009C;
        border: 1px solid #EE009C;
    }
    
    .request-box .name-field input {
        border: none;
        background: #392C7D;
        border-bottom: 2px solid rgba(255, 255, 255, 0.33);
        padding: 0 0 17px 0;
        color: #fff;
        font-weight: 400;
        font-size: 16px;
        width: 400px;
    }
    
    .request-box .email-field input {
        border: none;
        border-bottom-color: currentcolor;
        background: #392C7D;
        border-bottom: 2px solid rgba(255, 255, 255, 0.33);
        padding: 0 0 17px 0;
        color: #fff;
        width: 500px;
    }
    
    .request-box input::placeholder {
        font-weight: 400;
        font-size: 16px;
        color: var(--white);
    }
    
    .request-box input:focus {
        outline: none;
    }
    
    .footer-four {
        background: #F3F2F7;
        padding: 50px 0;
        background-image: url(../img/footer-background-img.png);
        background-repeat: no-repeat;
        background-position: right bottom;
    }
    
    .footer-four .footer ul li a {
        font-weight: 400;
        font-size: 16px;
        color: #392C7D;
    }
    
    .footer-four .footer-bottom ul {
        margin: 0;
        padding: 0;
    }
    
    .footer-four ul li a {
        font-weight: 400;
        font-size: 16px;
        color: #392C7D;
    }
    
    .footer-four ul li a:hover {
        color: #EE009C;
    }
    
    .footer-main-info {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding-bottom: 60px;
    }
    
    .footer-main-info h2 {
        font-weight: 700;
        font-size: 20px;
        color: #392C7D;
        margin: 0;
        padding-bottom: 25px;
    }
    
    .footer-main-info ul {
        margin: 0;
        padding: 0;
    }
    
    .footer-main-info ul li {
        list-style-type: none;
        padding-bottom: 10px;
    }
    
    .footer-main-info ul li:last-child {
        padding-bottom: 0;
    }
    
    .address p {
        font-weight: 400;
        font-size: 16px;
        color: #392C7D;
        max-width: 250px;
    }
    
    .footer-logo p {
        max-width: 385px;
        font-weight: 400;
        font-size: 16px;
        color: #392C7D;
        padding: 70px 0 0 0;
    }
    
    .social-media-links {
        display: inline-flex;
    }
    
    .social-media-links a {
        margin-left: 17px;
    }
    
    .social-media-links a div {
        transition: 0.5s all;
    }
    
    .social-media-links a div:hover {
        background: #fff;
        box-shadow: inset 50px 0 0 0 #fff;
    }
    
    .social-media-links a div:hover i {
        color: #EE009C;
        transform: rotatey(360deg);
    }
    
    .social-media-icon {
        width: 47px;
        height: 47px;
        background: rgba(57, 44, 125, 0.1);
        border-radius: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .social-media-icon i {
        color: #392C7D;
        font-size: 22px;
        transition: 0.5s;
    }
    
    .more-information {
        display: inline-flex;
        list-style: none;
        margin: 0;
        padding: 0;
        outline: none;
    }
    
    .more-information li {
        position: relative;
        margin-left: 70px;
    }
    
    .footer-bottom .more-information li {
        list-style-type: none;
    }
    
    .favourite-carousel .slick-dots li button {
        width: 8px;
        height: 8px;
        background: var(--dark);
        border-radius: 50%;
    }
    
    .favourite-carousel .slick-dots li.slick-active button {
        width: 14px;
        height: 14px;
        background: #FF4667;
    }
    
    .home-five-trending-course .slick-list {
        margin: 0 -12px;
    }
    
    .home-five-trending-course .slick-slide {
        margin: 0 12px;
    }
    
    .home-five-trending-course .slick-dots li button {
        width: 8px;
        height: 8px;
        background: var(--dark);
        border-radius: 50%;
    }
    
    .home-five-trending-course .slick-dots li.slick-active button {
        width: 14px;
        height: 14px;
        background: #FF4667;
    }
    
    @media (max-width: 991.98px) {
        .master-img {
            margin-bottom: 24px;
        }
        .master-skill-three {
            padding: 50px 0;
        }
        .home-five-head h2,
        .acheive-goals-main h2 {
            font-size: 24px;
        }
        .home-five-courses {
            padding: 50px 0;
        }
    }
    
    @media (max-width: 767.98px) {
        .home-five-slide-text h1 {
            font-size: 32px;
        }
        .footer-five .footer-three-top {
            padding: 40px 0;
        }
        .learn-anything h2,
        .development-carrer h2 {
            font-size: 24px;
        }
        .home-five-transform .cta-content h2 {
            font-size: 24px;
        }
    }
    
    .home-six {
        background: #2D0160;
    }
    
    .home-slide-five {
        z-index: 0;
        position: relative;
        padding: 113px 0 0;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .home-slide-five {
            padding-top: 0;
        }
    }
    
    @media (max-width: 991.98px) {
        .home-slide-five .review-user-five {
            margin-bottom: 0;
        }
    }
    
    @media (max-width: 1399.98px) {
        .home-slide-five .home-slide-five-text h1 {
            font-size: 40px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .home-slide-five .home-slide-five-text h1 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 991.98px) {
        .home-slide-five .home-slide-five-text h1 {
            font-size: 30px;
        }
    }
    
    @media (max-width: 575.98px) {
        .home-slide-five .home-slide-five-text h1 {
            font-size: 26px;
        }
    }
    
    .home-slide-five .banner-slider-img {
        position: relative;
    }
    
    .home-slide-five .ban-img-1 {
        margin-top: 26px;
        position: relative;
    }
    
    @media (max-width: 1199.98px) {
        .home-slide-five .ban-img-1 {
            margin-top: 65px;
        }
    }
    
    .home-slide-five .ban-img-1::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 80%;
        background-color: #1CBEEF;
        z-index: -1;
        bottom: 0;
        border-radius: 122px 0 0 0;
    }
    
    .home-slide-five .ban-img-2 {
        position: relative;
        text-align: center;
        display: table;
        margin: 0 auto;
    }
    
    .home-slide-five .ban-img-2::before {
        position: absolute;
        content: "";
        width: 62px;
        height: 168px;
        background-color: #00BFFB;
        border-radius: 50px;
        right: -27px;
        bottom: -39px;
    }
    
    @media (max-width: 1199.98px) {
        .home-slide-five .ban-img-2::before {
            width: 43px;
            height: 115px;
        }
    }
    
    .home-slide-five .ban-img-2 .ban-shape2 {
        position: absolute;
        left: -35px;
        top: 10px;
        z-index: -1;
    }
    
    .home-slide-five .ban-img-2 .ban-shape3 {
        position: absolute;
        right: 40%;
        bottom: -15%;
    }
    
    .home-slide-five .ban-img-2 .ban-shape4 {
        position: absolute;
        right: -73px;
        bottom: 26%;
    }
    
    .home-slide-five .banner-six-img {
        padding-left: 40px;
    }
    
    @media (max-width: 991.98px) {
        .home-slide-five .banner-six-img {
            display: none;
        }
    }
    
    .home-slide-five-text {
        max-width: 530px;
        width: 100%;
    }
    
    @media (max-width: 991.98px) {
        .home-slide-five-text {
            max-width: unset;
        }
    }
    
    .home-slide-five-text h5 {
        font-size: 18px;
        color: #FFC107;
        margin-bottom: 15px;
    }
    
    .home-slide-five-text p {
        font-weight: 700;
        font-size: 18px;
        color: var(--white);
        margin-bottom: 30px;
    }
    
    .slider-five-one {
        position: absolute;
        top: 9.2rem;
    }
    
    .slider-five-one img {
        width: 351px;
        max-width: 100%;
    }
    
    .slider-five-two {
        animation: up-down 5s ease-in-out infinite alternate-reverse both;
    }
    
    .slider-five-two img {
        width: 351px;
        max-width: 100%;
    }
    
    .vector-shapes-five {
        position: absolute;
        left: 2.5rem;
        top: 6.5rem;
        z-index: -1;
        transform: rotate(15deg);
    }
    
    .banner-content-five {
        margin-bottom: 30px;
    }
    
    .banner-content-five .form-inner-five {
        padding: 10px;
        background: var(--white);
        border: 1px solid var(--light);
        box-shadow: 0px 16px 106px rgba(196, 196, 196, 0.16);
        border-radius: 40px;
        width: 100%;
        max-width: 530px;
    }
    
    @media (max-width: 991.98px) {
        .banner-content-five .form-inner-five {
            max-width: unset;
        }
    }
    
    @media (max-width: 575.98px) {
        .banner-content-five .form-inner-five {
            border-radius: 10px;
        }
    }
    
    .banner-content-five .form-inner-five .input-group {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }
    
    @media (max-width: 575.98px) {
        .banner-content-five .form-inner-five .input-group {
            gap: 8px;
            display: block;
        }
    }
    
    .banner-content-five .form-inner-five ::-webkit-input-placeholder {
        font-size: 14px;
    }
    
    .banner-content-five .form-inner-five ::-moz-placeholder {
        font-size: 14px;
    }
    
    .banner-content-five .form-inner-five :-ms-input-placeholder {
        font-size: 14px;
    }
    
    .banner-content-five .form-inner-five :-moz-placeholder {
        font-size: 14px;
    }
    
    .banner-content-five .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: auto;
        position: absolute;
        top: 23px;
        right: 0;
        width: 50px;
    }
    
    .banner-content-five .select2-container--default .select2-selection--single .select2-selection__arrow b {
        margin-top: -2px;
        margin-left: -8px;
        border-color: var(--white);
    }
    
    .banner-content-five .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-weight: 500;
        font-size: 16px;
        color: var(--white) !important;
        padding-left: 0;
    }
    
    .banner-content-five .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        margin-top: 2px;
    }
    
    .banner-content-five .select2-container .select2-selection--single {
        border: 0;
        align-items: center;
        display: flex;
        background: transparent;
        justify-content: center;
        height: 50px;
        font-weight: 500;
        font-size: 14px;
        color: var(--white);
    }
    
    .banner-content-five .sub-btn {
        background: #FF4667;
        border: 1px solid #FF4667;
        box-shadow: inset 0 0 0 0 var(--white);
        border-radius: 32px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        border: 1px solid #FF4667;
        border-radius: 32px;
        margin: 0px;
        line-height: 0;
        padding: 15px 15px;
        color: var(--white);
        border-top-left-radius: 32px !important;
        border-bottom-left-radius: 32px !important;
        z-index: 9;
    }
    
    .banner-content-five .sub-btn:hover {
        color: var(--white);
        border: 1px solid #392C7D;
        background: #392C7D;
        box-shadow: inset 0 50px 0 0 #392C7D;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    @media (max-width: 575.98px) {
        .banner-content-five .sub-btn {
            width: 100%;
        }
    }
    
    .drop-detail-five {
        background: #FF4667 !important;
        box-shadow: none;
        border-radius: 90px;
        display: flex;
        border: 0;
        border-top-right-radius: 90px !important;
        border-bottom-right-radius: 90px !important;
        max-width: 147px;
        width: 100%;
    }
    
    @media (max-width: 575.98px) {
        .drop-detail-five {
            max-width: 100%;
        }
    }
    
    .banner-content-five .input-group>.form-control,
    .input-group>.form-select {
        position: relative;
        width: auto;
        margin-left: 0px !important;
        border: 1px solid transparent !important;
    }
    
    .section-header.section-header-six h2 {
        margin-bottom: 15px;
    }
    
    .review-user-five {
        margin-bottom: 25px;
    }
    
    .review-user-five .review-users-list {
        display: flex;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .review-user-five .review-users-list li {
        margin-right: -20px;
    }
    
    .review-user-five .review-users-list li a img {
        width: 40px;
        height: 40px;
        border-radius: 50px;
        border: 2px solid #440093;
    }
    
    .review-rating-five {
        margin-left: 39px;
    }
    
    .review-rating-five p {
        display: inline-block;
        font-weight: 500;
        font-size: 14px;
        color: var(--white);
        margin-bottom: 0;
    }
    
    .rating-star .filled {
        color: #FFB54A;
    }
    
    .rate-head-five h2 {
        font-weight: 700;
        font-size: 32px;
        color: var(--white);
        margin-bottom: 0;
    }
    
    .rate-head-five p {
        font-weight: 500;
        font-size: 16px;
        color: var(--white);
        margin-left: 10px;
        margin-bottom: 0;
    }
    
    .review-five-group .course-count {
        margin-left: 0;
    }
    /*-----------------
	Leading Section Five
-----------------------*/
    
    .leading-section-five {
        position: relative;
        padding: 40px 0 40px;
        background: var(--light-900);
    }
    
    .leading-section-five .owl-carousel .owl-item .lead-img img {
        width: 147px;
    }
    
    .course-section-five .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 5px;
        margin: 0px 5px;
        background: #D9D9D9;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }
    
    .course-section-five .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 30px;
    }
    
    .course-section-five .owl-carousel .owl-item img {
        display: inline-flex;
        width: auto;
    }
    
    .home-five .owl-theme .owl-dots .owl-dot span {
        width: 50px;
        height: 5px;
        margin: 0 7px;
        background: var(--light);
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity 0.2s ease;
        border-radius: 30px;
    }
    
    .home-five .owl-theme .owl-dots .owl-dot.active span,
    .home-five .owl-theme .owl-dots .owl-dot:hover span {
        background: #FF4667;
        width: 50px;
        height: 5px;
    }
    
    .course-section-five {
        background: var(--white);
        padding: 80px 0;
        position: relative;
        z-index: 999;
    }
    
    @media (max-width: 991.98px) {
        .course-section-five {
            padding: 50px 0;
        }
    }
    
    .course-section-five .course-box-five {
        position: relative;
        overflow: hidden;
        background: var(--white);
        box-shadow: -3px 5px 16px rgba(0, 0, 0, 0.07);
        border-radius: 10px;
        margin-bottom: 24px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-five-item {
        background: #F6F7FB;
        border-radius: 10px;
        border: 1px solid transparent;
    }
    
    .course-five-item:hover {
        background: var(--white);
        border: 1px solid #392C7D;
        background: #392C7D;
        border-radius: 10px;
        transition-duration: 0s;
    }
    
    .course-five-item:hover .course-info-five h3 {
        font-weight: 700;
        font-size: 20px;
        font-weight: 700;
        font-size: 20px;
        color: var(--white);
    }
    
    .course-five-item:hover .course-info-five p {
        color: var(--light);
    }
    
    .course-five-item:hover .course-info-btn .btn-five {
        background-color: #FF4667;
    }
    
    .course-five-item:hover .icon-five-border {
        background-color: #FF4667;
    }
    
    .home-five-course .slick-list {
        margin: 0 -12px;
    }
    
    .home-five-course .slick-slide {
        margin: 0 12px;
    }
    
    .course-five-grid {
        padding: 24px;
    }
    
    .header-five-title {
        margin-bottom: 40px;
    }
    
    .header-five-title h2 {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .header-five-title p {
        font-weight: 500;
    }
    
    .counter-section-five {
        background: #392C7D;
        padding: 50px 0 50px;
    }
    
    .count-five-last .count-content-five::before {
        display: none;
    }
    
    .count-content-five {
        padding: 30px 0;
        position: relative;
    }
    
    @media (max-width: 767.98px) {
        .count-content-five {
            padding: 0;
        }
    }
    
    .count-content-five::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 1px;
        right: -10px;
        top: 0;
        background: linear-gradient(to bottom, #5D5292, #392C7D);
    }
    
    @media (max-width: 767.98px) {
        .count-content-five::before {
            display: none;
        }
    }
    
    .count-content-five h4 {
        font-weight: 700;
        font-size: 38px;
        color: #FFC107;
    }
    
    .count-content-five p {
        color: var(--white);
        margin-bottom: 0;
    }
    
    .count-five-0 {
        border-right: 0;
    }
    
    .featured-section-five {
        padding: 80px 0;
        background: var(--white);
    }
    
    @media (max-width: 991.98px) {
        .featured-section-five {
            padding: 50px 0;
        }
    }
    
    .tablist-five {
        display: inline-flex;
        align-items: center;
        margin-bottom: 40px;
        text-align: center;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .tablist-five .nav-tab {
        margin-right: 40px;
        font-weight: 500;
        font-size: 14px;
        color: var(--gray-900);
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .tablist-five .nav-tab.active {
        color: #FF4667;
        border-bottom: 4px solid #FF4667;
        padding-bottom: 6px;
    }
    
    .tablist-five .nav-tab:hover {
        color: #FF4667;
        border-bottom: 4px solid #FF4667;
        padding-bottom: 6px;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .product-content-five {
        padding: 20px;
    }
    
    .product-content-five .price-five-group p {
        font-weight: 500;
        font-size: 16px;
        color: #2D0160;
        margin-bottom: 0;
    }
    
    .product-content-five .price-five-group h3 {
        font-weight: 500;
        font-size: 20px;
        color: #FB0F00;
        margin-bottom: 0;
    }
    
    .product-content-five h3 a {
        font-weight: 600;
        font-size: 18px;
        color: #515151;
    }
    
    .joing-course-ovelay {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        overflow: hidden;
        width: 100%;
        height: 0;
        background: rgba(45, 1, 96, 0.63);
        border-radius: 10px;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-box-five:hover .joing-course-ovelay {
        height: 100%;
        bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-box-five:hover .heart-five .fa-heart {
        width: 30px;
        height: 30px;
        background-color: transparent;
        border: 2px solid transparent;
        align-items: center;
        display: flex;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        color: #ff0000;
        stroke: #000;
        stroke-width: 30px;
        z-index: 2;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .product-img-five {
        position: relative;
        overflow: hidden;
        padding: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .course-group-img-five {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .course-group-img-five img {
        max-width: 36px;
        height: 36px;
        border-radius: 50%;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .course-group-img-five h6 {
        font-weight: 500;
        font-size: 16px;
        color: #515151;
        margin-bottom: 0;
    }
    
    .course-share-five .rating {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        font-size: 12px;
    }
    
    .product-five-title {
        display: flex;
        display: -ms-flexbox;
        margin-bottom: 20px;
    }
    
    .info-five-middle {
        border-bottom: 1px solid #F1F1F1;
        padding-bottom: 20px;
        margin-bottom: 20px;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: space-between;
    }
    
    .info-five-middle .rating-img {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .info-five-middle .course-view-five p {
        font-weight: 500;
        font-size: 16px;
        color: #2D0160;
        margin-bottom: 0;
    }
    
    .price-five-group {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        justify-content: space-between;
    }
    
    .course-view-five {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .course-group-five {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .info-five-middle .rating-img span,
    .info-five-middle .rating-img p {
        margin-bottom: 0;
    }
    
    .joing-course-middle {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        overflow: hidden;
        width: 100%;
        height: 0;
        background-color: #0071DC;
        border-radius: 6px;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    .joing-course-btn {
        font-weight: 500 !important;
        background: #FFC107;
        border: 1px solid #FFC107;
        text-align: center;
        padding: 10px 30px;
        position: relative;
        box-shadow: inset 0 0 0 0 var(--white);
        border-radius: 32px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        border-radius: 32px;
    }
    
    .joing-course-btn:hover {
        color: #2D0160;
        border: 1px solid #2D0160;
        background: var(--white);
        box-shadow: inset 0 50px 0 0 var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .master-section-five {
        position: relative;
        background: var(--light-900);
        padding: 80px 0 56px;
    }
    
    @media (max-width: 991.98px) {
        .master-section-five {
            padding: 50px 0 26px;
        }
    }
    
    .master-section-five .header-five-title h2 {
        max-width: 374px;
        width: 100%;
    }
    
    .master-five-vector {
        position: absolute;
        left: 2rem;
    }
    
    .skill-five-icon {
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .career-five-content {
        margin-bottom: 30px;
    }
    
    .skill-five-item {
        margin-bottom: 24px;
    }
    
    .learn-more-five {
        border: 1px solid #FF4667;
        font-weight: 500 !important;
        color: var(--white) !important;
        background: #FF4667;
        border-radius: 32px;
        font-size: 16px;
        text-align: center;
        padding: 12px 30px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-transform: initial;
        box-shadow: inset 0 0 0 0 var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .learn-more-five:hover {
        background-color: #392C7D;
        border-color: #392C7D;
        color: #392C7D !important;
        box-shadow: inset 0 50px 0 0 var(--white);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    
    .skill-five-content h3 {
        font-size: 18px;
        color: var(--gray-900);
        margin-bottom: 8px;
    }
    
    .skill-five-content p {
        color: var(--gray-500);
        margin-bottom: 0;
    }
    
    .experienced-course-five {
        background: #2D0160;
        padding: 80px 0 60px;
        position: relative;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .experienced-course-five {
            padding: 50px 0;
        }
    }
    
    .experienced-course-five .header-five-title-inner {
        margin-bottom: 20px;
    }
    
    .experienced-course-five .header-five-title-inner h2 {
        max-width: 374px;
        color: var(--light);
        font-size: 44px;
    }
    
    @media (max-width: 1199.98px) {
        .experienced-course-five .header-five-title-inner h2 {
            font-size: 40px;
        }
    }
    
    @media (max-width: 991.98px) {
        .experienced-course-five .header-five-title-inner h2 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 575.98px) {
        .experienced-course-five .header-five-title-inner h2 {
            font-size: 26px;
        }
    }
    
    .instructor-vector-left {
        position: absolute;
        left: 0rem;
        top: 0.7rem;
    }
    
    .career-five-content .ex-five-content {
        max-width: 550px;
        color: var(--white);
    }
    
    .experienced-five-sub {
        padding-left: 50px;
    }
    
    @media (max-width: 991.98px) {
        .experienced-five-sub {
            padding-left: 0;
        }
    }
    
    .instructor-vector-right {
        position: absolute;
        right: 2rem;
        bottom: 1.7rem;
        z-index: -1;
    }
    
    .developer-five-list {
        max-width: 550px;
        margin: auto;
    }
    
    .developer-five-list li img {
        width: 92px;
        height: 92px;
        border-radius: 50%;
        margin-bottom: 0;
        border: 5px solid transparent;
    }
    
    @media (max-width: 767.98px) {
        .developer-five-list li img {
            width: 55px;
            height: 55px;
        }
    }
    
    .developer-five-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
        outline: none;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .developer-five-list .column-img {
        display: flex;
        -ms-flex: 25%;
        flex: 25%;
        max-width: 25%;
        margin-bottom: 20px;
    }
    
    .experienced-five-group {
        position: relative;
    }
    
    .developer-profile-five {
        cursor: pointer;
        position: relative;
        cursor: pointer;
        position: relative;
        text-align: center;
        width: 230px;
        -webkit-transform: translateZ(0);
        -webkit-font-smoothing: antialiased;
    }
    
    .developer-profile-five .profile-five-ovelay {
        background: rgba(255, 255, 255, 0.85);
        border: 5px solid #FFC107;
        border-radius: 60px 60px 60px 0px;
        bottom: 100%;
        display: block;
        text-align: center;
        left: 70px;
        bottom: 80px;
        opacity: 0;
        z-index: 2;
        padding: 10px;
        position: absolute;
        min-width: 213px;
        max-width: 100%;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(14px);
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
        -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
        -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
        -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    }
    
    .developer-profile-five:hover .profile-five-ovelay {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    
    .developer-profile-five:hover .developer-image img {
        border: 5px solid #FFC107;
    }
    
    .profile-five-ovelay h5 {
        font-weight: 500;
        font-size: 20px;
    }
    
    .profile-five-ovelay p {
        font-weight: 400;
        margin-bottom: 0;
    }
    
    .knowledge-list-group {
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .knowledge-list-group img {
        width: 24px;
        margin-right: 10px;
    }
    
    .knowledge-list-group p {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        color: #515151;
        margin-bottom: 0;
    }
    
    .joing-count-five {
        position: relative;
    }
    
    @media (max-width: 991.98px) {
        .joing-count-five {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-top: 20px;
        }
    }
    
    @media (max-width: 575.98px) {
        .joing-count-five {
            flex-direction: column;
        }
    }
    
    .joing-count-five .joing-count-image {
        position: relative;
        display: inline-flex;
    }
    
    @media (max-width: 991.98px) {
        .joing-count-five .joing-count-image {
            display: none;
        }
    }
    
    .joing-count-five .joing-count-image .joing-count-img1 {
        position: absolute;
        right: -50px;
        bottom: 0;
        z-index: -2;
    }
    
    .joing-count-five .joing-count-image .joing-count-img2 {
        position: absolute;
        right: -89px;
        bottom: 26%;
    }
    
    .joing-count-five .joing-count-image::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 80%;
        background-color: #1CBEEF;
        z-index: -1;
        bottom: 0;
        border-radius: 122px 0 0 0;
        box-shadow: -14px -2px 9px 0px rgba(0, 191, 251, 0.0901960784);
    }
    
    .joing-count-five .joing-count-image::after {
        position: absolute;
        content: "";
        width: 62px;
        height: 168px;
        background-color: #FFD600;
        left: 0;
        bottom: 0;
        border-radius: 50px;
        left: -20px;
        bottom: -5px;
    }
    
    .joing-count-five img {
        animation: up-down 3s ease-in-out infinite alternate-reverse both;
    }
    
    .share-knowledge-five {
        padding: 80px 0;
        background: var(--white);
    }
    
    @media (max-width: 991.98px) {
        .share-knowledge-five {
            padding: 50px 0;
        }
    }
    
    .share-knowledge-five .header-five-title {
        max-width: 621px;
    }
    
    .share-knowledge-five .header-five-title h2 {
        font-size: 44px;
        margin-bottom: 20px;
    }
    
    @media (max-width: 1199.98px) {
        .share-knowledge-five .header-five-title h2 {
            font-size: 40px;
        }
    }
    
    @media (max-width: 1399.98px) {
        .share-knowledge-five .header-five-title h2 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 1199.98px) {
        .share-knowledge-five .header-five-title h2 {
            font-size: 30px;
        }
    }
    
    .share-knowledge-five .career-five-content {
        max-width: 550px;
        margin-bottom: 24px;
    }
    
    .joing-count-five-one {
        text-align: center;
        position: absolute;
        left: 0rem;
        top: 6.5rem;
        z-index: 2;
    }
    
    @media (max-width: 991.98px) {
        .joing-count-five-one {
            position: relative;
            top: auto;
            left: auto;
            bottom: auto;
        }
    }
    
    .joing-count-five-two {
        text-align: center;
        position: absolute;
        left: -4rem;
        bottom: 3rem;
        z-index: 2;
    }
    
    @media (max-width: 991.98px) {
        .joing-count-five-two {
            position: relative;
            top: auto;
            left: auto;
            bottom: auto;
        }
    }
    
    .joing-count-five-three {
        text-align: center;
        position: absolute;
        right: 5rem;
        top: -1rem;
        z-index: 2;
    }
    
    @media (max-width: 1199.98px) {
        .joing-count-five-three {
            right: 1rem;
        }
    }
    
    @media (max-width: 991.98px) {
        .joing-count-five-three {
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            bottom: auto;
        }
    }
    
    .joing-count-number {
        font-weight: 700;
        font-size: 32px;
        color: #392C7D;
    }
    
    .joing-count-text {
        margin-bottom: 0;
    }
    /*-----------------
	Achieve your Goals 
-----------------------*/
    
    .goals-section-five {
        background: #FFC107;
        padding: 60px 0 60px;
    }
    
    .goals-content-five h4 {
        font-weight: 700;
        font-size: 32px;
        color: #2D0160;
    }
    
    .goals-content-five p {
        font-weight: 500;
        font-size: 16px;
        color: #515151;
    }
    
    .goals-count-five {
        border-left: 1px solid #FFF09F;
    }
    /*-----------------
	Transform Access
-----------------------*/
    
    .transform-section-five {
        padding: 60px 0 60px;
    }
    
    .transform-access-content .career-five-content {
        max-width: 550px;
    }
    
    .transform-count-five-one {
        position: absolute;
        top: 0;
        left: -2rem;
        text-align: center;
    }
    
    .home-five .course-count h3 {
        margin-bottom: 0;
    }
    
    .transform-count-five-two {
        position: absolute;
        top: 3.5rem;
        right: 6.5rem;
        text-align: center;
    }
    
    .transform-count-five-three {
        position: absolute;
        bottom: 3.5rem;
        right: 3.5rem;
        text-align: center;
    }
    /*-----------------
	Testimonial
-----------------------*/
    
    .testimonial-section-five {
        background: #2D0160;
        padding: 80px 0 80px;
        position: relative;
        overflow: hidden;
    }
    
    @media (max-width: 991.98px) {
        .testimonial-section-five {
            padding: 50px 0;
        }
    }
    
    .testimonial-section-five .testimonials-quote {
        position: absolute;
        left: 5%;
        top: 10%;
    }
    
    @media (max-width: 991.98px) {
        .testimonial-section-five .testimonial-image {
            display: none;
        }
    }
    
    .testimonial-section-five .slick-prev {
        left: -80px;
    }
    
    .testimonial-section-five .slick-prev:before {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        color: #392C7D;
        font-size: 16px;
        font-weight: 900;
    }
    
    .testimonial-section-five .slick-next {
        right: -80px;
    }
    
    .testimonial-section-five .slick-next:before {
        font-family: "Font Awesome 5 Free";
        content: "\f053";
        color: #392C7D;
        font-size: 16px;
        font-weight: 900;
    }
    
    .testimonial-slider-five {
        max-width: 1000px;
        width: 100%;
        margin: auto;
        position: relative;
        z-index: 0;
    }
    
    .testimonial-slider-five::before {
        position: absolute;
        content: "";
        width: 92px;
        height: 102px;
        background-image: url(../img/shapes/dot-group.png);
        background-repeat: no-repeat;
        background-position: center;
        right: -30px;
        bottom: -10px;
        z-index: -1;
    }
    
    .testimonial-item-six {
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .testimonial-item-six:before {
        content: "";
        background: #FFC107;
        border-radius: 35px;
        width: 62px;
        height: 168px;
        left: 25px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .testimonial-content-five {
        position: relative;
        background: var(--white);
        border-radius: 10px;
        left: 35px;
        padding: 24px;
        width: 757px;
        z-index: 2;
    }
    
    @media (max-width: 991.98px) {
        .testimonial-content-five {
            left: 0;
        }
    }
    
    .testimonial-section-five .slick-prev,
    .testimonial-section-five .slick-next {
        z-index: 99;
        background: var(--white);
        box-shadow: 0px 4px 60px rgba(41, 44, 124, 0.15);
        transform: matrix(-1, 0, 0, 1, 0, 0);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: none !important;
    }
    
    .testimonial-section-five .slick-prev:hover,
    .testimonial-section-five .slick-next:hover,
    .testimonial-section-five .swiper-button-prev:hover,
    .testimonial-section-five .swiper-button-next:hover {
        color: #000;
        background: #FF4667;
        opacity: 1;
    }
    
    .testimonial-section-five .slick-prev:hover:before,
    .testimonial-section-five .slick-prev:focus:before,
    .testimonial-section-five .slick-next:hover:before,
    .testimonial-section-five .slick-next:focus:before,
    .testimonial-section-five .swiper-button-prev:hover:before,
    .testimonial-section-five .swiper-button-next:hover:before {
        color: var(--white);
        opacity: 1;
    }
    
    .testimonial-section-five .slick-next:focus,
    .testimonial-section-five .slick-prev:focus {
        background: #FF4667;
    }
    
    [dir=rtl] .testimonial-section-five .slick-prev:before {
        content: "→";
    }
    
    [dir=rtl] .testimonial-section-five .slick-next:before {
        content: "←";
    }
    
    .footer.footer-six .footer-menu ul li {
        padding-left: 16px;
        position: relative;
    }
    
    .footer.footer-six .footer-menu ul li::before {
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50px;
        background-color: #FF4667;
        left: 0;
        top: 8px;
    }
    
    .footer.footer-six .footer-menu ul li a:hover {
        color: #FF4667 !important;
        margin-left: 5px;
    }
    
    .footer.footer-six .box-form-newsletter {
        background-color: rgba(var(--white), 0.1);
        padding: 10px 10px 10px 24px;
    }
    
    .footer.footer-six .box-form-newsletter .input-newsletter {
        background-color: transparent;
        color: var(--gray-100);
        background-image: url(../img/icon/mail-2.svg);
        font-size: 14px;
        background-repeat: no-repeat;
        background-position: left;
        padding-left: 30px;
    }
    
    .footer.footer-six .box-form-newsletter .input-newsletter::placeholder {
        color: var(--gray-100);
    }
    /*-----------------
	Latest Blogs
-----------------------*/
    
    .blogs-section-five {
        padding: 80px 0;
    }
    
    @media (max-width: 991.98px) {
        .blogs-section-five {
            padding: 50px 0;
        }
    }
    
    .blogs-section-five .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 16px;
        margin-bottom: 0;
    }
    
    .blog-five-header {
        border-bottom: 1px solid rgba(57, 44, 125, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .blog-five-footer h3 {
        display: flex;
        font-weight: 600;
        font-size: 20px;
        color: #392C7D;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
        margin-bottom: 0;
    }
    
    .blog-five-header .blog-five-text p {
        font-weight: 600;
        font-size: 16px;
        color: #515151;
        margin-bottom: 0;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
    }
    
    @media (min-width: 992px) {
        .home-six .header-three .main-menu-wrapper .main-nav>li>a {
            color: var(--white);
        }
        .home-six .header-three .main-menu-wrapper .main-nav>li.active>a {
            color: #FF4667;
        }
    }
    
    .home-five-course.slick-dotted.slick-slider {
        margin: 0;
    }
    
    .home-five-course .slick-dots {
        margin-top: 40px;
        position: static;
    }
    
    .home-five-course .slick-dots li {
        width: 50px;
        height: 5px;
    }
    
    .home-five-course .slick-dots li button {
        width: 50px;
        height: 5px;
        background: var(--light);
        padding: 0;
        margin-right: 5px;
    }
    
    .home-five-course .slick-dots li.slick-active button {
        background: #FF4667;
    }
    
    .home-five-blog .slick-dots li {
        width: 50px;
        height: 5px;
    }
    
    .home-five-blog .slick-dots li button {
        width: 50px;
        height: 5px;
        background: var(--light);
        padding: 0;
        margin-right: 5px;
    }
    
    .home-five-blog .slick-dots li.slick-active button {
        background: #FF4667;
    }
    
    .home-five-blog .slick-list {
        margin: 0 -12px;
    }
    
    .home-five-blog .slick-slide {
        margin: 0 12px;
    }
    
    .footer.footer-six {
        background: var(--dark);
    }
    
    .footer.footer-six .footer-top-five {
        padding: 40px 0;
    }
    
    .footer.footer-six .footer-top-five .footer-contact .footer-title-five {
        color: var(--white);
        margin-bottom: 15px;
    }
    
    .footer.footer-six .footer-top-five .footer-contact .footer-address h6 {
        color: var(--white);
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .footer.footer-six .footer-top-five .footer-contact .footer-address p {
        color: var(--white);
        margin-bottom: 0;
        font-size: 14px;
    }
    
    .footer.footer-six .footer-top-five .footer-menu .footer-title-five {
        color: var(--white);
        margin-bottom: 15px;
    }
    
    .footer.footer-six .footer-top-five .footer-menu ul li {
        margin-bottom: 10px;
    }
    
    .footer.footer-six .footer-top-five .footer-menu ul li:last-child {
        margin-bottom: 0;
    }
    
    .footer.footer-six .footer-top-five .footer-menu ul li a {
        color: var(--light);
    }
    
    .footer.footer-six .footer-bottom-six {
        background: var(--dark);
    }
    
    .footer.footer-six .footer-bottom-six .copyright-text p {
        color: var(--light);
    }
    
    .footer.footer-six .footer-bottom-six .social-icon {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 8px;
    }
    
    @media (max-width: 767.98px) {
        .footer.footer-six .footer-bottom-six .social-icon {
            justify-content: center;
            margin-top: 10px;
        }
    }
    
    .footer.footer-six .footer-bottom-six .social-icon a {
        width: 20px;
        height: 20px;
        background: #DCDDE0;
        border-radius: 50%;
        color: #08131E;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer.footer-six .footer-bottom-six .social-icon a:hover {
        color: var(--white);
        background: #FF4667;
    }
    
    .footer.footer-six .footer-bottom-six .social-icon-five ul {
        display: flex;
        align-items: center;
        justify-content: end;
    }
    
    .footer.footer-six .footer-bottom-six .social-icon-five ul li {
        margin-right: 8px;
    }
    
    .footer.footer-six .footer-bottom-six .social-icon-five ul li a {
        color: var(--light);
    }
    
    .home-six .header-three .logo-white {
        display: none !important;
    }
    
    .home-six .header-three .logo-dark {
        display: block !important;
    }
    
    .home-six .header-three.fixed .logo-white {
        display: block !important;
    }
    
    .home-six .header-three.fixed .logo-dark {
        display: none !important;
    }
    
    .home-six .header-three .navbar-header #mobile_btn .bar-icon span {
        background: var(--white);
    }
    
    .home-six .header-three.fixed .navbar-header #mobile_btn .bar-icon span {
        background: #392C7D;
    }
    
    @media (max-width: 991.98px) {
        .home-slide-five-face {
            padding: 105px 0 50px;
        }
        .slider-five-two img {
            display: none;
        }
        .banner-content-five {
            margin-bottom: 35px;
        }
        .master-section-five .section-five-sub {
            margin-bottom: 24px;
        }
        .header-five-title h2 {
            font-size: 28px;
        }
        .home-slide-five-text h1 {
            font-size: 32px;
        }
        .career-five-content {
            margin-bottom: 25px;
        }
    }
    
    @media (max-width: 767.98px) {
        .header-five-title h2 {
            font-size: 24px;
        }
        .home-slide-five-text h1 {
            font-size: 28px;
        }
        .leading-five-content {
            margin-bottom: 24px;
        }
        .leading-section-five {
            padding: 40px 0;
        }
        .count-content-five {
            margin-bottom: 24px;
        }
        .counter-section-five {
            padding: 50px 0 26px;
        }
        .header-five-title {
            margin-bottom: 24px;
        }
        .footer.footer-six .footer-bottom-six .social-icon-five ul {
            justify-content: center;
            margin-top: 20px;
        }
        .footer.footer-six .footer-bottom-six .copyright-text p {
            text-align: center;
        }
    }
    
    .index-six .blog-card {
        margin-bottom: 24px;
    }
    
    .dark-mode .logo-white {
        display: none;
    }
    
    .dark-mode .logo-dark {
        display: block !important;
    }
    
    .dark-mode .course-item {
        box-shadow: none;
    }
    
    .dark-mode .latest-blog-five.latest-blog-three .category {
        color: #D6DADE;
        border-color: #D6DADE;
    }
    
    .dark-mode .latest-blog-five.latest-blog-three .blog-date {
        color: #D6DADE;
    }
    
    .dark-mode .event-three-title h5 {
        color: #D6DADE;
    }
    
    .dark-mode .testimonials-section .section-header h2 {
        color: #0D0D0D;
    }
    
    .dark-mode .home-4 .blog-content .title {
        color: #D6DADE;
    }
    
    .dark-mode .home-4 .blog-content .blog-date {
        color: #D6DADE;
    }
    
    .dark-mode .award-one .text-white,
    .dark-mode .learn-anything .text-white,
    .dark-mode .development-carrer .text-white {
        color: #D6DADE !important;
    }
    
    .dark-mode .trending-three-text h3 a {
        color: #0D0D0D;
    }
    
    .dark-mode .trending-three-text h3 a:hover {
        color: #FF4667;
    }
    
    .dark-mode header.header-five .header-logo.logo-white {
        display: none;
    }
    
    .dark-mode header.header-two.fixed .header-logo.logo-white {
        display: none;
    }
    
    .dark-mode header.header-three .header-logo.logo-white {
        display: none;
    }
    
    .dark-mode header.header-four {
        background: #0D0D0D;
    }
    
    .dark-mode header.header-four .header-logo.logo-white {
        display: none;
    }
    
    @media (min-width: 992px) {
        .dark-mode header.header-one .header-nav .main-menu-wrapper .main-nav>li>a {
            color: #D6DADE;
        }
    }
    
    .dark-mode .home-five .become-content h2,
    .dark-mode .home-five .become-content h4 {
        color: #D6DADE;
    }
    
    .dark-mode .home-six .header-three .main-menu-wrapper .main-nav>li>a {
        color: #D6DADE;
    }
    
    .dark-mode .home-six .header-three .main-menu-wrapper .main-nav>li.active>a,
    .dark-mode .home-six .header-three .main-menu-wrapper .main-nav>li:hover>a {
        color: #FF4667;
    }
    
    .dark-mode .home-six .header-three .navbar-header #mobile_btn .bar-icon span {
        background: #D6DADE;
    }
    
    .dark-mode .home-six .header-three.fixed .logo-white {
        display: none !important;
    }
    
    .dark-mode .home-six .header-three.fixed .logo-dark {
        display: block !important;
    }
    
    .dark-mode .banner-section-three .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #0D0D0D !important;
    }
    
    .dark-mode .home-3 .new-course .home-three-sec-bg .sec-bg-01 {
        display: none;
    }
    
    .dark-mode .home-3 .career-img .master-bg {
        display: none;
    }
    
    .dark-mode .home-3 .testimonial-user span {
        color: #D6DADE;
    }
    
    .dark-mode .footer-three-about p {
        color: #D6DADE;
    }
    
    .dark-mode .footer-five {
        background: #0D0D0D;
    }
    
    .dark-mode .footer-five .newsletter-title h6 {
        color: #D6DADE;
    }
    
    .dark-mode .footer-five .footer-bottom-five {
        border-top: 1px solid var(--gray-100);
    }
    
    .dark-mode .footer-five .footer-bottom-five .copyright-text p {
        color: #D6DADE;
    }
    
    .dark-mode .footer-five .footer-bottom-five .copyright-text p a {
        color: #FF4667;
    }
    
    .dark-mode .footer-five .footer-bottom-five .privacy-link a {
        color: #D6DADE;
    }
    
    .dark-mode .footer-five .footer-bottom-five .privacy-link a:hover {
        color: #FF4667;
    }
    
    .dark-mode .footer-five .footer-bottom-five .privacy-link a+a::before {
        color: var(--gray-700);
    }
    
    .dark-mode .footer-menu-three ul li a {
        color: #D6DADE;
    }
    
    .dark-mode .footer-three-title {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-one {
        background: #0D0D0D;
    }
    
    .dark-mode .footer.footer-one .footer-about p {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-one .footer-widget .footer-title {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-one .footer-widget ul li a {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-one .footer-widget ul li a:hover {
        color: #FF4667;
    }
    
    .dark-mode .footer.footer-one .subscribe-form span {
        color: var(--gray-500);
    }
    
    .dark-mode .footer.footer-one .subscribe-form .form-control::placeholder {
        color: var(--gray-500);
    }
    
    .dark-mode .footer.footer-one .footer-newsletter p {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-one .footer-bottom {
        background: #0D0D0D;
        border-top: 1px solid var(--gray-100);
    }
    
    .dark-mode .footer.footer-one .footer-bottom p {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-one .footer-bottom .footer-link li a {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-one .footer-bottom .footer-link li a:hover {
        color: #FF4667;
    }
    
    .dark-mode .footer.footer-one .footer-bottom .footer-link li+li::before {
        background: var(--gray-100);
    }
    
    .dark-mode .footer.footer-one .footer-bottom .social-icon a {
        background: var(--light);
        color: var(--dark);
    }
    
    .dark-mode .footer.footer-one .footer-bottom .social-icon a:hover {
        background: #FF4667;
        color: var(--white);
    }
    
    .dark-mode .footer.footer-six {
        background: #0D0D0D;
    }
    
    .dark-mode .footer.footer-six .footer-top-five .footer-contact {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-six .footer-top-five .footer-contact .footer-title-five {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-six .footer-top-five .footer-contact .footer-address h6,
    .dark-mode .footer.footer-six .footer-top-five .footer-contact .footer-address p {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-six .footer-top-five .footer-menu .footer-title-five {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-six .footer-top-five .footer-menu ul li a {
        color: #D6DADE;
    }
    
    .dark-mode .footer.footer-six .box-form-newsletter {
        border: 1px solid var(--gray-100);
    }
    
    .dark-mode .footer.footer-six .footer-bottom-six {
        background: #0D0D0D;
    }
    
    .dark-mode .footer.footer-six .footer-bottom-six .copyright-text p {
        color: #D6DADE;
    }
    
    .dark-mode .breadcrumb-bar .breadcrumb-title {
        color: #252525;
    }
    
    .dark-mode .breadcrumb .breadcrumb-item a {
        color: #252525;
    }
    
    .dark-mode .breadcrumb .breadcrumb-item a:hover {
        color: #FF4667;
    }
    
    .dark-mode .btn.btn-primary,
    .dark-mode .btn.btn-secondary {
        color: #D6DADE;
    }
    
    [dir=rtl] body {
        direction: rtl;
    }
    
    [dir=rtl] body header .main-menu-wrapper .main-nav>li .submenu>li.has-submenu>a::after {
        left: 15px;
        right: unset;
    }
    
    [dir=rtl] body header .main-menu-wrapper .main-nav li.has-submenu:hover>.submenu>.has-submenu .submenu {
        right: 100%;
        left: unset;
    }
    
    [dir=rtl] body header.header-one .main-menu-wrapper .main-nav>li i {
        margin-right: 2px;
        margin-left: 0;
    }
    
    [dir=rtl] body .home-banner .banner-content .banner-bg5 {
        left: 10%;
        right: unset;
    }
    
    [dir=rtl] body .home-banner .banner-content .banner-search .dropdown {
        margin-left: 20px;
        margin-right: 0;
    }
    
    [dir=rtl] body .home-banner .banner-content .counter-item .counter-icon {
        margin-left: 8px;
        margin-right: 0;
    }
    
    [dir=rtl] body .top-courses-slider-rtl {
        margin-bottom: 40px;
    }
    
    [dir=rtl] body .top-courses-slider-rtl .categories-item-three {
        padding: 20px;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        border-radius: 10px;
        background: var(--white);
        margin: 0 12px;
    }
    
    [dir=rtl] body .top-courses-slider-rtl .categories-item-three img {
        margin-bottom: 20px;
    }
    
    [dir=rtl] body .top-courses-slider-rtl .categories-item-three h6 {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
    }
    
    [dir=rtl] body .top-courses-slider-rtl .categories-item-three h6 a:hover {
        color: #FF4667;
    }
    
    [dir=rtl] body .top-courses-slider-rtl .categories-item-three:hover img {
        animation: verticalRotate 0.5s linear 1;
    }
    
    [dir=rtl] body .slick-next {
        right: auto !important;
    }
    
    [dir=rtl] body .slick-prev {
        left: auto !important;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl {
        margin-bottom: 44px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item {
        padding: 20px;
        border: 1px solid var(--gray-100);
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2);
        border-radius: 10px;
        margin: 0 12px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-img {
        margin-bottom: 24px;
        position: relative;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-img img {
        width: 100%;
        object-fit: cover;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-img .price-badge {
        font-size: 14px;
        font-weight: 500;
        color: var(--gray-900);
        background: var(--white);
        border: 1px solid var(--gray-900);
        padding: 4px 10px;
        border-radius: 20px;
        position: absolute;
        top: 10px;
        left: 10px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .badge {
        margin-bottom: 10px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .fav-icon {
        padding: 5px;
        border-radius: 30px;
        background: var(--light-500);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item h5 {
        font-size: 18px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-rating {
        display: flex;
        align-items: center;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-rating .feature-course-person {
        height: 24px;
        width: 24px;
        border-radius: 50px;
        margin-left: 8px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-rating .feature-course-person img {
        border-radius: 50px;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-rating a {
        color: #5625E8;
        text-decoration: underline;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .feature-course-rating a:hover {
        color: #FF4667;
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item .buy-course-btn {
        font-size: 14px;
        color: var(--gray-900);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light);
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item:hover {
        border: 1px solid rgba(57, 44, 125, 0.3019607843);
    }
    
    [dir=rtl] body .feature-course-slider-2-rtl .feature-course-item:hover .buy-course-btn {
        background: #FF4667;
        color: var(--white);
    }
    
    [dir=rtl] body .community-to-learn .community-img .community-count {
        left: 0;
        right: unset;
    }
    
    [dir=rtl] body .community-to-learn .community-img .community-img-05 {
        left: 130px;
        right: unset;
    }
    
    [dir=rtl] body .community-to-learn .community-item .community-icon-1 {
        margin-left: 16px;
        margin-right: 0;
    }
    
    [dir=rtl] body .community-to-learn .community-item .community-icon-2 {
        margin-left: 16px;
        margin-right: 0;
    }
    
    [dir=rtl] body .community-to-learn .community-item .community-icon-3 {
        margin-left: 16px;
        margin-right: 0;
    }
    
    [dir=rtl] body .how-it-works-sec-two .works-items .count {
        margin-left: 36px;
        margin-right: 0;
    }
    
    [dir=rtl] body .faq-home-sec .faq-img {
        margin-left: 40px;
        margin-right: 0;
    }
    
    [dir=rtl] body .faq-home-sec::before {
        right: 0;
        left: unset;
    }
    
    [dir=rtl] body .blog-user-top img {
        margin-left: 8px;
        margin-right: 0;
    }
    
    [dir=rtl] body .span-name-three {
        margin-left: 15px;
        margin-right: 0;
    }
    
    [dir=rtl] body .footer.footer-one .subscribe-form .form-control {
        padding-right: 56px;
        padding-left: 0;
    }
    
    [dir=rtl] body .footer.footer-one .subscribe-form span {
        right: 32px;
        left: 0;
    }
    
    [dir=rtl] body header .navbar-header #mobile_btn {
        margin-left: 30px;
        margin-right: 0;
    }
    
    [dir=rtl] body .community-to-learn .community-img {
        padding-left: 0;
        padding-right: 16px;
    }
    
    @media (max-width: 991.98px) {
        [dir=rtl] body header .header-nav .main-menu-wrapper {
            right: 0;
            left: unset;
            transform: translateX(260px);
            -webkit-transform: translateX(260px);
            -ms-transform: translateX(260px);
            -webkit-transition: all 0.4s;
        }
        [dir=rtl] body header .main-menu-wrapper .main-nav>li a i {
            float: left;
        }
    }
    
    [dir=rtl] .footer.footer-one .footer-bottom .footer-link li+li {
        padding-right: 15px;
        margin-right: 15px;
        padding-left: 0;
        margin-left: 0;
    }
    
    [dir=rtl] .footer.footer-one .footer-bottom .footer-link li+li::before {
        right: 0;
        left: unset;
    }
    
    [dir=rtl] .latest-blog-five.latest-blog-three .category {
        margin-left: 15px;
        margin-right: 0;
    }
    
    [dir=rtl] .latest-blog-five.latest-blog-three .blog-date i {
        margin-left: 5px;
        margin-right: 0;
    }
    
    [dir=rtl] .blog-user-top {
        right: 20px;
        left: unset;
    }
    
    [dir=rtl] .home-banner .banner-content .banner-search .hero-dropdown i {
        margin-right: 29px;
        margin-left: 0;
    }
    
    [dir=rtl] .feature-course-slider-2-rtl .slick-list {
        margin: 0 -12px;
    }
    
    [dir=rtl] .feature-course-slider-2-rtl .slick-slide {
        margin: 0 12px;
    }
    
    [dir=rtl] .faq-banner-bg::before {
        left: unset;
        right: 0;
    }
    
    [dir=rtl] .banner-section .banner-content .counter-item .counter-icon {
        margin-right: 0;
        margin-left: 5px;
    }
    
    [dir=rtl] .benefit-section .card {
        z-index: 1;
    }
    
    [dir=rtl] .benefit-section .card .end-0 {
        right: 0 !important;
        z-index: -1;
    }
    
    [dir=rtl] .trust-sec .user-goal .avatar.avatar-lg {
        margin-right: 0;
        margin-left: 5px;
    }
    
    [dir=rtl] .course-item .course-rating .course-user {
        margin-right: 0;
        margin-left: 8px;
    }
    
    [dir=rtl] .banner-section .banner-content .banner-search .dropdown {
        margin-right: 0;
        margin-left: 20px;
    }
    
    [dir=rtl] .banner-section .banner-content .banner-search .hero-dropdown i {
        margin-right: 29px;
        margin-left: 0;
    }
    
    @media (max-width: 575.98px) {
        [dir=rtl] header .navbar-header #mobile_btn {
            right: unset;
            left: 0;
        }
    }
    /*=============================
    Category
===============================*/
    
    .categories-item {
        border: 1px solid var(--gray-100);
        padding: 16px;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 24px;
        background: var(--white);
    }
    
    .categories-item .categories-img {
        width: 68px;
        height: 68px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        background: var(--light-900);
        margin-bottom: 16px;
        border: 1px solid var(--white);
    }
    
    .categories-item h6 {
        font-size: 16px;
    }
    
    .categories-item:hover {
        cursor: pointer;
    }
    
    .categories-item:hover .categories-img {
        animation: verticalRotate 0.5s linear 1;
    }
    
    .categories-item p {
        font-size: 14px;
    }
    
    .categories-item-two {
        padding: 20px;
        -webkit-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    
    .categories-item-two .categories-icon {
        display: block;
        margin-bottom: 24px;
    }
    
    .categories-item-two .categories-icon img {
        margin: 0 auto;
    }
    
    .categories-item-two h5 {
        margin-bottom: 4px;
    }
    
    .categories-item-two p {
        font-size: 14px;
        font-weight: 500;
    }
    
    .categories-item-two:hover {
        background: #392C7D;
        -webkit-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    
    .categories-item-two:hover h5 a {
        color: var(--white);
    }
    
    .categories-item-two:hover p {
        color: var(--white);
    }
    
    .categories-item-three {
        padding: 20px;
        border: 1px solid var(--gray-100);
    }
    
    .categories-item-three img {
        margin-bottom: 20px;
    }
    
    .categories-item-three .title {
        font-weight: 500;
        text-align: center;
    }
    
    .categories-item-three:hover img {
        animation: verticalRotate 0.5s linear 1;
    }
    
    .categories-item-four {
        box-shadow: 0px 4px 4px 0px rgba(212, 212, 212, 0.2509803922);
        padding: 24px;
        margin-bottom: 24px;
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
        position: relative;
        text-align: left;
        z-index: 1;
    }
    
    .categories-item-four::before {
        background: url("../img/bg/category-bg.png") no-repeat;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        z-index: -1;
    }
    
    .categories-item-four .categories-icon {
        margin-bottom: 24px;
    }
    
    .categories-item-four .categories-icon img {
        width: 53px;
    }
    
    .categories-item-four .title {
        font-size: 20px;
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
        margin-bottom: 4px;
    }
    
    @media (max-width: 991.98px) {
        .categories-item-four .title {
            font-size: 18px;
        }
    }
    
    @media (max-width: 767.98px) {
        .categories-item-four .title {
            font-size: 16px;
        }
    }
    
    .categories-item-four:hover {
        background: var(--gray-400);
        cursor: pointer;
        border: 1px solid var(--gray-400);
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
    }
    
    .categories-item-four:hover .title a {
        color: var(--white);
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
    }
    
    .categories-item-four:hover p {
        color: var(--white);
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
    }
    
    .categories-item-five {
        display: flex;
        padding: 20px;
        align-items: center;
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .categories-item-five .categories-icon {
        width: 65px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-900);
        border-radius: 5px;
        margin: 0 auto 12px;
    }
    
    .categories-item-five h3 {
        font-weight: 700;
        font-size: 18px;
    }
    
    .categories-item-five:hover {
        background: #392C7D;
        cursor: pointer;
        border: 1px solid #392C7D;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
    }
    
    .categories-item-five:hover h3 {
        color: var(--white);
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
    }
    
    .categories-item-five:hover h3 a {
        color: var(--white);
    }
    
    .categories-item-five:hover .instructors-info p {
        color: var(--white);
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
    }
    
    .categories-item-five .instructors-info {
        display: flex;
        display: -ms-flexbox;
        align-items: center;
        justify-content: center;
    }
    
    .categories-item-five .instructors-info p {
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 0;
        -webkit-transition: 0.7s;
        -ms-transition: 0.7s;
        transition: 0.7s;
    }
    
    .categories-item-five .category-info {
        border-bottom: 1px solid var(--gray-100);
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .categories-item-six {
        background: var(--light-900);
        border: 1px solid transparent;
        padding: 24px;
        margin-bottom: 0;
    }
    
    .categories-item-six .categories-icon {
        margin-bottom: 24px;
        text-align: center;
    }
    
    .categories-item-six .categories-icon .icon-bg {
        position: relative;
        background: #392C7D;
        border-radius: 75px 30px 75px 30px;
        width: 90px;
        margin: auto auto 0;
    }
    
    .categories-item-six .categories-icon img {
        background: var(--white);
        padding: 20px;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease 0s;
        border-radius: 50%;
    }
    
    .categories-item-six .title {
        font-size: 20px;
    }
    
    @media (max-width: 767.98px) {
        .categories-item-six .title {
            font-size: 18px;
        }
    }
    
    .categories-item-six p {
        margin-bottom: 20px;
    }
    
    .categories-item-six .view-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease 0s;
        width: 30px;
        height: 30px;
        background: #392C7D;
        border-radius: 50%;
        -webkit-transition: 0.7s;
        -moz-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
        margin: 0 auto;
        color: var(--white);
        font-size: 12px;
    }
    
    .categories-item-six:hover {
        border: 1px solid #392C7D;
        background: #392C7D;
        border-radius: 10px;
        transition-duration: 0s;
    }
    
    .categories-item-six:hover .icon-bg {
        background: #FF4667;
    }
    
    .categories-item-six:hover h3 {
        color: var(--white);
    }
    
    .categories-item-six:hover p {
        color: var(--light);
    }
    
    .categories-item-six:hover .view-icon {
        background: #FF4667;
    }
    /*# sourceMappingURL=style.css.map */
    /* ========================================================================= */
    /* ============================ Modified CSS ============================================================= */
    /* ======================================================================= */
    
    .isDesktop {
        display: block !important;
    }
    
    .isMobile {
        display: none !important;
    }
    
    @media screen and (max-width:800px) {
        .isDesktop {
            display: none !important;
        }
        .isMobile {
            display: block !important;
        }
    }
    
    .carousel-control-prev {
        background-color: #171717;
        opacity: 1;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-top: 10%;
    }
    
    .carousel-control-next {
        background-color: #171717;
        opacity: 1;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-top: 10%;
        padding: 10px;
    }
    
    @media screen and (max-width: 800px) {
        .carousel-control-prev,
        .carousel-control-next {
            display: none !important;
        }
    }
    
    .course-card {
        border: 1px solid #EEEEEE;
        border-radius: 12px;
        overflow: hidden !important;
        width: 20rem;
        height: 300px;
        transition: transform 0.3s;
        /* background-color: white; */
        /* padding: 5px; */
    }
    /* 
.course-card:hover {
  box-shadow: 0px 4px 12px #dbdbdb;
} */
    
    .course-video {
        object-fit: cover !important;
        border-radius: 10px;
        width: 100%;
        overflow: hidden;
    }
    
    .badge-pro {
        position: absolute;
        left: 0;
        bottom: 6px;
        background-color: #f0f1f5;
        color: #af00af;
        font-weight: 600;
        font-size: 0.80rem;
        padding: 5px 30px 5px 20px;
        border-radius: 0px 50px 0px 10px;
        clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
    }
    
    .price {
        font-weight: bold;
        color: #000;
    }
    
    .old-price {
        text-decoration: line-through;
        color: #888;
        margin: 0 5px;
    }
    
    .discount {
        color: #e53935;
        font-weight: 600;
    }
    
    .rating {
        border-radius: 5px;
        padding: 0px 5px !important;
        background-color: #f0f1f5;
        color: #0D0D0D;
        font-weight: 500;
        font-size: 14px;
    }
    /* --------------------------------------- Community css ------------------------- */
    
    .hade_tag {
        color: #FF4667;
        font-weight: 600;
        text-decoration: underline;
        line-height: 2;
    }
    
    .heading_community {
        font-size: 2.2rem;
    }
    
    .book_icon {
        background-color: #e4ddff;
        color: #7755ff;
        font-size: 1.2rem;
        padding: 10px 15px;
        border-radius: 50%;
    }
    
    .book_icon2 {
        background-color: #ffd4e9;
        color: #ff57a8;
        font-size: 1.2rem;
        padding: 16px 14px;
        border-radius: 50%;
    }
    
    .book_icon3 {
        background-color: #d8f0ff;
        color: #74caff;
        font-size: 1.5rem;
        padding: 8px 14px;
        border-radius: 50%;
    }
    
    .inner_txt_heading {
        font-size: 1.2rem;
        color: #0D0D0D;
        font-weight: 600;
    }
    
    .btn_community {
        background-color: #FF4667;
        color: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        border: 0;
    }
    
    .btn_community:hover {
        background-color: #ff5c7f;
        color: #fff;
    }
    
    .btn_community2 {
        background-color: #000;
        color: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        border: 0;
    }
    
    .btn_community2:hover {
        background-color: #171717;
        color: #fff;
    }
    
    .img_community {
        border-radius: 30px;
        width: 100%;
    }
    
    .student-badge {
        background-color: white;
        box-shadow: 0 2px 8px #d4d4d4;
        border-radius: 12px;
        padding: 10px 20px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        z-index: 555;
    }
    
    .avatar-group {
        display: flex;
    }
    
    .avatar-group img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid white;
        margin-left: -10px;
    }
    
    .avatar-group img:first-child {
        margin-left: 0;
    }
    
    .enroll-text {
        font-size: 14px;
        color: #444;
    }
    
    .enroll-text span {
        font-weight: 600;
        color: #e60073;
        /* Highlighted number */
    }
    
    .set_profiles {
        position: absolute;
        top: 15%;
        right: 20%;
    }
    
    @media screen and (max-width:800px) {
        .heading_community {
            font-size: 1.8rem;
        }
        .img_community {
            margin-top: 15px;
        }
        .btn_community {
            background-color: #FF4667;
            color: #fff;
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 600;
            border: 0;
            font-size: 0.7rem !important;
        }
        .btn_community2 {
            background-color: #000;
            color: #fff;
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 600;
            border: 0;
            font-size: 0.7rem !important;
        }
        .student-badge {
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 10px 20px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 555;
        }
        .set_profiles {
            position: absolute;
            top: 15%;
            right: 5%;
        }
        .avatar-group {
            display: flex;
        }
        .avatar-group img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            margin-left: -10px;
        }
        .avatar-group img:first-child {
            margin-left: 0;
        }
        .enroll-text {
            font-size: 12px;
            color: #444;
        }
        .enroll-text span {
            font-weight: 600;
            color: #e60073;
            /* Highlighted number */
        }
    }
    /* ------------------------ Testimonial CSS -------------------------- */
    
    .testimonial-card {
        max-width: 500px;
        background-color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 20px;
        margin: auto;
    }
    
    .testimonial-text {
        font-size: 14px;
        color: #333;
    }
    
    .user-info {
        display: flex;
        align-items: center;
        margin-top: 15px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 10px;
    }
    
    .user-name {
        font-weight: 600;
    }
    
    .stars {
        color: #ffc107;
        font-size: 14px;
    }
    
    .course-tag {
        background-color: #f0f2f7;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 13px;
        margin-top: 10px;
        display: inline-block;
        color: #333;
    }
    /* ====================== Footer CSS =================== */
    
    .footer_main {
        background-color: #392C7D;
    }
    
    .footer_first_links {
        h5 {
            color: #fff;
            font-weight: 600;
            line-height: 4rem;
        }
        li {
            line-height: 2rem;
        }
    }
    
    .links:hover {
        color: #FF4667 !important;
    }
    
    .copy_linktext {
        color: #FF4667 !important;
    }
    
    .list-group-item {
        border-bottom: 1px solid silver !important;
        /* padding: 5px 10px; */
    }
    
    .fs_6 {
        font-size: 0.3rem;
    }
    
    .w_100 {
        width: 27%;
    }
    
    @media screen and (max-width:800px) {
        .w_100 {
            width: 93.5%;
        }
        .Responsive_align {
            display: flex !important;
            justify-content: center !important;
        }
        .slick-next {
            display: none !important;
        }
    }
    
    .linsed {
        border-right: 1px solid white;
        padding-right: 10px;
    }
    
    .accordion-button::after {
        background-color: #d2dfff;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        content: url("../img/arow.png");
        border-radius: 50%;
        color: white !important;
        background-image: none;
    }
    
    .accordion-button:not(.collapsed)::after {
        background-image: none !important;
    }
    /* Contact Us Page design */
    /* Sections 1 Start */
    
    .mentorship-banner {
        background-image: url('../img/banner-1504653_640.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 100px 20px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }
    
    .mentorship-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 15px;
    }
    
    .mentorship-content h2 {
        font-size: 40px;
        color: rgba(255, 207, 73, 1);
        font-weight: 600;
        font-family: "Roboto", sans-serif;
        margin-bottom: 10px;
        text-shadow: 0px 0px 0px #000, 0px 0px 100px #FFCF49, 0px 0px 0px #000;
    }
    
    .mentorship-content p {
        font-size: 1.1rem;
        color: #fff;
    }
    
    .mentorship-btn {
        padding: 15px 40px;
        display: inline-block;
        background: rgba(255, 207, 73, 1);
        border-radius: 5px;
        color: #FFF !important;
        font-size: 18px;
        font-weight: 500;
        border: 1px solid rgb(255 255 255);
        background: linear-gradient(90deg, #ffcf49, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), #ffcf49, rgba(0, 0, 0, 0.3), #ffcf49, rgba(0, 0, 0, 0.3), #ffcf49, rgba(0, 0, 0, 0.3), #ffcf49, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), #ffcf49, rgba(0, 0, 0, 0.3));
        background-size: 1000% 100%;
        border-radius: 100px;
        position: relative;
        box-shadow: 0 0 5px #FFF;
        animation: button-animations 30s ease infinite;
        text-align: center;
    }
    
    @keyframes button-animations {
        0% {
            background-position: 100% 0%
        }
        100% {
            background-position: 0% 0%;
        }
    }
    
    @media (max-width: 768px) {
        .mentorship-banner {
            height: auto;
            padding: 50px 20px;
        }
        .mentorship-content h2 {
            font-size: 1.6rem;
        }
        .mentorship-content p {
            font-size: 1rem;
        }
    }
    /* Sections 1 End */
    /* Sections 2  */
    
    .how-it-working {
        padding: 60px 20px;
    }
    
    .how-it-working h2 {
        font-size: 2rem;
        font-weight: bold;
        color: var(--text-heading);
    }
    
    .how-it-working h2 span {
        color: var(--text-span);
    }
    
    .how-it-working .highlight {
        color: var(--text-highlight);
        font-weight: 500;
    }
    
    .how-it-working .description {
        color: var(--text-description);
        font-size: 1rem;
    }
    
    .card-custom {
        background-color: transparent;
        border-radius: 12px;
        padding: 25px;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
        color: var(--card-text);
    }
    
    .card-custom:hover {
        border-color: #00ff99;
        transform: translateY(-4px);
    }
    
    .card-custom img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .card-custom h6 {
        margin: 20px 0px 20px 0px;
        font-weight: 600;
        color: var(--card-text);
    }
    
    .card-custom:hover h6 {
        color: #FFCF49;
    }
    
    .card-custom p {
        color: var(--card-text);
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        .how-it-works h2 {
            font-size: 1.6rem;
        }
    }
    /* Sections 2 End */
    /* Sections 3  */
    
    .content .label {
        font-size: 0.9rem;
        color: var(--light-text);
        margin-bottom: 0.5rem;
    }
    
    .content .label strong {
        color: var(--light-text);
    }
    
    .content .title {
        color: var(--text-heading);
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    
    .content .desc {
        color: var(--text-color);
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .buttons {
        display: flex;
        align-items: center;
    }
    
    .btn.primary {
        background-color: var(--primary-btn);
        color: white;
        border: none;
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
    }
    
    .btn-pink {
        background-color: #e91e63;
        color: white;
        border: none;
        padding: 10px 24px;
        border-radius: 6px;
        font-weight: 500;
    }
    
    .btn-pink:hover {
        background-color: #db4176;
        color: white;
    }
    
    .btn-learn {
        color: var(--card-text);
        padding: 10px 24px;
        border-radius: 6px;
        font-weight: 500;
    }
    
    .banner-card {
        max-width: 1319px;
        margin: 0 auto;
        position: relative;
        padding: 1rem;
    }
    
    .master-card {
        background-color: var(--card-bg);
        color: var(--card-text);
        border-radius: 12px;
        position: relative;
        display: flex;
        align-items: center;
        padding: 2rem;
        padding-left: 600px;
        border: 1px solid var(--card-border);
        min-height: 320px;
        overflow: visible;
    }
    
    .master-card .image-container {
        position: absolute;
        top: 48%;
        left: 11%;
        transform: translateY(-50%);
        width: 400px;
        height: 450px;
        z-index: 2;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .master-card img {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    @media (max-width: 991px) {
        .master-card {
            flex-direction: column;
            padding: 1rem;
            padding-left: 1rem;
            padding-top: 480px;
            text-align: center;
        }
        .master-card .image-container {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, 0);
            width: 260px;
            height: 360px;
        }
    }
    
    @media (max-width: 576px) {
        .master-card {
            padding-top: 300px;
        }
        .master-card .image-container {
            width: 220px;
            height: 300px;
        }
    }
    /* Sections 3 End */
    /* Sections - 4  */
    
    .hero-section {
        background: url('../img/men.jpg') center center / cover no-repeat;
        color: white;
        position: relative;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 50px 15px;
        background-position-y: 150px;
        background-position-x: center;
    }
    
    .stats-box {
        background-color: rgba(28, 28, 30, 0.85);
        border-radius: 10px;
        padding: 50px 20px;
        margin: 10px;
    }
    
    .stats-box h2 {
        text-align: center;
        font-size: 4rem;
        font-weight: 800;
        color: #ffdcad;
    }
    
    .stats-box h6 {
        color: white;
        text-align: center;
        font-size: 30px;
        margin: 20px 0 20px 0;
    }
    
    .stats-box p {
        text-align: center;
        color: #ccc;
        font-size: 0.95rem;
    }
    
    .sources {
        font-size: 0.75rem;
        color: #bbb;
        margin-top: 10px;
    }
    
    .trusted-text {
        font-size: 2.8rem;
        font-weight: 700;
        color: white;
        margin: 300px 0 20px;
    }
    
    .logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    
    .logos img {
        width: 150px;
        height: auto;
        filter: brightness(0) invert(1);
        opacity: 0.85;
    }
    
    @media (max-width: 768px) {
        .stats-box h2 {
            font-size: 2.2rem;
        }
        .trusted-text {
            font-size: 1.4rem;
        }
        .logos {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            justify-items: center;
        }
        .logos img:nth-child(5) {
            grid-column: span 2;
            justify-self: center;
        }
        .logos img {
            width: 45vw;
            max-width: 140px;
        }
    }
    /* Sections 4 End */
    /* Sections 5 Form */
    
    .form-section {
        border: none;
        max-width: 1100px;
        margin: 50px auto;
        padding: 40px;
        background-color: var(--card-bg);
        border-radius: 15px;
        border: 1px solid var(--card-border);
    }
    
    .form-control,
    .form-select {
        padding: 15px;
    }
    
    .form-control::placeholder {
        color: #999;
    }
    
    .form-control:focus,
    .form-select:focus {
        box-shadow: none;
        border-color: var(--form-focus-border-color);
    }
    
    .form-label {
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .btn-custom {
        background-color: #ff3366;
        color: white;
        font-weight: bold;
        padding: 13px 30px;
        border-radius: 6px;
        border: none;
    }
    
    .btn-custom:hover {
        background-color: #ec2e5d;
        color: white !important;
    }
    
    .form-check-label {
        color: #ccc;
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .form-header h2 {
        font-weight: bold;
        font-size: 50px;
        color: var(--text-color);
    }
    
    .form-header p {
        color: #e63975;
        margin: 20px;
    }
    
    @media (max-width: 768px) {
        .form-header h2 {
            font-size: 25px;
        }
    }
    /* Sections  5 End */
    /* Sections 6 FAQ questions */
    
    .faq-section {
        max-width: 900px;
        margin: 60px auto;
        padding: 20px;
    }
    
    .accordion-button {
        background-color: var(--card-bg) !important;
        color: var(--card-text);
        font-weight: bold;
        border: 1px solid var(--card-border);
    }
    
    .accordion-button:not(.collapsed) {
        background-color: var(--gray-900);
        color: var(--card-text);
        box-shadow: none;
    }
    
    .accordion-item {
        border: none;
        margin-bottom: 10px;
    }
    
    .accordion-body {
        background-color: var(--card-bg) !important;
        color: var(--card-text);
        border: 1px solid var(--card-border);
    }
    
    @media (max-width: 576px) {
        .faq-section {
            padding: 10px;
        }
    }
    /* Sections 6 End */
    
    x.login-content .login-wrap-bg .or::after {
        position: absolute;
        content: "";
        width: 180px;
        height: 1px;
        background: var(--gray-100);
        left: -20px;
    }
    
    .login-content .login-wrap-bg .or::before {
        position: absolute;
        content: "";
        width: 180px;
        height: 1px;
        background: var(--gray-100);
        right: -20px;
    }
    
    @media screen and (max-width:1024px) {
        .login-content .login-wrap-bg .or::after {
            width: 100px;
        }
        .login-content .login-wrap-bg .or::before {
            width: 100px;
        }
    }