@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*================ Css Variables Start ===============*/
:root {
    /* === Font Family === */
    --heading-font: "Fraunces", serif;
    --body-font: "Inter", sans-serif;
    /* === TypoGraphy ===*/
    --heading-one: clamp(1.5rem, 2.8vw + 1rem, 3.75rem);
    --heading-two: clamp(1.375rem, 1.7vw + 1rem, 2.5rem);
    --heading-three: clamp(1.25rem, 0.8vw + 1rem, 1.875rem);
    --heading-four: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
    --heading-five: clamp(1.0625rem, 0.3vw + 1rem, 1.25rem);
    --heading-six: 1.2rem;
    /* ======================== Color Variables Start ===========================*/
    --white: 0 0% 100%;
    --static-white: 0 0% 100%;
    --light-h: 0;
    --light-s: 0%;
    --light-l: 78%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --black: 0 0% 0%;
    --static-black: 0 0% 0%;
    --heading-color: 217 41% 19%;
    --body-color: 210 2% 51%;
    --border-color: 0 0% 88%;
    --body-bg: 72 38% 97%;
    /*================================ Border-radius ===============================*/
    --border-radius: 16px;
    --border-radius-sm: 4px;
    /*================================ Box Shadow Start ===============================*/
    --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
    --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) / 0.92);
    --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
    /* ================================ Base Light Color =============================== */
    --base-light-h: 152;
    --base-light-s: 100%;
    --base-light-l: 50%;
    --base-light: var(--base-light-h) var(--base-light-s) var(--base-light-l);
    /*========================= Base component Color =============================*/
    --base-component-h: 213;
    --base-component-s: 100%;
    --base-component-l: 17%;
    --base-component: var(--base-component-h) var(--base-component-s) var(--base-component-l);
    /*========================= Base Color =============================*/
    --base-h: 259;
    --base-s: 83%;
    --base-l: 55%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    /*== Base Darken ==*/
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    /*== Base Lighten ==*/
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --background-gradient: linear-gradient(45deg,
            hsl(var(--base)),
            hsl(var(--base-two)));
    /*========================= Base Two Color =============================*/
    --base-two-h: 39;
    --base-two-s: 83%;
    --base-two-l: 67%;
    --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
    /*== Base Two Darken ==*/
    --base-two-d-100: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.05);
    --base-two-d-200: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.1);
    --base-two-d-300: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.2);
    --base-two-d-400: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.3);
    --base-two-d-500: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.4);
    --base-two-d-600: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.5);
    --base-two-d-700: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.6);
    --base-two-d-800: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.7);
    --base-two-d-900: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.8);
    /*=== Base Two Lighten ===*/
    --base-two-l-100: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.05);
    --base-two-l-200: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
    --base-two-l-300: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
    --base-two-l-400: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
    --base-two-l-500: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
    --base-two-l-600: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
    --base-two-l-700: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
    --base-two-l-800: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
    --base-two-l-900: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
    /*=== Dark Color ===*/
    --dark-h: 228;
    --dark-s: 67%;
    --dark-l: 12%;
    --dark: var(--dark-h) var(--dark-s) var(--dark-l);
    --dark-d-100: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.1);
    --dark-d-200: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.2);
    --dark-d-300: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.3);
    --dark-d-400: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.4);
    --dark-d-500: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.5);
    --dark-d-600: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.6);
    --dark-l-100: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.1);
    --dark-l-200: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.2);
    --dark-l-300: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.3);
    --dark-l-400: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.4);
    --dark-l-500: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.5);
    --dark-l-600: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.6);
    /*========================= Bootstrap Modifier Start ========================*/
    --primary-h: 211;
    --primary-s: 100%;
    --primary-l: 50%;
    --primary: var(--primary-h) var(--primary-s) var(--primary-l);
    /*=== Primary Darken ===*/
    --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
    --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
    --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
    --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
    --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
    /*=== primary Lighten ===*/
    --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
    --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
    --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
    --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
    --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
    --primary-l-600: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.6);
    /*=== Secondary Color ===*/
    --secondary-h: 210;
    --secondary-s: 11%;
    --secondary-l: 71%;
    --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
    /*=== Secondary Darken ===*/
    --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
    --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
    --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
    --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
    --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
    /*=== secondary Lighten ===*/
    --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
    --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
    --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
    --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
    --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
    --secondary-l-600: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.6);
    /*=== Success Color ===*/
    --success-h: 115;
    --success-s: 100%;
    --success-l: 47%;
    --success: var(--success-h) var(--success-s) var(--success-l);
    /*=== Success Darken ===*/
    --success-d-100: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.1);
    --success-d-200: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.2);
    --success-d-300: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.3);
    --success-d-400: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.4);
    --success-d-500: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.5);
    /*=== Success Lighten ===*/
    --success-l-100: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
    --success-l-200: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
    --success-l-300: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
    --success-l-400: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
    --success-l-500: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
    --success-l-600: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.6);
    /*=== Danger Color ==*/
    --danger-h: 0;
    --danger-s: 96%;
    --danger-l: 63%;
    --danger: var(--danger-h) var(--danger-s) var(--danger-l);
    /*=== Danger Darken ===*/
    --danger-d-100: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.1);
    --danger-d-200: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.2);
    --danger-d-300: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.3);
    --danger-d-400: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.4);
    --danger-d-500: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.5);
    /*=== danger Lighten ===*/
    --danger-l-100: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
    --danger-l-200: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
    --danger-l-300: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
    --danger-l-400: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
    --danger-l-500: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
    --danger-l-600: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.6);
    /*=== Warning Color ===*/
    --warning-h: 44;
    --warning-s: 100%;
    --warning-l: 51%;
    --warning: var(--warning-h) var(--warning-s) var(--warning-l);
    /*=== Warning Darken ===*/
    --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
    --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
    --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
    --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
    --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
    /*===  Warning Lighten ===*/
    --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
    --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
    --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
    --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
    --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
    --warning-l-600: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.6);
    /*=== Info Color ===*/
    --info-h: 196;
    --info-s: 100%;
    --info-l: 50%;
    --info: var(--info-h) var(--info-s) var(--info-l);
    /*=== Info Darken ===*/
    --info-d-100: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.1);
    --info-d-200: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.2);
    --info-d-300: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.3);
    --info-d-400: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.4);
    --info-d-500: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.5);
    /*=== nfo Lighten ===*/
    --info-l-100: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
    --info-l-200: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
    --info-l-300: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
    --info-l-400: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
    --info-l-500: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
    --info-l-600: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.6);
    /*=== Violet Color ===*/
    --violet-h: 251;
    --violet-s: 96%;
    --violet-l: 63%;
    --violet: var(--violet-h) var(--violet-s) var(--violet-l);
    /*=== Violet Darken ===*/
    --violet-d-100: var(--violet-h) var(--violet-s) calc(var(--violet-l) - var(--violet-l) * 0.1);
    --violet-d-200: var(--violet-h) var(--violet-s) calc(var(--violet-l) - var(--violet-l) * 0.2);
    --violet-d-300: var(--violet-h) var(--violet-s) calc(var(--violet-l) - var(--violet-l) * 0.3);
    --violet-d-400: var(--violet-h) var(--violet-s) calc(var(--violet-l) - var(--violet-l) * 0.4);
    --violet-d-500: var(--violet-h) var(--violet-s) calc(var(--violet-l) - var(--violet-l) * 0.5);
    /*=== Violet Lighten ===*/
    --violet-l-100: var(--violet-h) calc(var(--violet-s)) calc(var(--violet-l) + (100% - var(--violet-l)) * 0.1);
    --violet-l-200: var(--violet-h) calc(var(--violet-s)) calc(var(--violet-l) + (100% - var(--violet-l)) * 0.2);
    --violet-l-300: var(--violet-h) calc(var(--violet-s)) calc(var(--violet-l) + (100% - var(--violet-l)) * 0.3);
    --violet-l-400: var(--violet-h) calc(var(--violet-s)) calc(var(--violet-l) + (100% - var(--violet-l)) * 0.4);
    --violet-l-500: var(--violet-h) calc(var(--violet-s)) calc(var(--violet-l) + (100% - var(--violet-l)) * 0.5);
    --violet-l-600: var(--violet-h) calc(var(--violet-s)) calc(var(--violet-l) + (100% - var(--violet-l)) * 0.6);
    /*=== Yellow Color ===*/
    --yellow-h: 50;
    --yellow-s: 100%;
    --yellow-l: 50%;
    --yellow: var(--yellow-h) var(--yellow-s) var(--yellow-l);
    /*=== Yellow Darken ===*/
    --yellow-d-100: var(--yellow-h) var(--yellow-s) calc(var(--yellow-l) - var(--yellow-l) * 0.1);
    --yellow-d-200: var(--yellow-h) var(--yellow-s) calc(var(--yellow-l) - var(--yellow-l) * 0.2);
    --yellow-d-300: var(--yellow-h) var(--yellow-s) calc(var(--yellow-l) - var(--yellow-l) * 0.3);
    --yellow-d-400: var(--yellow-h) var(--yellow-s) calc(var(--yellow-l) - var(--yellow-l) * 0.4);
    --yellow-d-500: var(--yellow-h) var(--yellow-s) calc(var(--yellow-l) - var(--yellow-l) * 0.5);
    /*=== yellow Lighten ===*/
    --yellow-l-100: var(--yellow-h) calc(var(--yellow-s)) calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.1);
    --yellow-l-200: var(--yellow-h) calc(var(--yellow-s)) calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.2);
    --yellow-l-300: var(--yellow-h) calc(var(--yellow-s)) calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.3);
    --yellow-l-400: var(--yellow-h) calc(var(--yellow-s)) calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.4);
    --yellow-l-500: var(--yellow-h) calc(var(--yellow-s)) calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.5);
    --yellow-l-600: var(--yellow-h) calc(var(--yellow-s)) calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.6);
    /*======================= Bootstrap Modifier End ==============================*/
}

/*==================== Color Variables End =====================*/

/*====================== Section Heading ====================*/
.section-heading {
    margin-bottom: 50px;
    position: relative;
}

@media screen and (max-width: 374px) {
    .section-heading {
        margin-bottom: 30px;
    }
}

.section-heading .section-title-top {
    font-size: 26px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: hsl(var(--white));
    z-index: 1;
    margin: 5px 0px 20px 20px;
}

.section-heading .section-title-top::before {
    position: absolute;
    left: -9px;
    top: -6px;
    height: 50px;
    width: 50px;
    background: hsl(var(--base));
    content: "";
    z-index: -1;
    border-radius: 25px 10px 25px 10px;
}

.section-heading .subtitle {
    font-size: 20px;
    font-weight: 800;
    color: hsl(var(--base));
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.section-heading__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: capitalize;
    position: relative;
}

.section-heading__title .animate-shape {
    position: relative;
    width: 70%;
    top: 0;
    position: absolute;
    left: 0;
}

@media screen and (max-width: 770px) {
    .section-heading__title .animate-shape {
        width: 65%;
    }
}

.section-heading__title .animate-shape img {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: -1;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite;
}

@media screen and (max-width: 770px) {
    .section-heading__title .animate-shape img {
        top: 19px;
    }
}

.section-heading__title .animate-shape.center {
    left: 37%;
    width: 50%;
}

@media screen and (max-width: 770px) {
    .section-heading__title {
        font-size: 28px;
    }
}

@media screen and (max-width: 374px) {
    .section-heading__title {
        font-size: 25px;
    }
}

.section-heading__desc {
    max-width: 750px;
    left: 0px;
}

.item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(var(--black) / 0.8);
}

.text-center .section-heading__subtitle-big {
    right: 0;
}

.text-center .section-heading__desc {
    margin: auto;
}

/*================= Text Underline Hover ================*/
.text-hover a {
    background-image: linear-gradient(to right,
            hsl(var(--base)) 0%,
            hsl(var(--base)) 100%);
    background-position: 0 calc(100% - 0.02em);
    background-size: 0 2px;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    padding: 0;
    display: inline;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.text-hover a:hover {
    background-size: 100% 2px;
}

/*========== Magnific Popup button style ========*/
button.mfp-close {
    top: -15px;
    font-size: 21px;
    font-weight: 800;
    height: 35px;
    background: hsl(var(--base));
    line-height: 32px;
    padding: 0;
    opacity: 1;
    border-radius: 15px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: hsl(var(--white));
    right: 0px;
    text-align: right;
    padding-right: 13px;
    width: 42px;
}

.cookies-card {
    position: fixed;
    bottom: 16px;
    width: 40%;
    padding: 20px;
    background: hsl(var(--white));
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    right: 16px;
    z-index: 99;
    border: 2px solid hsl(var(--base));
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.full-display {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

/*====================== Bg Variable ====================*/
.bg--white {
    background-color: hsl(var(--white)) !important;
}

.bg--base {
    background-color: hsl(var(--base)) !important;
}

.bg--primary {
    background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
    background-color: hsl(var(--secondary)) !important;
}

.bg--success {
    background-color: hsl(var(--success)) !important;
}

.bg--danger {
    background-color: hsl(var(--danger)) !important;
}

.bg--warning {
    background-color: hsl(var(--warning)) !important;
}

.bg--info {
    background-color: hsl(var(--info)) !important;
}

.bg--violet {
    background-color: hsl(var(--violet)) !important;
}

.section-bg {
    background-color: hsl(var(--base) / 0.05);
}

/*====================== Color Variable ====================*/
.text--base {
    color: hsl(var(--base)) !important;
}

.text--primary {
    color: hsl(var(--primary)) !important;
}

.text--secondary {
    color: hsl(var(--secondary)) !important;
}

.text--success {
    color: hsl(var(--success)) !important;
}

.text--danger {
    color: hsl(var(--danger)) !important;
}

.text--warning {
    color: hsl(var(--warning)) !important;
}

.text--info {
    color: hsl(var(--info)) !important;
}

.text--violet {
    color: hsl(var(--violet)) !important;
}

.my-120 {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .my-120 {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

.mt-120 {
    margin-top: 60px;
}

@media (min-width: 992px) {
    .mt-120 {
        margin-top: 120px;
    }
}

.mb-120 {
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .mb-120 {
        margin-bottom: 120px;
    }
}

.my-60 {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .my-60 {
        margin-top: 120px;
        margin-bottom: 60px;
    }
}

.mt-60 {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .mt-60 {
        margin-top: 60px;
    }
}

.mb-60 {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .mb-60 {
        margin-bottom: 60px;
    }
}

.my-80 {
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .my-80 {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.mt-80 {
    margin-top: 40px;
}

@media (min-width: 992px) {
    .mt-80 {
        margin-top: 80px;
    }
}

.mb-80 {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .mb-80 {
        margin-bottom: 80px;
    }
}

.my-40 {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .my-40 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.mt-40 {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .mt-40 {
        margin-top: 40px;
    }
}

.mb-40 {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .mb-40 {
        margin-bottom: 40px;
    }
}

.mb-30 {
    margin-bottom: 30px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .py-120 {
        padding-top: 60px;
        padding-bottom: 60px !important;
    }
}

.py-140 {
    padding-top: 194px;
    padding-bottom: 194px;
}

@media (max-width: 1399px) {
    .py-140 {
        padding-top: 130px;
        padding-bottom: 130px;
    }
}

@media (max-width: 576px) {
    .py-140 {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media (max-width: 576px) {
    .pt-120 {
        padding-top: 60px !important;
    }
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 576px) {
    .py-80 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 992px) {
    .py-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.py--80 {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 576px) {
    .py--80 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .py--80 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

.pt-80 {
    padding-top: 40px;
}

@media (max-width: 576px) {
    .pt-80 {
        padding-top: 60px !important;
    }
}

@media (max-width: 992px) {
    .pt-80 {
        padding-top: 80px;
    }
}

.pb-40 {
    padding-bottom: 30px;
}

.pt-40 {
    padding-top: 30px;
}

@media (max-width: 576px) {
    .pb-40 {
        padding-bottom: 40px !important;
    }
}

@media (max-width: 992px) {
    .pb-40 {
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .pt-40 {
        padding-top: 40px !important;
    }
}

@media (max-width: 992px) {
    .pt-40 {
        padding-top: 40px;
    }
}

.pb-80 {
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .pb-80 {
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .pb-80 {
        padding-bottom: 40px !important;
    }
}

.pb-100 {
    padding-bottom: 50px;
}

@media (max-width: 576px) {
    .pb-100 {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 992px) {
    .pb-100 {
        padding-bottom: 100px;
    }
}

.py-60 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 576px) {
    .py-60 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

@media (max-width: 992px) {
    .py-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.pt-60 {
    padding-top: 30px;
}

@media (max-width: 576px) {
    .pt-60 {
        padding-top: 40px !important;
    }
}

@media (max-width: 992px) {
    .pt-60 {
        padding-top: 60px;
    }
}

.pt-40 {
    padding-top: 30px;
}

@media (max-width: 576px) {
    .pt-40 {
        padding-top: 35px !important;
    }
}

@media (max-width: 992px) {
    .pt-40 {
        padding-top: 40px;
    }
}

.pb-60 {
    padding-bottom: 30px;
}

@media (max-width: 576px) {
    .pb-60 {
        padding-bottom: 40px !important;
    }
}

@media (max-width: 992px) {
    .pb-60 {
        padding-bottom: 60px;
    }
}

.pb-30 {
    padding-bottom: 20px;
}

@media (max-width: 576px) {
    .pb-30 {
        padding-bottom: 25px !important;
    }
}

@media (max-width: 992px) {
    .pb-30 {
        padding-bottom: 30px;
    }
}

.pt-md-60 {
    padding-top: 60px;
}

@media (max-width: 576px) {
    .pt-md-60 {
        padding-top: 80px !important;
    }
}

@media (max-width: 992px) {
    .pt-md-60 {
        padding-top: 60px;
    }
}

.pb-md-60 {
    padding-bottom: 60px;
}

@media (max-width: 576px) {
    .pb-md-60 {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 992px) {
    .pb-md-60 {
        padding-bottom: 60px;
    }
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--body-bg));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-family: var(--body-font);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    word-break: break-word;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 991px) {
    p {
        font-size: 14px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.1;
    word-break: break-word;
}

@media screen and (max-width: 770px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 10px 0;
    }
}

h1 {
    font-size: var(--heading-one);
    font-weight: 700;
}

h2 {
    font-size: var(--heading-two);
    font-weight: 600;
    margin: 0px;
}

h3 {
    font-size: var(--heading-three);
    font-weight: 500;
}

h4 {
    font-size: var(--heading-four);
    font-weight: 500;
}

h5 {
    font-size: var(--heading-five);
    font-weight: 500;
}

h6 {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 1399px) {
    h6 {
        font-size: 14px !important;
    }
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-weight: 400;
    transition: 0.2s linear;
    line-height: 1.4;
    word-break: break-word;
    color: hsl(var(--heading-color));
}

a {
    transition: 0.2s linear;
    text-decoration: none;
    color: hsl(var(--body-color));
}

a:hover {
    color: hsl(var(--base));
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

*:focus {
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
    color: hsl(var(--white));
}

button:focus {
    outline: none;
}

.form-select:focus {
    outline: 0;
    box-shadow: none;
}

.bg--img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*====================== Border Color ====================*/
.border--base {
    border-color: hsl(var(--base)) !important;
}

.border--primary {
    border-color: hsl(var(--primary)) !important;
}

.border--secondary {
    border-color: hsl(var(--secondary)) !important;
}

.border--success {
    border-color: hsl(var(--success)) !important;
}

.border--danger {
    border-color: hsl(var(--danger)) !important;
}

.border--warning {
    border-color: hsl(var(--warning)) !important;
}

.border--info {
    border-color: hsl(var(--info)) !important;
}

.border--violet {
    border-color: hsl(var(--violet)) !important;
}

/*=========================== Accodion style start =============================*/
.accordion-area {
    position: relative;
    z-index: 1;
}

.custom--accordion .accordion-item {
    background-color: transparent !important;
    overflow: hidden;
    border: 1px solid hsl(var(--border-color) / 0.8) !important;
    border-radius: 8px;
}

.custom--accordion .accordion-item:not(:last-child) {
    margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
    .custom--accordion .accordion-item:not(:last-child) {
        margin-bottom: 10px;
    }
}

.custom--accordion .accordion-body {
    padding: 22px !important;
    background-color: hsl(var(--white));
    color: hsl(var(--body-color));
}

.custom--accordion .accordion-body .text {
    max-width: 60%;
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-body .text {
        max-width: 100%;
    }
}

.custom--accordion:first-of-type .accordion-button.collapsed {
    border-radius: 0px;
}

.custom--accordion:last-of-type .accordion-button.collapsed {
    border-radius: 0px;
}

.custom--accordion .accordion-button {
    background-color: hsl(var(--white));
    color: var(--heading-color);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    padding: 22px;
    padding-right: 50px;
}

@media screen and (max-width: 1199px) {
    .custom--accordion .accordion-button {
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-button {
        padding: 14px;
        padding-right: 40px;
    }
}

.custom--accordion .accordion-button::after {
    background-image: none;
}

.custom--accordion .accordion-button:focus {
    box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--white));
    background-color: hsl(var(--base)) !important;
    box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
    background-image: none;
    color: hsl(var(--heading-color));
}

.custom--accordion .accordion-button[aria-expanded="true"]::after,
.custom--accordion .accordion-button[aria-expanded="false"]::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: "\f068";
    display: inline-block;
    position: absolute;
    right: 16px;
    color: hsl(var(--white));
}

@media screen and (max-width: 575px) {

    .custom--accordion .accordion-button[aria-expanded="true"]::after,
    .custom--accordion .accordion-button[aria-expanded="false"]::after {
        right: -13px;
        font-size: 14px;
    }
}

.custom--accordion .accordion-button[aria-expanded="false"]::after {
    content: "\f067";
    color: hsl(var(--body-color));
}

.custom--card {
    border-radius: 12px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color) / 0.8);
}

.custom--card .card-body {
    background-color: transparent;
    padding: 24px;
    border-radius: 0;
}

.custom--card .card-body__icon {
    font-size: 26px;
    color: hsl(var(--white));
}

.custom--card .card-title {
    font-size: 20px;
}

/* ================================= Button Css Start =========================== */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: none;
    background-color: none;
    border-color: none;
}

.pill {
    border-radius: 40px !important;
}

.btn {
    color: hsl(var(--white)) !important;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    font-family: var(--body-font);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    line-height: 1.2;
}

@media screen and (max-width: 1199px) {
    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
    box-shadow: none !important;
}

.btn--lg {
    padding: 20px 35px;
}

@media screen and (max-width: 991px) {
    .btn--lg {
        padding: 18px 30px;
    }
}

@media screen and (max-width: 767px) {
    .btn--lg {
        padding: 16px 25px;
    }
}

.btn--sm {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
}

.btn--icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    padding: 0;
}

.btn--base {
    background-color: hsl(var(--base)) !important;
}

.btn--base:hover,
.btn--base:focus .btn--base:focus-visible {
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid hsl(var(--base-d-200)) !important;
}

.btn-outline--base {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base)) !important;
    color: hsl(var(--base)) !important;
}

.btn-outline--base:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base-two {
    background-color: hsl(var(--base-two)) !important;
}

.btn--base-two:hover,
.btn--base-two:focus .btn--base-two:focus-visible {
    background-color: hsl(var(--base-two-d-200)) !important;
    border: 1px solid hsl(var(--base-two-d-200)) !important;
}

.btn-outline--base-two {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base-two)) !important;
    color: hsl(var(--base-two)) !important;
}

.btn-outline--base-two:hover,
.btn-outline--base-two:focus .btn-outline--base-two:focus-visible {
    background-color: hsl(var(--base-two)) !important;
    color: hsl(var(--white)) !important;
}

.btn--primary {
    background-color: hsl(var(--primary)) !important;
}

.btn--primary:hover,
.btn--primary:focus .btn--primary:focus-visible {
    background-color: hsl(var(--primary-d-200)) !important;
    border: 1px solid hsl(var(--primary-d-200)) !important;
}

.btn-outline--primary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--primary)) !important;
    color: hsl(var(--primary)) !important;
}

.btn-outline--primary:hover,
.btn-outline--primary:focus .btn-outline--primary:focus-visible {
    background-color: hsl(var(--primary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--secondary {
    background-color: hsl(var(--secondary)) !important;
}

.btn--secondary:hover,
.btn--secondary:focus .btn--secondary:focus-visible {
    background-color: hsl(var(--secondary-d-200)) !important;
    border: 1px solid hsl(var(--secondary-d-200)) !important;
}

.btn-outline--secondary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--secondary)) !important;
    color: hsl(var(--secondary)) !important;
}

.btn-outline--secondary:hover,
.btn-outline--secondary:focus .btn-outline--secondary:focus-visible {
    background-color: hsl(var(--secondary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--success {
    background-color: hsl(var(--success)) !important;
}

.btn--success:hover,
.btn--success:focus .btn--success:focus-visible {
    background-color: hsl(var(--success-d-200)) !important;
    border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
    background-color: transparent !important;
    border: 1px solid hsl(var(--success)) !important;
    color: hsl(var(--success)) !important;
}

.btn-outline--success:hover,
.btn-outline--success:focus .btn-outline--success:focus-visible {
    background-color: hsl(var(--success)) !important;
    color: hsl(var(--white)) !important;
}

.btn--danger {
    background-color: hsl(var(--danger)) !important;
}

.btn--danger:hover,
.btn--danger:focus .btn--danger:focus-visible {
    background-color: hsl(var(--danger-d-200)) !important;
    border: 1px solid hsl(var(--danger-d-200)) !important;
}

.btn-outline--danger {
    background-color: transparent !important;
    border: 1px solid hsl(var(--danger)) !important;
    color: hsl(var(--danger)) !important;
}

.btn-outline--danger:hover,
.btn-outline--danger:focus .btn-outline--danger:focus-visible {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}

.btn--warning {
    background-color: hsl(var(--warning)) !important;
}

.btn--warning:hover,
.btn--warning:focus .btn--warning:focus-visible {
    background-color: hsl(var(--warning-d-200)) !important;
    border: 1px solid hsl(var(--warning-d-200)) !important;
}

.btn-outline--warning {
    background-color: transparent !important;
    border: 1px solid hsl(var(--warning)) !important;
    color: hsl(var(--warning)) !important;
}

.btn-outline--warning:hover,
.btn-outline--warning:focus .btn-outline--warning:focus-visible {
    background-color: hsl(var(--warning)) !important;
    color: hsl(var(--white)) !important;
}

.btn--info {
    background-color: hsl(var(--info)) !important;
}

.btn--info:hover,
.btn--info:focus .btn--info:focus-visible {
    background-color: hsl(var(--info-d-200)) !important;
    border: 1px solid hsl(var(--info-d-200)) !important;
}

.btn-outline--info {
    background-color: transparent !important;
    border: 1px solid hsl(var(--info)) !important;
    color: hsl(var(--info)) !important;
}

.btn-outline--info:hover,
.btn-outline--info:focus .btn-outline--info:focus-visible {
    background-color: hsl(var(--info)) !important;
    color: hsl(var(--white)) !important;
}

/* ================================= Button Css End =========================== */

/* ====================================== Alert Css Start =============================== */
.alert {
    margin-bottom: 0;
    background-color: hsl(var(--white));
    font-weight: 400;
    padding: 17px 24px;
    border-radius: 5px;
}

@media screen and (max-width: 991px) {
    .alert {
        padding: 16px;
    }
}

@media screen and (max-width: 575px) {
    .alert {
        padding: 12px;
    }
}

.alert__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.alert__content {
    width: calc(100% - 24px);
    padding-left: 32px;
}

@media screen and (max-width: 991px) {
    .alert__content {
        padding-left: 16px;
    }
}

@media screen and (max-width: 575px) {
    .alert__content {
        padding-left: 0;
        width: 100%;
        margin-top: 6px;
    }
}

.alert__title {
    font-size: 16px;
    color: hsl(var(--base-two)/0.8);
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 6px;
}

.alert__desc {
    color: hsl(var(--base-two)/0.5);
    display: block;
    line-height: 1.375;
}

@media screen and (max-width: 424px) {
    .alert__desc {
        font-size: 13px;
    }
}

.alert__link {
    position: relative;
}

.alert__link:hover::before {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.alert__link::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: hsl(var(--base));
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.alert--base {
    border-color: hsl(var(--base)/0.6);
    color: hsl(var(--base));
}

.alert--base .alert__icon {
    color: hsl(var(--base));
}

.alert--primary {
    border-color: hsl(var(--primary)/0.6);
    color: hsl(var(--primary));
}

.alert--primary .alert__icon {
    color: hsl(var(--primary));
}

.alert--success {
    border-color: hsl(var(--success)/0.6);
    color: hsl(var(--success));
}

.alert--success .alert__icon {
    color: hsl(var(--success));
}

.alert--info {
    border-color: hsl(var(--info)/0.6);
    color: hsl(var(--info));
}

.alert--info .alert__icon {
    color: hsl(var(--info));
}

.alert--danger {
    border-color: hsl(var(--danger)/0.6);
    color: hsl(var(--danger));
}

.alert--danger .alert__icon {
    color: hsl(var(--danger));
}

.alert--warning {
    border-color: hsl(var(--warning)/0.6);
    color: hsl(var(--warning));
}

.alert--warning .alert__icon {
    color: hsl(var(--warning));
}

.alert--secondary {
    border-color: hsl(var(--secondary)/0.6);
    color: hsl(var(--secondary));
}

.alert--secondary .alert__icon {
    color: hsl(var(--secondary));
}

/* ====================================== Alert Css End =============================== */

.contact-btn {
    position: relative;
    transition: background 400ms;
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base)) !important;
    padding: 6px 20px;
    font-size: 20px;
    outline: 0;
    cursor: pointer;
}

.contact-btn:hover {
    background-color: hsl(var(--base) / 0.2);
}

@media (max-width: 1399px) {
    .base-btn {
        font-size: 14px;
    }
}

.ripple {
    background-position: center;
    transition: background 0.5s;
}

.ripple:hover {
    background: hsl(var(--base) / 0.1) radial-gradient(circle, transparent 1%, hsl(var(--base) / 0.3) 1%) center/15000%;
}

.ripple:active {
    background-color: hsl(var(--base) / 0.3);
    background-size: 100%;
    transition: background 0s;
}

.card-actn__btn {
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base) / 0.4) !important;
    padding: 3px 10px 5px;
    font-size: 14px;
    outline: 0;
    cursor: pointer;
    display: block;
}

.card-actn__btn:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.tab-btn {
    position: relative;
    transition: background 400ms;
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base)) !important;
    padding: 0px 0px;
    font-size: 20px;
    outline: 0;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    /* black with 30% opacity */
    cursor: pointer;
}

.tab-btn:hover {
    background-color: hsl(var(--base) / 0.09);
}

.price-btn {
    position: relative;
    transition: background 400ms;
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base)) !important;
    padding: 6px 24px;
    font-size: 20px;
    outline: 0;
    cursor: pointer;
}

.price-btn:hover {
    background-color: hsl(var(--base) / 0.2);
}

.price-btn i {
    margin-left: 8px;
}

.card_wraper .card_body {
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: hsl(var(--white));
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid hsl(var(--border-color) / 0.8);
    padding: 12px;
    transition: 0.3s;
}

.card_wraper .card_body:hover {
    border-color: hsl(var(--base) / 0.5);
}

.card_wraper .card-img {
    border-radius: 8px;
    overflow: hidden;
}

.card_wraper .card-img img {
    width: 100%;
    transition: 0.5s;
}

.card_body:hover .card-img img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.card_wraper .content {
    padding: 8px;
    padding-top: 16px;
    text-align: left;
}

.card_wraper .content .content-text span {
    font-size: 12px;
    color: hsl(var(--body-color) / 0.7);
    display: block;
    margin-bottom: 2px;
}

.card_wraper .content .card-meta .sale {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
}

.review-wrapper {
    display: flex;
    align-items: center;
}

.review-wrapper i {
    color: hsl(var(--warning));
    font-size: 14px;
}

.review-wrapper .review-count {
    font-size: 14px;
    margin-top: 2px;
}

.rating-display-group {
    line-height: 1;
}

.card_wraper .content .card-meta .sale p.amount {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    color: hsl(var(--success-d-100));
}

.card_wraper .content .card-meta .sale .ratings-box {
    color: #faca51;
    font-size: 13px;
    margin-right: 5px;
}

.card_wraper .content .card-meta .btm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid hsl(var(--border-color) / 0.6);
}

.card_wraper .content .card-meta .btm .price h5 {
    font-weight: 500;
    margin: 0 !important;
    font-size: 16px;
    text-align: center;
    color: hsl(var(--base));
    font-family: var(--body-font);
}

.card_wraper .discount-card_body {
    height: 100%;
    width: 100%;
    position: relative;
    backdrop-filter: blur(5px);
    background-color: hsl(var(--white));
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.card_wraper .discount-card_body span {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 120px;
    height: 110px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card_wraper .discount-card_body span::before {
    content: "- 20%";
    color: white;
    font-weight: 600;
    position: absolute;
    background-color: hsl(var(--base));
    width: 150%;
    height: 30px;
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 0px 0px rgba(0, 0, 0, 0.5);
}

.card_wraper .discount-card_body span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 10px;
    z-index: -1;
    background-color: hsl(var(--base));
}

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

.card_wraper .content .content-text h5 {
    margin-bottom: 6px !important;
    font-family: var(--body-font);
}

.card_wraper .content .content-text h5 a {
    font-size: 16px !important;
    font-weight: 500 !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card_wraper .card-img .product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    transition: all ease-in-out 0.3s;
    color: hsl(var(--white));
    padding: 2px 8px;
    border-radius: 4px;
}

.product-badge p {
    font-size: 14px;
}

.card_wraper .card-img .product-badge p {
    color: hsl(var(--white));
}

.product-details-area .product-info-right .box_content h5.discount-price {
    text-decoration: line-through;
    margin-left: 5px;
}

/*====================== Form Style ====================*/
.search-box .input--group .form--control {
    color: hsl(var(--white));
    padding-right: 30px;
}

.search-box .form--control {
    color: hsl(var(--dark));
    padding-right: 40px;
}

.search-box .form--control::placeholder {
    color: hsl(var(--dark) / 0.6);
}

.form--label {
    margin-bottom: 6px;
    font-size: 16px;
    color: hsl(var(--dark));
    font-weight: 400;
}

.form--control {
    font-weight: 500;
    outline: none;
    width: 100%;
    padding: 14px 15px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    color: hsl(var(--heading-color)) !important;
    line-height: 1;
    border-radius: 8px !important;
}

.input-group input {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.form-select {
    line-height: 1.2;
}

.form--control::placeholder {
    color: hsl(var(--heading-color) / 0.4);
    font-size: 14px;
}

.form--control:focus {
    color: hsl(var(--heading-color));
    box-shadow: none;
    border-color: hsl(var(--border-color));
    background-color: hsl(var(--body-color) / 0.04);
}

.form--control:disabled,
.form--control[readonly] {
    background-color: hsl(var(--base) / 0.1);
    opacity: 1;
    border: 1px solid hsl(var(--base));
    border-radius: 15px;
}

.form--control[type="password"] {
    color: hsl(var(--dark) / 0.5);
}

.form--control[type="password"]:focus {
    color: hsl(var(--dark));
}

.form--control[type="file"] {
    line-height: 50px;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.form--control[type="file"]::file-selector-button {
    border: 1px solid hsl(var(--base));
    padding: 4px 6px;
    border-radius: 4px;
    background-color: hsl(var(--base)) !important;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 8px;
    color: hsl(var(--white));
    cursor: pointer;
}

.form--control[type="file"]::file-selector-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.search-form--control {
    font-weight: 500;
    outline: none;
    width: 100%;
    padding: 20px 20px;
    background-color: hsl(var(--body-color) / 0.1);
    border: 1px solid hsl(var(--base) / 0.2);
    color: hsl(var(--dark)) !important;
    line-height: 1;
    border-radius: 15px !important;
    padding-right: 93px !important;
    margin-bottom: 50px;
    transition: all .4s;
}

.search-form--control:focus {
    border: 1px solid hsl(var(--base));
}

.search-form--control::placeholder {
    color: hsl(var(--body-color));
    font-size: 16px;
}

.search-form--control:disabled,
.search-form--control[readonly] {
    background-color: hsl(var(--base) / 0.5);
    opacity: 1;
    border: 0;
}

.search-form--control[type="password"] {
    color: hsl(var(--dark) / 0.5);
}

.search-form--control[type="password"]:focus {
    color: hsl(var(--dark));
}

.search-form--control[type="file"] {
    line-height: 60px;
    padding: 0;
    position: relative;
}

.search-form--control[type="file"]::file-selector-button {
    border: 1px solid hsl(var(--black) / 0.08);
    padding: 4px 6px;
    border-radius: 0.2em;
    background-color: hsl(var(--base) / 0.9);
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 15px;
    color: hsl(var(--body-color));
}

.search-form--control[type="file"]::file-selector-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

textarea.form--control {
    height: 150px;
    padding: 15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--dark)) !important;
}

.input--group {
    position: relative;
}

.input--icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--base));
}

.password-show-hide {
    position: absolute;
    right: 20px;
    z-index: 3;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--dark) / 0.5);
}

#send-amount input[type="file"] {
    color: hsl(var(--base));
    cursor: pointer;
}

input #send-amount::file-selector-button {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/*====== Country code ======*/
.input-group.country-code {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}

.input-group.country-code .input-group-text {
    background-color: hsl(var(--base) / 0.5);
    border: 1px solid hsl(var(--base) / 0.7);
    border-radius: 10px 0 0 10px;
}

.select {
    color: hsl(var(--dark) / 0.6);
}

.select:focus {
    border-color: hsl(var(--base));
}

.select option {
    background-color: hsl(var(--dark));
    color: hsl(var(--white));
}

/*=========== Custom Checkbox Design ===========*/
.form--check {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    min-height: auto;
}

.form--check a {
    display: inline;
}

.form--check .form-check-input {
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 3px;
    width: 16px;
    height: 16px;
    border: 1px solid hsl(var(--border-color));
    margin-left: 0;
}

.form--check .form-check-input:checked {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
    box-shadow: none;
}

.form--check .form-check-input:checked[type="checkbox"] {
    background-image: none;
}

.form--check .form-check-input:checked::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: hsl(var(--white));
    font-size: 11px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form--check .form-check-label {
    padding-left: 8px;
}

/*==========  Custom Radion Design ============*/
.form--radio .form-check-input {
    box-shadow: none;
    border: 2px solid hsl(var(--base));
    position: relative;
    margin-right: 10px;
}

.form--radio .form-check-input:active {
    filter: brightness(100%);
}

.form--radio .form-check-input:checked {
    background-color: transparent;
    border-color: hsl(var(--base));
}

.form--radio .form-check-input:checked[type="radio"] {
    background-image: none;
}

.form--radio .form-check-input:checked::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background-color: hsl(var(--base));
    border-radius: 50%;
    z-index: 999;
}

/*  Custom Switch Design */
.form--switch .form-check-input {
    width: unset;
    border-radius: 3px;
    background-image: none;
    position: relative;
    box-shadow: none;
    border: 0;
    background-color: hsl(var(--base-two) / 0.5) !important;
    padding: 12px 30px !important;
    margin-left: 0;
    margin-bottom: 5px;
}

.form--switch .form-check-input:focus {
    width: unset;
    border-radius: 3px;
    background-image: none;
    position: relative;
    box-shadow: none;
    border: 0;
}

.form--switch .form-check-input::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 15px;
    background-color: hsl(var(--base-two));
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    left: 5px;
    transition: 0.2s linear;
}

.form--switch .form-check-input:checked {
    background-color: hsl(var(--base));
}

.form--switch .form-check-input:checked::before {
    left: calc(100% - 25px);
}

.form-check.form--switch {
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px;
}

.form-check.form--switch .form-check-label {
    margin-right: 10px;
    color: hsl(var(--white));
    font-weight: 500;
    margin-bottom: 0;
    line-height: 2;
}

@media screen and (max-width: 424px) {
    .choose-domain .input-group.country-code {
        flex-direction: column;
    }

    .choose-domain .input-group.country-code .form--control {
        margin: 5px;
        border-radius: 10px !important;
    }

    .choose-domain .input-group.country-code .input-group-text {
        width: 70px;
        border-radius: 10px !important;
    }
}

.choose-domain .input-group.country-code select.select.form--control {
    width: 120px;
    color: hsl(var(--dark));
}

/*  Custom Switch End Design */
::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
}

::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23bbbbbb" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

.nice--select {
    color: hsl(var(--white));
    background-color: transparent !important;
    border: 1px solid hsl(var(--white) / 0.3);
    height: 50px;
    line-height: initial;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}

.nice--select .current {
    font-size: 14px;
    font-family: var(--body-font);
    color: hsl(var(--white) / 0.4);
}

.nice--select .list {
    box-shadow: var(__box-shadow);
    background-color: hsl(var(--base-two));
    max-height: 200px;
    overflow-y: auto;
}

.nice--select .list::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.nice--select:hover {
    border: 1px solid hsl(var(--white) / 0.4);
}

.nice--select:focus {
    border: 1px solid hsl(var(--base));
}

.nice--select:after {
    transform: rotate(0deg);
    width: 5px;
    border-style: solid;
    border-width: 5px;
    border-color: hsl(var(--white) / 0.4) transparent transparent transparent;
    display: none;
}

.nice--select::before {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nice--select.open:after {
    transform: rotate(0deg);
}

.nice--select .option {
    color: hsl(var(--white) / 0.4);
    font-size: 14px;
    font-family: var(--body-font);
}

.nice--select .option.selected.focus {
    font-weight: 600;
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white));
}

.nice--select .option.selected.focus:hover {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.nice--select .option:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.nice--select .wide {
    border: 1px solid hsl(var(--base-two) / 0.08);
    gap: 0px;
}

/*====================== Modal Style ====================*/
.custom--modal .modal-header {
    border-bottom: 1px solid hsl(var(--black) / 0.08);
    margin-bottom: 25px;
    padding: 25px 25px 15px 25px;
}

.custom--modal .modal-header.close {
    width: 35px;
    height: 35px;
    background-color: hsl(var(--danger));
    font-size: 25px;
    line-height: 1;
    border-radius: 4px;
    transition: 0.2s linear;
}

.custom--modal .modal-header.close:hover {
    background-color: hsl(var(--danger-l-100));
}

.custom--modal .modal-header.close :focus {
    box-shadow: none;
}

.custom--modal .modal-content {
    text-align: center;
    background-color: hsl(var(--base-two));
    border-radius: 10px !important;
}

.custom--modal .modal-body {
    padding: 0 25px 25px;
}

.custom--modal .modal-icon i {
    font-size: 32px;
    color: hsl(var(--base));
    border: 3px solid hsl(var(--base));
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.custom--modal .modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 10px 25px 15px;
    border-top: 1px solid hsl(var(--black) / 0.08);
    justify-content: flex-end;
}

/*====================== Pagination Style ====================*/
.pagination {
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item .page-link {
    border: 1px solid hsl(var(--base) / 0.5);
    margin: 0 5px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--black));
}

.pagination .page-item .page-link.active,
.pagination .page-item .page-link:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
}

.pagination .page-item.active .page-link {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

/* ================================= Table Css Start =========================== */
/* Table Content Css start */
.action__drop__toggle {
    background-color: hsl(var(--white));
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid hsl(var(--black)/0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.action__drop__toggle:hover {
    color: hsl(var(--base));
}

.table__pt {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .table__pt {
        gap: 12px;
    }
}

.table__pt img {
    width: 40px;
    border-radius: 6px;
}

.table__pt h5 {
    font-size: 14px;
    margin-bottom: 2px;
    font-weight: 600;
}

.table__pt p {
    font-size: 12px;
    font-weight: 500;
}

.action__btn {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
}

.action__btn .btn {
    padding: 14px;
    font-size: 14px;
}

@media screen and (max-width: 1199px) {
    .action__btn .btn {
        padding: 12px;
        font-size: 12px;
    }
}

/* Table Content Css end */
/* Table Css Start */
.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 8px;
}

.table thead tr th {
    text-align: center;
    padding: 16px;
    color: hsl(var(--white));
    font-family: var(--body-font);
    font-weight: 500;
    border-bottom: 0;
    max-width: 170px;
    font-size: 16px;
    border: none;
    background-color: hsl(var(--base));
}

@media screen and (max-width: 1199px) {
    .table thead tr th {
        font-size: 14px;
        padding: 12px;
    }
}

.table thead tr th:first-child {
    text-align: left;
    border-radius: 8px 0 0 8px;
}

.table thead tr th:last-child {
    text-align: right;
    border-radius: 0 8px 8px 0;
}

.table tbody {
    border: 0 !important;
    background-color: hsl(var(--white));
}

.table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 16px;
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    font-weight: 400;
    max-width: 170px;
    font-size: 16px;
    border: none;
    background-color: hsl(var(--border-color)/0.2);
}

@media screen and (max-width: 1199px) {
    .table tbody tr td {
        font-size: 14px;
        padding: 12px;
    }
}

.table tbody tr td::before {
    content: attr(data-label);
    font-family: var(--body-font);
    font-size: 15px;
    color: hsl(var(--heading-color));
    font-weight: 500;
    display: none;
    width: 45% !important;
    text-align: left;
}

.table tbody tr td:first-child {
    text-align: left;
    border-radius: 8px 0 0 8px;
}

.table tbody tr td:last-child {
    text-align: right;
    border-radius: 0 8px 8px 0;
}

@media screen and (max-width: 767px) {
    .table--responsive--sm thead {
        display: none;
    }

    .table--responsive--sm .table__pt {
        flex-direction: row-reverse;
    }

    .table--responsive--sm tbody tr {
        display: block;
        margin-bottom: 5px;
    }

    .table--responsive--sm tbody tr:last-child td {
        border-bottom: 0;
    }

    .table--responsive--sm tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.8);
        max-width: unset;
    }

    .table--responsive--sm tbody tr td:last-child {
        border: none;
        border-radius: 0;
    }

    .table--responsive--sm tbody tr td:first-child {
        text-align: right;
        border-left: 0;
        border-radius: 0;
    }

    .table--responsive--sm tbody tr td::before {
        display: block;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 767px) {
    .table--responsive--sm tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 991px) {
    .table--responsive--md thead {
        display: none;
    }

    .table--responsive--md .table__pt {
        flex-direction: row-reverse;
    }

    .table--responsive--md tbody tr {
        display: block;
        margin-bottom: 5px;
    }

    .table--responsive--md tbody tr:nth-child(even) {
        background-color: hsl(var(--black)/0.02);
    }

    .table--responsive--md tbody tr:last-child td {
        border-bottom: 0;
    }

    .table--responsive--md tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.08);
        max-width: unset;
    }

    .table--responsive--md tbody tr td:last-child {
        border: none;
        border-radius: 0;
    }

    .table--responsive--md tbody tr td:first-child {
        text-align: right;
        border-left: 0;
        border-radius: 0;
    }

    .table--responsive--md tbody tr td::before {
        display: block;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 991px) {
    .table--responsive--md tbody tr td {
        border: none;
    }
}

@media screen and (max-width: 1199px) {
    .table--responsive--lg thead {
        display: none;
    }

    .table--responsive--lg .table__pt {
        flex-direction: row-reverse;
    }

    .table--responsive--lg tbody tr {
        display: block;
        margin-bottom: 5px;
    }

    .table--responsive--lg tbody tr:nth-child(even) {
        background-color: hsl(var(--black)/0.02);
    }

    .table--responsive--lg tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.08);
        max-width: unset;
    }

    .table--responsive--lg tbody tr td:last-child {
        border: none;
        border-radius: 0;
    }

    .table--responsive--lg tbody tr td:first-child {
        text-align: right;
        border-left: 0;
        border-radius: 0;
    }

    .table--responsive--lg tbody tr td::before {
        display: block;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 1199px) {
    .table--responsive--lg tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 1399px) {
    .table--responsive--xl thead {
        display: none;
    }

    .table--responsive--xl .table__pt {
        flex-direction: row-reverse;
    }

    .table--responsive--xl tbody tr {
        display: block;
        margin-bottom: 5px;
    }

    .table--responsive--xl tbody tr:last-child td {
        border-bottom: 0;
    }

    .table--responsive--xl tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.08);
        max-width: unset;
    }

    .table--responsive--xl tbody tr td:last-child {
        border: none;
        border-radius: 0;
    }

    .table--responsive--xl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
        border-radius: 0;
    }

    .table--responsive--xl tbody tr td::before {
        display: block;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 1399px) {
    .table--responsive--xl tbody tr td {
        border: 0;
    }
}

/* ================================= Table Css End =========================== */
/*================== Tab Content =============*/
.custom--tab {
    justify-content: flex-start;
    gap: 10px;
    border-radius: 0;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 1px solid hsl(var(--border-color) / 0.6);
}

.custom--tab .nav-item {
    border-bottom: 0;
}

.custom--tab .nav-item .nav-link {
    color: hsl(var(--heading-color));
    padding: 8px 20px;
    background-color: hsl(var(--white)) !important;
    border-radius: 6px;
    transition: 0.4s;
    border: 1px solid hsl(var(--border-color) / 0.8) !important;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 1199px) {
    .custom--tab .nav-item .nav-link {
        padding: 12px 15px;
    }
}

.custom--tab .nav-item .nav-link.active {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid transparent !important;
}

.custom--tab .nav-item .nav-link.active:hover {
    color: hsl(var(--white));
}

.custom--tab .nav-item .nav-link:hover {
    color: hsl(var(--base));
}

/*====================== Bage Color ====================*/
.badge {
    border-radius: 30px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge--base {
    background-color: hsl(var(--base) / 0.1) !important;
    color: hsl(var(--base)) !important;
}

.badge--primary {
    background-color: hsl(var(--primary) / 0.1) !important;
    color: hsl(var(--primary)) !important;
}

.badge--secondary {
    background-color: hsl(var(--secondary) / 0.1) !important;
    color: hsl(var(--secondary)) !important;
}

.badge--success {
    background-color: hsl(var(--success-d-200) / 0.1) !important;
    color: hsl(var(--success-d-200)) !important;
}

.badge--danger {
    background-color: hsl(var(--danger) / 0.1) !important;
    color: hsl(var(--danger)) !important;
}

.badge--warning {
    background-color: hsl(var(--warning) / 0.1) !important;
    color: hsl(var(--warning)) !important;
}

.badge--info {
    background-color: hsl(var(--info) / 0.1) !important;
    color: hsl(var(--info)) !important;
}

.badge--violet {
    background-color: hsl(var(--violet) / 0.1) !important;
    color: hsl(var(--violet)) !important;
}

/* ================= Floting Input Start ================= */
.input--floating {
    position: relative;
}

.input--floating a {
    font-size: 15px;
    font-weight: 500;
}

.input--floating a:hover {
    color: hsl(var(--base));
}

select.form-control.form--control {
    height: 54px;
}

.input--floating .form--control {
    height: 40px;
    background-color: transparent;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base-two));
    font-size: 14px;
    padding-left: 15px;
    width: 100%;
}

.input--floating .form--control:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border: 1px solid hsl(var(--base));
    outline: none;
    border: 1px solid hsl(var(--base));
}

.input--floating .form--control:focus~.form--label {
    top: 0;
    left: 15px;
    z-index: 5;
    font-size: 12px;
    font-weight: 500;
    color: hsl(var(--base-two));
    transition: all 0.2s ease-in-out;
}

.input--floating .form--control::placeholder {
    opacity: 0;
    visibility: hidden;
    color: transparent;
    opacity: 0;
    visibility: hidden;
    color: transparent;
    font-size: 13px;
}

.input--floating .form--control:not(:placeholder-shown).form--control:not(:focus)~.form--label {
    top: 0;
    left: 15px;
    z-index: 9;
    transition: all 0.2s ease-in-out;
}

.input--floating .form--label {
    position: absolute;
    top: 20px;
    left: 15px;
    cursor: text;
    transform: translateY(-50%);
    color: hsl(var(--base-two));
    padding: 4px 4px;
    font-size: 12px;
    border-radius: 15px;
    transition: 0.2s ease;
    line-height: 0.8;
    pointer-events: none;
    z-index: 1;
    background-color: transparent;
}

.input--floating .form--label::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    top: 53%;
    background-color: hsl(var(--base-two));
    transform: translateY(-50%);
    z-index: -1;
}

select.form-control.form--control:has(option)~.form--label {
    top: 0% !important;
}

/* ================= Floting Input End ================= */
/*============** Custom Animation **============*/
/*==== Animation y-axis ==== */
.animate-y-axis {
    -webkit-animation-name: y-axis;
    animation-name: y-axis;
    -webkit-animation-duration: 11s;
    animation-duration: 11s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes y-axis {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes y-axis {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.animate-y-axis-slider {
    -webkit-animation-name: y-axis-slider;
    animation-name: y-axis-slider;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes y-axis-slider {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes y-axis-slider {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

/*==== Animation x-axis ==== */
.animate-x-axis {
    -webkit-animation-name: x-axis;
    animation-name: x-axis;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes x-axis {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes x-axis {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

/*==== Animation Rotate ==== */
.animate-rotate {
    animation-name: rotate;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 24s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotate;
    -ms-animation-duration: 24s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotate;
    -o-animation-duration: 24s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*==== Animation Play Video Button Pulse New ==== */
.video-main {
    position: relative;
    display: inline-block;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.fa-play:before {
    content: "\f04b";
}

.waves {
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgb(13, 110, 253);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: -16px;
    bottom: -25px;
    z-index: 1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

/*==== Animation Play Video Button Pulse old ==== */
.round-animated {
    position: relative;
    z-index: 1;
}

.round-animated-2 {
    position: relative;
    z-index: 1;
}

.round-animated::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 9px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 75px;
    height: 75px;
    background: #0d6efd;
    border-radius: 50%;
    -webkit-animation: round-border 1500ms ease-out infinite;
    animation: round-border 1500ms ease-out infinite;
    z-index: -1;
}

.round-animated-2::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 9px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: rgba(210, 81, 81, 0.5);
    border-radius: 50%;
    -webkit-animation: round-border 1500ms ease-out infinite;
    animation: round-border 1500ms ease-out infinite;
    z-index: -1;
}

@-webkit-keyframes round-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes round-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/*==== Animate zoom-in-out  ====*/
.animate-zoom-in-out {
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;
    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7);
        transform: rotate(0deg) scale(0.7);
        opacity: 0.5;
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(360deg) scale(0.7);
        transform: rotate(360deg) scale(0.7);
        opacity: 0.5;
    }
}

@keyframes zoomInOut {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7);
        transform: rotate(0deg) scale(0.7);
        opacity: 0.5;
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(360deg) scale(0.7);
        transform: rotate(360deg) scale(0.7);
        opacity: 0.5;
    }
}

.animate-zoom-inout {
    animation-name: zoomInOut;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: zoomInOut;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: zoomInOut;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    -ms-animation-name: zoomInOut;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;
    -o-animation-name: zoomInOut;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7);
        transform: rotate(0deg) scale(0.7);
        opacity: 0;
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(360deg) scale(0.7);
        transform: rotate(360deg) scale(0.7);
        opacity: 0;
    }
}

@keyframes zoomInOut {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7);
        transform: rotate(0deg) scale(0.7);
        opacity: 0.5;
    }

    50% {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(360deg) scale(0.7);
        transform: rotate(360deg) scale(0.7);
        opacity: 0.5;
    }
}

/*=============== More Animation in here ============= */
.animate-square-zoom {
    position: relative;
    overflow: hidden;
}

.animate-square-zoom:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 7px;
}

.animate-square-zoom:hover:before {
    -webkit-animation-duration: 0.95s;
    animation-duration: 0.95s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-name: circle;
    animation-name: circle;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 5;
    }
}

.animate-zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.animate-float-bob {
    animation-name: float-bob;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob;
    -webkit-animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 7s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 7s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 7s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

@keyframes bounce {

    20%,
    53%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

@keyframes flash {

    50%,
    from,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}

@keyframes pulse {

    from,
    to {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

.pulse {
    animation-name: pulse;
}

@keyframes rubberBand {

    from,
    to {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
}

.rubberBand {
    animation-name: rubberBand;
}

@keyframes shake {

    from,
    to {
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    animation-name: shake;
}

@keyframes headShake {
    0% {
        transform: translateX(0);
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        transform: translateX(0);
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing;
}

@keyframes tada {

    from,
    to {
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
}

.tada {
    animation-name: tada;
}

@keyframes wobble {

    from,
    to {
        transform: none;
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes jello {

    11.1%,
    from,
    to {
        transform: none;
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.jello {
    animation-name: jello;
    transform-origin: center;
}

@keyframes bounceIn {

    20%,
    40%,
    60%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {

    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }

    75% {
        transform: translate3d(0, -10px, 0);
    }

    90% {
        transform: translate3d(0, 5px, 0);
    }

    to {
        transform: none;
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {

    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }

    75% {
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        transform: translate3d(5px, 0, 0);
    }

    to {
        transform: none;
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {

    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        transform: translate3d(10px, 0, 0);
    }

    90% {
        transform: translate3d(-5px, 0, 0);
    }

    to {
        transform: none;
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {

    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }

    75% {
        transform: translate3d(0, 10px, 0);
    }

    90% {
        transform: translate3d(0, -5px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    animation-name: bounceInUp;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.rollIn {
    animation-name: rollIn;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    animation-name: zoomInUp;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

.elementor-animation-grow {
    transition-duration: 0.3s;
    transition-property: transform;
}

.elementor-animation-grow:active,
.elementor-animation-grow:focus,
.elementor-animation-grow:hover {
    transform: scale(1.1);
}

.elementor-animation-shrink {
    transition-duration: 0.3s;
    transition-property: transform;
}

.elementor-animation-shrink:active,
.elementor-animation-shrink:focus,
.elementor-animation-shrink:hover {
    transform: scale(0.9);
}

@keyframes elementor-animation-pulse {
    25% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(0.9);
    }
}

.elementor-animation-pulse:active,
.elementor-animation-pulse:focus,
.elementor-animation-pulse:hover {
    animation-name: elementor-animation-pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes elementor-animation-pulse-grow {
    to {
        transform: scale(1.1);
    }
}

.elementor-animation-pulse-grow:active,
.elementor-animation-pulse-grow:focus,
.elementor-animation-pulse-grow:hover {
    animation-name: elementor-animation-pulse-grow;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes elementor-animation-pulse-shrink {
    to {
        transform: scale(0.9);
    }
}

.elementor-animation-pulse-shrink:active,
.elementor-animation-pulse-shrink:focus,
.elementor-animation-pulse-shrink:hover {
    animation-name: elementor-animation-pulse-shrink;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes elementor-animation-push {
    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.elementor-animation-push:active,
.elementor-animation-push:focus,
.elementor-animation-push:hover {
    animation-name: elementor-animation-push;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-pop {
    50% {
        transform: scale(1.2);
    }
}

.elementor-animation-pop:active,
.elementor-animation-pop:focus,
.elementor-animation-pop:hover {
    animation-name: elementor-animation-pop;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

.elementor-animation-bounce-in {
    transition-duration: 0.5s;
}

.elementor-animation-bounce-in:active,
.elementor-animation-bounce-in:focus,
.elementor-animation-bounce-in:hover {
    transform: scale(1.2);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.elementor-animation-bounce-out {
    transition-duration: 0.5s;
}

.elementor-animation-bounce-out:active,
.elementor-animation-bounce-out:focus,
.elementor-animation-bounce-out:hover {
    transform: scale(0.8);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.elementor-animation-rotate {
    transition-duration: 0.3s;
    transition-property: transform;
}

.elementor-animation-rotate:active,
.elementor-animation-rotate:focus,
.elementor-animation-rotate:hover {
    transform: rotate(4deg);
}

.elementor-animation-grow-rotate {
    transition-duration: 0.3s;
    transition-property: transform;
}

.elementor-animation-grow-rotate:active,
.elementor-animation-grow-rotate:focus,
.elementor-animation-grow-rotate:hover {
    transform: scale(1.1) rotate(4deg);
}

.elementor-animation-float {
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}

.elementor-animation-float:active,
.elementor-animation-float:focus,
.elementor-animation-float:hover {
    transform: translateY(-8px);
}

.elementor-animation-sink {
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}

.elementor-animation-sink:active,
.elementor-animation-sink:focus,
.elementor-animation-sink:hover {
    transform: translateY(8px);
}

@keyframes elementor-animation-bob {
    0% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes elementor-animation-bob-float {
    100% {
        transform: translateY(-8px);
    }
}

.elementor-animation-bob:active,
.elementor-animation-bob:focus,
.elementor-animation-bob:hover {
    animation-name: elementor-animation-bob-float, elementor-animation-bob;
    animation-duration: 0.3s, 1.5s;
    animation-delay: 0s, 0.3s;
    animation-timing-function: ease-out, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards;
    animation-direction: normal, alternate;
}

@keyframes elementor-animation-hang {
    0% {
        transform: translateY(8px);
    }

    50% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(8px);
    }
}

@keyframes elementor-animation-hang-sink {
    100% {
        transform: translateY(8px);
    }
}

.elementor-animation-hang:active,
.elementor-animation-hang:focus,
.elementor-animation-hang:hover {
    animation-name: elementor-animation-hang-sink, elementor-animation-hang;
    animation-duration: 0.3s, 1.5s;
    animation-delay: 0s, 0.3s;
    animation-timing-function: ease-out, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards;
    animation-direction: normal, alternate;
}

.elementor-animation-skew {
    transition-duration: 0.3s;
    transition-property: transform;
}

.elementor-animation-skew:active,
.elementor-animation-skew:focus,
.elementor-animation-skew:hover {
    transform: skew(-10deg);
}

.elementor-animation-skew-forward {
    transition-duration: 0.3s;
    transition-property: transform;
    transform-origin: 0 100%;
}

.elementor-animation-skew-forward:active,
.elementor-animation-skew-forward:focus,
.elementor-animation-skew-forward:hover {
    transform: skew(-10deg);
}

.elementor-animation-skew-backward {
    transition-duration: 0.3s;
    transition-property: transform;
    transform-origin: 0 100%;
}

.elementor-animation-skew-backward:active,
.elementor-animation-skew-backward:focus,
.elementor-animation-skew-backward:hover {
    transform: skew(10deg);
}

@keyframes elementor-animation-wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }

    33.3% {
        transform: translateY(-6px);
    }

    49.95% {
        transform: translateY(4px);
    }

    66.6% {
        transform: translateY(-2px);
    }

    83.25% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(0);
    }
}

.elementor-animation-wobble-vertical:active,
.elementor-animation-wobble-vertical:focus,
.elementor-animation-wobble-vertical:hover {
    animation-name: elementor-animation-wobble-vertical;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-wobble-horizontal {
    16.65% {
        transform: translateX(8px);
    }

    33.3% {
        transform: translateX(-6px);
    }

    49.95% {
        transform: translateX(4px);
    }

    66.6% {
        transform: translateX(-2px);
    }

    83.25% {
        transform: translateX(1px);
    }

    100% {
        transform: translateX(0);
    }
}

.elementor-animation-wobble-horizontal:active,
.elementor-animation-wobble-horizontal:focus,
.elementor-animation-wobble-horizontal:hover {
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-wobble-to-bottom-right {
    16.65% {
        transform: translate(8px, 8px);
    }

    33.3% {
        transform: translate(-6px, -6px);
    }

    49.95% {
        transform: translate(4px, 4px);
    }

    66.6% {
        transform: translate(-2px, -2px);
    }

    83.25% {
        transform: translate(1px, 1px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.elementor-animation-wobble-to-bottom-right:active,
.elementor-animation-wobble-to-bottom-right:focus,
.elementor-animation-wobble-to-bottom-right:hover {
    animation-name: elementor-animation-wobble-to-bottom-right;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-wobble-to-top-right {
    16.65% {
        transform: translate(8px, -8px);
    }

    33.3% {
        transform: translate(-6px, 6px);
    }

    49.95% {
        transform: translate(4px, -4px);
    }

    66.6% {
        transform: translate(-2px, 2px);
    }

    83.25% {
        transform: translate(1px, -1px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.elementor-animation-wobble-to-top-right:active,
.elementor-animation-wobble-to-top-right:focus,
.elementor-animation-wobble-to-top-right:hover {
    animation-name: elementor-animation-wobble-to-top-right;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-wobble-top {
    16.65% {
        transform: skew(-12deg);
    }

    33.3% {
        transform: skew(10deg);
    }

    49.95% {
        transform: skew(-6deg);
    }

    66.6% {
        transform: skew(4deg);
    }

    83.25% {
        transform: skew(-2deg);
    }

    100% {
        transform: skew(0);
    }
}

.elementor-animation-wobble-top {
    transform-origin: 0 100%;
}

.elementor-animation-wobble-top:active,
.elementor-animation-wobble-top:focus,
.elementor-animation-wobble-top:hover {
    animation-name: elementor-animation-wobble-top;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-wobble-bottom {
    16.65% {
        transform: skew(-12deg);
    }

    33.3% {
        transform: skew(10deg);
    }

    49.95% {
        transform: skew(-6deg);
    }

    66.6% {
        transform: skew(4deg);
    }

    83.25% {
        transform: skew(-2deg);
    }

    100% {
        transform: skew(0);
    }
}

.elementor-animation-wobble-bottom {
    transform-origin: 100% 0;
}

.elementor-animation-wobble-bottom:active,
.elementor-animation-wobble-bottom:focus,
.elementor-animation-wobble-bottom:hover {
    animation-name: elementor-animation-wobble-bottom;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-wobble-skew {
    16.65% {
        transform: skew(-12deg);
    }

    33.3% {
        transform: skew(10deg);
    }

    49.95% {
        transform: skew(-6deg);
    }

    66.6% {
        transform: skew(4deg);
    }

    83.25% {
        transform: skew(-2deg);
    }

    100% {
        transform: skew(0);
    }
}

.elementor-animation-wobble-skew:active,
.elementor-animation-wobble-skew:focus,
.elementor-animation-wobble-skew:hover {
    animation-name: elementor-animation-wobble-skew;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes elementor-animation-buzz {
    50% {
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        transform: translateX(-3px) rotate(-2deg);
    }
}

.elementor-animation-buzz:active,
.elementor-animation-buzz:focus,
.elementor-animation-buzz:hover {
    animation-name: elementor-animation-buzz;
    animation-duration: 0.15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes elementor-animation-buzz-out {
    10% {
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        transform: translateX(1px) rotate(0);
    }

    100% {
        transform: translateX(-1px) rotate(0);
    }
}

.elementor-animation-buzz-out:active,
.elementor-animation-buzz-out:focus,
.elementor-animation-buzz-out:hover {
    animation-name: elementor-animation-buzz-out;
    animation-duration: 0.75s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

.bottom_bar {
    position: absolute;
    display: none;
}

.bottom_bar .bottonAppBar {
    position: fixed !important;
    height: 50px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    background: hsl(var(--base));
    box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.2), 0 -1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 12px 0px 12px;
}

.bottom_bar .bottonAppBar .bottom-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: white;
}

.bottom_bar .bottonAppBar .bottom-item a p {
    color: white;
}

.bottom_bar .bottonAppBar .tapTo-hom {
    position: absolute;
    background-color: hsl(var(--base));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    top: -22px;
    border-radius: 50%;
    box-shadow: 1px 5px 14px 1px rgba(0, 0, 0, 0.24);
    cursor: pointer;
}

.bottom_bar .bottonAppBar .tapTo-hom .tap-box {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom_bar .bottonAppBar .tapTo-hom .tap-box a i {
    font-size: 18px;
    color: white;
}

.bottom_bar .bottom-item {
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 425px) {
    .bottom_bar {
        display: block !important;
    }

    .bottom-footer {
        padding-bottom: 100px !important;
    }

    .cookies-card {
        margin-bottom: 45px;
    }
}

@media (max-width: 425px) {
    .bottom_bar {
        font-size: 18px !important;
    }
}

/*====================== Preloader Style ====================*/
#loading {
    background-color: hsl(var(--body-bg));
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 85px;
    height: 50px;
    background-repeat: no-repeat;
    background-image: linear-gradient(hsl(var(--base)) 50px, transparent 0),
        linear-gradient(hsl(var(--base)) 50px, transparent 0),
        linear-gradient(hsl(var(--base)) 50px, transparent 0),
        linear-gradient(hsl(var(--base)) 50px, transparent 0),
        linear-gradient(hsl(var(--base)) 50px, transparent 0),
        linear-gradient(hsl(var(--base)) 50px, transparent 0);
    background-position: 0px center, 15px center, 30px center, 45px center, 60px center, 75px center, 90px center;
    animation: rikSpikeRoll 1s linear infinite alternate;
}

@keyframes rikSpikeRoll {
    0% {
        background-size: 10px 3px;
    }

    16% {
        background-size: 10px 50px, 10px 3px, 10px 3px, 10px 3px, 10px 3px, 10px 3px
    }

    33% {
        background-size: 10px 30px, 10px 50px, 10px 3px, 10px 3px, 10px 3px, 10px 3px
    }

    50% {
        background-size: 10px 10px, 10px 30px, 10px 50px, 10px 3px, 10px 3px, 10px 3px
    }

    66% {
        background-size: 10px 3px, 10px 10px, 10px 30px, 10px 50px, 10px 3px, 10px 3px
    }

    83% {
        background-size: 10px 3px, 10px 3px, 10px 10px, 10px 30px, 10px 50px, 10px 3px
    }

    100% {
        background-size: 10px 3px, 10px 3px, 10px 3px, 10px 10px, 10px 30px, 10px 50px
    }
}

/* ======================  Offcanvas Section Start  ======================*/
.offcanvas__area {
    position: fixed;
    left: -100%;
    top: 0;
    width: 300px;
    height: 100%;
    padding: 20px;
    background-color: hsl(var(--white));
    border-right: 1px solid hsl(var(--black)/0.03);
    z-index: 15;
    transition: 0.4s;
    visibility: hidden;
    overflow-y: auto;
}

.offcanvas__area::-webkit-scrollbar {
    width: 5px;
}

.offcanvas__area::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px hsl(var(--black)/0.1);
}

.offcanvas__area::-webkit-scrollbar-thumb {
    background: hsl(var(--base)/0.7);
}

.offcanvas__area::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--base));
}

.offcanvas__area.active {
    left: 0;
    visibility: visible;
}

.offcanvas__area .offcanvas__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.offcanvas__area .offcanvas__topbar a img {
    width: 140px;
}

.offcanvas__area .offcanvas__topbar .menu__close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: hsl(var(--white));
    background-color: hsl(var(--danger));
    font-size: 20px;
    border-radius: 4px;
    transition: 0.3s;
}

.offcanvas__area .offcanvas__topbar .menu__close:hover {
    background-color: hsl(var(--danger-d-200));
    color: hsl(var(--white));
}

.offcanvas__area .offcanvas__main .offcanvas__widgets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: hsl(var(--heading-color));
    border-bottom: 1px solid hsl(var(--black)/0.06);
    padding: 12px 0;
    transition: 0.3s;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a:hover,
.offcanvas__area .offcanvas__main .offcanvas__menu ul li a.active {
    color: hsl(var(--base));
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--black)/0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 12;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ======================  Offcanvas Section End  ======================*/

/*====================== Header css start here ====================*/
.header__area {
    position: relative;
    z-index: 9;
    background-color: hsl(var(--heading-color));
    padding-block: 14px;
}

.header__area.fixed-header {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    transition: 0.25s linear;
    animation: slide-down 0.4s;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header__logo a img {
    width: 140px;
}

.header__menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__menu ul li a {
    color: hsl(var(--white) / 0.6);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.header__menu ul li a:hover,
.header__menu ul li.active a {
    color: hsl(var(--white));
}

.header__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__btn a:first-child {
    color: hsl(var(--white));
}

.header__btn a:first-child:hover {
    color: hsl(var(--base));
}

.language__box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language__box i {
    color: hsl(var(--white));
}

.language__box .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    padding: 0;
    color: hsl(var(--white));
    background-color: transparent;
    background-position: right 0rem center;
    border: none;
}

.language__box .form-select option {
    background-color: hsl(var(--black));
    color: hsl(var(--white));
}

.menu__open {
    font-size: 24px;
    color: hsl(var(--white));
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
    display: none;
}

.menu__open:hover {
    color: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .header__menu {
        display: none;
    }

    .header__right {
        display: none;
    }

    .menu__open {
        display: block;
    }
}

.language__item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
}

.language__item img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.language__item p {
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}

.language__item:hover p {
    color: hsl(var(--white));
}

.dropdown-toggle .language__item p {
    font-size: 16px;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
    .dropdown-toggle .language__item p {
        font-size: 14px;
    }
}

.dropdown-toggle .language__item:hover p {
    color: hsl(var(--heading-color));
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.dropdown-toggle .language__item {
    display: inline-flex;
}

.header__right .dropdown-toggle .language__item p {
    color: hsl(var(--white));
}

.header__right .dropdown-toggle::after {
    border-top: .3em solid hsl(var(--white));
}

.dropdown-toggle::after {
    vertical-align: 5px;
}

/*====================== Header css end here ====================*/


/*====================== Hero css end here ====================*/
.hero__content>span {
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--heading-color));
    background-color: hsl(var(--heading-color) / 0.1);
    padding: 4px 12px;
    border: 1px solid hsl(var(--heading-color) / 0.1);
    border-radius: 6px;
    margin-bottom: 16px;
    display: inline-block;
}

.hero__content h1 span {
    color: hsl(var(--base));
}

.hero__content p {
    font-size: 18px;
}

.hero__btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero__content {
    margin-bottom: 32px;
}

.hero__info ul {
    display: flex;
    align-items: flex-start;
    gap: 16px 32px;
    flex-wrap: wrap;
}

.hero__info ul li i {
    color: hsl(var(--success));
}

.hero__info ul li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__img img {
    width: 460px;
}

.hero__img {
    text-align: end;
}

.hero__area {
    padding-block: 140px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero__partner {
    margin-bottom: 32px;
}

.hero__partner h4 {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--body-font);
    color: hsl(var(--body-font));
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero__partner__main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.hero__partner__main img {
    max-width: 100px;
    opacity: 0.4;
    transition: 0.3s;
}

.hero__partner__main img:hover {
    opacity: 1;
}

.hero__partner__main p {
    font-size: 14px;
}

@media screen and (max-width: 1399px) {
    .hero__area {
        padding-block: 100px;
    }

    .hero__content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .hero__content>span {
        font-size: 14px;
    }

    .hero__partner {
        margin-bottom: 16px;
    }

    .hero__btn {
        margin-bottom: 24px;
    }

    .hero__partner__main img {
        max-width: 80px;
    }

    .hero__content p {
        font-size: 14px;
    }
}

/*====================== Hero css end here ====================*/

@keyframes slideUp {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0% 1000%;
    }
}

/************ animate style ************/
.top_image_bounce {
    -webkit-animation: top-image-bounce 3s infinite ease-in-out;
    animation: top-image-bounce 3s infinite ease-in-out;
}

.top_image_bounce_2 {
    -webkit-animation: top-image-bounce-2 6s infinite ease-in-out;
    animation: top-image-bounce-2 6s infinite ease-in-out;
}

.left_image_bounce {
    -webkit-animation: left-image-bounce 3s infinite ease-in-out;
    animation: left-image-bounce 3s infinite ease-in-out;
}

.right_image_bounce {
    -webkit-animation: right-image-bounce 3s infinite ease-in-out;
    animation: right-image-bounce 3s infinite ease-in-out;
}

.spin_image {
    -webkit-animation: spin 3s infinite ease-in-out;
    animation: spin 3s infinite ease-in-out;
}

@-webkit-keyframes top-image-bounce {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes top-image-bounce {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes top-image-bounce-2 {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }

    100% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}

@keyframes top-image-bounce-2 {
    0% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }

    100% {
        -webkit-transform: translateY(54x);
        transform: translateY(-4px);
    }
}

@-webkit-keyframes left-image-bounce {
    0% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
}

@keyframes left-image-bounce {
    0% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
    }
}

@-webkit-keyframes ripple-white3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 100px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 100px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple-white3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 100px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 100px rgba(255, 255, 255, 0);
    }
}

.feature-section {
    position: relative;
}

.feature-section .circle1 {
    position: absolute;
    top: 70%;
    right: 10%;
    height: 200px;
    width: 200px;
    background-color: rgb(206, 238, 210);
    filter: blur(80px);
    -webkit-filter: blur(80px);
    border-radius: 50%;
}

.feature-section .circle2 {
    position: absolute;
    height: 150px;
    width: 150px;
    background-color: rgb(181, 226, 226);
    filter: blur(80px);
    -webkit-filter: blur(80px);
    border-radius: 50%;
}

.feature-section .swiper {
    width: 100%;
    height: 100%;
}

.feature-section .price {
    display: flex;
    justify-content: space-between;
}

.feature-section .price .ratings-box {
    color: hsl(var(--base) / 0.5);
}

.popular-section {
    position: relative;
}

.popular-section .circle1 {
    position: absolute;
    top: 70%;
    right: 10%;
    height: 200px;
    width: 200px;
    background-color: rgb(206, 238, 210);
    filter: blur(80px);
    -webkit-filter: blur(80px);
    border-radius: 50%;
}

.popular-section .circle2 {
    position: absolute;
    height: 150px;
    width: 150px;
    background-color: rgb(181, 226, 226);
    filter: blur(80px);
    -webkit-filter: blur(80px);
    border-radius: 50%;
}

.nav-tabs-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-tabs-box .coustome-tabs {
    border: none;
}

.nav-tabs-box .coustome-tabs li button {
    margin-right: 20px;
}

.nav-tabs-box .coustome-tabs li .nav-link {
    position: relative;
    transition: background 400ms;
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base)) !important;
    padding: 4px 12px;
    font-size: 18px;
    outline: 0;
    border-radius: 0px;
    cursor: pointer;
}

.nav-tabs-box .coustome-tabs li .nav-link:hover {
    background-color: hsl(var(--base) / 0.2);
}

.nav-tabs-box .active {
    background-color: hsl(var(--base) / 0.8) !important;
    color: hsl(var(--white)) !important;
}

.new-product-card_wraper .product-container {
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid hsl(var(--border-color) / 0.8);
    border-radius: 12px;
    background-color: hsl(var(--white));
    transition: 0.3s;
}

.new-product-card_wraper .product-container:hover {
    border-color: hsl(var(--base) / 0.5);
}

.new-product-card_wraper .product-container .thumb {
    width: 140px;
    height: 140px;
    flex: 0 0 auto;
}

.new-product-card_wraper .product-container .thumb a {
    display: flex;
    width: 100%;
    height: 100%;
}

.new-product-card_wraper .product-container .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-product-card_wraper .product-container .product-card-body {
    padding: 16px;
    width: 100%;
}

.new-product-card_wraper .product-container .product-card-body .card-text_content h6 {
    font-family: var(--body-font);
    margin-bottom: 8px;
}

.rating-display-group i {
    color: hsl(var(--warning));
    font-size: 14px;
}

.new-product-card_wraper .product-container .product-card-body .card-text_content .ratings-box {
    height: 20px;
    color: #faca51;
    font-size: 10px;
}

.new-product-card_wraper .product-container .product-card-body .product-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 20px;
}

.new-product-card_wraper .product-container .product-card-body .product-meta p {
    font-size: 18px;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.new-product-card_wraper .product-container .product-card-body .product-meta p .text-decoration-line-through {
    text-decoration: line-through !important;
    color: hsl(var(--danger));
    font-size: 14px;
}

.new-product-card_wraper .product-container .product-card-body .product-meta a {
    background-color: hsl(var(--base));
    color: hsl(var(--dark));
    padding: 0px 8px;
    color: hsl(var(--white));
    line-height: 20px;
}

@media (max-width: 1399px) {
    .new-product-card_wraper .product-container .product-card-body .product-meta a {
        font-size: 12px !important;
    }
}

@media (max-width: 1024px) {
    .product-card-body {
        padding: 8px 36px !important;
    }
}

@media (max-width: 992px) {
    .product-card-body {
        padding: 8px 8px !important;
    }
}

@media (max-width: 575px) {
    .product-card-body {
        padding: 3px 80px !important;
    }
}

@media (max-width: 415px) {
    .product-card-body {
        padding: 8px 16px !important;
    }
}


.faq__thumb {
    max-width: 96%;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .faq__thumb {
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .faq__thumb {
        max-width: 60%;
        margin-inline: auto;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .faq__thumb {
        max-width: 72%;
    }
}

@media screen and (max-width: 575px) {
    .faq__thumb {
        max-width: 100%;
    }
}

.faq__thumb img {
    width: 100%;
    border-radius: 16px;
}

@media screen and (max-width: 1199px) {
    .faq__thumb img {
        border-radius: 12px;
    }
}

.faq__support {
    border: 1px solid hsl(var(--white));
    background-color: hsl(var(--white)/0.8);
    backdrop-filter: blur(24px);
    padding: 24px;
    border-radius: 16px;
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .faq__support {
        border-radius: 12px;
    }
}

.faq__support a {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media screen and (max-width: 1199px) {
    .faq__support a {
        margin-top: 16px;
    }
}

.faq__support a .la-arrow-right {
    font-size: 18px;
    transform: rotate(-45deg);
    transition: 0.3s;
}

.faq__support a:hover {
    letter-spacing: 1px;
}

.faq__support a:hover .la-arrow-right {
    transform: rotate(0);
}

.faq__content h3 {
    font-size: 24px;
}

@media screen and (max-width: 1199px) {
    .faq__content h3 {
        font-size: 20px;
    }
}

.faq__content p {
    max-width: 340px;
}

.testimonial-section .testimonial-card-wraper {
    padding-top: 100px !important;
}

.testimonial-section .testimonial-card-wraper .testimonial-card_body {
    height: 100%;
    width: 100%;
    background-color: hsl(var(--base-component));
    border-radius: 8px;
    border: 1px solid hsl(var(--base));
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.testimonial-section .testimonial-card-wraper .testimonial-card_body .testimonial-img {
    position: absolute;
    display: flex;
    justify-content: center;
    top: -100px;
    height: 160px;
    width: 160px;
    height: 100%;
    width: 100%;
}

.testimonial-section .testimonial-card-wraper .testimonial-card_body .testimonial-img img {
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    height: 160px;
    width: 160px;
    border: 3px solid hsl(var(--base));
    object-fit: cover;
}

.testimonial-section .testimonial-card-wraper .testimonial-card_body .testimonial-profile_info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 84px;
}

.testimonial-section .testimonial-card-wraper .testimonial-card_body .testimonial-profile_info h6 {
    margin-bottom: 12px;
    font-size: 23px;
}

.testimonial-section .testimonial-card-wraper .testimonial-card_body .testimonial-profile_info p {
    font-weight: 600;
    color: hsl(var(--base));
}

.testimonial-section .testimonial-card-wraper .testimonial-card_body .testimonial-content {
    padding: 30px;
    padding-top: 20px;
    text-align: center;
}

.swiper-pagination {
    position: unset;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: hsl(var(--body-color) / 0.3);
    opacity: 1;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: hsl(var(--base));
    width: 20px;
}

.price-cardBody {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 1px;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-cardBody:hover::before {
    transform: scale(3);
}

.price-cardBody::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: hsl(var(--base));
    height: 48px;
    width: 48px;
    border-radius: 32px;
    transform: scale(1.5);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
    z-index: -99 !important;
}

.price-cardBody .price-card-head {
    display: flex;
    flex-direction: column;
    justify-content: left;
    z-index: 1;
}

.price-cardBody .price-card-head p {
    font-size: 28px;
    font-weight: 600;
}

.price-cardBody .price-card-head h2 {
    color: hsl(var(--base));
}

.price-cardBody .price-card-head h2 sup {
    font-size: 20px;
    color: #bdbdbd;
    font-weight: 400;
}

.price-cardBody ul li {
    font-size: 18px;
    margin-bottom: 8px;
}

.price-cardBody ul li i {
    margin-right: 4px;
}

.price-cardBody .card-circle {
    position: absolute;
    height: 200px;
    width: 200px;
    top: 80%;
    left: 45%;
    background-color: rgb(243, 230, 248);
    filter: blur(40px);
    -webkit-filter: blur(40px);
    border-radius: 50%;
}

.price-cardBody .card-circle1 {
    position: absolute;
    height: 200px;
    width: 200px;
    top: -20%;
    left: -20%;
    background-color: #fdffea;
    filter: blur(40px);
    -webkit-filter: blur(40px);
    border-radius: 50%;
}

.news-section .nws-card_wraper .nws-card_body {
    background-color: hsl(var(--white));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid hsl(var(--border-color) / 0.8);
    transition: 0.5s;
}

.news-section .nws-card_wraper .nws-card_body:hover {
    border-color: hsl(var(--base) / 0.5);
}

.news-section .nws-card_wraper .nws-card_body .card-img a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.news-section .nws-card_wraper .nws-card_body .card-img a img {
    width: 100%;
    transition: 0.5s;
}

.news-section .nws-card_wraper .nws-card_body:hover .card-img a img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.news-section .nws-card_wraper .nws-card_body .card-img span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-section .nws-card_wraper .nws-card_body .card-img span i {
    margin-top: -1px;
}

.news-section .nws-card_wraper .nws-card_body .card-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card-item {
    padding: 20px;
}

.nws-title h4 {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.nws-title h4 a {
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nws-title {
    margin-bottom: 16px;
}

.blog-meta-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-bottom: 16px;
}

.blog-meta-chips a {
    background-color: hsl(var(--info) / 0.2);
    color: hsl(var(--heading-color) / 0.8);
    padding: 2px 10px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 500;
}

.blog-meta-chips a:nth-child(2) {
    background-color: hsl(var(--warning) / 0.2);
}

.blog-meta-chips a:nth-child(3) {
    background-color: hsl(var(--danger) / 0.2);
}

.blog-meta-chips a:nth-child(4) {
    background-color: hsl(var(--success) / 0.2);
}

.blog-meta-chips a:nth-child(5) {
    background-color: hsl(var(--base) / 0.2);
}

.blog__btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(var(--body-color));
}

.blog__btn a i {
    transform: rotate(-45deg);
    transition: 0.3s;
}

.blog__btn a:hover {
    color: hsl(var(--base));
    letter-spacing: 1px;
}

.blog__btn a:hover i {
    transform: rotate(0);
}


/*====================== Footer Css Start ====================*/
.footer-area {
    padding-top: 80px;
    padding-bottom: 32px;
}

.bottom__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
    margin-top: 60px;
    border-top: 1px solid hsl(var(--border-color));
}

.bottom-footer-text p {
    font-size: 14px;
}

.footer-item__logo a img {
    width: 160px;
}

.footer-item__logo {
    margin-bottom: 14px;
}

.footer-item__desc {
    max-width: 430px;
}

.footer-item__title {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 18px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu__link {
    color: hsl(var(--body-color));
    font-size: 16px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.footer-menu__link::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 6px;
    aspect-ratio: 1;
    background-color: hsl(var(--border-color));
    border-radius: 50%;
    transition: 0.3s;
}

.footer-menu__link:hover {
    color: hsl(var(--base));
}

.footer-menu__link:hover::after {
    background-color: hsl(var(--base));
}

.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__contact ul li i {
    margin-top: 5px;
    color: hsl(var(--base));
}

/*====================== Footer Css End ====================*/


/*====================== Newsletter Css Start ====================*/
.newsletter__area {
    background-color: hsl(var(--heading-color));
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-image: linear-gradient(hsl(var(--white) / 0.03) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--white) / 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    padding-block: 120px;
}

.newsletter__area::after,
.newsletter__area::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 300px;
    aspect-ratio: 1;
    content: "";
    background-color: hsl(var(--success));
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.newsletter__area::after {
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    background-color: hsl(var(--info));
    opacity: 0.3;
}

.newsletter__content h2 {
    color: hsl(var(--white));
    margin-bottom: 10px;
}

.newsletter__content p {
    color: hsl(var(--white) / 0.7);
}

.newsletter__content {
    text-align: center;
    max-width: 650px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.newsletter__form {
    max-width: 650px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.newsletter__form .btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 18px;
    height: calc(100% - 12px);
    font-size: 14px;
    text-transform: uppercase;
}

.newsletter__form input {
    background-color: hsl(var(--white));
    padding: 20px;
    padding-right: 130px;
}

.newsletter__form input:focus {
    background-color: hsl(var(--white));
}

/*====================== Newsletter Css End ====================*/


/*====================== Breadcumb Css Start ====================*/

.breadcumb {
    padding: 160px 0 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 992px) {
    .breadcumb {
        padding: 80px 0 20px;
    }
}

.breadcumb::after {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: "";
    background-image: linear-gradient(to top, hsl(var(--heading-color)), transparent);
    width: 100%;
    height: 100%;
}

.breadcumb__wrapper {
    text-align: center;
}

.breadcumb__title {
    color: hsl(var(--white));
    font-weight: 700;
}

.breadcumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.breadcumb__item {
    color: hsl(var(--white));
    font-size: 16px;
}

@media screen and (max-width: 575px) {
    .breadcumb__item {
        font-size: 14px;
    }
}

.breadcumb__item .fa-arrow-right {
    transform: rotate(-45deg);
}

.breadcumb__item-text {
    color: hsl(var(--white));
}

.breadcumb__link {
    color: hsl(var(--white));
}

.breadcumb__link:hover {
    color: hsl(var(--base));
}

.about-section .elementor-widget-container {
    position: relative;
}

.about-section .elementor-widget-container .about-thumb {
    position: absolute;
}

.about-section .elementor-widget-container .img-1 {
    position: absolute;
    top: -600px;
}

.about-section .elementor-widget-container .img-2 {
    position: absolute;
    bottom: 0px;
}

.about-section .elementor-widget-container .img-3 {
    position: absolute;
    top: -400px;
    left: 60%;
}

.about-section .banner__content .abouticon-box {
    width: 80px;
    height: 80px;
    position: relative;
    background: hsl(var(--base) / 0.5);
    border-radius: 15px 150px 150px 150px;
}

.about-section .banner__content .abouticon-box span {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section .banner__content .abouticon-box span i {
    font-size: 40px;
}

.map-section .contact-infowraper .info-box {
    padding: 16px 0px 16px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.map-section .contact-infowraper .info-box .info-icon {
    padding: 20px;
}

.map-section .contact-infowraper .info-box .info-icon i {
    font-size: 42px;
}

.map-section .map-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
}

.map-section .map-box iframe {
    padding: 0;
    width: 100%;
    height: 50vh;
}

.counter-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.counter-section .counter-box {
    background-color: hsl(var(--white));
    padding: 24px;
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.counter-section .counter-box .category-bg {
    max-width: 140px;
}

.counter-icon {
    width: 60px;
    aspect-ratio: 1;
    background-color: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid hsl(var(--base) / 0.1);
    margin-inline: auto;
    margin-bottom: 20px;
    font-size: 26px;
}

.counter-content h3 {
    font-family: var(--body-font);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-section .form-control {
    border-radius: 0px !important;
}

.contact-section :focus {
    border-color: hsl(var(--base));
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px hsl(var(--base) / 0.5);
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 42px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.scroll-top svg {
    color: hsl(var(--base));
    border-radius: 50%;
}

.scroll-top svg path {
    fill: none;
}

.scroll-top i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: hsl(var(--base));
}

.scroll-top .progress-circle path {
    stroke: hsl(var(--base));
    stroke-width: 6px;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 430px) {
    .scroll-top {
        right: 20px;
        bottom: 70px;
    }
}

/*======== Sidebar Menu Start =======*/
.sidebar-menu-list__link {
    color: hsl(var(--black));
}

.sidebar-menu-list__item.active .sidebar-menu-list__link {
    color: hsl(var(--base));
}

.sidebar-menu {
    border: 1px solid hsl(var(--border-color) / 0.8);
    border-radius: 12px;
    background-color: hsl(var(--white));
    position: sticky;
    top: 100px;
}

.sidebar-menu.show-sidebar {
    transform: translateX(0);
    background-color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
    .sidebar-menu {
        position: fixed;
        left: 0;
        top: 0;
        min-width: 270px;
        padding-top: 60px;
        transform: translateX(-100%);
        z-index: 9992;
        border-radius: 0;
        height: 100%;
        overflow-y: auto;
        transition: 0.3s;
    }
}

.sidebar-menu-list {
    padding-bottom: 24px;
}

.sidebar-menu__close {
    position: absolute;
    top: 12px;
    right: 12px;
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 18px;
    transition: 0.2s linear;
    cursor: pointer;
    display: none;
    z-index: 9;
    border-radius: 3px;
}

@media screen and (max-width: 1199px) {
    .sidebar-menu__close {
        display: block;
    }
}

.sidebar-menu__close:hover,
.sidebar-menu__close:focus {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
}

.sidebar-menu-list__item.has-dropdown.active>a {
    color: hsl(var(--base));
}

.sidebar-menu-list__item.has-dropdown>a:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    text-align: center;
    background: 0 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    transition: 0.1s linear;
}

.sidebar-menu-list__item.has-dropdown.active>a:after {
    transform: translateY(-50%) rotate(90deg);
    color: hsl(var(--base));
}

.sidebar-menu-list__link {
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding: 12px 20px;
    border-bottom: 1px solid hsl(var(--border-color) / 0.3);
    width: 100%;
    color: hsl(var(--white));
}

li:last-child .sidebar-menu-list__link {
    border-bottom: none;
}

.sidebar-menu-list__link .icon {
    font-size: 16px;
    width: 34px;
    aspect-ratio: 1;
    background-color: hsl(var(--base) / 0.06);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--base));
}

li:nth-child(3) .sidebar-menu-list__link .icon {
    background-color: hsl(var(--info) / 0.06);
    color: hsl(var(--info));
}

li:nth-child(4) .sidebar-menu-list__link .icon {
    background-color: hsl(var(--success-d-200) / 0.06);
    color: hsl(var(--success-d-200));
}

li:nth-child(5) .sidebar-menu-list__link .icon {
    background-color: hsl(var(--warning) / 0.06);
    color: hsl(var(--warning));
}

li:nth-child(6) .sidebar-menu-list__link .icon {
    background-color: hsl(var(--danger) / 0.06);
    color: hsl(var(--danger));
}

li:nth-child(7) .sidebar-menu-list__link .icon {
    background-color: hsl(var(--primary) / 0.06);
    color: hsl(var(--primary));
}

li:nth-child(8) .sidebar-menu-list__link .icon {
    background-color: hsl(var(--violet) / 0.06);
    color: hsl(var(--violet));
}

li:nth-child(9) .sidebar-menu-list__link .icon {
    background-color: hsl(var(--success-d-200) / 0.06);
    color: hsl(var(--success-d-200));
}

/*=============== Sidebar Submenu Start ===============*/
.sidebar-submenu {
    display: none;
    position: relative;
}

.sidebar-submenu::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 22px;
    left: 27px;
    border-left: 1px solid hsl(var(--border-color) / 0.6);
}

.sidebar-submenu.open-submenu {
    display: block;
}

.sidebar-submenu-list {
    padding: 5px 0;
}

.sidebar-submenu-list__item {
    position: relative;
}

.sidebar-submenu-list__item::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 27px;
    width: 16px;
    height: 1px;
    border-top: 1px solid hsl(var(--border-color) / 0.6);
}

.sidebar-submenu-list__item.active>a {
    color: hsl(var(--base));
}

.sidebar-submenu-list__link {
    padding: 8px 20px 4px 50px !important;
    display: block;
    color: hsl(var(--body-color));
    border-bottom: 0 !important;
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/*================== Dark Style Color ==================*/
/*===== Dark and light logo hide and show =====*/
.logo-wrapper .normal-logo {
    display: block;
}

.logo-wrapper .normal-logo.hidden {
    display: none;
}

.logo-wrapper .dark-logo {
    display: block;
}

.logo-wrapper .dark-logo.hidden {
    display: none;
}

.footer-item__logo .footer-logo-normal {
    display: block;
}

.footer-item__logo .footer-logo-normal.hidden {
    display: none;
}

.footer-item__logo .footer-logo-dark {
    display: block;
}

.footer-item__logo .footer-logo-dark.hidden {
    display: none;
}

.shop-section .filter-form .sidebar_body .sidebar-header .aside-search-box {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.shop-section .filter-form .sidebar_body .sidebar-header .aside-search-box .icon {
    position: absolute;
    top: 50%;
    left: 8px;
    font-size: 18px;
    transform: translateY(-50%);
    color: hsl(var(--dark));
}

.shop-section .filter-form .sidebar_body .sidebar-header .aside-search-box .form--input__field {
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 14px 15px;
    background-color: hsl(var(--body-color) / 0.1);
    border: 1px solid hsl(var(--base)/.4);
    color: hsl(var(--dark)) !important;
    line-height: 1;
}

.shop-section .filter-form .sidebar_body .sidebar-header .aside-search-box .search-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    color: hsl(var(--dark));
    border: 1px solid hsl(var(--dark) / 0.2) !important;
    border-radius: 0px;
    padding: 8px 32px;
    border: 0px !important;
    border-left: 1px solid hsl(var(--dark) / 0.2) !important;
}

.shop-section .filter-form .sidebar_body .sidebar-categories {
    max-height: 336px;
    overflow-y: scroll;
}

.shop-section .filter-form .sidebar_body .sidebar-categories .form-check-input {
    border: 1px solid hsl(var(--base) / 0.2);
}

.shop-section .filter-form .sidebar_body .sidebar-categories input[type="checkbox"]:checked {
    background-color: hsl(var(--base));
}

.shop-section .filter-form .sidebar_body .sidebar-categories :focus {
    border-color: hsl(var(--base));
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px hsl(var(--base) / 0.5);
}

.shop-section .filter-form .sidebar_body .sidebar-categories .form-check {
    padding: 4px 24px;
}

.shop-section .filter-form .sidebar_body ::-webkit-scrollbar {
    width: 6px;
}

.shop-section .filter-form.sidebar_body ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px hsl(var(--base) / 0.2);
}

.shop-section .filter-form .sidebar_body ::-webkit-scrollbar-thumb {
    background: hsl(var(--base) / 0.5);
}

.shop-section .filter-form .sidebar_body ::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--base));
}

.shop-section .filter-form .sidebar_body .range-slider-box .price-input {
    display: flex;
}

.shop-section .filter-form .sidebar_body .range-slider-box .price-input .input-group .input-group-text {
    border-radius: 0px !important;
    background-color: hsl(var(--base) / 0.2);
}

.shop-section .filter-form .sidebar_body .range-slider-box .price-input .input-group .input-min {
    border-radius: 0px !important;
}

.shop-section .filter-form .sidebar_body .range-slider-box .price-input .input-group .input-max {
    border-radius: 0px !important;
}

.shop-section .filter-form .sidebar_body .range-slider-box .sliderr {
    height: 6px;
    background-color: hsl(var(--base) / 0.2);
    position: relative;
}

.shop-section .filter-form .sidebar_body .range-slider-box .sliderr .progresss {
    height: 100%;
    position: absolute;
    left: 5%;
    right: 35%;
    background-color: hsl(var(--base));
}

.shop-section .filter-form .sidebar_body .range-slider-box .range-input {
    position: relative;
}

.shop-section .filter-form .sidebar_body .range-slider-box .range-input .input {
    position: absolute !important;
    top: -5px !important;
    height: 4px !important;
    width: 100% !important;
    background: none !important;
    -webkit-appearance: none !important;
    pointer-events: none !important;
    border-radius: 0px !important;
}

.shop-section .filter-form .sidebar_body .range-slider-box .range-input .input[type="range"]::-webkit-slider-thumb {
    height: 24px !important;
    width: 24px !important;
    border-radius: 50% !important;
    pointer-events: auto !important;
    -webkit-appearance: none !important;
    background: hsl(var(--base)) !important;
}

.shop-section .filter-form .sidebar_body .range-slider-box .range-input .input[type="range"]::-webkit-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    pointer-events: auto;
    border: none;
    -webkit-appearance: none;
    background: hsl(var(--base));
}

.shop-section .filter-form .sidebar_body .sidebar-bottom {
    display: flex;
    justify-content: left;
}

/*=================== Blog Details =========*/
.blog-details {
    background: hsl(var(--white));
    padding: 24px;
    border-radius: 10px;
    border: 1px solid hsl(var(--border-color) / 0.8);
}

.blog-details .blog-item__content {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-item__content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-item__content span i {
    color: hsl(var(--base));
}

.blog__badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.blog__badge a {
    background-color: hsl(var(--base) / 0.08);
    color: hsl(var(--base));
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.blog__badge a:nth-child(2) {
    background-color: hsl(var(--info) / 0.08);
    color: hsl(var(--info));
}

.blog__badge a:nth-child(3) {
    background-color: hsl(var(--success-d-100) / 0.08);
    color: hsl(var(--success-d-100));
}

.blog__badge a:nth-child(4) {
    background-color: hsl(var(--warning) / 0.08);
    color: hsl(var(--warning-d-100));
}

.blog__badge a:nth-child(5) {
    background-color: hsl(var(--primary) / 0.08);
    color: hsl(var(--primary));
}

.blog-details .text-list.inline .text-list__item {
    padding: 0px 12px;
}

.blog-details .blog-item {
    box-shadow: none;
}

.blog-details .blog-item__thumb img {
    width: 100%;
    border-radius: 10px;
}

.blog-details__content {
    padding-top: 20px;
}

.blog-details__title {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
}

.blog-details .blog-bottom-wrap {
    border-top: 0;
    padding: 20px 25px 0px;
}

blockquote {
    background-color: hsl(var(--base) / 0.05);
    padding: 60px 20px 20px;
    border-radius: 15px;
    border-left: 3px solid hsl(var(--base));
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    margin-top: 30px;
}

blockquote::before {
    content: "\f10e";
    position: absolute;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 141px;
    top: -95px;
    right: 50%;
    z-index: -1;
    opacity: 0.4;
    transform: translateX(39%);
}

.social-list.blog-details a.social-list__link {
    color: hsl(var(--dark)) !important;
}

/*====================== Product Section ====================*/
.ecommerce-product {
    border-radius: 20px;
    border: 1px solid hsl(var(--base) / 0.3);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.ecommerce-product:hover {
    box-shadow: 0px 4px 10px rgba(1, 15, 28, 0.14);
    border: 1px solid hsl(var(--base) / 0.6);
    transform: translateY(-3px);
}

.ecommerce-product:hover .ecommerce-product__thumb {
    border-radius: 10px;
}

.ecommerce-product:hover .ecommerce-product__thumb img {
    transform: scale(1.07);
}

.ecommerce-product:hover .product-action-wrap {
    right: 15px;
    opacity: 1;
    visibility: visible;
}

.ecommerce-product__thumb {
    border-radius: 10px;
    position: relative;
}

.ecommerce-product__thumb a {
    display: block;
    z-index: 99;
}

.ecommerce-product__thumb img {
    border-radius: 10px 10px 0 0;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    width: 100%;
}

.ecommerce-product__thumb .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0px 10px;
    border-radius: 3px;
    transition: all ease-in-out 0.3s;
}

.ecommerce-product__thumb .product-badge p {
    color: hsl(var(--white));
    font-size: 14px;
}

.ecommerce-product__thumb .product-action-wrap {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.14);
    transition: all ease-in-out 0.3s;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
}

.ecommerce-product__thumb .product-action-wrap .cart-btn {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid hsl(var(--base) / 0.5);
    border-bottom: 0;
    transition: all ease-in-out 0.3s;
}

.ecommerce-product__thumb .product-action-wrap .cart-btn i {
    transition: all ease-in-out 0.3s;
}

.ecommerce-product__thumb .product-action-wrap .cart-btn:last-child {
    border-bottom: 1px solid hsl(var(--base) / 0.5);
}

.ecommerce-product__thumb .product-action-wrap .cart-btn:hover {
    background-color: hsl(var(--base));
}

.ecommerce-product__thumb .product-action-wrap .cart-btn:hover i {
    color: hsl(var(--white));
}

.ecommerce-product__thumb .product-action-wrap .cart-btn button {
    color: hsl(var(--black));
}

.ecommerce-product__thumb .product-action-wrap .cart-btn .tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    font-weight: 500;
    font-size: 12px;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    display: inline-block;
    width: max-content;
    line-height: 1;
    padding: 5px 11px;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease,
        transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
        -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.ecommerce-product__thumb .product-action-wrap .cart-btn .tooltip::before {
    position: absolute;
    content: "";
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 8px solid hsl(var(--base));
    border-bottom: 8px solid transparent;
}

.ecommerce-product__thumb .product-action-wrap .cart-btn:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-8px) translateY(-50%);
}

.ecommerce-product__content {
    padding: 30px 0 30px 30px;
}

.ecommerce-product__content .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: hsl(var(--black) / 0.8);
}

.ecommerce-product__content .review-wrap p.review-count {
    font-size: 14px;
}

.ecommerce-product__content .price-wrap .product-price {
    font-weight: 500;
    display: inline-block;
    color: hsl(var(--base));
}

.ecommerce-product__content .price-wrap .product-price.old {
    text-decoration: line-through;
    margin-right: 5px;
}

.ecommerce-product__price-title {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid hsl(var(--base) / 0.2);
    padding-bottom: 20px;
    margin-bottom: 18px;
}

.ecommerce-product__price-title span {
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.ecommerce-product__price-title span i {
    color: hsl(var(--base));
    font-size: 16px;
    font-weight: 800;
}

.ecommerce-product__price-title span:last-child {
    font-size: 20px;
}

.ecommerce-product__rating-view {
    display: flex;
    justify-content: space-between;
}

.ecommerce-product__rating-view .social-list__item {
    margin-right: 5px;
    font-size: 14px;
    color: hsl(var(--base));
}

.ecommerce-product__rating-view a {
    font-size: 14px;
    font-weight: 600;
    border: 1px solid hsl(var(--base) / 0.5);
    padding: 3px 7px;
    border-radius: 15px;
}

.ecommerce-product__rating-view a:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.product-price.old {
    text-decoration: line-through;
    margin-right: 5px;
}

.product-deatils-meta {
    display: flex;
    justify-content: space-between;
}

.product-deatils-meta .actn-btn_group {
    display: flex;
    gap: 16px;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-list li {
    font-size: 20px;
    list-style: none !important;
}

.about-bottom ul li {
    display: flex;
    margin-bottom: 5px;
    font-size: 14px;
    gap: 8px;
}

.about-bottom ul li p {
    font-size: 14px;
}

.about-bottom ul li p span {
    color: hsl(var(--base));
}

.tab-review-wrap .comment-list .user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-review-wrap .comment-list__thumb {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    flex: 0 0 auto;
    overflow: hidden;
}

.tab-review-wrap .comment-list__thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tab-review-wrap .comment-list__content {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-left: 10px;
}

.tab-review-wrap .comment-list__content .rating-list {
    color: #faca51;
}

/*====================== Products Details ====================*/
.product-info .product-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.product-discount-badge {
    position: absolute;
    background: hsl(var(--base));
    padding: 1px 6px;
    font-size: 14px;
    left: 12px;
    top: 12px;
    border-radius: 3px;
    color: hsl(var(--white));
    z-index: 2;
}

.product-title a {
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info .product-title h3 {
    margin-bottom: 0;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 24px;
}

.product-info .ratings-box {
    margin-bottom: 4px;
}

.product-info .ratings-box i {
    color: hsl(var(--warning));
}

.product-info .rating-display-group i {
    font-size: 16px;
}

.product-info .add-to-cart {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 24px 24px;
}

.product-info .add-to-cart h5 {
    margin: 0;
}

.product-info .key-feature li h5 {
    font-weight: 200 !important;
}

.product-info .border-bottom {
    border-bottom: 1px solid hsl(var(--base) / 0.2) !important;
}

.product-info .border-bottom h5 {
    font-weight: 400;
}

.product-info .cate-title {
    background: hsl(var(--base)/.1);
    color: hsl(var(--base));
    display: inline-block;
    padding: 4px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.tag-rating-sales-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 10px;
}

.product-info .rating-display-group {
    margin-bottom: 0;
}

.about-bottom ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: hsl(var(--base));
}

.about-bottom ul li p {
    font-size: 16px;
}

.product-detials {
    border: 1px solid hsl(var(--base) / 0.1);
    border-radius: 20px;
    margin-right: 30px;
}

@media screen and (max-width: 991px) {
    .product-detials {
        margin-right: 0px;
    }
}

.product-detials .product-price {
    font-size: 20px;
}

.product-detials .product {
    box-shadow: none;
    border: 0;
    padding-bottom: 0;
}

.product-detials .product:hover {
    border: none;
    transform: none;
}

.product-detials .product__thumb img {
    border-radius: 10px;
    width: 100%;
}

.product-detials .product.product__price-title {
    padding-bottom: 25px;
    margin-bottom: 27px;
}

.product-details-area button.btn-close {
    position: absolute;
    right: 30px;
}

.product-details-area button.btn-close:focus {
    box-shadow: none;
}

.product-details-area .modal-content {
    padding: 25px;
}

.product-details-area .product-info-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-details-area .product-info-right .box_content {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 25px;
    background-color: hsl(var(--white) / 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 15px;
}

.box_content .txt {
    margin-bottom: 15px;
}

.box_content .txt:last-child {
    margin-bottom: 0px;
}

.box_content .txt h6 {
    margin-bottom: 5px;
}


.product-details-area .product-info-right .box_content1 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 28px 28px;
    height: 180px;
    background-color: hsl(var(--base) / 0.02);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.product-details-area .product-info-right .box_content1 .txt {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.product-details-area .product-info-right .box_content1 .txt h6 {
    font-size: 16px;
}

.product-details-area .product-info-right .box_content2 .txt h6 {
    font-size: 16px;
}

.product-details-area .product-info-right .box_content2 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 28px 28px;
    background-color: hsl(var(--base) / 0.02);
}

.product-details-area .product-info-right .box_content2 .txt {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.product-details-area .product-info-right .box_content3 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 28px 28px;
    background-color: hsl(var(--base) / 0.02);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.product-details-area .product-info-right .box_content3 .txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-details-left {
    border: 1px solid hsl(var(--border-color) / 0.8);
    border-radius: 10px;
    background-color: hsl(var(--white));
    padding: 24px;
    margin-bottom: 32px;
}

.product-details-left__nav .nav-tabs {
    flex-direction: row;
    border: 0;
}

.product-details-left__nav .nav-tabs .nav-link {
    border: 0;
    border-radius: 10px;
    padding: 7px;
}

.product-details-left__nav .nav-tabs .nav-link img {
    width: 100px;
}

.product-details-left__thumb {
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    height: 370px;
    width: 100%";

}



.product-details-left__thumb i {
    color: hsl(var(--white));
    height: 30px;
    width: 30px;
    line-height: 30px;
    transition: all 0.5s;
    text-align: center;
    border-radius: 3px;
}

.product-details-left .screen-img {
    width: 100px !important;
    height: 100px !important;
}

.product-details-left__nav {
    display: flex;
    flex-direction: column;
}

.project-details {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.project-details a {
    margin-right: 10px;
}

.project-details .quantity_box {
    width: 90px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    height: 60px;
    margin-right: 10px;
    margin-top: 0px;
}

.project-details .quantity_box input {
    width: 50px;
    border-radius: 0px;
    height: 38px;
    border: 1px solid hsl(var(--base) / 0.1);
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    padding-left: 22px;
    outline: none;
    font-size: 14px;
    font-weight: 700;
}

.project-details .quantity_box button {
    width: 29px;
    height: 38px;
    background-color: transparent;
    font-size: 8px;
    background-color: hsl(var(--base) / 0.05);
    border: none;
    border: 1px solid hsl(var(--base) / 0.1);
    border-top-right-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.project-details .quantity_box button i {
    color: hsl(var(--base));
}

.project-details .quantity_box button.sub {
    bottom: 9px;
    top: auto;
    border: 1px solid hsl(var(--base) / 0.1);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.product-details__content .review-wrap .stock {
    font-size: 14px;
    background: hsl(var(--base) / 0.2);
    padding: 0px 10px;
    border-radius: 4px;
}

.product-details__content .review-wrap p.review-count {
    font-size: 14px;
}

.product-details__content .title a {
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--white) / 0.8);
    margin: 0;
}

.product-details__content .desc {
    font-size: 14px;
}

.product-details__bottom ul li {
    display: flex;
    margin-bottom: 5px;
    font-size: 14px;
}

.product-details__bottom ul li i {
    color: hsl(var(--base));
    margin-right: 10px;
    margin-top: 8px;
}

.product-details__bottom ul li img {
    margin-left: 10px;
}

.product-details__bottom ul li p {
    font-size: 14px;
}

.product-details__bottom ul li span {
    font-weight: 700;
}

.product-details__bottom h5.social-share__title {
    font-size: 14px;
    font-weight: 700;
}

.product-details__bottom .social-list__link {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid hsl(var(--base) / 0.4);
    transition: 0.3s;
    cursor: pointer;
}

.product-details__bottom .social-list__link i {
    margin: 0;
}

.product-details__bottom .social-list__link:hover i {
    color: hsl(var(--black));
}

.product-details__bottom .payment li {
    display: flex;
    flex-wrap: wrap;
}

.product-details__content .product-price {
    font-size: 20px;
    font-weight: 500;
}

.echommerce-products {
    position: relative;
}

.echommerce-products .circle2 {
    position: absolute;
    bottom: 0;
    right: 0%;
    height: 400px;
    width: 400px;
    background-color: hsl(var(--base)/.2);
    filter: blur(80px);
    -webkit-filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
}

/*====================== Card ====================*/
.product-card__cupon input {
    height: 53px;
    width: 40%;
    margin-right: 13px;
    border-radius: 0;
}

@media screen and (max-width: 991px) {
    .product-card__cupon input {
        width: 30%;
    }
}

.product-card__update {
    display: flex;
    justify-content: end;
}

@media screen and (max-width: 770px) {
    .product-card__update {
        justify-content: start;
    }
}

.cart-total ul {
    border: 1px solid hsl(var(--base) / 0.1);
}

.cart-total ul li {
    list-style: none;
    font-size: 15px;
    color: #6f7172;
    padding: 10px 30px;
    border-bottom: 1px solid hsl(var(--base) / 0.1);
    font-weight: 400;
}

.cart-total ul li span {
    float: right;
}

.cart-total ul :last-child {
    border-bottom: 0;
}

/* ========    product-details-tab  ======*/
.product-details-tab ul li {
    font-weight: 400;
    margin-bottom: 5px;
    padding: 10px 15px;
}

.product-details-tab ul li:nth-child(even) {
    background: hsl(var(--base) / 0.08);
}

.product-details-tab ul li span {
    font-weight: 700;
    margin-right: 24px;
}

.tab-review-wrap .comment-list .comment-list__item .comment-list__content .time-rating-warper ul {
    display: flex;
}

.border-bottom {
    border-bottom: 1px solid hsl(var(--base) / 0.3) !important;
}

.product__preview {
    margin-bottom: 10px;
}

.product__preview img {
    width: 100%;
    border-radius: 10px;
}

.product__thumb img {
    width: 100%;
    border-radius: 6px;
}

.product__thumb .swiper-slide {
    filter: grayscale(100) brightness(0.8);
    opacity: 0.6;
    transition: 0.3s;
}

.product__thumb .swiper-slide.swiper-slide-thumb-active {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.product__gallery {
    position: relative;
    z-index: 1;
}

.live__preview {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 4;
}

.live__preview a {
    box-shadow: 0px 0px 0 1px hsl(var(--white) / 0.4);
}

.live__preview a:hover {
    box-shadow: 0px 0px 0px 1px hsl(var(--white)) !important;
    color: hsl(var(--white)) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 26px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 44px;
    color: hsl(var(--base));
    background-color: hsl(var(--white));
    border-radius: 4px;
}

@media screen and (max-width: 575px) {

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 26px;
        height: 35px;
        border-radius: 3px;
    }
    .live__preview {
        right: 10px;
        top: 10px;
    }

    .live__preview .btn--sm {
        padding: 6px 8px;
        font-size: 12px;
    }
}

.product-details-left__content:hover .info {
    opacity: 1 !important;
    transform: translateY(30px);
}

.product-details-left .info {
    position: absolute !important;
    top: 21%;
    left: 44%;
    z-index: 3;
    color: rgb(0, 0, 0);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s all;
}

.product-details-left .info a {
    color: hsl(var(--white));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-details-left .info a .live-watch {
    font-size: 60px;
}

.product-details-left .info a p {
    color: hsl(var(--white));
}

.coustome-tabs {
    border-color: hsl(var(--base));
}

.coustome-tabs li button {
    margin-right: 20px;
}

.coustome-tabs li .nav-link {
    color: hsl(var(--black));
    border-radius: 15px 5px 0 0;
}

.coustome-tabs li :hover {
    border-color: hsl(var(--base)) !important;
}

.coustome-tabs .active {
    background: transparent !important;
    color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) hsl(var(--base)) #fff !important;
}

.pdt-brdcrmb {
    padding: 10px 0px 10px 104px;
}

@media (max-width: 1025px) {
    .pdt-brdcrmb {
        padding: 10px 0px 10px 80px;
    }
}

@media (max-width: 769px) {
    .pdt-brdcrmb {
        padding: 10px 0px 10px 0px;
    }
}

@media (max-width: 769px) {
    .txt {
        gap: 20px;
        justify-content: flex-start !important;
    }

    .buy-btn {
        width: 100%;
        text-align: center;
        height: 40px;
        font-size: 20px;
    }

    .buy-btn a {
        line-height: 0 !important;
    }
}

.blog-sidebar-wrapper {
    position: sticky;
    top: 100px;
}

/*============ Sidebar search box =============*/
.search-box {
    position: relative;
}

.search-box__button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--base));
}

/*============ google-add-sidebar-1 =============*/
.google-add-sidebar-1 {
    height: 300px;
    overflow: hidden;
    max-width: 374px;
}

.google-add-sidebar-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*============ Auth box =============*/
.blog-sidebar__auth-thumb {
    height: 120px;
    width: 120px;
    margin: auto;
    margin-bottom: 20px;
}

.blog-sidebar__auth-thumb img {
    border-radius: 50%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-sidebar__auth-content .social-list {
    justify-content: center;
}

.blog-sidebar__auth-content h4 {
    margin-bottom: 10px;
}

.blog-sidebar__auth-content p {
    padding-bottom: 20px;
}

/* ======================  wyg Start  ======================*/
.wyg h1,
.wyg h2,
.wyg h3,
.wyg h4,
.wyg h5 {
    color: hsl(var(--heading-color));
    margin-bottom: 16px;
    font-family: var(--body-font);
}

.wyg p {
    margin-bottom: 20px;
}

.wyg ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    list-style: disc;
    padding-left: 32px;
}

@media screen and (max-width: 767px) {
    .wyg ul {
        padding-left: 20px;
    }
}

.wyg ul li {
    font-size: 16px;
    list-style: disc;
    color: hsl(var(--body-color));
}

.wyg ol {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    list-style: decimal;
    padding-left: 32px;
}

@media screen and (max-width: 767px) {
    .wyg ol {
        padding-left: 20px;
    }
}

.wyg ol li {
    font-size: 16px;
    list-style: decimal;
    color: hsl(var(--body-color));
}

/* ======================  wyg End  ======================*/

/*================== Sidebar Box & Title ===================*/
.blog-sidebar {
    background: hsl(var(--white));
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid hsl(var(--border-color) / 0.8);
}

.blog-sidebar:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 575px) {
    .blog-sidebar {
        padding: 20px 15px;
    }
}

.blog-sidebar span.border {
    display: block;
    margin-bottom: 32px;
    width: 100%;
    height: 4px;
    background: hsl(var(--base) / 0.1);
    border-radius: 30px;
}

.blog-sidebar .hr-line {
    height: 4px;
    width: 60px;
    margin-top: 10px;
    margin-left: 6px;
    border-radius: 30px;
    background-color: hsl(var(--base));
    display: inline-block;
}

.blog-sidebar__title {
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 20px;
    font-family: var(--body-font);
}

.blog-sidebar__sub-title {
    font-size: 19px;
    font-weight: 600;
}

.blog-details__share {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid hsl(var(--border-color) / 0.4);
    padding-top: 16px;
    margin-top: 16px;
}

.blog-details__share h5 {
    margin-bottom: 0;
    font-family: var(--body-font);
    font-size: 16px;
}

.social-list__item .social-list__link {
    color: hsl(var(--base));
    width: 38px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--base) / 0.06);
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
}

.social-list__item .social-list__link:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
}

.social-list {
    gap: 8px;
}

.category__single {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color) / 0.8);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 32px 16px;
    text-align: center;
    transition: 0.3s;
}

.category-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    user-select: none;
    pointer-events: none;
    max-width: 100px;
    width: 100%;
}

.category-img a {
    font-size: 38px;
    line-height: 1;
    color: hsl(var(--base));
}

.category-content h6 {
    margin-bottom: 0;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
}

.category-img {
    margin-bottom: 14px;
}

.category__single:hover {
    border-color: hsl(var(--base) / 0.6);
}

@media screen and (max-width: 1199px) {
    .category__single {
        padding: 32px 10px;
    }
}

/*========================= Category & Tags List Style ========================= */
.text-list {
    margin: 0;
    /*====================== Tag Style ====================*/
}

.text-list.style-category .text-list__item {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 10px;
    transition: all 0.5s linear;
    border-radius: 15px;
}

.text-list.style-category .text-list__item:hover:before {
    opacity: 0.8;
}

.text-list.style-category .text-list__item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: hsl(var(--dark));
    opacity: 0.6;
    z-index: 1;
    transition: all 0.5s linear;
}

.text-list.style-category .text-list__item .thumb {
    border-radius: 6px;
}

.text-list.style-category .text-list__item .thumb img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.text-list.style-category .text-list__item a {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    font-size: 17px;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    padding: 0 20px;
    color: hsl(var(--white)) !important;
    justify-content: space-between;
}

.text-list.style-category .text-list__item a span {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-left: auto;
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.text-list.style-category .text-list__link {
    color: hsl(var(--dark)) !important;
}

.text-list.style-category .text-list__link:hover {
    color: hsl(var(--base));
}

.text-list.style-tag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -7px;
}

.text-list.style-tag .text-list__item {
    padding: 7px;
}

.text-list.style-tag .text-list__link {
    color: hsl(var(--dark));
    border: 1px solid hsl(var(--base) / 0.2);
    padding: 6px 20px;
    border-radius: 3px;
}

.text-list.style-tag .text-list__link.active {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.text-list.style-tag .text-list__link:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

/*======================== Latest blog========================*/
.latest-blog {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid hsl(var(--border-color) / 0.6);
}

.latest-blog:last-of-type {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0;
}

.latest-blog__thumb {
    flex: 0 0 auto;
}

@media screen and (max-width: 424px) {
    .latest-blog__thumb {
        width: 60px;
    }
}

.latest-blog__thumb a {
    display: block;
    width: 100%;
}

.latest-blog__thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.latest-blog:hover .latest-blog__thumb img {
    filter: grayscale(100) brightness(0.7);
}

.latest-blog__title {
    margin-bottom: 8px;
    font-family: var(--body-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-blog__title a {
    font-weight: 500;
    font-size: 16px;
}

.latest-blog__title a:hover {
    color: hsl(var(--base));
}

.latest-blog__date {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.latest-blog__date i {
    color: hsl(var(--base));
}

.login-box {
    width: 80%;
    padding: 60px 0px;
}

.login-box .form--control {
    border-radius: 0px !important;
    padding: 12px 20px;
    border: 1px solid hsl(var(--base) / 0.5);
}

.login-box :focus {
    border-color: hsl(var(--base));
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px hsl(var(--base) / 0.5);
}

.login-box .login-btn {
    padding: 7px 40px !important;
}

.login-box input[type="checkbox"]:checked {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
}

.login-box :focus {
    border-color: hsl(var(--base));
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px hsl(var(--base) / 0.5);
}

.login-box .login-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.login-box .login-meta p {
    font-size: 14px;
}

.social-login_box {
    text-align: center;
}

.social-login_box h4 {
    position: relative;
}

.social-login_box h4::before {
    top: 80%;
    left: 15%;
    position: absolute;
    content: "";
    height: 2px;
    width: 100px;
    background: hsl(var(--base));
}

.social-login_box h4::after {
    top: 80%;
    right: 15%;
    position: absolute;
    content: "";
    height: 2px;
    width: 100px;
    background: hsl(var(--base));
}

.social-login_box .login-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 40px;
}

.social-login_box .login-icon a {
    color: hsl(var(--base) / 0.6);
}

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

    .login-thumb {
        display: none;
    }

    .login-box {
        width: 100%;
        padding: 60px 20px;
    }
}

.contact-form {
    padding: 24px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color) / 0.8);
    border-radius: 12px;
}

.map__box {
    width: 100%;
    height: 100%;
}

.map__box iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: hsl(var(--white));
    padding: 24px;
    border-radius: 10px;
    border: 1px solid hsl(var(--border-color) / 0.8);
    height: 100%;
}

.info-icon {
    width: 54px;
    height: 54px;
    background-color: hsl(var(--base) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 6px;
    color: hsl(var(--base));
    font-size: 24px;
}

.col-lg-4:nth-child(2) .info-icon {
    background-color: hsl(var(--info) / 0.1);
    color: hsl(var(--info));
}

.col-lg-4:nth-child(3) .info-icon {
    background-color: hsl(var(--danger) / 0.1);
    color: hsl(var(--danger));
}

.info-content h4 {
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 8px;
}

.signup-section .sign-up_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    border-radius: 12px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color) / 0.8);
}

.signup-section .sign-up_box form {
    width: 80%;
    padding-bottom: 40px;
}

.signup-section .sign-up_box .input-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.signup-section .sign-up_box .input-group .input-group-text {
    border-radius: 15px;
    border: 1px solid hsl(var(--base) / 0.5);
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.signup-section .sign-up_box .signup-btn {
    padding: 7px 40px !important;
}

.signup-section .sign-up_box input[type="checkbox"]:checked {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
}

.signup-section .sign-up_box:focus {
    border-color: hsl(var(--base));
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px hsl(var(--base) / 0.5);
}

.signup-section .sign-up_box .login-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.signup-section .sign-up_box .login-meta p {
    font-size: 14px;
}

.signup-section .social-login_box {
    text-align: center;
}

.signup-section .social-login_box h4 {
    position: relative;
}

.signup-section .social-login_box h4::before {
    top: 80%;
    left: 24%;
    position: absolute;
    content: "";
    height: 2px;
    width: 100px;
    background: hsl(var(--base));
}

.signup-section .social-login_box h4::after {
    top: 80%;
    right: 24%;
    position: absolute;
    content: "";
    height: 2px;
    width: 100px;
    background: hsl(var(--base));
}

.signup-section .social-login_box .login-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 40px;
}

.signup-section .social-login_box .login-icon a {
    color: hsl(var(--base) / 0.6);
}

@media (max-width: 769px) {
    .signup-section .signup-thumb {
        display: none !important;
    }
}

.dashboard .dashboard_profile_wrap {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid hsl(var(--border-color) / 0.4);
}

.dashboard .dashboard_profile_wrap .profile_photo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-inline: auto;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.dashboard .dashboard_profile_wrap .profile_photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: hsl(var(--dark));
    opacity: 0;
    transition: all 0.4s;
    visibility: hidden;
}

.dashboard .dashboard_profile_wrap .profile_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard .dashboard_profile_wrap .profile_photo .photo_upload {
    display: inline-block;
    padding: 0px 0px 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: hsl(var(--white));
    transform: translate(-50%, -50%);
}

.dashboard .dashboard_profile_wrap .profile_photo .photo_upload i {
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

.dashboard .dashboard_profile_wrap .profile_photo .photo_upload .upload_file {
    opacity: 0;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    display: none;
}

.dashboard .dashboard_profile_wrap h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: var(--body-font);
}

.dashboard .dashboard_profile_wrap p {
    margin-bottom: 10px;
}

.dashboard .dashboard_profile_wrap .profile-details ul li p {
    margin-bottom: 0;
    padding-bottom: 5px;
}

.dashboard .dashboard_profile_wrap .profile-details ul li p span {
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
}

.dashboard .dashboard_profile_wrap .profile_photo:hover::before {
    visibility: visible;
    opacity: 0.7;
}

.dashboard .dashboard_profile_wrap .profile_photo:hover .photo_upload i {
    visibility: visible;
    opacity: 1;
}

.dashboard .sidebar-menu-list__link {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    color: hsl(var(--body-color));
}

.dashboard .sidebar-menu-list__link:hover {
    color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__link.active {
    color: hsl(var(--base));
}

.dashboard .dashboard-body {
    position: relative;
}

.dashboard .dashboard-body__bar {
    margin-bottom: 10px;
    display: none;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-body__bar {
        display: block;
    }
}

.dashboard .dashboard-body__bar-icon {
    color: hsl(var(--white));
    font-size: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 40px;
    background-color: hsl(var(--base));
    text-align: center;
    padding: 2px 8px;
    border-radius: 3px;
}

.dashboard .selling-group-item span {
    font-size: 14px;
}

.dashboard .message-send__content.section-bg-two {
    padding: 3px 5px;
    margin-bottom: 5px;
}

.dashboard .message-send__content.section-bg-two p {
    font-size: 14px;
}

.dashboard ul.list.d-flex.message-send__history {
    font-size: 12px;
}

.dashboard .message-send {
    margin-bottom: 10px;
}

.dashboard .message-receive__history-item {
    margin-right: 20px;
    position: relative;
}

.dashboard .message-receive__history-item:last-child {
    margin-right: 0;
}

.dashboard .message-receive__history-item:after {
    position: absolute;
    top: 9px;
    right: -13px;
    content: "";
    background: hsl(var(--base));
    height: 4px;
    width: 4px;
    border-radius: 50%;
}

.dashboard .message-receive__history-item:last-child:after {
    display: none;
}

.dashboard .milestones-action {
    cursor: pointer;
}

.dashboard .cursor-pointer {
    cursor: pointer;
}

.dashboard .dashboard-card {
    box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.08);
    padding: 20px;
    border: 2px solid hsl(var(--base) / 0.07);
    transition: all 0.4s ease-in-out;
    text-align: start;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 15px;
}

.dashboard .dashboard-card .banner-effect-1 {
    content: "";
    position: absolute;
    top: 42px;
    right: -4px;
    width: 80px;
    height: 80px;
    background-color: hsl(var(--base) / 0.3);
    z-index: -1;
    transform: translate(-50%, -50%);
    filter: blur(55px);
}

.dashboard .dashboard-card:hover {
    box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
    border: 2px solid hsl(var(--base) / 0.4);
    transform: translateY(-3px);
}

.dashboard .dashboard-card__link {
    position: absolute;
    right: 20px;
}

.dashboard .dashboard-card__link a {
    color: hsl(var(--white));
}

.dashboard .dashboard-card__link a:hover {
    color: hsl(var(--base));
}

.dashboard .dashboard-card__icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.dashboard .dashboard-card__title {
    margin-bottom: 10px;
    font-size: 17px;
}

.dashboard .dashboard-card__content {
    text-align: left;
    width: calc(100% - 60px);
    padding-left: 15px;
}

.dashboard .dashboard-card__amount {
    margin-bottom: 5px;
    margin-bottom: 0;
    font-size: 14px;
}

.dashboard .selling-group-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid hsl(var(--base) / 0.2);
    padding: 6px 0;
}

.dashboard .card-header.selling-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.dashboard .card-primary {
    background-color: hsl(var(--primary) / 0.6);
}

.dashboard .card-primary .dashboard-card__icon {
    background-color: hsl(var(--primary));
}

.dashboard .card-violet {
    background-color: hsl(var(--violet) / 0.6);
}

.dashboard .card-violet .dashboard-card__icon {
    background-color: hsl(var(--violet));
}

.dashboard .card-success {
    background-color: hsl(var(--success) / 0.6);
}

.dashboard .card-success .dashboard-card__icon {
    background-color: hsl(var(--success));
}

.dashboard .card-danger {
    background-color: hsl(var(--danger) / 0.4);
}

.dashboard .card-danger .dashboard-card__icon {
    background-color: hsl(var(--danger));
}

.dashboard .card-warning {
    background-color: hsl(var(--warning) / 0.6);
}

.dashboard .card-warning .dashboard-card__icon {
    background-color: hsl(var(--warning));
}

.dashboard .card-info {
    background-color: hsl(var(--info) / 0.6);
}

.dashboard .card-info .dashboard-card__icon {
    background-color: hsl(var(--info));
}

.dashboard .card-success-1 {
    background-color: hsl(var(--success) / 0.3);
}

.dashboard .card-success-1 .dashboard-card__icon {
    background-color: hsl(var(--success));
}

.dashboard .card-primary-1 {
    background-color: hsl(var(--primary) / 0.4);
}

.dashboard .card-primary-1 .dashboard-card__icon {
    background-color: hsl(var(--primary));
}

.dashboard .card-violet-1 {
    background-color: hsl(var(--violet) / 0.3);
}

.dashboard .card-violet-1 .dashboard-card__icon {
    background-color: hsl(var(--violet) / 0.8);
}

.dashboard .dashboard-body .single-service__icon img {
    width: 160px !important;
    padding: 5px;
    border: 3px solid hsl(var(--base) / 0.06);
    height: 60px;
    object-fit: contain;
}

.myProfile-section .sign-up_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.myProfile-section .sign-up_box form {
    width: 80%;
}

.myProfile-section .sign-up_box .form--control {
    border-radius: 0px !important;
    padding: 12px 20px;
    border: 1px solid hsl(var(--base) / 0.5);
}

.myProfile-section .sign-up_box :focus {
    border-color: hsl(var(--base));
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px hsl(var(--base) / 0.5);
}

.myProfile-section .sign-up_box .input-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.myProfile-section .sign-up_box .input-group .input-group-text {
    border-radius: 0px;
    border: 1px solid hsl(var(--base) / 0.5);
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.myProfile-section .sign-up_box .signup-btn {
    padding: 7px 40px !important;
}

.myProfile-section .sign-up_box input[type="checkbox"]:checked {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
}

.myProfile-section .sign-up_box :focus {
    border-color: hsl(var(--base));
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px hsl(var(--base) / 0.5);
}

.myProfile-section .sign-up_box .login-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.myProfile-section .sign-up_box .login-meta p {
    font-size: 14px;
}

.myProfile-section .social-login_box {
    text-align: center;
}

.myProfile-section .social-login_box h4 {
    position: relative;
}

.myProfile-section .social-login_box h4::before {
    top: 80%;
    left: 24%;
    position: absolute;
    content: "";
    height: 2px;
    width: 100px;
    background: hsl(var(--base));
}

.myProfile-section .social-login_box h4::after {
    top: 80%;
    right: 24%;
    position: absolute;
    content: "";
    height: 2px;
    width: 100px;
    background: hsl(var(--base));
}

.myProfile-section .social-login_box .login-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 40px;
}

.myProfile-section .social-login_box .login-icon a {
    color: hsl(var(--base) / 0.6);
}

@media (max-width: 769px) {
    .signup-section .signup-thumb {
        display: none !important;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
}

.about-content h3 {
    font-weight: 700;
}

.about-content p {
    margin-bottom: 16px;
}

.about-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-info-list li i {
    color: hsl(var(--base));
}

.about-sec_thumb img {
    width: 100%;
    border-radius: 12px;
}

.why-choose_item .about-sec_thumb span {
    background: hsl(var(--base));
    top: 70%;
    left: 0;
    position: absolute;
    border: 1px solid hsl(var(--base));
    height: 100px;
    width: 140px;
    font-size: 32px;
    text-align: center;
    color: hsl(var(--white));
}

.why-choose_item .about-sec_thumb div p {
    color: hsl(var(--white));
}

.price-cardBody {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 1px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-cardBody img.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
    opacity: 0.27;
}

.price-cardBody:hover::before {
    transform: scale(3);
}

.price-cardBody::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: hsl(var(--base));
    height: 48px;
    width: 48px;
    border-radius: 32px;
    transform: scale(1.5);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
    z-index: 99;
}

.price-cardBody .price-card-head {
    display: flex;
    flex-direction: column;
    justify-content: left;
    z-index: 1;
}

.price-cardBody .price-card-head p {
    font-size: 28px;
    font-weight: 600;
}

.price-cardBody .price-card-head h2 {
    color: hsl(var(--base));
}

.price-cardBody .price-card-head h2 sup {
    font-size: 20px;
    color: #bdbdbd;
    font-weight: 400;
}

.price-cardBody ul li {
    font-size: 18px;
    margin-bottom: 8px;
}

.price-cardBody ul li i {
    margin-right: 4px;
}

.price-cardBody .card-circle {
    position: absolute;
    height: 200px;
    width: 200px;
    top: 80%;
    left: 45%;
    background-color: rgb(243, 230, 248);
    filter: blur(40px);
    -webkit-filter: blur(40px);
    border-radius: 50%;
}

.price-cardBody .card-circle1 {
    position: absolute;
    height: 200px;
    width: 200px;
    top: -20%;
    left: -20%;
    background-color: #fdffea;
    filter: blur(40px);
    -webkit-filter: blur(40px);
    border-radius: 50%;
}

.error-wrap img {
    background: hsl(var(--danger));
}

.error-wrap__title {
    margin-bottom: 0;
}

.error-wrap__desc {
    margin-bottom: 30px;
    font-size: 18px;
}

.error__text span {
    font-size: 75px;
    font-weight: 800;
}

.error__text span:nth-child(2) {
    color: red;
}

.cookies-card {
    position: fixed;
    bottom: 16px;
    width: 40%;
    padding: 20px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    right: 16px;
    z-index: 99;
    border: 2px solid hsl(var(--base));
}

.dark-mode .cookies-card {
    background: #2d3748;
    border: 1px solid #404040;
}

@media (max-width: 576px) {
    .cookies-card {
        width: 90%;
    }
}

.cookies-card {
    position: fixed;
    bottom: 16px;
    width: 40%;
    padding: 20px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    right: 16px;
    z-index: 99;
    border: 2px solid hsl(var(--base));
}

.dark-mode .cookies-card {
    background: #2d3748;
    border: 1px solid #404040;
}

@media (max-width: 576px) {
    .cookies-card {
        width: 90%;
    }
}

.product-image-wrap .thumb {
    position: relative;
}

.product-image-wrap .thumb .crose-icon.imageRemove {
    position: absolute;
    right: 0;
    height: 35px;
    width: 35px;
    background: red;
    text-align: center;
    line-height: 35px;
    color: #fff;
    border-radius: 0 0 0 17px;
    font-weight: 700;
}

.product-image-wrap {
    width: 150px;
    display: flex;
    flex-wrap: wrap;
}

.product-image-wrap .thumb img {
    width: 150px;
}

.deposit-top-search {
    display: flex;
}

.account-form.deposit .deposit-top-search .form--control {
    width: 60%;
}

@media screen and (max-width: 374px) {
    .account-form.deposit .deposit-top-search .form--control {
        width: 71%;
    }
}

/*============ ------ **  Range Slider **-------- ============*/
.range-slider label {
    font-size: 16px;
    margin-bottom: 25px;
}

.range-slider .ui-slider {
    position: relative;
    text-align: left;
}

.range-slider .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid hsl(var(--base));
    cursor: w-resize;
    background: #fff;
    outline: none;
    top: -8px;
    margin-left: -8px;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.range-slider .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    border: 0;
    background-position: 0 0;
}

.range-slider .ui-widget-content {
    background-color: #e8e8e8 !important;
}

.range-slider .ui-widget-header {
    background-color: hsl(var(--base));
}

.range-slider .ui-slider.ui-state-disabled .ui-slider-handle,
.range-slider .ui-slider.ui-state-disabled .ui-slider-range {
    -webkit-filter: inherit;
    filter: inherit;
}

.range-slider .ui-slider-horizontal {
    height: 3px;
    border-radius: 10px;
}

.range-slider .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.range-slider .ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.range-slider .ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

input.first-slider-value:focus,
input.second-slider-value:focus,
input.first-slider-value,
input.second-slider-value {
    width: 40%;
    display: inline-block;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 12px 0 0 0;
    cursor: default;
}

input.first-slider-value {
    float: left;
    margin-left: -8px;
    width: 40%;
}

input.second-slider-value {
    float: right;
    width: 40%;
    text-align: right;
    margin-right: -8px;
}

.range-slider {
    line-height: 37px;
}

.search-result-wrap {
    position: absolute;
    top: 90%;
    width: 415px;
    z-index: 9999;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    background: hsl(var(--white));
    margin: auto;
    border-radius: 10px;
    height: 333px;
    overflow-y: scroll;
}

@media screen and (max-width: 574px) {
    .search-result-wrap {
        width: 285px;
    }
}

.dark .search-result-wrap {
    background: #0e133c;
    border: 1px solid hsl(var(--white) / 0.2);
}

.search-results a {
    display: block;
    padding: 7px;
    text-decoration: none;
    color: hsl(var(--dark));
    border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.dark .search-results a {
    border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.search-results a:hover {
    color: hsl(var(--base));
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.dark .cookies-card {
    background: hsl(var(--dark));
    border: 2px solid hsl(var(--base));
}

.deposit-top-search button.btn.btn--base.margin-left {
    margin-left: -3px !important;
}

.time-rating-warper .ratings-box {
    font-size: 11px;
    margin-top: 5px;
}

.account-form {
    border: 1px solid hsl(var(--base)/.1);
    padding: 35px;
}

.thumbnail-wrap img.thumb-img {
    width: 200px;
}

.dark .shop-section .filter-form .sidebar_body .sidebar-header .aside-search-box .form--input__field {
    color: hsl(var(--white)) !important;
}

.price .product-price {
    margin-bottom: 0;
    color: hsl(var(--success-d-200));
    font-size: 16px;
    font-family: var(--body-font);
    font-weight: 600;
    text-transform: capitalize;
}

.product-price span {
    font-size: 12px;
    color: hsl(var(--heading-color));
}

.vendor-profile-content {
    align-items: center;
    gap: 16px;
}

.vendor-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    align-self: center;
}

.vendor-profile-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vendor-profile-name,
.vendor-profile-email {
    margin: 0;
    font-size: 18px;

}







/* ============rayhan============== */
.social__login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.social__login a {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid hsl(var(--black)/0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background-color: hsl(var(--black)/0.02);
    font-size: 15px;
    line-height: 1;
}

@media screen and (max-width: 991px) {
    .social__login a {
        font-size: 13px;
    }
}

.social__login a:hover {
    background-color: hsl(var(--base)/0.1);
    color: hsl(var(--black));
}

.social__login a img {
    width: auto;
    height: 16px;
    flex: 0 0 auto;
}

.auth__logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth__logo a img {
    width: 100%;
    max-width: 160px;
}

.auth__logo a {
    display: block;
    width: 100%;
}

.auth__title {
    text-align: center;
    margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
    .auth__title p {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .auth__title {
        margin-bottom: 20px;
    }
}

.auth__title h4 {
    margin-bottom: 8px;
}

.auth__or {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.auth__or::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    width: 100%;
    height: 1px;
    content: "";
    background-color: hsl(var(--border-color) / 0.8);
}

.auth__or p {
    font-size: 12px;
    backdrop-filter: blur(10px);
    width: fit-content;
    padding: 0 8px;
}

.signup-thumb {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.single-terms {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    padding: 24px;
    border-radius: 12px;
}

.featured-tools-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.featured-tools-copy h2 {
    margin-bottom: 16px;
}

.featured-tools-copy p {
    max-width: 620px;
    margin: 0;
}

.featured-tools-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(var(--heading-color));
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.featured-tools-link .fa-arrow-right {
    transform: rotate(-45deg);
    transition: 0.3s;
}

.featured-tools-link:hover .fa-arrow-right {
    transform: rotate(0);
}

.featured-tool-card {
    height: 100%;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-color) / 0.8);
    background: hsl(var(--white));
    transition: 0.4s;
}

.featured-tool-card:hover {
    border-color: hsl(var(--base) / 0.5);
}

.featured-tool-card__top,
.featured-tool-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.featured-tool-card__top {
    margin-bottom: 24px;
}

.featured-tool-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.featured-tool-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-accent);
    color: hsl(var(--white));
    font-size: 18px;
}

.featured-tool-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 6px;
}

.featured-tool-card__badge--outline {
    border: 1px solid color-mix(in srgb, var(--card-accent) 60%, #bcc7d8);
    color: var(--card-accent);
    background: hsl(var(--white));
}

.featured-tool-card__badge--soft {
    background: hsl(var(--base) / 0.08);
    color: hsl(var(--body-color));
}

.featured-tool-card__price {
    color: var(--card-accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.featured-tool-card__price small {
    font-size: 14px;
    font-weight: 700;
}

.featured-tool-card__body {
    border-bottom: 1px solid hsl(var(--border-color) / 0.4);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.featured-tool-card__body h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--body-font);
}

.featured-tool-card__body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

.featured-tool-card__vendor {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.featured-tool-card__initials {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--base) / 0.1);
    color: hsl(var(--body-color));
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.featured-tool-card__vendor-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.featured-tool-card__vendor-copy strong {
    color: hsl(var(--body-color));
    font-size: 14px;
    font-weight: 700;
}

.featured-tool-card__vendor-copy span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #24c7b1;
    font-size: 13px;
    font-weight: 700;
}

.featured-tool-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: hsl(var(--body-color));
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.featured-tool-card__rating span {
    color: hsl(var(--heading-color));
}

.featured-tool-card__rating i {
    color: #ff7b45;
}

.featured-tool-card__rating small {
    color: hsl(var(--body-color));
    font-size: 13px;
    font-weight: 600;
}

.featured-tool-card--orange {
    --card-accent: #ff6b35;
}

.featured-tool-card--navy {
    --card-accent: hsl(var(--heading-color));
}

.featured-tool-card--green {
    --card-accent: #18cdb5;
}

.ai-formats-header {
    margin-bottom: 56px;
}

.ai-formats-header h2 {
    margin-bottom: 16px;
}

.ai-formats-header p {
    max-width: 680px;
    margin: 0 auto;
}

.ai-format-card {
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color) / 0.8);
    transition: 0.4s;
}

.ai-format-card:hover {
    border-color: hsl(var(--base) / 0.5);
}

.ai-format-card__media {
    position: relative;
    z-index: 1;
}

.ai-format-card__media img {
    width: 100%;
}

.ai-format-card__icon {
    position: absolute;
    left: 20px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: hsl(var(--white));
    font-size: 24px;
    z-index: 2;
}

.ai-format-card__body {
    padding: 38px 24px 24px;
}

.ai-format-card__body h3 {
    margin-bottom: 12px;
    color: hsl(var(--heading-color));
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.ai-format-card__price {
    margin-bottom: 14px;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
}

.ai-format-card__desc {
    margin-bottom: 32px;
    color: hsl(var(--body-color));
    font-size: 16px;
    line-height: 1.75;
}

.ai-format-card__list {
    margin: 0;
    padding: 0 0 22px;
    list-style: none;
    border-bottom: 1px solid hsl(var(--border-color));
}

.ai-format-card__list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 18px;
    color: hsl(var(--heading-color));
    font-size: 16px;
    line-height: 1.6;
}

.ai-format-card__list li:last-child {
    margin-bottom: 0;
}

.ai-format-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.ai-format-card__example {
    padding-top: 16px;
}

.ai-format-card__example span {
    display: block;
    margin-bottom: 8px;
    color: hsl(var(--body-color));
    font-size: 14px;
    font-weight: 600;
}

.ai-format-card__example strong {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 6px;
    background: hsl(var(--base) / 0.08);
    color: hsl(var(--heading-color) / 0.8);
    font-size: 14px;
    font-weight: 600;
}

.ai-format-card--orange {
    --accent-color: #ff6b35;
}

.ai-format-card--blue {
    --accent-color: #4a89f3;
}

.ai-format-card--green {
    --accent-color: #19c9b2;
}

.verification__wrap {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color) / 0.8);
    padding: 24px;
    border-radius: 12px;
}

.dashboard .container-fluid {
    padding-inline: 40px;
}

.dashboard__wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: flex-start;
    gap: 24px;
}

.ds__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.ds__topbar h4 {
    margin-bottom: 0;
    flex: 0 0 auto;
}

.iconpicker-popover.popover.bottom.in.fade:not(.show) {
    opacity: 1 !important;
}

.table__img {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.table__img img {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    background-color: hsl(var(--white));
    padding: 2px;
    border: 1px solid hsl(var(--border-color));
}

@media screen and (max-width: 1199px) {
    .ai-format-card__desc {
        margin-bottom: 16px;
    }

    .blog-meta-chips a {
        font-size: 12px;
    }

    .nws-title h4 {
        font-size: 18px;
    }

    .newsletter__content {
        max-width: 600px;
        margin-bottom: 32px;
    }

    .newsletter__form {
        max-width: 600px;
    }

    .footer-item.footer__about {
        text-align: center;
        margin-bottom: 32px;
    }

    .footer-item__desc {
        max-width: 580px;
        margin-inline: auto;
    }

    .footer-item__logo {
        margin-bottom: 4px;
    }

    .signup-section .sign-up_box form {
        width: calc(100% - 40px);
    }

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

    .dashboard__wrap {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 991px) {
    .hero__left {
        text-align: center;
    }

    .hero__partner__main {
        justify-content: center;
    }

    .hero__partner__main img {
        max-width: 110px;
    }

    .hero__btn {
        justify-content: center;
    }

    .hero__info ul li {
        font-size: 14px;
    }

    .hero__info ul {
        justify-content: center;
    }

    .hero__img {
        text-align: center;
    }

    .hero__img img {
        width: 100%;
        max-width: 400px;
    }

    .hero__area {
        padding-block: 80px;
    }

    .ai-formats-header h2 {
        margin-bottom: 10px;
    }

    .shop-discovery .filter-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .filter-actions {
        grid-column: span 2;
    }

    .about-info-list li {
        font-size: 14px;
    }

    .ai-formats-header {
        margin-bottom: 32px;
    }

    .map__box iframe {
        height: 320px;
    }

    .signup-thumb {
        height: 300px;
    }

    .product-details-left {
        padding: 16px;
    }

    .about-right-content {
        padding: 16px;
    }

    .dashboard .container-fluid {
        padding-inline: 16px;
    }

    .custom--card .card-body {
        padding: 16px;
    }

    .wyg ul li {
        font-size: 14px;
    }

    .wyg ol li {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .custom--accordion .accordion-button {
        padding: 18px;
    }

    .ai-formats-header {
        margin-bottom: 32px !important;
    }

    .featured-tools-link {
        font-size: 14px;
    }

    .browse-expertise-header {
        margin-bottom: 32px !important;
    }

    .testimonials-section__header {
        margin-bottom: 32px !important;
    }

    .browse-expertise-header h2 {
        margin-bottom: 10px !important;
    }

    .newsletter__area {
        padding-block: 80px;
    }

    .footer__contact {
        margin-top: 32px;
    }

    .newsletter__form input {
        padding: 16px;
    }

    .footer-menu__link {
        font-size: 14px;
    }

    .footer__contact ul li {
        font-size: 14px;
    }

    .product-info .product-title h3 {
        font-size: 20px;
    }

    .seller-panel__head {
        flex-direction: column;
    }

    .seller-product-cell {
        min-width: 210px !important;
        flex-direction: row-reverse;
    }

    .seller-top-item {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        flex-direction: column;
        text-align: start;
    }

    .seller-top-item .text-end {
        text-align: start !important;
    }

    .seller-dashboard__hero h3 {
        font-size: 20px !important;
    }

    .invoice-shell__hero {
        flex-direction: column !important;
    }
}

@media screen and (max-width: 575px) {
    .featured-tools-header {
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
        flex-direction: column;
    }

    .shop-discovery .filter-panel {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        grid-column: span 1;
    }

    .bottom__footer {
        flex-direction: column;
    }

    .forgot-password {
        font-size: 14px;
    }

    .blog-details {
        padding: 16px;
    }

    .review-summary-card {
        flex-direction: column;
    }

    .avg-rating-big {
        border-right: none;
        padding-right: 0;
    }
}