/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Lexend", sans-serif;
    --body-font: "Inter", 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(--dark-l-200);
    --body-color: 0 0 28%;
    --border-color: 0 0% 95%;
    --section-bg: 249 60% 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: 146;
    --base-s: 21%;
    --base-l: 45%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    /* Base Darken  */
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-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: 98%;
    --base-two-l: 60%;
    --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: 304;
    --base-three-s: 100%;
    --base-three-l: 51%;
    --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-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);
    /* light Color */
    --light-h: 210;
    --light-s: 17%;
    --light-l: 98%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    /* light Darken */
    --light-d-100: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.1);
    --light-d-200: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.2);
    --light-d-300: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.3);
    --light-d-400: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.4);
    --light-d-500: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.5);
    --light-d-600: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.6);
    --light-d-700: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.7);
    --light-d-800: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.8);
    --light-d-900: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.9);
    --light-l-100: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.1);
    --light-l-200: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.2);
    --light-l-300: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.3);
    --light-l-400: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.4);
    --light-l-500: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.5);
    --light-l-600: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.6);
    --light-l-700: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.7);
    --light-l-800: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.8);
    --light-l-900: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-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;
}

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;
    font-size: clamp(14px, 13px + 0.3125vw, 18px);
    overflow-x: clip;
    line-height: 1.55;
}

@media screen and (max-width: 767px) {
    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));
    line-height: inherit;
}

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

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

section {
    overflow: hidden;
}

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

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

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

/* Mask Image Css */
.mask-box {
    mask-mode: match-source;
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
}

/* 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 !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

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

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

.gap-x-0 {
    column-gap: 0rem !important;
}

.gap-y-0 {
    row-gap: 0rem !important;
}

.gap-x-1 {
    column-gap: 0.25rem !important;
}

.gap-y-1 {
    row-gap: 0.25rem !important;
}

.gap-x-2 {
    column-gap: 0.5rem !important;
}

.gap-y-2 {
    row-gap: 0.5rem !important;
}

.gap-x-3 {
    column-gap: 0.75rem !important;
}

.gap-y-3 {
    row-gap: 0.75rem !important;
}

.gap-x-4 {
    column-gap: 1rem !important;
}

.gap-y-4 {
    row-gap: 1rem !important;
}

.gap-x-5 {
    column-gap: 1.25rem !important;
}

.gap-y-5 {
    row-gap: 1.25rem !important;
}

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

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

.shadow {
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1) !important;
}

.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 {
    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 {
    font-size: 0.6875rem;
}

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

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

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

.fs-15,
.form--switch .form-check-label,
.btn--icon {
    font-size: 0.9375rem;
}

.fs-16,
.alert__title,
.table tbody tr td {
    font-size: 1rem;
}

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

    .fs-16,
    .alert__title,
    .table tbody tr td {
        font-size: 0.875rem;
    }
}

.fs-17,
.form--radio .form-check-label,
.form--check .form-check-label,
.col-form--label,
.form--label {
    font-size: 1.0625rem;
}

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

    .fs-17,
    .form--radio .form-check-label,
    .form--check .form-check-label,
    .col-form--label,
    .form--label {
        font-size: 1rem;
    }
}

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

    .fs-17,
    .form--radio .form-check-label,
    .form--check .form-check-label,
    .col-form--label,
    .form--label {
        font-size: 0.9375rem;
    }
}

.fs-18 {
    font-size: 1.125rem;
}

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

@media screen and (max-width: 767px) {
    .fs-18 {
        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: 80px;
    z-index: 2;
}

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

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

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

.section-heading-light .section-heading__subtitle {
    color: hsl(var(--base-two));
}

.section-heading-light .section-heading__subtitle svg path {
    fill: hsl(var(--white));
}

.section-heading-light .section-heading__title {
    color: hsl(var(--secondary-l-900));
}

.section-heading-light .section-heading__title span {
    color: hsl(var(--white));
}

.section-heading-light .section-heading__desc {
    color: hsl(var(--secondary-l-900)/0.8);
}

.section-heading__subtitle {
    width: max-content;
    font-family: var(--body-font);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--base));
    background-clip: text;
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 1px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
    .section-heading__subtitle {
        font-size: 1.125rem;
    }
}

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

@media screen and (max-width: 767px) {
    .section-heading__subtitle {
        font-size: 1rem;
        gap: 5px;
        margin: -1px auto 15px;
    }
}

.section-heading__subtitle svg {
    height: 20px;
}

@media screen and (max-width: 1199px) {
    .section-heading__subtitle svg {
        height: 18px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading__subtitle svg {
        height: 16px;
    }
}

@media screen and (max-width: 767px) {
    .section-heading__subtitle svg {
        height: 14px;
    }
}

.section-heading__subtitle svg path {
    fill: hsl(var(--base));
}

.section-heading__subtitle svg path:nth-child(3) {
    fill: hsl(var(--base-two));
}

.section-heading__title {
    font-size: 3.75rem;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    color: hsl(var(--body-color));
    margin-bottom: -17px;
    position: relative;
}

@media screen and (max-width: 1599px) {
    .section-heading__title {
        font-size: 3.4375rem;
        margin-bottom: -14px;
    }
}

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

@media screen and (max-width: 1199px) {
    .section-heading__title {
        font-size: 2.5rem;
        margin-bottom: -11px;
    }
}

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

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

.section-heading__title .styled-title {
    display: inline;
    font-weight: 300;
}

.section-heading__title>span {
    display: inline;
}

.section-heading__desc {
    font-size: 1.125rem;
    line-height: 1.66;
    margin-top: 12px;
    margin-bottom: -8px;
}

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

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

.container.container-striped {
    border-left: 1px solid hsl(var(--secondary-l-900));
    border-right: 1px solid hsl(var(--secondary-l-900));
    position: relative;
    z-index: 2;
}

.container.container-striped::after {
    content: "";
    position: absolute;
    top: 0;
    left: 33.3333333333%;
    width: 33.3333333333%;
    height: 100%;
    border-left: 1px solid hsl(var(--secondary-l-900));
    border-right: 1px solid hsl(var(--secondary-l-900));
    z-index: -1;
}

/* ====================== Container for xxxl screen 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 ==================== */
/* ====================== CK Editor Start ==================== */
.ck-toolbar {
    padding: 5px 10px !important;
    background: hsl(var(--black)/0.03) !important;
    border-color: hsl(var(--black)/0.1) !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.ck-content {
    height: 350px;
    box-shadow: 0 0 !important;
    border-color: hsl(var(--black)/0.1) !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    transition: 0.3s;
}

@media screen and (max-width: 479px) {
    .ck-content {
        height: 200px;
    }
}

.ck-content.ck-focused {
    border-color: hsl(var(--base)) !important;
}

.ck-content ul {
    padding-left: 2rem;
    list-style: disc;
}

.ck-content ol {
    padding-left: 2rem;
    list-style: decimal;
}

.ck.ck-button:active,
.ck.ck-button:focus,
a.ck.ck-button:active,
a.ck.ck-button:focus {
    border-color: hsl(var(--base)) !important;
    box-shadow: 0 0 !important;
}

.ck.ck-button.ck-on:not(.ck-disabled),
a.ck.ck-button.ck-on:not(.ck-disabled) {
    background: hsl(var(--base-l-900)) !important;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 4px;
    color: hsl(var(--base-d-200));
}

.ck.ck-button.ck-on:not(.ck-disabled):hover,
a.ck.ck-button.ck-on:not(.ck-disabled):hover {
    background: hsl(var(--base-l-900)) !important;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 4px;
    color: hsl(var(--base-d-200));
}

.ck.ck-list__item .ck-button.ck-on {
    background: hsl(var(--base)) !important;
}

.ck.ck-list__item .ck-button.ck-on:hover {
    background: hsl(var(--base)) !important;
    color: hsl(var(--white));
}

.ck.ck-input {
    border-radius: 5px;
}

.ck.ck-input:focus {
    border-color: hsl(var(--base)) !important;
    box-shadow: 0 0 !important;
}

/* ====================== CK Editor End ==================== */
/* ====================== Styled Title Start ====================== */
.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(--dark-l-500));
}

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

/* ====================== No Data Found In Table 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.813rem;
    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 {
    transform: translate(0);
}

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

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

.ti.transform-0 {
    transform: translate(0) !important;
}

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

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

/* ====================== Zoom Box Start ====================== */
.zoom-box .viewer-box {
    left: calc(100% + 15px) !important;
    aspect-ratio: 1/1;
    height: 100%;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 10px;
    z-index: 9;
}

.zoom-box .viewer-box img {
    width: auto !important;
    max-width: none;
    height: auto !important;
    object-fit: initial !important;
}

.zoom-box .zoom-selector {
    background-image: none;
    background: hsl(var(--black)/0.5);
    border: 1px solid hsl(var(--secondary-l-900)/0.5);
    border-radius: 9px;
}

/* ====================== Zoom Box End ====================== */
@media screen and (max-width: 767px) {
    .rounded-5 {
        border-radius: 1.5rem !important;
    }
}

.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popup 0.4s ease-in-out;
    z-index: 999;
}

.image-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--black)/0.7);
    cursor: zoom-out;
    z-index: -1;
}

.image-popup__overlay::after {
    content: "\eb55";
    font-family: "tabler-icons";
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 2.1875rem;
    backdrop-filter: blur(10px);
    background: hsl(var(--white)/0.2);
    border: 1px solid hsl(var(--white)/0.5);
    border-radius: 50%;
    color: hsl(var(--white));
    cursor: pointer;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .image-popup__overlay::after {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 38px;
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .image-popup__overlay::after {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        line-height: 33px;
        font-size: 1.5625rem;
    }
}

.image-popup__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 30px;
    visibility: hidden;
}

@media screen and (max-width: 1399px) {
    .image-popup__nav {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .image-popup__nav {
        padding: 15px;
    }
}

.image-popup__nav button {
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
    background: hsl(var(--base-l-900));
    border: 1px solid hsl(var(--base)/0.1);
    border-radius: 50%;
    color: hsl(var(--body-color));
    font-size: 1.5625rem;
    visibility: visible;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .image-popup__nav button {
        width: 40px;
        height: 40px;
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 767px) {
    .image-popup__nav button {
        width: 35px;
        height: 35px;
        font-size: 1.125rem;
    }
}

.image-popup__nav button:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.image-popup__gallery {
    max-height: 80%;
    max-width: calc(100% - 200px);
}

@media screen and (max-width: 1399px) {
    .image-popup__gallery {
        max-width: calc(100% - 160px);
    }
}

@media screen and (max-width: 767px) {
    .image-popup__gallery {
        max-width: calc(100% - 120px);
    }
}

@keyframes popup {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.section-btn {
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

/* ================================= Background Color Css Start =========================== */
.bg--base {
    background-color: hsl(var(--base)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg--dark--subtle {
    background-color: hsl(var(--dark-l-900)) !important;
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
    color: hsl(var(--base)) !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: 100px;
    }
}

@media (min-width: 1200px) {
    .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: 100px;
    }
}

@media (min-width: 1200px) {
    .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.3) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================= Border Color Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
    color: hsl(var(--body-color));
    background-color: transparent !important;
    border: 0;
    margin-bottom: 35px;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .custom--accordion .accordion-item {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .custom--accordion .accordion-item {
        margin-bottom: 25px;
    }
}

.custom--accordion .accordion-item:last-child {
    margin-bottom: 0;
}

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

.custom--accordion .accordion-body {
    padding: 23px 35px 22px;
    color: hsl(var(--body-color));
    border-bottom: 1px solid hsl(var(--secondary-l-800));
}

.custom--accordion .accordion-button {
    font-size: 1.5625rem;
    line-height: 1.3;
    font-weight: 500;
    background: hsl(var(--white));
    color: hsl(var(--heading-color));
    box-shadow: 0 0;
    border: 1px solid hsl(var(--secondary-l-800)/0.6);
    border-radius: 20px !important;
    padding: 23px 35px 19px;
    gap: 30px;
    justify-content: space-between;
    transition: 0.3s;
}

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

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

@media screen and (max-width: 767px) {
    .custom--accordion .accordion-button {
        font-size: 1.125rem;
        padding: 15px 25px 13px;
        gap: 15px;
    }
}

.custom--accordion .accordion-button::after {
    width: auto;
    height: auto;
    display: block;
    text-align: center;
    background-image: none;
    border-radius: 50%;
    font-size: 2.875rem;
    font-weight: 400;
    line-height: 1;
    margin-left: 0;
    margin-right: -8px;
}

@media screen and (max-width: 1399px) {
    .custom--accordion .accordion-button::after {
        font-size: 2.1875rem;
        margin-right: -5px;
    }
}

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

@media screen and (max-width: 767px) {
    .custom--accordion .accordion-button::after {
        font-size: 1.5625rem;
        margin-right: -4px;
    }
}

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

.custom--accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

.custom--accordion .accordion-button[aria-expanded=true]::after,
.custom--accordion .accordion-button[aria-expanded=false]::after {
    font-family: "tabler-icons";
    content: "\eaf2";
    display: block;
    transform: none;
}

.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: none;
    background-color: none;
    border-color: none;
}

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

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

@media screen and (max-width: 991px) {
    .btn {
        padding: 5px 20px;
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 6.5px 20px;
        font-size: 1rem;
    }
}

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

.btn:hover .btn__icon .ti::before,
.btn:focus .btn__icon .ti::before,
.btn:focus-visible .btn__icon .ti::before,
.btn.active .btn__icon .ti::before {
    animation: shake 0.5s ease-in-out;
}

.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 20px;
    font-size: 0.9375rem;
}

@media screen and (max-width: 991px) {
    .btn--sm {
        font-size: 0.875rem;
        padding: 5.71px 20px;
    }
}

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

.btn--sm .btn__icon {
    width: 38px !important;
    transform: translateX(18px) !important;
}

@media screen and (max-width: 991px) {
    .btn--sm .btn__icon {
        width: 35px !important;
        transform: translateX(18px) !important;
    }
}

@media screen and (max-width: 767px) {
    .btn--sm .btn__icon {
        width: 34px !important;
        transform: translateX(13px) !important;
    }
}

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

@media screen and (max-width: 991px) {
    .btn--icon {
        width: 45px;
        height: 45px;
    }
}

.btn--icon::before,
.btn--icon::after {
    border-width: 7px;
}

.btn--icon.btn--sm {
    width: 44.5px;
    height: 44.5px;
}

@media screen and (max-width: 991px) {
    .btn--icon.btn--sm {
        width: 40px;
        height: 40px;
    }
}

.btn--icon.btn--sm::before,
.btn--icon.btn--sm::after {
    border-width: 5px;
}

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

.btn .btn__icon {
    width: 50px;
    transform: translateX(31px);
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .btn .btn__icon {
        width: 40px;
        transform: translateX(18px);
    }
}

.btn .btn__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    aspect-ratio: 1/1;
    background: hsl(var(--white));
    border-radius: 50%;
    transition: 0.3s;
    z-index: -1;
}

.btn .btn__icon .ti {
    transform: translateY(15%);
    transition: 0.3s;
}

.btn .btn__icon .ti::before {
    display: inline-block;
}

.btn .ti {
    font-size: 1.4em;
}

.btn.w-100 .btn__icon {
    float: right;
}

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

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

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

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

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

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

.btn-outline--base:hover .btn__icon::after,
.btn-outline--base:focus .btn__icon::after,
.btn-outline--base:focus-visible .btn__icon::after,
.btn-outline--base.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--base .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--base .btn__icon::after {
    background: hsl(var(--base));
}

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

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

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

.btn-lite--base:hover .btn__icon::after,
.btn-lite--base:focus .btn__icon::after,
.btn-lite--base:focus-visible .btn__icon::after,
.btn-lite--base.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--base .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--base .btn__icon::after {
    background: hsl(var(--base));
}

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

.btn--base-two:hover,
.btn--base-two:focus,
.btn--base-two:focus-visible,
.btn--base-two.active {
    background-color: hsl(var(--base-two-d-100)) !important;
    border-color: hsl(var(--base-two-d-100)) !important;
}

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

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

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

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

.btn-outline--base-two:hover .btn__icon::after,
.btn-outline--base-two:focus .btn__icon::after,
.btn-outline--base-two:focus-visible .btn__icon::after,
.btn-outline--base-two.active .btn__icon::after {
    background: hsl(var(--white));
}

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

.btn-outline--base-two .btn__icon::after {
    background: hsl(var(--base-two));
}

.btn-lite--base-two {
    background-color: hsl(var(--base-two-l-900)) !important;
    border: 1px solid hsl(var(--base-two-l-900)) !important;
    color: hsl(var(--base-two-d-200)) !important;
}

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

.btn-lite--base-two:hover .btn__icon,
.btn-lite--base-two:focus .btn__icon,
.btn-lite--base-two:focus-visible .btn__icon,
.btn-lite--base-two.active .btn__icon {
    color: hsl(var(--base-two)) !important;
}

.btn-lite--base-two:hover .btn__icon::after,
.btn-lite--base-two:focus .btn__icon::after,
.btn-lite--base-two:focus-visible .btn__icon::after,
.btn-lite--base-two.active .btn__icon::after {
    background: hsl(var(--white));
}

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

.btn-lite--base-two .btn__icon::after {
    background: hsl(var(--base-two));
}

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

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

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

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

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

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

.btn-outline--primary:hover .btn__icon::after,
.btn-outline--primary:focus .btn__icon::after,
.btn-outline--primary:focus-visible .btn__icon::after,
.btn-outline--primary.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--primary .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--primary .btn__icon::after {
    background: hsl(var(--primary));
}

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

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

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

.btn-lite--primary:hover .btn__icon::after,
.btn-lite--primary:focus .btn__icon::after,
.btn-lite--primary:focus-visible .btn__icon::after,
.btn-lite--primary.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--primary .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--primary .btn__icon::after {
    background: hsl(var(--primary));
}

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

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

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

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

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

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

.btn-outline--secondary:hover .btn__icon::after,
.btn-outline--secondary:focus .btn__icon::after,
.btn-outline--secondary:focus-visible .btn__icon::after,
.btn-outline--secondary.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--secondary .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--secondary .btn__icon::after {
    background: hsl(var(--secondary));
}

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

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

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

.btn-lite--secondary:hover .btn__icon::after,
.btn-lite--secondary:focus .btn__icon::after,
.btn-lite--secondary:focus-visible .btn__icon::after,
.btn-lite--secondary.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--secondary .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--secondary .btn__icon::after {
    background: hsl(var(--secondary));
}

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

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

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

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

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

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

.btn-outline--success:hover .btn__icon::after,
.btn-outline--success:focus .btn__icon::after,
.btn-outline--success:focus-visible .btn__icon::after,
.btn-outline--success.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--success .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--success .btn__icon::after {
    background: hsl(var(--success));
}

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

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

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

.btn-lite--success:hover .btn__icon::after,
.btn-lite--success:focus .btn__icon::after,
.btn-lite--success:focus-visible .btn__icon::after,
.btn-lite--success.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--success .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--success .btn__icon::after {
    background: hsl(var(--success));
}

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

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

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

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

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

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

.btn-outline--danger:hover .btn__icon::after,
.btn-outline--danger:focus .btn__icon::after,
.btn-outline--danger:focus-visible .btn__icon::after,
.btn-outline--danger.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--danger .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--danger .btn__icon::after {
    background: hsl(var(--danger));
}

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

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

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

.btn-lite--danger:hover .btn__icon::after,
.btn-lite--danger:focus .btn__icon::after,
.btn-lite--danger:focus-visible .btn__icon::after,
.btn-lite--danger.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--danger .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--danger .btn__icon::after {
    background: hsl(var(--danger));
}

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

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

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

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

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

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

.btn-outline--warning:hover .btn__icon::after,
.btn-outline--warning:focus .btn__icon::after,
.btn-outline--warning:focus-visible .btn__icon::after,
.btn-outline--warning.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--warning .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--warning .btn__icon::after {
    background: hsl(var(--warning));
}

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

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

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

.btn-lite--warning:hover .btn__icon::after,
.btn-lite--warning:focus .btn__icon::after,
.btn-lite--warning:focus-visible .btn__icon::after,
.btn-lite--warning.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--warning .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--warning .btn__icon::after {
    background: hsl(var(--warning));
}

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

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

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

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

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

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

.btn-outline--info:hover .btn__icon::after,
.btn-outline--info:focus .btn__icon::after,
.btn-outline--info:focus-visible .btn__icon::after,
.btn-outline--info.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--info .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--info .btn__icon::after {
    background: hsl(var(--info));
}

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

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

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

.btn-lite--info:hover .btn__icon::after,
.btn-lite--info:focus .btn__icon::after,
.btn-lite--info:focus-visible .btn__icon::after,
.btn-lite--info.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--info .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--info .btn__icon::after {
    background: hsl(var(--info));
}

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

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

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

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

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

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

.btn-outline--dark:hover .btn__icon::after,
.btn-outline--dark:focus .btn__icon::after,
.btn-outline--dark:focus-visible .btn__icon::after,
.btn-outline--dark.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-outline--dark .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-outline--dark .btn__icon::after {
    background: hsl(var(--dark));
}

.btn-lite--dark {
    background-color: hsl(var(--dark-l-900)) !important;
    border: 1px solid hsl(var(--dark-l-900)) !important;
    color: hsl(var(--dark)) !important;
}

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

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

.btn-lite--dark:hover .btn__icon::after,
.btn-lite--dark:focus .btn__icon::after,
.btn-lite--dark:focus-visible .btn__icon::after,
.btn-lite--dark.active .btn__icon::after {
    background: hsl(var(--white));
}

.btn-lite--dark .btn__icon {
    color: hsl(var(--white)) !important;
}

.btn-lite--dark .btn__icon::after {
    background: hsl(var(--dark));
}

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

.btn--light:hover,
.btn--light:focus,
.btn--light:focus-visible,
.btn--light.active {
    background-color: hsl(var(--light-d-100)) !important;
    border-color: hsl(var(--light-d-100)) !important;
}

.btn--light .btn__icon {
    color: hsl(var(--dark)) !important;
}

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

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

.btn-outline--light .btn__icon {
    color: hsl(var(--dark)) !important;
}

.btn-outline--light .btn__icon::after {
    background: hsl(var(--light));
}

@keyframes shake {
    0% {
        transform: translate(0);
    }

    25% {
        transform: translate(-3px, 0);
    }

    50% {
        transform: translate(3px, 0);
    }

    75% {
        transform: translate(-3px, 0);
    }

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

.circle-btn {
    min-width: 150px;
    aspect-ratio: 1/1;
    background: hsl(var(--white));
    border: 1px solid hsl(var(--dark-l-900));
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 25px;
    color: hsl(var(--body-color));
    position: relative;
    overflow: hidden;
    transition: 0.45s;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .circle-btn {
        min-width: 130px;
        gap: 10px;
        padding: 20px;
    }
}

@media screen and (max-width: 991px) {
    .circle-btn {
        min-width: 120px;
        gap: 8px;
    }
}

.circle-btn::before {
    content: "";
    position: absolute;
    top: calc(50% + 5px);
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--dark-l-900));
    border-radius: 50px;
    transition: 0.3s;
    z-index: -1;
}

.circle-btn::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, transparent 50%, hsl(var(--white)/0.2));
    border-radius: 50%;
    transition: 0.45s;
    z-index: -1;
}

.circle-btn__icon {
    width: 35px;
    height: 35px;
}

@media screen and (max-width: 1199px) {
    .circle-btn__icon {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 991px) {
    .circle-btn__icon {
        width: 25px;
        height: 25px;
    }
}

.circle-btn__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.45s;
}

.circle-btn__txt {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
}

@media screen and (max-width: 1199px) {
    .circle-btn__txt {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .circle-btn__txt {
        font-size: 1rem;
        font-weight: 400;
    }
}

.circle-btn:hover {
    border-color: transparent;
    color: hsl(var(--white));
}

.circle-btn:hover .circle-btn__icon img {
    filter: brightness(10);
}

.circle-btn:hover::before {
    top: 0;
    background: hsl(var(--base));
    border-radius: 50%;
}

.circle-btn:hover::after {
    width: 80%;
    height: 80%;
    transition-delay: 0.15s;
}

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

.custom--card .card-header {
    padding: 20px 24px;
    background: hsl(var(--base-d-400));
    border-radius: 19px 19px 0 0;
    color: hsl(var(--white));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border: 0;
}

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

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

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

.custom--card .card-header .title {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--white));
    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: 1rem;
    }
}

.custom--card .card-header .form--control {
    color: hsl(var(--white));
    border-color: hsl(var(--base-l-200));
    background-color: hsl(var(--white)/0.1) !important;
}

.custom--card .card-header .form--control::placeholder {
    color: hsl(var(--white)/0.6);
}

.custom--card .card-header .form--control:focus {
    border-color: hsl(var(--white));
}

.custom--card .card-header .form--control.form--select {
    background-image: url(../images/icons/select-icon-light.png);
}

.custom--card .card-header .input--group {
    border-color: hsl(var(--base-l-200));
}

.custom--card .card-header .input--group:focus-within {
    border-color: hsl(var(--white));
}

.custom--card .card-header .select2-container .select2-selection--single .select2-selection__rendered {
    color: hsl(var(--white));
}

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

@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: 7px 10px;
    transform: scaleY(0);
    transform-origin: top center;
    top: 0;
    left: 0;
    transition: 0.3s;
    overflow: hidden;
    box-shadow: 0px 0px 15px 0px hsl(var(--black)/0.05);
    border-color: hsl(var(--black)/0.05);
    border-radius: 7px;
    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: 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 {
        font-size: 0.875rem;
        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 =========================== */
.input--group .select2-container {
    width: -webkit-fill-available !important;
    min-width: unset !important;
}

.select2-container {
    display: flex;
    flex-direction: column;
    min-width: 100% !important;
}

body>.select2-container {
    min-width: auto !important;
}

table .select2-container.select2-container--open {
    min-width: 100% !important;
}

.select2-container--disabled .form--control {
    background-color: hsl(var(--dark-l-900)/0.7) !important;
    opacity: 1;
}

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

.select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 28px;
}

.select2-container--default .select2-selection--single.form--control--sm {
    border-radius: 23px;
}

.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--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
    line-height: 1.9;
}

.select2-container .select2-search--inline .select2-search__field::placeholder {
    color: #999;
}

.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-dropdown {
    z-index: 100;
}

.modal-open .select2-dropdown {
    z-index: 1055;
}

.select2-container--open .select2-dropdown {
    backdrop-filter: blur(15px);
    background: linear-gradient(hsl(var(--base-l-900)/0.5), hsl(var(--base-l-900)/0.5));
    background-color: hsl(var(--white)/0.5);
    border: 1px solid hsl(var(--secondary-l-800));
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
}

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

.select2-container--open .select2-dropdown.select2-dropdown--above {
    box-shadow: 0px -15px 40px 0px hsl(var(--base-d-600)/0.15);
    border-radius: 30px 30px 0 0;
    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: 0px 15px 40px 0px hsl(var(--base-d-600)/0.15);
    border-radius: 0 0 30px 30px;
}

.select2-container--default .select2-selection--multiple {
    border-color: hsl(var(--secondary-l-800));
    border-radius: 28px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 0;
    background-color: hsl(var(--base)/0.1);
    border-color: hsl(var(--base)/0.1);
    border-radius: 20px;
    color: hsl(var(--dark-l-200));
    font-weight: 500;
    padding: 1px 10px;
    display: flex;
    align-items: center;
    line-height: 1.208;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        line-height: 1;
    }
}

@media screen and (max-width: 767px) {
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        padding: 0 5px;
    }
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:hover {
    border-color: hsl(var(--base-l-100));
}

.select2-container--default .select2-selection--multiple.form--control--sm .select2-selection__choice {
    line-height: 0.9;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 1.5625rem;
    font-weight: 400;
    color: hsl(var(--dark-l-500));
    margin-right: 5px;
    transform: translateY(-2px);
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        transform: translateY(-1px);
    }
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: hsl(var(--dark-l-200));
}

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

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

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid hsl(var(--secondary-l-800));
    box-shadow: 0 0;
    padding: 10px 20px;
    border-radius: 25px;
}

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

.select2-results__option.select2-results__message {
    text-align: center;
}

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

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

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: hsl(var(--dark-l-400));
}

.ui-widget {
    font-family: var(--body-font);
}

.datepicker {
    font-family: var(--body-font);
    background: hsl(var(--white));
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.2);
    border-color: hsl(var(--white));
    border-radius: 15px;
    padding: 10px;
    color: hsl(var(--body-color));
}

.datepicker--nav {
    background: hsl(var(--white));
    box-shadow: 0px 0px 20px 0px hsl(var(--base)/0.2);
    border-color: hsl(var(--white));
    border-radius: 20px;
}

.datepicker--nav-title {
    font-family: var(--heading-font);
    font-weight: 500;
    color: hsl(var(--body-color));
}

.datepicker--nav-action {
    width: 32px;
    height: 32px;
    background: hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--base)/0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.datepicker--nav-action svg {
    width: 30px;
    height: 30px;
    margin-top: -3px;
    margin-left: -2px;
    transition: 0.3s;
}

.datepicker--nav-action svg path {
    transition: 0.3s;
}

.datepicker--nav-action:hover {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

.datepicker--nav-action:hover svg path {
    stroke: hsl(var(--white));
}

.datepicker--nav-action[data-action="prev"] {
    left: 5px;
}

.datepicker--nav-action[data-action="prev"] {
    right: 5px;
}

.datepicker--nav-action[data-action="prev"] svg {
    margin-left: 0;
}

.datepicker--day-name.-weekend-,
.datepicker--cell-day.-weekend- {
    color: hsl(var(--danger-d-200));
}

.datepicker--day-name.-weekend-,
.datepicker--cell-day.-weekend- {
    color: hsl(var(--danger-d-200));
}

.datepicker--cell-day.-weekend-:hover {
    background: hsl(var(--danger-l-800));
    border-color: hsl(var(--danger)/0.5);
}

.datepicker--day-name.-weekend-.-current-,
.datepicker--cell-day.-weekend-.-current- {
    background: hsl(var(--danger-d-200));
}

.datepicker--day-name,
.datepicker--cell-day {
    aspect-ratio: 1 / 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    padding: 0;
    color: hsl(var(--body-color));
    font-size: 0.875rem;
    font-weight: 500;
    width: 14.2857142857%;
    height: auto;
    transition: .3s;
}

.datepicker--cell-day:hover {
    background: hsl(var(--base-l-800));
    border-color: hsl(var(--base)/0.5);
}

.datepicker--cell-day.-disabled- {
    aspect-ratio: 1 / 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    padding: 0;
    color: hsl(var(--body-color) / .6);
    font-size: 0.875rem;
    font-weight: 500;
    width: 14.2857142857%;
    height: auto;
    transition: .3s;
}

.datepicker--cell-day.-disabled-:hover {
    color: hsl(var(--body-color) / .6);
    background: transparent;
    border-color: transparent;
}

.datepicker--cell-day.-other-month- {
    aspect-ratio: 1 / 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    padding: 0;
    color: hsl(var(--body-color) / .8);
    font-size: 0.875rem;
    font-weight: 500;
    width: 14.2857142857%;
    height: auto;
    transition: .3s;
}

.datepicker--cell-day.-other-month-:hover {
    color: hsl(var(--body-color) / .8);
    background: transparent;
    border-color: transparent;
}

.datepicker--day-name.-current-,
.datepicker--cell-day.-current- {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white)) !important;
    font-weight: 700;
}

.datepicker--cell.-range-from-.-current-,
.datepicker--cell.-range-from- {
    color: hsl(var(--white));
    border-radius: 50% 0 0 50%;
    border: 1px solid hsl(var(--base));
    background-color: hsl(var(--base));
}

.datepicker--cell.-range-from-.-weekend-,
.datepicker--cell.-range-from-.-weekend-.-focus- {
    background: hsl(var(--danger));
    border-color: hsl(var(--danger));
}

.datepicker--cell.-range-to-.-current-,
.datepicker--cell.-range-to- {
    color: hsl(var(--white));
    border-radius: 0 50% 50% 0;
    border: 1px solid hsl(var(--base));
    background-color: hsl(var(--base));
}

.datepicker--cell.-range-to-.-weekend-,
.datepicker--cell.-range-to-.-weekend-.-focus- {
    background: hsl(var(--danger));
    border-color: hsl(var(--danger));
}

.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade-,
.datepicker--cell.-in-range- {
    background: hsl(var(--base) / .1);
    border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
    background: hsl(var(--base) / .1);
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-focus- {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade-,
.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.-selected-.datepicker--cell-day.-other-month-:hover,
.-selected-.datepicker--cell-year.-other-decade-:hover,
.datepicker--cell.-selected-:hover,
.datepicker--cell.-selected-.-current-:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.datepicker--cell.-current- {
    background: hsl(var(--base));
    color: hsl(var(--base));
}

/******* Nice Select Start *******/
.nice-select {
    height: auto;
    float: none;
}

.nice-select:not(.form--control) {
    min-width: 70px;
    height: 35px;
    line-height: 33px;
    padding-left: 10px;
    padding-right: 30px;
}

.nice-select:not(.form--control)::after {
    right: 10px;
}

.nice-select:not(.form--control):active,
.nice-select:not(.form--control).open,
.nice-select:not(.form--control):focus {
    border-color: hsl(var(--base));
}

.nice-select:not(.form--control) .option {
    padding-left: 10px;
    padding-right: 30px;
    min-height: 35px;
    line-height: 35px;
}

.nice-select.form--select {
    background-image: none;
}

.nice-select.form--control--sm::after {
    right: 10px;
}

.nice-select.form--control--sm .option {
    min-height: 35px;
    line-height: 35px;
    font-size: 0.875rem;
}

.nice-select::after {
    width: 0.65em;
    height: 0.65em;
    right: 19px;
    margin-top: -7px;
}

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

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

.input--group>*:nth-child(2).nice-select {
    border-radius: 4px 0 0 4px;
    border-left-width: 0 !important;
}

/******* Nice Select End *******/
/* Form Label */
.form--label {
    width: max-content;
    max-width: 100%;
    display: block;
    line-height: 1.1;
    margin-bottom: 11px;
    color: hsl(var(--dark-l-300));
    font-weight: 600;
}

.form--label.required::after {
    content: "*";
    color: hsl(var(--danger));
    padding-left: 3px;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 700;
    position: relative;
    top: 2px;
}

.form--label .ti {
    transform: translateY(10%);
}

.col-form--label {
    width: max-content;
    max-width: 100%;
    display: block;
    line-height: 1.1;
    color: hsl(var(--dark-l-300));
    font-weight: 600;
}

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

.col-form--label .ti {
    transform: translateY(10%);
}

.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: 11px 20px;
    background-color: hsl(var(--secondary-l-900)/0.2) !important;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 30px;
    color: hsl(var(--body-color));
    line-height: 2;
    font-size: 1.125rem;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .form--control {
        font-size: 1rem;
        border-radius: 26px;
    }
}

@media screen and (max-width: 991px) {
    .form--control {
        padding: 8.21px 10px;
        border-radius: 23px;
        font-size: 0.875rem;
    }
}

.form--control::placeholder {
    color: hsl(var(--dark-l-500));
}

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

.form--control:disabled,
.form--control[readonly] {
    background-color: hsl(var(--dark-l-900)/0.7) !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-l-800));
    padding: 10px 25px;
    background-color: hsl(var(--base-l-800)) !important;
    transition: 0.2s linear;
    line-height: 32.2px;
    font-weight: 500;
    position: relative;
    color: hsl(var(--base-d-600)) !important;
}

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

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

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

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

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

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

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

.form--control.form--select {
    padding-right: 40px;
    background-image: url(../images/icons/select-icon.png);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: calc(100% - 15px);
    background-size: 0.9em;
    appearance: none;
}

@media screen and (max-width: 767px) {
    .form--control.form--select {
        padding-right: 30px;
        background-size: 12px;
        background-position-x: calc(100% - 10px);
    }
}

.form--control.form--select.form--control--sm {
    padding-right: 35px !important;
}

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

/* 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 0px 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--body-color)) !important;
    caret-color: hsl(var(--body-color));
}

/* Autofill Css End */
/* input group */
.input--group {
    display: flex;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 30px;
    transition: 0.3s;
}

.input--group .input-group-text {
    background-color: hsl(var(--secondary-l-900));
    border-color: hsl(var(--secondary-l-800));
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 6px 15px 6px 20px;
    color: hsl(var(--dark-l-300));
    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 .input-group-text .ti {
    transform: translateY(0);
}

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

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

.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-width: 0;
    border-radius: 9px;
}

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

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

.input--group .btn--icon {
    width: 54.19px;
    height: 54.19px;
}

@media screen and (max-width: 991px) {
    .input--group .btn--icon {
        width: 48px;
        height: 48px;
    }
}

.input--group .btn--icon.btn--sm {
    width: 42.5px;
    height: 42.5px;
}

@media screen and (max-width: 991px) {
    .input--group .btn--icon.btn--sm {
        width: 38px;
        height: 38px;
    }
}

.input--group .btn--icon {
    padding: 0;
}

.input--group .btn--icon .ti {
    transform: translateY(0);
}

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

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

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

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

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

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

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

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

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

/* 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 {
    max-width: 100%;
    display: flex;
}

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

.form--check .form-check-input {
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid hsl(var(--body-color)/0.5);
    cursor: pointer;
    margin-top: 0.2em;
    transition: 0.3s;
}

.form--check .form-check-input:checked {
    background-color: hsl(var(--base-d-400)) !important;
    border-color: hsl(var(--base-d-400)) !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";
    color: hsl(var(--white));
    font-size: 0.9375rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.form--check .form-check-label {
    user-select: none;
    font-weight: 500;
    width: calc(100% - 17px);
    padding-left: 8px;
    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 {
    max-width: 100%;
    display: flex;
}

.form--radio .form-check-input {
    box-shadow: none;
    border: 1px solid hsl(var(--body-color)/0.5);
    position: relative;
    background-color: transparent;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
    transition: 0.3s;
}

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

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

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

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

.form--radio .form-check-input:checked::before {
    opacity: 1;
}

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

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

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

/*  Custom Switch Design */
.form--switch {
    max-width: 100%;
    min-height: 25px;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
}

.form--switch .form-check-input {
    background-image: none;
    position: relative;
    box-shadow: none;
    border: 0;
    border-radius: 10px;
    background-color: hsl(var(--black)/0.2) !important;
    padding: 10px !important;
    margin: 0;
    width: 50px;
    height: 25px;
    cursor: pointer;
    transition: 0.4s;
}

.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: 15px;
    height: 15px;
    background-color: hsl(var(--white));
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    border-radius: 50%;
    transition: 0.2s linear;
}

.form--switch .form-check-input::after {
    content: "\eb55";
    font-family: "tabler-icons";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    line-height: 1;
    color: hsl(var(--white));
    transition: 0.3s;
}

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

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

.form--switch .form-check-input:checked::after {
    content: "\ea5e";
    left: 5px;
    right: auto;
}

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

/*  Custom Switch End Design */
/* Custom Input 2 */
.form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
}

.form__group {
    width: 100%;
}

.form__group:focus-within .form__label {
    color: hsl(var(--dark-l-600));
    transform: scale(0.8) translateY(-35px);
}

@media screen and (max-width: 1399px) {
    .form__group:focus-within .form__label {
        transform: scale(0.8) translateY(-28px);
    }
}

.form__group:focus-within .form__element {
    border-color: hsl(var(--base));
}

.form__label {
    position: relative;
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 400;
    color: hsl(var(--dark-l-400));
    user-select: none;
    transform-origin: left;
    margin-top: -2px;
    margin-bottom: -26px;
    transition: 0.3s;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .form__label {
        font-size: 1.125rem;
        margin-top: -1px;
    }
}

@media screen and (max-width: 767px) {
    .form__label {
        font-size: 1rem;
    }
}

.form__label.focused {
    transform: scale(0.8) translateY(-35px);
}

@media screen and (max-width: 1399px) {
    .form__label.focused {
        transform: scale(0.8) translateY(-28px);
    }
}

.form__label.required::after {
    content: "*";
    color: hsl(var(--danger));
    margin-left: 8px;
}

.form__element {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    outline: none;
    border: 0;
    border-bottom: 1px solid hsl(var(--secondary-l-700));
    font-size: 1.25rem;
    line-height: 1.5;
    color: hsl(var(--body-color));
    padding-bottom: 5px;
    transition: 0.3s;
    z-index: 2;
}

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

@media screen and (max-width: 767px) {
    .form__element {
        font-size: 1rem;
    }
}

.form__element:valid+.contact__form__label {
    transform: scale(0.8) translateY(-35px);
}

@media screen and (max-width: 1399px) {
    .form__element:valid+.contact__form__label {
        transform: scale(0.8) translateY(-28px);
    }
}

/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start =========================== */
.custom--modal .modal-header {
    background: hsl(var(--base-l-900));
    border-bottom: 1px solid hsl(var(--base-l-800));
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px 25px;
}

@media screen and (max-width: 767px) {
    .custom--modal .modal-header {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 479px) {
    .custom--modal .modal-header {
        padding: 10px;
    }
}

.custom--modal .modal-title {
    font-size: 1.5625rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

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

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

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

.custom--modal .modal-content {
    box-shadow: 0px 0px 30px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 20px;
    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 25px !important;
    background-size: 10px;
}

@media screen and (max-width: 767px) {
    .custom--modal .modal-body {
        padding: 15px 20px !important;
    }
}

@media screen and (max-width: 479px) {
    .custom--modal .modal-body {
        padding: 10px !important;
    }
}

.custom--modal .modal-body.scroll {
    max-height: calc(100% - 116px) !important;
    overflow: hidden !important;
}

.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 {
    background: hsl(var(--secondary-l-900)/0.5);
    padding: 10px 25px;
    border-top: 1px solid hsl(var(--secondary-l-900));
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

@media screen and (max-width: 767px) {
    .custom--modal .modal-footer {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 479px) {
    .custom--modal .modal-footer {
        padding: 10px;
    }
}

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

.modal-backdrop {
    background-color: transparent;
    background: linear-gradient(45deg, hsl(var(--base-d-900)/0.3), hsl(var(--base-two-d-900)/0.3), hsl(var(--base-d-900)/0.3));
}

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

/* ================================= Modal Css End =========================== */
/* ================================= Offcanvas Css Start =========================== */
.custom--offcanvas {
    border: 0 !important;
    color: hsl(var(--body-color));
}

.custom--offcanvas .offcanvas-header {
    background: hsl(var(--base-l-900)/0.5);
    border-bottom: 1px solid hsl(var(--secondary-l-900));
    padding: 15px;
}

.custom--offcanvas .offcanvas-title {
    font-family: var(--body-font);
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 600;
}

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

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

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

.custom--offcanvas .offcanvas-body {
    padding: 20px 16px;
}

.offcanvas-backdrop {
    background-color: transparent;
    background: linear-gradient(45deg, hsl(var(--base-d-900)/0.3), hsl(var(--base-two-d-900)/0.3), hsl(var(--base-d-900)/0.3));
}

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

/* ================================= Offcanvas 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.5);
    box-shadow: 0px 0px 30px 0px hsl(var(--base)/0.15);
    border-color: hsl(var(--white));
    margin: 0 5px;
    border-radius: 10px;
    line-height: 44px;
    height: 45px;
    min-width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    padding: 0;
    font-size: 1.25rem;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 767px) {
    .pagination .page-item .page-link {
        border-radius: 7px;
        line-height: 34px;
        height: 35px;
        min-width: 35px;
        font-size: 1.125rem;
    }
}

.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 .page-item .page-link i {
    transform: translate(0);
    font-size: 1.5em;
}

/* ================================= 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 {
    border-radius: 20px;
    overflow: visible !important;
}

@media screen and (max-width: 991px) {
    .table-responsive {
        border-radius: 15px;
    }
}

.table-responsive.top-rounded-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.table-responsive .table {
    box-shadow: 0 0;
    min-width: max-content;
}

.table-responsive .table td {
    min-width: max-content;
}

.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 0px;
    border-radius: 20px;
    background-color: transparent;
}

@media screen and (max-width: 991px) {
    .table {
        border-radius: 15px;
    }
}

.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)>* {
    position: relative;
}

.table.table--striped>tbody>tr:nth-of-type(odd)>*::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--secondary-l-900)/0.3);
    border-radius: inherit;
    z-index: -1;
}

.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.bg-transparent {
    backdrop-filter: none;
    background: transparent;
}

.table.bg-transparent::after {
    display: none;
}

.table.bg-transparent tr,
.table.bg-transparent td {
    background: transparent;
}

.table.top-rounded-0>*:first-child tr:first-child * {
    border-radius: 0 !important;
}

.table.table-dashed th,
.table.table-dashed td {
    border-style: dashed !important;
    border-color: hsl(var(--secondary-l-800)) !important;
}

.table.table-shadow {
    box-shadow: 5px 5px 0px 0px hsl(var(--base));
}

.table.table-shadow tr:last-child td {
    border-bottom-color: hsl(var(--base-two));
}

.table.table-shadow tr td:first-child {
    border-left-color: hsl(var(--base-two));
}

.table.table-shadow tr td:last-child {
    border-right-color: hsl(var(--base-two));
}

.table thead tr th {
    font-family: var(--heading-font);
    text-align: center;
    padding: 15px 20px;
    color: hsl(var(--base-d-100));
    font-weight: 500;
    border-bottom: 0;
    font-size: 1.125rem;
    border: 1px solid hsl(var(--base-l-800));
    border-bottom-color: hsl(var(--base-l-800));
    background: hsl(var(--base-l-900));
    backdrop-filter: blur(10px);
}

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

@media screen and (max-width: 991px) {
    .table thead tr th {
        padding: 10px 15px;
    }
}

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

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

@media screen and (max-width: 991px) {
    .table thead tr th:first-child {
        border-radius: 15px 0 0 0;
    }
}

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

@media screen and (max-width: 991px) {
    .table thead tr th:last-child {
        border-radius: 0 15px 0 0;
    }
}

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

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

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

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

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

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

.table tbody {
    border: 0 !important;
}

.table tbody tr {
    border-bottom: 1px solid hsl(var(--secondary-l-800)/0.7);
}

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

@media screen and (max-width: 991px) {
    .table tbody tr:only-child td:first-child {
        border-bottom-left-radius: 15px !important;
    }
}

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

@media screen and (max-width: 991px) {
    .table tbody tr:only-child td:last-child {
        border-bottom-right-radius: 15px !important;
    }
}

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

.table tbody tr:last-child td {
    border-bottom: 1px solid hsl(var(--secondary-l-800)/0.7);
}

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

@media screen and (max-width: 991px) {
    .table tbody tr:last-child td:first-child {
        border-radius: 0px 0 0 15px;
    }
}

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

@media screen and (max-width: 991px) {
    .table tbody tr:last-child td:last-child {
        border-radius: 0 0px 15px 0;
    }
}

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

@media screen and (max-width: 991px) {
    .table tbody tr:last-child td:only-child {
        border-bottom-left-radius: 15px;
    }
}

.table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 15px 20px;
    border-width: 1px;
    border: 0;
    color: hsl(var(--body-color));
    font-weight: 500;
    max-width: 250px;
    background-color: hsl(var(--white)/0.25);
    border-bottom: 1px solid;
    border-right: 1px solid;
    border-color: hsl(var(--secondary-l-800)/0.7);
    z-index: 2;
}

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

@media screen and (max-width: 991px) {
    .table tbody tr td {
        padding: 10px 15px;
    }
}

.table tbody tr td::before {
    content: attr(data-label);
    font-size: 0.875rem;
    color: hsl(var(--dark-d-300));
    font-weight: 600;
    display: none;
    width: 45% !important;
    text-align: left;
}

@media screen and (max-width: 479px) {
    .table tbody tr td::before {
        width: 35% !important;
    }
}

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

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

.table tbody tr td:only-child {
    text-align: left;
}

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

@media screen and (max-width: 991px) {
    .table tbody tr td.no-data-table {
        border-radius: 0 0 15px 15px !important;
    }
}

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

.table .social-list {
    gap: 5px;
    justify-content: center;
}

.table .social-list__link {
    width: 38px;
    height: 38px;
    box-shadow: 0px 0px 30px 0px hsl(var(--base)/0.1);
    border-color: hsl(var(--base)/0.2);
    font-size: 1rem;
}

.table .social-list__link i {
    transform: translate(0);
}

.table .btn--icon {
    width: 40px;
    height: 40px;
}

.table .btn--icon::before,
.table .btn--icon::after {
    border-width: 6px;
}

.table .th {
    color: hsl(var(--base-two-d-700));
    font-weight: 600;
}

@media screen and (max-width: 479px) {
    .table--responsive--sm {
        min-width: auto !important;
    }

    .table--responsive--sm.top-rounded-0 tr:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--sm.top-rounded-0 tr:first-child td:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--sm.table--striped>tbody>tr:nth-of-type(even)>* {
        border-bottom-color: hsl(var(--secondary-l-800)/0.5) !important;
    }

    .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;
        background-color: hsl(var(--white));
        border: none;
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        max-width: unset;
        min-width: auto !important;
    }

    .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: 20px !important;
    }

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

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

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

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

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

    .table--responsive--sm tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800)/0.5);
        border-radius: 20px 20px 0 0 !important;
    }

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

    .table--responsive--sm tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        border-radius: 0 0 20px 20px !important;
    }

    .table--responsive--sm td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        border-right: 1px solid hsl(var(--secondary-l-800)/0.5) !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 table tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--sm table tbody tr:only-child td:only-child {
        border-radius: 20px !important;
    }

    .table--responsive--sm td {
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
    }

    .table--responsive--sm .social-list {
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .table--responsive--md {
        min-width: auto !important;
    }

    .table--responsive--md.top-rounded-0 tr:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--md.top-rounded-0 tr:first-child td:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--md.table--striped>tbody>tr:nth-of-type(even)>* {
        border-bottom-color: hsl(var(--secondary-l-800)/0.5) !important;
    }

    .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: 15px;
        text-align: right;
        padding: 10px 15px;
        background-color: hsl(var(--white));
        border: none;
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        max-width: unset;
        min-width: auto !important;
    }

    .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: 20px !important;
    }

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

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

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

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

    .table--responsive--md tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--md tbody tr:only-child td:only-child {
        border-radius: 20px !important;
    }

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

    .table--responsive--md tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800)/0.5);
        border-radius: 20px 20px 0 0 !important;
    }

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

    .table--responsive--md tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        border-radius: 0 0 20px 20px !important;
    }

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

    .table--responsive--md .social-list {
        max-width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .table--responsive--lg {
        min-width: auto !important;
    }

    .table--responsive--lg.top-rounded-0 tr:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--lg.top-rounded-0 tr:first-child td:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--lg.table--striped>tbody>tr:nth-of-type(even)>* {
        border-bottom-color: hsl(var(--secondary-l-800)/0.5) !important;
    }

    .table--responsive--lg thead {
        display: none;
    }

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

    .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;
        background-color: hsl(var(--white));
        border: none;
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        max-width: unset;
        min-width: auto !important;
    }

    .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: 20px !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: 20px !important;
    }

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

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

    .table--responsive--lg tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--lg tbody tr:only-child td:only-child {
        border-radius: 20px !important;
    }

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

    .table--responsive--lg tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800)/0.5);
        border-radius: 20px 20px 0 0 !important;
    }

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

    .table--responsive--lg tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        border-radius: 0 0 20px 20px !important;
    }

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

    .table--responsive--lg .social-list {
        max-width: 50%;
    }
}

@media screen and (max-width: 1199px) {
    .table--responsive--xl {
        min-width: auto !important;
    }

    .table--responsive--xl.top-rounded-0 tr:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--xl.top-rounded-0 tr:first-child td:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--xl.table--striped>tbody>tr:nth-of-type(even)>* {
        border-bottom-color: hsl(var(--secondary-l-800)/0.5) !important;
    }

    .table--responsive--xl thead {
        display: none;
    }

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

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

    .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;
        background-color: hsl(var(--white));
        border: none;
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        max-width: unset;
        min-width: auto !important;
    }

    .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: 20px !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: 20px !important;
    }

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

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

    .table--responsive--xl tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--xl tbody tr:only-child td:only-child {
        border-radius: 20px !important;
    }

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

    .table--responsive--xl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800)/0.5);
        border-radius: 20px 20px 0 0 !important;
    }

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

    .table--responsive--xl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        border-radius: 0 0 20px 20px !important;
    }

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

    .table--responsive--xl .social-list {
        max-width: 50%;
    }
}

@media screen and (max-width: 1399px) {
    .table--responsive--xxl {
        min-width: auto !important;
    }

    .table--responsive--xxl.top-rounded-0 tr:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--xxl.top-rounded-0 tr:first-child td:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--xxl.table--striped>tbody>tr:nth-of-type(even)>* {
        border-bottom-color: hsl(var(--secondary-l-800)/0.5) !important;
    }

    .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;
        background-color: hsl(var(--white));
        border: none;
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        max-width: unset;
        min-width: auto !important;
    }

    .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: 20px !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: 20px !important;
    }

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

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

    .table--responsive--xxl tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--xxl tbody tr:only-child td:only-child {
        border-radius: 20px !important;
    }

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

    .table--responsive--xxl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800)/0.5);
        border-radius: 20px 20px 0 0 !important;
    }

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

    .table--responsive--xxl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        border-radius: 0 0 20px 20px !important;
    }

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

    .table--responsive--xxl .social-list {
        max-width: 50%;
    }
}

@media screen and (max-width: 1599px) {
    .table--responsive--xxxl {
        min-width: auto !important;
    }

    .table--responsive--xxxl.top-rounded-0 tr:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--xxxl.top-rounded-0 tr:first-child td:first-child {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .table--responsive--xxxl.table--striped>tbody>tr:nth-of-type(even)>* {
        border-bottom-color: hsl(var(--secondary-l-800)/0.5) !important;
    }

    .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;
        background-color: hsl(var(--white));
        border: none;
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        max-width: unset;
        min-width: auto !important;
    }

    .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: 20px !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: 20px !important;
    }

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

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

    .table--responsive--xxxl tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--xxxl tbody tr:only-child td:only-child {
        border-radius: 20px !important;
    }

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

    .table--responsive--xxxl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800)/0.5);
        border-radius: 20px 20px 0 0 !important;
    }

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

    .table--responsive--xxxl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.5) !important;
        border-radius: 0 0 20px 20px !important;
    }

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

    .table--responsive--xxxl .social-list {
        max-width: 50%;
    }
}

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
    border: 0;
    border-bottom: 1px solid hsl(var(--base)/0.5);
    margin-bottom: 35px;
    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 {
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(var(--heading-color));
    padding: 0 15px 8px !important;
    background-color: transparent !important;
    border-radius: 0;
    transition: 0.4s;
    margin-top: -7px;
    margin-bottom: 0;
    position: relative;
}

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

.custom--tab .nav-link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: hsl(var(--base));
    border-radius: 2px 2px 0 0;
    transition: 0.3s;
}

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

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

.custom--tab .nav-link.active::before {
    width: 100%;
}

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

.custom--tab-2 {
    border: 0;
    margin-bottom: 20px;
    column-gap: 20px;
    row-gap: 10px;
}

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

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

.custom--tab-2 .nav-link {
    color: hsl(var(--body-color));
    padding: 0;
    background-color: transparent !important;
    transition: 0.4s;
    padding-bottom: 2px;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    position: relative;
}

.custom--tab-2 .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: hsl(var(--base));
    transition: 0.3s;
}

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

.custom--tab-2 .nav-link.active {
    color: hsl(var(--base-d-200));
}

.custom--tab-2 .nav-link.active::after {
    width: 100%;
}

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

.custom--tab-2 .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;
    font-size: 0.875rem;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 5px 12px;
    font-weight: 500;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 1599px) {
    .badge {
        padding: 5px 10px;
    }
}

@media screen and (max-width: 1399px) {
    .badge {
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 767px) {
    .badge {
        font-size: 0.75rem;
    }
}

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

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

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

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

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

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

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

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

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

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

.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: 10px;
    overflow: visible;
}

.custom--progress .progress-bar {
    background-color: hsl(var(--base));
    border-radius: 4px;
    position: relative;
    overflow: visible;
    z-index: 2;
}

.custom--progress .progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: repeating-linear-gradient(45deg, hsl(var(--white)/0.1), hsl(var(--black)/0.15) 15px);
    background-size: 20px 20px;
    animation: 0.7s linear infinite progressBar;
    z-index: -1;
}

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

@keyframes progressBar {
    0% {
        background-position-x: 20px;
    }
}

.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: 1px hsl(var(--black)/0.1);
    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(--dark-l-200));
}

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

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

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

.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(--dark-l-200));
    color: hsl(var(--white));
    box-shadow: 0px 10px 20px 0px hsl(var(--black)/0.05);
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ================================= preload Css Start =========================== */
.preloader {
    position: fixed;
    top: 0;
    z-index: 999999;
    background-color: hsl(var(--base-l-900));
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 120px;
    height: 120px;
}

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

/* ================================= preload Css End ===========================  */
/* ============= Header Start Here ======================= */
.header {
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 111;
}

@media screen and (max-width: 1199px) {
    .header {
        top: 15px;
        z-index: 999;
        max-height: 80vh;
        scrollbar-width: thin;
    }

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

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

@media screen and (max-width: 991px) {
    .header {
        top: 10px;
    }
}

.header.fixed-header {
    background: hsl(var(--white));
    box-shadow: 0px 5px 20px 0px hsl(var(--black)/0.1);
    border-color: hsl(var(--secondary-l-900));
    position: fixed;
    transition: 0.3s linear;
    top: 0px;
    animation: slide-down 0.3s;
    width: 100%;
}

.header.fixed-header .header__bg {
    padding: 0;
}

@media screen and (max-width: 1199px) {
    .header.fixed-header .header__bg {
        padding: 15px 0;
    }
}

.header.fixed-header .header__bg::after {
    border-color: transparent;
}

.header.fixed-header .header__logo {
    padding-bottom: 30px;
    animation: slide-down 0.6s;
}

@media screen and (max-width: 1399px) {
    .header.fixed-header .header__logo {
        padding-bottom: 25px;
    }
}

.header__bg {
    backdrop-filter: blur(10px);
    background: hsl(var(--white));
    border-radius: 100px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .header__bg {
        border-radius: 35px;
        padding: 20px;
    }
}

@media screen and (max-width: 991px) {
    .header__bg {
        border-radius: 30px;
        padding: 15px;
    }
}

.header__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 100px;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .header__bg::after {
        border-radius: 35px;
    }
}

@media screen and (max-width: 991px) {
    .header__bg::after {
        border-radius: 30px;
    }
}

.header__logo {
    width: 150px;
    height: 150px;
    background: hsl(var(--base-d-300));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 50px;
    border-radius: 0 0 75px 75px;
    margin: -20px auto -50px;
    transition: 0.3s linear;
}

@media screen and (max-width: 1399px) {
    .header__logo {
        width: 130px;
        height: 130px;
        padding: 20px 20px 35px;
        margin: -20px auto -35px;
    }
}

@media screen and (max-width: 1199px) {
    .header__logo {
        width: 120px;
        height: 120px;
        padding: 20px 20px 40px;
        margin: -35px auto -45px;
    }
}

@media screen and (max-width: 991px) {
    .header__logo {
        width: 100px;
        height: 100px;
        padding: 15px 15px 30px;
        margin: -30px auto -40px;
    }
}

.header__btn-group {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .header__btn-group {
        gap: 10px;
    }
}

@media screen and (max-width: 479px) {
    .header__btn-group {
        gap: 7px;
    }
}

@media screen and (max-width: 479px) {
    .header__btn-group .btn--icon {
        width: 35px;
        height: 35px;
        border-radius: 7px;
    }
}

.header__btn {
    text-align: center;
    width: 50px;
    height: 50px;
    padding: 2px;
    border: 2px solid hsl(var(--base));
    border-radius: 50%;
    overflow: hidden;
    font-size: 1.5rem;
    color: hsl(var(--base));
    position: relative;
}

.header__btn .ti {
    width: 100%;
    height: 100%;
    line-height: 42px;
    background: hsl(var(--base-two-l-200));
    border-radius: 50%;
    transform: translateY(0px);
}

.header__btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.header .theme-switch {
    position: relative;
    background: hsl(var(--base-two-l-900)/0.5);
    border: 1px solid hsl(var(--base-two-l-800));
    border-radius: 20px;
    padding: 5px;
    transition: 0.3s;
}

.header .theme-switch__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.header .theme-switch__input:checked+.theme-switch__icon::after {
    left: calc(100% - 25px);
}

.header .theme-switch__icon {
    color: hsl(var(--dark-l-300));
    width: 60px;
    height: 25px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.header .theme-switch__icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: hsl(var(--base-two));
    border-radius: 50%;
    transition: 0.3s;
}

.header .theme-switch__icon .ti {
    text-align: center;
    width: 50%;
    transform: translateY(7%);
}

.header .theme-switch:focus-within {
    border-color: hsl(var(--base-two-l-400));
}

.header__user {
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 1.5625rem;
    color: hsl(var(--white));
    background: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    border-radius: 50%;
    overflow: hidden;
    transition: 0.3s;
}

.header__user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-2px);
}

.header__user:hover {
    color: hsl(var(--base));
    background: hsl(var(--base-l-900));
    border: 1px solid hsl(var(--base-l-500));
}

@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: 992px) {
    .header.header-2 .nav-menu .nav-item .nav-link {
        color: hsl(var(--secondary-l-900));
    }

    .header .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header .nav-menu .nav-item {
        padding: 0;
        position: relative;
        margin-right: 30px;
    }

    .header .nav-menu .nav-item:last-child {
        margin-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));
    }

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

    .header .nav-menu .nav-item:hover .nav-link::after {
        transform: rotate(225deg);
    }

    .header .nav-menu .nav-item .nav-link {
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 1.125rem;
        line-height: 1;
        color: hsl(var(--body-color));
        padding: 20px 0;
        position: relative;
        cursor: pointer;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .header .nav-menu .nav-item .nav-link {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .header .nav-menu .nav-item .nav-link:hover::before {
        left: 0;
        transition: 0.3s;
    }
}

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

@media (min-width: 992px) {
    .header .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        top: 100%;
        left: auto;
        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: 220px;
        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: 15px 0;
        font-weight: 400;
        font-size: 1.125rem;
        font-weight: 500;
        color: hsl(var(--body-color));
        border-radius: 5px;
        transition: 0.3s;
    }

    .header .dropdown-menu__link .ti {
        margin-right: 5px;
    }

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

@media (min-width: 992px) {

    .header .nav-menu .custom--dropdown .nav-link,
    .header .nav-menu .dropdown .nav-link {
        padding-right: 20px;
    }

    .header .nav-menu .custom--dropdown .nav-link::after,
    .header .nav-menu .dropdown .nav-link::after {
        content: "\eb0b";
        font-family: "tabler-icons";
        position: absolute;
        top: 37%;
        right: 0;
        transition: 0.3s;
    }

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

@media (min-width: 992px) {
    .header .user-dropdown__btn {
        width: 45px;
        height: 45px;
        border: 2px solid hsl(var(--base));
        border-radius: 50%;
        overflow: hidden;
        vertical-align: middle;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.375rem;
    }

    .header .user-dropdown__btn i {
        transform: translateY(0);
    }

    .header .user-dropdown .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100% !important;
        transform: scaleY(1) !important;
        box-shadow: 0 10px 40px 0px hsl(var(--base)/0.1);
        border-color: hsl(var(--black)/0.05);
        border-radius: 15px;
        display: none;
    }

    .header .user-dropdown .dropdown-menu.show {
        display: block;
    }
}

/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 1199px) {
    .header.fixed-header .nav-menu {
        border-top-color: hsl(var(--secondary-l-800));
    }

    .header.header-2 .nav-menu {
        border-color: hsl(var(--base-two-l-100));
    }

    .header.header-2 .nav-item .nav-link {
        color: hsl(var(--secondary-l-700));
    }

    .header .navbar-collapse {
        max-height: 400px;
        margin-top: 10px;
        transition: 0.3s;
        overflow: auto;
    }

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

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

    .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: 1rem;
        font-weight: 500;
        margin-bottom: 8px;
        padding: 10px 10px 10px 0 !important;
        margin: 0 !important;
        color: hsl(var(--body-color));
    }

    .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 15px;
        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: 12px 0;
        font-weight: 500;
        font-size: 1rem;
        color: hsl(var(--body-color));
        border-radius: 5px;
        transition: 0.3s;
    }

    .header .dropdown-menu__link .ti {
        transform: translateY(5%);
    }

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

    .header .nav-menu .custom--dropdown .nav-link,
    .header .nav-menu .dropdown .nav-link {
        padding-right: 20px;
        overflow: hidden;
    }

    .header .nav-menu .custom--dropdown .nav-link::after,
    .header .nav-menu .dropdown .nav-link::after {
        content: "\eb0b";
        font-family: "tabler-icons";
        font-size: 1.25rem;
        line-height: 1;
        padding-left: 2px;
        display: inline-block;
        transform: translateY(2px);
        transition: 0.3s;
    }

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

    .header .user-dropdown__btn {
        width: 40px;
        height: 40px;
        border: 2px solid hsl(var(--base));
        border-radius: 50%;
        overflow: hidden;
        vertical-align: middle;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.25rem;
    }

    .header .user-dropdown__btn i {
        transform: translateY(0);
    }

    .header .user-dropdown .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100% !important;
        transform: scaleY(1) !important;
        box-shadow: 0 10px 40px 0px hsl(var(--base)/0.1);
        border-color: hsl(var(--black)/0.05);
        border-radius: 10px;
        display: none;
    }

    .header .user-dropdown .dropdown-menu.show {
        display: block;
    }
}

.header .header-button {
    width: 35px;
    height: 35px;
    border-color: transparent;
    color: hsl(var(--white));
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(var(--base)) !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 7px;
    overflow: hidden;
    transition: 0.15s ease-in-out;
    font-size: 1.375rem;
}

.header .header-button i {
    transform: translateY(5%);
}

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

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

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

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

@media screen and (max-width: 1199px) {
    .language-box .nice-select .list {
        left: auto;
        right: 0;
    }
}

.language-box .form--control {
    height: auto;
    line-height: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    backdrop-filter: none;
    background: transparent !important;
    box-shadow: 0 0;
    border: 0;
    padding: 0;
}

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

.offcanvas-menu .offcanvas-body {
    padding: 30px;
}

.offcanvas-menu .btn-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: hsl(var(--secondary-l-700));
    border-radius: 50%;
    padding: 12px;
    opacity: 1;
    z-index: 3;
}

.offcanvas-menu .btn-close::after {
    content: "\eb55";
    font-family: "tabler-icons";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(var(--body-color));
    font-size: 1.875rem;
}

.offcanvas-menu .btn-close:hover {
    background: hsl(var(--secondary-l-900));
}

.offcanvas-menu__user {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: hsl(var(--base-d-500));
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.offcanvas-menu__user::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, hsl(var(--white)) 0px, hsl(var(--white)) 1px, transparent 1px, transparent 51px);
    opacity: 0.05;
    z-index: -1;
}

.offcanvas-menu__user__img {
    width: 120px;
    height: 120px;
    border: 2px solid hsl(var(--base-two));
    border-radius: 50%;
    padding: 2px;
    margin-bottom: 26px;
}

.offcanvas-menu__user__img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.offcanvas-menu__user__txt {
    text-align: center;
}

.offcanvas-menu__user__name {
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--white));
    margin-bottom: 14px;
}

.offcanvas-menu__user__username {
    font-size: 1.125rem;
    line-height: 1;
    color: hsl(var(--white));
    margin-bottom: -3px;
}

.offcanvas-menu__nav {
    padding-top: 30px;
}

.offcanvas-menu__nav>ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.offcanvas-menu__nav>ul li {
    position: relative;
}

.offcanvas-menu__nav>ul li:last-child::after {
    display: none;
}

.offcanvas-menu__nav>ul li::after {
    content: "";
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    border-bottom: 1px solid hsl(var(--secondary-l-800)/0.4);
}

.offcanvas-menu__dropdown {
    position: relative;
}

.offcanvas-menu__dropdown>.offcanvas-menu__link {
    position: relative;
}

.offcanvas-menu__dropdown>.offcanvas-menu__link::after {
    content: "\ea5f";
    font-family: "tabler-icons";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}

.offcanvas-menu__dropdown>.offcanvas-menu__link.active::after {
    transform: translateY(-50%) rotate(-180deg);
}

.offcanvas-menu__dropdown>.offcanvas-menu__link.active+.offcanvas-menu__dropdown-menu {
    padding: 15px 0 15px 40px;
    height: auto;
}

.offcanvas-menu__dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 0 0 0 40px;
    border-left: 2px dashed hsl(var(--base-l-500));
    margin-left: 17.5px;
    height: 0;
    transition: 0.3s;
    overflow: hidden;
}

.offcanvas-menu__dropdown-menu li::after {
    top: calc(100% + 17px) !important;
}

.offcanvas-menu__dropdown-menu .offcanvas-menu__link {
    font-size: 1rem;
}

.offcanvas-menu__dropdown-menu .offcanvas-menu__link.active {
    font-weight: 700;
}

.offcanvas-menu__link {
    font-size: 1.125rem;
    line-height: 1;
    display: flex;
    gap: 15px;
    align-items: center;
    color: hsl(var(--dark-l-200));
}

.offcanvas-menu__link.active {
    font-weight: 600;
    color: hsl(var(--base));
}

.offcanvas-menu__link.active .offcanvas-menu__link__icon {
    color: hsl(var(--white));
    background: hsl(var(--base));
}

.offcanvas-menu__link__icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: hsl(var(--base));
    background: hsl(var(--base-two-l-900));
    border-radius: 10px;
    transition: 0.3s;
}

.offcanvas-menu__link__icon i {
    display: flex;
}

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

.offcanvas-menu__link:hover .offcanvas-menu__link__icon {
    color: hsl(var(--white));
    background: hsl(var(--base));
}

/* ================================= Header Css End =========================== */
/* ============= Footer Start Here ======================= */
.footer-area {
    padding-top: 120px;
    background: hsl(var(--dark-d-500));
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .footer-area {
        padding-top: 100px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area {
        padding-top: 80px;
    }
}

@media screen and (max-width: 575px) {
    .footer-area {
        padding-top: 60px;
    }
}

.footer-area__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto !important;
    background-repeat: repeat !important;
    opacity: 0.05;
    z-index: -1;
}

.footer-area__vector-1 {
    position: absolute;
    top: 100px;
    left: 80px;
    width: 180px;
    transform: rotate(-15deg);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .footer-area__vector-1 {
        top: 80px;
        left: 60px;
        width: 150px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area__vector-1 {
        top: 60px;
        left: 40px;
        width: 120px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__vector-1 {
        top: 40px;
        left: 20px;
        width: 100px;
    }
}

@media screen and (max-width: 767px) {
    .footer-area__vector-1 {
        top: 30px;
        left: 10px;
        width: 80px;
    }
}

.footer-area__vector-2 {
    position: absolute;
    top: 300px;
    right: 100px;
    width: 120px;
    transform: rotate(-15deg);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .footer-area__vector-2 {
        right: 80px;
        width: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area__vector-2 {
        right: 60px;
        width: 80px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__vector-2 {
        right: 40px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .footer-area__vector-2 {
        right: 20px;
        width: 50px;
    }
}

.footer-area__vector-3 {
    position: absolute;
    top: 50%;
    left: 300px;
    width: 100px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .footer-area__vector-3 {
        left: 240px;
        width: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area__vector-3 {
        left: 100px;
        width: 60px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__vector-3 {
        left: 50px;
        width: 50px;
    }
}

@media screen and (max-width: 767px) {
    .footer-area__vector-3 {
        left: 10px;
        width: 40px;
    }
}

.footer-area__vector-4 {
    position: absolute;
    bottom: 100px;
    right: 150px;
    width: 150px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .footer-area__vector-4 {
        bottom: 80px;
        right: 120px;
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area__vector-4 {
        bottom: 60px;
        right: 90px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__vector-4 {
        right: 60px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .footer-area__vector-4 {
        right: 30px;
        width: 60px;
    }
}

.top-footer {
    position: relative;
}

.footer-content {
    text-align: center;
}

.footer-content__logo {
    width: 150px;
    margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
    .footer-content__logo {
        width: 80px;
        margin-bottom: 30px;
    }
}

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

.footer-content__social {
    justify-content: center;
    margin-bottom: 33px;
}

@media screen and (max-width: 767px) {
    .footer-content__social {
        margin-bottom: 30px;
    }
}

.footer-content__social .social-list__link {
    color: hsl(var(--base-two-d-300));
    background: hsl(var(--base-two-l-900));
    box-shadow: 0 0;
    border-color: hsl(var(--base-two)/0.2);
}

.footer-content__social .social-list__link:hover,
.footer-content__social .social-list__link:focus {
    color: hsl(var(--white));
    background: hsl(var(--base-two-d-200));
    border-color: hsl(var(--base-two)/0.2);
}

.footer-content__desc {
    color: hsl(var(--secondary-l-400));
    margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
    .footer-content__desc {
        margin-bottom: 29px;
    }
}

.footer-content__link ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .footer-content__link ul {
        gap: 10px;
    }
}

.footer-content__link__item {
    font-size: 1.125rem;
    line-height: 45px;
    height: 45px;
    color: hsl(var(--secondary-l-700));
    backdrop-filter: blur(10px);
    background: hsl(var(--base-l-400)/0.15);
    padding: 0 30px;
    border-radius: 25px;
}

@media screen and (max-width: 991px) {
    .footer-content__link__item {
        font-size: 1rem;
        line-height: 40px;
        height: 40px;
        padding: 0 25px;
    }
}

@media screen and (max-width: 767px) {
    .footer-content__link__item {
        font-size: 0.9375rem;
        line-height: 35px;
        height: 35px;
        padding: 0 20px;
    }
}

.footer-content__link__item:hover {
    color: hsl(var(--secondary-l-700));
    background: hsl(var(--base-l-400)/0.3);
}

.footer-subscribe {
    padding-bottom: 120px;
    border-bottom: 1px solid hsl(var(--base-l-600)/0.15);
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .footer-subscribe {
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 991px) {
    .footer-subscribe {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .footer-subscribe {
        padding-bottom: 60px;
    }
}

.footer-subscribe .form {
    align-items: center;
    gap: 40px;
}

.footer-subscribe .form input {
    color: hsl(var(--secondary-l-800));
    border-color: hsl(var(--white)/0.5);
}

.footer-subscribe .form input:focus {
    border-color: hsl(var(--base-l-300));
}

/* ============= Footer End Here ======================= */
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
    padding-bottom: 60px;
}

@media screen and (max-width: 1199px) {
    .bottom-footer {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 991px) {
    .bottom-footer {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 575px) {
    .bottom-footer {
        padding-bottom: 30px;
    }
}

.bottom-footer .container {
    overflow: hidden;
    margin-top: -7px;
    margin-bottom: -8px;
}

@media screen and (max-width: 767px) {
    .bottom-footer .container {
        margin-top: -5px;
        margin-bottom: -6px;
    }
}

.bottom-footer__txt {
    width: max-content;
    text-align: center;
    max-width: 100%;
    font-size: 1.125rem;
    color: hsl(var(--secondary-l-400));
    margin: 0 auto;
    position: relative;
}

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

@media screen and (max-width: 767px) {
    .bottom-footer__txt {
        font-size: 0.875rem;
    }
}

.bottom-footer__txt::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    width: 100vw;
    height: 1px;
    background: hsl(var(--white)/0.2);
}

@media screen and (max-width: 767px) {
    .bottom-footer__txt::before {
        right: calc(100% + 5px);
    }
}

.bottom-footer__txt::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    width: 100vw;
    height: 1px;
    background: hsl(var(--white)/0.2);
}

@media screen and (max-width: 767px) {
    .bottom-footer__txt::after {
        left: calc(100% + 5px);
    }
}

.bottom-footer__txt a {
    font-weight: 600;
    color: hsl(var(--base-l-200));
}

/* =============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.375rem;
}

@media screen and (max-width: 991px) {
    .scroll-top {
        display: none;
    }
}

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

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

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

/* ===================== 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;
    gap: 15px;
}

@media screen and (max-width: 991px) {
    .social-list {
        gap: 10px;
    }
}

.social-list__link {
    width: 50px;
    height: 50px;
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--base)/0.2);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    color: hsl(var(--base));
    background-color: hsl(var(--base-l-900));
    font-size: 1.375rem;
}

@media screen and (max-width: 991px) {
    .social-list__link {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

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

.social-list__link i {
    transform: translateY(5%);
}

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

/* ================================= Social Icon Css End ===========================  */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
    background: hsl(var(--base-l-900)/0.5);
    padding-top: 100px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .breadcrumb {
        padding-top: 95px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb {
        padding-top: 75px;
    }
}

.breadcrumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: hsl(var(--base));
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .breadcrumb::after {
        height: 55px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb::after {
        height: calc(65px / 2 + 10px);
    }
}

.breadcrumb__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.08;
    z-index: -1;
}

.breadcrumb__vector-1 {
    position: absolute;
    bottom: 0;
    left: 100px;
    width: 600px;
    transform: rotate(5deg);
    opacity: 0.1;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .breadcrumb__vector-1 {
        left: 80px;
        width: 500px;
    }
}

@media screen and (max-width: 1199px) {
    .breadcrumb__vector-1 {
        left: 60px;
        width: 400px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb__vector-1 {
        left: 40px;
        width: 300px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb__vector-1 {
        left: 30px;
        width: 200px;
        opacity: 0.2;
    }
}

@media screen and (max-width: 575px) {
    .breadcrumb__vector-1 {
        left: 20px;
        width: 150px;
    }
}

.breadcrumb__vector-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    opacity: 0.1;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .breadcrumb__vector-2 {
        width: 250px;
    }
}

@media screen and (max-width: 1199px) {
    .breadcrumb__vector-2 {
        width: 230px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb__vector-2 {
        width: 180px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb__vector-2 {
        width: 130px;
    }
}

@media screen and (max-width: 575px) {
    .breadcrumb__vector-2 {
        width: 100px;
        opacity: 0.15;
    }
}

.breadcrumb__wrapper {
    text-align: center;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

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

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

@media screen and (max-width: 575px) {
    .breadcrumb__wrapper {
        padding: 60px 0;
    }
}

.breadcrumb__title {
    font-size: 4.375rem;
    font-weight: 500;
    margin-top: -19px;
    margin-bottom: -20px;
}

@media screen and (max-width: 1599px) {
    .breadcrumb__title {
        font-size: 4.0625rem;
        margin-top: -16px;
        margin-bottom: -19px;
    }
}

@media screen and (max-width: 1399px) {
    .breadcrumb__title {
        font-size: 3.75rem;
        margin-top: -15px;
        margin-bottom: -16px;
    }
}

@media screen and (max-width: 1199px) {
    .breadcrumb__title {
        font-size: 3.125rem;
        margin-top: -13px;
        margin-bottom: -14px;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb__title {
        font-size: 2.5rem;
        margin-top: -11px;
        margin-bottom: -11px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb__title {
        font-size: 2.1875rem;
        margin-top: -9px;
        margin-bottom: -10px;
    }
}

/* ====================== Breadcrumb Css End ==================== */
.post-sidebar {
    position: sticky;
    top: 104px;
    max-height: calc(100vh - 128px);
}

@media screen and (max-width: 991px) {
    .post-sidebar {
        max-height: none;
    }
}

@media screen and (max-width: 1399px) {
    .post-sidebar.post-sidebar-collapsable {
        position: fixed;
        top: 0;
        left: 0;
        width: 290px;
        height: 100%;
        max-height: none;
        background: hsl(var(--white));
        transform: translateX(-100%);
        padding: 10px;
        transition: all 0.3s ease-in;
        z-index: 999;
    }

    .post-sidebar.post-sidebar-collapsable.active {
        transform: translateX(0);
    }

    .post-sidebar.post-sidebar-collapsable .os-viewport {
        margin-bottom: 10px;
    }

    .post-sidebar.post-sidebar-collapsable .post-sidebar__card {
        width: 270px;
    }
}

.post-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid hsl(var(--secondary-l-900));
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.post-sidebar__header .title {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 0;
}

.post-sidebar__header .btn--icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.post-sidebar__header .btn--icon i {
    transform: translateY(0%);
}

.post-sidebar__card {
    background: hsl(var(--base-l-900)/0.5);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 35px;
}

@media screen and (max-width: 1399px) {
    .post-sidebar__card {
        padding: 20px;
    }
}

@media screen and (max-width: 1399px) {
    .post-sidebar__card {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .post-sidebar__card {
        padding: 15px;
        margin-bottom: 20px;
    }
}

.post-sidebar__card:last-child {
    margin-bottom: 0;
}

.post-sidebar__card__header {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--base));
    border-bottom: 1px solid hsl(var(--secondary-l-700));
    padding-left: 30px;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .post-sidebar__card__header {
        font-size: 1.375rem;
        padding-left: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .post-sidebar__card__header {
        font-size: 1.25rem;
        padding-left: 20px;
    }
}

.post-sidebar__card__header::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    border-top: 6px solid transparent;
    border-left: 12px solid hsl(var(--base));
    border-bottom: 12px solid transparent;
}

@media screen and (max-width: 1399px) {
    .post-sidebar__card__header::before {
        border-top-width: 5px;
        border-left-width: 10px;
        border-bottom-width: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .post-sidebar__card__header::before {
        border-top-width: 4px;
        border-left-width: 8px;
        border-bottom-width: 8px;
    }
}

.post-sidebar__card__header::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 9px;
    border-top: 12px solid transparent;
    border-right: 12px solid hsl(var(--base-two));
    border-bottom: 6px solid transparent;
}

@media screen and (max-width: 1399px) {
    .post-sidebar__card__header::after {
        left: 8px;
        border-top-width: 10px;
        border-right-width: 10px;
        border-bottom-width: 5px;
    }
}

@media screen and (max-width: 1199px) {
    .post-sidebar__card__header::after {
        left: 7px;
        border-top-width: 8px;
        border-right-width: 8px;
        border-bottom-width: 4px;
    }
}

.post-sidebar__card__body {
    padding-top: 25px;
}

.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__filter-item-list li {
    margin-bottom: 15px;
}

.post-sidebar__filter-item-list li:last-child {
    margin-bottom: 0;
}

.post-sidebar__filter-category-list li {
    margin-bottom: 25px;
}

.post-sidebar__filter-category-list li:last-child {
    margin-bottom: 0;
}

.post-sidebar__filter-category-list .post-sidebar__filter-category-list {
    padding-top: 20px;
    padding-left: 10px;
    margin-left: 10px;
    display: none;
    border-left: 1px solid hsl(var(--secondary-l-800));
}

.post-sidebar__filter-category-list__item {
    display: block;
    font-size: 1.0625rem;
    line-height: 1;
    color: hsl(var(--body-color));
    user-select: none;
}

.post-sidebar__filter-category-list__item.active {
    font-weight: 600;
    color: hsl(var(--base-d-100));
}

.post-sidebar__filter-category-list__item.has-sub {
    padding-right: 20px;
    position: relative;
}

.post-sidebar__filter-category-list__item.has-sub.active {
    font-weight: 400;
}

.post-sidebar__filter-category-list__item.has-sub.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.post-sidebar__filter-category-list__item.has-sub::after {
    content: "\ea61";
    font-family: "tabler-icons";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 15px;
    font-size: 1.0625rem;
    transition: 0.3s;
}

.post-sidebar__filter-category-list__item .badge {
    font-size: 0.75rem;
    padding-top: 1px;
    padding-bottom: 1px;
}

.post-sidebar__filter-category-list__item:hover {
    color: hsl(var(--base-d-100));
}

.post-sidebar__recent-post {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media screen and (max-width: 991px) {
    .post-sidebar__recent-post {
        gap: 15px;
    }
}

.post-sidebar__recent-post__link {
    display: flex;
    gap: 20px;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
    .post-sidebar__recent-post__link {
        gap: 15px;
    }
}

.post-sidebar__recent-post__link:hover {
    color: hsl(var(--base-d-100));
}

.post-sidebar__recent-post__link:hover .post-sidebar__recent-post__thumb {
    filter: brightness(1.1);
}

.post-sidebar__recent-post__thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    filter: brightness(0.9);
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .post-sidebar__recent-post__thumb {
        width: 100px;
        height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .post-sidebar__recent-post__thumb {
        width: 90px;
        height: 60px;
        border-radius: 7px;
    }
}

.post-sidebar__recent-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-sidebar__recent-post__txt {
    font-size: 1.125rem;
    font-weight: 500;
}

@media screen and (max-width: 1399px) {
    .post-sidebar__recent-post__txt {
        font-size: 1.0625rem;
    }
}

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

.post-sidebar__tag .badge {
    font-size: 1rem;
}

@media screen and (max-width: 1199px) {
    .post-sidebar__tag .badge {
        font-size: 0.9375rem;
        padding: 5px 10px;
    }
}

@media screen and (max-width: 767px) {
    .post-sidebar__tag .badge {
        font-size: 0.875rem;
        padding: 5px 10px;
    }
}

.post-sidebar__contact__item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
    .post-sidebar__contact__item {
        font-size: 1.125rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .post-sidebar__contact__item {
        gap: 5px;
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

.post-sidebar__contact__item:last-child {
    margin-bottom: 0;
}

.post-sidebar__contact__item .ti {
    transform: translateY(5%);
}

.post-sidebar__donor-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media screen and (max-width: 991px) {
    .post-sidebar__donor-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media screen and (max-width: 575px) {
    .post-sidebar__donor-list {
        flex-direction: column;
    }
}

.post-sidebar__donor-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: hsl(var(--white));
    border-radius: 15px;
    padding: 20px;
}

@media screen and (max-width: 991px) {
    .post-sidebar__donor-card {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 575px) {
    .post-sidebar__donor-card {
        width: 100%;
    }
}

.post-sidebar__donor-card .post-sidebar__donor-card__icon {
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5625rem;
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
    .post-sidebar__donor-card .post-sidebar__donor-card__icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.25rem;
    }
}

.post-sidebar__donor-card .post-sidebar__donor-card__name {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .post-sidebar__donor-card .post-sidebar__donor-card__name {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
}

.post-sidebar__donor-card .post-sidebar__donor-card__desc {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .post-sidebar__donor-card .post-sidebar__donor-card__desc {
        font-size: 0.875rem;
    }
}

/* ================================= Start Rating Css Start =========================== */
.rating-list {
    width: 100%;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    line-height: 1;
}

.rating-list.input-rating {
    font-size: 1.25rem;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .rating-list.input-rating {
        font-size: 1rem;
    }
}

.rating-list.rating i {
    color: hsl(var(--dark-l-500));
}

.rating-list__item {
    color: hsl(var(--dark-l-500));
}

.rating-list__item .rating {
    color: hsl(var(--warning-d-200)) !important;
}

.rating-list__item .rating-half {
    color: transparent !important;
    background-image: linear-gradient(to left, hsl(var(--dark-l-500)) 50%, hsl(var(--warning-d-200)) 50%) !important;
    background-clip: text !important;
}

.rating-list__item .rated {
    color: hsl(var(--warning));
}

.rating-list__item .rated-half {
    color: transparent;
    background-image: linear-gradient(to left, hsl(var(--dark-l-500)) 50%, hsl(var(--warning)) 50%);
    background-clip: text;
}

.rating-list__item i {
    transform: translate(0);
}

.rating-list__text {
    display: block;
    font-weight: 600;
    line-height: 1;
    margin-left: 5px;
}

/* ================================= Start Rating Css End =========================== */
/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider .slick-list {
    margin: 0 -10px;
}

@media screen and (max-width: 1199px) {
    .slick-initialized.slick-slider .slick-list {
        margin: 0 -12.5px;
    }
}

@media screen and (max-width: 767px) {
    .slick-initialized.slick-slider .slick-list {
        margin: 0 -10px;
    }
}

.slick-initialized.slick-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

@media screen and (max-width: 1199px) {
    .slick-initialized.slick-slider .slick-slide {
        padding: 0 7.5px;
    }
}

@media screen and (max-width: 767px) {
    .slick-initialized.slick-slider .slick-slide {
        padding: 0 5px;
    }
}

.slick-initialized.slick-slider .slick-slide>div {
    height: 100%;
}

.slick-arrow {
    border: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid hsl(var(--base));
    border-radius: 50%;
    color: hsl(var(--base));
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    font-size: 1.375rem;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .slick-arrow {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .slick-arrow {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.125rem;
    }
}

.slick-arrow svg {
    width: 35px;
    height: 35px;
}

@media screen and (max-width: 991px) {
    .slick-arrow svg {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 767px) {
    .slick-arrow svg {
        width: 25px;
        height: 25px;
    }
}

.slick-arrow .ti {
    transform: translateY(5%);
}

@media screen and (max-width: 991px) {
    .slick-arrow .ti {
        transform: translateY(0%);
    }
}

.slick-arrow:hover {
    color: hsl(var(--white));
    background: hsl(var(--base));
}

.slick-arrow.slick-disabled {
    cursor: no-drop;
    opacity: 0.6;
    color: hsl(var(--base));
    background: hsl(var(--white));
}

/* Dots Css Start */
.slick-dots {
    text-align: center;
    padding-top: 30px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.slick-dots li {
    display: inline-block;
    height: 10px;
}

.slick-dots li button {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    text-indent: -9999px;
    transition: 0.3s linear;
    position: relative;
}

.slick-dots li button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: hsl(var(--black)/0.3);
    transform: translateY(-50%);
    transition: 0.3s linear;
}

.slick-dots li.slick-active button {
    background-color: hsl(var(--base));
}

.slick-dots li.slick-active button::after {
    background: transparent;
}

/* Dots Css End */
/* ================= Slick Arrow & Dots css Start ================ */
.scroll.os-host-overflow-y {
    padding-right: 6px;
}

.scroll.os-host-overflow-x {
    padding-bottom: 6px;
}

.os-theme-dark>.os-scrollbar,
.os-theme-light>.os-scrollbar {
    padding: 0;
}

.os-theme-dark>.os-scrollbar-vertical,
.os-theme-light>.os-scrollbar-vertical {
    width: 6px;
    background: hsl(var(--secondary-l-800));
    border-radius: 3px;
}

.os-theme-dark>.os-scrollbar-horizontal,
.os-theme-light>.os-scrollbar-horizontal {
    height: 6px;
    background: hsl(var(--secondary-l-800));
    border-radius: 3px;
}

.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
    background: hsl(var(--secondary-l-600));
    transition: background 0.3s !important;
}

.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle.active {
    background: hsl(var(--secondary-l-400));
}

.os-theme-dark>.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle {
    background: hsl(var(--secondary-l-400));
}

/* ============ Home Page Sections Start ============ */
/* Banner Section Start */
/* ====================== Banner Css Start ==================== */
.banner-section {
    background: hsl(var(--secondary-l-900)/0.3);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .banner-section {
        padding-top: 95px;
    }
}

@media screen and (max-width: 991px) {
    .banner-section {
        padding-top: 75px;
    }
}

.banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: hsl(var(--base));
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .banner-section::after {
        height: 55px;
    }
}

@media screen and (max-width: 991px) {
    .banner-section::after {
        height: calc(65px / 2 + 10px);
    }
}

.banner-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.08;
    z-index: -1;
}

.banner-section__vector-1 {
    position: absolute;
    top: 150px;
    right: 150px;
    transform: rotate(-10deg);
    width: 140px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .banner-section__vector-1 {
        top: 140px;
        right: 120px;
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-section__vector-1 {
        top: 130px;
        right: 100px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .banner-section__vector-1 {
        top: 100px;
        right: 50px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .banner-section__vector-1 {
        top: 100px;
        right: 30px;
        width: 60px;
    }
}

.banner-section__vector-2 {
    position: absolute;
    top: 50%;
    left: 40px;
    width: 120px;
    transform: rotate(30deg) translateY(-50%);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .banner-section__vector-2 {
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-section__vector-2 {
        left: 30px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .banner-section__vector-2 {
        left: 20px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .banner-section__vector-2 {
        left: 5px;
        width: 60px;
    }
}

.banner-section__vector-3 {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 150px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .banner-section__vector-3 {
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-section__vector-3 {
        right: 40px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .banner-section__vector-3 {
        right: 30px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .banner-section__vector-3 {
        right: 20px;
        width: 60px;
    }
}

.banner-content {
    padding: 200px 0;
    text-align: center;
}

@media screen and (max-width: 1399px) {
    .banner-content {
        padding: 150px 0;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content {
        padding: 120px 0;
    }
}

@media screen and (max-width: 991px) {
    .banner-content {
        padding: 100px 0;
    }
}

@media screen and (max-width: 767px) {
    .banner-content {
        padding: 80px 0;
    }
}

.banner-content__subtitle {
    font-family: var(--body-font);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: hsl(var(--base-two));
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    color: hsl(var(--base));
    margin-top: -10px;
    margin-bottom: 19px;
}

@media screen and (max-width: 1399px) {
    .banner-content__subtitle {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__subtitle {
        font-size: 1.5625rem;
        margin-top: -8px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__subtitle {
        font-size: 1.25rem;
        text-underline-offset: 3px;
        margin-top: -7px;
        margin-bottom: 20px;
    }
}

.banner-content__subtitle span {
    text-decoration: underline;
    text-decoration-color: hsl(var(--base-two));
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

@media screen and (max-width: 991px) {
    .banner-content__subtitle span {
        text-underline-offset: 3px;
    }
}

.banner-content__title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.3;
    color: hsl(var(--body-color));
    margin-bottom: 21px;
}

@media screen and (max-width: 1399px) {
    .banner-content__title {
        font-size: 4.375rem;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__title {
        font-size: 3.75rem;
        margin-bottom: 21px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__title {
        font-size: 3.125rem;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__title {
        font-size: 2.1875rem;
        margin-bottom: 23px;
    }
}

.banner-content__title__highlighted-txt {
    display: inline;
    font-weight: 300;
}

.banner-content__desc {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 42px;
}

@media screen and (max-width: 1199px) {
    .banner-content__desc {
        font-weight: 400;
        margin-bottom: 37px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__desc {
        font-size: 1.125rem;
        font-weight: 400;
        margin-bottom: 38px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__desc {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 34px;
    }
}

/* ====================== Banner Css End ==================== */
/* Banner Section End */
/* Brand Section Start */
.brand {
    background: hsl(var(--secondary-l-900)/0.3);
    position: relative;
    z-index: 2;
}

.brand__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.08;
    z-index: -1;
}

.brand__vector-1 {
    position: absolute;
    top: 100px;
    left: 60px;
    width: 150px;
    transform: rotate(-15deg);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .brand__vector-1 {
        top: 80px;
        left: 40px;
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .brand__vector-1 {
        top: 60px;
        left: 20px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .brand__vector-1 {
        top: 40px;
        left: 10px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .brand__vector-1 {
        top: 30px;
        left: 5px;
        width: 60px;
    }
}

.brand__vector-2 {
    position: absolute;
    bottom: 100px;
    right: 80px;
    width: 140px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .brand__vector-2 {
        bottom: 80px;
        right: 60px;
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .brand__vector-2 {
        bottom: 60px;
        right: 40px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .brand__vector-2 {
        bottom: 40px;
        right: 20px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .brand__vector-2 {
        bottom: 30px;
        right: 10px;
        width: 60px;
    }
}

.brand .section-heading {
    position: sticky;
    top: 104px;
}

@media screen and (max-width: 991px) {
    .brand .section-heading {
        text-align: center;
    }

    .brand .section-heading .section-heading__subtitle {
        margin-inline: auto;
    }
}

.brand__item {
    aspect-ratio: 1/0.6;
    padding: 30px;
    background: hsl(var(--white));
    border: 1px solid hsl(var(--secondary-l-800)/0.5);
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .brand__item {
        aspect-ratio: 1/0.7;
        padding: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .brand__item {
        aspect-ratio: auto;
        height: 100px;
        padding: 25px;
    }
}

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

@media screen and (max-width: 767px) {
    .brand__item {
        height: 80px;
        padding: 15px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 479px) {
    .brand__item {
        height: 70px;
    }
}

.brand__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-l-900));
    transition: 0.3s;
    z-index: -1;
}

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

.brand__item:hover {
    background: hsl(var(--white));
    box-shadow: 0px 20px 40px 0px hsl(var(--base)/0.15);
    border-color: hsl(var(--base)/0.3);
    transform: translateY(-5px);
}

.brand__item:hover .brand__item__bg {
    background: hsl(var(--base-two-l-900));
}

/* Brand Section End */
/* About Section Start */
.about {
    position: relative;
    z-index: 2;
}

.about__vector-1 {
    position: absolute;
    top: 120px;
    left: 120px;
    width: 100px;
    transform: rotate(-15deg);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .about__vector-1 {
        top: 80px;
        left: 60px;
        width: 90px;
    }
}

@media screen and (max-width: 991px) {
    .about__vector-1 {
        top: 60px;
        left: 40px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .about__vector-1 {
        top: 40px;
        left: 20px;
        width: 60px;
    }
}

.about__vector-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .about__vector-2 {
        width: 200px;
    }
}

@media screen and (max-width: 991px) {
    .about__vector-2 {
        width: 170px;
    }
}

@media screen and (max-width: 767px) {
    .about__vector-2 {
        width: 150px;
    }
}

@media screen and (max-width: 1199px) {
    .about__txt {
        padding-left: 36px;
    }
}

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

.about__txt .section-heading {
    margin-bottom: 43px;
}

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

.about__txt__desc {
    line-height: 1.5;
    margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
    .about__txt__desc {
        margin-bottom: 23px;
    }
}

.about__txt__list {
    margin-bottom: -8px;
}

@media screen and (max-width: 767px) {
    .about__txt__list {
        margin-bottom: -7px;
    }
}

.about__txt__list li {
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .about__txt__list li {
        margin-bottom: 18px;
    }
}

.about__txt__list li:last-child {
    margin-bottom: 0;
}

.about__txt__list__title {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 500;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .about__txt__list__title {
        font-size: 1.125rem;
        padding-left: 20px;
        margin-bottom: 6px;
    }
}

.about__txt__list__title::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 20px solid hsl(var(--base));
}

@media screen and (max-width: 767px) {
    .about__txt__list__title::before {
        top: 10px;
        border-left-width: 15px;
        border-top-width: 5px;
        border-bottom-width: 5px;
    }
}

.about__txt__list__title::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 20px solid hsl(var(--base-two));
}

@media screen and (max-width: 767px) {
    .about__txt__list__title::after {
        border-left-width: 15px;
        border-top-width: 5px;
        border-bottom-width: 5px;
    }
}

.about__txt__list__desc {
    display: block;
}

.about__img {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .about__img {
        max-width: 350px;
        margin: 0 auto 50px;
    }
}

.about__img__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-two-l-800));
    z-index: -1;
}

.about__img__shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-two));
    z-index: 1;
}

.about__btn {
    padding-top: 50px;
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
    .about__btn {
        padding-top: 35px;
    }
}

.about__card {
    background: hsl(var(--base-l-900)/0.4);
    padding: 40px;
    border-radius: 20px;
}

@media screen and (max-width: 1399px) {
    .about__card {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    .about__card {
        padding: 20px;
    }
}

.about__card.about__card-2 {
    background: hsl(var(--base-two-l-900)/0.4);
}

.about__card__subtitle {
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 500;
    color: hsl(var(--base));
    padding-left: 30px;
    margin-top: -6px;
    margin-bottom: 10px;
    position: relative;
}

@media screen and (max-width: 1399px) {
    .about__card__subtitle {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .about__card__subtitle {
        font-size: 1.125rem;
    }
}

.about__card__subtitle::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    border-top: 6px solid transparent;
    border-left: 12px solid hsl(var(--base));
    border-bottom: 12px solid transparent;
}

@media screen and (max-width: 1399px) {
    .about__card__subtitle::before {
        top: 5px;
        border-top-width: 5px;
        border-left-width: 10px;
        border-bottom-width: 10px;
    }
}

@media screen and (max-width: 767px) {
    .about__card__subtitle::before {
        top: 4px;
        border-top-width: 4px;
        border-left-width: 8px;
        border-bottom-width: 8px;
    }
}

.about__card__subtitle::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 9px;
    border-top: 12px solid transparent;
    border-right: 12px solid hsl(var(--base-two));
    border-bottom: 6px solid transparent;
}

@media screen and (max-width: 1399px) {
    .about__card__subtitle::after {
        top: 5px;
        left: 8px;
        border-top-width: 10px;
        border-right-width: 10px;
        border-bottom-width: 5px;
    }
}

@media screen and (max-width: 767px) {
    .about__card__subtitle::after {
        top: 4px;
        left: 6px;
        border-top-width: 8px;
        border-right-width: 8px;
        border-bottom-width: 4px;
    }
}

.about__card__title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 400;
    color: hsl(var(--heading-color));
    border-bottom: 1px solid hsl(var(--secondary-l-800));
    padding-bottom: 19px;
    margin-bottom: 28px;
}

@media screen and (max-width: 1399px) {
    .about__card__title {
        font-size: 1.875rem;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .about__card__title {
        font-size: 1.563rem;
        padding-bottom: 10px;
    }
}

.about__card__title span {
    display: inline;
    font-weight: 300;
}

.about__card__desc {
    font-size: 1.25rem;
    color: hsl(var(--body-color));
    margin-bottom: -9px;
}

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

@media screen and (max-width: 767px) {
    .about__card__desc {
        font-size: 1rem;
    }
}

/* About Section End */
/* Campaign Section Start */
.featured-campaign {
    background: hsl(var(--secondary-l-900)/0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.featured-campaign__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.08;
    z-index: -1;
}

.featured-campaign__vector-1 {
    position: absolute;
    top: 200px;
    left: 50px;
    width: 150px;
    transform: rotate(-15deg);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .featured-campaign__vector-1 {
        top: 150px;
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .featured-campaign__vector-1 {
        top: 120px;
        left: 40px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .featured-campaign__vector-1 {
        top: 80px;
        left: 30px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .featured-campaign__vector-1 {
        top: 60px;
        left: 20px;
        width: 60px;
    }
}

.featured-campaign__vector-2 {
    position: absolute;
    bottom: -10px;
    right: 100px;
    width: 100px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .featured-campaign__vector-2 {
        right: 80px;
    }
}

@media screen and (max-width: 991px) {
    .featured-campaign__vector-2 {
        right: 60px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .featured-campaign__vector-2 {
        right: 40px;
        width: 60px;
    }
}

.featured-campaign__btn {
    padding-top: 50px;
    text-align: center;
}

@media screen and (max-width: 1199px) {
    .featured-campaign__btn {
        padding-top: 40px;
    }
}

@media screen and (max-width: 991px) {
    .featured-campaign__btn {
        padding-top: 30px;
    }
}

.filter-card {
    display: none;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-filter__item {
    font-size: 1rem;
    color: hsl(var(--body-color));
    background: hsl(var(--secondary-l-900));
    padding: 5px 15px;
    border-radius: 20px;
}

.category-filter__item:hover {
    color: hsl(var(--body-color));
    background: hsl(var(--secondary-l-800));
}

.category-filter__item.active {
    color: hsl(var(--white));
    background: hsl(var(--base));
}

.campaign-card {
    height: 100%;
    padding: 30px;
    background: hsl(var(--white));
    border: 1px solid hsl(var(--secondary-l-800)/0.6);
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .campaign-card {
        padding: 25px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card {
        max-width: 320px;
        margin: 0 auto;
        padding: 20px;
    }
}

.campaign-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: 80% !important;
    background-position-y: 60% !important;
    opacity: 0.02;
    transition: 0.3s;
    z-index: -1;
}

.campaign-card__badges {
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 3;
}

@media screen and (max-width: 767px) {
    .campaign-card__badges {
        top: 30px;
        gap: 5px;
    }
}

.campaign-card__badge {
    width: max-content;
    max-width: calc(100% - 20px);
    font-size: 1rem;
    line-height: 1.5;
    color: hsl(var(--white));
    background: hsl(var(--base));
    padding: 5px 10px;
    border: 1px solid hsl(var(--white)/0.2);
    border-right-width: 0;
    border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 1399px) {
    .campaign-card__badge {
        font-size: 0.875rem;
    }
}

.campaign-card__badge:last-child {
    color: hsl(var(--body-color));
    background: hsl(var(--base-two-l-800));
}

.campaign-card__badge .ti {
    transform: translateY(5%);
}

.campaign-card__img {
    aspect-ratio: 122/75;
    position: relative;
    z-index: 2;
}

.campaign-card__img .mask-box {
    mask-size: 100% 100%;
}

.campaign-card__img__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-l-800));
    transition: 0.3s;
}

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

.campaign-card__progress {
    width: max-content;
    background: hsl(var(--white));
    border-radius: 50%;
    padding: 5px;
    margin: -80px auto 30px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .campaign-card__progress {
        margin: -70px auto 25px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__progress {
        margin: -60px auto 20px;
    }
}

.campaign-card__progress canvas {
    width: 140px !important;
    height: 140px !important;
    vertical-align: middle;
}

@media screen and (max-width: 1399px) {
    .campaign-card__progress canvas {
        width: 100px !important;
        height: 100px !important;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__progress canvas {
        width: 80px !important;
        height: 80px !important;
    }
}

.campaign-card__progress span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
    font-family: var(--heading-font);
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--heading-color));
}

@media screen and (max-width: 1399px) {
    .campaign-card__progress span {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__progress span {
        font-size: 1.25rem;
    }
}

.campaign-card__txt {
    text-align: center;
}

.campaign-card__title {
    font-size: 1.5625rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: -5px;
    margin-bottom: 19px;
}

@media screen and (max-width: 1399px) {
    .campaign-card__title {
        font-size: 1.375rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
}

.campaign-card__title a {
    display: inline;
    line-height: 1.2;
}

.campaign-card__countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .campaign-card__countdown {
        gap: 5px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__countdown {
        margin-bottom: 20px;
    }
}

.campaign-card__countdown span {
    height: 40px;
    line-height: 38px;
    font-weight: 600;
    padding: 0 15px;
    background: hsl(var(--white));
    color: hsl(var(--body-color));
    border: 1px solid hsl(var(--base-l-800));
    border-radius: 10px;
}

@media screen and (max-width: 1399px) {
    .campaign-card__countdown span {
        height: 35px;
        line-height: 33px;
        padding: 0 10px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__countdown span {
        height: 30px;
        line-height: 28px;
    }
}

.campaign-card__countdown span.closed {
    color: hsl(var(--danger));
    background: hsl(var(--danger-l-900));
}

.campaign-card__info ul {
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .campaign-card__info ul {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__info ul {
        margin-bottom: 20px;
    }
}

.campaign-card__info ul li {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px dashed hsl(var(--secondary-l-800));
    padding: 12px 0;
}

@media screen and (max-width: 1399px) {
    .campaign-card__info ul li {
        padding: 10px 0;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .campaign-card__info ul li {
        font-size: 0.875rem;
    }
}

.campaign-card__info ul li:first-child {
    padding-top: 0;
    margin-top: -4px;
}

@media screen and (max-width: 1399px) {
    .campaign-card__info ul li:first-child {
        margin-top: -2px;
    }
}

.campaign-card__info ul li:first-child i {
    color: hsl(var(--success));
}

.campaign-card__info ul li i {
    color: hsl(var(--warning));
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .campaign-card .btn {
        font-size: 1.125rem;
        padding: 6px 25px;
    }

    .campaign-card .btn .btn__icon {
        width: 40px;
        transform: translateX(22px);
    }
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 30px 40px 0px hsl(var(--base)/0.1);
    border-color: transparent;
}

.campaign-card:hover .campaign-card__bg {
    background-size: 90% !important;
}

.campaign-card:hover .campaign-card__img__shape {
    background: hsl(var(--base-l-900));
    transform: scale(1.05) rotate(-5deg);
}

.table-campaign-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

@media screen and (max-width: 991px) {
    .table-campaign-card {
        max-width: 250px;
        flex-direction: row-reverse;
        text-align: right;
        margin-left: auto;
    }
}

@media screen and (max-width: 767px) {
    .table-campaign-card {
        max-width: 200px;
    }
}

.table-campaign-card__img {
    flex-shrink: 0;
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .table-campaign-card__img {
        width: 60px;
    }
}

.table-campaign-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-campaign-card__txt {
    color: hsl(var(--base));
    margin-top: -6px;
    margin-bottom: -6px;
}

.campaign-details__slider {
    margin-bottom: 25px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .campaign-details__slider {
        margin-bottom: 20px;
    }
}

.campaign-details__slider .slick-prev {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    background: hsl(var(--base-l-900));
    border-color: hsl(var(--base-l-700));
}

@media screen and (max-width: 767px) {
    .campaign-details__slider .slick-prev {
        left: 15px;
    }
}

.campaign-details__slider .slick-prev:hover {
    background: hsl(var(--base-two));
    color: hsl(var(--white));
}

.campaign-details__slider .slick-prev.slick-disabled {
    color: hsl(var(--base));
    background: hsl(var(--base-l-900));
}

.campaign-details__slider .slick-next {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: hsl(var(--base-l-900));
    border-color: hsl(var(--base-l-700));
}

@media screen and (max-width: 767px) {
    .campaign-details__slider .slick-next {
        right: 15px;
    }
}

.campaign-details__slider .slick-next:hover {
    background: hsl(var(--base-two));
    color: hsl(var(--white));
}

.campaign-details__slider .slick-next.slick-disabled {
    color: hsl(var(--base));
    background: hsl(var(--base-l-900));
}

.campaign-details__img {
    aspect-ratio: 122/75;
    border-radius: 20px;
    overflow: hidden;
}

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

.campaign-details__gallery {
    position: relative;
    margin-bottom: 45px;
}

@media screen and (max-width: 1399px) {
    .campaign-details__gallery {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .campaign-details__gallery {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__gallery {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 479px) {
    .campaign-details__gallery .slick-list {
        margin: 0 -5px !important;
    }
}

@media screen and (max-width: 479px) {
    .campaign-details__gallery .slick-slide {
        padding: 0 5px !important;
    }
}

.campaign-details__gallery .slick-current .campaign-details__gallery__item::before {
    opacity: 0.5;
}

.campaign-details__gallery .slick-current .campaign-details__gallery__item::after {
    opacity: 1;
    transform: scale(1);
}

.campaign-details__gallery__item {
    width: calc(33.3333333333% - 20px);
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .campaign-details__gallery__item {
        border-radius: 15px;
    }
}

@media screen and (max-width: 479px) {
    .campaign-details__gallery__item {
        aspect-ratio: 1/0.7;
        border-radius: 10px;
    }
}

.campaign-details__gallery__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-l-800));
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.campaign-details__gallery__item::after {
    content: "\ea5e";
    font-family: "tabler-icons";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    line-height: 24px;
    color: hsl(var(--white));
    background: hsl(var(--base-two-d-200));
    border: 1px solid hsl(var(--white)/0.3);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .campaign-details__gallery__item::after {
        top: 10px;
        right: 10px;
        width: 20px;
        height: 20px;
        line-height: 19px;
        font-size: 0.875rem;
    }
}

.campaign-details__gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.campaign-details__gallery__item:hover img {
    transform: scale(1.05);
}

.campaign-details__info {
    background: hsl(var(--base-l-900)/0.7);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 45px;
}

@media screen and (max-width: 1399px) {
    .campaign-details__info {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .campaign-details__info {
        padding: 30px;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__info {
        padding: 25px;
        margin-bottom: 30px;
    }
}

.campaign-details__info ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 11px;
    column-gap: 30px;
    margin-top: -6px;
    margin-bottom: -8px;
}

@media screen and (max-width: 991px) {
    .campaign-details__info ul {
        column-gap: 20px;
    }
}

.campaign-details__info ul li {
    width: calc(33.3333333333% - 20px);
}

@media screen and (max-width: 1199px) {
    .campaign-details__info ul li {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 991px) {
    .campaign-details__info ul li {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 575px) {
    .campaign-details__info ul li {
        width: 100%;
    }
}

.campaign-details__info ul li span {
    font-weight: 600;
}

.campaign-details__info .progress {
    background-color: hsl(var(--base-l-800));
    margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {
    .campaign-details__info .progress {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__info .progress {
        margin-bottom: 20px;
    }
}

.campaign-details__title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    border-bottom: 1px dashed hsl(var(--base-l-700));
    padding-bottom: 16px;
    margin-top: -10px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .campaign-details__title {
        font-size: 2.1875rem;
        padding-bottom: 17px;
        margin-top: -8px;
    }
}

@media screen and (max-width: 1199px) {
    .campaign-details__title {
        font-size: 1.875rem;
        padding-bottom: 12px;
        margin-top: -7px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__title {
        font-size: 1.5625rem;
        padding-bottom: 13px;
        margin-top: -5px;
        margin-bottom: 20px;
    }
}

.campaign-details__title .badge {
    transform: translateY(-7px);
}

@media screen and (max-width: 1199px) {
    .campaign-details__title .badge {
        transform: translateY(-8px);
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__title .badge {
        transform: translateY(-7px);
        padding: 4px 7px;
    }
}

.campaign-details__desc {
    margin-top: -6px;
}

.campaign-details__desc h1 {
    font-size: clamp(30px, 25px + 1.5625vw, 45px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.campaign-details__desc h2 {
    font-size: clamp(25px, 20px + 1.5625vw, 40px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.campaign-details__desc h3 {
    font-size: clamp(20px, 15px + 1.328125vw, 35px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.campaign-details__desc h4 {
    font-size: clamp(18px, 15px + 0.9375vw, 30px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.campaign-details__desc h5 {
    font-size: clamp(16px, 13.75px + 0.703125vw, 25px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.campaign-details__desc h6 {
    font-size: clamp(15px, 13.75px + 0.390625vw, 20px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.campaign-details__desc p {
    font-size: clamp(14px, 13px + 0.3125vw, 18px);
    margin-bottom: 1rem;
}

.campaign-details__desc p:last-of-type {
    margin-bottom: 0;
}

.campaign-details__desc blockquote {
    font-style: italic;
    font-size: clamp(16px, 15px + 0.3125vw, 20px);
    font-weight: 500;
    background: hsl(var(--base-two-l-900)/0.5);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
    .campaign-details__desc blockquote {
        padding: 20px 25px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__desc blockquote {
        padding: 15px 20px;
    }
}

.campaign-details__desc ol,
.campaign-details__desc ul {
    list-style: revert;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

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

    .campaign-details__desc ol,
    .campaign-details__desc ul {
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

.campaign-details__desc ol li,
.campaign-details__desc ul li {
    margin-bottom: 10px;
}

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

    .campaign-details__desc ol li,
    .campaign-details__desc ul li {
        margin-bottom: 5px;
    }
}

.campaign-details__desc .nbsp {
    line-height: 1;
}

.campaign-details__doc-wrap {
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 20px;
    overflow: hidden;
}

.campaign-details__doc-wrap p {
    padding: 20px;
}

.campaign-details__doc-wrap a {
    font-weight: 600;
}

.campaign-details__doc {
    width: 100%;
    aspect-ratio: 1/0.9;
    vertical-align: middle;
}

.campaign-details__comments {
    margin-bottom: 40px;
}

.campaign-details__comments__title {
    font-size: clamp(20px, 17.5px + 0.78125vw, 30px);
    font-weight: 500;
    margin-top: -9px;
    margin-bottom: clamp(19px, 17px + 0.625vw, 27px);
}

@media screen and (max-width: 1199px) {
    .campaign-details__comments__title {
        margin-top: -8px;
    }
}

@media screen and (max-width: 991px) {
    .campaign-details__comments__title {
        margin-top: -7px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__comments__title {
        margin-top: -6px;
    }
}

.campaign-details__comment {
    border-bottom: 1px solid hsl(var(--secondary-l-800));
    display: flex;
    gap: 25px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

@media screen and (max-width: 575px) {
    .campaign-details__comment {
        flex-direction: column;
        gap: 20px;
    }
}

.campaign-details__comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.campaign-details__comment__user {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .campaign-details__comment__user {
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 991px) {
    .campaign-details__comment__user {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__comment__user {
        width: 70px;
        height: 70px;
    }
}

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

.campaign-details__comment__name {
    font-size: clamp(18px, 16.25px + 0.546875vw, 25px);
    line-height: 1.2;
    font-weight: 500;
    color: hsl(var(--base));
    margin-top: -6px;
    margin-bottom: 7px;
}

.campaign-details__comment__date {
    display: block;
    font-style: italic;
    font-size: clamp(12px, 11.5px + 0.15625vw, 14px);
    font-weight: 500;
    line-height: 1;
    color: hsl(var(--dark-l-400));
    margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
    .campaign-details__comment__date {
        margin-bottom: 11px;
    }
}

.campaign-details__comment__txt {
    color: hsl(var(--body-color));
    margin-bottom: -7px;
}

@media screen and (max-width: 767px) {
    .campaign-details__comment__txt {
        margin-bottom: -6px;
    }
}

.campaign-details__comment-form__title {
    font-size: clamp(20px, 17.5px + 0.78125vw, 30px);
    font-weight: 500;
    margin-top: -9px;
    margin-bottom: clamp(19px, 17px + 0.625vw, 27px);
}

@media screen and (max-width: 1199px) {
    .campaign-details__comment-form__title {
        margin-top: -8px;
    }
}

@media screen and (max-width: 991px) {
    .campaign-details__comment-form__title {
        margin-top: -7px;
    }
}

@media screen and (max-width: 767px) {
    .campaign-details__comment-form__title {
        margin-top: -6px;
    }
}

.campaign-details__comment-form__card {
    padding: 30px;
    background: hsl(var(--secondary-l-900)/0.1);
    border: 1px solid hsl(var(--secondary-l-900));
    border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .campaign-details__comment-form__card {
        padding: 20px;
    }
}

/* Campaign Section End */
/* Category Section Start */
.category {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.category__vector-1 {
    position: absolute;
    top: 100px;
    left: 150px;
    width: 80px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .category__vector-1 {
        left: 135px;
    }
}

@media screen and (max-width: 1199px) {
    .category__vector-1 {
        top: 90px;
        left: 120px;
        width: 70px;
    }
}

@media screen and (max-width: 991px) {
    .category__vector-1 {
        top: 80px;
        left: 80px;
        width: 55px;
    }
}

@media screen and (max-width: 767px) {
    .category__vector-1 {
        top: 60px;
        left: 30px;
        width: 40px;
    }
}

.category__vector-2 {
    position: absolute;
    bottom: 50px;
    right: 100px;
    width: 120px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .category__vector-2 {
        bottom: 40px;
        right: 80px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .category__vector-2 {
        bottom: 30px;
        right: 60px;
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .category__vector-2 {
        bottom: 20px;
        right: 40px;
        width: 60px;
    }
}

.category__card {
    display: block;
    text-align: center;
}

.category__card__img-wrap {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .category__card__img-wrap {
        max-width: 150px;
        margin: 0 auto;
    }
}

.category__card__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-two-l-800));
    transition: 0.3s;
    z-index: -1;
}

.category__card__img {
    aspect-ratio: 1/1;
    background: hsl(var(--base));
    margin-bottom: 30px;
}

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

@media screen and (max-width: 767px) {
    .category__card__img {
        margin-bottom: 15px;
    }
}

.category__card__img a {
    width: 100%;
    height: 100%;
}

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

.category__card__title {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .category__card__title {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
}

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

.category__card__info {
    display: block;
    font-size: 1rem;
    line-height: 1.3;
    color: hsl(var(--dark-l-400));
    margin-bottom: -4px;
}

@media screen and (max-width: 991px) {
    .category__card__info {
        font-size: 0.9375rem;
    }
}

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

.category__card:hover .category__card__shape {
    background: hsl(var(--base-l-800));
    transform: rotate(-10deg);
}

/* Category Section End */
/* Recent Campaign Section Start */
.recent-campaign {
    background: hsl(var(--secondary-l-900)/0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.recent-campaign__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.08;
    z-index: -1;
}

.recent-campaign__vector-1 {
    position: absolute;
    top: 200px;
    left: 50px;
    width: 150px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .recent-campaign__vector-1 {
        top: 180px;
        left: 40px;
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .recent-campaign__vector-1 {
        top: 150px;
        left: 30px;
        width: 90px;
    }
}

@media screen and (max-width: 991px) {
    .recent-campaign__vector-1 {
        top: 120px;
        left: 20px;
        width: 70px;
    }
}

@media screen and (max-width: 767px) {
    .recent-campaign__vector-1 {
        top: 70px;
        left: 10px;
        width: 50px;
    }
}

.recent-campaign__vector-2 {
    position: absolute;
    bottom: 150px;
    right: 50px;
    width: 120px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .recent-campaign__vector-2 {
        bottom: 130px;
        right: 40px;
        width: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .recent-campaign__vector-2 {
        bottom: 100px;
        right: 30px;
        width: 80px;
    }
}

@media screen and (max-width: 991px) {
    .recent-campaign__vector-2 {
        bottom: 70px;
        right: 20px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .recent-campaign__vector-2 {
        bottom: 40px;
        right: 10px;
        width: 40px;
    }
}

.campaign-slider .slick-track {
    display: flex;
}

.campaign-slider .slick-arrow {
    position: absolute;
    bottom: -75px;
    left: 0;
}

@media screen and (max-width: 767px) {
    .campaign-slider .slick-arrow {
        bottom: -60px;
    }
}

.campaign-slider .slick-arrow.slick-next {
    margin-left: 65px;
}

@media screen and (max-width: 767px) {
    .campaign-slider .slick-arrow.slick-next {
        margin-left: 50px;
    }
}

.campaign-slider .slick-slide>div {
    display: flex;
    justify-content: center;
}

.campaign-slider .campaign-card {
    display: block !important;
    max-width: none;
}

.campaign-slider .campaign-card:hover {
    transform: translate(0);
    box-shadow: 0 0;
    border-color: hsl(var(--base));
}

.campaign-slider-pagination {
    text-align: right;
    font-family: var(--heading-font);
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--body-color));
    border-bottom: 2px solid hsl(var(--secondary-l-800));
    padding-top: 45px;
    padding-bottom: 15px;
    position: relative;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .campaign-slider-pagination {
        font-size: 1.5625rem;
        padding-top: 30px;
        padding-bottom: 10px;
    }
}

/* Recent Campaign Section End */
/* Donor Section Start */
.donor {
    background: hsl(var(--base-two-l-900)/0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.donor__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.08;
    z-index: -1;
}

.donor__vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto 80% !important;
    background-position: bottom left !important;
    opacity: 0.07;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .donor__vector {
        background-size: 100% auto !important;
    }
}

.donor__card {
    padding-top: 30px;
    padding-left: 30px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .donor__card {
        padding-top: 20px;
        padding-left: 20px;
    }
}

.donor__card__index {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 60px;
    height: 60px;
    background: hsl(var(--base));
    font-size: 1.5625rem;
    font-weight: 600;
    line-height: 60px;
    box-shadow: 4px 4px 0px hsl(var(--base-two));
    border-radius: 10px;
    color: hsl(var(--white));
    transition: 0.3s;
    z-index: 3;
}

@media screen and (max-width: 767px) {
    .donor__card__index {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}

.donor__card__content {
    padding: 30px;
    background: hsl(var(--white));
    box-shadow: 0px 20px 40px 0px hsl(var(--base)/0.07);
    border: 1px solid hsl(var(--secondary-l-900));
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.donor__card__content__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    background-size: contain !important;
    border-radius: 20px;
    opacity: 0.07;
    z-index: -1;
}

.donor__card__name {
    font-size: 1.5625rem;
    font-weight: 500;
    color: hsl(var(--body-color));
    margin-top: -5px;
    margin-bottom: 10px;
}

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

.donor__card__desc {
    font-size: 1.125rem;
    color: hsl(var(--body-color));
    margin-bottom: -9px;
}

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

.donor__card:hover .donor__card__index {
    background: hsl(var(--base-two-d-100));
    box-shadow: 4px 4px 0px hsl(var(--base));
}

.donor__btn {
    padding-top: 50px;
    text-align: center;
}

@media screen and (max-width: 1199px) {
    .donor__btn {
        padding-top: 40px;
    }
}

@media screen and (max-width: 991px) {
    .donor__btn {
        padding-top: 30px;
    }
}

/* Donor Section End */
/* Counter Section Start */
.counter__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.counter__card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-l-900));
    z-index: -1;
}

.counter__card__icon {
    width: clamp(60px, 50px + 3.125vw, 100px);
    height: clamp(60px, 50px + 3.125vw, 100px);
    margin-bottom: 23px;
}

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

.counter__card__number {
    display: flex;
    font-size: clamp(25px, 21.25px + 1.171875vw, 40px);
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--body-color));
    margin-bottom: clamp(6px, 4.25px + 0.546875vw, 13px);
}

.counter__card__number .odometer-suffix {
    transform: translateY(4%);
}

.counter__card__name {
    font-size: clamp(16px, 15px + 0.3125vw, 20px);
    line-height: 1;
    margin-bottom: -3px;
}

/* Counter Section End */
/* Success Story Section Start */
.story {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.story__vector-1 {
    position: absolute;
    top: 250px;
    left: 100px;
    width: 100px;
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .story__vector-1 {
        top: 200px;
        left: 80px;
        width: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .story__vector-1 {
        top: 150px;
        left: 60px;
        width: 80px;
    }
}

@media screen and (max-width: 991px) {
    .story__vector-1 {
        top: 100px;
        left: 40px;
        width: 70px;
    }
}

@media screen and (max-width: 767px) {
    .story__vector-1 {
        top: 50px;
        left: 20px;
        width: 60px;
    }
}

.story__vector-2 {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 120px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .story__vector-2 {
        bottom: 60px;
        right: 60px;
        width: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .story__vector-2 {
        bottom: 50px;
        right: 40px;
        width: 80px;
    }
}

@media screen and (max-width: 991px) {
    .story__vector-2 {
        bottom: 40px;
        right: 20px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .story__vector-2 {
        bottom: 30px;
        right: 10px;
        width: 50px;
    }
}

.story__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story__list .story__card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.story__list .story__card__img-wrap {
    flex-shrink: 0;
    width: 300px;
    margin-bottom: 0;
}

.story__list .story__card__txt {
    width: 100%;
    text-align: left;
}

.story__list .story__card__date {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.story__card {
    position: relative;
    transition: 0.3s;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .story__card {
        max-width: 350px;
        margin: 0 auto;
    }
}

.story__card__img-wrap {
    position: relative;
    z-index: 2;
}

.story__card__img-wrap .mask-box {
    mask-size: 100% 100%;
}

.story__card__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-l-200));
    transition: 0.3s;
    z-index: -1;
}

.story__card__img {
    aspect-ratio: 122/75;
    aspect-ratio: 1/1;
}

.story__card__img a {
    width: 100%;
    height: 100%;
}

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

.story__card__txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: hsl(var(--base-d-800)/0.4);
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .story__card__txt {
        padding: 50px;
    }
}

@media screen and (max-width: 479px) {
    .story__card__txt {
        padding: 40px;
    }
}

.story__card__date {
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 500;
    color: hsl(var(--base-l-900));
    margin-bottom: 26px;
}

@media screen and (max-width: 991px) {
    .story__card__date {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

.story__card__date .ti {
    color: hsl(var(--base-two));
}

.story__card__title {
    font-size: 1.875rem;
    line-height: 1.4;
    font-weight: 400;
    color: hsl(var(--white));
    margin-top: -7px;
    margin-bottom: -10px;
}

@media screen and (max-width: 1399px) {
    .story__card__title {
        font-size: 1.6875rem;
        margin-bottom: -9px;
    }
}

@media screen and (max-width: 991px) {
    .story__card__title {
        font-size: 1.5625rem;
        margin-top: -6px;
        margin-bottom: -8px;
    }
}

@media screen and (max-width: 767px) {
    .story__card__title {
        font-size: 1.25rem;
        margin-top: -5px;
        margin-bottom: -7px;
    }
}

.story__card__title a {
    display: inline;
    background-image: linear-gradient(hsl(var(--base-two)), hsl(var(--base-two)));
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position-y: calc(100% - 4px);
    transition: all 0.3s ease-in;
}

.story__card__title a:hover {
    color: hsl(var(--white));
    background-size: 100% 2px;
}

.story__card:hover .story__card__shape {
    background: hsl(var(--base-two-d-200));
    transform: rotate(-5deg) scale(1.05);
}

.story__btn {
    padding-top: 50px;
    text-align: center;
}

@media screen and (max-width: 1199px) {
    .story__btn {
        padding-top: 40px;
    }
}

@media screen and (max-width: 991px) {
    .story__btn {
        padding-top: 30px;
    }
}

/* Success Story Section End */
/* Service Section Start */
.service {
    position: relative;
    overflow: hidden;
}

.service__gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: -1;
}

.service__gradient span {
    width: 822px;
    height: 55%;
    background: hsl(var(--base));
    border-radius: 50%;
    margin: -57px;
    filter: blur(700px);
    opacity: 0.1;
}

.service__gradient span:nth-child(2) {
    background: hsl(var(--base-three));
}

.service__gradient span:nth-child(3) {
    background: hsl(var(--base-two));
}

.service__gradient span:nth-child(4) {
    background: hsl(var(--base-two));
}

.service__gradient span:nth-child(5) {
    background: hsl(var(--success));
}

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

.service__list {
    border-bottom: 1px solid hsl(var(--secondary-l-800));
}

.service__list__item {
    display: flex;
    gap: 50px;
    border-top: 1px solid hsl(var(--secondary-l-800));
    padding: 50px 0;
}

@media screen and (max-width: 1599px) {
    .service__list__item {
        gap: 45px;
    }
}

@media screen and (max-width: 1399px) {
    .service__list__item {
        gap: 35px;
        padding: 45px 0;
    }
}

@media screen and (max-width: 1199px) {
    .service__list__item {
        gap: 30px;
        padding: 40px 0;
    }
}

@media screen and (max-width: 991px) {
    .service__list__item {
        flex-direction: column;
        gap: 25px;
        padding: 30px 0;
    }
}

@media screen and (max-width: 767px) {
    .service__list__item {
        gap: 15px;
        padding: 20px 0;
    }
}

.service__list__item.active .service__list__item__index {
    color: transparent;
}

.service__list__item.active .service__list__item__title {
    color: hsl(var(--body-color));
}

.service__list__item__index {
    min-width: 85px;
    flex-shrink: 0;
    display: block;
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--dark-l-800));
    background: linear-gradient(90deg, hsl(var(--base)), hsl(var(--base-two)));
    background-clip: text;
    margin: -7px 0;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1399px) {
    .service__list__item__index {
        min-width: 70px;
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 1199px) {
    .service__list__item__index {
        min-width: 65px;
        font-size: 2.813rem;
        margin: -6px 0 -5px;
    }
}

@media screen and (max-width: 991px) {
    .service__list__item__index {
        font-size: 2.1875rem;
        margin: -4px 0 -5px;
    }
}

@media screen and (max-width: 767px) {
    .service__list__item__index {
        min-width: 40px;
        font-size: 1.875rem;
        margin: -4px 0;
    }
}

.service__list__item__title {
    font-family: var(--body-font);
    font-size: 2.5rem;
    line-height: 1.37;
    font-weight: 500;
    color: hsl(var(--dark-l-400));
    margin-top: -11px;
    margin-bottom: -14px;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1599px) {
    .service__list__item__title {
        font-size: 2.1875rem;
    }
}

@media screen and (max-width: 1399px) {
    .service__list__item__title {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 1199px) {
    .service__list__item__title {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width: 991px) {
    .service__list__item__title {
        font-size: 1.375rem;
        margin-top: -7px;
        margin-bottom: -7px;
    }
}

@media screen and (max-width: 767px) {
    .service__list__item__title {
        font-size: 1.125rem;
        margin-top: -5px;
        margin-bottom: -6px;
    }
}

.service__content {
    min-height: 100%;
    padding-left: 40px;
}

@media screen and (max-width: 1399px) {
    .service__content {
        padding-left: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .service__content {
        padding-left: 20px;
    }
}

@media screen and (max-width: 767px) {
    .service__content {
        padding-left: 0;
        padding-top: 40px;
    }
}

.service__content__item.show .service__content__item__img .image-inner {
    animation: 0.6s serviceImage linear;
}

.service__content__item.show .service__content__item__img::before {
    animation: 0.6s serviceBefore linear;
}

.service__content__item.show .service__content__item__img::after {
    animation: 0.6s serviceAfter linear;
}

@media screen and (max-width: 1199px) {
    .service__content__item.show .service__content__item__img::after {
        animation: 0.6s serviceAfterSm linear;
    }
}

.service__content__item.show .service__content__item__desc p {
    animation: 0.6s serviceTxt linear;
}

.service__content__item__img {
    width: 405px;
    height: 430px;
    margin: auto;
    margin-bottom: 130px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1599px) {
    .service__content__item__img {
        width: 360px;
        height: 400px;
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 1399px) {
    .service__content__item__img {
        width: 320px;
        height: 350px;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .service__content__item__img {
        width: 280px;
        height: 300px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 991px) {
    .service__content__item__img {
        width: 250px;
        height: 275px;
        margin-bottom: 60px;
    }
}

.service__content__item__img::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -25px;
    width: 100px;
    height: 100px;
    background: hsl(var(--base));
    border-radius: 50%;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .service__content__item__img::before {
        width: 85px;
        height: 85px;
    }
}

@media screen and (max-width: 1199px) {
    .service__content__item__img::before {
        width: 70px;
        height: 70px;
    }
}

.service__content__item__img::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -70px;
    width: 300px;
    height: 65px;
    background: linear-gradient(hsl(var(--base)), hsl(var(--base-two)));
    border-radius: 35px;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .service__content__item__img::after {
        height: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .service__content__item__img::after {
        right: -30px;
        width: 200px;
        height: 40px;
    }
}

.service__content__item__img .image-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transform: rotate(15deg);
    overflow: hidden;
}

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

.service__content__item__desc {
    text-align: center;
}

.service__content__item__desc p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
    .service__content__item__desc p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .service__content__item__desc p {
        font-size: 1rem;
    }
}

.service__card {
    height: 100%;
    background: linear-gradient(45deg, hsl(var(--base)/0.05), hsl(var(--base-three)/0.05));
    background-color: hsl(var(--white));
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.15);
    border: 2px solid hsl(var(--white));
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 1599px) {
    .service__card {
        gap: 30px;
        padding: 30px;
    }
}

@media screen and (max-width: 1399px) {
    .service__card {
        flex-direction: column;
    }
}

@media screen and (max-width: 991px) {
    .service__card {
        flex-direction: row;
    }
}

@media screen and (max-width: 767px) {
    .service__card {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
}

.service__card__img {
    flex-shrink: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(hsl(var(--base)), hsl(var(--base-two)));
    border-radius: 10px;
    position: relative;
}

@media screen and (max-width: 1399px) {
    .service__card__img {
        width: 100%;
        height: fit-content;
        aspect-ratio: 1/0.6;
    }
}

@media screen and (max-width: 991px) {
    .service__card__img {
        width: 200px;
        height: 100%;
    }
}

@media screen and (max-width: 767px) {
    .service__card__img {
        height: auto;
        aspect-ratio: 1/1;
    }
}

.service__card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-10deg);
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

@media screen and (max-width: 1599px) {
    .service__card__img img {
        transform: rotate(-5deg);
    }
}

@media screen and (max-width: 1399px) {
    .service__card__img img {
        transform: rotate(-3deg);
    }
}

@media screen and (max-width: 1199px) {
    .service__card__img img {
        transform: rotate(-5deg);
    }
}

.service__card__title {
    font-family: var(--body-font);
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 600;
    padding-bottom: 14px;
    margin-top: -7px;
    margin-bottom: 24px;
    position: relative;
}

@media screen and (max-width: 1599px) {
    .service__card__title {
        font-size: 1.6875rem;
    }
}

@media screen and (max-width: 1399px) {
    .service__card__title {
        font-size: 1.5625rem;
        margin-top: -6px;
    }
}

@media screen and (max-width: 991px) {
    .service__card__title {
        font-size: 1.375rem;
        margin-top: -5px;
    }
}

@media screen and (max-width: 767px) {
    .service__card__title {
        font-size: 1.25rem;
    }
}

.service__card__title::before {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: hsl(var(--secondary-l-800));
}

.service__card__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: hsl(var(--base));
    border-radius: 2px;
    transition: 0.3s;
}

.service__card__desc {
    margin-bottom: -7px;
}

@media screen and (max-width: 767px) {
    .service__card__desc {
        margin-bottom: -6px;
    }
}

.service__card:hover .service__card__img img {
    transform: rotate(0);
}

.service__card:hover .service__card__title::after {
    width: 100px;
}

@keyframes serviceImage {
    0% {
        transform: rotate(0);
        opacity: 0;
    }

    100% {
        transform: rotate(15deg);
        opacity: 1;
    }
}

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

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

@keyframes serviceAfter {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 300px;
        opacity: 1;
    }
}

@keyframes serviceAfterSm {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 200px;
        opacity: 1;
    }
}

@keyframes serviceTxt {
    0% {
        transform: translateY(35px);
        opacity: 0;
    }

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

/* Service Section End */
/* Team Section Start */
.team {
    position: relative;
    z-index: 2;
}

.team__vector-1 {
    position: absolute;
    top: 250px;
    left: 100px;
    width: 100px;
    transform: rotate(15deg);
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .team__vector-1 {
        top: 200px;
        left: 80px;
        width: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .team__vector-1 {
        top: 150px;
        left: 60px;
        width: 80px;
    }
}

@media screen and (max-width: 991px) {
    .team__vector-1 {
        top: 100px;
        left: 40px;
        width: 70px;
    }
}

@media screen and (max-width: 767px) {
    .team__vector-1 {
        top: 50px;
        left: 20px;
        width: 60px;
    }
}

.team__vector-2 {
    position: absolute;
    bottom: 100px;
    right: 100px;
    width: 120px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .team__vector-2 {
        bottom: 80px;
        right: 80px;
        width: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .team__vector-2 {
        bottom: 70px;
        right: 60px;
        width: 80px;
    }
}

@media screen and (max-width: 991px) {
    .team__vector-2 {
        bottom: 60px;
        right: 40px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .team__vector-2 {
        bottom: 50px;
        right: 20px;
        width: 50px;
    }
}

.team__card {
    height: 100%;
    backdrop-filter: blur(10px);
    background: hsl(var(--base-l-900)/0.5);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .team__card {
        padding: 25px;
    }
}

@media screen and (max-width: 767px) {
    .team__card {
        max-width: 300px;
        padding: 20px;
        margin: 0 auto;
    }
}

.team__card__img-wrap {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .team__card__img-wrap {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .team__card__img-wrap {
        margin-bottom: 20px;
    }
}

.team__card__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-two-d-200));
    transition: 0.3s;
    z-index: -1;
}

.team__card__img {
    aspect-ratio: 1/1;
}

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

.team__card__txt {
    text-align: center;
}

.team__card__title {
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 500;
    margin-top: -7px;
    margin-bottom: 16px;
}

@media screen and (max-width: 1399px) {
    .team__card__title {
        font-size: 1.5625rem;
    }
}

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

.team__card__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .team__card__badges {
        gap: 5px;
        margin-bottom: 15px;
    }
}

.team__card__badge {
    display: flex;
    gap: 2px;
    align-items: center;
    font-size: 0.875rem;
    color: hsl(var(--base));
    background: hsl(var(--base-l-900));
    border: 1px solid hsl(var(--base-l-800));
    border-radius: 20px;
    padding: 2px 10px;
}

@media screen and (max-width: 767px) {
    .team__card__badge {
        font-size: 0.75rem;
        padding: 2px 8px;
    }
}

.team__card__badge:nth-child(2) {
    color: hsl(var(--base-two-d-400));
    background: hsl(var(--base-two-l-900));
    border: 1px solid hsl(var(--base-two-l-700));
}

.team__card__badge .ti {
    font-size: 1.1em;
}

.team__card__social {
    justify-content: center;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .team__card__social {
        gap: 5px;
    }
}

.team__card__social .social-list__link {
    width: 45px;
    height: 45px;
    border-color: hsl(var(--base-l-800));
    color: hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .team__card__social .social-list__link {
        width: 40px;
        height: 40px;
    }
}

.team__card:hover {
    background: hsl(var(--white));
    box-shadow: 0px 15px 40px 0px hsl(var(--base)/0.1);
    border-color: hsl(var(--base)/0.5);
    transform: translateY(-10px);
}

.team__card:hover .team__card__shape {
    background: hsl(var(--base-d-400));
    transform: rotate(-15deg);
}

.team__btn {
    padding-top: 50px;
    text-align: center;
}

@media screen and (max-width: 1199px) {
    .team__btn {
        padding-top: 40px;
    }
}

@media screen and (max-width: 991px) {
    .team__btn {
        padding-top: 30px;
    }
}

.volunteers__sidebar__card {
    background: hsl(var(--base-d-400));
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.volunteers__sidebar__card p {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 400;
    color: hsl(var(--white));
    margin-top: -8px;
    margin-bottom: 32px;
}

/* Team Section End */
/* Testimonial Start */
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial__gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: max-content;
    min-height: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: -1;
}

.testimonial__gradient span {
    width: 822px;
    aspect-ratio: 1/1;
    min-height: 55%;
    background: hsl(var(--base));
    border-radius: 50%;
    margin: -57px;
    filter: blur(700px);
    opacity: 0.1;
}

.testimonial__gradient span:nth-child(2) {
    background: hsl(var(--base-three));
}

.testimonial__gradient span:nth-child(3) {
    background: hsl(var(--base-two));
}

.testimonial__gradient span:nth-child(4) {
    background: hsl(var(--base-two));
}

.testimonial__gradient span:nth-child(5) {
    background: hsl(var(--success));
}

.testimonial__bg {
    position: absolute;
    top: 70px;
    left: 70px;
    right: 70px;
    bottom: 70px;
    width: auto;
    height: auto;
    background-size: contain !important;
    z-index: -1;
}

.testimonial__content {
    backdrop-filter: blur(20px);
    background-color: hsl(var(--white)/0.2);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 2px solid hsl(var(--white));
    border-radius: 20px;
    padding: 50px 50px 90px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .testimonial__content {
        padding: 45px 45px 70px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial__content {
        padding: 40px 40px 65px;
        margin-top: 38px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__content {
        padding: 30px 30px 55px;
        margin-top: 28px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__content {
        padding: 25px 25px 55px;
        margin-top: 23px;
    }
}

.testimonial__content__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
    opacity: 0.03;
    z-index: -1;
}

.testimonial__content__icon {
    width: 200px;
    margin-top: -100px;
    margin-bottom: 50px;
}

@media screen and (max-width: 1399px) {
    .testimonial__content__icon {
        width: 160px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial__content__icon {
        width: 140px;
        margin-top: -80px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__content__icon {
        width: 120px;
        margin-top: -60px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__content__icon {
        width: 100px;
        margin-top: -50px;
        margin-bottom: 25px;
    }
}

.testimonial__content__item p {
    font-size: 1.5625rem;
    line-height: 1.6;
    text-align: center;
    margin-top: -10px;
    margin-bottom: -10px;
}

@media screen and (max-width: 1399px) {
    .testimonial__content__item p {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial__content__item p {
        font-size: 1.25rem;
        margin-top: -7px;
        margin-bottom: -6px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__content__item p {
        font-size: 1.125rem;
        margin-top: -6px;
        margin-bottom: -5px;
    }
}

.testimonial__content .slick-list {
    padding-bottom: 11px;
    margin-bottom: -11px !important;
}

.testimonial__user {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .testimonial__user {
        margin-bottom: -10px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__user {
        margin-bottom: -2px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial__user {
        margin-bottom: -18px;
    }
}

.testimonial__user__slider .slick-list {
    padding-top: 90px !important;
    margin-top: -50px !important;
}

@media screen and (max-width: 1199px) {
    .testimonial__user__slider .slick-list {
        padding-top: 84px !important;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__user__slider .slick-list {
        padding-top: 76px !important;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__user__slider .slick-list {
        padding-top: 63px !important;
        margin-top: -40px !important;
    }
}

.testimonial__user__slider .slick-center .testimonial__user__item {
    backdrop-filter: blur(20px);
    background-color: hsl(var(--white)/0.2);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 2px solid hsl(var(--white));
    padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .testimonial__user__slider .slick-center .testimonial__user__item {
        padding-bottom: 20px;
    }
}

.testimonial__user__slider .slick-center .testimonial__user__item__bg {
    opacity: 0.03;
}

.testimonial__user__slider .slick-center .testimonial__user__img {
    width: 130px;
    height: 150px;
    margin-top: -90px;
    transform: rotate(15deg);
}

@media screen and (max-width: 1199px) {
    .testimonial__user__slider .slick-center .testimonial__user__img {
        width: 110px;
        height: 130px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__user__slider .slick-center .testimonial__user__img {
        width: 100px;
        height: 120px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__user__slider .slick-center .testimonial__user__img {
        width: 80px;
        height: 100px;
    }
}

.testimonial__user__slider .slick-center .testimonial__user__img::before {
    transform: rotate(-10deg);
    transition: 1s 1s ease-out;
}

.testimonial__user__slider .slick-center .testimonial__user__name {
    color: hsl(var(--base));
}

.testimonial__user__item {
    border: 2px solid transparent;
    border-radius: 20px;
    display: flex !important;
    align-items: center;
    gap: 20px;
    padding: 30px;
    padding-bottom: 10px;
    position: relative;
    transition: 1.5s;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .testimonial__user__item {
        max-width: 300px;
        border-radius: 10px;
        gap: 15px;
        padding: 20px;
        padding-bottom: 0;
        margin: auto;
    }
}

.testimonial__user__item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .testimonial__user__item__bg {
        border-radius: 10px;
    }
}

.testimonial__user__img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    transition: 1.5s;
    position: relative;
}

.testimonial__user__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-two)));
    border-radius: 10px;
    transition: 1.5s ease-out;
    z-index: -1;
}

.testimonial__user__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial__user__name {
    font-family: var(--body-font);
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--body-color));
    margin-bottom: 10px;
    transition: 1.5s;
}

@media screen and (max-width: 1199px) {
    .testimonial__user__name {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 991px) {
    .testimonial__user__name {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .testimonial__user__name {
        font-size: 1.125rem;
    }
}

.testimonial__user__designation {
    display: block;
    font-size: 1rem;
    line-height: 1;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 991px) {
    .testimonial__user__designation {
        font-size: 0.875rem;
    }
}

/* Testimonial End */
/* Faq Start */
.faq {
    background: hsl(var(--secondary-l-900)/0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.faq__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.08;
    z-index: -1;
}

.faq__vector-1 {
    position: absolute;
    top: 150px;
    left: 100px;
    width: 100px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .faq__vector-1 {
        top: 120px;
        left: 80px;
        width: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .faq__vector-1 {
        top: 100px;
        left: 60px;
        width: 70px;
    }
}

@media screen and (max-width: 991px) {
    .faq__vector-1 {
        top: 80px;
        left: 40px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .faq__vector-1 {
        top: 60px;
        left: 20px;
        width: 50px;
    }
}

.faq__vector-2 {
    position: absolute;
    bottom: 140px;
    right: 80px;
    width: 120px;
    opacity: 0.15;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .faq__vector-2 {
        bottom: 110px;
        right: 60px;
        width: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .faq__vector-2 {
        bottom: 80px;
        right: 40px;
        width: 80px;
    }
}

@media screen and (max-width: 991px) {
    .faq__vector-2 {
        bottom: 50px;
        right: 20px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .faq__vector-2 {
        bottom: 30px;
        right: 10px;
        width: 50px;
    }
}

.faq__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.faq__card {
    width: calc(50% - 20px);
    background: hsl(var(--base-l-900));
    padding: 30px;
    border: 1px dashed hsl(var(--base-l-800));
    border-radius: 20px;
}

.faq__card__title {
    font-size: 1.5625rem;
    font-weight: 500;
    color: hsl(var(--base-l-100));
    margin-bottom: 20px;
}

/* Faq End */
/* Call To Action Start */
.cta {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-d-600)/0.85);
    z-index: -1;
}

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

.cta__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta__vector-1 {
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translateY(-50%) rotate(-10deg);
    width: 150px;
    max-height: 100%;
    opacity: 0.5;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .cta__vector-1 {
        left: 100px;
        width: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .cta__vector-1 {
        left: 80px;
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .cta__vector-1 {
        top: 40px;
        left: 50px;
        width: 80px;
        transform: translate(0);
    }
}

@media screen and (max-width: 767px) {
    .cta__vector-1 {
        top: 60px;
        left: 30px;
        width: 60px;
        transform: translate(0);
    }
}

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

.cta__vector-2 {
    position: absolute;
    bottom: 100px;
    right: 100px;
    width: 100px;
    opacity: 0.5;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .cta__vector-2 {
        bottom: 80px;
        right: 80px;
        width: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .cta__vector-2 {
        bottom: 60px;
        right: 60px;
        width: 70px;
    }
}

@media screen and (max-width: 991px) {
    .cta__vector-2 {
        bottom: 40px;
        right: 40px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .cta__vector-2 {
        bottom: 20px;
        right: 20px;
        width: 50px;
    }
}

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

.cta__btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 1399px) {
    .cta__btn {
        gap: 15px;
    }
}

@media screen and (max-width: 767px) {
    .cta__btn {
        gap: 10px;
    }
}

/* Call To Action End */
/* Pricing Start */
.pricing {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.pricing__card {
    height: 100%;
    border-radius: 20px;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .pricing__card {
        max-width: 296px;
        margin: auto;
    }
}

.pricing__card-secondary .pricing__card__top__icon {
    background: hsl(var(--base-two)/0.07);
}

.pricing__card-secondary .pricing__card__top__icon svg {
    fill: hsl(var(--base-two));
}

.pricing__card-secondary .pricing__card__name {
    background: hsl(var(--base-two)/0.1);
    color: hsl(var(--base-two));
}

.pricing__card-success .pricing__card__top__icon {
    background: hsl(var(--success)/0.07);
}

.pricing__card-success .pricing__card__top__icon svg {
    fill: hsl(var(--success));
}

.pricing__card-success .pricing__card__name {
    background: hsl(var(--success)/0.1);
    color: hsl(var(--success));
}

.pricing__card-info .pricing__card__top__icon {
    background: hsl(var(--info)/0.07);
}

.pricing__card-info .pricing__card__top__icon svg {
    fill: hsl(var(--info));
}

.pricing__card-info .pricing__card__name {
    background: hsl(var(--info)/0.1);
    color: hsl(var(--info));
}

.pricing__card-danger .pricing__card__top__icon {
    background: hsl(var(--danger)/0.07);
}

.pricing__card-danger .pricing__card__top__icon svg {
    fill: hsl(var(--danger));
}

.pricing__card-danger .pricing__card__name {
    background: hsl(var(--danger)/0.1);
    color: hsl(var(--danger));
}

.pricing__card-warning .pricing__card__top__icon {
    background: hsl(var(--warning)/0.07);
}

.pricing__card-warning .pricing__card__top__icon svg {
    fill: hsl(var(--warning));
}

.pricing__card-warning .pricing__card__name {
    background: hsl(var(--warning)/0.1);
    color: hsl(var(--warning));
}

.pricing__card__badge {
    background: linear-gradient(to left, hsl(var(--base-two-d-700)), hsl(var(--base-d-700)));
    text-align: center;
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--white));
    padding: 12px 10px 11px;
    border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 1199px) {
    .pricing__card__badge {
        font-size: 1.25rem;
        font-weight: 400;
    }
}

@media screen and (max-width: 767px) {
    .pricing__card__badge {
        font-size: 1.125rem;
        font-weight: 400;
    }
}

.pricing__card__body {
    backdrop-filter: blur(7px);
    background: hsl(var(--white)/0.2);
    border: 1px solid hsl(var(--body-color)/0.1);
    border-top-width: 0;
    border-radius: 0 0 20px 20px;
    padding: 50px 40px;
    height: calc(100% - 48px);
    text-align: center;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .pricing__card__body {
        padding: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .pricing__card__body {
        padding: 30px;
        height: calc(100% - 43px);
    }
}

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

@media screen and (max-width: 767px) {
    .pricing__card__body {
        padding: 25px 20px;
        height: calc(100% - 41px);
    }
}

.pricing__card__top {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid hsl(var(--secondary-l-800));
    padding-bottom: 40px;
    margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
    .pricing__card__top {
        gap: 15px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .pricing__card__top {
        gap: 10px;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

.pricing__card__top__icon {
    flex-shrink: 0;
    width: 105px;
    height: 105px;
    padding: 15px;
    background: hsl(var(--base)/0.07);
    border-radius: 10px;
}

@media screen and (max-width: 1399px) {
    .pricing__card__top__icon {
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .pricing__card__top__icon {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
}

@media screen and (max-width: 767px) {
    .pricing__card__top__icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
}

.pricing__card__top__icon svg {
    fill: hsl(var(--base));
}

.pricing__card__name {
    display: block;
    width: max-content;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 40px;
    height: 40px;
    background: hsl(var(--base)/0.1);
    color: hsl(var(--base));
    padding: 0 30px;
    border-radius: 10px;
    margin-bottom: 23px;
}

@media screen and (max-width: 1399px) {
    .pricing__card__name {
        font-size: 1.125rem;
        line-height: 35px;
        height: 35px;
        padding: 0 25px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .pricing__card__name {
        font-size: 1rem;
        line-height: 30px;
        height: 30px;
        padding: 0 20px;
        border-radius: 7px;
        margin-bottom: 16px;
    }
}

.pricing__card__price {
    display: block;
    font-size: 3.125rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--body-color));
    margin-bottom: -7px;
}

@media screen and (max-width: 1599px) {
    .pricing__card__price {
        font-size: 2.813rem;
        margin-bottom: -5px;
    }
}

@media screen and (max-width: 1399px) {
    .pricing__card__price {
        font-size: 2.5rem;
        margin-bottom: -5px;
    }
}

@media screen and (max-width: 991px) {
    .pricing__card__price {
        font-size: 2.1875rem;
        margin-bottom: -5px;
    }
}

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

.pricing__card__info {
    font-size: 1.25rem;
    line-height: 1.5;
    color: hsl(var(--body-color));
    margin-top: -7px;
    margin-bottom: 32px;
}

@media screen and (max-width: 1199px) {
    .pricing__card__info {
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 991px) {
    .pricing__card__info {
        font-size: 1.125rem;
        margin-top: -7px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .pricing__card__info {
        font-size: 1rem;
        margin-top: -6px;
        margin-bottom: 19px;
    }
}

.pricing__card__desc {
    font-size: 1.125rem;
    line-height: 1.55;
    color: hsl(var(--body-color));
    padding-top: 34px;
    margin-bottom: -8px;
}

@media screen and (max-width: 1199px) {
    .pricing__card__desc {
        padding-top: 24px;
    }
}

@media screen and (max-width: 991px) {
    .pricing__card__desc {
        font-size: 1rem;
        padding-top: 19px;
        margin-bottom: -6px;
    }
}

.pricing__card:hover {
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
}

.pricing__card:hover .pricing__card__body {
    border-color: hsl(var(--base)/0.2);
}

/* Pricing End */
/* Contact Start */
/* Contact End */
/* Comapnies Section Start */
.company {
    background: hsl(var(--base-two-d-300));
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.company-page .container {
    z-index: auto;
}

.company .container {
    border-color: hsl(var(--base-two-l-100));
}

.company .container::after {
    border-color: hsl(var(--base-two-l-100));
}

.company__slider.slick-slider .slick-list {
    margin: 0;
    overflow: visible;
}

.company__slider.slick-slider .slick-slide {
    padding: 0;
}

.company__card {
    display: block;
    height: 100%;
    padding: 50px 40px;
    background: hsl(var(--base-two-l-100)/0.7);
    border-right: 1px solid hsl(var(--base-two-d-300));
    position: relative;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {
    .company__card {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 767px) {
    .company__card {
        width: 275px !important;
        padding: 30px;
    }
}

.company__card.company__card-2 {
    background: transparent;
    border: 1px solid hsl(var(--base-two));
    border-radius: 10px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .company__card.company__card-2 {
        width: 100% !important;
        max-width: 275px;
    }
}

.company__card.company__card-2 .company__card__brand__img {
    background: hsl(var(--base-two-l-300));
    border-color: hsl(var(--base-two-l-300));
}

.company__card.company__card-2 .company__card__brand__title {
    color: hsl(var(--base-two));
}

.company__card.company__card-2 .company__card__brand__type {
    color: hsl(var(--body-color));
}

.company__card.company__card-2 .company__card__location {
    background: hsl(var(--base-two));
    color: hsl(var(--base));
}

.company__card.company__card-2 .company__card__rating {
    border-color: hsl(var(--base-two-l-900));
}

.company__card.company__card-2 .company__card__rating__txt {
    color: hsl(var(--body-color));
}

.company__card.company__card-2 .company__card__info__txt {
    color: hsl(var(--body-color));
}

.company__card.company__card-2:hover {
    background: transparent;
    border-color: hsl(var(--base));
    transform: translateY(-5px);
}

.company__card.company__card-2:hover .company__card__brand__img {
    border-color: hsl(var(--base));
    box-shadow: -4px -4px 0px 0px hsl(var(--base-two));
}

.company__card.company__card-ad {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 7/8.97;
    padding: 0;
    background: hsl(var(--base-two-l-100)/0.1);
    border: 0;
    border-radius: 10px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .company__card.company__card-ad {
        width: 100% !important;
        max-width: 275px;
    }
}

.company__card.company__card-ad * {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.company__card.company__card-ad:hover {
    background: hsl(var(--base-two-l-100)/0.3);
}

.company__card__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .company__card__brand {
        gap: 15px;
        margin-bottom: 20px;
    }
}

.company__card__brand__img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 1px solid hsl(var(--base-two-l-900));
    box-shadow: 4px 4px 0px 0px hsl(var(--base));
    border-radius: 10px;
    padding: 15px;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .company__card__brand__img {
        width: 60px;
        height: 60px;
        box-shadow: 3px 3px 0px 0px hsl(var(--base));
        border-radius: 7px;
        padding: 10px;
    }
}

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

.company__card__brand__title {
    font-family: var(--body-font);
    font-size: 1.875rem;
    font-weight: 400;
    line-height: 1.2;
    color: hsl(var(--secondary-l-900));
    margin-bottom: 9px;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {
    .company__card__brand__title {
        font-size: 1.5625rem;
    }
}

.company__card__brand__type {
    display: flex;
    gap: 5px;
    font-size: 1.25rem;
    line-height: 1;
    color: hsl(var(--secondary-l-800));
}

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

@media screen and (max-width: 767px) {
    .company__card__brand__type {
        font-size: 1rem;
    }
}

.company__card__brand__type .ti {
    color: hsl(var(--base));
    transform: translateY(-5%);
}

.company__card__location {
    position: absolute;
    top: 50px;
    right: 0;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: hsl(var(--base-two-l-900));
    color: hsl(var(--body-color));
    width: 25px;
    line-height: 23px;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
}

.company__card__location .ti {
    transform: rotate(90deg) translateY(5%);
}

.company__card__rating {
    border-bottom: 1px solid hsl(var(--base-two-l-700));
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.company__card__rating .rating-list {
    justify-content: flex-start;
    margin-bottom: 10px;
}

.company__card__rating__txt {
    display: block;
    font-size: 1.125rem;
    line-height: 1;
    color: hsl(var(--secondary-l-800));
}

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

.company__card__info__txt {
    display: block;
    font-size: 1.125rem;
    line-height: 1;
    color: hsl(var(--secondary-l-800));
    margin-bottom: 10px;
}

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

.company__card__info__txt:last-child {
    margin-bottom: 0;
}

.company__card:hover {
    background: hsl(var(--base-two-l-200)/0.85);
}

.company__card:hover .company__card__brand__img {
    border-color: hsl(var(--base));
    box-shadow: -4px -4px 0px 0px hsl(var(--base-two-l-700));
}

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

.company-details__about {
    padding: 40px;
    background: hsl(var(--base-two));
    box-shadow: 5px 5px 0px 0px hsl(var(--base));
    border: 2px solid hsl(var(--base-two-l-900));
    border-radius: 15px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .company-details__about {
        padding: 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 991px) {
    .company-details__about {
        padding: 30px 20px;
        gap: 20px;
        flex-direction: column;
    }
}

.company-details__about__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
}

.company-details__about__txt {
    width: calc(100% - 540px);
}

@media screen and (max-width: 1199px) {
    .company-details__about__txt {
        width: calc(100% - 330px);
    }
}

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

.company-details__about__txt__title {
    font-family: var(--body-font);
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--white));
    margin-top: -3px;
    margin-bottom: 13px;
}

@media screen and (max-width: 991px) {
    .company-details__about__txt__title {
        font-size: 1.25rem;
        margin-top: -2px;
        margin-bottom: 11px;
    }
}

@media screen and (max-width: 767px) {
    .company-details__about__txt__title {
        font-size: 1.125rem;
        font-weight: 500;
        margin-top: -2px;
        margin-bottom: 12px;
    }
}

.company-details__about__txt__desc {
    font-size: 1.25rem;
    color: hsl(var(--secondary-l-800));
    margin-bottom: -7px;
}

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

@media screen and (max-width: 767px) {
    .company-details__about__txt__desc {
        font-size: 1rem;
        margin-bottom: -6px;
    }
}

.company-details__company {
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 1199px) {
    .company-details__company {
        max-width: 300px;
        gap: 15px;
    }
}

@media screen and (max-width: 991px) {
    .company-details__company {
        width: 100%;
        max-width: none;
        padding-bottom: 20px;
        border-bottom: 1px solid hsl(var(--secondary-l-800)/0.1);
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}

@media screen and (max-width: 479px) {
    .company-details__company {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.company-details__company__img {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    padding: 20px;
    background: hsl(var(--base-two-l-300));
    box-shadow: 5px 5px 0px 0px hsl(var(--base));
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 10px;
}

@media screen and (max-width: 1199px) {
    .company-details__company__img {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
}

@media screen and (max-width: 767px) {
    .company-details__company__img {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
}

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

.company-details__company__name {
    font-family: var(--body-font);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: hsl(var(--base));
    margin-top: -9px;
    margin-bottom: 14px;
}

@media screen and (max-width: 1199px) {
    .company-details__company__name {
        font-size: 1.875rem;
        margin-top: -7px;
    }
}

@media screen and (max-width: 767px) {
    .company-details__company__name {
        font-size: 1.5625rem;
        margin-top: -6px;
    }
}

.company-details__company__location {
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    color: hsl(var(--secondary-l-800));
    margin-bottom: 14px;
}

@media screen and (max-width: 1199px) {
    .company-details__company__location {
        font-size: 1.125rem;
        margin-bottom: 9px;
    }
}

@media screen and (max-width: 767px) {
    .company-details__company__location {
        font-size: 1rem;
        margin-bottom: 9px;
    }
}

@media screen and (max-width: 479px) {
    .company-details__company__location {
        justify-content: center;
    }
}

.company-details__company__location .ti {
    transform: translateY(0);
    margin-right: 5px;
}

.company-details__company__site {
    width: max-content;
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1;
    color: hsl(var(--secondary-l-800));
    margin-bottom: -3px;
}

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

@media screen and (max-width: 767px) {
    .company-details__company__site {
        width: 100%;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 479px) {
    .company-details__company__site {
        justify-content: center;
    }
}

.company-details__company__site:hover {
    color: hsl(var(--secondary-l-800));
}

.company-details__company__site .ti {
    color: hsl(var(--base));
    transform: translateY(5%);
    margin-right: 5px;
}

.company-details__rating-info {
    padding: 10px;
}

@media screen and (max-width: 991px) {
    .company-details__rating-info {
        padding: 5px;
    }
}

.company-details__rating-info__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 21px;
}

.company-details__rating-info__header .rating-count {
    display: block;
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 800;
    margin-top: -9px;
}

@media screen and (max-width: 1199px) {
    .company-details__rating-info__header .rating-count {
        font-size: 3.125rem;
        margin-top: -6px;
    }
}

@media screen and (max-width: 767px) {
    .company-details__rating-info__header .rating-count {
        font-size: 2.813rem;
        margin-top: -5px;
    }
}

.company-details__rating-info__header .rating-overview {
    text-align: right;
}

.company-details__rating-info__header .rating-overview .rating-list {
    justify-content: flex-end;
    line-height: 1;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    .company-details__rating-info__header .rating-overview .rating-list {
        margin-bottom: 0;
    }
}

.company-details__rating-info__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .company-details__rating-info__item {
        margin-bottom: 10px;
    }
}

.company-details__rating-info__item:last-child {
    margin-bottom: 0;
}

.company-details__rating-info__item span {
    flex-shrink: 0;
    display: block;
    line-height: 1;
    font-weight: 600;
}

.company-details__rating-info__item span .ti {
    font-size: 1em;
    transform: translateY(0%);
}

.company-details__rating-info__item .progress {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .company-details__rating-info__item .progress {
        height: 7px;
    }
}

/* Comapnies Section End */
/* Why Choose Us Section Start */
.why-choose-us {
    position: relative;
}

.why-choose-us__vector {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .why-choose-us__vector {
        top: 22%;
    }
}

.why-choose-us__vector .bx-wrapper {
    border: 0;
    margin-bottom: 0;
    box-shadow: 0 0;
}

.why-choose-us__vector .bx-viewport {
    padding-bottom: 15px;
}

.why-choose-us__vector__item {
    width: max-content !important;
    display: inline-block;
    white-space: nowrap;
    font-size: 12.5rem;
    line-height: 1;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke-color: hsl(var(--base-two)/0.2);
    -webkit-text-stroke-width: 2px;
}

@media screen and (max-width: 1399px) {
    .why-choose-us__vector__item {
        font-size: 9.375rem;
    }
}

@media screen and (max-width: 991px) {
    .why-choose-us__vector__item {
        font-size: 7.5rem;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-us__vector__item {
        font-size: 5rem;
    }
}

.why-choose-us__row>*:nth-child(3n+2) .why-choose-us__card {
    margin-top: 70px;
}

@media screen and (max-width: 991px) {
    .why-choose-us__row>*:nth-child(3n+2) .why-choose-us__card {
        margin-top: 0;
    }
}

.why-choose-us__card {
    text-align: center;
    padding: 70px 60px;
    margin: 0 30px;
    position: relative;
    perspective: 700px;
    transition: 0.3s;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .why-choose-us__card {
        padding: 60px 50px;
        margin: 0 10px;
    }
}

@media screen and (max-width: 1199px) {
    .why-choose-us__card {
        padding: 60px 35px;
        margin: 0 10px;
    }
}

@media screen and (max-width: 991px) {
    .why-choose-us__card {
        height: 100%;
        padding: 60px 50px;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-us__card {
        padding: 50px;
        margin: 0 5px;
    }
}

.why-choose-us__card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid hsl(var(--base-two)/0.5);
    border-radius: 300px;
    transition: 0.3s;
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .why-choose-us__card::before {
        top: 15px;
        left: 15px;
    }
}

@media screen and (max-width: 991px) {
    .why-choose-us__card::before {
        top: 10px;
        left: 10px;
    }
}

.why-choose-us__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-l-900));
    box-shadow: 5px 5px 0px 0px hsl(var(--base-two));
    border: 1px solid hsl(var(--dark-l-900));
    border-radius: 300px;
    transition: 0.3s;
    z-index: -1;
}

.why-choose-us__card__icon {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(1);
    margin: 0 auto 30px;
    transition: filter 0.3s, transform 0.6s;
    transform-style: preserve-3d;
}

@media screen and (max-width: 1399px) {
    .why-choose-us__card__icon {
        width: 120px;
        height: 120px;
        margin-bottom: 17px;
    }
}

@media screen and (max-width: 1199px) {
    .why-choose-us__card__icon {
        width: 110px;
        height: 110px;
        margin-bottom: 17px;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-us__card__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }
}

.why-choose-us__card__title {
    font-family: var(--body-font);
    font-size: 2.1875rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .why-choose-us__card__title {
        font-size: 1.875rem;
        margin-bottom: 17px;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-us__card__title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
}

.why-choose-us__card__title span {
    display: inline;
    background-image: linear-gradient(hsl(var(--base)/0.35), hsl(var(--base)/0.35));
    background-repeat: no-repeat;
    background-size: 100% 10px;
    background-position-y: 25px;
}

@media screen and (max-width: 1399px) {
    .why-choose-us__card__title span {
        background-position-y: 20px;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-us__card__title span {
        background-position-y: 15px;
    }
}

.why-choose-us__card__desc {
    font-size: 1.25rem;
    margin-bottom: -7px;
}

@media screen and (max-width: 1199px) {
    .why-choose-us__card__desc {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-us__card__desc {
        font-size: 1rem;
        margin-bottom: -6px;
    }
}

.why-choose-us__card:hover {
    transform: translateY(-5px);
}

.why-choose-us__card:hover::before {
    top: 0;
    left: 0;
}

.why-choose-us__card:hover::after {
    box-shadow: 0 0;
    border-color: hsl(var(--base-two));
}

.why-choose-us__card:hover .why-choose-us__card__icon {
    filter: grayscale(0);
    transform: rotateY(180deg);
}

/* Why Choose Us Section End */
/* Recent Review Start */
.recent-review {
    background: hsl(var(--base-two-d-300));
}

.recent-review .container {
    border-color: hsl(var(--base-two-l-100));
}

.recent-review .container::after {
    border-color: hsl(var(--base-two-l-100));
}

.review__card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 5px 5px 0px 0px hsl(var(--base));
    border: 2px solid hsl(var(--base-two-l-900)/0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.review__card.review__card-2 {
    border-color: hsl(var(--base-two));
}

.review__card.review__card-2 .review__card__user {
    color: hsl(var(--body-color));
}

.review__card.review__card-2 .review__card__user a {
    color: hsl(var(--base-two));
}

.review__card.review__card-2 .review__card__user a:hover {
    color: hsl(var(--base));
}

.review__card.review__card-2 .review__card__star .rating-list__item {
    color: hsl(var(--dark-l-500));
}

.review__card.review__card-2 .review__card__desc {
    color: hsl(var(--body-color));
}

.review__card.review__card-ad {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 119/65;
    background: hsl(var(--base-two-l-100)/0.1);
    border-color: hsl(var(--base-two));
}

.review__card.review__card-ad * {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review__card__body {
    padding: 25px;
}

@media screen and (max-width: 767px) {
    .review__card__body {
        padding: 20px;
    }
}

.review__card__user {
    display: block;
    font-size: 1.5625rem;
    line-height: 1.2;
    font-weight: 400;
    color: hsl(var(--white)/0.7);
    margin-bottom: 15px;
}

@media screen and (max-width: 1399px) {
    .review__card__user {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 991px) {
    .review__card__user {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .review__card__user {
        font-size: 1.125rem;
        margin-bottom: 19px;
    }
}

.review__card__star {
    display: flex;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .review__card__star {
        margin-bottom: 10px;
    }
}

.review__card__star .rating-list {
    width: auto;
    font-size: 0.9375rem;
}

@media screen and (max-width: 767px) {
    .review__card__star .rating-list {
        font-size: 0.8125rem;
    }
}

.review__card__star .rating-list__item {
    color: hsl(var(--base-two-l-900));
}

.review__card__desc {
    font-size: 1.25rem;
    color: hsl(var(--white)/0.7);
    margin-bottom: -7px;
}

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

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

.review__card__footer {
    background: hsl(var(--base-two-l-100));
    padding: 15px 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .review__card__footer {
        padding: 10px 20px;
        gap: 10px;
    }
}

.review__card__footer__img {
    width: 45px;
    height: 45px;
    background: hsl(var(--base-two-l-300));
    border-radius: 10px;
    padding: 5px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .review__card__footer__img {
        width: 35px;
        height: 35px;
    }
}

.review__card__footer__img a {
    width: 100%;
    height: 100%;
}

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

.review__card__footer__txt {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .review__card__footer__txt {
        font-size: 1rem;
    }
}

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

.review__card:hover {
    box-shadow: -5px -5px 0px 0px hsl(var(--base));
    transform: translateY(-5px);
}

.review__card-3 {
    padding: 30px;
    box-shadow: 5px 5px 0px 0px hsl(var(--base));
    border: 2px solid hsl(var(--base-two));
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .review__card-3 {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .review__card-3 {
        padding: 15px;
    }
}

.review__card-3-ad {
    background: hsl(var(--base-two-l-100)/0.1);
    padding: 0;
    aspect-ratio: 967/150;
}

.review__card-3-ad * {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review__card-3__top {
    padding: 20px;
    background: hsl(var(--base-two-l-900)/0.3);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
}

@media screen and (max-width: 991px) {
    .review__card-3__top {
        padding: 15px;
    }
}

@media screen and (max-width: 767px) {
    .review__card-3__top {
        margin-bottom: 14px;
    }
}

.review__card-3__top .rating-list {
    width: max-content;
}

.review__card-3__user {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .review__card-3__user {
        gap: 15px;
    }
}

@media screen and (max-width: 479px) {
    .review__card-3__user {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.review__card-3__user__img {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: hsl(var(--base-two-l-100));
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .review__card-3__user__img {
        width: 60px;
        height: 60px;
        border-radius: 7px;
    }
}

.review__card-3__user__img.img-contain img {
    object-fit: contain;
}

.review__card-3__user__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__card-3__name {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .review__card-3__name {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
}

.review__card-3__location {
    display: block;
    font-size: 1.125rem;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .review__card-3__location {
        font-size: 1rem;
    }
}

.review__card-3__txt {
    margin-bottom: -6px;
}

/* Recent Review End */
/* Blog Start */
.success-details__img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 29px;
}

@media screen and (max-width: 1599px) {
    .success-details__img {
        margin-bottom: 29px;
    }
}

@media screen and (max-width: 1399px) {
    .success-details__img {
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 1199px) {
    .success-details__img {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 991px) {
    .success-details__img {
        margin-bottom: 27px;
    }
}

@media screen and (max-width: 767px) {
    .success-details__img {
        border-radius: 10px;
        margin-bottom: 23px;
    }
}

.success-details__title {
    font-family: var(--body-font);
    font-size: 2.813rem;
    font-weight: 600;
    color: hsl(var(--body-color));
    margin-bottom: 16px;
}

@media screen and (max-width: 1599px) {
    .success-details__title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1399px) {
    .success-details__title {
        font-size: 2.1875rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .success-details__title {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 767px) {
    .success-details__title {
        font-size: 1.5625rem;
        margin-bottom: 12px;
    }
}

.success-details__date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--body-color));
    padding-bottom: 30px;
    border-bottom: 1px solid hsl(var(--base-two));
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .success-details__date {
        font-size: 1.25rem;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .success-details__date {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .success-details__date {
        font-size: 1rem;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

.success-details__date .ti {
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-radius: 50%;
    transform: translateY(0);
}

@media screen and (max-width: 991px) {
    .success-details__date .ti {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

@media screen and (max-width: 767px) {
    .success-details__date .ti {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1.1em;
    }
}

.success-details__desc {
    margin-top: -6px;
}

.success-details__desc h1 {
    font-size: clamp(30px, 25px + 1.5625vw, 45px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.success-details__desc h2 {
    font-size: clamp(25px, 20px + 1.5625vw, 40px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.success-details__desc h3 {
    font-size: clamp(20px, 15px + 1.328125vw, 35px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.success-details__desc h4 {
    font-size: clamp(18px, 15px + 0.9375vw, 30px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.success-details__desc h5 {
    font-size: clamp(16px, 13.75px + 0.703125vw, 25px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.success-details__desc h6 {
    font-size: clamp(15px, 13.75px + 0.390625vw, 20px);
    font-weight: 500;
    margin-bottom: clamp(10px, 7.5px + 0.78125vw, 20px);
}

.success-details__desc p {
    font-size: clamp(14px, 13px + 0.3125vw, 18px);
    margin-bottom: 1rem;
}

.success-details__desc p:last-of-type {
    margin-bottom: 0;
}

.success-details__desc blockquote {
    font-style: italic;
    font-size: clamp(16px, 15px + 0.3125vw, 20px);
    font-weight: 500;
    background: hsl(var(--base-two-l-900)/0.5);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
    .success-details__desc blockquote {
        padding: 20px 25px;
    }
}

@media screen and (max-width: 767px) {
    .success-details__desc blockquote {
        padding: 15px 20px;
    }
}

.success-details__desc ol,
.success-details__desc ul {
    list-style: revert;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

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

    .success-details__desc ol,
    .success-details__desc ul {
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

.success-details__desc ol li,
.success-details__desc ul li {
    margin-bottom: 10px;
}

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

    .success-details__desc ol li,
    .success-details__desc ul li {
        margin-bottom: 5px;
    }
}

.success-details__desc .nbsp {
    line-height: 1;
}

/* Blog End */
/* ============ Home Page Sections End ============ */
/* ============ Inner Pages Design Start ============ */
/* Authentication Page Start */
/* ====================== Account Css Start ==================== */
.account {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-l-900)/0.5);
    overflow: auto;
    z-index: 2;
}

.account__texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain !important;
    background-repeat: repeat !important;
    opacity: 0.08;
    z-index: -1;
}

.account__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.025;
    z-index: -1;
}

.account .container {
    min-height: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    border-color: hsl(var(--base-two-l-900)/0.1);
}

@media screen and (max-width: 991px) {
    .account .container {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 767px) {
    .account .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.account .container::after {
    border-color: hsl(var(--base-two-l-900)/0.1);
}

.account .container .row {
    width: 100%;
    margin: 0;
}

.account__txt {
    text-align: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
    .account__txt {
        margin-bottom: 30px;
    }

    .account__txt-2 {
        text-align: center;
    }
}

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

.account__logo {
    width: 150px;
    margin: 0 auto 26px;
    margin-bottom: 26px;
}

@media screen and (max-width: 991px) {
    .account__logo {
        width: 120px;
        margin-bottom: 27px;
    }

    .account__logo-2 {
        margin: 0 auto 27px;
    }
}

@media screen and (max-width: 767px) {
    .account__logo {
        margin: 0 auto 26px;
    }
}

.account__title {
    width: max-content;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--body-color));
    border-bottom: 2px solid hsl(var(--base-two));
    margin: 0 auto 23px;
}

@media screen and (max-width: 991px) {
    .account__title {
        font-size: 1.875rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .account__title {
        font-size: 1.5625rem;
        margin-bottom: 11px;
    }
}

.account__desc {
    font-size: 1.25rem;
    color: hsl(var(--body-color));
    margin-bottom: -9px;
}

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

@media screen and (max-width: 767px) {
    .account__desc {
        font-size: 1rem;
    }
}

.account__form .card-body {
    padding: 40px;
}

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

@media screen and (max-width: 767px) {
    .account__form .card-body {
        padding: 20px;
    }
}

.account__form .have-account__text {
    color: hsl(var(--body-color));
}

@media screen and (max-width: 479px) {
    .account__thumb {
        display: none;
    }
}
/* ====================== Account Css End ==================== */
/* Authentication Page End */
/* Dashboard Page Start */
/* ====================== Dashboard Css Start ==================== */
.dashboard__widget {
    height: 100%;
    display: flex;
    gap: 25px;
    align-items: center;
    background: hsl(var(--base-l-900));
    padding: 30px;
    border: 1px solid transparent;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .dashboard__widget {
        gap: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard__widget {
        padding: 25px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard__widget {
        padding: 20px;
    }
}

.dashboard__widget.dashboard__widget-base-two {
    background: hsl(var(--base-two-l-900));
}

.dashboard__widget.dashboard__widget-base-two .dashboard__widget__bg {
    background: hsl(var(--base-two)/0.3);
}

.dashboard__widget.dashboard__widget-base-two .dashboard__widget__shape {
    background: hsl(var(--base-two));
}

.dashboard__widget.dashboard__widget-base-two .dashboard__widget__number {
    color: hsl(var(--base-two-d-300));
}

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

.dashboard__widget.dashboard__widget-success {
    background: hsl(var(--success-l-900));
}

.dashboard__widget.dashboard__widget-success .dashboard__widget__bg {
    background: hsl(var(--success)/0.3);
}

.dashboard__widget.dashboard__widget-success .dashboard__widget__shape {
    background: hsl(var(--success));
}

.dashboard__widget.dashboard__widget-success .dashboard__widget__number {
    color: hsl(var(--success));
}

.dashboard__widget.dashboard__widget-success:hover {
    border-color: hsl(var(--success)/0.5);
}

.dashboard__widget.dashboard__widget-danger {
    background: hsl(var(--danger-l-900));
}

.dashboard__widget.dashboard__widget-danger .dashboard__widget__bg {
    background: hsl(var(--danger)/0.3);
}

.dashboard__widget.dashboard__widget-danger .dashboard__widget__shape {
    background: hsl(var(--danger));
}

.dashboard__widget.dashboard__widget-danger .dashboard__widget__number {
    color: hsl(var(--danger));
}

.dashboard__widget.dashboard__widget-danger:hover {
    border-color: hsl(var(--danger)/0.5);
}

.dashboard__widget.dashboard__widget-warning {
    background: hsl(var(--warning-l-900));
}

.dashboard__widget.dashboard__widget-warning .dashboard__widget__bg {
    background: hsl(var(--warning)/0.3);
}

.dashboard__widget.dashboard__widget-warning .dashboard__widget__shape {
    background: hsl(var(--warning));
}

.dashboard__widget.dashboard__widget-warning .dashboard__widget__number {
    color: hsl(var(--warning-d-100));
}

.dashboard__widget.dashboard__widget-warning:hover {
    border-color: hsl(var(--warning)/0.5);
}

.dashboard__widget.dashboard__widget-info {
    background: hsl(var(--info-l-900));
}

.dashboard__widget.dashboard__widget-info .dashboard__widget__bg {
    background: hsl(var(--info)/0.3);
}

.dashboard__widget.dashboard__widget-info .dashboard__widget__shape {
    background: hsl(var(--info));
}

.dashboard__widget.dashboard__widget-info .dashboard__widget__number {
    color: hsl(var(--info));
}

.dashboard__widget.dashboard__widget-info:hover {
    border-color: hsl(var(--info)/0.5);
}

.dashboard__widget.dashboard__widget-secondary {
    background: hsl(var(--secondary-l-900));
}

.dashboard__widget.dashboard__widget-secondary .dashboard__widget__bg {
    background: hsl(var(--secondary)/0.3);
}

.dashboard__widget.dashboard__widget-secondary .dashboard__widget__shape {
    background: hsl(var(--secondary));
}

.dashboard__widget.dashboard__widget-secondary .dashboard__widget__number {
    color: hsl(var(--secondary));
}

.dashboard__widget.dashboard__widget-secondary:hover {
    border-color: hsl(var(--secondary)/0.5);
}

.dashboard__widget.dashboard__widget-primary {
    background: hsl(var(--primary-l-900));
}

.dashboard__widget.dashboard__widget-primary .dashboard__widget__bg {
    background: hsl(var(--primary)/0.3);
}

.dashboard__widget.dashboard__widget-primary .dashboard__widget__shape {
    background: hsl(var(--primary));
}

.dashboard__widget.dashboard__widget-primary .dashboard__widget__number {
    color: hsl(var(--primary));
}

.dashboard__widget.dashboard__widget-primary:hover {
    border-color: hsl(var(--primary)/0.5);
}

.dashboard__widget__bg {
    position: absolute;
    top: 0;
    left: 10px;
    height: 100%;
    aspect-ratio: 1/1;
    background: hsl(var(--base)/0.3);
    mask-size: cover;
    opacity: 0.5;
    transition: 0.3s;
    z-index: -1;
}

.dashboard__widget__shape {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100px;
    height: 100px;
    background: hsl(var(--base));
    z-index: -1;
}

@media screen and (max-width: 1399px) {
    .dashboard__widget__shape {
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard__widget__shape {
        top: 20px;
        left: 20px;
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard__widget__shape {
        top: 15px;
        left: 15px;
        width: 70px;
        height: 70px;
    }
}

.dashboard__widget__icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    padding: 15px;
}

@media screen and (max-width: 1399px) {
    .dashboard__widget__icon {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard__widget__icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard__widget__icon {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
}

.dashboard__widget__icon svg {
    width: 100%;
    height: 100%;
    fill: hsl(var(--white));
}

.dashboard__widget__txt {
    width: 100%;
    text-align: right;
}

.dashboard__widget__name {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--dark-l-300));
    margin-top: -2px;
    margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
    .dashboard__widget__name {
        font-size: 0.875rem;
        margin-bottom: 13px;
    }
}

.dashboard__widget__number {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.875rem;
    line-height: 1;
    font-weight: 400;
    color: hsl(var(--base));
    margin-bottom: -4px;
}

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

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

.dashboard__widget:hover .dashboard__widget__bg {
    transform: rotate(-10deg) scale(1.1);
    opacity: 1;
}

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

@media screen and (max-width: 2500px) {
    .form-row .col {
        flex-basis: 0%;
    }
}

@media screen and (max-width: 1599px) {
    .form-row .col {
        flex-basis: 50%;
    }
}

@media screen and (max-width: 1199px) {
    .form-row .col {
        flex-basis: 0%;
    }
}

@media screen and (max-width: 991px) {
    .form-row .col {
        flex-basis: 50%;
    }
}

@media screen and (max-width: 575px) {
    .form-row .col {
        flex-basis: auto;
    }
}

.profile-settings__list {
    background: hsl(var(--base-two-l-900)/0.5);
    border-radius: 20px;
    padding: 30px;
    flex-wrap: wrap;
    align-items: center;
}

@media screen and (max-width: 1399px) {
    .profile-settings__list {
        padding: 25px;
    }
}

@media screen and (max-width: 991px) {
    .profile-settings__list {
        padding: 20px;
        row-gap: 30px;
    }
}

@media screen and (max-width: 575px) {
    .profile-settings__list {
        gap: 40px;
    }
}

.profile-settings__list li {
    width: 25%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 0 25px;
    position: relative;
}

@media screen and (max-width: 1399px) {
    .profile-settings__list li {
        padding: 0 20px;
    }
}

@media screen and (max-width: 991px) {
    .profile-settings__list li {
        width: 50%;
        padding: 0 15px;
    }
}

@media screen and (max-width: 575px) {
    .profile-settings__list li {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 0;
    }
}

.profile-settings__list li::after {
    content: "";
    position: absolute;
    top: -5px;
    right: 0;
    bottom: -5px;
    transform: rotate(7deg);
    width: 2px;
    border-left: 2px dashed hsl(var(--base-d-800)/0.1);
}

@media screen and (max-width: 991px) {
    .profile-settings__list li::after {
        transform: rotate(0);
    }
}

@media screen and (max-width: 575px) {
    .profile-settings__list li::after {
        top: calc(100% + 19px);
        bottom: auto;
        width: 100%;
        height: 2px;
        transform: rotate(0);
        border-left-width: 0;
        border-top: 2px dashed hsl(var(--base-d-800)/0.1);
    }
}

@media screen and (max-width: 991px) {
    .profile-settings__list li:nth-child(2n+1) {
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .profile-settings__list li:nth-child(2n+2) {
        padding-right: 0;
    }

    .profile-settings__list li:nth-child(2n+2)::after {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .profile-settings__list li:nth-child(2n+2)::after {
        display: block;
    }
}

.profile-settings__list li:first-child {
    padding-left: 0;
}

@media screen and (max-width: 575px) {
    .profile-settings__list li:first-child {
        padding-left: 0;
    }
}

.profile-settings__list li:last-child {
    padding-right: 0;
}

@media screen and (max-width: 575px) {
    .profile-settings__list li:last-child {
        padding-right: 0;
    }
}

.profile-settings__list li:last-child::after {
    display: none;
}

@media screen and (max-width: 575px) {
    .profile-settings__list li:last-child::after {
        display: none;
    }
}

.profile-settings__list__icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(var(--base));
    border-radius: 15px;
    font-size: 2.1875rem;
    line-height: 1;
    color: hsl(var(--white));
    flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
    .profile-settings__list__icon {
        width: 60px;
        height: 60px;
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 1199px) {
    .profile-settings__list__icon {
        width: 50px;
        height: 50px;
        font-size: 1.5625rem;
    }
}

.profile-settings__list__icon .ti {
    transform: translateY(0);
}

.profile-settings__list__title {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--heading-color));
    margin-top: -3px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1199px) {
    .profile-settings__list__title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
}

.profile-settings__list__content {
    display: block;
    color: hsl(var(--body-color));
    margin-bottom: -8px;
}

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

@media screen and (max-width: 767px) {
    .profile-settings__list__content {
        font-size: 0.875rem;
        margin-bottom: -5px;
    }
}

.guideline-txt p {
    margin-bottom: 14px;
}

.guideline-txt .btn {
    margin-top: 7px;
}

.image-upload {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.image-upload__img-box {
    width: 200px;
    height: 200px;
    background: hsl(var(--white));
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

@media screen and (max-width: 1399px) {
    .image-upload__img-box {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 991px) {
    .image-upload__img-box {
        width: 160px;
        height: 160px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 767px) {
    .image-upload__img-box {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 575px) {
    .image-upload__img-box {
        width: 120px;
        height: 120px;
    }
}

.image-upload__img-box__delete {
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 23px;
    background: hsl(var(--danger));
    color: hsl(var(--white));
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .image-upload__img-box__delete {
        top: 10px;
        right: 10px;
    }
}

.image-upload__img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-upload__img-box:hover {
    border-color: hsl(var(--base));
}

.image-upload__group {
    width: 200px;
    height: 200px;
    position: relative;
}

@media screen and (max-width: 1399px) {
    .image-upload__group {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 991px) {
    .image-upload__group {
        width: 160px;
        height: 160px;
    }
}

@media screen and (max-width: 767px) {
    .image-upload__group {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 575px) {
    .image-upload__group {
        width: 120px;
        height: 120px;
    }
}

.image-upload__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(var(--white));
    border: 2px dashed hsl(var(--secondary-l-800));
    border-radius: 20px;
    transition: 0.4s;
}

@media screen and (max-width: 991px) {
    .image-upload__preview {
        border-radius: 10px;
    }
}

.image-upload__preview .txt-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--secondary-l-200));
}

@media screen and (max-width: 991px) {
    .image-upload__preview .txt-box {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .image-upload__preview .txt-box {
        font-size: 0.875rem;
    }
}

.image-upload__preview .txt-box .ti {
    font-size: 1.875rem;
    transform: translate(0);
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .image-upload__preview .txt-box .ti {
        font-size: 1.5625rem;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .image-upload__preview .txt-box .ti {
        font-size: 1.25rem;
    }
}

.image-upload__preview .img-box {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: hsl(var(--white));
    border-radius: 10px;
    opacity: 0;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .image-upload__preview .img-box {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .image-upload__preview .img-box {
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
    }
}

.image-upload__preview .img-box.active {
    opacity: 1;
}

.image-upload__preview .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-upload__input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.image-upload__input:hover+label {
    border-color: hsl(var(--base));
}

.image-upload__delete {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 23px;
    background: hsl(var(--danger));
    color: hsl(var(--white));
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .image-upload__delete {
        top: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 767px) {
    .image-upload__delete {
        top: 13px;
        right: 13px;
    }
}

.dropzone {
    background: hsl(var(--secondary-l-900)/0.2);
    border: 2px dashed hsl(var(--secondary-l-800));
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .dropzone {
        border-radius: 20px;
        min-height: 150px;
        padding: 15px;
    }
}

.dropzone .dz-message {
    color: hsl(var(--dark-l-500));
    margin: 0;
    position: relative;
}

@media screen and (max-width: 767px) {
    .dropzone .dz-message {
        font-size: 0.875rem;
    }
}

.dropzone .dz-message::before {
    content: "\eb47";
    font-family: "tabler-icons";
    display: block;
    font-size: 3.125rem;
    line-height: 1;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .dropzone .dz-message::before {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    .dropzone .dz-preview {
        margin: 10px;
        min-height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .dropzone .dz-preview .dz-image {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.dropzone .dz-preview .dz-remove {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: hsl(var(--danger));
    border-radius: 50%;
    color: hsl(var(--white));
    font-size: 0;
    text-decoration: none;
    z-index: 21;

    @media (max-width: 991px) {
        width: 21px;
        height: 21px;
        line-height: 21px;
    }

    &::after {
        content: "⛌";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 0.875rem;

        @media (max-width: 991px) {
            font-size: 0.75rem;
        }
    }

    &:hover {
        text-decoration: none;
    }
}

.custom-dropzone {
    position: relative;
}

.custom-dropzone.dropzone-sm {
    max-width: 200px;
}

.custom-dropzone.dropzone-sm .dropzone-filed::after {
    font-size: 1.25rem;
}

.custom-dropzone.wide .dropzone-filed {
    aspect-ratio: 16/9;
}

.custom-dropzone .dropzone-filed {
    display: block;
    width: 100%;
    background: hsl(var(--base)/0.02);
    border: 2px dashed hsl(var(--black)/0.2);
    border-radius: 20px;
    padding: 20px;
    aspect-ratio: 1/1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .custom-dropzone .dropzone-filed {
        border-radius: 15px;
    }
}

@media screen and (max-width: 767px) {
    .custom-dropzone .dropzone-filed {
        border-width: 1px;
        padding: 15px;
    }
}

.custom-dropzone .dropzone-filed.dragging {
    border-color: hsl(var(--base));
    z-index: 2;
}

.custom-dropzone .dropzone-filed.dragging::after {
    opacity: 1;
}

.custom-dropzone .dropzone-filed.dragging .dropzone__icon,
.custom-dropzone .dropzone-filed.dragging .dropzone__txt,
.custom-dropzone .dropzone-filed.dragging .dropzone__preview * {
    opacity: 0.3;
}

.custom-dropzone .dropzone-filed::after {
    content: attr(data-drag-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-d-300)/0.4);
    color: hsl(var(--white));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.1875rem;
    line-height: 1;
    font-weight: 500;
    opacity: 0;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .custom-dropzone .dropzone-filed::after {
        font-size: 1.25rem;
    }
}

.custom-dropzone .dropzone-filed__icon {
    display: block;
    height: 50px;
    font-size: 2.5rem;
    line-height: 1;
    color: hsl(var(--dark)/0.5);
    margin-bottom: 15px;
    transition: 0.3s;
}

@media screen and (max-width: 1599px) {
    .custom-dropzone .dropzone-filed__icon {
        height: 40px;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1199px) {
    .custom-dropzone .dropzone-filed__icon {
        height: 35px;
        font-size: 2.1875rem;
    }
}

@media screen and (max-width: 767px) {
    .custom-dropzone .dropzone-filed__icon {
        height: 30px;
        font-size: 1.875rem;
        margin-bottom: 10px;
    }
}

.custom-dropzone .dropzone-filed__icon .ti {
    transform: translateY(-10%);
}

.custom-dropzone .dropzone-filed__txt {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    color: hsl(var(--dark)/0.5);
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .custom-dropzone .dropzone-filed__txt {
        font-size: 0.875rem;
    }
}

.custom-dropzone .dropzone-filed__preview {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 10px;
    transition: 0.3s;
    overflow: hidden;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .custom-dropzone .dropzone-filed__preview {
        top: 5px;
        left: 5px;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
    }
}

.custom-dropzone .dropzone-filed__preview.active {
    background-color: hsl(var(--white));
    opacity: 1;
}

.custom-dropzone .dropzone-filed__preview img,
.custom-dropzone .dropzone-filed__preview video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.custom-dropzone .dropzone-filed__close {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 1.125rem;
    color: hsl(var(--white));
    background: hsl(var(--danger));
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .custom-dropzone .dropzone-filed__close {
        top: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.9375rem;
    }
}

.custom-dropzone .dropzone-filed__close .ti {
    transform: translateY(10%);
}

.custom-dropzone .dropzone-filed__close:hover {
    background: hsl(var(--danger-d-200));
}

.custom-dropzone .dropzone-filed:hover,
.custom-dropzone .dropzone-filed:focus {
    border-color: hsl(var(--base));
}

.custom-dropzone input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
}

.pricing-set-card .card-body {
    border-bottom: 1px solid hsl(var(--secondary-l-800));
}

.pricing-set-card .card-body:only-child .card-subtitle .btn {
    opacity: 0;
    visibility: hidden;
}

.qr-code-img {
    max-width: 150px;
    margin: 15px auto;
}

@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 */
/* Survey Page Start */
.survey-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    background: hsl(var(--white)/0.05);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--white));
    border-radius: 20px;
    padding: 20px;
    transition: 0.4s;
}

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

@media screen and (max-width: 991px) {
    .survey-card {
        border-radius: 15px;
    }
}

@media screen and (max-width: 767px) {
    .survey-card {
        max-width: 350px;
        padding: 10px;
        margin: auto;
    }
}

.survey-card__img {
    aspect-ratio: 16/10;
    background: hsl(var(--body-color));
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 767px) {
    .survey-card__img {
        border-radius: 7px;
    }
}

.survey-card__img a {
    width: 100%;
    height: 100%;
}

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

.survey-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: hsl(var(--white));
    background: linear-gradient(45deg, hsl(var(--base-d-200)), hsl(var(--base-two-l-400)));
    font-size: 1.125rem;
    line-height: 1;
    padding: 8px 16px;
    border-radius: 10px;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .survey-card__badge {
        top: 7px;
        right: 7px;
        font-size: 0.875rem;
        padding: 5px 10px;
        border-radius: 5px;
    }
}

.survey-card__badge::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-two)));
    border-radius: 8px;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .survey-card__badge::after {
        border-radius: 3px;
    }
}

.survey-card__txt {
    text-align: center;
}

.survey-card__title {
    font-family: var(--body-font);
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    color: hsl(var(--body-color));
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .survey-card__title {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
}

.survey-card__category {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
    .survey-card__category {
        font-size: 0.875rem;
    }
}

.survey-card .btn {
    width: 100%;
    margin-top: auto;
}

.survey-card:hover {
    border-color: hsl(var(--base-l-500));
}

.survey-form {
    padding-bottom: 90px;
}

@media screen and (max-width: 1199px) {
    .survey-form {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form {
        padding-bottom: 0;
    }
}

.survey-form__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 90px 240px;
    backdrop-filter: blur(20px);
    background-color: hsl(var(--white)/0.8);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 1599px) {
    .survey-form__header {
        padding: 80px 80px 210px;
    }
}

@media screen and (max-width: 1399px) {
    .survey-form__header {
        padding: 70px 70px 180px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__header {
        padding: 50px 50px 150px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__header {
        padding: 40px;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__header {
        padding: 30px;
    }
}

.survey-form__header::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 200px;
    backdrop-filter: blur(20px);
    background: linear-gradient(45deg, hsl(var(--base-l-600)/0.3), hsl(var(--base-two-l-600)/0.3), hsl(var(--base-l-600)/0.3));
    background-color: hsl(var(--white)/0.9);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--white));
    border-radius: 20px;
    z-index: -1;
}

@media screen and (max-width: 1599px) {
    .survey-form__header::after {
        top: 40px;
        left: 40px;
        right: 40px;
        bottom: 170px;
    }
}

@media screen and (max-width: 1399px) {
    .survey-form__header::after {
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 140px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__header::after {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 120px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__header::after {
        inset: 15px;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__header::after {
        inset: 10px;
    }
}

.survey-form__logo {
    width: 200px;
    height: 100px;
    margin-bottom: 22px;
}

@media screen and (max-width: 991px) {
    .survey-form__logo {
        width: 120px;
        height: 60px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__logo {
        width: 100px;
        height: 50px;
        margin-bottom: 15px;
    }
}

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

.survey-form__title {
    font-family: var(--body-font);
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 600;
    color: hsl(var(--body-color));
    margin-bottom: -9px;
}

@media screen and (max-width: 991px) {
    .survey-form__title {
        font-size: 1.375rem;
        margin-bottom: -7px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__title {
        font-size: 1.25rem;
        margin-bottom: -6px;
    }
}

.survey-form__body {
    width: 70%;
    backdrop-filter: blur(20px);
    background: linear-gradient(45deg, hsl(var(--base-l-600)/0.3), hsl(var(--base-two-l-600)/0.3), hsl(var(--base-l-600)/0.3));
    background-color: hsl(var(--white)/0.9);
    padding: 40px;
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--white));
    border-radius: 20px;
    margin: -150px auto 0;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1599px) {
    .survey-form__body {
        width: 80%;
        margin-top: -130px;
    }
}

@media screen and (max-width: 1399px) {
    .survey-form__body {
        width: calc(100% - 60px);
        padding: 35px;
        margin-top: -110px;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__body {
        width: 75%;
        padding: 30px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__body {
        width: 80%;
        padding: 25px;
        border-radius: 15px;
        margin-top: -100px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__body {
        width: 100%;
        padding: 20px;
        margin-top: 24px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__body {
        padding: 15px;
    }
}

.survey-form__build-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    margin-top: 40px;
}

@media screen and (max-width: 1399px) {
    .survey-form__build-btn {
        margin-top: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__build-btn {
        margin-top: 30px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__build-btn {
        margin-top: 25px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__build-btn {
        margin-top: 20px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__build-btn {
        margin-top: 15px;
    }
}

.survey-form-preview__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    margin: 0 auto;
}

@media screen and (max-width: 1599px) {
    .survey-form-preview__message {
        padding: 45px;
    }
}

@media screen and (max-width: 1399px) {
    .survey-form-preview__message {
        padding: 40px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form-preview__message {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form-preview__message {
        padding: 20px;
    }
}

.survey-form-preview__message img {
    max-width: 200px;
    margin-bottom: 30px;
    opacity: 0.4;
}

@media screen and (max-width: 1599px) {
    .survey-form-preview__message img {
        max-width: 180px;
    }
}

@media screen and (max-width: 1399px) {
    .survey-form-preview__message img {
        max-width: 150px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form-preview__message img {
        max-width: 120px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form-preview__message img {
        max-width: 100px;
    }
}

.survey-form-preview__message p {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    color: hsl(var(--dark-l-400));
    margin-bottom: -6px;
}

@media screen and (max-width: 1399px) {
    .survey-form-preview__message p {
        font-size: 1.125rem;
        margin-bottom: -5px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form-preview__message p {
        font-size: 1rem;
    }
}

.survey-form-preview .survey-form__btn-card {
    display: none;
}

.survey-form__card {
    margin-bottom: 50px;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .survey-form__card {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__card {
        margin-bottom: 30px;
    }
}

.survey-form__card:last-child {
    margin-bottom: 0;
}

.survey-form__card:hover .survey-form__action {
    opacity: 1;
    visibility: visible;
}

.survey-form__question {
    text-align: center;
    font-size: 1.5625rem;
    line-height: 1.3;
    font-weight: 600;
    color: hsl(var(--body-color));
    padding-bottom: 17px;
    margin-top: -7px;
    margin-bottom: 35px;
    border-bottom: 1px solid hsl(var(--secondary-l-600));
    position: relative;
}

@media screen and (max-width: 1399px) {
    .survey-form__question {
        font-size: 1.375rem;
        padding-bottom: 13px;
        margin-top: -5px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__question {
        font-size: 1.25rem;
        padding-bottom: 14px;
        margin-top: -5px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__question {
        font-size: 1.125rem;
        padding-bottom: 10px;
        margin-top: -4px;
        margin-bottom: 20px;
    }
}

.survey-form__question.required span {
    position: relative;
}

.survey-form__question.required span::after {
    content: "*";
    display: inline-block;
    font-size: 1.375rem;
    font-weight: 700;
    color: hsl(var(--danger-d-100));
    margin-left: 3px;
    transform: translateY(-3px);
}

@media screen and (max-width: 1399px) {
    .survey-form__question.required span::after {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__question.required span::after {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__question.required span::after {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__question.required span::after {
        font-size: 0.875rem;
        margin-left: 2px;
    }
}

.survey-form__question::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 5px;
    transform: translateY(3px) translateX(-50%);
    background: linear-gradient(90deg, hsl(var(--base)), hsl(var(--base-two)));
    border-radius: 3px;
}

@media screen and (max-width: 767px) {
    .survey-form__question::before {
        height: 3px;
        transform: translateY(2px) translateX(-50%);
    }
}

.survey-form__question * {
    display: inline;
}

.survey-form__element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

@media screen and (max-width: 991px) {
    .survey-form__element .gap-3 {
        gap: 13px !important;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__element .gap-3 {
        gap: 10px !important;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__element .gap-3 {
        gap: 7px !important;
    }
}

.survey-form__element .form--control {
    backdrop-filter: blur(20px);
    background-color: hsl(var(--white)/0.5) !important;
    box-shadow: 0px 0px 30px 0px hsl(var(--base)/0.1);
    border-color: hsl(var(--white));
    border-radius: 10px;
}

.survey-form__element .form--control:focus {
    border-color: hsl(var(--base));
}

.survey-form__radio {
    position: relative;
}

.survey-form__radio label {
    background: hsl(var(--white)/0.5);
    box-shadow: 0px 0px 30px 0px hsl(var(--base)/0.1);
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
    user-select: none;
    transition: 0.4s;
}

@media screen and (max-width: 991px) {
    .survey-form__radio label {
        padding: 10px 17px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__radio label {
        padding: 8px 15px;
        font-size: 0.9375rem;
    }
}

.survey-form__radio input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.survey-form__radio input:checked+label {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
}

.survey-form__emoji {
    display: flex;
    gap: 30px;
}

@media screen and (max-width: 1199px) {
    .survey-form__emoji {
        gap: 25px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__emoji {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__emoji {
        gap: 15px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__emoji {
        gap: 12px;
    }
}

.survey-form__emoji__group {
    max-width: 130px;
    text-align: center;
    position: relative;
}

.survey-form__emoji__group.group-base label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--base-l-300)), hsl(var(--base-l-100)), hsl(var(--base-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-base input:checked+label span {
    color: hsl(var(--base));
}

.survey-form__emoji__group.group-base-two label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--base-two-l-300)), hsl(var(--base-two-l-100)), hsl(var(--base-two-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-base-two input:checked+label span {
    color: hsl(var(--base-two));
}

.survey-form__emoji__group.group-primary label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--primary-l-300)), hsl(var(--primary-l-100)), hsl(var(--primary-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-primary input:checked+label span {
    color: hsl(var(--primary));
}

.survey-form__emoji__group.group-success label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--success-l-300)), hsl(var(--success-l-100)), hsl(var(--success-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-success input:checked+label span {
    color: hsl(var(--success));
}

.survey-form__emoji__group.group-info label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--info-l-300)), hsl(var(--info-l-100)), hsl(var(--info-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-info input:checked+label span {
    color: hsl(var(--info));
}

.survey-form__emoji__group.group-warning label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--warning-l-300)), hsl(var(--warning-l-100)), hsl(var(--warning-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-warning input:checked+label span {
    color: hsl(var(--warning));
}

.survey-form__emoji__group.group-danger label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--danger-l-300)), hsl(var(--danger-l-100)), hsl(var(--danger-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-danger input:checked+label span {
    color: hsl(var(--danger));
}

.survey-form__emoji__group.group-dark label i {
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--dark-l-300)), hsl(var(--dark-l-100)), hsl(var(--dark-d-400)));
    background-clip: text;
}

.survey-form__emoji__group.group-dark input:checked+label span {
    color: hsl(var(--dark));
}

.survey-form__emoji__group label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 4.375rem;
    line-height: 1;
    transition: 0.4s;
}

@media screen and (max-width: 1399px) {
    .survey-form__emoji__group label {
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__emoji__group label {
        gap: 12px;
        font-size: 3.4375rem;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__emoji__group label {
        gap: 14px;
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__emoji__group label {
        gap: 9px;
        font-size: 2.813rem;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__emoji__group label {
        font-size: 2.5rem;
    }
}

.survey-form__emoji__group label i {
    display: block;
    background: radial-gradient(60px 60px at 50px 25px, hsl(var(--base-l-300)), hsl(var(--base-l-100)), hsl(var(--base-d-400)));
    background-clip: text;
    transform: translate(0);
    color: hsl(var(--dark-l-300));
    margin: -7px;
    transition: 0.4s;
}

@media screen and (max-width: 1399px) {
    .survey-form__emoji__group label i {
        margin: -6px;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__emoji__group label i {
        margin: -5px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__emoji__group label i {
        margin: -4px;
    }
}

.survey-form__emoji__group label span {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsl(var(--dark-l-300));
    padding-bottom: 2px;
    margin-bottom: -4px;
    transition: 0.4s;
}

@media screen and (max-width: 1399px) {
    .survey-form__emoji__group label span {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__emoji__group label span {
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__emoji__group label span {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__emoji__group label span {
        font-size: 0.625rem;
    }
}

.survey-form__emoji__group input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.survey-form__emoji__group input:checked+label i {
    color: transparent;
}

.survey-form__emoji__group input:checked+label span {
    color: hsl(var(--base));
}

.survey-form__like-dislike {
    display: flex;
    gap: 30px;
}

@media screen and (max-width: 1399px) {
    .survey-form__like-dislike {
        gap: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__like-dislike {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__like-dislike {
        gap: 15px;
    }
}

.survey-form__like-dislike__group {
    min-width: 200px;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .survey-form__like-dislike__group {
        min-width: 175px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__like-dislike__group {
        min-width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__like-dislike__group {
        min-width: 130px;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__like-dislike__group {
        min-width: 110px;
    }
}

.survey-form__like-dislike__group.like input:checked+label {
    color: hsl(var(--success));
    border-color: hsl(var(--success-l-600));
}

.survey-form__like-dislike__group.dislike input:checked+label {
    color: hsl(var(--danger));
    border-color: hsl(var(--danger-l-600));
}

.survey-form__like-dislike__group label {
    background: hsl(var(--white)/0.5);
    box-shadow: 0px 0px 30px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--white));
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    font-size: 3.125rem;
    line-height: 1;
    color: hsl(var(--dark-l-300));
    transition: 0.4s;
}

@media screen and (max-width: 1399px) {
    .survey-form__like-dislike__group label {
        gap: 18px;
        font-size: 2.813rem;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__like-dislike__group label {
        padding: 25px;
        gap: 11px;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__like-dislike__group label {
        border-radius: 10px;
        font-size: 2.1875rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__like-dislike__group label {
        padding: 20px;
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__like-dislike__group label {
        padding: 15px;
        gap: 12px;
        font-size: 1.5625rem;
    }
}

.survey-form__like-dislike__group label i {
    display: block;
    transform: translate(0);
    margin: -8px -5px;
}

@media screen and (max-width: 1399px) {
    .survey-form__like-dislike__group label i {
        margin: -7px -4px;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__like-dislike__group label i {
        margin: -5px -3px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__like-dislike__group label i {
        margin: -3px -2px;
    }
}

.survey-form__like-dislike__group label span {
    display: block;
    font-size: 1.875rem;
    margin-bottom: -4px;
}

@media screen and (max-width: 1399px) {
    .survey-form__like-dislike__group label span {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__like-dislike__group label span {
        font-size: 1.375rem;
        margin-bottom: -3px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__like-dislike__group label span {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__like-dislike__group label span {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__like-dislike__group label span {
        font-size: 1rem;
        margin-bottom: -2px;
    }
}

.survey-form__like-dislike__group input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.survey-form__matrix-clear {
    width: 100%;
    margin: -10px 0;
}

.survey-form__matrix-wrap {
    width: 100%;
    padding-bottom: 0 !important;
}

.survey-form__matrix {
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: max-content;
    border-collapse: separate;
    border-spacing: 0 10px;
    color: hsl(var(--body-color));
}

.survey-form__matrix.survey-form__matrix-2 th:first-child,
.survey-form__matrix.survey-form__matrix-2 td:first-child {
    width: 25%;
    text-align: center;
}

.survey-form__matrix.survey-form__matrix-2 th:last-child,
.survey-form__matrix.survey-form__matrix-2 td:last-child {
    width: 25%;
}

.survey-form__matrix th,
.survey-form__matrix td {
    backdrop-filter: blur(20px);
    background: hsl(var(--white)/0.5);
    border-top: 1px solid hsl(var(--white));
    border-bottom: 1px solid hsl(var(--white));
    padding: 12px 17px;
    text-align: center;
    font-size: 1rem;
}

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

    .survey-form__matrix th,
    .survey-form__matrix td {
        padding: 10px 15px;
        font-size: 0.9375rem;
    }
}

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

    .survey-form__matrix th,
    .survey-form__matrix td {
        padding: 8px 13px;
        font-size: 0.875rem;
    }
}

.survey-form__matrix th:first-child,
.survey-form__matrix td:first-child {
    text-align: left;
    border-radius: 10px 0 0 10px;
    border-left: 1px solid hsl(var(--white));
}

.survey-form__matrix th:last-child,
.survey-form__matrix td:last-child {
    border-radius: 0 10px 10px 0;
    border-right: 1px solid hsl(var(--white));
}

.survey-form__matrix th {
    font-weight: 600;
    background: hsl(var(--white)/0.7);
    color: hsl(var(--base-two-d-700));
}

.survey-form__matrix tr {
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border-radius: 10px;
}

.survey-form__matrix .form--check {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
}

.survey-form__matrix .form--check .form-check-input {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    transform: translate(-50%, -50%);
    margin-top: 0;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--check .form-check-input {
        width: calc(100% - 15px);
        height: calc(100% - 7px);
    }
}

.survey-form__matrix .form--check .form-check-input:hover+label {
    background: hsl(var(--base-l-800)/0.5);
    border-color: hsl(var(--base-l-600)/0.5);
}

.survey-form__matrix .form--check .form-check-input:checked+label {
    background: hsl(var(--base-l-800));
    border-color: hsl(var(--base-l-600));
}

.survey-form__matrix .form--check .form-check-input:checked+label .ti {
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

.survey-form__matrix .form--check label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--check label {
        width: calc(100% - 15px);
        height: calc(100% - 7px);
    }
}

.survey-form__matrix .form--check label .ti {
    display: block;
    width: 18px;
    height: 18px;
    line-height: 16px;
    font-size: 0.9375rem;
    color: transparent;
    border: 1px solid hsl(var(--secondary-l-200));
    border-radius: 3px;
    transform: translate(0);
    transition: 0.4s;
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--check label .ti {
        width: 16px;
        height: 16px;
        line-height: 14px;
        font-size: 0.75rem;
    }
}

.survey-form__matrix .form--radio {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
}

.survey-form__matrix .form--radio .form-check-input {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    transform: translate(-50%, -50%);
    margin-top: 0;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--radio .form-check-input {
        width: calc(100% - 15px);
        height: calc(100% - 7px);
    }
}

.survey-form__matrix .form--radio .form-check-input:hover+label {
    background: hsl(var(--base-l-800)/0.5);
    border-color: hsl(var(--base-l-600)/0.5);
}

.survey-form__matrix .form--radio .form-check-input:checked+label {
    background: hsl(var(--base-l-800));
    border-color: hsl(var(--base-l-600));
}

.survey-form__matrix .form--radio .form-check-input:checked+label span {
    background: hsl(var(--white));
    border-color: hsl(var(--base));
}

.survey-form__matrix .form--radio .form-check-input:checked+label span::after {
    opacity: 1;
}

.survey-form__matrix .form--radio label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--radio label {
        width: calc(100% - 15px);
        height: calc(100% - 7px);
    }
}

.survey-form__matrix .form--radio label span {
    width: 20px;
    height: 20px;
    border: 1px solid hsl(var(--secondary-l-200));
    border-radius: 50%;
    transition: 0.4s;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .survey-form__matrix .form--radio label span {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__matrix .form--radio label span {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--radio label span {
        width: 14px;
        height: 14px;
    }
}

.survey-form__matrix .form--radio label span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background: hsl(var(--base));
    border-radius: 50%;
    transition: 0.4s;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--radio label span::after {
        width: 8px;
        height: 8px;
    }
}

.survey-form__matrix .form--control {
    border-color: hsl(var(--base)/0.2);
    box-shadow: 0 0;
}

.survey-form__matrix .form--control--sm {
    font-size: 1rem;
    line-height: 1.5;
}

@media screen and (max-width: 991px) {
    .survey-form__matrix .form--control--sm {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__matrix .form--control--sm {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

.survey-form__scale-wrap {
    width: 100%;
}

.survey-form__scale-txt {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
    margin-top: -2px;
    margin-bottom: 17px;
}

@media screen and (max-width: 767px) {
    .survey-form__scale-txt {
        font-size: 1rem;
        margin-bottom: 13px;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__scale-txt {
        font-size: 0.875rem;
        margin-top: -1px;
    }
}

.survey-form__scale {
    display: flex;
    gap: 15px;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .survey-form__scale {
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__scale {
        gap: 5px;
    }
}

.survey-form__scale__group {
    height: 50px;
    flex-grow: 1;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .survey-form__scale__group {
        height: 45px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__scale__group {
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__scale__group {
        height: 30px;
    }
}

.survey-form__scale__group:nth-child(1) label {
    background: hsl(var(--danger-d-300));
}

.survey-form__scale__group:nth-child(2) label {
    background: linear-gradient(90deg, hsl(var(--danger-d-300)), hsl(var(--danger-d-200)));
}

.survey-form__scale__group:nth-child(3) label {
    background: linear-gradient(90deg, hsl(var(--danger-d-200)), hsl(var(--danger-d-100)));
}

.survey-form__scale__group:nth-child(4) label {
    background: linear-gradient(90deg, hsl(var(--danger-d-100)), hsl(var(--danger)));
}

.survey-form__scale__group:nth-child(5) label {
    background: linear-gradient(90deg, hsl(var(--danger)), hsl(var(--danger-l-100)));
}

.survey-form__scale__group:nth-child(6) label {
    background: linear-gradient(90deg, hsl(var(--danger-l-100)), hsl(var(--warning)));
}

.survey-form__scale__group:nth-child(7) label {
    background: linear-gradient(90deg, hsl(var(--warning)), hsl(var(--warning-l-100)));
}

.survey-form__scale__group:nth-child(8) label {
    background: linear-gradient(90deg, hsl(var(--warning-l-100)), hsl(var(--warning-l-100)));
}

.survey-form__scale__group:nth-child(9) label {
    background: linear-gradient(90deg, hsl(var(--warning-l-100)), hsl(var(--success-l-200)));
}

.survey-form__scale__group:nth-child(10) label {
    background: hsl(var(--success-l-100));
}

.survey-form__scale__group input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.survey-form__scale__group input:checked+label {
    color: hsl(var(--white));
}

.survey-form__scale__group input:checked+label::after {
    opacity: 0;
}

.survey-form__scale__group label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(var(--body-color));
    border-radius: 25px;
    transition: 0.4s;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .survey-form__scale__group label {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__scale__group label {
        font-size: 1rem;
    }
}

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

@media screen and (max-width: 575px) {
    .survey-form__scale__group label {
        font-size: 0.875rem;
    }
}

.survey-form__scale__group label::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background: hsl(var(--white)/0.8);
    border-radius: 25px;
    transition: 0.4s;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .survey-form__scale__group label::after {
        top: 1px;
        left: 1px;
        bottom: 1px;
        right: 1px;
    }
}

.survey-form__rating {
    display: flex;
    gap: 25px;
    font-size: 4.0625rem;
    line-height: 1;
    position: relative;
}

@media screen and (max-width: 1399px) {
    .survey-form__rating {
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__rating {
        font-size: 3.4375rem;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__rating {
        gap: 20px;
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__rating {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__rating {
        gap: 15px;
        font-size: 2.1875rem;
    }
}

.survey-form__rating__item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.survey-form__rating .ti {
    transform: translate(0);
    margin: -4px -3px -7px;
    color: hsl(var(--secondary-l-200));
    background: radial-gradient(30px 30px at 50px 20px, hsl(var(--warning-l-300)), hsl(var(--warning-l-100)), hsl(var(--warning-d-200)));
    background-clip: text;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .survey-form__rating .ti {
        margin: -4px -3px -6px;
    }
}

@media screen and (max-width: 1199px) {
    .survey-form__rating .ti {
        margin: -3px -3px -6px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__rating .ti {
        margin: -3px -2px -5px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__rating .ti {
        margin: -2px -2px -4px;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__rating .ti {
        margin: -2px -2px -3px;
    }
}

.survey-form__rating .ti.rating,
.survey-form__rating .ti.rated {
    color: transparent;
}

.survey-form__rating input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
}

.survey-form__range {
    width: 100%;
    height: 15px;
    background: hsl(var(--white));
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border-radius: 8px;
    margin-top: 0;
    padding: 2px;
}

.survey-form__range .noUi-connects {
    border-radius: 8px;
    overflow: hidden;
}

.survey-form__range .noUi-connect {
    background: hsl(var(--base-d-600));
    border-radius: 6px;
}

.survey-form__range .noUi-handle {
    width: 21px;
    height: 21px;
    right: -10.5px;
    background: linear-gradient(hsl(var(--base-d-200)), hsl(var(--base-l-200)));
}

.survey-form__range .noUi-tooltip {
    background: hsl(var(--base-d-600));
    padding: 5px 10px;
    border-radius: 15px;
}

.survey-form__range .noUi-tooltip::after {
    background: hsl(var(--base-d-600));
}

.survey-form__range__value {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.survey-form__image-choice {
    width: 100%;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .survey-form__image-choice {
        gap: 15px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__image-choice {
        gap: 10px;
    }
}

.survey-form__image-choice__group {
    width: calc(20% - 20px);
    aspect-ratio: 1/1;
    position: relative;
}

@media screen and (max-width: 767px) {
    .survey-form__image-choice__group {
        width: calc(20% - 12px);
    }
}

@media screen and (max-width: 479px) {
    .survey-form__image-choice__group {
        width: 80px;
    }
}

.survey-form__image-choice__group input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.survey-form__image-choice__group input:checked+label {
    box-shadow: 0px 0px 0px 2px hsl(var(--base));
    border-color: hsl(var(--white));
}

.survey-form__image-choice__group input:checked+label::after {
    opacity: 1;
}

.survey-form__image-choice__group label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.survey-form__image-choice__group label::after {
    content: "\ea5e";
    font-family: "tabler-icons";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--white));
    background: linear-gradient(45deg, hsl(var(--success-d-100)), hsl(var(--success-l-200)));
    border-radius: 7px;
    opacity: 0;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .survey-form__image-choice__group label::after {
        top: 7px;
        right: 7px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 1rem;
        border-radius: 5px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__image-choice__group label::after {
        top: 5px;
        right: 5px;
    }
}

.survey-form__image-choice__group label img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.survey-form__address {
    width: 100%;
}

@media screen and (max-width: 575px) {
    .survey-form__address .col {
        flex-basis: 100%;
    }
}

.survey-form__inputs {
    width: 100%;
}

.survey-form__inputs .input-group-text {
    backdrop-filter: blur(10px);
    background: hsl(var(--white)/0.5);
    border-color: hsl(var(--white));
    border-radius: 10px;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .survey-form__inputs .input-group-text {
        font-size: 1rem;
        padding: 6px 5px;
    }
}

.survey-form__address .col {
    min-width: 50%;
}

.survey-form__image-upload {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.survey-form__image-upload__img-box {
    width: 200px;
    height: 200px;
    backdrop-filter: blur(10px);
    background: hsl(var(--white)/0.3);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--white));
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
}

@media screen and (max-width: 1399px) {
    .survey-form__image-upload__img-box {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__img-box {
        width: 160px;
        height: 160px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__image-upload__img-box {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__image-upload__img-box {
        width: 120px;
        height: 120px;
    }
}

.survey-form__image-upload__img-box__delete {
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 23px;
    background: hsl(var(--danger));
    color: hsl(var(--white));
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__img-box__delete {
        top: 10px;
        right: 10px;
    }
}

.survey-form__image-upload__img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.survey-form__image-upload__img-box:hover {
    border-color: hsl(var(--base));
}

.survey-form__image-upload__group {
    width: 200px;
    height: 200px;
    position: relative;
}

@media screen and (max-width: 1399px) {
    .survey-form__image-upload__group {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__group {
        width: 160px;
        height: 160px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__image-upload__group {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 575px) {
    .survey-form__image-upload__group {
        width: 120px;
        height: 120px;
    }
}

.survey-form__image-upload__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    background: hsl(var(--white)/0.3);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 2px dashed hsl(var(--white));
    border-radius: 15px;
    transition: 0.4s;
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__preview {
        border-radius: 10px;
    }
}

.survey-form__image-upload__preview .txt-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--secondary-l-200));
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__preview .txt-box {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__image-upload__preview .txt-box {
        font-size: 0.875rem;
    }
}

.survey-form__image-upload__preview .txt-box .ti {
    font-size: 1.875rem;
    transform: translate(0);
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__preview .txt-box .ti {
        font-size: 1.5625rem;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__image-upload__preview .txt-box .ti {
        font-size: 1.25rem;
    }
}

.survey-form__image-upload__preview .img-box {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: hsl(var(--white));
    border-radius: 10px;
    opacity: 0;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__preview .img-box {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__image-upload__preview .img-box {
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
    }
}

.survey-form__image-upload__preview .img-box.active {
    opacity: 1;
}

.survey-form__image-upload__preview .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.survey-form__image-upload__input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.survey-form__image-upload__input:hover+label {
    border-color: hsl(var(--base));
}

.survey-form__image-upload__delete {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 23px;
    background: hsl(var(--danger));
    color: hsl(var(--white));
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .survey-form__image-upload__delete {
        top: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 767px) {
    .survey-form__image-upload__delete {
        top: 13px;
        right: 13px;
    }
}

.survey-form__footer {
    position: fixed;
    left: calc(50% + 165px);
    bottom: 30px;
    width: max-content;
    max-width: calc(100% - 390px);
    transform: translateX(-50%);
    padding: 15px;
    background: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-two)), hsl(var(--base)));
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.2);
    border-radius: 20px;
    transition: 0.3s;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .survey-form__footer {
        left: 50%;
        bottom: 15px;
        max-width: calc(100% - 30px);
        padding: 10px;
    }
}

@media screen and (max-width: 991px) {
    .survey-form__footer {
        bottom: 10px;
        max-width: calc(100% - 20px);
        border-radius: 15px;
    }
}

@media screen and (max-width: 479px) {
    .survey-form__footer.hide {
        transform: translateX(-50%) translateY(calc(100% + 10px));
    }
}

.survey-form__footer__badge {
    width: max-content;
    background: linear-gradient(45deg, hsl(var(--base-l-700)), hsl(var(--base-two-l-900)));
    padding: 0 15px;
    height: 35px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1;
    color: hsl(var(--body-color));
    border-radius: 10px;
}

@media screen and (max-width: 991px) {
    .survey-form__footer__badge {
        padding: 0 10px;
        height: 25px;
        font-size: 0.875rem;
        border-radius: 7px;
    }
}

.survey-form__action {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 7px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .survey-form__action {
        top: 0;
        right: 0;
        gap: 5px;
    }
}

.survey-form__action a,
.survey-form__action button {
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 32px;
    border-radius: 50%;
    color: hsl(var(--white));
    font-size: 1rem;
    z-index: 2;
}

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

    .survey-form__action a,
    .survey-form__action button {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 0.875rem;
    }
}

.survey-form__action a.delete-field,
.survey-form__action button.delete-field {
    background: hsl(var(--danger));
}

.survey-form__action a.edit-field,
.survey-form__action button.edit-field {
    background: hsl(var(--base));
}

.address-field-table-responsive {
    box-shadow: 0px 0px 30px 0px hsl(var(--base)/0.1);
    padding-bottom: 1px;
}

.address-field-table {
    min-width: max-content !important;
}

.address-field-table tr td:last-child {
    text-align: center !important;
}

@media screen and (max-width: 991px) {
    .address-field-table .form--control {
        max-width: 200px;
    }
}

@media screen and (max-width: 575px) {
    .address-field-table .form--control {
        max-width: 180px;
    }
}

.table-survey-card {
    align-items: center;
    display: flex;
    gap: 15px;
}

@media screen and (max-width: 767px) {
    .table-survey-card {
        flex-direction: row-reverse;
        width: 200px;
        gap: 10px;
    }
}

@media screen and (max-width: 479px) {
    .table-survey-card {
        width: 150px;
        flex-direction: column;
        align-items: flex-end;
    }
}

.table-survey-card span {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: hsl(var(--white));
    padding: 1px;
    border: 2px solid hsl(var(--base-d-600));
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .table-survey-card span {
        width: 50px;
        height: 50px;
    }
}

.table-survey-card span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.table-survey-card p {
    font-weight: 500;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .table-survey-card p {
        text-align: right;
    }
}

.form-element-list {
    padding-bottom: 2px;
}

.form-element-list li {
    margin-bottom: 20px;
}

.form-element-list li:last-child {
    margin-bottom: 0;
}

.form-element-card {
    padding: 15px;
    background: hsl(var(--white)/0.25);
    border: 1px solid hsl(var(--white));
    border-radius: 15px;
    position: relative;
}

.form-element-card__title {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 600;
    color: hsl(var(--body-color));
    margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
    .form-element-card__title {
        font-size: 1rem;
    }
}

.form-element-card__img {
    display: flex;
    width: 100%;
    max-width: 100%;
    border-radius: 7px;
    overflow: hidden;
}

.form-element-card__img img {
    width: 100%;
}

.form-element-card__btn {
    position: relative;
    display: block;
    width: max-content;
    margin-left: auto;
    margin-top: 13px;
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(90deg, hsl(var(--base-d-100)), hsl(var(--base-two-l-200)));
    color: hsl(var(--white));
    padding: 5px 15px;
    border-radius: 7px;
    z-index: 2;
}

.form-element-card__btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background: hsl(var(--white)/0.2);
    border-radius: 5px;
    z-index: -1;
    transition: 0.4s;
}

.form-element-card__btn .ti {
    transform: translateY(5%);
}

.form-element-card__btn:hover {
    color: hsl(var(--white));
}

.form-element-card__btn:hover::after {
    opacity: 0;
}

.survey-report .card-body {
    border-bottom: 1px solid hsl(var(--base)/0.2);
    border-top: 1px solid hsl(var(--white));
}

.survey-report .card-body:last-of-type {
    border-bottom: 0;
}

.survey-report .card-subtitle label,
.survey-report .card-subtitle span {
    display: inline;
}

.response-card-row .col {
    flex-grow: 0;
    flex-basis: auto;
    width: 25%;
}

@media (max-width: 1499px) {
    .response-card-row .col {
        width: 33.3333333333%;
    }
}

@media screen and (max-width: 767px) {
    .response-card-row .col {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .response-card-row .col {
        width: 100%;
    }
}

.response-card {
    background: hsl(var(--white)/0.3);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.05);
    border: 1px solid hsl(var(--white));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .response-card {
        padding: 20px;
    }
}

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

@media screen and (max-width: 575px) {
    .response-card {
        max-width: 320px;
        margin: auto;
    }
}

.response-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    font-size: 4.375rem;
    color: hsl(var(--dark-l-300));
    margin-bottom: 15px;
}

@media screen and (max-width: 1399px) {
    .response-card__icon {
        width: 60px;
        height: 60px;
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 991px) {
    .response-card__icon {
        width: 55px;
        height: 55px;
        font-size: 3.4375rem;
    }
}

@media screen and (max-width: 767px) {
    .response-card__icon {
        width: 50px;
        height: 50px;
        font-size: 3.125rem;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 479px) {
    .response-card__icon {
        width: 40px;
        height: 40px;
        font-size: 2.5rem;
    }
}

.response-card__icon i {
    color: transparent;
    background-image: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    background-clip: text;
    margin: -7px;
    transform: translate(0);
}

@media screen and (max-width: 1399px) {
    .response-card__icon i {
        margin: -6px;
    }
}

@media screen and (max-width: 991px) {
    .response-card__icon i {
        margin: -5px;
    }
}

@media screen and (max-width: 479px) {
    .response-card__icon i {
        margin: -3px;
    }
}

.response-card__name {
    width: 100%;
    display: block;
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 600;
    color: hsl(var(--base-two-d-700));
    border-bottom: 1px solid hsl(var(--black)/0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
    .response-card__name {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 1199px) {
    .response-card__name {
        font-size: 1.125rem;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    .response-card__name {
        font-size: 1rem;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
}

.response-card .progress-stacked {
    width: 100%;
    height: 8px;
    margin-bottom: 14px;
}

.response-card .progress-stacked .custom--progress {
    width: auto;
}

.response-card .progress-stacked .custom--progress:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.response-card .progress-stacked .custom--progress:first-child .progress-bar {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.response-card .progress-stacked .custom--progress:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.response-card .progress-stacked .custom--progress:last-child .progress-bar {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.response-card .progress-stacked .custom--progress:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.response-card .progress-stacked .custom--progress:not(:first-child):not(:last-child) .progress-bar {
    border-radius: 0;
}

.response-card .custom--progress {
    width: 100%;
    height: 8px;
    margin-bottom: 14px;
}

.response-card__info {
    width: 100%;
}

.response-card__info>span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .response-card__info>span {
        margin-bottom: 5px;
    }
}

.response-card__info>span:last-child {
    margin-bottom: 0;
}

.response-card__info span {
    font-size: 1rem;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .response-card__info span {
        font-size: 0.875rem;
    }
}

.response-card__info span.small {
    font-size: 0.8em;
}

.matrix-select-report th {
    vertical-align: middle;
}

.matrix-select-report tbody tr:last-child td:first-child {
    border-radius: 0;
}

.matrix-select-report tbody tr.bg-light-subtle:not(:last-of-type) td {
    border-bottom-color: hsl(var(--base)/0.15);
}

.matrix-select-report tbody tr td {
    width: 200px;
    border-left: 0 !important;
}

.matrix-select-report tbody tr td:first-child[rowspan] {
    border-bottom-color: hsl(var(--base)/0.15);
}

.net-promoter-report>tbody>tr:nth-child(-n+6)>*,
.net-promoter-report>tbody>tr:nth-child(n+9):nth-child(-n+10)>*,
.net-promoter-report>tbody>tr:last-child>* {
    position: relative;
}

.net-promoter-report>tbody>tr:nth-child(-n+6)>*::after,
.net-promoter-report>tbody>tr:nth-child(n+9):nth-child(-n+10)>*::after,
.net-promoter-report>tbody>tr:last-child>*::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--primary)/0.03);
    border-radius: inherit;
    z-index: -1;
}

.net-promoter-report tr:nth-last-child(2) td,
.net-promoter-report tr:last-child td {
    border-left-width: 1px !important;
    border-left-color: hsl(var(--white)) !important;
}

.net-promoter-report tr:nth-last-child(2) td:last-child,
.net-promoter-report tr:last-child td:last-child {
    border-right-color: hsl(var(--white)) !important;
}

.net-promoter-report tr:last-child td {
    border-bottom-color: hsl(var(--white)) !important;
}

.net-promoter-report tr td {
    border-color: hsl(var(--base)/0.1) !important;
    border-left-width: 0 !important;
}

.net-promoter-report tr td[rowspan] {
    border-left-color: hsl(var(--white)) !important;
    border-left-width: 1px !important;
}

.net-promoter-report tr td[rowspan]:last-child {
    border-right-color: hsl(var(--white)) !important;
}

.range-slider-report {
    background: hsl(var(--white)/0.3);
    box-shadow: 0px 0px 40px 0px hsl(var(--base)/0.1);
    border: 1px solid hsl(var(--white));
    border-radius: 20px;
    padding: 5px;
}

/* Survey Page End */
/* Contact Page Start */
/* ====================== Contact Css Start ==================== */
.contact .section-heading {
    margin-bottom: 27px;
}

.contact__desc {
    margin-bottom: 43px;
}

.contact__info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact__card {
    background: hsl(var(--base-two-l-900)/0.3);
    border-radius: 15px;
    overflow: hidden;
    flex-grow: 1;
    min-width: calc(50% - 15px);
    display: flex;
}

.contact__card__icon {
    flex-shrink: 0;
    text-align: center;
    width: 70px;
    font-size: 2.1875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(var(--white));
    background: hsl(var(--base));
}

.contact__card__icon .ti {
    transform: translateY(0);
}

.contact__card__txt {
    padding: 25px;
}

.contact__card__txt p {
    font-size: 1.125rem;
    color: hsl(var(--body-color));
}

.contact__card__txt p a {
    color: hsl(var(--body-color));
    text-decoration: underline;
}

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

.contact__form {
    background: hsl(var(--base-two-l-900)/0.3);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.contact__form__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask-size: 600px;
    background: hsl(var(--black));
    opacity: 0.05;
    z-index: -1;
}

.contact__form .form--control {
    backdrop-filter: blur(20px);
    background-color: hsl(var(--white)/0.5) !important;
}

.contact__map iframe {
    width: 100%;
    aspect-ratio: 1/0.4;
    border-radius: 20px;
    vertical-align: middle;
}

@keyframes lightRound {
    0% {
        transform: translate(-50%, -50%);
    }

    25% {
        transform: translate(50%, -50%);
    }

    50% {
        transform: translate(50%, 50%);
    }

    75% {
        transform: translate(-50%, 50%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

/* ====================== 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: 0px 10px 30px 0px hsl(var(--black)/0.1);
}

/* ====================== Two Factor Css End ==================== */
/* Two Factor Page End */
/* Pricing Plan Page Start */
:root {
    --table-cell-width: 250px;
}

@media screen and (max-width: 991px) {
    :root {
        --table-cell-width: 220px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --table-cell-width: 200px;
    }
}

@media screen and (max-width: 575px) {
    :root {
        --table-cell-width: calc(100vw - 25px);
    }
}

.pricing-plan {
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .pricing-plan {
        font-size: 0.875rem;
    }
}

.pricing-plan__table-header {
    overflow: auto;
    scrollbar-width: none;
    width: 100%;
    position: sticky;
    top: 87px;
    z-index: 2;
}

.pricing-plan__table-header th {
    width: var(--table-cell-width);
    backdrop-filter: blur(20px);
    background: hsl(var(--secondary)/0.02);
    border-top: 1px solid hsl(var(--secondary-l-900));
    border-left: 1px solid hsl(var(--secondary-l-900));
    padding: 40px 25px;
    position: relative;
}

@media screen and (max-width: 991px) {
    .pricing-plan__table-header th {
        padding: 30px 25px;
    }
}

@media screen and (max-width: 767px) {
    .pricing-plan__table-header th {
        padding: 20px;
    }
}

.pricing-plan__table-header th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: hsl(var(--white));
    border-left-width: 0;
    border-top-width: 0;
}

@media screen and (max-width: 575px) {
    .pricing-plan__table-header th:first-child {
        display: none;
    }
}

.pricing-plan__table-header th:first-child::after {
    display: none;
}

.pricing-plan__table-header th:nth-child(2) {
    border-top-left-radius: 20px;
}

.pricing-plan__table-header th:last-child {
    border-right: 1px solid hsl(var(--secondary-l-900));
    border-top-right-radius: 20px;
}

.pricing-plan__table-header .highlight {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .pricing-plan__table-header .highlight {
        padding: 30px 20px;
    }
}

.pricing-plan__table-header .highlight .pricing-plan__card__price {
    color: hsl(var(--white));
}

.pricing-plan__table-header .highlight .badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .pricing-plan__table-header .highlight .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

.pricing-plan__table-header .highlight::after {
    border-top: 5px solid hsl(var(--base));
}

.pricing-plan__table-container {
    overflow: auto;
    width: 100%;
}

.pricing-plan__table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: hsl(var(--body-color));
}

.pricing-plan__table tbody tr td {
    text-align: center;
    width: var(--table-cell-width);
    padding: 20px 25px;
    border-left: 1px solid hsl(var(--secondary-l-900));
    border-bottom: 1px solid hsl(var(--secondary-l-900));
}

@media screen and (max-width: 1199px) {
    .pricing-plan__table tbody tr td {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 767px) {
    .pricing-plan__table tbody tr td {
        padding: 10px 15px;
    }
}

@media screen and (max-width: 575px) {
    .pricing-plan__table tbody tr td {
        text-align: left;
        overflow: hidden;
    }

    .pricing-plan__table tbody tr td::before {
        content: attr(data-label);
        display: inline-block;
        float: left;
        width: 50%;
        height: 100%;
        background: hsl(var(--base-d-700)/0.01);
        padding: 10px 15px;
        margin: -10px 10px -10px -15px;
        font-weight: 600;
        color: hsl(var(--base-two-d-700));
        border-right: 1px solid hsl(var(--base-two-d-700)/0.03);
    }
}

.pricing-plan__table tbody tr td:first-child {
    text-align: left;
    font-weight: 600;
    color: hsl(var(--base-two-d-700));
    background: hsl(var(--secondary)/0.02);
    backdrop-filter: blur(20px);
    position: sticky;
    left: 0;
    z-index: 2;
}

@media screen and (max-width: 575px) {
    .pricing-plan__table tbody tr td:first-child {
        display: none;
    }
}

.pricing-plan__table tbody tr td:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    border-left: 1px solid;
    border-color: inherit;
}

.pricing-plan__table tbody tr td:last-child {
    border-right: 1px solid hsl(var(--secondary-l-900));
}

.pricing-plan__table tbody tr:first-child td {
    border-top: 1px solid hsl(var(--secondary-l-900));
}

.pricing-plan__table tbody tr:first-child td:first-child {
    border-top-left-radius: 20px !important;
}

@media screen and (max-width: 575px) {
    .pricing-plan__table tbody tr:last-child td:nth-child(2) {
        border-bottom-left-radius: 20px;
    }
}

.pricing-plan__table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}

.pricing-plan__table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}

.pricing-plan__table tbody tr:last-child .highlight::after {
    border-bottom: 5px solid hsl(var(--base));
}

.pricing-plan__card {
    text-align: center;
}

.pricing-plan__card__name {
    display: block;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .pricing-plan__card__name {
        font-size: 1rem;
        margin-bottom: 5px;
    }
}

.pricing-plan__card__price {
    display: block;
    font-size: 1.875rem;
    font-weight: 600;
    color: hsl(var(--base-two-d-700));
    margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
    .pricing-plan__card__price {
        font-size: 1.375rem;
    }
}

.pricing-plan__card__price span {
    font-size: 1.125rem;
    font-weight: 400;
}

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

.pricing-plan__card__info {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .pricing-plan__card__info {
        font-size: 0.875rem;
        margin-bottom: 15px;
    }
}

.pricing-plan .highlight {
    position: relative;
}

.pricing-plan .highlight::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: calc(100% + 1px);
    border-left: 5px solid hsl(var(--base));
    border-right: 5px solid hsl(var(--base));
    border-radius: inherit;
}

/* Pricing Plan Page End */
/* ============ Inner Pages Design 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: -1000px !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 ==================== */

/* ====================== 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.99;
    z-index: -1;
}

.error-page__content {
    padding: 50px 30px;
}

.error-page__thumb {
    text-align: center;
    margin-bottom: 30px;
    background-size: contain !important;
    background-position-y: top !important;
    position: relative;
}

.error-page__thumb__number {
    font-family: var(--body-font);
    font-size: 15.625rem;
    line-height: 1;
    font-weight: 800;
    color: transparent;
    background: repeating-linear-gradient(-45deg, hsl(var(--base)), hsl(var(--base-d-200)) 15px);
    background-clip: text;
    background-size: 15px;
    padding-bottom: 50px;
    margin-top: -36px;
    margin-bottom: 0;
}

.error-page__thumb img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
}

.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 ==================== */
/*# sourceMappingURL=main.css.map */