/* Font Family */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Lexend", serif;
    --body-font: "Open Sans", sans-serif;
    /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --light-h: 0;
    --light-s: 1%;
    --light-l: 53%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --black-h: 0;
    --black-s: 0%;
    --black-l: 0%;
    --black: var(--black-h) var(--black-s) var(--black-l);
    --body-bg-h: 240;
    --body-bg-s: 60%;
    --body-bg-l: 7%;
    --body-bg: var(--body-bg-h) var(--body-bg-s) var(--body-bg-l);
    --heading-color: var(--black) / .6;
    --body-color: var(--black) / .7;
    --border-color: 0 0% 95%;
    --section-bg: 240 100% 99%;
    /* ================================ Box Shadow Start =============================== */
    --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) /.3);
    --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) /.92);
    --box-shadow: 0px 2px 15px hsl(var(--black) /.05);
    /* ================================ Box Shadow End =============================== */
    /* ========================= Social Color Start ============================= */
    --facebook-h: 223;
    --facebook-s: 45%;
    --facebook-l: 41%;
    --facebook: var(--facebook-h) var(--facebook-s) var(--facebook-l);
    --google-h: 7;
    --google-s: 66%;
    --google-l: 53%;
    --google: var(--google-h) var(--google-s) var(--google-l);
    --linkedin-h: 201;
    --linkedin-s: 100%;
    --linkedin-l: 35%;
    --linkedin: var(--linkedin-h) var(--linkedin-s) var(--linkedin-l);
    /* ========================= Social Color End ============================= */
    /* ========================= Base Color ============================= */
    --base-h: 88;
    --base-s: 77%;
    --base-l: 62%;
    --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-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: 38;
    --base-two-s: 100%;
    --base-two-l: 66%;
    --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);
    /* ========================= Base Three Color ============================= */
    --base-three-h: 49;
    --base-three-s: 100%;
    --base-three-l: 67%;
    --base-three: var(--base-three-h) var(--base-three-s) var(--base-three-l);
    /* Base Two Darken */
    --base-three-d-100: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.05);
    --base-three-d-200: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.1);
    --base-three-d-300: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.2);
    --base-three-d-400: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.3);
    --base-three-d-500: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.4);
    --base-three-d-600: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.5);
    --base-three-d-700: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.6);
    --base-three-d-800: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.7);
    --base-three-d-900: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.8);
    /* Base Two Lighten */
    --base-three-l-100: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.05);
    --base-three-l-200: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.1);
    --base-three-l-300: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.2);
    --base-three-l-400: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.3);
    --base-three-l-500: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.4);
    --base-three-l-600: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.5);
    --base-three-l-700: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.6);
    --base-three-l-800: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.7);
    --base-three-l-900: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.8);
    --background-gradient: linear-gradient(45deg, hsl(var(--base-three)), hsl(var(--base-two)));
    /* ============================== Bootstrap Modifier Start ============================== */
    /* Primary Color */
    --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-d-600: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.6);
    --primary-d-700: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.7);
    --primary-d-800: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.8);
    --primary-d-900: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.9);
    /* 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);
    --primary-l-700: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.7);
    --primary-l-800: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.8);
    --primary-l-900: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.9);
    /* Secondary Color */
    --secondary-h: 208;
    --secondary-s: 7%;
    --secondary-l: 46%;
    --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-d-600: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.6);
    --secondary-d-700: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.7);
    --secondary-d-800: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.8);
    --secondary-d-900: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.9);
    /* 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);
    --secondary-l-700: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.7);
    --secondary-l-800: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.8);
    --secondary-l-900: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.9);
    /* Success Color */
    --success-h: 148;
    --success-s: 98%;
    --success-l: 38%;
    --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-d-600: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.6);
    --success-d-700: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.7);
    --success-d-800: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.8);
    --success-d-900: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.9);
    /* 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);
    --success-l-700: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.7);
    --success-l-800: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.8);
    --success-l-900: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.9);
    /* 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-d-600: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.6);
    --danger-d-700: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.7);
    --danger-d-800: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.8);
    --danger-d-900: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.9);
    /* 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);
    --danger-l-700: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.7);
    --danger-l-800: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.8);
    --danger-l-900: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.9);
    /* Warning Color */
    --warning-h: 29;
    --warning-s: 100%;
    --warning-l: 63%;
    --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-d-600: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.6);
    --warning-d-700: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.7);
    --warning-d-800: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.8);
    --warning-d-900: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.9);
    /* 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);
    --warning-l-700: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.7);
    --warning-l-800: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.8);
    --warning-l-900: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.9);
    /* 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);
    --info-d-600: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.6);
    --info-d-700: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.7);
    --info-d-800: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.8);
    --info-d-900: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.9);
    --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);
    --info-l-700: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.7);
    --info-l-800: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.8);
    --info-l-900: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.9);
    /* dark Color */
    --dark-h: 210;
    --dark-s: 10%;
    --dark-l: 23%;
    --dark: var(--dark-h) var(--dark-s) var(--dark-l);
    /* dark Darken */
    --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-d-700: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.7);
    --dark-d-800: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.8);
    --dark-d-900: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.9);
    --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);
    --dark-l-700: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.7);
    --dark-l-800: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.8);
    --dark-l-900: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.9);
    /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* ============================ Media Breakpoint for Each Device Start ============================ */
/* ================================== Font Size For responsive devices End =============================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    font-size: 1.125rem;
    overflow-x: clip;
    line-height: 1.7;
}

@media screen and (max-width: 1199px) {
    body {
        font-size: 1rem;
    }
}

p {
    font-weight: 400;
    margin: 0;
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.3;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 15px 0;
    }
}

h1 {
    font-size: clamp(1.75rem, 0.1327rem + 3.3694vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 0.3542rem + 2.6474vw, 3rem);
}

h3 {
    font-size: clamp(1.375rem, 0.3353rem + 2.1661vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 0.5569rem + 1.444vw, 2rem);
}

h5 {
    font-size: clamp(1.125rem, 0.7784rem + 0.722vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.25rem);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    transition: 0.2s linear;
    line-height: 1.3;
}

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: hsl(var(--base-d-200));
    line-height: inherit;
}

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

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

select {
    cursor: pointer;
}

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

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    box-shadow: none;
}

textarea {
    vertical-align: middle;
}

i {
    display: inline-block;
}

.ti {
    font-size: 1.45em;
    transform: translateY(15%);
}

.ti.transform-0 {
    transform: translate(0) !important;
}
.ti.transform-1 {
    transform: translateY(5%) !important;
}
.ti.transform-2 {
    transform: translateY(10%) !important;
}

#payment-form .ti {
    transform: translateY(0);
}

.small, small {
    font-size: 0.8em;
    line-height: 1.3;
}

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

.list-styled {
    list-style: revert;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.list-styled li {
    margin-bottom: 10px;
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
/* Column Extra Extra Extra Large Screen */
@media (min-width: 1600px) {
    .col-xxxl-1 {
        flex: 0 0 auto;
        width: 8.33%;
    }

    .col-xxxl-2 {
        flex: 0 0 auto;
        width: 16.67%;
    }

    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33.33%;
    }

    .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41.67%;
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58.33%;
    }

    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 66.67%;
    }

    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33%;
    }

    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 91.67%;
    }

    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Column Extra Small Screen */
@media (min-width: 480px) and (max-width: 575px) {
    .col-xsm-1 {
        flex: 0 0 auto;
        width: 8.33%;
    }

    .col-xsm-2 {
        flex: 0 0 auto;
        width: 16.67%;
    }

    .col-xsm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xsm-4 {
        flex: 0 0 auto;
        width: 33.33%;
    }

    .col-xsm-5 {
        flex: 0 0 auto;
        width: 41.67%;
    }

    .col-xsm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xsm-7 {
        flex: 0 0 auto;
        width: 58.33%;
    }

    .col-xsm-8 {
        flex: 0 0 auto;
        width: 66.67%;
    }

    .col-xsm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xsm-10 {
        flex: 0 0 auto;
        width: 83.33%;
    }

    .col-xsm-11 {
        flex: 0 0 auto;
        width: 91.67%;
    }

    .col-xsm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Section Background */
.section-bg {
    background-color: hsl(var(--section-bg));
}

/* Bg Image Css */
.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 100%;
    height: 100%;
}

/* Bg Light Gradient Css */
.bg-light-gradient {
    background: linear-gradient(-45deg, hsl(var(--base-two)/0.04), hsl(var(--base)/0.04), hsl(var(--base-two)/0.04));
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .scroll-hide {
        padding-right: 0;
    }
}

.scroll-hide-sm {
    position: absolute;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
}

/* Overlay Start */
.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.4);
    z-index: 999;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.4);
    z-index: 1000;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
}

.sidebar-overlay-2 {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.4);
    z-index: 999;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.sidebar-overlay-2.show {
    visibility: visible;
    opacity: 1;
}

/* Overlay End */
/* Hide text after 1st line */
.text-overflow-1 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 2nd line */
.text-overflow-2 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 3rd line */
.text-overflow-3 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 4th line */
.text-overflow-4 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 5th line */
.text-overflow-5 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-shadow {
    box-shadow: 0 0 !important;
}

.text--muted {
    color: hsl(var(--black)/0.5);
}

.container--fluid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
}

/* ================================= Custom Classes Css End =========================== */
/* Fully Fit image Css */
.fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap, .form--radio, .form--check {
    display: flex;
    flex-wrap: wrap;
}

.flex-align, .action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

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

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

/* ============================= Display Flex Css End ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend, .alert__link::before {
    position: absolute;
    content: "";
}

.top-center-extend {
    top: 50%;
    transform: translateY(-50%);
}

.left-center-extend {
    left: 50%;
    transform: translateX(-50%);
}

.top-left-center-extend {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================= Positioning Css Class End ===================== */
/* ===================== Font Size For responsive devices Start =================== */
.fs-10 {
    font-size: 0.625rem;
}

.fs-11, .form--check .form-check-input:checked::before {
    font-size: 0.6875rem;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-13, .badge {
    font-size: 0.8125rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-15, .table tbody tr td, .form--radio .form-check-label, .form--check .form-check-label, .form--label, .btn--icon {
    font-size: 0.9375rem;
}

.fs-16, .alert__title {
    font-size: 1rem;
}

@media screen and (max-width: 1199px) {
    .fs-16, .alert__title {
        font-size: 0.9375rem;
    }
}

.fs-17 {
    font-size: 1.0625rem;
}

@media screen and (max-width: 1199px) {
    .fs-17 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-17 {
        font-size: 0.9375rem;
    }
}

.fs-18, .table thead tr th {
    font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
    .fs-18, .table thead tr th {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-18, .table thead tr th {
        font-size: 1rem;
    }
}

.fs-20 {
    font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
    .fs-20 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-20 {
        font-size: 1.0625rem;
    }
}

/* ===================== Font Size For responsive devices End =================== */
/* ====================== Section Heading Start ==================== */
.section-heading {
    position: relative;
    margin-bottom: 70px;
    z-index: 2;
}

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

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

@media screen and (max-width: 767px) {
    .section-heading {
        text-align: center;
        margin-bottom: 45px;
    }
}

.section-heading-light .section-heading__vector {
    -webkit-text-stroke-color: hsl(var(--white)/0.2);
}

.section-heading-light .section-heading__subtitle {
    color: hsl(var(--dark-d-500));
}
.section-heading-light .section-heading__title {
    color: hsl(var(--white));
}

.section-heading__subtitle {
    font-family: var(--heading-font);
    width: max-content;
    max-width: 100%;
    font-size: 7.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, hsl(var(--base-two-d-100)), hsl(var(--base-d-100)), hsl(var(--base-two-d-100)));
    background-clip: text;
    color: hsl(var(--white));
    -webkit-text-stroke: 5px transparent;
    line-height: 1.3;
    border-radius: 10px;
    padding: 0 5px;
    margin-top: -36px;
    margin-bottom: 3px;
    position: relative;
}

@media screen and (max-width: 1599px) {
    .section-heading__subtitle {
        font-size: 6.25rem;
        margin-top: -28px;
        margin-bottom: 9px;
    }
}

@media screen and (max-width: 1399px) {
    .section-heading__subtitle {
        font-size: 5rem;
        margin-top: -23px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .section-heading__subtitle {
        font-size: 3.75rem;
        margin-top: -16px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading__subtitle {
        font-size: 2.813rem;
        -webkit-text-stroke-width: 4px;
        margin-top: -12px;
        margin-bottom: 11px;
    }
}

@media screen and (max-width: 767px) {
    .section-heading__subtitle {
        font-size: 1.875rem;
        -webkit-text-stroke-width: 3px;
        margin-top: -7px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;
    }
}

.section-heading__title {
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    color: hsl(var(--dark-l-200));
    margin-bottom: -9px;
}

@media screen and (max-width: 1399px) {
    .section-heading__title {
        font-size: 1.563rem;
        margin-bottom: -7px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading__title {
        font-size: 1.25rem;
        margin-bottom: -6px;
    }
}

@media screen and (max-width: 767px) {
    .section-heading__title {
        font-size: 1rem;
        margin-bottom: -5px;
    }
}

.section-heading.text-center .section-heading__subtitle {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
    .section-heading .btn {
        margin-bottom: 25px;
    }
}

/* ====================== Section Heading End==================== */
/* ====================== Container for xxxl screen Start ==================== */
@media screen and (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/* ====================== Container for xxxl screen End==================== */

/* ====================== Custom Image Upload with Preview Start ==================== */
.upload__img {
    width: max-content;
    margin: auto;
    position: relative;
}

.upload__img__btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(10%, 10%);
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.upload__img__btn:hover {
    background: hsl(var(--base-d-200));
}

.upload__img input {
    position: absolute;
    opacity: 0;
    bottom: 0;
    left: 0;
    width: 180px;
    aspect-ratio: 180/180;
    cursor: pointer;
    z-index: 1;
}

.upload__img input:hover + .upload__img-preview {
    background: hsl(var(--base-l-800));
    border-color: hsl(var(--base));
}

.upload__img-preview {
    width: 170px;
    aspect-ratio: 170/170;
    background: hsl(var(--base-l-900));
    border: 1px dashed hsl(var(--black)/0.1);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 5rem;
    font-weight: 100;
    transition: 0.3s;
}

.upload__img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* ====================== Custom Image Upload with Preview End ==================== */
/* ====================== Apexcharts Style Start ==================== */
.apexcharts-tooltip-z-group {
    display: flex;
}

.apexcharts-title-text {
    font-family: var(--body-font) !important;
    font-weight: 600;
    font-size: 1rem;
    fill: hsl(var(--black)/0.6);
}

/* ====================== Apexcharts Style End ==================== */

/* ====================== Styled Title Start ====================== */
.styled-title {
    display: inline;
    color: transparent;
    -webkit-text-stroke-color: hsl(var(--base-two-d-200));
    -webkit-text-stroke-width: 2px;
}

@media screen and (max-width: 1199px) {
    .styled-title {
        -webkit-text-stroke-width: 1.5px;
        font-weight: 600;
    }
}

@media screen and (max-width: 991px) {
    .styled-title {
        -webkit-text-stroke-width: 1px;
        font-weight: 700;
    }
}

.styled-title-2 {
    display: inline;
    color: hsl(var(--white));
    background-image: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-two)), hsl(var(--base)));
    background-clip: text;
    -webkit-text-stroke-color: transparent;
    -webkit-text-stroke-width: 5px;
}

@media screen and (max-width: 991px) {
    .styled-title-2 {
        background-size: 20% 2px;
        background-position: left 90%;
    }
}

/* ====================== Styled Title End ====================== */
/* ====================== No Data Found In Table Start ====================== */
.no-data-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

@media screen and (max-width: 991px) {
    .no-data-found {
        padding: 10px 0;
    }
}

.no-data-found img {
    max-width: 150px;
    margin: 0 auto 30px;
}

@media screen and (max-width: 991px) {
    .no-data-found img {
        max-width: 80px;
        margin-bottom: 20px;
    }
}

.no-data-found span {
    display: block;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--black) / 0.4);
}

@media screen and (max-width: 991px) {
    .no-data-found span {
        font-size: 1rem;
    }
}

/* ====================== No Data Found In Table End ====================== */
/* ====================== Nice Select Start ====================== */
.nice-select {
    height: auto;
    float: none;
}

.nice-select.form--control {
    padding-right: 35px;
}

.nice-select::after {
    width: 8px;
    height: 8px;
    right: 17px;
    margin-top: -5px;
}

.nice-select .list {
    margin-top: 1px;
}

.nice-select .option {
    line-height: 45px;
    font-size: 1rem;
}

/* ====================== Nice Select End ====================== */
/* ====================== Video Button Start ====================== */
.video-btn {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: hsl(var(--white));
    font-size: 2.1875rem;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .video-btn {
        width: 80px;
        height: 80px;
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .video-btn {
        width: 70px;
        height: 70px;
        font-size: 1.5625rem;
    }
}

.video-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base));
    border-radius: 50%;
    z-index: -1;
}

.video-btn i {
    margin-left: 10px;
}

@media screen and (max-width: 991px) {
    .video-btn i {
        margin-left: 6px;
    }
}

.video-btn .circle-txt {
    width: 150px !important;
    height: 150px !important;
    position: absolute;
    font-size: 1rem;
    line-height: 1;
    padding: 5px !important;
    border: 1px solid hsl(var(--black)/0.07);
    color: hsl(var(--black)/0.7);
    backdrop-filter: blur(10px);
    animation: spin 10s linear infinite;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .video-btn .circle-txt {
        width: 130px !important;
        height: 130px !important;
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .video-btn .circle-txt {
        width: 110px !important;
        height: 110px !important;
        font-size: 0.75rem;
    }
}

.video-btn .circle-txt p {
    font-weight: 500;
    width: 70px !important;
    height: 70px !important;
}

@media screen and (max-width: 1199px) {
    .video-btn .circle-txt p {
        width: 60px !important;
        height: 60px !important;
    }
}

@media screen and (max-width: 767px) {
    .video-btn .circle-txt p {
        width: 50px !important;
        height: 50px !important;
    }
}

.video-btn:hover {
    color: hsl(var(--white));
}

/* ====================== Video Button End ====================== */
@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ================================= Background Color Css Start =========================== */
.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--dark {
    background-color: hsl(var(--dark)) !important;
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
    color: hsl(var(--base-d-300)) !important;
}

.text--base-two {
    color: hsl(var(--base-two-d-100)) !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--dark {
    color: hsl(var(--dark)) !important;
}

/* ================================= Color Css End =========================== */
/* ================================= margin Css Start =========================== */
.my-120 {
    margin-top: 60px;
    margin-bottom: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================= margin Css End =========================== */
/* ================================= padding Css Start =========================== */
.py-120 {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

@media (min-width: 992px) {
    .py-120 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1200px) {
    .py-120 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

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

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

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

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

@media (min-width: 576px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.border--base-subtle {
    border-color: hsl(var(--base)/0.2) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.border--dark-subtle {
    border-color: hsl(var(--dark)/0.2) !important;
}

/* ================================= Border Color Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
    color: hsl(var(--body-color));
    border: 0;
    background-color: transparent !important;
    border-radius: 0;
    overflow: hidden;
}

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

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

.custom--accordion .accordion-header {
    line-height: 1;
}

.custom--accordion .accordion-body {
    padding: 20px 0 0;
    line-height: 1.8;
}

.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: 0;
}

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

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

.custom--accordion .accordion-button {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 400;
    background: transparent;
    color: hsl(var(--black)/0.7);
    border-bottom: 2px dashed hsl(var(--black)/0.1);
    padding: 0 40px 20px 0;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-button {
        font-size: 1.125rem;
        padding-top: 3px;
        padding-bottom: 15px;
    }
}

.custom--accordion .accordion-button::after {
    display: block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: hsl(var(--base-l-800));
    color: hsl(var(--base-d-200));
    border-radius: 50%;
    font-size: 1.375rem;
}

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-button::after {
        font-size: 1.125rem;
    }
}

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

.custom--accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--base-d-200));
    background: transparent;
    border-color: hsl(var(--base-two));
    box-shadow: none;
}

.custom--accordion .accordion-button[aria-expanded=true]::after, .custom--accordion .accordion-button[aria-expanded=false]::after {
    font-family: "tabler-icons";
    content: "\eaf2";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.3s;
}

.custom--accordion .accordion-button[aria-expanded=true]::after {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    -webkit-text-stroke-width: 0;
}

.custom--accordion .accordion-button[aria-expanded=false]::after {
    content: "\eb0b";
}

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

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

.btn {
    min-width: max-content;
    color: hsl(var(--white)) !important;
    font-weight: 500;
    padding: 10px 35px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    font-family: var(--body-font);
    font-size: 1.125rem;
    line-height: 1.9;
}

@media screen and (max-width: 991px) {
    .btn {
        padding: 8px 15px;
        font-size: 1rem;
    }
}

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

@media screen and (max-width: 479px) {
    .btn {
        padding: 5px 20px;
    }
}

.btn::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-size: 200% 100%;
    background-position-x: left;
    border-radius: 5px;
    transition: 0.3s;
    z-index: -1;
}

.btn:hover::after, .btn:focus::after, .btn:focus-visible::after, .btn.active::after {
    background-position-x: 99%;
}

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

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

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

.btn--sm {
    padding: 7px 12px;
    font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
    .btn--sm {
        font-size: 0.8125rem;
        padding: 3px 10px;
    }
}

.btn--icon {
    width: 35px;
    height: 35px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn--icon .ti {
    transform: translateY(5%);
}

.btn .icon {
    margin-right: 5px;
}

.btn .las, .btn .lar {
    font-size: 1.4em;
}

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

.btn--base::after {
    background-image: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-d-300)), hsl(var(--base)), hsl(var(--base-d-300))) !important;
}

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

.btn-outline--base::after {
    background-image: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-d-300)), hsl(var(--base)), hsl(var(--base-d-300))) !important;
    opacity: 0;
}

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

.btn-outline--base:hover::after, .btn-outline--base:focus::after, .btn-outline--base:focus-visible::after, .btn-outline--base.active::after {
    opacity: 1;
}

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

.btn--primary::after {
    background-image: linear-gradient(45deg, hsl(var(--primary)), hsl(var(--primary-d-300)), hsl(var(--primary)), hsl(var(--primary-d-300))) !important;
}

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

.btn-outline--primary::after {
    background-image: linear-gradient(45deg, hsl(var(--primary)), hsl(var(--primary-d-300)), hsl(var(--primary)), hsl(var(--primary-d-300))) !important;
    opacity: 0;
}

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

.btn-outline--primary:hover::after, .btn-outline--primary:focus::after, .btn-outline--primary:focus-visible::after, .btn-outline--primary.active::after {
    opacity: 1;
}

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

.btn--secondary::after {
    background-image: linear-gradient(45deg, hsl(var(--secondary)), hsl(var(--secondary-d-200)), hsl(var(--secondary)), hsl(var(--secondary-d-200))) !important;
}

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

.btn-outline--secondary::after {
    background-image: linear-gradient(45deg, hsl(var(--secondary)), hsl(var(--secondary-d-200)), hsl(var(--secondary)), hsl(var(--secondary-d-200))) !important;
    opacity: 0;
}

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

.btn-outline--secondary:hover::after, .btn-outline--secondary:focus::after, .btn-outline--secondary:focus-visible::after, .btn-outline--secondary.active::after {
    opacity: 1;
}

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

.btn--success::after {
    background-image: linear-gradient(45deg, hsl(var(--success)), hsl(var(--success-d-300)), hsl(var(--success)), hsl(var(--success-d-300))) !important;
}

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

.btn-outline--success::after {
    background-image: linear-gradient(45deg, hsl(var(--success)), hsl(var(--success-d-300)), hsl(var(--success)), hsl(var(--success-d-300))) !important;
    opacity: 0;
}

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

.btn-outline--success:hover::after, .btn-outline--success:focus::after, .btn-outline--success:focus-visible::after, .btn-outline--success.active::after {
    opacity: 1;
}

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

.btn--danger::after {
    background-image: linear-gradient(45deg, hsl(var(--danger)), hsl(var(--danger-d-300)), hsl(var(--danger)), hsl(var(--danger-d-300))) !important;
}

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

.btn-outline--danger::after {
    background-image: linear-gradient(45deg, hsl(var(--danger)), hsl(var(--danger-d-300)), hsl(var(--danger)), hsl(var(--danger-d-300))) !important;
    opacity: 0;
}

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

.btn-outline--danger:hover::after, .btn-outline--danger:focus::after, .btn-outline--danger:focus-visible::after, .btn-outline--danger.active::after {
    opacity: 1;
}

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

.btn--warning::after {
    background-image: linear-gradient(45deg, hsl(var(--warning)), hsl(var(--warning-d-300)), hsl(var(--warning)), hsl(var(--warning-d-300))) !important;
}

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

.btn-outline--warning::after {
    background-image: linear-gradient(45deg, hsl(var(--warning)), hsl(var(--warning-d-300)), hsl(var(--warning)), hsl(var(--warning-d-300))) !important;
    opacity: 0;
}

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

.btn-outline--warning:hover::after, .btn-outline--warning:focus::after, .btn-outline--warning:focus-visible::after, .btn-outline--warning.active::after {
    opacity: 1;
}

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

.btn--info::after {
    background-image: linear-gradient(45deg, hsl(var(--info)), hsl(var(--info-d-300)), hsl(var(--info)), hsl(var(--info-d-300))) !important;
}

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

.btn-outline--info::after {
    background-image: linear-gradient(45deg, hsl(var(--info)), hsl(var(--info-d-300)), hsl(var(--info)), hsl(var(--info-d-300))) !important;
    opacity: 0;
}

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

.btn-outline--info:hover::after, .btn-outline--info:focus::after, .btn-outline--info:focus-visible::after, .btn-outline--info.active::after {
    opacity: 1;
}

.btn--dark {
    border: 1px solid hsl(var(--dark)) !important;
}

.btn--dark::after {
    background-image: linear-gradient(45deg, hsl(var(--dark)), hsl(var(--dark-l-200)), hsl(var(--dark)), hsl(var(--dark-l-200))) !important;
}

.btn-outline--dark {
    border: 1px solid hsl(var(--dark)/0.3) !important;
    color: hsl(var(--dark)) !important;
}

.btn-outline--dark::after {
    background-image: linear-gradient(45deg, hsl(var(--dark)), hsl(var(--dark-l-200)), hsl(var(--dark)), hsl(var(--dark-l-200))) !important;
    opacity: 0;
}

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

.btn-outline--dark:hover::after, .btn-outline--dark:focus::after, .btn-outline--dark:focus-visible::after, .btn-outline--dark.active::after {
    opacity: 1;
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.custom--card {
    display: block;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.05);
    border-radius: 10px;
    height: 100%;
}

.custom--card .card-header {
    padding: 15px 24px;
    background: linear-gradient(45deg, hsl(var(--base-d-800)), hsl(var(--base-d-700)), hsl(var(--base-d-800)));
    border-radius: 9px 9px 0 0;
    color: hsl(var(--white));
    border: 0;
    border-bottom: 1px solid hsl(var(--black) / 0.05);
}

@media screen and (max-width: 1199px) {
    .custom--card .card-header {
        padding: 10px 15px;
    }
}

@media screen and (max-width: 991px) {
    .custom--card .card-header {
        padding: 10px 12px;
    }
}

.custom--card .card-header .title {
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--base-l-900));
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .custom--card .card-header .title {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .custom--card .card-header .title {
        font-size: 1.125rem;
    }
}

.custom--card .card-subtitle {
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--black)/0.6);
}

@media screen and (max-width: 991px) {
    .custom--card .card-subtitle {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 479px) {
    .custom--card .card-subtitle {
        font-size: 1rem;
    }
}

.custom--card .card-body {
    padding: 24px;
}

@media screen and (max-width: 1199px) {
    .custom--card .card-body {
        padding: 15px;
    }
}

@media screen and (max-width: 991px) {
    .custom--card .card-body {
        padding: 12px;
    }
}

.custom--card .card-body .card-title {
    font-size: 1.125rem;
    color: hsl(var(--black)/0.6);
    margin-bottom: 20px;
}

.custom--card .card-footer {
    padding: 12px 24px;
    background-color: transparent;
    border-top: 1px solid hsl(var(--black)/0.1);
}

/* ================================= Card Css End =========================== */
.custom--dropdown {
    position: relative;
}

.custom--dropdown.dropdown-sm .dropdown-menu {
    min-width: 170px;
}

.custom--dropdown .dropdown-menu {
    padding: 5px 10px;
    transform: scaleY(0);
    transform-origin: top center;
    top: 0;
    transition: 0.3s;
    overflow: hidden;
    box-shadow: 0 0 15px 0 hsl(var(--black)/0.05);
    border-color: hsl(var(--black)/0.05);
    border-radius: 10px;
    min-width: 200px;
    margin-top: 0 !important;
}

.custom--dropdown .dropdown-menu-end {
    left: auto;
    right: 0;
}

.custom--dropdown .dropdown-menu li {
    border-bottom: 1px solid hsl(var(--black)/0.03);
}

.custom--dropdown .dropdown-menu li:last-child {
    border-bottom: 0;
}

.custom--dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    font-weight: 500;
    font-size: 1rem;
    color: hsl(var(--black)/0.7);
    border-radius: 5px;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .custom--dropdown .dropdown-menu .dropdown-item {
        padding: 7px 5px;
    }
}

.custom--dropdown .dropdown-menu .dropdown-item.active {
    font-weight: 600;
    color: hsl(var(--base-d-100));
    background-color: transparent;
}

.custom--dropdown .dropdown-menu .dropdown-item:active, .custom--dropdown .dropdown-menu .dropdown-item:focus, .custom--dropdown .dropdown-menu .dropdown-item:hover {
    color: hsl(var(--base-d-100));
    background-color: transparent;
}

/* ================================= Form Css Start =========================== */
/* Form Label */
.form--label {
    width: max-content;
    max-width: 100%;
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
    color: hsl(var(--black)/0.7);
    font-weight: 600;
}

.form--label.required::after {
    content: "*";
    color: hsl(var(--danger));
    padding-left: 3px;
    font-size: 0.875rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1rem;
}

/* Form Select */
select {
    color: hsl(var(--black)/0.8) !important;
}

select option {
    color: hsl(var(--black)/0.8);
}

/* Form Select End */
/* Form Control Start */
.form--control {
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 10px 15px;
    background-color: hsl(var(--white)) !important;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 5px;
    color: hsl(var(--black)/0.8);
    line-height: 1.9;
    font-size: 1.125rem;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .form--control {
        padding: 8px 15px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .form--control {
        padding: 6px 15px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 479px) {
    .form--control {
        padding: 5px 10px;
    }
}

.form--control::placeholder {
    color: hsl(var(--black)/0.5);
}

.form--control:focus {
    border-color: hsl(var(--base-d-100));
    box-shadow: none;
}

.form--control:disabled, .form--control[readonly] {
    background-color: hsl(var(--black)/0.025) !important;
    opacity: 1;
}

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

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

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

.form--control[type=file]::file-selector-button {
    border: 1px solid hsl(var(--base));
    padding: 10px 25px;
    background-color: hsl(var(--base)) !important;
    transition: 0.2s linear;
    line-height: 32.2px;
    position: relative;
    color: hsl(var(--white)) !important;
}

@media screen and (max-width: 991px) {
    .form--control[type=file]::file-selector-button {
        padding: 8px 15px;
        line-height: 28.4px;
    }
}

@media screen and (max-width: 767px) {
    .form--control[type=file]::file-selector-button {
        padding: 6px 15px;
    }
}

@media screen and (max-width: 479px) {
    .form--control[type=file]::file-selector-button {
        padding: 5px 10px;
    }
}

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

.form--control--sm {
    font-size: 0.875rem;
    line-height: 1.9;
    padding: 7px 10px;
}

@media screen and (max-width: 767px) {
    .form--control--sm {
        padding: 3px 10px;
    }
}

.form--control--sm[type=file]::file-selector-button {
    padding: 3px 15px;
    line-height: 32.6px;
}

@media screen and (max-width: 767px) {
    .form--control--sm[type=file]::file-selector-button {
        line-height: 24.6px;
    }
}

.form--control.form-select {
    padding-right: 30px;
}

@media screen and (max-width: 767px) {
    .form--control.form-select {
        padding-right: 20px;
        background-position: right 0.35rem center;
        background-size: 14px 10px;
    }
}

/* Form Control End */
textarea.form--control {
    height: 130px;
}

/* Autofill Css */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active,
textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-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, textarea:-webkit-autofill, textarea:-webkit-autofill, textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--black)) !important;
    caret-color: hsl(var(--black));
}

/* Autofill Css End */
/* input group */
.input--group {
    display: flex;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 5px;
    transition: 0.3s;
}

.input--group .input-group-text {
    background-color: hsl(var(--black)/0.06);
    border-radius: 0;
    color: hsl(var(--black));
    border-width: 0;
}

.input--group .input-group-text:not(:first-child) {
    border-left-width: 1px;
}

@media screen and (max-width: 991px) {
    .input--group .input-group-text {
        font-size: 0.875rem;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.input--group .form--control {
    border-width: 0;
    border-radius: 0;
}

.input--group .form--control:not(:first-child) {
    border-left-width: 1px;
}

.input--group .form--control--sm {
    padding: 7px 10px;
}

@media screen and (max-width: 767px) {
    .input--group .form--control--sm {
        padding: 2px 10px;
    }
}

.input--group .select2-container--default:not(:first-of-type) .select2-selection--single {
    border-left-width: 1px;
}

.input--group .select2-container--default .select2-selection--single {
    border-width: 0;
    border-radius: 0;
}

.input--group .btn {
    border: 0;
    border-radius: 2px;
}

.input--group .btn--sm {
    padding: 6px 12px;
}

@media screen and (max-width: 767px) {
    .input--group .btn--sm {
        padding: 2px 10px;
    }
}

.input--group:focus-within {
    border-color: hsl(var(--base));
}

.input--group > *:first-child {
    border-radius: 4px 0 0 4px;
}

.input--group > *:first-child.select2-container--default .select2-selection--single {
    border-radius: 4px 0 0 4px;
}

.input--group > *:first-child.btn--sm::after {
    border-radius: 3px 0 0 3px;
}

.input--group > *:first-child.btn::after {
    border-radius: 4px 0 0 4px;
}

.input--group > *:last-child {
    border-radius: 0 4px 4px 0;
}

.input--group > *:last-child.select2-container--default .select2-selection--single {
    border-radius: 0 4px 4px 0;
}

.input--group > *:last-child.btn--sm::after {
    border-radius: 0 3px 3px 0;
}

.input--group > *:last-child.btn::after {
    border-radius: 0 4px 4px 0;
}

/* Show Hide Password */
input#your-password, input#confirm-password {
    padding-right: 50px;
}

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

/* --------------- Number Arrow None --------------------- */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

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

/* Custom Checkbox Design */
.form--check a {
    display: inline;
}

.form--check .form-check-input {
    background-color: transparent;
    box-shadow: none !important;
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid hsl(var(--black)/0.2);
    cursor: pointer;
}

.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: "\ea5e";
    font-family: "tabler-icons";
    font-weight: 900;
    color: hsl(var(--white));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form--check .form-check-label {
    user-select: none;
    font-weight: 600;
    width: calc(100% - 16px);
    padding-left: 5px;
    cursor: pointer;
}

@media screen and (max-width: 479px) {
    .form--check label {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 479px) {
    .form--check a {
        font-size: 0.9375rem;
    }
}

/* Custom Radio Design */
.form--radio .form-check-input {
    box-shadow: none;
    border: 1px solid hsl(var(--black)/0.2);
    position: relative;
    background-color: transparent;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.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;
}

.form--radio .form-check-label {
    user-select: none;
    font-weight: 600;
    width: calc(100% - 16px);
    padding-left: 5px;
    cursor: pointer;
}

/*  Custom Switch Design */
.form--switch .form-check-input {
    background-image: none;
    position: relative;
    box-shadow: none;
    border: 0;
    background-color: hsl(var(--black)/0.2) !important;
    padding: 10px !important;
    margin-left: 0;
    margin-bottom: 5px;
    width: 70px;
    height: 38px;
    cursor: pointer;
}

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

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

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

.form--switch .form-check-input:checked::before {
    left: calc(100% - 33px);
    background-color: hsl(var(--white)) !important;
}

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

.form--switch .form-check-label {
    width: calc(100% - 14px);
    padding-left: 5px;
    cursor: pointer;
}

/*  Custom Switch End Design */
.select2-container:not(.select2-container--open) {
    display: flex;
    width: 100% !important;
}

.select2-container--open {
    display: flex;
    width: max-content;
}

.select2-container .selection {
    display: block;
    width: 100%;
}

.select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid hsl(var(--black)/0.1);
}

.select2-container--default .select2-selection--single:focus {
    border-color: hsl(var(--base));
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    display: flex;
    line-height: inherit;
}

.select2-container .select2-selection--single .select2-selection__rendered span {
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder img {
    display: none;
}

.select2-container--open .select2-dropdown {
    /*min-width: max-content !important;*/
    border: 1px solid hsl(var(--black)/0.1);
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .select2-container--open .select2-dropdown {
        min-width: unset !important;
        font-size: 0.875rem;
    }
}

.select2-container--open .select2-dropdown.select2-dropdown--above {
    box-shadow: 0px -10px 30px -5px hsl(var(--black)/0.1);
    display: flex;
    flex-direction: column;
}

.select2-container--open .select2-dropdown.select2-dropdown--above .select2-search--dropdown {
    order: 2;
}

.select2-container--open .select2-dropdown.select2-dropdown--above .select2-results {
    order: 1;
}

.select2-container--open .select2-dropdown.select2-dropdown--below {
    box-shadow: 0 10px 30px -5px hsl(var(--black)/0.1);
}

.select2-container--default .select2-search--dropdown {
    padding: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid hsl(var(--black)/0.1);
    box-shadow: 0 0;
    padding: 10px 15px;
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .select2-container--default .select2-search--dropdown .select2-search__field {
        padding: 5px 15px;
    }
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: hsl(var(--base));
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 3px;
    height: 10px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #a8a8a85e;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background-color: #F1F1F1;
}

.select2-results__option {
    padding: 10px 15px;
}

@media screen and (max-width: 767px) {
    .select2-results__option {
        padding: 5px 10px;
    }
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: hsl(var(--black)/0.05);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: hsl(var(--base));
}

.select2-hidden-accessible {
    width: 30px !important;
    height: 56.19px !important;
}

@media screen and (max-width: 991px) {
    .select2-hidden-accessible {
        height: 48.19px !important;
    }
}

@media screen and (max-width: 767px) {
    .select2-hidden-accessible {
        height: 38.19px !important;
    }
}

.input--group .select2-hidden-accessible {
    height: 54.19px !important;
}

/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start =========================== */
.custom--modal .modal-header, .custom--modal .modal-footer {
    border-bottom: 1px solid hsl(var(--border-color));
    padding: 15px;
}

.custom--modal .modal-title {
    font-family: var(--body-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--black)/0.6);
}

.custom--modal .modal-content {
    background-color: hsl(var(--white));
    border: 0;
    border-radius: 5px;
    color: hsl(var(--body-color));
}

.custom--modal .btn-close {
    transition: 0.2s linear;
}

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

.custom--modal .btn-close:hover {
    background-color: hsl(var(--black)/0.08);
    border-radius: 50%;
}

.custom--modal .modal-body {
    padding: 20px 16px;
    background-size: 10px;
}

.custom--modal .modal-icon i {
    font-size: 2rem;
    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 {
    border-top: 1px solid hsl(var(--border-color));
}

.custom--modal .modal-footer > * {
    margin: 0;
}

.modal-backdrop {
    background-color: hsl(var(--black)/0.4);
}

.modal-backdrop.show {
    opacity: 1;
}

/* ================================= Modal Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 36px;
}

@media screen and (max-width: 1199px) {
    .pagination {
        margin-top: 28px;
    }
}

@media screen and (max-width: 991px) {
    .pagination {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .pagination {
        margin-top: 12px;
    }
}

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

.pagination .page-item .page-link {
    background: hsl(var(--white)/0.1);
    border-color: hsl(var(--base)/0.3);
    margin: 0 5px;
    border-radius: 20px;
    height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--base));
}

.pagination .page-item .page-link .ti {
    transform: translateY(0);
}

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

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

/* ================================= Pagination Css End =========================== */
/* ================================= Table Css Start =========================== */
/* Table Content Css start */
.action-buttons {
    gap: 10px;
    justify-content: flex-end;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.edit-btn {
    color: hsl(var(--info));
    background-color: hsl(var(--info)/0.08);
}

.delete-btn {
    color: hsl(var(--danger));
    background-color: hsl(var(--danger)/0.08);
}

/* Table Css Start */
.table-responsive .table {
    min-width: max-content;
}

.table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0 0;
    border-radius: 10px;
    background-color: hsl(var(--white));
}

.table.table-borderless th:not(:first-child), .table.table-borderless td:not(:first-child) {
    border-left: 0;
}

.table.table-borderless th:not(:last-child), .table.table-borderless td:not(:last-child) {
    border-right: 0;
}

.table.table--striped > tbody > tr:nth-of-type(odd) > * {
    background: hsl(var(--black)/0.025);
}

.table.table-flush {
    box-shadow: 0 0;
}

.table.table-flush > * th, .table.table-flush > * td {
    border-radius: 0 !important;
    padding-left: 0;
    padding-right: 0;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
}

.table.table-flush > * tr:first-child th, .table.table-flush > * tr:first-child td {
    padding-top: 0;
    border-top-width: 0 !important;
}

.table.table-flush > * tr:last-child th, .table.table-flush > * tr:last-child td {
    padding-bottom: 0;
    border-bottom-width: 0 !important;
}

.table thead tr th {
    text-align: center;
    padding: 14px 15px 11px;
    color: hsl(var(--base-d-400));
    font-family: var(--heading-font);
    font-weight: 500;
    border: 1px solid hsl(var(--base)/0.2);
    border-bottom: 0;
    background-color: hsl(var(--base-l-900));
    backdrop-filter: blur(10px);
}

.table thead tr th:not(:first-child) {
    border-left: 0;
}

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

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

.table thead tr th:only-child {
    border-top-left-radius: 10px !important;
    text-align: left;
}

.table > *:first-child tr:first-child th, .table > *:first-child tr:first-child td {
    border-top-width: 1px;
    border-top-style: solid;
}

.table > *:first-child tr:first-child th:first-child, .table > *:first-child tr:first-child td:first-child {
    border-radius: 10px 0 0 0;
}

.table > *:first-child tr:first-child th:last-child, .table > *:first-child tr:first-child td:last-child {
    border-radius: 0 10px 0 0;
}

.table tbody {
    border: 0 !important;
}

.table tbody tr {
    border-bottom: 1px solid hsl(var(--black)/0.05);
}

.table tbody tr:only-child td:first-child {
    border-bottom-left-radius: 10px !important;
}

.table tbody tr:only-child td:last-child {
    border-bottom-right-radius: 10px !important;
}

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

.table tbody tr:last-child td {
    border-bottom: 1px solid hsl(var(--black)/0.05);
}

.table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.table tbody tr:last-child td:only-child {
    border-bottom-left-radius: 10px;
}

.table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 10px 15px;
    border-width: 1px;
    color: hsl(var(--black)/0.7);
    font-weight: 500;
    max-width: 200px;
    border-bottom: 0px solid;
    border-right: 1px solid;
    border-color: hsl(var(--black)/0.05);
}

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

.table tbody tr td:first-child {
    text-align: left;
    border-left: 1px solid hsl(var(--black)/0.05);
}

.table tbody tr td:last-child {
    text-align: right;
    border-right: 1px solid hsl(var(--black)/0.05);
}

.table tbody tr td.no-data-table {
    border-radius: 0 0 10px 10px !important;
    justify-content: center;
}

.table tbody tr td.no-data-table::before {
    display: none;
}

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

    .table--responsive--sm tbody tr {
        display: block;
    }

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

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

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

    .table--responsive--sm tbody tr td:last-child.no-data-table {
        border-radius: 10px !important;
    }

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

    .table--responsive--sm tbody tr td:first-child.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--sm tbody tr td::before {
        display: block;
        font-size: 1rem;
    }

    .table--responsive--sm tbody tr td.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--sm tr:first-child {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .table--responsive--sm tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--black)/0.07);
        border-radius: 10px 10px 0 0 !important;
    }

    .table--responsive--sm tr:last-child {
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }

    .table--responsive--sm tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--black)/0.07) !important;
        border-radius: 0 0 10px 10px !important;
    }

    .table--responsive--sm td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--black)/0.07) !important;
        border-right: 1px solid hsl(var(--black)/0.07) !important;
    }
}

@media screen and (max-width: 767px) {
    .table--responsive--sm table tbody {
        border-top: 1px solid hsl(var(--black)/0.07) !important;
    }

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

    .table--responsive--sm td {
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
    }
}

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

    .table--responsive--md tbody tr {
        display: block;
    }

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

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

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

    .table--responsive--md tbody tr td:last-child.no-data-table {
        border-radius: 10px !important;
    }

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

    .table--responsive--md tbody tr td:first-child.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--md tbody tr td::before {
        display: block;
        font-size: 1rem;
    }

    .table--responsive--md tbody tr td.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--md tr:first-child {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .table--responsive--md tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--black)/0.07);
        border-radius: 10px 10px 0 0 !important;
    }

    .table--responsive--md tr:last-child {
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }

    .table--responsive--md tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--black)/0.07) !important;
        border-radius: 0 0 10px 10px !important;
    }

    .table--responsive--md td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--black)/0.07) !important;
        border-right: 1px solid hsl(var(--black)/0.07) !important;
    }
}

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

    .table--responsive--lg tbody tr {
        display: block;
    }

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

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

    .table--responsive--lg tbody tr td {
        display: flex;
        flex-wrap: wrap;
        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.04) !important;
        max-width: unset;
    }

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

    .table--responsive--lg tbody tr td:last-child.no-data-table {
        border-radius: 10px !important;
    }

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

    .table--responsive--lg tbody tr td:first-child.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--lg tbody tr td::before {
        display: block;
        font-size: 1rem;
    }

    .table--responsive--lg tbody tr td.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--lg tr:first-child {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .table--responsive--lg tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--black)/0.07);
        border-radius: 10px 10px 0 0 !important;
    }

    .table--responsive--lg tr:last-child {
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }

    .table--responsive--lg tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--black)/0.07) !important;
        border-radius: 0 0 10px 10px !important;
    }

    .table--responsive--lg td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--black)/0.07) !important;
        border-right: 1px solid hsl(var(--black)/0.07) !important;
    }
}

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

    .table--responsive--xl tbody tr {
        display: block;
    }

    .table--responsive--xl tbody tr td {
        display: flex;
        flex-wrap: wrap;
        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.04) !important;
        max-width: unset;
    }

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

    .table--responsive--xl tbody tr td:last-child.no-data-table {
        border-radius: 10px !important;
    }

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

    .table--responsive--xl tbody tr td:first-child.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--xl tbody tr td::before {
        display: block;
    }

    .table--responsive--xl tbody tr td.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--xl tr:first-child {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .table--responsive--xl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--black)/0.07);
        border-radius: 10px 10px 0 0 !important;
    }

    .table--responsive--xl tr:last-child {
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }

    .table--responsive--xl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--black)/0.07) !important;
        border-radius: 0 0 10px 10px !important;
    }

    .table--responsive--xl td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--black)/0.07) !important;
        border-right: 1px solid hsl(var(--black)/0.07) !important;
    }
}

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

    .table--responsive--xxl tbody tr {
        display: block;
    }

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

    .table--responsive--xxl tbody tr td {
        display: flex;
        flex-wrap: wrap;
        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.04) !important;
        max-width: unset;
    }

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

    .table--responsive--xxl tbody tr td:last-child.no-data-table {
        border-radius: 10px !important;
    }

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

    .table--responsive--xxl tbody tr td:first-child.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--xxl tbody tr td::before {
        display: block;
    }

    .table--responsive--xxl tbody tr td.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--xxl tr:first-child {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .table--responsive--xxl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--black)/0.07);
        border-radius: 10px 10px 0 0 !important;
    }

    .table--responsive--xxl tr:last-child {
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }

    .table--responsive--xxl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--black)/0.07) !important;
        border-radius: 0 0 10px 10px !important;
    }

    .table--responsive--xxl td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--black)/0.07) !important;
        border-right: 1px solid hsl(var(--black)/0.07) !important;
    }
}

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

    .table--responsive--xxxl tbody tr {
        display: block;
    }

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

    .table--responsive--xxxl tbody tr td {
        display: flex;
        flex-wrap: wrap;
        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.04) !important;
        max-width: unset;
    }

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

    .table--responsive--xxxl tbody tr td:last-child.no-data-table {
        border-radius: 10px !important;
    }

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

    .table--responsive--xxxl tbody tr td:first-child.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--xxxl tbody tr td::before {
        display: block;
    }

    .table--responsive--xxxl tbody tr td.no-data-table {
        border-radius: 10px !important;
    }

    .table--responsive--xxxl tr:first-child {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .table--responsive--xxxl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--black)/0.07);
        border-radius: 10px 10px 0 0 !important;
    }

    .table--responsive--xxxl tr:last-child {
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }

    .table--responsive--xxxl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--black)/0.07) !important;
        border-radius: 0 0 10px 10px !important;
    }

    .table--responsive--xxxl td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--black)/0.07) !important;
        border-right: 1px solid hsl(var(--black)/0.07) !important;
    }
}

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
    border: 0;
    border-bottom: 1px solid hsl(var(--black)/0.05);
    padding-bottom: 10px;
    margin-bottom: 30px;
    gap: 10px;
}

@media screen and (max-width: 991px) {
    .custom--tab {
        margin-bottom: 15px;
    }
}

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

.custom--tab .nav-link {
    color: hsl(var(--black));
    padding: 8px 25px !important;
    background-color: transparent !important;
    border-radius: 5px;
    transition: 0.4s;
    border: 1px solid hsl(var(--black)/0.08) !important;
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .custom--tab .nav-link {
        padding: 5px 15px !important;
        font-size: 0.875rem;
    }
}

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

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

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

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
    font-family: var(--body-font) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.badge--base {
    background-color: hsl(var(--base-l-900)) !important;
    color: hsl(var(--base-d-300)) !important;
    border-color: hsl(var(--base)/0.2);
}

.badge--base-two {
    background-color: hsl(var(--base-two-l-900)) !important;
    color: hsl(var(--base-two-d-200)) !important;
    border-color: hsl(var(--base-two)/0.35);
}

.badge--primary {
    background-color: hsl(var(--primary-l-900)) !important;
    color: hsl(var(--primary)) !important;
    border-color: hsl(var(--primary)/0.2);
}

.badge--secondary {
    background-color: hsl(var(--secondary-l-900)) !important;
    color: hsl(var(--secondary)) !important;
    border-color: hsl(var(--secondary)/0.2);
}

.badge--success {
    background-color: hsl(var(--success-l-900)) !important;
    color: hsl(var(--success)) !important;
    border-color: hsl(var(--success)/0.2);
}

.badge--danger {
    background-color: hsl(var(--danger-l-900)) !important;
    color: hsl(var(--danger)) !important;
    border-color: hsl(var(--danger)/0.2);
}

.badge--warning {
    background-color: hsl(var(--warning-l-900)) !important;
    color: hsl(var(--warning-d-200)) !important;
    border-color: hsl(var(--warning)/0.2);
}

.badge--info {
    background-color: hsl(var(--info-l-900)) !important;
    color: hsl(var(--info)) !important;
    border-color: hsl(var(--info)/0.2);
}

.badge--dark {
    background-color: hsl(var(--dark-l-900)) !important;
    color: hsl(var(--dark)) !important;
    border-color: hsl(var(--dark)/0.2);
}

.badge--light {
    background-color: hsl(var(--white)) !important;
    color: hsl(var(--dark)) !important;
    border-color: hsl(var(--dark)/0.1);
}

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

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

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

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

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

.alert__title {
    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: 479px) {
    .alert__desc {
        font-size: 0.8125rem;
    }
}

.alert__link {
    position: relative;
}

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

.alert__link::before {
    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.15);
    background: hsl(var(--base)/0.05);
}

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

.alert--primary {
    border-color: hsl(var(--primary)/0.15);
    background: hsl(var(--primary)/0.05);
}

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

.alert--success {
    border-color: hsl(var(--success)/0.15);
    background: hsl(var(--success)/0.05);
}

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

.alert--info {
    border-color: hsl(var(--info)/0.15);
    background: hsl(var(--info)/0.05);
}

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

.alert--danger {
    border-color: hsl(var(--danger)/0.15);
    background: hsl(var(--danger)/0.05);
}

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

.alert--warning {
    border-color: hsl(var(--warning)/0.15);
    background: hsl(var(--warning)/0.05);
}

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

.alert--secondary {
    border-color: hsl(var(--secondary)/0.15);
    background: hsl(var(--secondary)/0.05);
}

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

.alert--dark {
    border-color: hsl(var(--dark)/0.15);
    background: hsl(var(--dark)/0.05);
}

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

/* ====================================== Alert Css End =============================== */
.custom--progress {
    height: 8px;
    overflow: visible;
}

.custom--progress .progress-bar {
    background: linear-gradient(to right, hsl(var(--base)), hsl(var(--base-two)));
    border-radius: 4px;
    position: relative;
    overflow: visible;
}

.custom--progress .progress-bar .progress-txt {
    position: absolute;
    left: 100%;
    bottom: calc(100% + 2px);
    background: hsl(var(--base));
    padding: 3px 5px;
    line-height: 1;
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 2;
}

.custom--progress .progress-bar .progress-txt::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: hsl(var(--base));
    transform: rotate(45deg) translateX(-50%);
    z-index: -1;
}

.list--group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 5px;
    border-width: 0;
    border-style: solid;
}

.list--group-dashed {
    border-style: dashed;
}

.list--group.list--group-flush {
    border-radius: 0;
}

.list--group.list--group-flush > .list-group-item {
    border-width: 0 0 1px;
}

.list--group.list--group-flush > .list-group-item:last-child {
    border-bottom-width: 0;
}

.list--group.list-group-horizontal {
    flex-direction: row;
}

.list--group.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: inherit;
    border-top-right-radius: 0;
}

.list--group.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: inherit;
    border-bottom-left-radius: 0;
}

.list--group.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
}

@media (min-width: 480px) {
    .list--group.list-group-horizontal-xsm {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-xsm > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-xsm > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-xsm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 576px) {
    .list--group.list-group-horizontal-sm {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-sm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 768px) {
    .list--group.list-group-horizontal-md {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-md > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 992px) {
    .list--group.list-group-horizontal-lg {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-lg > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 1200px) {
    .list--group.list-group-horizontal-xl {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-xl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 1400px) {
    .list--group.list-group-horizontal-xxl {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-xxl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

.list--group .list-group-item {
    position: relative;
    display: block;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 1rem;
    border-style: inherit;
    transition: 0.3s;
}

.list--group .list-group-item + .list-group-item {
    border-top-width: 0;
}

.list--group .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.list--group .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}

.list--group .list-group-item.active {
    z-index: 2;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.list--group .list-group-item.disabled, .list--group .list-group-item:disabled {
    color: hsl(var(--black)/0.5);
    pointer-events: none;
    background-color: hsl(var(--black)/0.02);
}

.list--group .list-group-item-action:focus, .list--group .list-group-item-action:hover {
    z-index: 1;
    background-color: hsl(var(--black)/0.05);
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-top-color: hsl(var(--base));
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-inner, .bs-tooltip-top .tooltip-inner {
    border-bottom: 2px solid hsl(var(--base));
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: hsl(var(--base));
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-inner, .bs-tooltip-bottom .tooltip-inner {
    border-top: 2px solid hsl(var(--base));
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-left .tooltip-arrow::before {
    border-left-color: hsl(var(--base));
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-inner, .bs-tooltip-left .tooltip-inner {
    border-right: 2px solid hsl(var(--base));
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-right .tooltip-arrow::before {
    border-right-color: hsl(var(--base));
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-inner, .bs-tooltip-right .tooltip-inner {
    border-left: 2px solid hsl(var(--base));
}

.tooltip.show {
    opacity: 1;
}

.tooltip-lg .tooltip-inner {
    max-width: 500px;
}

.tooltip-sm .tooltip-inner {
    padding: 10px;
    font-size: 0.875rem;
}

.tooltip-inner {
    max-width: 250px;
    background: hsl(var(--white));
    color: hsl(var(--black)/0.7);
    box-shadow: 0 10px 20px 0 hsl(var(--black)/0.05);
    border: 1px solid hsl(var(--black)/0.05);
    border-radius: 5px;
    padding: 15px;
    font-size: 1rem;
}

/* ================================= preload Css Start =========================== */
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: hsl(var(--base-l-900));
    width: 100%;
    height: 100%;
}

.loader-p {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader-p:before, .loader-p:after {
    content: "";
    border: 1em solid hsl(var(--base));
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader-p:before {
    animation-delay: 0.5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

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

/* ================================= preload Css End ===========================  */
/* ============= Header Start Here ======================= */
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand.logo .logo-2 {
    display: none;
}

.header.fixed-header .navbar-brand.logo .logo-1 {
    display: none;
}

.header.fixed-header .navbar-brand.logo .logo-2 {
    display: block;
}

.navbar-brand.logo img {
    max-width: 190px;
    max-height: 60px;
}

@media screen and (max-width: 991px) {
    .navbar-brand.logo img {
        max-width: 130px;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid hsl(var(--white) / 0.3);
    z-index: 111;
}

@media screen and (max-width: 1199px) {
    .header {
        padding: 10px 0;
        background: hsl(var(--dark-d-500));
        z-index: 999;
        max-height: 101vh;
        overflow-y: auto;
    }

    .header::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .header::-webkit-scrollbar-thumb {
        border-radius: 0;
    }
}

.header.fixed-header {
    background-color: hsl(var(--white));
    border-color: hsl(var(--black) / 0.06);
    position: fixed;
    transition: 0.3s linear;
    top: 0;
    animation: slide-down 0.8s;
    width: 100%;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-150%);
    }

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

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

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

.navbar {
    padding: 0 !important;
}

/* ========================= Desktop Device Start ========================= */
@media (min-width: 1200px) {
    .header .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header .nav-menu .nav-item {
        font-family: var(--heading-font);
        position: relative;
        padding-right: 30px;
    }

    @media (max-width: 1399px) {
        .header .nav-menu .nav-item {
            padding-right: 20px;
        }
    }

    .header .nav-menu .nav-item:last-child {
        padding-right: 0;
    }

    .header .nav-menu .nav-item.active .nav-link {
        color: hsl(var(--base));
    }

    .header .nav-menu .nav-item.active .nav-link::before {
        width: 100%;
    }

    .header .nav-menu .nav-item:hover .nav-link {
        color: hsl(var(--base-d-200));
    }

    .header .nav-menu .nav-item:hover .nav-link::before {
        width: 100%;
    }

    .header .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(180deg);
        transition: 0.2s;
    }

    .header .nav-menu .nav-item .nav-link {
        font-weight: 400;
        font-size: 1.125rem;
        line-height: 1;
        color: hsl(var(--white) / 0.85);
        padding: 40px 0;
        position: relative;
        cursor: pointer;
        /* ======================== Style two ================ */
    }

    .header.fixed-header .nav-menu .nav-item .nav-link {
        color: hsl(var(--black) / 0.7);
    }

    .header .nav-menu .nav-item .nav-link .ti {
        transform: translateY(15%);
        font-size: 1em;
        line-height: 14px;
    }

    .header .nav-menu .nav-item .nav-link:hover::before {
        left: 0;
        transition: 0.3s;
    }

    .header .nav-menu .nav-item .nav-link::before {
        position: absolute;
        content: "";
        right: 0;
        bottom: 30px;
        width: 0;
        height: 2px;
        background-color: hsl(var(--base));
        transition: 0.3s;
    }

    .header .nav-menu .nav-item .nav-link .nav-item__icon {
        transition: 0.3s;
        font-size: 0.8125rem;
        margin-left: 2px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 991px) {
    .header .nav-menu .nav-item .nav-link .nav-item__icon {
        margin-right: 6px;
    }
}

@media (min-width: 1200px) {
    .header .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        top: 100%;
        left: 0;
        padding: 5px 15px;
        transform: scaleY(0);
        transform-origin: top center;
        transition: 0.3s;
        overflow: hidden;
        border-color: hsl(var(--black)/0.08);
        border-radius: 5px;
        min-width: 200px;
        margin-top: 0 !important;
    }

    .header .dropdown-menu-end {
        left: auto;
        right: 0;
    }

    .header .dropdown-menu__list {
        border-bottom: 1px solid hsl(var(--black)/0.03);
    }

    .header .dropdown-menu__list:last-child {
        border-bottom: 0;
    }

    .header .dropdown-menu__link {
        padding: 10px 0;
        font-weight: 500;
        font-size: 1rem;
        color: hsl(var(--black)/0.7);
        border-radius: 5px;
        transition: 0.3s;
    }

    .header .dropdown-menu__link:focus, .header .dropdown-menu__link:hover {
        color: hsl(var(--base-d-300));
        background-color: transparent;
    }
}

@media (min-width: 1200px) {
    .header .nav-menu .custom--dropdown:hover .dropdown-menu,
    .header .nav-menu .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100% !important;
        transform: scaleY(1);
    }
}

/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 1199px) {
    .header .navbar-collapse {
        max-height: 300px;
        overflow: auto;
    }

    .header .nav-menu {
        margin-top: 20px;
    }

    .header .nav-menu .nav-item {
        text-align: left;
        display: block;
        position: relative;
        margin: 0;
    }

    .header .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(0deg) !important;
    }

    .header .nav-item:first-child {
        border-bottom: none;
    }

    .header .nav-item:last-child > a {
        border-bottom: 0;
    }

    .header .nav-item.active .nav-link {
        color: hsl(var(--base));
    }

    .header .nav-item .nav-link {
        font-size: 0.875rem;
        padding: 10px 10px 10px 0 !important;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 !important;
        border-bottom: 1px solid hsl(var(--white)/0.05);
        color: hsl(var(--white));
    }

    .header.fixed-header .nav-item .nav-link {
        color: hsl(var(--body-color));
        border-color: hsl(var(--black) / .05);
    }

    .header .nav-item .nav-link::before {
        display: none;
    }

    .header .nav-item .nav-link:focus-visible {
        box-shadow: 0 0;
    }

    .header .nav-item .nav-link.show[aria-expanded=true] {
        color: hsl(var(--base-d-300)) !important;
    }

    .header .nav-item .nav-link.show[aria-expanded=true] i {
        transform: rotate(180deg);
    }

    .header .dropdown-menu {
        padding: 5px 10px;
        transform-origin: top center;
        transform: scale(1);
        transition: 0.3s;
        overflow: hidden;
        box-shadow: 0 0;
        border-color: hsl(var(--black)/0.05);
        border-radius: 5px;
        margin-top: 5px !important;
    }

    .header .dropdown-menu__list {
        border-bottom: 1px solid hsl(var(--black)/0.03);
    }

    .header .dropdown-menu__list:last-child {
        border-bottom: 0;
    }

    .header .dropdown-menu__link {
        padding: 10px 0;
        font-weight: 500;
        font-size: 0.875rem;
        color: hsl(var(--black)/0.7);
        border-radius: 5px;
        transition: 0.3s;
    }

    .header .dropdown-menu__link:focus, .header .dropdown-menu__link:hover {
        color: hsl(var(--base-d-300));
        background-color: transparent;
    }
}

.header .navbar-toggler.header-button {
    width: 40px;
    height: 40px;
    border-color: transparent;
    color: hsl(var(--white));
    background: hsl(var(--base)) !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 5px;
    transition: 0.15s ease-in-out;
    font-size: 1.25rem;
}

.header .navbar-toggler.header-button i {
    transform: translateY(0%);
}

.header .navbar-toggler.header-button:focus {
    box-shadow: none !important;
}

.header .navbar-toggler.header-button[aria-expanded=true] i::before {
    content: "\eb55";
}

.header .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 40px;
    line-height: 38px;
}

@media screen and (max-width: 1199px) {
    .body-overlay.show {
        visibility: visible;
        opacity: 1;
    }
}

.language-box {
    font-family: var(--body-font);
}

.language-box.language-box-web select {
    height: 40px;
    line-height: 2;
    border-color: hsl(var(--black)/0.1);
    padding: 0 30px 0 15px;
}

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

.language-box .select {
    height: 40px;
    line-height: 2;
    border-color: hsl(var(--black)/0.1);
    padding: 0 30px 0 15px;
}

.language-box .select .current {
    line-height: 2;
}

@media screen and (max-width: 1199px) {
    .language-box .select .current {
        line-height: 2.3;
    }
}

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

/* ================================= Header Css End =========================== */
.header-2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    border-bottom: 1px solid hsl(var(--black)/0.05);
    display: flex;
    align-items: center;
    background: hsl(var(--white));
    background-attachment: fixed;
    z-index: 11;
}

@media screen and (max-width: 767px) {
    .header-2 {
        height: 105px;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
}

.header-2 .logo {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    border-right: 1px solid hsl(var(--black)/0.05);
}

@media screen and (max-width: 767px) {
    .header-2 .logo {
        width: 100%;
        padding: 0 15px;
    }
}

.header-2 .logo .sidebar-toggler {
    display: none;
}

@media screen and (max-width: 1399px) {
    .header-2 .logo .sidebar-toggler {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: hsl(var(--base));
        border-radius: 5px;
        color: hsl(var(--white));
        font-size: 1.875rem;
    }
}

.header-2 .logo img {
    max-width: 125px;
}

.header-2 .header-menu {
    width: calc(100% - 300px);
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .header-2 .header-menu {
        width: 100%;
        padding: 0 15px;
    }
}

.header-2 .header-menu .account-info {
    max-width: 67%;
}

.header-2 .header-menu .page-name {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .header-2 .header-menu .page-name {
        font-size: 1.125rem;
        color: hsl(var(--base-d-100));
        font-weight: 600;
    }
}

.header-2__user {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-2__user__txt {
    text-align: right;
}

.header-2__user__username {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 7px;
}

.header-2__user__balance {
    display: block;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
}

.header-2__user__img {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, hsl(var(--base-l-600)), hsl(var(--base-two-l-800)), hsl(var(--base-l-600)));
    border-radius: 50%;
    overflow: hidden;
}

/* ============= Footer Start Here ======================= */
.footer-area {
    margin-top: auto;
    background: hsl(var(--black-h), calc(var(--black-s)), calc(var(--black-l) + (100% - var(--black-l)) * 0.11));
}

.footer-item {
    color: hsl(var(--white)/0.75);
}

.footer-item__logo {
    margin-bottom: 20px;
}

.footer-item__logo a img {
    width: 100%;
    height: 100%;
    max-width: 190px;
    max-height: 64px;
}

.footer-item__title {
    font-weight: 500;
    color: hsl(var(--white));
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
}

.footer-item__title::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    left: 0;
    bottom: -2px;
    background-color: hsl(var(--base));
}

.footer-item .social-list {
    margin-top: 30px;
}

@media screen and (max-width: 991px) {
    .footer-item .social-list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 575px) {
    .footer-item .social-list {
        margin-top: 15px;
    }
}

/* Footer List Item */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu__item {
    display: block;
    padding-bottom: 16px;
}

.footer-menu__item:last-child {
    padding-bottom: 0;
}

.footer-menu__link {
    color: hsl(var(--white)/0.75);
}

.footer-menu__link:hover {
    color: hsl(var(--base-l-100));
    text-decoration: underline;
}

/* Footer Contact */
.footer-contact-menu__item {
    display: flex;
    padding-bottom: 12px;
    color: hsl(var(--white)/0.75);
}

.footer-contact-menu__item:last-child {
    padding-bottom: 0;
}

.footer-contact-menu__item-icon {
    color: hsl(var(--base));
}

.footer-contact-menu__item-content {
    width: calc(100% - 15px);
    padding-left: 15px;
}

/* ============= Footer End Here ======================= */
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
    border-top: 1px solid hsl(var(--white)/0.1);
    color: hsl(var(--white)/0.65);
}

/* =============Bottom Footer End Here ======================= */
/* ===================== Scroll to Top Start ================================= */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: hsl(var(--white));
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
    transition: 0.5s;
    cursor: pointer;
    transform: scale(0);
    background-color: hsl(var(--base));
    font-size: 1.563rem;
}

@media screen and (max-width: 767px) {
    .scroll-top {
        right: 15px;
        bottom: 15px;
    }
}

.scroll-top:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-100));
}

.scroll-top.show {
    transform: scale(1);
}

.scroll-top .ti {
    transform: translateY(0);
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ================================= Social Icon Css Start =========================== */
.social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.social-list__item {
    margin-right: 10px;
}

.social-list__item:last-child {
    margin-right: 0;
}

.social-list__item .ti {
    transform: translateY(0);
}

.social-list__link {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.social-list__link:hover, .social-list__link:focus {
    background-color: hsl(var(--base-d-100));
    color: hsl(var(--white)) !important;
}

@media screen and (max-width: 767px) {
    .social-list__link {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
}

/* ================================= Social Icon Css End ===========================  */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
    margin-bottom: 0;
    background: hsl(var(--base-d-500));
    padding: 199px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, hsl(var(--black) / 0.8), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--black) / 0.8));
        z-index: -1;
    }
}

@media screen and (max-width: 1199px) {
    .breadcrumb {
        padding: 161px 0 100px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb {
        padding: 141px 0 80px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        padding: 121px 0 60px;
    }
}

@media screen and (max-width: 575px) {
    .breadcrumb {
        padding: 111px 0 50px;
    }
}

.breadcrumb__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.breadcrumb__vector {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(30%);
    width: 300px;
    aspect-ratio: 1 / 1;
    z-index: 1;
    @media (max-width:1599px) {
        width: 250px;
    }
    @media (max-width:1399px) {
        width: 200px;
    }
    @media (max-width:991px) {
        width: 150px;
    }
    @media (max-width:767px) {
        width: 100px;
    }
    @media (max-width:575px) {
        display: none;
    }
}

.breadcrumb__vector img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.breadcrumb__wrapper {
    text-align: center;
}

.breadcrumb__title {
    font-size: 6.25rem;
    font-weight: 600;
    color: hsl(var(--dark-d-500));
    background: linear-gradient(90deg, hsl(var(--base-two-d-200)), hsl(var(--base-d-200)));
    background-clip: text;
    -webkit-text-stroke-color: transparent;
    -webkit-text-stroke-width: 3px;
    margin-top: -26px;
    margin-bottom: -26px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1599px) {
    .breadcrumb__title {
        font-size: 5.625rem;
        margin-top: -24px;
        margin-bottom: -23px;
    }
}

@media screen and (max-width: 1399px) {
    .breadcrumb__title {
        font-size: 4.375rem;
        margin-top: -18px;
        margin-bottom: -18px;
    }
}

@media screen and (max-width: 1199px) {
    .breadcrumb__title {
        font-size: 3.75rem;
        margin-top: -12px;
        margin-bottom: -15px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb__title {
        font-size: 3.125rem;
        margin-top: -10px;
        margin-bottom: -12px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb__title {
        font-size: 2.5rem;
        -webkit-text-stroke-width: 2px;
        margin-top: -10px;
        margin-bottom: -10px;
    }
}

@media screen and (max-width: 575px) {
    .breadcrumb__title {
        font-size: 2.188rem;
        -webkit-text-stroke-width: 2px;
        margin-top: -8px;
        margin-bottom: -10px;
    }
}

.breadcrumb__list {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: -2px;
}

@media screen and (max-width: 991px) {
    .breadcrumb__list {
        gap: 5px;
        font-size: 0.875rem;
    }
}

.breadcrumb__list li {
    display: flex;
    position: relative;
    color: hsl(var(--black)/0.6);
    padding-right: 30px;
}

@media screen and (max-width: 991px) {
    .breadcrumb__list li {
        padding-right: 20px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb__list li::after {
        font-size: 0.75rem;
    }
}

.breadcrumb__list li:last-child {
    padding-right: 0;
}

.breadcrumb__list li:last-child::after {
    display: none;
}

.breadcrumb__list li a {
    color: hsl(var(--black)/0.7);
}

/* ====================== Breadcrumb Css End ==================== */
.post-sidebar {
    position: sticky;
    top: 100px;
}

.post-sidebar__card {
    padding: 25px;
    background: hsl(var(--section-bg));
    background-image: linear-gradient(45deg, hsl(var(--base-two-l-800) / .35) 50%, hsl(var(--base-l-800) / .35) 50%);
    background-size: 5px 5px;
    border: 1px solid hsl(var(--black)/0.02);
    border-radius: 10px;
    margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
    .post-sidebar__card {
        max-width: 350px;
        padding: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

.post-sidebar__card:last-of-type {
    margin-bottom: 0;
}

.post-sidebar__card__header {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--black)/0.6);
    border-bottom: 1px solid hsl(var(--border-color));
    padding-bottom: 10px;
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
    &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(calc(-50% - 5px));
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        border-left: 9px solid hsl(var(--base));
        border-radius: 3px;
    }
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 7px;
        transform: translateY(calc(-50% - 5px));
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        border-left: 9px solid hsl(var(--base-two));
        border-radius: 3px;
    }
}

@media screen and (max-width: 991px) {
    .post-sidebar__card__header {
        font-size: 1.25rem;
    }
}

.post-sidebar__card__subtitle {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--black)/0.6);
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.post-sidebar__card__subtitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background: hsl(var(--black)/0.15);
}

.post-sidebar__recent-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (max-width: 991px) {
    .post-sidebar__recent-post {
        gap: 15px;
    }
}

.post-sidebar__recent-post__link {
    display: flex;
    gap: 15px;
    color: hsl(var(--black)/0.5);
}

.post-sidebar__recent-post__link:hover {
    color: hsl(var(--base-d-300));
}

.post-sidebar__recent-post__link:hover .post-sidebar__recent-post__thumb {
    filter: brightness(1.1);
}

.post-sidebar__recent-post__thumb {
    width: 85px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    filter: brightness(0.9);
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .post-sidebar__recent-post__thumb {
        width: 75px;
        height: 55px;
    }
}

.post-sidebar__recent-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-sidebar__recent-post__txt {
    width: calc(100% - 100px);
    font-size: 1rem;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .post-sidebar__recent-post__txt {
        width: calc(100% - 90px);
    }
}

.post-sidebar__job-information li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .post-sidebar__job-information li {
        gap: 10px;
        margin-bottom: 15px;
    }
}

.post-sidebar__job-information li:last-child {
    margin-bottom: 0;
}

.post-sidebar__job-information__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, hsl(var(--base-two-l-900)/0.5), hsl(var(--base-l-900)/0.5), hsl(var(--base-two-l-900)/0.5));
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.125rem;
    color: hsl(var(--black)/0.6);
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .post-sidebar__job-information__icon {
        width: 65px;
        height: 65px;
        font-size: 2.5rem;
        border-radius: 7px;
    }
}

.post-sidebar__job-information__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-sidebar__job-information__txt {
    width: calc(100% - 95px);
}

@media screen and (max-width: 991px) {
    .post-sidebar__job-information__txt {
        width: calc(100% - 75px);
    }
}

.post-sidebar__job-information__name {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--black)/0.5);
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .post-sidebar__job-information__name {
        font-size: 0.875rem;
    }
}

.post-sidebar__job-information__info {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--base-d-100));
}

@media screen and (max-width: 1399px) {
    .post-sidebar__job-information__info {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .post-sidebar__job-information__info {
        font-size: 1rem;
    }
}

/* ================================= Start Rating Css Start =========================== */
.rating-list {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.rating-list__item {
    color: hsl(var(--warning));
}

.rating-list__text {
    display: block;
    font-weight: 600;
    line-height: 1;
}

/* ================================= Start Rating Css End =========================== */

/* ============ Home Page Sections Start ============ */
/* Banner Section Start */
/* ====================== Banner Css Start ==================== */
.banner-section {
    background: hsl(var(--base-d-500));
    padding: 279px 0 180px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, hsl(var(--black) / 0.8), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--black) / 0.8));
        z-index: -1;
    }
}

@media screen and (max-width: 1399px) {
    .banner-section {
        padding: 249px 0 150px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-section {
        padding: 181px 0 120px;
    }
}

@media screen and (max-width: 991px) {
    .banner-section {
        padding: 161px 0 100px;
    }
}

@media screen and (max-width: 767px) {
    .banner-section {
        padding: 141px 0 80px;
    }
}

@media screen and (max-width: 575px) {
    .banner-section {
        padding: 121px 0 60px;
    }
}

.banner-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position-y: top !important;
    z-index: -1;
}

.banner-section__form .custom--card {
    background: hsl(var(--base-two) / .2);
    border-color: hsl(var(--base-two) / .4);
    backdrop-filter: blur(5px);
}
.banner-section__form .custom--card .card-body {
    padding: 40px;
}

@media screen and (max-width: 1399px) {
    .banner-section__form .custom--card .card-body {
        padding: 30px;
    }
}

@media screen and (max-width: 991px) {
    .banner-section__form .custom--card .card-body {
        padding: 20px;
    }
}

.banner-section__form .row {
    margin-top: -35px;
    @media (max-width: 1399px) {
        margin-top: -30px;
    }
    @media (max-width: 1199px) {
        margin-top: -25px;
    }
    @media (max-width: 991px) {
        margin-top: -20px;
    }
}

.banner-section__form .row >* {
    margin-top: 35px;
    @media (max-width: 1399px) {
        margin-top: 30px;
    }
    @media (max-width: 1199px) {
        margin-top: 25px;
    }
    @media (max-width: 991px) {
        margin-top: 20px;
    }
}

.banner-section__form .form--label {
    font-size: 1.125rem;
    color: hsl(var(--white));
    margin-bottom: 11px;
    @media (max-width: 991px) {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 6px;
    }
}

.banner-section__form .form--control {
    color: hsl(var(--white));
    background-color: transparent !important;
    border-color: hsl(var(--white) / .3);
    border-radius: 10px;
    &:-webkit-autofill,
    &:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px transparent inset;
        -webkit-text-fill-color: hsl(var(--white)) !important;
        caret-color: hsl(var(--white));
    }
    &::placeholder {
        color: hsl(var(--white)/0.4);
    }
}

.banner-section__form .form--control.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='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.banner-section__form .input--group {
    border-color: hsl(var(--white) / .3);
    border-radius: 10px;
}

.banner-section__form .input--group .form--control {
    border: 0;
}

.banner-section__form .input--group .input-group-text {
    color: hsl(var(--white));
    background-color: hsl(var(--white) / .1);
    border: 0;
}

.banner-section__form .input--group > *:first-child {
    border-radius: 9px 0 0 9px;
}

.banner-section__form .input--group > *:last-child {
    border-radius: 0 9px 9px 0;
}

.banner-section__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: hsl(var(--white));
}

.banner-section__vector-1 {
    position: absolute;
    bottom: 70px;
    left: 30px;
    width: 170px;
    height: 170px;
    @media (max-width: 1399px) {
        bottom: 20px;
        left: 15px;
        width: 120px;
        height: 120px;
    }
    @media (max-width: 991px) {
        bottom: 10px;
        left: 10px;
        width: 100px;
        height: 100px;
    }
    @media (max-width: 575px) {
        display: none;
    }
}

.banner-section__vector-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-section__vector-2 {
    position: absolute;
    top: 150px;
    right: 100px;
    width: 150px;
    height: 150px;
    @media (max-width: 1399px) {
        top: 114px;
        right: 15px;
        width: 120px;
        height: 120px;
    }
    @media (max-width: 1199px) {
        top: 81px;
    }
    @media (max-width: 991px) {
        top: 70px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    @media (max-width: 575px) {
        display: none;
    }
}

.banner-section__vector-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-content {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .banner-content {
        margin-bottom: 35px;
    }
}

.banner-content__subtitle {
    width: max-content;
    background: linear-gradient(45deg, hsl(var(--base-l-100)), hsl(var(--base-two)), hsl(var(--base-l-100)));
    background-clip: text;
    color: transparent;
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 500;
    padding-left: 50px;
    margin-top: -7px;
    margin-bottom: 1.25rem;
    position: relative;
    &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 25px;
        height: 25px;
        background: hsl(var(--base));
        transform: translateY(-50%);
        border-radius: 50%;
        @media (max-width: 991px) {
            width: 20px;
            height: 20px;
        }
    }
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 15px;
        width: 25px;
        height: 25px;
        background: hsl(var(--base-two));
        transform: translateY(-50%);
        border-radius: 50%;
        @media (max-width: 991px) {
            left: 10px;
            width: 20px;
            height: 20px;
        }
    }
}

@media screen and (max-width: 1399px) {
    .banner-content__subtitle {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__subtitle {
        font-size: 1.125rem;
        padding-left: 40px;
        margin-top: -4px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__subtitle {
        margin: -4px auto 20px;
    }
}

.banner-content__title {
    font-size: 9.375rem;
    line-height: 1.1;
    font-weight: 500;
    color: hsl(var(--white));
    margin-bottom: -26px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .banner-content__title {
        font-size: 6.875rem;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__title {
        font-size: 5.625rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__title {
        font-size: 3.75rem;
        line-height: 1.3;
        margin-bottom: -13px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__title {
        text-align: center;
        font-size: 2.188rem;
        line-height: 1.3;
        margin-bottom: -9px;
    }
}

.banner-content__title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    transform: translate(-20%, -20%);
    background: linear-gradient(135deg, hsl(var(--base-two-l-800)), transparent 60%);
    border-radius: 50%;
    z-index: -1;
    display: none;
}

.banner-content .video-btn {
    margin-left: 25px;
    margin-bottom: 25px;
}

.banner-section__thumb {
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 725px;
    transform: translateX(-50%);
    opacity: 0.1;
    @media (max-width: 767px) {
        top: 0;
        bottom: auto;
        width: 100%;
        max-width: 350px;
        opacity: 0.07;
    }
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(hsl(var(--dark-d-500)), transparent, transparent, hsl(var(--dark-d-500)));
    }
}

/* ====================== Banner Css End ==================== */
/* Banner Section End */
/* About Section Start */
/* ====================== About Css Start ==================== */
.about {
    position: relative;
    z-index: 2;
}

.about__vector-1 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0.05;
    z-index: -1;
}

.about__txt p {
    margin-top: -8px;
    margin-bottom: 31px;
    @media (max-width: 1199px) {
        margin-top: -7px;
    }
}

.about__txt p:last-child {
    margin-bottom: -8px;
}

@media screen and (max-width: 1199px) {
    .about__list {
        display: flex;
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .about__list {
        display: block;
    }
}

.about__list-1 {
    padding-right: 50px;
}

@media screen and (max-width: 1399px) {
    .about__list-1 {
        padding-right: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .about__list-1 {
        padding-right: 0;
    }
}

.about__list-2 {
    padding-left: 50px;
}

@media screen and (max-width: 1399px) {
    .about__list-2 {
        padding-left: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .about__list-2 {
        padding-left: 0;
    }
}

.about__list li {
    background: linear-gradient(45deg, hsl(var(--base-l-900) / .3), hsl(var(--base-two-l-900) / .3));
    background-color: hsl(var(--white));
    padding: 30px;
    border: 1px solid hsl(var(--secondary-l-900));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    &::before {
        content: "";
        position: absolute;
        top: -40px;
        left: -40px;
        width: 200px;
        height: 200px;
        background: linear-gradient(45deg, hsl(var(--base-l-800)), hsl(var(--base-two-l-800)));
        border-radius: 50%;
        opacity: 0.25;
        z-index: -1;
    }
    &::after {
        content: "";
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        background: linear-gradient(45deg, hsl(var(--base-two-l-800)), hsl(var(--base-l-800)));
        border-radius: 50%;
        opacity: 0.25;
        z-index: -1;
    }
}

@media screen and (max-width: 1199px) {
    .about__list li {
        width: calc(50% - 10px);
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .about__list li {
        width: 100%;
        padding: 25px;
        margin-bottom: 25px;
    }
}

.about__list li:last-child {
    margin-bottom: 0;
}

.about__list__icon {
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .about__list__icon {
        width: 50px;
        height: 50px;
    }
}

.about__list__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about__list__title {
    font-family: var(--heading-font);
    display: block;
    font-size: 1.563rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 14px;
}

@media screen and (max-width: 991px) {
    .about__list__title {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }
}

.about__list__desc {
    display: block;
    margin-bottom: -9px;
}

.about__thumb {
    position: relative;
}

.about__thumb__content {
    position: absolute;
    bottom: 50px;
    left: 0;
    text-align: center;
    background: hsl(var(--white));
    background: linear-gradient(45deg, hsl(var(--base-l-700)), hsl(var(--base-two-l-800)), hsl(var(--base-l-700)));
    padding: 20px 40px;
    box-shadow: 0 10px 50px -10px hsl(var(--black)/0.1);
    border-radius: 5px;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 600;
    z-index: 2;
}

.about__thumb__content::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    border: 1px dashed hsl(var(--base));
    border-radius: 5px;
}

.about__thumb__content span {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.5625rem;
    font-weight: 700;
    color: hsl(var(--base-d-200));
    margin-bottom: 10px;
}

.about__card__title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    border-bottom: 1px dashed hsl(var(--dark-l-700));
    padding-bottom: 18px;
    margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
    .about__card__title {
        font-size: 1.5625rem;
        padding-bottom: 12px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .about__card__title {
        font-size: 1.25rem;
        padding-bottom: 14px;
    }
}

.about__card__content {
    margin-bottom: -9px;
}

/* ====================== About Css End ==================== */
/* About Section End */
/* Process Section Start */

.process__cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    @media (max-width:1399px) {
        gap: 40px;
    }
    @media (max-width:991px) {
        gap: 30px;
    }
}

.process__card {
    position: sticky;
    top: 99px;
    width: 1200px;
    background-color: hsl(var(--white));
    box-shadow: 0px 0px 40px 0px hsl(var(--black) / .01);
    border: 1px solid hsl(var(--secondary-l-900));
    border-radius: 10px;
    padding: 50px;
    &:nth-child(even) {
        margin-left: auto;
    }
    @media (max-width: 1399px) {
        width: 900px;
        padding: 40px;
    }
    @media (max-width: 1199px) {
        top: 61px;
        width: 750px;
        padding: 40px;
    }
    @media (max-width: 991px) {
        width: 550px;
        padding: 30px;
    }
    @media (max-width: 767px) {
        top: 61px;
        width: 100%;
    }
}

.process__card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 767px) {
    .process__card-body {
        display: block;
    }
}

.process__card:nth-child(even) .process__card-body {
    flex-direction: row-reverse;
}

.process__icon {
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .process__icon {
        width: 250px;
        height: 250px;
    }
}

@media screen and (max-width: 1199px) {
    .process__icon {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 991px) {
    .process__icon {
        width: 130px;
        height: 130px;
    }
}

@media screen and (max-width: 767px) {
    .process__icon {
        width: 150px;
        height: 150px;
        margin: auto;
        margin-bottom: 20px;
    }
}

.process__index {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: var(--heading-font);
    font-size: 1.875rem;
    font-weight: 700;
    border-radius: 5px;
    background: linear-gradient(-45deg, hsl(var(--base)), hsl(var(--base-d-200)), hsl(var(--base)));
    box-shadow: 5px 5px 0px 0px hsl(var(--base-two));
    color: hsl(var(--white));
    margin-bottom: 24px;
}

@media screen and (max-width: 1399px) {
    .process__index {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 991px) {
    .process__index {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.563rem;
    }
}

@media screen and (max-width: 767px) {
    .process__index {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.25rem;
        margin: 0 auto 24px;
    }
}

.process__txt {
    width: calc(100% - 400px);
    padding: 50px 0 50px 50px;
    border-left: 1px solid hsl(var(--black) / .1);
}

@media screen and (max-width: 1399px) {
    .process__txt {
        width: calc(100% - 290px);
        padding: 40px 0 40px 40px;
    }
}

@media screen and (max-width: 1199px) {
    .process__txt {
        width: calc(100% - 235px);
        padding: 35px 0 35px 35px;
    }
}

@media screen and (max-width: 991px) {
    .process__txt {
        width: calc(100% - 160px);
        padding: 30px 0 30px 30px;
    }
}

@media screen and (max-width: 767px) {
    .process__txt {
        width: 100%;
        padding: 0;
        border: 0;
    }
}

.process__card:nth-child(even) .process__txt {
    padding: 50px 50px 50px 0;
    border-left: 0;
    border-right: 1px solid hsl(var(--black) / .1);
}

@media screen and (max-width: 1399px) {
    .process__card:nth-child(even) .process__txt {
        padding: 40px 40px 40px 0;
    }
}

@media screen and (max-width: 1199px) {
    .process__card:nth-child(even) .process__txt {
        padding: 35px 35px 35px 0;
    }
}

@media screen and (max-width: 991px) {
    .process__card:nth-child(even) .process__txt {
        padding: 35px 30px 30px 0;
    }
}

@media screen and (max-width: 767px) {
    .process__card:nth-child(even) .process__txt {
        padding: 0;
        border: 0;
    }
}

.process__vector {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 100%;
    width: 400px;
    height: 400px;
    filter: grayscale(10);
    opacity: 0.025;
    z-index: -1;
    @media (max-width: 991px) {
        width: 300px;
        height: 300px;
    }
}

.process__card:nth-child(even) .process__vector {
    left: 0;
}

.process__vector img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process__title {
    font-size: 2.5rem;
    font-weight: 500;
    color: hsl(var(--body-color));
    margin-bottom: 11px;
}

@media screen and (max-width: 1399px) {
    .process__title {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 991px) {
    .process__title {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .process__title {
        font-size: 1.563rem;
    }
}

.process__desc {
    margin-bottom: -9px;
}

@media screen and (max-width: 767px) {
    .process__desc {
        margin-bottom: -8px;
    }
}

/* Process Section End */

/* Feature Section Start */
.feature .section-heading {
    margin-bottom: 40px;
}
.feature__desc {
    margin-bottom: 30px;
}
.feature__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.feature__list li {
    width: calc(50% - 5px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
@media screen and (max-width: 479px) {
    .feature__list li {
        width: 100%;
    }
}
.feature__list li i {
    color: hsl(var(--base));
}
.feature__list li:nth-child(even) i {
    color: hsl(var(--base-two));
}

.feature__card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 25px;
    background: hsl(var(--base-l-900) / .2);
    border: 1px solid hsl(var(--base-l-700));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
@media screen and (max-width: 1199px) {
    .feature__card {
        padding: 20px;
    }
}
@media screen and (max-width: 991px) {
    .feature__card {
        gap: 25px;
    }
}
.feature__card::before {
    content: "";
    position: absolute;
    bottom: 30px;
    right: -10%;
    width: 50%;
    height: 150%;
    background: hsl(var(--base-two));
    border-radius: 70px;
    transform: rotate(-20deg);
    opacity: 0.07;
    z-index: -1;
}
.feature__card::after {
    content: "";
    position: absolute;
    top: 30px;
    left: -10%;
    width: 50%;
    height: 150%;
    background: hsl(var(--base-two));
    border-radius: 70px;
    transform: rotate(-20deg);
    opacity: 0.07;
    z-index: -1;
}
.feature__card__icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    position: relative;
}
@media screen and (max-width: 1199px) {
    .feature__card__icon {
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width: 767px) {
    .feature__card__icon {
        width: 50px;
        height: 50px;
    }
}
.feature__card__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(100% + 15px);
    width: 1px;
    height: 50px;
    background: hsl(var(--base));
}
@media screen and (max-width: 991px) {
    .feature__card__icon::before {
        left: calc(100% + 10px);
        height: 40px;
    }
}
@media screen and (max-width: 767px) {
    .feature__card__icon::before {
        height: 35px;
    }
}
.feature__card__icon::after {
    content: "";
    position: absolute;
    left: calc(100% + 20px);
    bottom: 0;
    width: 1px;
    height: 50px;
    background: hsl(var(--base-two-d-500));
}
@media screen and (max-width: 991px) {
    .feature__card__icon::after {
        left: calc(100% + 15px);
        height: 40px;
    }
}
@media screen and (max-width: 767px) {
    .feature__card__icon::after {
        height: 35px;
    }
}
.feature__card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.feature__card__number {
    font-family: var(--body-font);
    font-size: 2.1875rem;
    line-height: 1;
    font-weight: 700;
    display: flex;
    margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
    .feature__card__number {
        font-size: 1.875rem;
    }
}
@media screen and (max-width: 991px) {
    .feature__card__number {
        font-size: 1.5625rem;
    }
}
@media screen and (max-width: 767px) {
    .feature__card__number {
        font-size: 1.25rem;
    }
}
.feature__card__number span {
    line-height: 1;
}
.feature__card__number > span {
    margin-top: -2px;
}
.feature__card__number > span.odometer-suffix {
    transform: translateY(2px);
}
@media screen and (max-width: 991px) {
    .feature__card__number > span.odometer-suffix {
        transform: translateY(1px);
    }
}
.feature__card__title {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
}
@media screen and (max-width: 1199px) {
    .feature__card__title {
        font-size: 1rem;
    }
}
@media screen and (max-width: 767px) {
    .feature__card__title {
        font-size: 0.875rem;
    }
}
/* Feature Section End */

/* Subscribe Section Start */
.subscribe {
    background: hsl(var(--base-d-800));
    position: relative;
    overflow: hidden;
    z-index: 2;
    &::before {
        content: "";
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(hsl(var(--base)), transparent);
        border-radius: 50%;
        filter: blur(200px);
    }
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, hsl(var(--black) / 0.5), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--black) / 0.5));
        z-index: -1;
    }
}

.subscribe__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position-y: top !important;
    opacity: 0.2;
    z-index: -1;
}

.subscribe form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.subscribe form input {
    width: 700px;
    height: 70px;
    border: 1px solid hsl(var(--dark));
    border-radius: 7px;
    padding: 0 30px;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {
    .subscribe form input {
        width: 500px;
    }
}

@media screen and (max-width: 991px) {
    .subscribe form input {
        width: 400px;
        height: 55px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .subscribe form input {
        width: 100%;
        height: 50px;
        padding: 0 15px;
    }
}

.subscribe form input:focus {
    border-color: hsl(var(--base-d-200));
}

.subscribe form button {
    background: hsl(var(--base-two));
    color: hsl(var(--white));
    font-family: var(--heading-font);
    font-size: 1.563rem;
    font-weight: 400;
    padding: 0 40px;
    height: 70px;
    border-radius: 7px;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .subscribe form button {
        height: 55px;
    }
}

@media screen and (max-width: 767px) {
    .subscribe form button {
        font-size: 1.125rem;
        height: 50px;
        padding: 0 25px;
    }
}

.subscribe form button:hover {
    background: hsl(var(--base-two-d-200));
}

/* Subscribe Section End */

/* Service Section Start */
.service__card {
    background: hsl(var(--section-bg));
    background-image: linear-gradient(45deg, hsl(var(--base-two-l-900) / .5) 50%, hsl(var(--base-l-900) / .5) 50%);
    background-size: 5px 5px;
    border: 1px solid hsl(var(--black)/0.02);
    border-radius: 10px;
    padding: 50px 30px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    z-index: 2;
}
@media screen and (max-width: 991px) {
    .service__card {
        padding: 25px;
    }
}
@media screen and (max-width: 767px) {
    .service__card {
        max-width: 300px;
        padding: 30px;
        margin: auto;
    }
}
.service__card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain !important;
    background-position-x: left !important;
    opacity: 0.03;
    z-index: -1;
}

.service__card__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 2px dashed hsl(var(--base)/0.5);
    margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
    .service__card__top {
        gap: 30px;
        padding-bottom: 30px;
        margin-bottom: 22px;
    }
}

.service__card__title {
    width: 100%;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin-top: -8px;
    margin-bottom: -9px;
}

@media screen and (max-width: 991px) {
    .service__card__title {
        font-size: 1.563rem;
        margin-top: -5px;
        margin-bottom: -6px;
    }
}

@media screen and (max-width: 767px) {
    .service__card__title {
        font-size: 1.563rem;
        margin-top: -5px;
        margin-bottom: -6px;
    }
}

.service__card__title span {
    display: block;
    font-weight: 600;
}

.service__card__thumb {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .service__card__thumb {
        height: 120px;
    }
}

@media screen and (max-width: 767px) {
    .service__card__thumb {
        height: 100px;
    }
}

.service__card__thumb img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.service__card__desc {
    text-align: center;
    margin-bottom: -8px;
}
.service__card:hover {
    border-color: hsl(var(--base-l-300));
}
/* Service Section End */

/* Blog Section Start */
.blog__card {
    background: hsl(var(--section-bg));
    background-image: linear-gradient(45deg, hsl(var(--base-two-l-900) / .5) 50%, hsl(var(--base-l-900) / .5) 50%);
    background-size: 5px 5px;
    border: 1px solid hsl(var(--black)/0.02);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .blog__card {
        padding: 5px;
    }
}

.blog__card__img {
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .blog__card__img {
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .blog__card__img {
        margin-bottom: 20px;
    }
}

.blog__card__img a {
    width: 100%;
    height: 100%;
}

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

.blog__card__txt {
    position: relative;
}

.blog__card__date {
    background: hsl(var(--base-two-d-300));
    border-radius: 20px;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    color: hsl(var(--white));
    font-weight: 600;
    font-size: 0.938rem;
    margin-bottom: 19px;
}

.blog__card__date i {
    margin-right: 5px;
}

.blog__card__title {
    font-size: 1.875rem;
    font-weight: 500;
    border-bottom: 1px solid hsl(var(--secondary-l-700));
    padding-bottom: 11px;
    margin-bottom: 17px;
}

@media screen and (max-width: 1399px) {
    .blog__card__title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1199px) {
    .blog__card__title {
        font-size: 1.25rem;
    }
}

.blog__card__title a:hover {
    color: hsl(var(--base-d-300));
}

.blog__card__desc {
    margin-bottom: -8px;
}

.blog__card:hover {
    background-color: hsl(var(--base-l-900));
    border-color: hsl(var(--base));
}

/* Blog Section End */
/* Testimonial Section Start */
/* ====================== Testimonial Css Start ==================== */
.testimonial {
    background: hsl(var(--base-d-800));
    position: relative;
    overflow: hidden;
    z-index: 2;
    &::before {
        content: "";
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(hsl(var(--base)), transparent);
        border-radius: 50%;
        filter: blur(200px);
    }
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, hsl(var(--black) / 0.5), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--dark-d-500)), hsl(var(--black) / 0.5));
        z-index: -1;
    }
}

.testimonial__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
}

.testimonial__wrap {
    position: relative;
}

.testimonial__wrap .swiper-container {
    overflow: hidden;
}

.testimonial .swiper-slide {
    width: auto;
    height: auto;
}

.testimonial .swiper-slide.swiper-slide-prev .testimonial-card, .testimonial .swiper-slide.swiper-slide-next .testimonial-card, .testimonial .swiper-slide.swiper-slide-active .testimonial-card {
    opacity: 1;
}

.testimonial .swiper-slide.swiper-slide-prev .testimonial-card__user__img, .testimonial .swiper-slide.swiper-slide-prev .testimonial-card__name, .testimonial .swiper-slide.swiper-slide-prev .testimonial-card__designation, .testimonial .swiper-slide.swiper-slide-prev .testimonial-card__desc, .testimonial .swiper-slide.swiper-slide-next .testimonial-card__user__img, .testimonial .swiper-slide.swiper-slide-next .testimonial-card__name, .testimonial .swiper-slide.swiper-slide-next .testimonial-card__designation, .testimonial .swiper-slide.swiper-slide-next .testimonial-card__desc, .testimonial .swiper-slide.swiper-slide-active .testimonial-card__user__img, .testimonial .swiper-slide.swiper-slide-active .testimonial-card__name, .testimonial .swiper-slide.swiper-slide-active .testimonial-card__designation, .testimonial .swiper-slide.swiper-slide-active .testimonial-card__desc {
    transform: translate(0) !important;
    opacity: 1 !important;
}

.testimonial__arrow {
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 2;
}

.testimonial__arrow button {
    width: max-content;
    height: 50px;
    border: 0;
    padding-left: 15px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .testimonial__arrow button {
        padding-left: 12px;
        height: 40px;
    }
}

.testimonial__arrow button.testimonial__arrow__next {
    padding-left: 0;
    padding-right: 15px;
}

@media screen and (max-width: 991px) {
    .testimonial__arrow button.testimonial__arrow__next {
        padding-right: 12px;
    }
}

.testimonial__arrow button.testimonial__arrow__next::after {
    left: auto;
    right: 0;
}

.testimonial__arrow button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    aspect-ratio: 1/1;
    border: 2px solid hsl(var(--white)/0.7);
    border-radius: 50%;
    transition: 0.3s;
    z-index: -1;
}

@media screen and (max-width: 991px) {
    .testimonial__arrow button::after {
        border-width: 1px;
    }
}

.testimonial__arrow button img {
    max-width: none;
    width: auto;
    max-height: 25px;
    opacity: 0.8;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .testimonial__arrow button img {
        max-height: 20px;
    }
}

.testimonial__arrow button:hover::after {
    border-color: hsl(var(--base));
}

.testimonial__arrow button:hover img {
    opacity: 1;
}

.swiper-slide-active .testimonial-card {
    background: hsl(var(--base-two-l-900));
}

.swiper-slide-active .testimonial-card__desc,
.swiper-slide-active .testimonial-card__designation {
    color: hsl(var(--base-two-d-900));
}

.swiper-slide-active .testimonial-card__user__img {
    border-color: hsl(var(--base-two-d-200));
}

.swiper-slide-active .testimonial-card__name {
    color: hsl(var(--base-two-d-600));
}

.testimonial-card {
    background: linear-gradient(45deg, hsl(var(--base-l-800)), hsl(var(--base-two-l-900)), hsl(var(--base-l-800)));
    background: hsl(var(--base-l-800));
    border: 1px solid hsl(var(--black)/0.05);
    border-radius: 15px;
    height: 100%;
    position: relative;
    padding: 40px;
    overflow: hidden;
    vertical-align: middle;
    opacity: 0;
    transition: 1s;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .testimonial-card {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-card {
        text-align: center;
        padding: 20px 5px;
    }
}

.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, hsl(var(--base-two-d-800) / .15) 50%, hsl(var(--base-d-800) / .15) 50%);
    background-size: 5px 5px;
    z-index: -1;
}

.testimonial-card__desc {
    text-align: center;
    font-size: 1.25rem;
    color: hsl(var(--base-d-900));
    margin-bottom: 30px;
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

@media screen and (max-width: 1199px) {
    .testimonial-card__desc {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-card__desc {
        font-size: 1rem;
        margin-bottom: 23px;
    }
}

.testimonial-card__user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .testimonial-card__user {
        justify-content: center;
    }
}

.testimonial-card__user__img {
    width: 70px;
    height: 70px;
    padding: 2px;
    border: 1px solid hsl(var(--base-d-200));
    border-radius: 50%;
    transform: translateY(200px);
    opacity: 0;
    overflow: hidden;
    transition: 1s;
}

.testimonial-card__user__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card__name {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--base-d-600));
    margin-bottom: 14px;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s;
}

@media screen and (max-width: 991px) {
    .testimonial-card__name {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
}

.testimonial-card__designation {
    display: block;
    font-size: 1.125rem;
    line-height: 1;
    color: hsl(var(--base-d-900));
    transform: translateY(200px);
    opacity: 0;
    transition: 1s;
}

@media screen and (max-width: 991px) {
    .testimonial-card__designation {
        font-size: 0.875rem;
    }
}
/* ====================== Testimonial Css End ==================== */
/* Testimonial Section End */

/* Faq Section Start */
/* ====================== Faq Css Start ==================== */
.faq {
    position: relative;
    z-index: 2;
}

/* ====================== Faq Css End ==================== */
/* Faq Section End */
/* Partner Section Start */
/* ====================== Partner Css Start ==================== */
.partner {
    background: hsl(var(--section-bg));
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .partner {
        padding: 50px 0;
    }
}

@media screen and (max-width: 1199px) {
    .partner {
        padding: 40px 0;
    }
}

@media screen and (max-width: 991px) {
    .partner {
        padding: 30px 0;
    }
}

.partner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
}

.partner .bx-wrapper {
    border: 0;
    box-shadow: 0 0;
    background: transparent;
    margin-bottom: 0;
}

.partner__slider {
    display: flex;
    align-items: center;
}

.partner__slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1399px) {
    .partner__slide {
        height: 100px;
        width: 200px !important;
        padding: 20px 0;
    }
}

@media screen and (max-width: 1199px) {
    .partner__slide {
        height: 80px;
        width: 180px !important;
    }
}

@media screen and (max-width: 767px) {
    .partner__slide {
        height: 60px;
        width: 130px !important;
        padding: 10px 0;
    }
}

@media screen and (max-width: 479px) {
    .partner__slide {
        height: 50px;
        width: 100px !important;
        padding: 5px 0;
    }
}

.partner__slide img {
    max-width: 70%;
    max-height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 991px) {
    .partner__slide img {
        max-width: 95%;
    }
}

/* ====================== Partner Css End ==================== */
/* Partner Section End */
/* ============ Home Page Sections End ============ */
/* ============ Inner Pages Design Start ============ */
/* Blog Details Page Start */
.blog-details__img {
    background: linear-gradient(45deg, hsl(var(--base-two-l-900)), hsl(var(--base-l-900)), hsl(var(--base-two-l-900)));
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .blog-details__img {
        margin-bottom: 20px;
    }
}

.blog-details__txt {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
    padding: 30px;
}

@media screen and (max-width: 991px) {
    .blog-details__txt {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 767px) {
    .blog-details__txt {
        padding: 20px 15px;
    }
}

.blog-details__title {
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 600;
    border-bottom: 1px solid hsl(var(--border-color));
    padding-bottom: 11px;
    margin-top: -9px;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .blog-details__title {
        font-size: 1.25rem;
        padding-bottom: 9px;
        margin-top: -5px;
        margin-bottom: 20px;
    }
}

.blog-details__desc {
    margin-top: -8px;
    margin-bottom: 22px;
}

@media screen and (max-width: 991px) {
    .blog-details__desc {
        margin-top: -6px;
        margin-bottom: 17px;
    }
}

.blog-details__desc:last-of-type {
    margin-bottom: -9px;
}

@media screen and (max-width: 991px) {
    .blog-details__desc:last-of-type {
        margin-bottom: -8px;
    }
}

.blog-details__list {
    margin-top: -8px;
    margin-bottom: 22px;
}

.blog-details__subtitle {
    font-size: 1.5625rem;
    line-height: 1.2;
    font-weight: 600;
    color: hsl(var(--black)/0.6);
    margin-top: -6px;
    margin-bottom: 19px;
}

@media screen and (max-width: 991px) {
    .blog-details__subtitle {
        font-size: 1.125rem;
        margin-top: -4px;
        margin-bottom: 16px;
    }
}

.blog-details__comments {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
    .blog-details__comments {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .blog-details__comments {
        padding: 15px;
    }
}

.blog-details__comment {
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .blog-details__comment {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        margin-bottom: 15px;
    }
}

.blog-details__comment:last-of-type {
    margin-bottom: 0;
}

.blog-details__comment__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-details__comment__txt {
    width: calc(100% - 80px);
}

@media screen and (max-width: 767px) {
    .blog-details__comment__txt {
        width: 100%;
    }
}

.blog-details__comment__name {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 5px;
}

.blog-details__comment__date {
    font-style: italic;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-details__comment__desc {
    font-size: 1rem;
    line-height: 1.6;
}

.blog-details__post-comment {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
    padding: 30px;
}

@media screen and (max-width: 991px) {
    .blog-details__post-comment {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .blog-details__post-comment {
        padding: 15px;
    }
}

/* Blog Details Page End */
/* Authentication Page Start */
/* ====================== Account Css Start ==================== */
.account {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: auto;
    z-index: 2;
}

.account::after {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: hsl(var(--base-l-900)/0.7);
    border-radius: 50%;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .account::after {
        display: none;
    }
}

.account__img {
    position: fixed;
    top: 10px;
    right: 10px;
    width: calc(50% - 10px);
    height: calc(100% - 20px);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .account__img {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        z-index: -1;
    }
}

.account__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, hsl(var(--base-l-800)/0.94), hsl(var(--base-two-l-900)/0.94), hsl(var(--base-l-800)/0.94));
    border: 1px solid hsl(var(--black)/0.03);
    border-radius: 14px;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .account__img::after {
        border-radius: 0;
    }
}

.account__img img {
    max-width: 80%;
    max-height: 70%;
}

@media screen and (max-width: 767px) {
    .account__img img {
        display: none;
    }
}

.account__form {
    width: 50%;
    height: max-content;
    margin: 30px 0;
}

@media screen and (max-width: 767px) {
    .account__form {
        width: 90vw;
        height: max-content;
        margin: 20px auto;
        display: block;
        padding: 10px;
    }
}

.account__form-2 .account__form__container {
    width: 700px;
}

@media screen and (max-width: 1499px) {
    .account__form-2 .account__form__container {
        width: 600px;
    }
}

@media screen and (max-width: 1399px) {
    .account__form-2 .account__form__container {
        width: 560px;
    }
}

@media screen and (max-width: 1199px) {
    .account__form-2 .account__form__container {
        width: 465px;
    }
}

@media screen and (max-width: 991px) {
    .account__form-2 .account__form__container {
        width: 350px;
    }
}

@media screen and (max-width: 767px) {
    .account__form-2 .account__form__container {
        width: 100%;
    }
}

.account__form-2 .account__form__container form {
    max-width: 700px;
}

.account__form__container {
    width: 600px;
    margin: auto;
}

@media screen and (max-width: 1399px) {
    .account__form__container {
        width: 560px;
    }
}

@media screen and (max-width: 1199px) {
    .account__form__container {
        width: 465px;
    }
}

@media screen and (max-width: 991px) {
    .account__form__container {
        width: 350px;
    }
}

@media screen and (max-width: 767px) {
    .account__form__container {
        width: 100%;
    }
}

.account__form__content {
    text-align: center;
    border-bottom: 1px solid hsl(var(--black)/0.1);
    padding-bottom: 21px;
}

.account__form__title {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--base-d-200));
    margin-bottom: 14px;
}

@media screen and (max-width: 991px) {
    .account__form__title {
        font-size: 1.5625rem;
    }
}

.account__form form {
    max-width: 500px;
    padding: 38px 50px 0;
    margin: auto;
}

@media screen and (max-width: 991px) {
    .account__form form {
        padding: 38px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .account__form form {
        padding: 18px 0 0;
    }
}

.account__top {
    margin-bottom: 25px;
}

.account__top .logo {
    max-width: 180px;
}

@media screen and (max-width: 575px) {
    .account__top .logo {
        max-width: 140px;
    }
}

.back-to-home {
    width: 50px;
    height: 50px;
    border: 1px solid hsl(var(--base)/0.3);
    background: hsl(var(--white));
    border-radius: 50%;
    color: hsl(var(--base));
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-home .ti {
    transform: translateY(0);
}

@media screen and (max-width: 991px) {
    .back-to-home {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .back-to-home {
        width: 45px;
        height: 45px;
    }
}

.back-to-home:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

/* ====================== Account Css End ==================== */
/* Authentication Page End */
/* Dashboard Page Start */
/* ====================== Dashboard Css Start ==================== */
.dashboard-card {
    background: hsl(var(--section-bg));
    background-image: linear-gradient(45deg, hsl(var(--base-two-l-900) / .5) 50%, hsl(var(--base-l-900) / .5) 50%);
    background-size: 5px 5px;
    border: 1px solid hsl(var(--black)/0.02);
    border-radius: 10px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 30px;
    overflow: hidden;
    position: relative;
    transition: .3s;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .dashboard-card {
        padding: 20px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard-card {
        padding: 15px;
    }
}

@media screen and (max-width: 479px) {
    .dashboard-card {
        max-width: 320px;
        margin: auto;
    }
}

.dashboard-card__icon {
    width: 55px;
    height: 55px;
    background: hsl(var(--base-two-d-100));
    box-shadow: 5px 5px 0px 0px hsl(var(--base));
    border: 1px solid hsl(var(--base-two-d-100));
    border-radius: 5px;
    color: hsl(var(--white));
    font-size: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease-in;
    z-index: 2;
}

.dashboard-card__icon .ti {
    transform: translateY(0);
}

@media screen and (max-width: 1399px) {
    .dashboard-card__icon {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard-card__icon {
        width: 45px;
        height: 45px;
    }
}

.dashboard-card__txt {
    width: calc(100% - 65px);
}

@media screen and (max-width: 1399px) {
    .dashboard-card__txt {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width: 991px) {
    .dashboard-card__txt {
        width: calc(100% - 55px);
    }
}

.dashboard-card__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    color: hsl(var(--base-d-300));
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .dashboard-card__title {
        font-size: 0.875rem;
        margin-bottom: 10px;
    }
}

.dashboard-card__number {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.6875rem;
    line-height: 1;
    font-weight: 400;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: hsl(var(--black)/0.5);
    color: hsl(var(--black)/0.5);
    margin-bottom: -5px;
}

@media screen and (max-width: 1399px) {
    .dashboard-card__number {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 991px) {
    .dashboard-card__number {
        font-size: 1.125rem;
        margin-bottom: -3px;
    }
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 20px -10px hsl(var(--base-d-400)/0.3);
    border-color: hsl(var(--base));
}

.latest-transaction-list li {
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed hsl(var(--black)/0.1);
}

.latest-transaction-list li:first-child {
    padding-top: 0;
    margin-top: -2px;
}

.latest-transaction-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: -2px;
}

.latest-transaction-list__amount {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--black)/0.7);
    margin-bottom: 7px;
}

.latest-transaction-list__detail {
    display: block;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--black)/0.5);
}

.account-setup-key__badge,
.refer-link__badge {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    transition: 0.3s;
    opacity: 0;
}

.account-setup-key__badge.show,
.refer-link__badge.show {
    opacity: 1;
}

.account-setup-key__copy,
.refer-link__copy {
    padding: 0;
    width: 50px;
    font-size: 1.25rem;
}

.profile-settings .custom--card {
    background: hsl(var(--base-l-900) / .5);
    background-image: linear-gradient(45deg, hsl(var(--base-two-l-900) / .5) 50%, hsl(var(--base-l-900) / .5) 50%);
    background-size: 5px 5px;
    border: 1px solid hsl(var(--base)/0.2);
}

.profile-settings__sidebar {
    height: 100%;
    border-right: 1px solid hsl(var(--black)/0.05);
    padding-right: 25px;
}

@media screen and (max-width: 767px) {
    .profile-settings__sidebar {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 2px dashed hsl(var(--base));
    }
}

.profile-settings__sidebar__list li {
    border-bottom: 1px dashed hsl(var(--black)/0.15);
    padding: 15px 0;
}

.profile-settings__sidebar__list li:first-child {
    padding-top: 0;
}

.profile-settings__sidebar__list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.profile-settings__sidebar__list__title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0px;
}

.profile-settings__sidebar__list__title i {
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 33px;
    background: hsl(var(--base));
    color: hsl(var(--white));
    box-shadow: 4px 4px 0px 0px hsl(var(--base-two));
    border: 1px solid hsl(var(--base));
    border-radius: 5px;
    font-size: 1.5em;
    transform: translate(0);
}

.profile-settings__sidebar__list__content {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    padding-left: 50px;
    margin-bottom: -6px;
}

.profile-settings__name {
    text-align: center;
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--base-d-200));
    margin-bottom: 10px;
}

.profile-settings__username {
    display: block;
    text-align: center;
    line-height: 1;
}

.qr-code-img {
    max-width: 150px;
    margin: 15px auto;
}

.withdraw__card {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.03);
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .withdraw__card {
        padding: 15px;
        gap: 15px;
    }
}

.withdraw__card__icon {
    text-align: center;
    width: 80px;
    height: 80px;
    background: hsl(var(--base));
    border-radius: 10px;
    color: hsl(var(--white));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

@media screen and (max-width: 991px) {
    .withdraw__card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.875rem;
    }
}

.withdraw__card__content {
    width: calc(100% - 100px);
}

@media screen and (max-width: 991px) {
    .withdraw__card__content {
        width: calc(100% - 75px);
    }
}

.withdraw__card__title {
    display: block;
    font-size: 1.125rem;
    font-family: var(--heading-font);
    line-height: 1;
    font-weight: 500;
    margin-bottom: 13px;
}

@media screen and (max-width: 991px) {
    .withdraw__card__title {
        font-size: 0.875rem;
    }
}

.withdraw__card__number {
    display: block;
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--black)/0.6);
}

@media screen and (max-width: 991px) {
    .withdraw__card__number {
        font-size: 1.25rem;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%);
        opacity: 0;
    }
}

/* ====================== Dashboard Css End ==================== */
/* Dashboard Page End */
/* Escrow Details Page Start */
.escrow-chat__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid hsl(var(--black)/0.05);
    padding-bottom: 15px;
}

.escrow-chat__username {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--black)/0.6);
}

.escrow-chat__username i {
    font-size: 1.375rem;
    line-height: 1;
    color: hsl(var(--base-two));
}

.escrow-chat__chatbox {
    margin-bottom: 20px;
    height: 340px;
    overflow: auto;
}

.escrow-chat__chatbox::-webkit-scrollbar {
    width: 4px;
    height: 10px;
}

.escrow-chat__chatbox::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black)/0.15);
}

.escrow-chat__chatbox::-webkit-scrollbar-track {
    background-color: hsl(var(--black)/0.1);
}

.escrow-chat__msg {
    display: flex;
    gap: 10px;
    width: max-content;
    max-width: 70%;
    margin-bottom: 20px;
}

@media screen and (max-width: 479px) {
    .escrow-chat__msg {
        max-width: 80%;
    }
}

.escrow-chat__msg:last-child {
    margin-bottom: 0;
}

.escrow-chat__msg.outgoing {
    margin-left: auto;
}

.escrow-chat__msg.outgoing .escrow-chat__msg__content {
    align-items: flex-end;
}

.escrow-chat__msg.outgoing .escrow-chat__msg__icon {
    background: hsl(var(--base));
}

.escrow-chat__msg.outgoing .escrow-chat__msg__txt {
    background: hsl(var(--base-two-l-900));
    color: hsl(var(--black)/0.8);
    border-radius: 5px 0 5px 5px;
}

.escrow-chat__msg.outgoing .escrow-chat__msg__txt .escrow-chat__msg__attachment {
    background: hsl(var(--base));
    color: hsl(var(--white));
    font-weight: 600;
}

.escrow-chat__msg__icon {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1;
    background: hsl(var(--black)/0.4);
    border-radius: 50%;
    color: hsl(var(--white));
}

.escrow-chat__msg__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: hsl(var(--white));
}

.escrow-chat__msg__icon .ti {
    transform: translateY(8%);
}

.escrow-chat__msg__content {
    max-width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}

.escrow-chat__msg__txt {
    width: max-content;
    max-width: 100%;
    background: hsl(var(--black)/0.02);
    padding: 5px 10px;
    border: 1px solid hsl(var(--black)/0.04);
    border-radius: 0 5px 5px 5px;
    margin-bottom: 5px;
}

.escrow-chat__msg__txt p {
    font-size: 0.875rem;
}

.escrow-chat__msg__txt .escrow-chat__msg__attachment {
    background: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 0.8125rem;
    line-height: 1;
    font-weight: 500;
    padding: 4px 7px 5px;
    border-radius: 3px;
}

.escrow-chat__msg__txt .escrow-chat__msg__attachment i {
    font-size: 1.2em;
    transform: translateY(5%);
}

.escrow-chat__msg__date {
    display: block;
    font-size: 0.8125rem;
    line-height: 1;
}

.escrow-chat__type-msg {
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s;
}

.escrow-chat__type-msg:focus-within {
    border-color: hsl(var(--base));
}

.escrow-chat__type-msg textarea {
    width: 100%;
    resize: none;
    border: 0;
    outline: none;
}

.escrow-chat__type-msg textarea::-webkit-scrollbar {
    width: 4px;
    height: 10px;
}

.escrow-chat__type-msg textarea::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black)/0.15);
}

.escrow-chat__type-msg textarea::-webkit-scrollbar-track {
    background-color: hsl(var(--black)/0.1);
}

.escrow-chat__show-attach {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background: hsl(var(--black)/0.05);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 10px;
    display: none;
    position: relative;
}

.escrow-chat__show-attach.active {
    display: block;
}

.escrow-chat__show-attach img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.escrow-chat__attachment {
    width: 100%;
    height: 100%;
}

.escrow-chat__attachment .file-container {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: hsl(var(--black)/0.5);
}

.escrow-chat__attachment .file-container i {
    font-size: 1.875rem;
}

.escrow-chat__clear-attach {
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: red;
    color: hsl(var(--white));
    border-radius: 50%;
    font-size: 0.688rem;
    transform: translate(25%, -25%);
}

.escrow-chat__clear-attach .ti {
    transform: translateY(13%);
}

/* Escrow Details Page End */
/* Contact Page Start */
/* ====================== Contact Css Start ==================== */
.contact__thumb {
    height: 100%;
    border-radius: 15px;
    margin-right: -150px;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .contact__thumb {
        margin-right: -100px;
    }
}

@media screen and (max-width: 991px) {
    .contact__thumb {
        margin-right: -70px;
    }
}

@media screen and (max-width: 767px) {
    .contact__thumb {
        height: 250px;
        border-radius: 10px;
        margin-right: 0;
        margin-bottom: -50px;
    }
}

.contact__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, hsl(var(--black)/0.7), hsl(var(--black)/0.05));
}

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

.contact__card {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .contact__card {
        flex-direction: column;
    }
}

.contact__card__sidebar {
    width: 400px;
    height: max-content;
    flex-shrink: 0;
    border: 1px solid hsl(var(--white) / .3);
    border-radius: 15px;
    background: linear-gradient(45deg, hsl(var(--base-d-900)), hsl(var(--base-d-700)));
    padding: 40px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .contact__card__sidebar {
        width: 300px;
    }
}

@media screen and (max-width: 991px) {
    .contact__card__sidebar {
        width: 260px;
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .contact__card__sidebar {
        width: 90%;
        border-radius: 10px;
    }
}

.contact__card__sidebar__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position-x: right !important;
    opacity: 0.02;
    z-index: -1;
}

.contact__card__list li {
    margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
    .contact__card__list li {
        margin-bottom: 30px;
    }
}

.contact__card__list li:last-child {
    margin-bottom: 0;
}

.contact__card__list__title {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--white));
    border-bottom: 1px solid hsl(var(--white) / 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
    .contact__card__list__title {
        font-size: 1.25rem;
        gap: 10px;
        padding-bottom: 10px;
        margin-bottom: 8px;
    }
}

.contact__card__list__title i {
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 1.25rem;
    background: hsl(var(--base-two-l-800));
    color: hsl(var(--base-two-d-500));
    border-radius: 3px;
    transform: translate(0);
}

@media screen and (max-width: 991px) {
    .contact__card__list__title i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1.125rem;
    }
}

.contact__card__list__content {
    font-weight: 500;
    color: hsl(var(--white) / .9);
    margin-bottom: -9px;
}

.contact__card__form {
    background: hsl(var(--base-two-l-900) / .3);
    background-image: linear-gradient(45deg, hsl(var(--base-two-l-900) / .8) 50%, hsl(var(--base-l-900) / .8) 50%);
    background-size: 5px 5px;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 15px;
    padding: 50px;
    padding-left: 200px;
    margin-left: -150px;
}

@media screen and (max-width: 1399px) {
    .contact__card__form {
        padding: 35px;
        padding-left: 185px;
    }
}

@media screen and (max-width: 1199px) {
    .contact__card__form {
        padding: 30px;
        padding-left: 130px;
        margin-left: -100px;
    }
}

@media screen and (max-width: 991px) {
    .contact__card__form {
        padding: 25px;
        padding-left: 90px;
        margin-left: -65px;
    }
}

@media screen and (max-width: 767px) {
    .contact__card__form {
        border-radius: 10px;
        padding: 20px;
        padding-top: 70px;
        margin-left: 0;
        margin-top: -50px;
    }
}

.contact__card__form .form--control {
    background: linear-gradient(45deg, hsl(var(--base-two-l-900)/0.7), hsl(var(--base-l-900)/0.7), hsl(var(--base-two-l-900)/0.7)) !important;
    background: hsl(var(--base-two-l-900)/0.5) !important;
}

.contact__card__form .form--control:focus {
    border-color: hsl(var(--base-d-200));
}

/* ====================== Contact Css End ==================== */
/* Contact Page End */

/* Two Factor Page Start */
/* ====================== Two Factor Css Start ==================== */
.two-fa-setting__title {
    font-size: 2.1875rem;
    line-height: 1.3;
    font-weight: 700;
    color: hsl(var(--black)/0.7);
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .two-fa-setting__title {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width: 767px) {
    .two-fa-setting__title {
        font-size: 1.25rem;
    }
}

.two-fa-setting > * {
    margin-bottom: 15px;
}

.two-fa-setting > *:last-child {
    margin-bottom: 0;
}

.download-app {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-app a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px 0 hsl(var(--black)/0.1);
}

/* ====================== Two Factor Css End ==================== */
/* Two Factor Page End */
/* ============ Inner Pages Design End ============ */

/* Error Page Start */
/* ====================== Error Css Start ==================== */
.error-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    position: relative;
    z-index: 2;
}
.error-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--white));
    opacity: 0.9;
    z-index: -1;
}
.error-page__content {
    padding: 50px 0;
}
.error-page__thumb {
    margin-bottom: 30px;
}
.error-page__txt {
    text-align: center;
}
.error-page__txt__title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
    .error-page__txt__title {
        font-size: 1.5625rem;
    }
}
.error-page__txt__desc {
    margin-bottom: 20px;
}
/* ====================== Error Css End ==================== */
/* Error Page End */


/* ====================== Cookies CSS Start ==================== */
.cookies-card {
    width: 100%;
    max-width: 350px;
    padding: 25px;
    padding-top: 0 !important;
    color: #1E2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: hsl(var(--white));
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 0 30px 0 hsl(var(--base) / .1);
    border-radius: 10px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.cookies-card__icon {
    width: 130px;
    height: 130px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
    background-color: #fff;
    font-size: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: -65px;
}

.cookies-card__icon > * {
    transform: rotate(45deg);
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}

@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}

/* ====================== Cookies CSS End ==================== */

/*# sourceMappingURL=main.css.map */
