@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Urbanist", sans-serif;
    --body-font: "Urbanist", sans-serif;
    /* ========================= Theme Color Start ============================= */
    /* Base Color */
    --base-h: 241;
    --base-s: 100%;
    --base-l: 69%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s)
        calc(var(--base-l) - var(--base-l) * 1);
    --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);
    --base-l-1000: var(--base-h) calc(var(--base-s))
        calc(var(--base-l) + (100% - var(--base-l)) * 1);
    --base-50: color-mix(in oklab, hsl(var(--base)), hsl(var(--white)) 95%);
    --base-700: color-mix(
        in oklab,
        hsl(var(--base-d-100)),
        hsl(var(--black)) 13%
    );
    --base-900: color-mix(in oklab, hsl(var(--base)), hsl(var(--black)) 41%);
    --base-rgb: linear-gradient(
        220deg,
        var(--base-700) 0%,
        var(--base-900) 55%,
        var(--base-700) 90%
    );
    /* Base Two Color */
    --base-two-h: 261;
    --base-two-s: 100%;
    --base-two-l: 66%;
    --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
    --base-two-d-100: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.1);
    --base-two-d-200: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.2);
    --base-two-d-300: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.3);
    --base-two-d-400: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.4);
    --base-two-d-500: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.5);
    --base-two-d-600: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.6);
    --base-two-d-700: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.7);
    --base-two-d-800: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.8);
    --base-two-d-900: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 0.9);
    --base-two-d-1000: var(--base-two-h) var(--base-two-s)
        calc(var(--base-two-l) - var(--base-two-l) * 1);
    --base-two-l-100: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
    --base-two-l-200: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
    --base-two-l-300: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
    --base-two-l-400: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
    --base-two-l-500: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
    --base-two-l-600: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
    --base-two-l-700: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
    --base-two-l-800: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
    --base-two-l-900: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.9);
    --base-two-l-1000: var(--base-two-h) calc(var(--base-two-s))
        calc(var(--base-two-l) + (100% - var(--base-two-l)) * 1);
    --base-three-h: 257;
    --base-three-s: 67%;
    --base-three-l: 45%;
    --base-three: var(--base-three-h) var(--base-three-s) var(--base-three-l);
    --base-three-d-100: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.1);
    --base-three-d-200: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.2);
    --base-three-d-300: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.3);
    --base-three-d-400: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.4);
    --base-three-d-500: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.5);
    --base-three-d-600: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.6);
    --base-three-d-700: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.7);
    --base-three-d-800: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.8);
    --base-three-d-900: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 0.9);
    --base-three-d-1000: var(--base-three-h) var(--base-three-s)
        calc(var(--base-three-l) - var(--base-three-l) * 1);
    --base-three-l-100: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.1);
    --base-three-l-200: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.2);
    --base-three-l-300: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.3);
    --base-three-l-400: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.4);
    --base-three-l-500: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.5);
    --base-three-l-600: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.6);
    --base-three-l-700: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.7);
    --base-three-l-800: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.8);
    --base-three-l-900: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.9);
    --base-three-l-1000: var(--base-three-h) calc(var(--base-three-s))
        calc(var(--base-three-l) + (100% - var(--base-three-l)) * 1);
    --white: 0 0% 100%;
    --body-color: var(--neutral-600);
    --heading-color: 0 0% 0%;
    --black: 0 0% 0%;
    --muted: 215 18% 47%;
    --border-color: 0 0% 88%;
    --section-bg: 208 100% 97%;
    --background-color: var(--black);

    /* ======================  Natural color Variable Start  ======================*/
    --neutral-00: 0 0% 100%;
    --neutral-50: 0 0% 98%;
    --neutral-100: 240 5% 96%;
    --neutral-200: 240 6% 90%;
    --neutral-300: 240 5% 84%;
    --neutral-400: 240 5% 65%;
    --neutral-500: 240 4% 46%;
    --neutral-600: 240 5% 34%;
    --neutral-700: 240 5% 26%;
    --neutral-800: 240 4% 16%;
    --neutral-900: 240 6% 10%;
    --neutral-950: 240 10% 4%;
    --text-muted: 240 4% 46%;
    --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
    --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) / 0.92);
    --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);

    --gray: 228, 14%, 93%;

    /* ============================== Bootstrap Modifier Start ============================== */
    /* Primary Color */
    --primary-h: 238;
    --primary-s: 100%;
    --primary-l: 40%;
    --primary: var(--primary-h) var(--primary-s) var(--primary-l);
    --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-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);
    /* Secondary Color */
    --secondary-h: 208;
    --secondary-s: 7%;
    --secondary-l: 46%;
    --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
    --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-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);
    /* Success Color */
    --success-h: 142;
    --success-s: 71%;
    --success-l: 45%;
    --success: var(--success-h) var(--success-s) var(--success-l);
    --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-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);
    /* Danger Color */
    --danger-h: 0;
    --danger-s: 84%;
    --danger-l: 60%;
    --danger: var(--danger-h) var(--danger-s) var(--danger-l);
    --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-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);
    /* Warning Color */
    --warning-h: 38;
    --warning-s: 92%;
    --warning-l: 50%;
    --warning: var(--warning-h) var(--warning-s) var(--warning-l);
    --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-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);
    /* Info Color */
    --info-h: 217;
    --info-s: 91%;
    --info-l: 60%;
    --info: var(--info-h) var(--info-s) var(--info-l);
    --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-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);
    /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* ========================= Typography CSS Start ========================= */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    background-color: hsl(var(--neutral-50));
    word-break: break-word;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}

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

h1,
.h1 {
    font-size: clamp(2.5rem, 1.7181rem + 3.9093vw, 5.875rem);
}

h2,
.h2 {
    font-size: clamp(3rem, 2.2494rem + 3.7529vw, 4rem);
}

h3,
.h3 {
    font-size: clamp(1.75rem, 1.4373rem + 1.5637vw, 3rem);
}

h4,
.h4 {
    font-size: clamp(1.5rem, 1.3749rem + 0.6255vw, 2rem);
}

h5,
.h5 {
    font-size: clamp(1.25rem, 1.1875rem + 0.3127vw, 1.5rem);
}

h6,
.h6 {
    font-size: clamp(1.125rem, 1.0937rem + 0.1564vw, 1.25rem);
}

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

a {
    display: inline-block;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    color: hsl(var(--base));
}

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

img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

span {
    display: inline-block;
}

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

/* ========================= Typography CSS End ========================= */
/* ========================= Classes CSS Start ========================= */
.page-wrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
}

@media screen and (min-width: 1600px) {
    .custom--container {
        max-width: 1392px;
    }
}

@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xsm-6 {
        width: 50%;
    }
}

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

.mask-img {
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
}

.rounded-full {
    border-radius: 999px !important;
}

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

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

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

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

.fs-19 {
    font-size: 1.1875rem;
}

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

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

.body-overlay,
.sidebar-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: hsl(var(--black) / 0.5);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

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

.body-overlay {
    z-index: 999;
}

.sidebar-overlay {
    z-index: 1049;
}

.modal-backdrop,
.offcanvas-backdrop {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: hsl(var(--black) / 0.15);
}

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

/* ========================= Classes CSS End ========================= */
/* ========================= Global CSS Start ========================= */
.section-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.section-heading__title {
    font-size: clamp(2rem, 1.6247rem + 1.8765vw, 3.5rem);
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.section-heading__desc {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 140%;
    color: hsl(var(--white));
}

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

.section-heading.style-left {
    text-align: left;
}

.latest-blog-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid hsl(var(--black) / 0.1);
}

.latest-blog-item:last-of-type {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fit-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ========================= Globale CSS End ========================= */
/* ========================= BG Utilities CSS Start ========================= */
.bg--base {
    background-color: hsl(var(--base)) !important;
}

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

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

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

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

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

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

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

/* ========================= BG Utilities CSS End ========================= */
/* ========================= Color Utilities CSS Start ========================= */
.text--base {
    color: hsl(var(--base)) !important;
}

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

/* ========================= Color Utilities CSS End ========================= */
/* ========================= Spacing Utilities CSS Start ========================= */
.py-120 {
    padding-block: 120px;
}

@media screen and (max-width: 991px) {
    .py-120 {
        padding-block: 80px;
    }
}

@media screen and (max-width: 575px) {
    .py-120 {
        padding-block: 60px;
    }
}

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

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

@media screen and (max-width: 575px) {
    .pt-120 {
        padding-top: 60px;
    }
}

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

@media screen and (max-width: 991px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.py-100 {
    padding-block: 100px;
}

@media screen and (max-width: 991px) {
    .py-100 {
        padding-block: 80px;
    }
}

@media screen and (max-width: 575px) {
    .py-100 {
        padding-block: 50px;
    }
}

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

@media screen and (max-width: 991px) {
    .pt-100 {
        padding-top: 80px;
    }
}

@media screen and (max-width: 575px) {
    .pt-100 {
        padding-top: 50px;
    }
}

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

@media screen and (max-width: 991px) {
    .pb-100 {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .pb-100 {
        padding-bottom: 50px;
    }
}

.py-80 {
    padding-block: 80px;
}

@media screen and (max-width: 991px) {
    .py-80 {
        padding-block: 60px;
    }
}

@media screen and (max-width: 575px) {
    .py-80 {
        padding-block: 40px;
    }
}

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

@media screen and (max-width: 991px) {
    .pt-80 {
        padding-top: 60px;
    }
}

@media screen and (max-width: 575px) {
    .pt-80 {
        padding-top: 40px;
    }
}

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

@media screen and (max-width: 991px) {
    .pb-80 {
        padding-bottom: 60px;
    }
}

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

.py-60 {
    padding-block: 60px;
}

@media screen and (max-width: 991px) {
    .py-60 {
        padding-block: 40px;
    }
}

@media screen and (max-width: 575px) {
    .py-60 {
        padding-block: 30px;
    }
}

.py-30 {
    padding-block: 30px;
}

@media screen and (max-width: 991px) {
    .py-30 {
        padding-block: 25px;
    }
}

@media screen and (max-width: 575px) {
    .py-30 {
        padding-block: 20px;
    }
}

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

@media screen and (max-width: 991px) {
    .pt-60 {
        padding-top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .pt-60 {
        padding-top: 30px;
    }
}

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

@media screen and (max-width: 991px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 575px) {
    .pb-60 {
        padding-bottom: 30px;
    }
}

.py-50 {
    padding-block: 50px;
}

@media screen and (max-width: 991px) {
    .py-50 {
        padding-block: 40px;
    }
}

@media screen and (max-width: 575px) {
    .py-50 {
        padding-block: 30px;
    }
}

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

@media screen and (max-width: 991px) {
    .pt-50 {
        padding-top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .pt-50 {
        padding-top: 30px;
    }
}

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

@media screen and (max-width: 991px) {
    .pb-50 {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 575px) {
    .pb-50 {
        padding-bottom: 30px;
    }
}

.py-40 {
    padding-block: 40px;
}

@media screen and (max-width: 991px) {
    .py-40 {
        padding-block: 30px;
    }
}

@media screen and (max-width: 575px) {
    .py-40 {
        padding-block: 20px;
    }
}

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

@media screen and (max-width: 991px) {
    .pt-40 {
        padding-top: 30px;
    }
}

@media screen and (max-width: 575px) {
    .pt-40 {
        padding-top: 20px;
    }
}

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

@media screen and (max-width: 991px) {
    .pb-40 {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 575px) {
    .pb-40 {
        padding-bottom: 20px;
    }
}

.my-120 {
    margin-block: 120px;
}

@media screen and (max-width: 991px) {
    .my-120 {
        margin-block: 80px;
    }
}

@media screen and (max-width: 575px) {
    .my-120 {
        margin-block: 60px;
    }
}

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

@media screen and (max-width: 991px) {
    .mt-120 {
        margin-top: 80px;
    }
}

@media screen and (max-width: 575px) {
    .mt-120 {
        margin-top: 60px;
    }
}

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

@media screen and (max-width: 991px) {
    .mb-120 {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .mb-120 {
        margin-bottom: 60px;
    }
}

.my-100 {
    margin-block: 100px;
}

@media screen and (max-width: 991px) {
    .my-100 {
        margin-block: 80px;
    }
}

@media screen and (max-width: 575px) {
    .my-100 {
        margin-block: 50px;
    }
}

.mt-100 {
    margin-top: 100px;
}

@media screen and (max-width: 991px) {
    .mt-100 {
        margin-top: 80px;
    }
}

@media screen and (max-width: 575px) {
    .mt-100 {
        margin-top: 50px;
    }
}

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

@media screen and (max-width: 991px) {
    .mb-100 {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .mb-100 {
        margin-bottom: 50px;
    }
}

.my-80 {
    margin-block: 80px;
}

@media screen and (max-width: 991px) {
    .my-80 {
        margin-block: 60px;
    }
}

@media screen and (max-width: 575px) {
    .my-80 {
        margin-block: 40px;
    }
}

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

@media screen and (max-width: 991px) {
    .mt-80 {
        margin-top: 60px;
    }
}

@media screen and (max-width: 575px) {
    .mt-80 {
        margin-top: 40px;
    }
}

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

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

@media screen and (max-width: 575px) {
    .mb-80 {
        margin-bottom: 40px;
    }
}

.my-60 {
    margin-block: 60px;
}

@media screen and (max-width: 991px) {
    .my-60 {
        margin-block: 40px;
    }
}

@media screen and (max-width: 575px) {
    .my-60 {
        margin-block: 30px;
    }
}

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

@media screen and (max-width: 991px) {
    .mt-60 {
        margin-top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .mt-60 {
        margin-top: 30px;
    }
}

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

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

@media screen and (max-width: 575px) {
    .mb-60 {
        margin-bottom: 30px;
    }
}

.my-50 {
    margin-block: 50px;
}

@media screen and (max-width: 991px) {
    .my-50 {
        margin-block: 40px;
    }
}

@media screen and (max-width: 575px) {
    .my-50 {
        margin-block: 30px;
    }
}

.mt-50 {
    margin-top: 50px;
}

@media screen and (max-width: 991px) {
    .mt-50 {
        margin-top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .mt-50 {
        margin-top: 30px;
    }
}

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

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

@media screen and (max-width: 575px) {
    .mb-50 {
        margin-bottom: 30px;
    }
}

.my-40 {
    margin-block: 40px;
}

@media screen and (max-width: 991px) {
    .my-40 {
        margin-block: 30px;
    }
}

@media screen and (max-width: 575px) {
    .my-40 {
        margin-block: 20px;
    }
}

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

@media screen and (max-width: 991px) {
    .mt-40 {
        margin-top: 30px;
    }
}

@media screen and (max-width: 575px) {
    .mt-40 {
        margin-top: 20px;
    }
}

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

@media screen and (max-width: 991px) {
    .mb-40 {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 575px) {
    .mb-40 {
        margin-bottom: 20px;
    }
}

/* ========================= Spacing Utilities CSS End ========================= */
/* ========================= Border Utilities CSS Start ========================= */
.border--base {
    border-color: hsl(var(--base)) !important;
}

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

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

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

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

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

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

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

.border--gradient {
    --border-width: 1px;
    --border-gradient: var(--gradient);
    position: relative;
    z-index: 1;
}

.border--gradient::before {
    content: "";
    border-radius: inherit;
    position: absolute;
    inset: 0;
    background: var(--border-gradient) border-box;
    border: var(--border-width) solid transparent;
    -webkit-mask:
        -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff))
            padding-box,
        -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask:
        -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff))
            padding-box,
        -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* ========================= Border Utilities CSS End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion {
    --p: 24px;
}

@media screen and (max-width: 767px) {
    .custom--accordion {
        --p: 18px;
    }
}

.custom--accordion .accordion-item {
    background-color: transparent !important;
    border-radius: 12px;
    overflow: hidden;
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: 1px solid hsl(var(--base));
}

.custom--accordion .accordion-item:has([aria-expanded="true"]) {
    -webkit-box-shadow: 2px 2px 0 2px hsl(var(--base));
    box-shadow: 2px 2px 0 2px hsl(var(--base));
}

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

.custom--accordion .accordion-item .accordion-button {
    padding: var(--p);
    padding-right: calc(var(--p) + 22px) !important;
}

.custom--accordion .accordion-header {
    line-height: 1;
    color: hsl(var(--neutral-900));
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 500;
}

.custom--accordion .accordion-body {
    padding: var(--p);
    padding-top: 0;
    background-color: var(--base-50);
    color: hsl(var(--neutral-700));
    font-weight: 400;
}

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

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

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

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

.custom--accordion .accordion-button {
    background-color: var(--base-50);
    font-size: 1.125rem;
    padding: 15px;
    font-weight: 500;
}

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

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

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

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

.custom--accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    color: hsl(var(--base));
}

.custom--accordion .accordion-button[aria-expanded="true"]::after,
.custom--accordion .accordion-button[aria-expanded="false"]::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f068";
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    font-size: 14px;
    height: unset;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 3px;
}

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

/* ================================= Accordion Css End =========================== */
.inner-page {
    z-index: 1;
    position: relative;
    overflow: hidden;
}

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

.inner-page .inner-shape {
    position: absolute;
    right: 0px;
    top: 50px;
}

@media screen and (max-width: 991px) {
    .inner-page .inner-shape {
        display: none;
    }
}

/* ========================= Alert CSS Start ======================= */
.alert {
    --color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid hsl(var(--color) / 0.1);
    background-color: hsl(var(--color) / 0.1);
    border-radius: 20px;
    margin-bottom: 0;
}

.alert:not(:last-child) {
    margin-bottom: 1rem;
}

.alert__icon {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    padding: 0px !important;
    background: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(var(--size) * 0.5);
    color: hsl(var(--color));
    background-color: hsl(var(--color) / 0.15);
    border: 1px solid hsl(var(--color) / 0.15);
    line-height: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 575px) {
    .alert__icon {
        --size: 32px;
    }
}

.alert__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.alert__title {
    font-weight: 500;
    margin-bottom: 4px;
    color: hsl(var(--heading-color));
}

.alert__desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    color: hsl(var(--neutral-800));
}

.alert .btn--close {
    position: absolute;
    top: 0;
    right: 0;
    color: hsl(var(--color));
}

@media screen and (max-width: 575px) {
    .alert .btn--close {
        --size: 40px;
    }
}

.alert--gradient {
    background: var(--gradient-l-100);
    background-color: unset;
}

.alert--gradient.border--gradient {
    --border-gradient: var(--gradient-l-100);
}

.alert--gradient .alert__icon {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: unset;
    position: relative;
    z-index: 1;
}

.alert--gradient .alert__icon::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    inset: 0;
    background: var(--gradient-l-100);
    z-index: -1;
}

.alert--gradient .alert__icon.border--gradient {
    --border-gradient: var(--gradient-l-100);
}

.alert--gradient .btn--close::after {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

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

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

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

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

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

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

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

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

/* ========================= Alert CSS End ======================= */
/* ========================= Badge CSS Start ========================= */
.badge {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 100%;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
}

.badge--gradient {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.badge--gradient::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    background: var(--gradient-l-100);
}

.badge--gradient.border--gradient {
    --border-gradient: var(--gradient-l-100);
}

.badge-outline--gradient {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.badge-outline--gradient::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    background: var(--gradient-l-100);
}

.badge-outline--gradient.border--gradient {
    --border-gradient: var(--gradient-l-100);
}

.badge--base {
    color: hsl(var(--base));
    background-color: hsl(var(--base) / 0.15);
}

.badge-outline--base {
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base) / 0.15);
    background-color: hsl(var(--base) / 0.15);
}

.badge--base-two {
    background-color: hsl(var(--base-two) / 0.15);
    color: hsl(var(--base-two));
}

.badge-outline--base-two {
    color: hsl(var(--base-two));
    border: 1px solid hsl(var(--base-two) / 0.15);
    background-color: hsl(var(--base-two) / 0.15);
}

.badge--primary {
    background-color: hsl(var(--primary) / 0.15);
    color: hsl(var(--primary));
}

.badge-outline--primary {
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary) / 0.15);
    background-color: hsl(var(--primary) / 0.15);
}

.badge--secondary {
    background-color: hsl(var(--secondary) / 0.15);
    color: hsl(var(--secondary));
}

.badge-outline--secondary {
    color: hsl(var(--secondary));
    border: 1px solid hsl(var(--secondary) / 0.15);
    background-color: hsl(var(--secondary) / 0.15);
}

.badge--success {
    color: hsl(var(--success));
    background-color: hsl(var(--success) / 0.15);
}

.badge-outline--success {
    color: hsl(var(--success));
    border: 1px solid hsl(var(--success) / 0.15);
    background-color: hsl(var(--success) / 0.15);
}

.badge--danger {
    background-color: hsl(var(--danger) / 0.15);
    color: hsl(var(--danger));
}

.badge-outline--danger {
    color: hsl(var(--danger));
    border: 1px solid hsl(var(--danger) / 0.15);
    background-color: hsl(var(--danger) / 0.15);
}

.badge--warning {
    background-color: hsl(var(--warning) / 0.15);
    color: hsl(var(--warning));
}

.badge-outline--warning {
    color: hsl(var(--warning));
    border: 1px solid hsl(var(--warning) / 0.15);
    background-color: hsl(var(--warning) / 0.15);
}

.badge--info {
    background-color: hsl(var(--info) / 0.15);
    color: hsl(var(--info));
}

.badge-outline--info {
    color: hsl(var(--info));
    border: 1px solid hsl(var(--info) / 0.15);
    background-color: hsl(var(--info) / 0.15);
}

.badge--dark {
    background-color: hsl(var(--info) / 0.15);
    color: hsl(var(--info));
}

.badge-outline--dark {
    color: hsl(var(--info));
    border: 1px solid hsl(var(--info) / 0.15);
    background-color: hsl(var(--info) / 0.15);
}

/* ========================= Badge 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 {
    color: hsl(var(--white)) !important;
    font-weight: 700;
    padding: 15px 22px;
    border-radius: 12px;
    z-index: 1;
    border: 1px solid transparent;
    font-family: var(--body-font);
    font-size: 1.125rem;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 14px 25px;
        font-size: 0.875rem;
    }
}

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

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

.btn:active {
    top: 1px;
}

.btn--lg {
    padding: 18px 30px;
}

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

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

.btn--sm {
    padding: 13px 18px;
    font-weight: 600;
    font-size: 0.875rem;
}

.btn--base {
    position: relative;
}

.btn--base::before,
.btn--base::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        var(--base-700) 0%,
        hsl(var(--base)) 55%,
        var(--base-700) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--base::after {
    background: linear-gradient(
        281deg,
        hsl(var(--base)) 0%,
        var(--base-700) 55%,
        hsl(var(--base)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

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

.btn-outline--base {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base)) !important;
    color: hsl(var(--base)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--base::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        var(--base-700) 0%,
        hsl(var(--base)) 55%,
        var(--base-700) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

.btn--base-two {
    position: relative;
}

.btn--base-two::before,
.btn--base-two::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        hsl(var(--base-two-d-200)) 0%,
        hsl(var(--base-two)) 55%,
        hsl(var(--base-two-d-200)) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--base-two::after {
    background: linear-gradient(
        281deg,
        hsl(var(--base-two)) 0%,
        hsl(var(--base-two-d-200)) 55%,
        hsl(var(--base-two)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

.btn--base-two:hover::after,
.btn--base-two:focus::after,
.btn--base-two:focus-visible::after {
    visibility: visible;
    opacity: 1;
}

.btn-outline--base-two {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base-two)) !important;
    color: hsl(var(--base-two)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--base-two::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        --base-two-d-200 0%,
        hsl(var(--base-two)) 55%,
        --base-two-d-200 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

.btn--primary {
    position: relative;
}

.btn--primary::before,
.btn--primary::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        hsl(var(--primary-d-200)) 0%,
        hsl(var(--primary)) 55%,
        hsl(var(--primary-d-200)) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--primary::after {
    background: linear-gradient(
        281deg,
        hsl(var(--primary)) 0%,
        hsl(var(--primary-d-200)) 55%,
        hsl(var(--primary)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

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

.btn-outline--primary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--primary)) !important;
    color: hsl(var(--primary)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--primary::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        --primary-d-200 0%,
        hsl(var(--primary)) 55%,
        --primary-d-200 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

.btn--secondary {
    position: relative;
}

.btn--secondary::before,
.btn--secondary::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        hsl(var(--secondary-d-200)) 0%,
        hsl(var(--secondary)) 55%,
        hsl(var(--secondary-d-200)) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--secondary::after {
    background: linear-gradient(
        281deg,
        hsl(var(--secondary)) 0%,
        hsl(var(--secondary-d-200)) 55%,
        hsl(var(--secondary)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

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

.btn-outline--secondary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--secondary)) !important;
    color: hsl(var(--secondary)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--secondary::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        --secondary-d-200 0%,
        hsl(var(--secondary)) 55%,
        --secondary-d-200 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

.btn--info {
    position: relative;
}

.btn--info::before,
.btn--info::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        hsl(var(--info-d-200)) 0%,
        hsl(var(--info)) 55%,
        hsl(var(--info-d-200)) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--info::after {
    background: linear-gradient(
        281deg,
        hsl(var(--info)) 0%,
        hsl(var(--info-d-200)) 55%,
        hsl(var(--info)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

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

.btn-outline--info {
    background-color: transparent !important;
    border: 1px solid hsl(var(--info)) !important;
    color: hsl(var(--info)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--info::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        --info-d-200 0%,
        hsl(var(--info)) 55%,
        --info-d-200 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

.btn--success {
    position: relative;
}

.btn--success::before,
.btn--success::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        hsl(var(--success-d-200)) 0%,
        hsl(var(--success)) 55%,
        hsl(var(--success-d-200)) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--success::after {
    background: linear-gradient(
        281deg,
        hsl(var(--success)) 0%,
        hsl(var(--success-d-200)) 55%,
        hsl(var(--success)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

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

.btn-outline--success {
    background-color: transparent !important;
    border: 1px solid hsl(var(--success)) !important;
    color: hsl(var(--success)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--success::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        --success-d-200 0%,
        hsl(var(--success)) 55%,
        --success-d-200 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

.btn--danger {
    position: relative;
}

.btn--danger::before,
.btn--danger::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        hsl(var(--danger-d-200)) 0%,
        hsl(var(--danger)) 55%,
        hsl(var(--danger-d-200)) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--danger::after {
    background: linear-gradient(
        281deg,
        hsl(var(--danger)) 0%,
        hsl(var(--danger-d-200)) 55%,
        hsl(var(--danger)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

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

.btn-outline--danger {
    background-color: transparent !important;
    border: 1px solid hsl(var(--danger)) !important;
    color: hsl(var(--danger)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--danger::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        --danger-d-200 0%,
        hsl(var(--danger)) 55%,
        --danger-d-200 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

.btn--warning {
    position: relative;
}

.btn--warning::before,
.btn--warning::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        hsl(var(--warning-d-200)) 0%,
        hsl(var(--warning)) 55%,
        hsl(var(--warning-d-200)) 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn--warning::after {
    background: linear-gradient(
        281deg,
        hsl(var(--warning)) 0%,
        hsl(var(--warning-d-200)) 55%,
        hsl(var(--warning)) 90%
    );
    visibility: hidden;
    opacity: 0;
}

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

.btn-outline--warning {
    background-color: transparent !important;
    border: 1px solid hsl(var(--warning)) !important;
    color: hsl(var(--warning)) !important;
    position: relative;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn-outline--warning::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(
        281deg,
        --warning-d-200 0%,
        hsl(var(--warning)) 55%,
        --warning-d-200 90%
    );
    border-radius: inherit !important;
    z-index: -1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

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

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

/* ================================= Button Css End =========================== */
.filter-btn {
    padding-block: 11px;
}

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

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

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

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

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

.btn-outline--dark:hover,
.btn-outline--dark:focus,
.btn-outline--dark:focus-visible,
.btn-outline--dark:active {
    background-color: hsl(var(--gray)) !important;
    color: hsl(var(--black)) !important;
    border: 1px solid hsl(var(--gray)) !important;
}

/* ========================= Card CSS Start =========================== */
.custom--card {
    border-radius: 20px;
    border: transparent !important;
}

.custom--card .card-header,
.custom--card .card-footer {
    padding: 16px 24px;
    background-color: transparent;
}

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

@media screen and (max-width: 575px) {
    .custom--card .card-body {
        padding: 24px 16px;
    }
}

.custom--card .card-header {
    border-bottom: 1px solid hsl(var(--border-color));
}

.custom--card .card-header h4 {
    font-size: 1.5rem;
}

.custom--card .card-header:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.custom--card .card-body {
    color: hsl(var(--body-color));
}

.custom--card .card-footer {
    padding-top: 16px;
    border-top: 1px solid hsl(var(--border-color));
}

.custom--card .card-footer:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.custom--card .card-title {
    color: hsl(var(--heading-color));
    margin-bottom: 0;
}

/* ========================= Card CSS End ========================= */
/* ========================= Dropdown CSS Start ========================= */
/* ========================= Dropdown CSS Start ========================= */
.dropdown--lang {
    line-height: 100%;
}

.dropdown--lang .dropdown-toggle {
    font-size: 1rem;
    font-weight: 600;
    line-height: 100%;
    color: hsl(var(--white) / 0.8);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border: none;
    background-color: transparent;
}

.dropdown--lang .dropdown-toggle:hover,
.dropdown--lang .dropdown-toggle:focus {
    color: hsl(var(--gray-d-100));
}

.dropdown--lang .dropdown-toggle:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dropdown--lang .dropdown-toggle__flag {
    --size: 1.125em;
    width: var(--size);
    height: var(--size);
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.dropdown--lang .dropdown-toggle::after {
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-left: 0;
    border-radius: 6px;
    border-top: none;
    border-right: none;
    border-left: none;
    font-size: 1rem;
    color: hsl(var(--white) / 0.8);
}

.dropdown--lang .dropdown-toggle[aria-expanded="true"]::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown--lang .dropdown-menu {
    max-width: 5rem;
    overflow: hidden;
    padding: 0;
    border-radius: 6px;
    border: 1px solid hsl(var(--border-color) / 0.1);
    background-color: #212123;
}

.dropdown--lang .dropdown-item {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 120%;
    color: hsl(var(--white) / 0.8) !important;
    padding: 12px 16px;
}

.dropdown--lang .dropdown-item__flag {
    --size: 1.125em;
    width: var(--size);
    height: var(--size);
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.dropdown--lang .dropdown-item:hover,
.dropdown--lang .dropdown-item:focus {
    background: hsl(var(--base));
}

.dropdown--lang .dropdown-item:hover .dropdown-item__text,
.dropdown--lang .dropdown-item:focus .dropdown-item__text {
    color: transparent;
    background: hsl(var(--white));
    -webkit-background-clip: text;
    background-clip: text;
}

.dropdown--notification .dropdown-toggle .badge {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 100%;
    position: absolute;
    color: hsl(var(--white));
    background-color: hsl(var(--danger));
    padding: 3px 6px;
    top: 0;
    right: -15%;
    border-radius: 999px;
}

.dropdown--notification .dropdown-toggle::after {
    display: none;
}

@media screen and (max-width: 1199px) {
    .dropdown--notification .dropdown-toggle {
        --size: 40px;
    }
}

@media screen and (max-width: 424px) {
    .dropdown--notification .dropdown-toggle {
        --size: 32px;
    }
}

.dropdown--notification .dropdown-menu {
    max-width: 100%;
    min-width: 325px;
    max-height: 375px;
    padding: 0px;
    border-radius: 20px;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white));
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .dropdown--notification .dropdown-menu {
        min-width: 270px;
        max-height: 350px;
    }
}

@media screen and (max-width: 424px) {
    .dropdown--notification .dropdown-menu {
        min-width: 250px;
    }
}

@media screen and (max-width: 374px) {
    .dropdown--notification .dropdown-menu-end {
        right: -70px;
    }
}

.dropdown--notification .dropdown-menu.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dropdown--notification .dropdown-menu__header {
    padding: 16px;
    border-bottom: 1px solid hsl(var(--border-color));
}

.dropdown--notification .dropdown-menu__body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--black) / 0.05) hsl(var(--black) / 0.05);
}

.dropdown--notification .dropdown-menu__footer {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid hsl(var(--border-color));
}

.dropdown--notification .dropdown-menu__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 120%;
    color: hsl(var(--gray-d-400));
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .dropdown--notification .dropdown-menu__title {
        font-size: 1rem;
        line-height: 100%;
    }
}

.dropdown--notification .dropdown-menu__view-all {
    font-size: 1rem;
    font-weight: 600;
    line-height: 150%;
    color: hsl(var(--base));
}

.dropdown--notification .dropdown-menu__view-all:has(svg, i) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.dropdown--notification .dropdown-menu__view-all i {
    font-size: 1.125rem;
}

@media screen and (max-width: 1199px) {
    .dropdown--notification .dropdown-menu__view-all {
        font-size: 0.875rem;
    }
}

.dropdown--notification .dropdown-menu__view-all:hover,
.dropdown--notification .dropdown-menu__view-all:focus {
    outline: none;
    color: hsl(var(--base-d-200));
}

.dropdown--notification .dropdown-item {
    width: 100%;
    padding: 16px;
    white-space: wrap;
    background-color: transparent;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.dropdown--notification .dropdown-item:not(:last-child) {
    position: relative;
    z-index: 1;
    padding-bottom: 16px;
}

.dropdown--notification .dropdown-item:not(:last-child)::after {
    content: "";
    width: calc(100% - 24px);
    height: 1px;
    background-color: hsl(var(--border-color));
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .dropdown--notification .dropdown-item:not(:last-child) {
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
}

.dropdown--notification .dropdown-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 120%;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1199px) {
    .dropdown--notification .dropdown-item__title {
        font-size: 1rem;
        line-height: 100%;
    }
}

.dropdown--notification .dropdown-item__date {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 150%;
    text-align: right;
    color: hsl(var(--gray));
}

@media screen and (max-width: 1199px) {
    .dropdown--notification .dropdown-item__date {
        font-size: 0.75rem;
    }
}

.dropdown--notification .dropdown-item:hover,
.dropdown--notification .dropdown-item:focus {
    outline: none;
    color: hsl(var(--base));
    background-color: hsl(var(--base) / 0.1);
}

.dropdown--user {
    max-width: 250px;
}

.dropdown--user .dropdown-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 250px;
    background-color: hsl(var(--white) / 0.1);
    padding: 4px 12px 4px 4px;
}

@media screen and (max-width: 575px) {
    .dropdown--user .dropdown-toggle {
        gap: 0px;
        padding: 4px 8px 4px 4px;
    }
}

.dropdown--user .dropdown-toggle__thumb {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 575px) {
    .dropdown--user .dropdown-toggle__thumb {
        --size: 32px;
    }
}

.dropdown--user .dropdown-toggle__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (max-width: 575px) {
    .dropdown--user .dropdown-toggle__content {
        display: none;
    }
}

.dropdown--user .dropdown-toggle::after {
    content: "\f107";
    font-size: 0.875rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 16px;
    height: 16px;
    margin-left: 0;
    vertical-align: baseline;
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 6px;
    color: hsl(var(--body-color));
}

.dropdown--user .dropdown-toggle[aria-expanded="true"]::after {
    content: "\f106";
}

.dropdown--user .dropdown-info {
    text-align: left;
}

.dropdown--user .dropdown-info__title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
    color: hsl(var(--gray-d-500));
}

.dropdown--user .dropdown-info__subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 100%;
    color: hsl(var(--gray-d-100));
}

.dropdown--user .dropdown-info__title,
.dropdown--user .dropdown-info__subtitle {
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.dropdown--user .dropdown-menu {
    min-width: 8rem;
    padding: 0px;
    border: 1px solid hsl(var(--border-color));
    -webkit-box-shadow:
        0px 0px 4px 0px rgba(0, 0, 0, 0.04),
        0px 8px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow:
        0px 0px 4px 0px rgba(0, 0, 0, 0.04),
        0px 8px 16px 0px rgba(0, 0, 0, 0.08);
    background-color: hsl(var(--white));
    border-radius: 12px;
    overflow: hidden;
}

.dropdown--user .dropdown-menu__header {
    padding: 10px 16px;
    border-bottom: 1px solid hsl(var(--border-colorF));
    display: none;
}

@media screen and (max-width: 575px) {
    .dropdown--user .dropdown-menu__header {
        display: block;
    }
}

.dropdown--user .dropdown-item {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 140%;
    color: hsl(var(--gray));
    background-color: transparent;
    padding: 10px 16px;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

.dropdown--user .dropdown-item.logout {
    color: hsl(var(--danger));
}

.dropdown--user .dropdown-item.logout:hover,
.dropdown--user .dropdown-item.logout:focus {
    color: hsl(var(--danger-d-100));
}

.dropdown--user .dropdown-item:hover,
.dropdown--user .dropdown-item:focus {
    color: hsl(var(--gray-d-500));
}

/* ========================= Dropdown CSS End ========================= */
/* ========================= Form CSS Start =========================  */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

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

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

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

.form--label:not(:last-child) {
    margin-bottom: 8px;
}

.form--label.required {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 4px;
}

.form--label.required::after {
    content: "*";
    display: inline-block;
    color: hsl(var(--danger));
}

.form--group:not(:last-child) {
    margin-bottom: 16px;
}

.form--control,
.form--select {
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    border-radius: 6px;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white));
}

.form--control:focus,
.form--select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: hsl(var(--white) / 0.02);
}

.form--control:focus:not(:disabled),
.form--select:focus:not(:disabled) {
    border-color: hsl(var(--base)) !important;
}

.form--control:disabled,
.form--control[readonly],
.form--select:disabled,
.form--select[readonly] {
    background-color: hsl(var(--white));
}

.form--control:disabled,
.form--select:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.form--control {
    padding: 17px 18px;
    border-radius: 12px;
    background-color: hsl(var(--black) / 0.02);
    color: hsl(var(--heading-color)) !important;
}

.form--control::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 16px !important;
    color: hsl(var(--body-color));
    font-size: 40px;
}

.form--control::-moz-placeholder {
    font-weight: 400;
    font-size: 16px !important;
    color: hsl(var(--body-color));
    font-size: 40px;
}

.form--control:-ms-input-placeholder {
    font-weight: 400;
    font-size: 16px !important;
    color: hsl(var(--body-color));
    font-size: 40px;
}

.form--control::-ms-input-placeholder {
    font-weight: 400;
    font-size: 16px !important;
    color: hsl(var(--body-color));
    font-size: 40px;
}

.form--control::placeholder {
    font-weight: 400;
    font-size: 16px !important;
    color: hsl(var(--body-color));
    font-size: 40px;
}

.form--control:focus:not(:disabled):not([readonly])::-webkit-input-placeholder {
    color: hsl(var(--gray-d-300)) !important;
}

.form--control:focus:not(:disabled):not([readonly])::-moz-placeholder {
    color: hsl(var(--gray-d-300)) !important;
}

.form--control:focus:not(:disabled):not([readonly]):-ms-input-placeholder {
    color: hsl(var(--gray-d-300)) !important;
}

.form--control:focus:not(:disabled):not([readonly])::-ms-input-placeholder {
    color: hsl(var(--gray-d-300)) !important;
}

.form--control:focus:not(:disabled):not([readonly])::placeholder {
    color: hsl(var(--gray-d-300)) !important;
}

@media screen and (min-width: 576px) {
    .form--control.form-control--xl {
        padding: 19.5px 18px;
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 576px) {
    .form--control.form-control--lg {
        padding: 16.5px 18px;
        font-size: 1.125rem;
    }
}

.form--control.form-control--sm {
    font-size: 0.875rem;
    padding: 10.5px 18px;
}

.form--control[type="file"]::-webkit-file-upload-button {
    margin: -14px 14px -14px -20px;
    padding: 15px 15px 15px 20px;
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    padding-left: 25px !important;
    border-radius: 12px !important;
}

.form--control[type="file"]::file-selector-button {
    margin: -14px 14px -14px -20px;
    padding: 15px 15px 15px 20px;
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    padding-left: 25px !important;
    border-radius: 12px !important;
}

.form-control[type="file"] {
    overflow: hidden;
    padding-left: 24px !important;
}

@media screen and (min-width: 576px) {
    .form--control[type="file"].form-control--xl::-webkit-file-upload-button {
        margin: -20px 20px -20px -28px;
        padding: 21px 21px 21px 28px;
    }

    .form--control[type="file"].form-control--xl::file-selector-button {
        margin: -20px 20px -20px -28px;
        padding: 21px 21px 21px 28px;
    }
}

@media screen and (min-width: 576px) {
    .form--control[type="file"].form-control--lg::-webkit-file-upload-button {
        margin: -17px 17px -17px -24px;
        padding: 18px 18px 18px 24px;
    }

    .form--control[type="file"].form-control--lg::file-selector-button {
        margin: -17px 17px -17px -24px;
        padding: 18px 18px 18px 24px;
    }
}

@media screen and (min-width: 576px) {
    .form--control[type="file"].form-control--sm::-webkit-file-upload-button {
        margin: -11px 11px -11px -18px;
        padding: 12px 12px 12px 18px;
    }

    .form--control[type="file"].form-control--sm::file-selector-button {
        margin: -11px 11px -11px -18px;
        padding: 12px 12px 12px 18px;
    }
}

.form--control[type="file"]:hover:not(:disabled):not(
        [readonly]
    )::-webkit-file-upload-button {
    background-color: hsl(var(--base)) !important;
}

.form--control[type="file"]:hover:not(:disabled):not(
        [readonly]
    )::file-selector-button {
    background-color: hsl(var(--base)) !important;
}

textarea.form--control {
    resize: none;
    min-height: 160px;
}

.account-form .form--control {
    padding-left: 44px;
}

.form--select {
    padding: 15px 18px;
    color: hsl(var(--body-color));
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-position: right 18px center;
}

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

@media screen and (min-width: 576px) {
    .form--select.form-select--xl {
        padding: 21px 18px;
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 576px) {
    .form--select.form-select--lg {
        padding: 18px;
        font-size: 1.125rem;
    }
}

.form--select.form-select--sm {
    font-size: 0.875rem;
    padding: 12px 18px;
}

.form--select.selected,
.form--select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231d283a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    color: hsl(var(--gray-d-300));
    font-weight: 500;
}

.form--check {
    --size: 16px;
    --color: hsl(var(--base));
    margin-bottom: 0;
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.form--check .form-check-input {
    width: var(--size);
    height: var(--size);
    margin-top: 0;
    position: relative;
    border: 1px solid hsl(var(--border-color));
    background-color: transparent;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
}

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

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

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

.form--check .form-check-label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
    color: hsl(var(--gray));
}

.form--check .form-check-label a {
    font-size: 1rem;
    font-weight: 500;
    display: inline;
    color: var(--color);
}

.form--check .form-check-label a:hover,
.form--check .form-check-label a:focus {
    color: var(--color);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form--check-gradient {
    --color: var(--gradient);
}

.form--check-gradient .form-check-label a {
    color: transparent;
    background: var(--color);
    -webkit-background-clip: text;
    background-clip: text;
}

.form--check-base-two {
    --color: hsl(var(--base-two));
}

.form--check-primary {
    --color: hsl(var(--primary));
}

.form--check-secondary {
    --color: hsl(var(--secondary));
}

.form--check-success {
    --color: hsl(var(--success));
}

.form--check-danger {
    --color: hsl(var(--danger));
}

.form--check-warning {
    --color: hsl(var(--warning));
}

.form--check-info {
    --color: hsl(var(--info));
}

.form--switch {
    --width: 40px;
    --height: calc(var(--width) * 0.5);
    --offset: calc(var(--width) * 0.05);
    --color: hsl(var(--base));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    gap: 8px;
}

.form--switch .form-check-input {
    width: var(--width);
    height: var(--height);
    border: none;
    margin-top: 0px;
    border-radius: 999px;
    position: relative;
    background: hsl(var(--gray)) !important;
    cursor: pointer;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

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

.form--switch .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

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

.form--switch .form-check-label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
    color: hsl(var(--gray));
}

.form--switch .form-check-label a {
    font-size: 1rem;
    font-weight: 600;
    display: inline;
    color: var(--color);
}

.form--switch .form-check-label a:hover,
.form--switch .form-check-label a:focus {
    color: var(--color);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form--switch-gradient {
    --color: var(--gradient);
}

.form--switch-gradient .form-check-label a {
    color: transparent;
    background: var(--color);
    -webkit-background-clip: text;
    background-clip: text;
}

.form--switch-base {
    --color: hsl(var(--base));
}

.form--switch-base-two {
    --color: hsl(var(--base-two));
}

.form--switch-primary {
    --color: hsl(var(--primary));
}

.form--switch-success {
    --color: hsl(var(--success));
}

.form--switch-danger {
    --color: hsl(var(--danger));
}

.form--switch-warning {
    --color: hsl(var(--warning));
}

.form--switch-info {
    --color: hsl(var(--info));
}

.input--group {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--black) / 0.02);
    border-radius: 6px;
}

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

.input--group:focus-within .input-group-text {
    color: hsl(var(--gray-d-300));
}

.input--group .form-control.form--control {
    border: none;
    margin-left: 0 !important;
}

.input--group .input-group-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 120%;
    padding: 16px 22px;
    border: none;
    color: hsl(var(--body-color));
    background-color: transparent;
    padding: 0px 20px;
    margin-left: 0px !important;
}

.input--group .input-group-text:first-child {
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    border-right: 1px solid hsl(var(--border-color));
    padding: 0px 9px 0px 18px;
}

.input--group .input-group-text:last-child {
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
    border-left: 1px solid hsl(var(--border-color));
    padding: 0px 18px 0px 9px;
}

.input--group .btn {
    margin-top: -1px;
    margin-bottom: -1px;
}

.input--group .btn:first-child {
    margin-left: -1px;
}

.input--group .btn:last-child {
    margin-right: -1px;
}

.input--group:has([readonly]) .input-group-text,
.input--group:has(:disabled) .input-group-text {
    border-color: hsl(var(--border-color)) !important;
    background-color: hsl(var(--gray-two));
}

.input--group:has([readonly]) .form-control.form--control,
.input--group:has(:disabled) .form-control.form--control {
    border-color: hsl(var(--black) / 0.1);
}

.input--group:has(.form-control--sm) .input-group-text,
.input--group:has(.form-select--sm) .input-group-text {
    font-size: 0.875rem;
}

.input--group:has(.form-control--lg) .input-group-text,
.input--group:has(.form-select--lg) .input-group-text {
    font-size: 1.125rem;
}

.input--group:has(.form-control--xl) .input-group-text,
.input--group:has(.form-select--xl) .input-group-text {
    font-size: 1.25rem;
}

.input--group-copy .copy-btn.copied {
    color: hsl(var(--success));
}

.input--group-copy .copy-btn.copied i::before {
    content: "\f00c";
}

.input--group-copy .copy-btn i.las {
    font-size: 1.25rem;
}

@media screen and (max-width: 575px) {
    .input--group-copy .copy-btn i.las {
        font-size: 1.125rem;
    }
}

.input--group-password .input-group-btn {
    cursor: pointer;
}

.input--group-password .input-group-btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ========================= Form CSS End ===========================  */
.verification-box .account-body__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--base));
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    .verification-box .account-body__title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 424px) {
    .verification-box .account-body__title {
        font-size: 1.5rem;
    }
}

.verification-box .account-body__desc {
    font-weight: 500;
    color: #4b5563;
}

@media screen and (max-width: 424px) {
    .verification-box .account-body__desc {
        font-size: 1rem;
    }
}

.verification-box .verification-btn {
    margin-top: 20px;
}

.verification-wrapper__text {
    text-align: center;
    margin: 24px 0px;
}

.verification-wrapper__text .resend-code,
.verification-wrapper__text .verification-content-link {
    color: hsl(var(--heading-color));
    font-size: 1.125rem;
    font-weight: 500;
}

@media screen and (max-width: 424px) {
    .verification-wrapper__text .resend-code,
    .verification-wrapper__text .verification-content-link {
        font-size: 1rem;
    }
}

.verification-wrapper__text button {
    color: hsl(var(--base));
    font-size: 1.125rem;
    background-color: transparent;
    border: none;
}

@media screen and (max-width: 424px) {
    .verification-wrapper__text button {
        font-size: 1rem;
    }
}

.verification-wrapper__text .timeout {
    font-size: 1rem;
    font-style: italic;
    color: #4b5563;
}

.verification-wrapper .otp-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.verification-wrapper .otp-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 424px) {
    .verification-wrapper .otp-inputs {
        gap: 5px;
    }
}

.verification-wrapper .otp-input {
    width: 56px;
    height: 56px;
    font-size: 24px;
    text-align: center;
    border: 1px solid hsl(var(--border-color));
    border-radius: 12px;
    background: hsl(var(--white));
    color: hsl(var(--body-color));
    outline: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-weight: 700;
}

@media screen and (max-width: 575px) {
    .verification-wrapper .otp-input {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 460px) {
    .verification-wrapper .otp-input {
        width: 35px;
        height: 35px;
        font-size: 1.125rem;
    }
}

.verification-wrapper .otp-input:focus {
    border-color: hsl(var(--base));
    background: hsl(var(--white));
}

/* ================================= Modal Css Start =========================== */
.custom--modal {
    border: 0;
}

.modal {
    --bs-modal-zindex: 11111;
}

.custom--modal .btn-close {
    line-height: 1;
    border-radius: 4px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    position: relative;
    background-image: unset;
    border-radius: 50%;
    border: 1px solid hsl(var(--black) / 0.5);
    width: 14px;
    height: 14px;
    font-size: 1rem;
    color: hsl(var(--black) / 0.8);
    opacity: 1;
}

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

.custom--modal .btn-close::after {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.custom--modal .btn-close:hover {
    color: hsl(var(--danger-l-400));
    background: transparent !important;
}

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

.custom--modal .modal-header {
    border: 0;
    padding: 20px 25px;
    background-color: hsl(var(--black) / 0.05);
    color: hsl(var(--white));
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid hsl(var(--border-color));
}

@media screen and (max-width: 575px) {
    .custom--modal .modal-header {
        padding: 14px 16px;
    }
}

.custom--modal .modal-title {
    color: hsl(var(--heading-color));
    font-size: clamp(1.125rem, 1.0681rem + 0.2427vw, 1.25rem);
    font-weight: 700;
}

.custom--modal .modal-content {
    border-radius: 20px !important;
    border: 0;
}

.custom--modal .modal-body {
    padding: 40px;
}

@media screen and (max-width: 575px) {
    .custom--modal .modal-body {
        padding: 24px;
    }
}

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

.custom--modal .modal-footer {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    border-top: 1px solid hsl(var(--black) / 0.12);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* ================================= Modal Css End =========================== */

/* ========================= Modal CSS End =========================*/
/* ========================= Pagination CSS Start ========================= */
/* ================================= Pagination Css Start =========================== */
.pagination-wrapper {
    margin-top: 24px;
}

.pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.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 {
    border: 1px solid hsl(var(--black) / 0.15);
    margin: 0 5px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--body-color));
}

.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 {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ================================= Pagination Css End =========================== */
/* ========================= Pagination CSS End ========================= */
/* ================================= Table Css Start =========================== */
/* Table Content Css start */
@media screen and (max-width: 374px) {
    .customer {
        display: block;
        text-align: left;
    }
}

.customer__thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}

@media screen and (max-width: 374px) {
    .customer__thumb {
        margin-left: auto;
    }
}

.customer__content {
    width: calc(100% - 35px);
    padding-left: 15px;
    text-align: left;
}

@media screen and (max-width: 424px) {
    .customer__content {
        padding-left: 8px;
    }
}

@media screen and (max-width: 374px) {
    .customer__content {
        width: 100%;
        padding-left: 0px;
        padding-top: 5px;
    }
}

.customer__name {
    margin-bottom: 0;
    font-size: 12px;
    color: hsl(var(--black) / 0.7);
}

.action-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.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 Content Css end */
/* Table Css Start */
.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 10px;
}

.table thead tr th {
    padding: 16px 20px;
    color: hsl(var(--black) / 0.7);
    font-family: var(--heading-font);
    font-weight: 600;
    border-bottom: 0;
    max-width: 170px;
    font-size: 18px;
    border-bottom: 1px solid hsl(var(--black) / 0.06);
}

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

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

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

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

.table thead tr th:nth-child(2) {
    text-align: left;
}

.table tbody {
    border: 0 !important;
}

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

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

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

.table tbody tr td {
    vertical-align: middle;
    padding: 10px 15px;
    border-width: 1px;
    border: 0;
    font-family: var(--heading-font);
    color: hsl(var(--black) / 0.7);
    font-weight: 400;
    max-width: 170px;
    font-size: 16px;
}

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

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

.table tbody tr td:first-child {
    text-align: left;
    font-size: 14px;
}

.table tbody tr td:last-child {
    text-align: right;
}

@media screen and (max-width: 767px) {
    .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: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black) / 0.8);
        max-width: unset;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: hsl(var(--base) / 0.02) !important;
    --bs-table-accent-bg: none !important;
}

.table-striped > tbody > tr.empty-message-row:nth-of-type(odd) > * {
    background-color: transparent !important;
}

/* ================================= Table Css End =========================== */
/* ========================= Preload CSS Start ======================= */
.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--black));
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.preloader img {
    max-width: 500px;
}

/* ========================= Preload CSS End ========================= */
/* ======================= Header Start Here ======================= */
.header {
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 25px;
}

.header.fixed-header {
    position: fixed;
    top: 16px;
    -webkit-animation: slide-down 0.8s;
    animation: slide-down 0.8s;
}

.header.fixed-header .navbar {
    background: hsl(var(--white));
    padding: 12px 12px;
    box-shadow: 0 0.5px 0px 1px hsl(var(--black) / 0.05);
}

@media screen and (max-width: 1199px) {
    .header.fixed-header .navbar {
        background: hsl(var(--white));
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }
}

@media screen and (max-width: 1199px) {
    .header.fixed-header .dropdown-item,
    .header.fixed-header .nav-link {
        border-bottom-color: hsl(var(--border-color)) !important;
        color: hsl(var(--black)) !important;
    }

    .header.fixed-header .nav-item__icon i {
        color: hsl(var(--black));
    }
}

@media screen and (max-width: 1199px) {
    .header {
        max-height: 100vh;
        overflow-y: auto;
        position: absolute;
        top: 30px;
        left: 0;
        right: 0;
        z-index: 999;
    }

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

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

.header .navbar {
    -webkit-box-shadow: 0 0.5px 0px 1px rgba(255, 255, 255, 0.38);
    box-shadow: 0 0.5px 0px 1px rgba(255, 255, 255, 0.38);
    border-radius: 20px;
    padding: 0px;
    padding-inline: 10px;
    background-color: hsl(var(--white) / 0.05);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

@media screen and (max-width: 1199px) {
    .header .navbar {
        background: hsl(var(--white));
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }
}

.header .navbar .nav-item__icon {
    color: hsl(var(--white));
}

.header .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.header .navbar-brand.logo img {
    max-width: 170px;
    max-height: 40px;
}

.header .navbar-toggler.header-button {
    border-color: transparent;
    color: hsl(var(--black));
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    width: auto;
    font-size: 1.875rem;
}

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

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

@media screen and (min-width: 1200px) {
    .header .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header .nav-menu .nav-item {
        position: relative;
    }

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

    .header .nav-menu .nav-item:not(:last-child) {
        padding-right: 30px;
    }

    .header .nav-menu .nav-item:has(.dropdown-menu:hover) .nav-item__icon {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .header .nav-menu .nav-item .nav-link {
        font-weight: 700;
        color: hsl(var(--white)) !important;
        padding: 20px 0;
        position: relative;
        cursor: pointer;
        font-size: 1rem;
        position: relative;
    }

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

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

    .header .nav-menu .nav-item .nav-link .nav-item__icon {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        font-size: 13px;
        margin-left: 2px;
        color: hsl(var(--white));
    }

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

    .header .nav-menu .nav-item .nav-link:hover + :is(.dropdown-menu) {
        visibility: visible;
        opacity: 1;
        top: 100% !important;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    .header .nav-menu .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        top: 100%;
        left: 0;
        padding: 0 !important;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top center;
        transform-origin: top center;
        transition: 0.3s;
        overflow: hidden;
        border-radius: 0;
        min-width: 190px;
    }

    .header .nav-menu .nav-item .dropdown-menu:hover {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

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

    .header .nav-menu .nav-item .dropdown-menu__list:last-child {
        border-bottom: 3px solid hsl(var(--base));
    }

    .header .nav-menu .nav-item .dropdown-menu__link {
        padding: 7px 20px;
        font-weight: 500;
        font-size: 1rem;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header .nav-menu .nav-item .dropdown-menu__link:focus,
    .header .nav-menu .nav-item .dropdown-menu__link:hover {
        color: hsl(var(--white));
        background-color: hsl(var(--base));
    }

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

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

@media screen and (max-width: 1199px) {
    .header .nav-menu {
        margin-top: 20px;
    }

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

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

    .header .nav-menu .nav-item .nav-link {
        margin-bottom: 8px;
        padding: 10px 10px 10px 0 !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 !important;
        border-bottom: 1px solid hsl(var(--white) / 0.2);
        color: hsl(var(--white));
    }

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

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

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

    .header .nav-menu .nav-item .dropdown-menu {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 2px;
        width: 100%;
        margin: 0px !important;
        padding: 0 !important;
        border: 0;
        background-color: inherit;
        overflow: hidden;
    }

    .header .nav-menu .nav-item .dropdown-menu .dropdown-item {
        padding: 10px 0px;
        font-weight: 500;
        font-size: 1rem;
        color: hsl(var(--white));
        border-bottom: 1px solid hsl(var(--white) / 0.2);
        margin-left: 20px;
        color: hsl(var(--white));
    }

    .header .nav-menu .nav-item .dropdown-menu .dropdown-item:hover,
    .header .nav-menu .nav-item .dropdown-menu .dropdown-item:focus {
        background-color: transparent;
    }

    .header .nav-menu .login-list {
        display: none;
    }
}

.header.fixed-header {
    position: fixed;
    top: 16px;
    -webkit-animation: slide-down 0.8s;
    animation: slide-down 0.8s;
}

@media screen and (min-width: 1200px) {
    .header.fixed-header .nav-menu .nav-item .nav-link {
        color: hsl(var(--black)) !important;
    }

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

.header.fixed-header .header-outline-btn {
    color: hsl(var(--black)) !important;
}

.header.fixed-header .header-outline-btn:hover {
    color: hsl(var(--white)) !important;
}

.header .logo-light {
    display: none;
}

@media screen and (max-width: 1199px) {
    .header .logo-dark {
        display: none;
    }

    .header .logo-light {
        display: block;
    }
}

.header.fixed-header .logo-light {
    display: block;
}

.header.fixed-header .logo-dark {
    display: none;
}

.header-style-two .logo-light {
    display: block;
}

.header-style-two .logo-dark {
    display: none !important;
}

.header-style-two.fixed-header .navbar {
    background: hsl(var(--white));
    padding: 13px 12px;
    box-shadow: 0 0.5px 0px 1px hsl(var(--black) / 0.05);
}

.header.header-style-two .navbar {
    box-shadow: 0 0.5px 0px 1px hsl(var(--black) / 0.05);
}

@media screen and (min-width: 1200px) {
    .header.header-style-two .nav-menu .nav-item .nav-link {
        color: hsl(var(--neutral-900)) !important;
    }

    .header.header-style-two .nav-menu .nav-item .nav-link::before {
        background-color: hsl(var(--neutral-900)) !important;
    }

    .header.header-style-two .nav-menu .nav-item .nav-link .nav-item__icon {
        color: hsl(var(--neutral-900));
    }

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

    .header.header-style-two .header-outline-btn:hover {
        color: hsl(var(--white)) !important;
    }
}

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

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

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

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

.login-list {
    margin-left: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.login-list a {
    font-weight: 700;
}

.login-list a:not(.btn) {
    color: hsl(var(--white));
    position: relative;
}

.login-list a:not(.btn)::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background-color: hsl(var(--white));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.login-list a:hover::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
}

@media screen and (min-width: 1200px) {
    .action-nav {
        margin-left: 20px;
    }
}

.lang-dropdown .nav-item__lang {
    height: 20px;
    width: 27px;
}

.lang-dropdown .nav-item__lang img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.lang-dropdown .lang-dropdown__menu {
    min-width: 150px !important;
    border-radius: 0 0 8px 8px !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-block: 10px !important;
    background: hsl(var(--white)) !important;
}

@media screen and (max-width: 1199px) {
    .lang-dropdown .lang-dropdown__menu {
        border-radius: 8px !important;
    }
}

.lang-dropdown .lang-dropdown__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    width: 100%;
}

.lang-dropdown .lang-dropdown__list:hover {
    background-color: hsl(var(--base) / 0.1);
}

.lang-dropdown .lang-dropdown__list .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    color: hsl(var(--black));
}

.lang-dropdown .lang-dropdown__list img {
    height: 25px;
    width: 35px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1199px) {
    .header .navbar {
        padding: 12px 10px;
    }

    .navbar-collapse {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .navbar-collapse > * {
        width: 100%;
    }

    .nav-menu {
        margin-top: 0 !important;
    }

    .nav-menu:has(+ .action-nav) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .action-nav {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-block: 10px 14px;
    }

    .action-nav .nav-link {
        padding: 0 !important;
        gap: 10px;
    }

    .login-list {
        margin-left: auto;
        gap: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dropdown-item,
    .nav-link {
        border-bottom-color: hsl(var(--border-color)) !important;
        color: hsl(var(--black)) !important;
    }

    .nav-item__icon i {
        color: hsl(var(--black));
    }
}

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

@media screen and (max-width: 1199px) {
    .header-outline-btn {
        color: hsl(var(--base)) !important;
    }
}

/* ======================= Header Css End =========================== */
/* ========================= Header Top CSS Start ========================= */
.header-top {
    background-color: hsl(var(--black));
    border-bottom: 1px solid hsl(var(--white) / 0.2);
    padding: 10px 0px;
    position: relative;
}

.header-top .social-list.style-two .social-list__link flex-center {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
}

.top-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .top-header-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-list__item {
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
}

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

.contact-list__item:last-child::before {
    display: none;
}

.contact-list__item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 15px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: hsl(var(--white) / 0.4);
}

.contact-list__item-icon {
    font-size: 0.75rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.contact-list__link {
    color: hsl(var(--white));
    font-weight: 400;
    font-family: var(--body-font);
}

.contact-list__link:hover .contact-list__link-icon {
    color: hsl(var(--white));
}

.login-registration-list {
    margin: 0 -10px;
    padding-right: 20px;
}

@media screen and (max-width: 991px) {
    .login-registration-list {
        padding-right: 0;
    }
}

.login-registration-list__item {
    color: hsl(var(--white));
    padding: 0 10px;
    position: relative;
}

.login-registration-list__item:last-child::before {
    display: none;
}

.login-registration-list__item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 12px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: hsl(var(--white) / 0.5);
}

.login-registration-list__icon {
    color: hsl(var(--base));
    margin-right: 10px;
    font-size: 1rem;
}

.login-registration-list__link {
    color: hsl(var(--white));
    font-weight: 400;
    font-family: var(--body-font);
}

@media screen and (max-width: 575px) {
    .login-registration-list__link {
        font-size: 0.9375rem;
    }
}

.login-registration-list__link:hover {
    color: hsl(var(--base));
}

.login-registration-list__link:hover .login-registration-list__icon {
    color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .login-registration-list__link:hover {
        color: hsl(var(--base));
    }
}

.language-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.language-box .select {
    color: hsl(var(--white));
    background-color: transparent;
    border: 1px solid hsl(var(--white) / 0.4);
    padding: 5px 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 5px;
}

.language-box .select option {
    background-color: hsl(var(--black));
}

/* ========================= Header Top CSS End =========================== */
/* ============= Footer Start Here ======================= */
.footer-area {
    background-color: #212123;
    color: hsl(var(--white));
    margin-top: auto;
    padding-top: 190px;
    margin: 0px 12px 12px 12px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .footer-area {
        margin: 0px;
        border-radius: 0px;
    }
}

.foooter-bg-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #212123;
    background-blend-mode: luminosity;
}

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

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

.footer-item__title {
    color: hsl(var(--white));
    padding-bottom: 10px;
    margin-bottom: 8px;
    font-size: clamp(1.125rem, 1.0681rem + 0.2427vw, 1.25rem);
    font-weight: 500;
    line-height: 140%;
}

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

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

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

/* Footer List Item */
.footer-menu {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

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

.footer-menu__link {
    color: hsl(var(--neutral-300));
}

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

/* Footer Contact */
.footer-contact-menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 12px;
}

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

.footer-contact-menu__item-icon {
    width: 15px;
    color: hsl(var(--base));
    font-size: 1.25rem;
}

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

.footer-newsletter {
    margin-top: 80px;
}

.footer-newsletter__title {
    color: hsl(var(--neutral-100));
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
}

@media screen and (max-width: 991px) {
    .footer-newsletter__title {
        font-size: 42px;
    }
}

@media screen and (max-width: 767px) {
    .footer-newsletter__title {
        font-size: 30px;
    }
}

@media screen and (max-width: 575px) {
    .footer-newsletter__title {
        font-size: 25px;
    }
}

.footer-newsletter__from {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid hsl(var(--neutral-400));
    border-radius: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .footer-newsletter__from {
        margin-top: 20px;
    }
}

.footer-newsletter__from:focus-within {
    border: 1px solid hsl(var(--base));
    background-color: hsl(var(--white) / 0.1);
}

.footer-newsletter__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 60px;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}

.footer-newsletter__input input {
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    width: 100%;
    height: inherit;
    border: 0 !important;
    background-color: transparent;
    padding: 15px;
    color: hsl(var(--white));
    font-size: 18px;
}

.footer-newsletter__input input::-webkit-input-placeholder {
    color: hsl(var(--neutral-400));
    font-weight: 400;
}

.footer-newsletter__input input::-moz-placeholder {
    color: hsl(var(--neutral-400));
    font-weight: 400;
}

.footer-newsletter__input input:-ms-input-placeholder {
    color: hsl(var(--neutral-400));
    font-weight: 400;
}

.footer-newsletter__input input::-ms-input-placeholder {
    color: hsl(var(--neutral-400));
    font-weight: 400;
}

.footer-newsletter__input input::placeholder {
    color: hsl(var(--neutral-400));
    font-weight: 400;
}

.footer-newsletter__input input:focus {
    outline: 0;
}

.footer-newsletter__submit {
    padding: 8px;
    padding-left: 0;
}

.footer-menu__contact .item-link {
    display: flex;
    gap: 10px;
    color: hsl(var(--neutral-300));
    transition: all 0.3s ease;
}

.footer-menu__contact .item-link i {
    color: hsl(var(--neutral-300));
    font-size: 1.25rem;
    margin-top: 3px;
}

.footer-menu__contact .item-link:hover {
    color: hsl(var(--base));
}

.footer-menu__contact .item-link.address:hover {
    color: hsl(var(--white));
}

.bottom-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 80px;
}
@media screen and (max-width: 450px) {
    .bottom-footer__inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        margin-bottom: 40px;
    }
}

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

.bottom-footer .bottom-footer-text {
    color: hsl(var(--neutral-500));
}

.bottom-footer__logo img {
    opacity: 0.1;
}

/* =============Bottom Footer End Here ======================= */
/* ========================= Scroll To Top Start ===================== */
.scroll-top {
    --size: 48px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: inline-block;
    position: fixed;
    left: 48px;
    bottom: 72px;
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-box-shadow: inset 0 0 0 2px hsl(var(--base) / 0.5);
    box-shadow: inset 0 0 0 2px hsl(var(--base) / 0.5);
    border: none;
    background-color: hsl(var(--white) / 0.02);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.scroll-top::after {
    content: "\f062";
    position: absolute;
    inset: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.125rem;
    color: hsl(var(--base));
}

.scroll-top-progress path {
    fill: none;
    stroke: hsl(var(--base));
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: stroke-dashoffset 10ms linear;
    transition: stroke-dashoffset 10ms linear;
    stroke-dasharray: 307.919px, 307.919px;
    stroke-dashoffset: 133.505px;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

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

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ========================= Selection CSS End =========================== */
.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

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

.social-list__link {
    font-size: clamp(1.125rem, 0.9259rem + 0.8495vw, 1.5625rem);
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    color: hsl(var(--white));
}

.social-list__link.active,
.social-list__link:hover,
.social-list__link:focus {
    color: var(--base-50) !important;
    border-color: hsl(var(--base)) !important;
}

/* ========================= Social Auth CSS Start =================== */
.social-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.social-auth__btn {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: hsl(var(--gray));
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 140%;
    white-space: nowrap;
    padding: 11.5px 12px;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
}

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

.social-auth__btn img {
    --size: 24px;
    width: var(--size);
    height: var(--size);
    -o-object-fit: cover;
    object-fit: cover;
}

.social-auth__btn:hover,
.social-auth__btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: hsl(var(--black));
    border-color: hsl(var(--gray) / 0.25);
    background-color: hsl(var(--gray) / 0.05);
}

/* ========================= Social Auth CSS End ===================== */
/* ========================= Breadcrumb CSS Start ========================= */
.breadcrumb {
    position: relative;
    z-index: 1;
}

.breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.breadcrumb__item {
    padding: 0 5px;
    font-weight: 500;
    font-size: 1.125rem;
    color: hsl(var(--heading-color));
}

.breadcrumb__item span {
    color: hsl(var(--black));
}

.breadcrumb__item-text {
    color: hsl(var(--base));
}

.breadcrumb__link {
    color: hsl(var(--text-muted));
    font-weight: 500;
}

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

/* ========================= Breadcrumb CSS End =========================== */
/* ========================= Banner CSS Start ========================= */
.banner {
    position: relative;
    z-index: 1;
    padding: 150px 0 65px;
    border-radius: 52.424px;
    margin: 6px 12px;
    overflow: hidden;
}

.banner__bg {
    position: absolute;
    inset: 0;
    display: none;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.banner__bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media screen and (max-width: 767px) {
    .banner {
        border-radius: 0px;
        margin: 0px;
    }
}

.banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(40.24%, #010314),
            color-stop(122.82%, rgba(1, 3, 20, 0))
        ),
        radial-gradient(
            91.08% 66.05% at 50% 50%,
            rgba(0, 0, 0, 0) 37.41%,
            hsl(var(--base-d-100)) 69.27%,
            #fff 100%
        );
    background:
        linear-gradient(180deg, #010314 40.24%, rgba(1, 3, 20, 0) 122.82%),
        radial-gradient(
            91.08% 66.05% at 50% 50%,
            rgba(0, 0, 0, 0) 37.41%,
            hsl(var(--base-d-100)) 69.27%,
            #fff 100%
        );
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .banner::before {
        background:
            -webkit-gradient(
                linear,
                left top,
                left bottom,
                color-stop(40.24%, #010314),
                color-stop(122.82%, rgba(1, 3, 20, 0))
            ),
            radial-gradient(
                125.08% 64.05% at 50% 50%,
                rgba(0, 0, 0, 0) 37.41%,
                hsl(var(--base-d-100) / 0.9) 69.27%,
                #fff 100%
            );
        background:
            linear-gradient(180deg, #010314 40.24%, rgba(1, 3, 20, 0) 122.82%),
            radial-gradient(
                125.08% 64.05% at 50% 50%,
                rgba(0, 0, 0, 0) 37.41%,
                hsl(var(--base-d-100) / 0.9) 69.27%,
                #fff 100%
            );
    }
}

@media screen and (max-width: 424px) {
    .banner::before {
        background:
            -webkit-gradient(
                linear,
                left top,
                left bottom,
                color-stop(40.24%, #010314),
                color-stop(122.82%, rgba(1, 3, 20, 0))
            ),
            radial-gradient(
                290.08% 64.05% at 50% 50%,
                rgba(0, 0, 0, 0) 37.41%,
                hsl(var(--base-d-100) / 0.9) 69.27%,
                #fff 100%
            );
        background:
            linear-gradient(180deg, #010314 40.24%, rgba(1, 3, 20, 0) 122.82%),
            radial-gradient(
                290.08% 64.05% at 50% 50%,
                rgba(0, 0, 0, 0) 37.41%,
                hsl(var(--base-d-100) / 0.9) 69.27%,
                #fff 100%
            );
    }
}

.banner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-content__subtitle {
    -webkit-box-shadow:
        0 0 53.676px 0 hsl(var(--base-two)),
        0 0 17.892px 0 hsl(var(--base-two)),
        0 0 8.946px 0 hsl(var(--base-two)),
        0 0 2.556px 0 hsl(var(--base-two)),
        0 0 1.278px 0 hsl(var(--base-two));
    box-shadow:
        0 0 53.676px 0 hsl(var(--base-two)),
        0 0 17.892px 0 hsl(var(--base-two)),
        0 0 8.946px 0 hsl(var(--base-two)),
        0 0 2.556px 0 hsl(var(--base-two)),
        0 0 1.278px 0 hsl(var(--base-two));
    color: hsl(var(--white));
    font-size: 1.125rem;
    line-height: 160%;
    background-color: #09090b;
    border: 1px solid hsl(var(--base));
    margin-bottom: 15px;
    border-radius: 40px;
    padding: 5.5px 15px;
}

.banner-content__title {
    color: hsl(var(--white));
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 110%;
}

.banner-content__title span {
    font-weight: 800;
    font-style: italic;
    display: inline;
}

.banner-content__desc {
    max-width: 700px;
    font-size: 1.25rem;
    color: hsl(var(--white) / 0.8);
}

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

.banner-content__button {
    margin-top: 30px;
}

.banner-content__btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

@media screen and (max-width: 767px) {
    .banner-content__btn-group {
        margin-top: 24px;
        gap: 12px;
    }
}

.banner-content__sequre {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

@media screen and (max-width: 1199px) {
    .banner-content__sequre {
        gap: 15px 30px !important;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__sequre {
        margin-top: 24px;
    }
}

.banner-content__sequre .sequre-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: hsl(var(--white));
    position: relative;
}

.banner-content__sequre .sequre-item span {
    font-size: 1.25rem;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .banner-content__sequre .sequre-item span {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1499px) {
    .banner-content__sequre .sequre-item {
        font-size: 1rem;
    }
}

.banner-content__sequre .sequre-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 991px) {
    .banner__thumb {
        display: none;
    }
}

/* ========================= Banner CSS End =========================== */
/* ======================   Conversion Section End  ======================*/
.conversion-section {
    position: relative;
    border-radius: 30px 30px 0px 0px;
    overflow: hidden;
    margin: 12px;
    padding-top: 64px;
    z-index: 1;
}

.conversion-section__bg {
    --gPercent: 70%;
    position: absolute;
    inset: 0;
}

@media screen and (max-width: 991px) {
    .conversion-section__bg {
        --gPercent: 35%;
    }
}

.conversion-section__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 867px;
    height: var(--gPercent);
    width: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(250, 250, 250, 0)),
        to(#fafafa)
    );
    background: linear-gradient(
        180deg,
        rgba(250, 250, 250, 0) 0%,
        #fafafa 100%
    );
}

.conversion-section__bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: calc(100% - var(--gPercent));
    width: 100%;
    background: hsl(var(--neutral-50));
}

.conversion-section::before {
    content: "";
    width: 100%;
    height: 1531px;
    position: absolute;
    background-color: hsl(var(--base) / 0.15);
    top: 0px;
    left: 0px;
    background: radial-gradient(
        90.08% 68.05% at 50% 50%,
        #fafafa 37.41%,
        hsl(var(--base-d-100) / 0.8) 69.27%,
        #fff 100%
    );
    z-index: -2;
}

@media screen and (max-width: 991px) {
    .conversion-section::before {
        background: radial-gradient(
            110.08% 68.05% at 50% 50%,
            #fafafa 37.41%,
            hsl(var(--base-d-100) / 0.8) 69.27%,
            #fff 100%
        );
    }
}

@media screen and (max-width: 424px) {
    .conversion-section::before {
        background: radial-gradient(
            150.08% 68.05% at 50% 50%,
            #fafafa 37.41%,
            hsl(var(--base-d-100) / 0.8) 69.27%,
            #fff 100%
        );
    }
}

.conversion-section .section-heading__title {
    color: hsl(var(--white));
}

.conversion-wrapper {
    display: grid;
    gap: 24px;
}

@media (min-width: 992px) {
    .conversion-wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

.conversion-wrapper .conversion-item {
    --pd-gap: 32px;
    border-radius: 20px;
    border: 1px solid hsl(var(--white));
    background: hsl(var(--white) / 0.45);
    -webkit-backdrop-filter: blur(24.2999992371px);
    backdrop-filter: blur(24.2999992371px);
    padding: var(--pd-gap) 0px 0px var(--pd-gap);
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .conversion-wrapper .conversion-item {
        --pd-gap: 24px !important;
    }
}

.conversion-wrapper .conversion-item__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 100%;
}

@media screen and (max-width: 1399px) {
    .conversion-wrapper .conversion-item__title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1199px) {
    .conversion-wrapper .conversion-item__title {
        font-size: 1.5rem;
    }
}

.conversion-wrapper .conversion-item__desc {
    color: hsl(var(--text-muted));
    margin-top: 10px;
    line-height: 140%;
    font-weight: 500;
}

.conversion-wrapper .conversion-item__thumb img {
    mix-blend-mode: luminosity;
}

@media screen and (max-width: 991px) {
    .conversion-wrapper .conversion-item__content {
        margin-bottom: 24px;
    }
}

.conversion-wrapper .conversion-item:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--pd-gap);
    padding-bottom: 0px;
}

@media (min-width: 992px) {
    .conversion-wrapper .conversion-item:nth-child(1) {
        grid-row: span 2 / span 2;
        gap: 42px;
    }
}

.conversion-wrapper .conversion-item:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    max-height: 300px;
}

@media screen and (max-width: 424px) {
    .conversion-wrapper .conversion-item:nth-child(2) {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .conversion-wrapper .conversion-item:nth-child(2) {
        grid-column: span 2 / span 2;
    }
}

.conversion-wrapper .conversion-item:nth-child(2) .conversion-item__content {
    max-width: 260px;
}

@media screen and (max-width: 1399px) {
    .conversion-wrapper
        .conversion-item:nth-child(2)
        .conversion-item__content {
        max-width: 170px;
    }
}

@media screen and (max-width: 424px) {
    .conversion-wrapper
        .conversion-item:nth-child(2)
        .conversion-item__content {
        max-width: 100%;
    }
}

.conversion-wrapper .conversion-item:nth-child(3) {
    max-height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--pd-gap);
    padding-bottom: 0px;
}

@media (min-width: 992px) {
    .conversion-wrapper .conversion-item:nth-child(3) {
        grid-column-start: 2;
        grid-row-start: 2;
    }
}

.conversion-wrapper .conversion-item:nth-child(4) {
    max-height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--pd-gap);
    padding-bottom: 0px;
}

@media (min-width: 992px) {
    .conversion-wrapper .conversion-item:nth-child(4) {
        grid-column-start: 3;
        grid-row-start: 2;
    }
}

.conversion-wrapper .conversion-item:nth-child(5) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 300px;
}

@media (min-width: 992px) {
    .conversion-wrapper .conversion-item:nth-child(5) {
        grid-column: span 2 / span 2;
        grid-row-start: 3;
    }
}

.conversion-wrapper .conversion-item:nth-child(6) {
    max-height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--pd-gap);
    padding-bottom: 0px;
}

@media (min-width: 992px) {
    .conversion-wrapper .conversion-item:nth-child(6) {
        grid-column-start: 3;
        grid-row-start: 3;
    }
}

/* ======================   Conversion Section End  ======================*/
/* ======================  Why-chose-us Section Start  ======================*/
.chose-us-content {
    border-radius: 24px;
    padding-right: 50px;
}

@media screen and (max-width: 1199px) {
    .chose-us-content {
        padding-right: 0px;
    }
}

.section-heading__desc {
    font-size: 1.125rem;
    color: hsl(var(--text-muted));
}

.why-chose-us-section {
    background-color: hsl(var(--white));
}

.why-chose-us-section .section-heading {
    margin-bottom: 30px;
}

.chose-us__title {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.chose-us__desc {
    color: hsl(var(--text-muted));
    font-size: 1rem;
    line-height: 160%;
}

.chose-us-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    padding: 12px;
    border: 2px solid hsl(var(--neutral-100));
    border-radius: 12px;
    background-color: hsl(var(--white));
}

.chose-us-item:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
    .chose-us-item:not(:last-child) {
        margin-bottom: 18px;
    }
}

.chose-us-item__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    border: 1px solid hsl(var(--white));
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.chose-us-item:hover .chose-us-item__icon {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
}

.chose-us-thumb {
    border-radius: 24px;
    height: 100%;
    position: relative;
    background-color: hsl(var(--base) / 0.1);
}

@media screen and (max-width: 1399px) {
    .chose-us-thumb {
        border-radius: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .chose-us-thumb {
        border-radius: 15px;
    }
}

@media screen and (max-width: 991px) {
    .chose-us-thumb {
        border-radius: 10px;
    }
}

.chose-us-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}

.chose-us-thumb .chose-us-counter {
    position: absolute;
    width: 100%;
    bottom: 0px;
    padding: 32px;
}

@media screen and (max-width: 1199px) {
    .chose-us-thumb .chose-us-counter {
        padding: 24px !important;
    }
}

.chose-us-thumb .chose-us-counter__item {
    padding: 16px;
    border-radius: 20px;
    border: 2px solid hsl(var(--white));
    background: hsl(var(--white) / 0.8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    text-align: center;
}

@media screen and (max-width: 1199px) {
    .chose-us-thumb .chose-us-counter__item {
        padding: 12px !important;
    }
}

.chose-us-thumb .chose-us-counter__item-count {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(var(--neutral-900));
}

@media screen and (max-width: 1199px) {
    .chose-us-thumb .chose-us-counter__item-count {
        font-size: 1.5rem;
    }
}

.chose-us-thumb .chose-us-counter__item-text {
    font-size: 1.125rem;
    color: hsl(var(--neutral-600));
    font-weight: 500;
}

.chose-us-btn {
    margin-top: 48px;
}

/* ======================  Why-chose-us Section End  ======================*/
/* ======================  Payment Gateway Section Start  ======================*/
.payment-gateway__item {
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--white));
    border-radius: 20px;
    z-index: 1;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.payment-gateway__item__shape {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    -webkit-filter: blur(125px);
    filter: blur(125px);
    z-index: -1;
    background-color: hsl(var(--info));
}

.payment-gateway__item__content {
    padding: 40px 20px 0px 40px;
}

@media screen and (max-width: 991px) {
    .payment-gateway__item__content {
        padding: 30px 20px 0px 20px;
    }
}

.payment-gateway__item__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (max-width: 1399px) {
    .payment-gateway__item__title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 767px) {
    .payment-gateway__item__title {
        font-size: 1.5rem;
    }
}

.payment-gateway__item__desc {
    color: hsl(var(--text-muted));
    line-height: 160%;
}

.payment-gateway__item__thumb {
    margin-top: 60px;
    text-align: center;
}

/* ======================  Payment Gateway Section Start  ======================*/
/* =============================== Brand Section Css Start ======================= */
.brands-slider-wrapper {
    margin: 0px 8px;
    overflow: hidden;
}

.brands-item {
    width: 220px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .brands-item {
        width: 150px;
        height: 60px;
    }
}

.brands-item img {
    opacity: 0.5;
}

.brands-section__title {
    color: hsl(var(--text-muted));
    font-weight: 600;
    font-size: 1.5rem;
}

/* =============================== Brand Section Css End ======================= */
/* ======================  Counter Section Start  ======================*/
.counter-section__inner {
    position: relative;
    z-index: 1;
}

.counter-section__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-mask-image: url("../images/thumbs/counter-bg.png");
    mask-image: url("../images/thumbs/counter-bg.png");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: hsl(var(--base));
    z-index: -1;
}

.counter-section__inner .odometer-digit {
    padding-left: 3px;
}

.counter-section__inner__shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    z-index: -1;
    min-height: 400px;
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.counter-section .section-heading {
    max-width: 560px;
    margin-bottom: 132px;
}

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

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

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

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

@media screen and (max-width: 424px) {
    .counter-section .section-heading {
        margin-bottom: 40px;
    }
}

.counter-section .counter-item {
    border-radius: 24px;
    padding: 30px 10px;
    border: 1px solid hsl(var(--white));
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

@media screen and (max-width: 1499px) {
    .counter-section .counter-item {
        border-radius: 20px;
        padding: 28px 10px;
    }
}

@media screen and (max-width: 767px) {
    .counter-section .counter-item {
        border-radius: 15px;
        padding: 20px 10px;
    }
}

@media screen and (max-width: 575px) {
    .counter-section .counter-item {
        border-radius: 10px;
        padding: 10px;
    }
}

.counter-section .counter-item__number {
    color: hsl(var(--base));
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

@media screen and (max-width: 1499px) {
    .counter-section .counter-item__number {
        font-size: 60px;
    }
}

@media screen and (max-width: 767px) {
    .counter-section .counter-item__number {
        font-size: 50px;
    }
}

@media screen and (max-width: 575px) {
    .counter-section .counter-item__number {
        font-size: 40px;
    }
}

@media screen and (max-width: 424px) {
    .counter-section .counter-item__number {
        font-size: 30px;
    }
}

.counter-section .counter-item__desc {
    color: hsl(var(--neutral-900));
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: auto;
}

@media screen and (max-width: 767px) {
    .counter-section .counter-item__desc {
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .counter-section .counter-item__desc {
        font-size: 14px;
    }
}

/* ======================  Counter Section End  ======================*/
/* ======================  Payment Gateway Section Start  ======================*/
.payment-process-section__content {
    padding-right: 60px;
}

@media screen and (max-width: 1199px) {
    .payment-process-section__content {
        padding-right: 0px;
    }
}

.payment-process__thumb-wrapper {
    position: relative;
    z-index: 1;
}

.payment-process__thumb-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 328px;
    bottom: 0px;
    left: 0px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(250, 250, 250, 0)),
        color-stop(80.64%, #fafafa)
    );
    background: linear-gradient(
        180deg,
        rgba(250, 250, 250, 0) 0%,
        #fafafa 80.64%
    );
    z-index: 1;
}

.payment-process__thumb-wrapper .payment-process__text {
    padding: 24px;
    border-radius: 20px;
    border: 2px solid hsl(var(--white));
    background: hsl(var(--white) / 0.35);
    -webkit-box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 2;
}

.payment-process__thumb-wrapper .payment-process__text__desc {
    color: hsl(var(--heading-color) / 0.8);
    font-weight: 500;
    font-size: 1.25rem;
}

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

.payment-process-step__item {
    --pd-gap: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 48px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .payment-process-step__item {
        gap: 30px;
    }
}

@media screen and (max-width: 575px) {
    .payment-process-step__item {
        gap: 20px;
    }
}

.payment-process-step__item:not(:last-child) {
    margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
    .payment-process-step__item:not(:last-child) {
        margin-bottom: 24px;
    }
}

.payment-process-step__item:nth-child(2) {
    padding-left: var(--pd-gap);
}

@media screen and (max-width: 991px) {
    .payment-process-step__item:nth-child(2) {
        padding-left: 0px;
    }
}

.payment-process-step__item:nth-child(3) {
    padding-left: calc(var(--pd-gap) + 30px);
}

@media screen and (max-width: 991px) {
    .payment-process-step__item:nth-child(3) {
        padding-left: 0px;
    }
}

.payment-process-step__item:nth-child(4) {
    padding-left: calc(var(--pd-gap) + 30px);
}

@media screen and (max-width: 991px) {
    .payment-process-step__item:nth-child(4) {
        padding-left: 0px;
    }
}

.payment-process-step__item:nth-child(5) {
    padding-left: var(--pd-gap);
}

@media screen and (max-width: 991px) {
    .payment-process-step__item:nth-child(5) {
        padding-left: 0px;
    }
}

.payment-process-step__item__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: hsl(var(--neutral-50));
    border: 1px solid hsl(var(--base));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {
    .payment-process-step__item__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 575px) {
    .payment-process-step__item__icon {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}

.payment-process-step__item:hover .payment-process-step__item__icon {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.payment-process-step__item__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (max-width: 575px) {
    .payment-process-step__item__title {
        font-size: 1.25rem;
    }
}

.payment-process-step__item__desc {
    color: hsl(var(--text-muted));
    font-size: 1rem;
    line-height: 160%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* কয় লাইন দেখাবে */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.payment-process-step__wrapper {
    position: relative;
}

.payment-process-step__wrapper::after {
    content: "";
    position: absolute;
    width: 856px;
    height: 1115px;
    background-color: hsl(var(--base));
    right: 80%;
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
    top: -24%;
    z-index: -1;
    border-radius: 1115px;
    -webkit-mask-image: url(data:image/png;base64,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);
    mask-image: url(data:image/png;base64,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);
}

@media screen and (max-width: 1399px) {
    .payment-process-step__wrapper::after {
        right: 76%;
    }
}

@media screen and (max-width: 1199px) {
    .payment-process-step__wrapper::after {
        right: 76%;
        transform: rotate(10deg);
    }
}

@media screen and (max-width: 991px) {
    .payment-process-step__wrapper::after {
        display: none !important;
    }
}

/* ======================  Payment Gateway Section Start  ======================*/
.testimonials {
    position: relative;
}

.testimonials .testimonial-thumbs .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.testimonials .testimonial-thumbs .slick-slide {
    height: auto !important;
}

.testimonails-card {
    padding: 0 10px;
    height: 100%;
}

.testimonials-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.testimonials-heading .section-heading__title {
    max-width: 510px;
    margin-bottom: 0px;
}

.testimonials-heading-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media screen and (max-width: 1199px) {
    .testimonials-heading-review {
        gap: 20px;
    }
}

.testimonials-heading-review-item {
    text-align: center;
}

.testimonials-heading-review-item__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--text-muted));
}

.testimonials-heading-review-item__rating i {
    color: hsl(var(--warning));
}

.testimonials-heading-review-item__thumb {
    margin-bottom: 10px;
}

@media screen and (max-width: 1199px) {
    .testimonials-heading-review-item__rating__list:nth-child(1) {
        display: none;
    }
}

.testimonial-slider-wrapper {
    padding: 50px 0 0px;
}

.testimonial-slider-nav {
    margin-left: 80px;
    position: relative;
    z-index: 1;
}

.testimonial-slider-nav__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.testimonial-slider-nav__item:not(:last-child) {
    margin-bottom: 60px;
}

.testimonial-slider-nav__item.active {
    padding-left: 20px;
    opacity: 1;
}

.testimonial-slider-nav__item__thumb {
    --thumb-h: 56px;
    width: var(--thumb-h);
    height: var(--thumb-h);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid hsl(var(--base));
    background-color: hsl(var(--base-l-900));
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.testimonial-slider-nav__item__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-slider-nav__item__title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: hsl(var(--neutral-900));
}

.testimonial-slider-nav__item__meta {
    font-size: 1rem;
    color: hsl(var(--text-muted));
}

.testimonial-slider-wrapper {
    position: relative;
    z-index: 1;
}

.testimonial-slider-wrapper::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    background-color: hsl(var(--base));
    left: -8%;
    top: -19%;
    z-index: -1;
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    border-radius: 50%;
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKQAAAHoCAYAAADHWETiAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABrOSURBVHgB7d17kFxlmQbw5zvdPTMJISTcQSI3ywIhiYIFLAIicosIcsmAucxM90wYNVtaZW1trWXVVmW39q+tdatWFpUxmZ7MJIElCIIXriIKyIKikGQhikLCJQgBciOZS3efd99vyGAuk0z3zOlzvnPO86sau2fS+MfMU+/7fe/X5zRQF+KJiAFRjeoWmuZmyUyfDu/4LlSWwPggqoKHOlm92lSOPx6Vp+cgp+Fs0KrJikljCiUknZ2Sy2bRuHkzhjSoQyA6gBCrlph8Ho3vvYdcYyMGGUwaTeht1LbvYxvQtNVD5dRT0b9kCdeX9DeRreu0jU9+/300TtmOwa6fml0gQoSBtOxO/MgcplYEmS1lbLEbIVCqObHz1WBOamrCobkc+ru7zQ5QajkzivmwWnpo2jKIt1kt08m52WBLixyilfIw38eunh6zFZQqTg6rlyyR7KZNmNbfj8mvvYZNjz1myqBUcPr0pL1dDtVKeYR+7ejtNe+CEs/54zx7yjM0hCNEcIgO1F/t6jIlUGLF5nxZg3mYBvNoY7C1WDSbQYkUqzc82Gqp68oT7PNJk/A6q2XyxPIdOLoTP1rbt23jby1bZt4DJUZs3xJmz8SnTMHHMhls37YNb3JumQyxfo+iHaY3NOA4DeXh2srX8x1E8ZeIN83OmyfHaCg/Mhl4s2uFeRMUW4l5F/fX50jjjmNwermM919/HRs4TI+nxF1WoBuek/XhiGnTsPaWW8wgKFYSeZ3LwoVyXFZwQlMGm37Qa94AxUZiL7zK56VJh+iz7Wiop8dsAMVCoq8EtKHUzc7HUMLkioc1GswBkNNScWmqXVd6Ho7fsgVr7ruPbwB2WWqulf56QY56H5ip88qX77iDLdxVqbp4314qMaUJ55QEb6xYYf4Mck7q7iZhQ3nYZHyiVAI2bsLznFe6JbW3N2ltlY/rLnzGrl34jR459oOckOr77RQKcoqUcGrDZDzT1WW2gSKX+htA6Tn4kU1NOM8rYf0yrisjV7e7n8XF7bebd3I5PFrJ4mM6HjodFCneIm83e2sX3eicryc77+gA/TlQJBjIPdhLJMr9ONc+z07C07xEInwM5Ci0dZ+Z83BKyccv+vrMTlBoUr+GHI2GcJ1v8ErW4FJ7Jw1QaFghD0JnlbOywKl6svMQK2U4GMgxtLXJqdpGzvGyeJBXONYfA1mFjg453PdxSbmMZ7RSvgqqGwaySjaUUsalurb8g46FXgLVBQNZg8WLZUp/P67SWeULGsq1oMAxkDWyd2STCr7oA39avtw8CwoUAzkONpSo4Br4+GN3n/kdKDAM5Djtvnfltfp0vbbv34ICwcH4ONmb83sefqzrydM7WuUcUCBYISdoeE0puB5lrC/2madBE8JABmDBApnakMUNFcH63l7zFGjcGMiA2FDmMpira6AXuxnKceMaMiArV5rtpQruEuCM9lb5O9C4MJABsqEcquBO/a2e2TZfzgbVjIEMmA1ldifu9LL4dH6BzATVhIGsg67VZluuCXeYLC7I5xnKWjCQdWIvqx0Ywt16mnPhonlyDKgqDGQd3X67eStbwo/8BixkKKvDQNbZUg1lWfBwOYcbO5vlMNBBcQ4ZEnu86BucJwa9/JTbA2OFDMmyXvOMhnENKviyvZEqaFQMZIi0Mj7mGWw0gnkgckW+Ra5vb5c5oP2wQkYhg59r6z6lUJBLQHthICNgb74/UMIqqeDstjYeMe6JgYzIqlVmy1AZSzMGV3d2ynGgYQxkhGwo7RioPISvzJ8v00EMZNSKRfNyRQfnjTl81d7/HCnHQDpg+XLzpIbyhSmTkUfKMZCO6O0193oCo0Pza5FiDKRDtvejCB8zOzrkIqQUA+kQ+/EkmRxu9cu4uLVVPoIUYiAdY2/5J2Xco3+Ym+0NrpAyDKSDelaatV4WT1dKaEHKMJCO6u4294uP/kKrzEWKMJAO2zWIPhjMTtNltQykw+wmR48Xb9PTnKt0k3MEUoCBdNzKleZ1H/ilnnn/g/1wJyQcAxkDepLzC/1LPV8axE1IOAYyJnKb8RN9mKGt+1IkGAMZE10/Nbv0vPtWbd2XJXk9yUDGiJ53vwvBwxrKbyV1PclAxkyx1zyiD7+vDCGRb8JgIGMo14h7dRR0VhIvf2AgY6iry+wqlfFdz+DmznlyJBKEgYyp4Y+4q+CeciM6kSAMZIwV+8yDIjC6607MNd4MZMzpevI2bd03dMyXE5EADGTM6XryHRjc5Tfga0kYBTGQCdDTYx4wFWwuDaAZMcdAJkR2Er6vlfKzOgo6AzHGQCaEHQXpbPL7RrA4zq2bgUwQ+yGguuveWCrF911BDGTC+MCtup78XFxbNwOZMDow31kG/lv/sN9oaZFDEDMMZAL12ttH+3gla/BFxAwDmVAVoFuAaxa1yMmIEQYyobR1v61/3TvKGSxCjDCQCaa77p/YP3B7m1yDmGAgE65UwX/pKGi+bnCORgwwkAlnW7d4uC+TwVcQAwxkClQqsPeePKW1VWbBcQxkCtjZpG/wn/ZmA67PJhnIlNANzlpdS76lrft6OIyBTJFsA77j+bjM5Y9KZiBTZOlS85YveNhvxNfgKAYyZXYO4B5t3ae2L5TZcBADmTKrV5v3TQX/IRkshoMYyBTqXmGe14edeoJzAxzDQKaUVsnlYtDW3CxT4BAGMqVslRTgySmT4FSVZCBTbPJO3KoPc/J5ORaOYCBT7Ht2g+PhASMowBEMZMo17cRdEFyo59yfggMYyJSzVVI8FDUIzlRJIhTaZLULVZIVkoZlzPD9JjsQMQaShi3tMY/bx46OaKskA0kf0mF5d6UU7UVhDCR9qLjC/N4moq1NrkJEGEjaiyljmSe4GRFhIGkvtkrqGfebhVaJ5K4XDCTtR9eSP9RkRHIzfQaS9jO8lgQ2RVElGUgalS9aJU34VZKBpFEtX26eNYK/hv1pYQwkHVDF4DYNyFcRIgaSDshWSfvY3iKfRkgYSDoobdurfC/cKkl0UPk2uT+sKskKSWPSkKzQYXkoNxdgIGlsGdynSTmtvV2OR50xkDSm7m6zQ3ys9MtoQZ0xkFQVL4s+HZRfolXyUNQRA0lVsVUSgkdRQSvqiIGk6nl4VKS+bZuBpKrZz1LUxKxvWyCfR50wkFQTAW7V9WRd2zZRTQp5eaa1Vc5BHbBCUu189GpwLkUdMJBUM5PFcs/g0nqMgBhIqtnwoNzgGa2UeQSMgaRxqfi4W0dAgbdtBpLGZfgzuYEdhYKciwAxkDRuuo58xATcthlIGrfBEu72gU8EublhIGncVq40243Bi1LBXASEgaSJqaCoa8nLQeSKfJs8n8/LeQgAKyRNnEHRSDBVkoGkCcuWcJc+BLKOZCBpwpauNK9D8EIQbZuBpEB4Hh7So8RmTBADSYEY0LatI6DLFyyQqZgABpICYWeS+vBCzsMVmAAGkgIjRqukhxsxAQwkBaZUwoMGOGMibZuBpMDYtu0LnmrIjL9KMpAUKA3UUm3dV2KcGEgK1GAF/zeRts1AUqB277afyuVwE8aBgaTgCR7UIfm42jYDSYEbquB+GMwYT9tmIClwu9+4+5rutuegRgwk1Ydt2wbno0YMJNXFUBl36MMXUCMGkupiuG0D6woFqalKMpBUN3pq8xvdbddUJRlIqhuTwZO6lqy5bRPVTSEvf9a2PaPa17NCUn2JziRr2NwwkFRXYrRt+wwkOaJhJ+4XYGZzsxxWzesZSKqrrtVmm4Zs7eTJOLOa1zOQVHe7xz9XVfNaBpLqTteRT3geZlbzWgaS6q6xEet0HXlmZxXrSAaS6q6ry2yzx4iDk3HBWK9lICkUxuBnRhhIckUF6zSUYwaSKDT5Ntk41jqSFZJCY+eRY60jGUgKje/r+Edw4cFew0BSaDRsT8Bg1hivIQpHdhLWQjCzs/PA60gGkkIzPI/0sLHcf+BTGwaSQqUnNk9UgNkH+ncGkkKlw/G1Oo9khSQ3lHw8rm37QhC5opCXNw60sWGFpNAZYE1pYPQqyUBS6MRgjaZy1I0NA0lReFy326MOyBlICp03iLUyxokNUajyrbIpn5dp+/6cFZIioaOfNRnsv7FhICkSdqft+zhx358zkBQJu9PWUO63jmQgKRKVCtYIA0muaGrCRu3bJ4HIFfk2+WPHfNlrHckKSZGxGxs07N22GUiK0saKv3fbZiApMrrTfn7fnTYDSZEpl7Vle3u/yYKBpMhks7rTFnBTQ27o6TFb7WNHx9922gwkRUvwqinhw3ePM5AULYPnfINPjnzLQFKkdKf9qoaSLZucsUH2mEUykBQprzx8fc2Hs0gGkiJlGmF32tNB5IpCmwyNPGeFpOgJNo7MIhlIipzutDf6Qx9sbBhIcsEG44EVkhwh2CbA8CWxDCS5YIN+nWSfMJAUOQNsByskOUO0QgrXkOQIr0EDadiyyRGVCrZhd8smcoKe1pTtIyskuWL4tIaBJDfoLFJb93QGktxgsNVUcBgDSa4Y3mkzkOQUBpJcsUHPs09mIMkJIjDGwGcgyQmGFZJcxECSUxhIcoNgg7ZtntSQWxhIcoIRbNVNDY8OyQ1+Ftu0ZU9jIMkZOosUBpKcwkCSM/SkxoDIFYU24dEhOcUwkOQSbmrIHbrL5qaG3KGbGgaSnMI1JLmDg3FyirZsBpKcwpZNbmEgyRkc+5BT7Fk2A0lOyOflJK2QrzCQ5AyPg3FyDQNJzvC5qSFXmApOtHevYCDJHdxlk0u0Y7NlkyPM8KcwbGUgyRUMJDnE4DAwkOSQabqIZCDJLQwkueIkO4fMgsgFuoYUg22skOSKacZgCyskuUEwTQfjrJDkjGmZDLaAyAUjH0/Mlk2Ry+dlmu6w7Ye4c+xD0fPKOFF0KD78HEQRK5nhU5oN9jkDSZHL7n6nj33OQFLkdNzzUR2Mb7TPGUiKnA7Ep4MVklyhFXKW/s/z9jkDSZHzdr/1bPdzomhphTzJa/hgl00UOT2lGRp5zgpJkerokBO1RG4c+Z6BpEiV9ZTGGAaS3DFNZ5BbR75hIClSWh1n68PzI98zkBQpI8MzSLZscoZ969mGkW8YSIrarIrBmpFvGEiKTGen2LtVoKfHcFND0Rsc3HtDYzGQFKUPz7BHMJAUGc++y2eP9ePunxFFZrZn2LLJEfad4sb/2wySKFKFNunf92eskBSJfF4uHHmX+J4YSIqE+eCOua/u+3MGkiKhZ9gX6Rry8X1/zkBSJOyFXVkPz+37cwaSIiE+ZpWBtfv+nIGk0LW2yixdQ27b8wx7BANJoctk8FHt2WtG+zcGkkInlf2PDEcwkBQ+gwvF4Nej/RNvWEqhM7rDzu1khSQH6AnNTB35bOlabbaN9u8MJIVKd9cnYpRxzwgGksIluEC/Hj/QPzOQFLYL4R+4QhKFxl7UVWiT7Qd7DSskhabcj5lykHZtMZAUnoyuHzH6uGcEA0mh8XVDUxH87GCvYSApTDMnDRx8Q8OTGgpFR5t8Rgfirx5oID6CFZJCoWfXM7VlPzHW6xhICoX4uEpDyUCSIzzMbNzFQJID2nT9aN+QO9b60WIgqe40ZFfpceG6Kl9LVGeCM3zv4PNHolB0Nsth+TZ5udrXs0JSXQ01wa4fx9zMjGAgqa6Mhzmasp9X+3oGkurtfGPwZLUvZiCpbnTcc4Z9LBbNa9X+Nwwk1Y2G6zP6cH+N/w1RfQhqWz8S1U2hIDMKbfISasQKSfVyvkHt1ZGBpLqQCm7Unv0AasRAUuAWLJCpOuo5f7BS/bhnBANJgWvM4koxeGDlSrO91v+WgaTA6e76Sk9qG/eMYCApcLZdi4enMA68yIsCVWiRK7REriv2VH86sycGkgKllfFKH7gT48SWTYGxu2sN1NxcGb/BODGQFJimHK7Q3fVDS1ea1zFObNkUmIrgCvi1D8P3xApJgVi0QE7Qo8LLSz4exAQwkBSISgbniWD1eIbhe2IgKRA6DJ/rmYlVR6JA2Hbd3iZVX8h1MKyQNGHlDApaIcd1MrMvBpImzuAyTVIRAeDYhyZEjwrP1QXkjmLRvIAAsELShBiDG3yDbgSEgaRxa22Vj+jJzPXlMp5GQNiyadw8wbk6DL975QSOCvf7/wTROJkMvqHD8B8hQAwkjcvuzYwU+0xg7dpiIGl8MrjOCL6LgDGQVLPhzYzgujLwDALGQFLNdCd8jrbru3t7zRsIGANJNdNRz2JNznLUAQNJNcnn5Vp92NTTY9ajDhhIqonxca1ncA+IotbeLscX2uRh1BErJFWvjL/3gT7UEQNJVbHVUYBrdNzzC9QRA0lVkQq+BIN76zHq2RPfXEHVEXzJZNGOOsuAaAztbXKNVkcUe8x9qDO2bKrGV3Xccy9CwJZNB9Wm1dG3g/A+8zuEgBWSDko7daeGpO6tmmhM+Ra5utAqoX6sMFs2HZAeEV5tPPwARFHTtePZekz4E4SMFZJGZQQ366lMF4iitrs6hjLm2Rd32bQf3Vkv0pOZH4IoaoWFclY+Lz9GRFghaS+SRYewOpILtDJ+QeeOdyNCrJD0IV072uq4FBFiIGmYnsp8AXporWfWNX/GdZAYSBrmeWjXMPwbIsbBOKG9Veb4gpd6es0fEDEGMuWam2WK6LRHe+U34AC27JQ79BDM1d3MH3p6zF/hAAYyxXTMc6y26rligrlhfRAYyBQzglatjne5Uh0tBjKlFs2TY/Thk/o1oQ/LDBoDmVKVBvyTtupel6ojpVR7m1xeyMtKOIgVMoUqghZTxr/DQbxRQMrozrpFh8/vd/cZJ2+pxwqZIvPsRkaw0OTqeweziWAgU6QxhwU66ulbutS8BaIoFVrlUv3qgeN4lp0SxsMCH3ByZ70nbmpSIN8i8/VEZmfPcuN8ILmGTLiWFjnaGHy+0Xe/OloMZMJlMvi2BvLeH/SZtxEDDGSCFVrkEh3zTOlebmJz9zIGMqGGW3UGX674+DZihIFMqFwGNxng0b6YtGpKsPZW+VyhTW5DDLFCJkyhIEfpiOfGso9/RgwxkAljfNyoD79kq6bI5fNycb5VbkWMsUImxHCrFszVnfUSxBgDmRAiuMEIHisWzWYQRamjTS7SXfUtSABWyJjr7JQjfYPrsQv/igRgIGOuNIivCPDr4upktGq+HzLGdAB+nXxwC71IbzIaJFbImOqcJ0eKwYUDZcTyROZAGMgY0nXj5FIDvqVD8Ltvv928gwRhy46hUglf0ur4+2KfeQIJwwoZM/mFchl8nNXQgMg+uqOeWCFjpLVVjjAG1wwM4V+Ky80uJBArZIxkPPyjHg/em7R145541WFMFFrlJn3YXuxNzohnNKyQMTB8bYzB7Fwj/gcJxzWk4zo65HC/jEsqgu8Uu5K5btwTK6TDbBjLZXxT/0qP9vaad5ECrJAO08o4V4ffT+mO+lGkBCuko+yHGZkMDo/6o97CxkA6aFGrzPKBc3Tm2IWUYSAd09Gs60ZgngZy6bJl5j2kDNeQDpk/X6b7OSw2Hh7oLZo3kEKskA7J5XCt/kV+WyyaXyGlGEhH2I/qsI8axgeRYgykA9pb5AIBzj75ZNyOlDOgSBXmyymSRfNQGV2rVpktSDlWyAjZTYyGsWVgCH0M4wcYyIjYMDZksShj8Mgdd5hNoGEc+0Qgn5cmTzBfPDy7rGieBH2IgYxCBdfr4PuVnhSdUVeLLTtk9maiOviWtJ1RV4uBDFGhRT6rv/HZYuDkB1+6gC07JC0aRg3iJ3Xe2NPTYwZAo2KFDMHChTJbd9Oz9Le9XMO4FXRADGSdLZonxzRkcKn+pvsYxrExkHVkP5+63IgbvBxWMIzV4RqyThYskKk6+L6+4uMRfj519RjIOhgOYwPmyRCe6F1p/gSqGgMZsN2V8cvlMp7tW2nWgmrCNWSAhsOYwY1GsLavz/wOVDO+/SwgNoy5DObqkeCLvb3mKdC4sEIGYHebvkF/my8wjBPDm01NUHu7HKq/xOvFw3od7fwvaELYsifAhhEVXKdrxvXLes0zoAljIMfJhtEv4VrtMbYy/hYUCK4hx2HxYpni+7haT2BeZBiDxQpZIxvG/p24WnfTf1q+3DwLChQ3NTVY3CxTBg2+aHysK/aa50GBY4Wskr1Xo5RxaVnwnI52eBxYJ6yQVfjafJleAj6vo53ntE2/BKobVsgxFApyilbGczINeCiNdyMLGwN5EPm8nOZ5ON0Y/IphDAcDeQD5BTLTZHCKrhkf6eszO0GhYCBHUVgoZ0kWR1cqeJxhDBcDuYfOTskNDOBTGcGU3CQ83tVlSqBQMZC7DX/k7wDON1ls7u7mjDEqDCQ+CGNlCBf5Bq8Wi+YFUGRSH0j7Cas5g/P6S1i3apXZCIpUqq+psTNGXS+e5jXgiVXLzTZQ5FJbITWMn/B9HNfYiKe6UvAZgnGRukBefLFkT56BsyUD09CAZ7mTdkuqWra9UaiIHgPmsHnpUvMiyDmpqZDaoo+SEk5DGa/13GE2gJyUigppP+nArhczDXiue4XZAXJWoiukXS+eeipO0zA2aKt+gfdldF9iA9nSIocYgzNyPt5btsL8GRQLiQxke7scXy7jhIYSNi69nXcei5NEBdK26BkzMMPzcPjUqVh3yy1mEBQriQnknDnSeMzh+LhksWvjRmx87DFTBsVOIgJp71Q7aRKOHRrC2ytWmDdBsRXrQDY3S0ZPW47L5TB95078cfVqMwSKtdgGUsM4acoUnJzJYPu2bXhTw1gBxV4sA6kt+kitjMc07sLrXav5Lp0kiVUg7SUGuk78SKUCMzCAN9iikyc2gdQWfXhjI47Skc47vb3mXVAiOR/IJUvEW78exzY1oUG//SuP/5LN6UDa4z99ODqbxfsnnoh3lywxPijRnAykrYp/+QuO1KdNulbcrGvFflAqOHezqW/qOOe1bbqDbsTgSSfh7e99j+/oThNnKqQdcpfLmHbIIWjQFr2Fa8V0ciKQdq0ogqn6tXPFCuwwxggolSINpF0rbtiAqZmd8J57GTuefZbtOe0iCaSImBtvRNOkSZis45x+XoZKI0IPpF0r6sOUo4DK0WdgF0c5tKcQAymmsxOTdOOSefll9PP9ijSaEAKpQTwb2U3HIactunznnShx00IHUudAimluRs4+W70aumFhECkSNoiSOftsydmdNIiiI+aDEDKIVLv/B1ZNZBPx+YXoAAAAAElFTkSuQmCC);
    mask-image: url(data:image/png;base64,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);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

@media screen and (max-width: 1399px) {
    .testimonial-slider-wrapper::after {
        left: -9.4%;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-slider-wrapper::after {
        left: -11.4%;
        -webkit-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@media screen and (max-width: 991px) {
    .testimonial-slider-wrapper::after {
        left: -14.4%;
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@media screen and (max-width: 991px) {
    .testimonial-slider-wrapper::after {
        display: none !important;
    }
}

.testimonial-slider-content__box-item {
    max-width: 700px;
}

.testimonial-slider-content__box-item .title {
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (max-width: 1199px) {
    .testimonial-slider-content__box-item .title {
        font-size: 1.5rem;
    }
}

.testimonial-slider-content__box-item .desc {
    color: hsl(var(--heading-color));
    font-size: 1.125rem;
    line-height: 160%;
}

.testimonials .testimonial-slider-nav .slick-slide {
    padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
    .testimonials .testimonial-slider-nav .slick-slide {
        padding-bottom: 40px;
    }
}

.testimonial-slider-nav .slick-list {
    padding: 0 !important;
}

.testimonials .testimonial-slider-nav .slick-slide.slick-current {
    -webkit-transform: translateX(32px);
    transform: translateX(32px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media screen and (max-width: 991px) {
    .testimonials .testimonial-slider-nav .slick-slide.slick-current {
        -webkit-transform: translateX(0px);
        transform: translateX(0px) !important;
    }
}

/* ================================ Testimonails Section Css End ============================= */
/* ======================  Faq Section Start  ======================*/
section.faq-section .section-heading {
    margin-bottom: 40px;
}

.more-question {
    margin-top: 40px;
    -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.01) inset;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.01) inset;
    background: hsl(var(--white) / 0.35);
    padding: 24px;
    border-radius: 20px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

@media screen and (max-width: 767px) {
    .more-question {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        margin-top: 30px;
        padding: 16px;
        border-radius: 15px;
    }
}

.more-question__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 767px) {
    .more-question__content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.more-question__desc {
    color: hsl(var(--neutral-600));
}

.more-question__title {
    color: hsl(var(--neutral-900));
    font-weight: 600;
    margin-bottom: 8px;
}

/* ======================  Faq Section End  ======================*/
/* ======================  Cta one Section Start  ======================*/
.cta-section {
    margin-bottom: -120px;
    position: relative;
    z-index: 2;
}

.cta-section__inner {
    background: var(--base-900);
    border-radius: 24px;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 991px) {
    .cta-section__inner {
        border-radius: 16px;
    }
}

@media screen and (max-width: 767px) {
    .cta-section__inner {
        border-radius: 12px;
    }
}

.cta-section__inner * {
    color: hsl(var(--white));
}

.cta-section__thumb {
    height: 100%;
    position: relative;
    margin-top: -48px;
    padding-right: 21px;
}

@media screen and (max-width: 1399px) {
    .cta-section__thumb {
        padding-right: 32px;
        margin-top: 0px !important;
    }
}

.cta-section__content {
    padding: 63px;
    padding-right: 0;
}

@media screen and (max-width: 1199px) {
    .cta-section__content {
        padding: 40px !important;
    }
}

@media screen and (max-width: 991px) {
    .cta-section__content {
        padding: 30px !important;
    }
}

@media screen and (max-width: 767px) {
    .cta-section__content {
        padding: 20px !important;
    }
}

.cta-section__title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.1;
}

@media screen and (max-width: 1399px) {
    .cta-section__title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 575px) {
    .cta-section__title {
        font-size: 2rem;
    }
}

.cta-section__desc {
    max-width: 570px;
    color: hsl(var(--neutral-200));
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
    .cta-section__desc {
        line-height: 1.4;
    }
}

.cta-section .cta-button {
    background-color: hsl(var(--white));
    color: hsl(var(--base)) !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.cta-section .cta-button:hover {
    background-color: color-mix(
        in srgb,
        hsl(var(--white)) 95%,
        hsl(var(--base))
    );
}

.cta-section .cta-button i {
    color: inherit !important;
}

.cta-section__shape {
    position: absolute;
    z-index: -1;
}

.cta-two__section {
    position: relative;
    background-color: #09090b;
    z-index: 1;
}

.cta-two__section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(
        107.13% 140% at 50% 50%,
        rgba(0, 0, 0, 0) 37.41%,
        hsl(var(--base-d-600)) 69.27%,
        hsl(var(--white)) 100%
    );
}

.cta-two__section .cta-two__content {
    max-width: 530px;
}

.cta-two__section .section-heading__desc {
    color: hsl(var(--neutral-300));
}

/* ======================  Cta two Section Start  ======================*/
/* ================================= Blog Section Css Start Here ============================= */
section.blog .section-heading {
    margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
    section.blog .blog-item {
        max-width: calc(50% - 12px);
    }
}

.blog-item__list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

@media screen and (max-width: 991px) {
    .blog-item__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .blog-item__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.blog-item {
    border-radius: 8px;
    overflow: hidden;
    grid-column-start: span 8;
    grid-column-end: span 12;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 767px) {
    .blog-item {
        min-width: 100%;
    }
}

.blog-item:first-child {
    grid-column: span 8 / span 8;
    grid-row: span 2 / span 2;
}

.blog-item:nth-child(2) {
    grid-column: span 4 / span 4;
    grid-column-start: 9;
}

.blog-item:nth-child(3) {
    grid-column: span 4 / span 4;
    grid-column-start: 9;
    grid-row-start: 2;
}

.blog-item:hover .blog-item__thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item__thumb {
    overflow: hidden;
    border-radius: 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 1199px) {
    .blog-item__thumb {
        border-radius: 18px;
    }
}

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

.blog-item__thumb img {
    border-radius: inherit;
}

.blog-item__thumb-link {
    width: 100%;
    height: 100%;
}

.blog-item__thumb-link img {
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    height: 100%;
    width: 100%;
}

.blog-item__date {
    display: inline-block;
    font-size: clamp(0.875rem, 0.8181rem + 0.2427vw, 1rem);
    font-weight: 500;
    color: hsl(var(--muted));
}

.blog-item__title {
    margin-top: 11px;
    font-size: clamp(1.125rem, 0.9543rem + 0.7282vw, 1.5rem);
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.border-effect {
    display: inline !important;
    width: 100%;
    background-repeat: no-repeat;
    background-position-y: -2px;
    background-image: linear-gradient(
        transparent calc(100% - 1px),
        currentColor 1px
    );
    -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-size: 0 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.border-effect:hover {
    background-image: linear-gradient(
        transparent calc(100% - 1px),
        currentColor 1px
    );
    background-size: 100% 100%;
}

/* ================================= Blog Section Css End Here ================================= */
/* ===========================  How it work Section Start Here ========================= */
.how-work {
    position: relative;
    z-index: -1;
}

.projectTimeline_progress {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 575px) {
    .projectTimeline_progress {
        display: none !important;
    }
}

.projectTimeline_progress-line-cover {
    background-color: transparent;
    width: 100%;
    height: 50vh;
    position: absolute;
    top: -50vh;
}

.projectTimeline_progress-line-cover {
    background-color: hsl(var(--neutral-50));
    width: 100%;
    height: 50vh;
    position: absolute;
    top: -50vh;
    z-index: 1;
}

.projectTimeline_progress-line {
    width: 8px;
    height: 50vh;
    margin-top: -52vh;
    position: sticky;
    top: 0;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(hsl(var(--base))),
        to(hsl(var(--base-two)))
    );
    background: linear-gradient(
        180deg,
        hsl(var(--base)) 0%,
        hsl(var(--base-two)) 100%
    );
    border-radius: 20px;
}

.projectTimeline_line {
    background-color: hsl(var(--white));
    width: 8px;
    height: 100%;
}

.how-work__item {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {
    .how-work__item {
        gap: 80px;
    }
}

@media screen and (max-width: 767px) {
    .how-work__item {
        gap: 50px;
    }
}

@media screen and (max-width: 575px) {
    .how-work__item {
        display: block;
    }
}

.how-work__item:not(:last-child) {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .how-work__item:not(:last-child) {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 575px) {
    .how-work__item:not(:last-child) {
        margin-bottom: 24px;
    }
}

.how-work__item:nth-child(odd) .how-work__thumb {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.how-work__item:nth-child(odd) .how-work__content {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-left: 145px;
}

@media screen and (max-width: 1199px) {
    .how-work__item:nth-child(odd) .how-work__content {
        margin-left: 0px;
    }
}

.how-work__content {
    max-width: 455px;
}

.how-work__content .count {
    font-size: 20px;
    font-weight: 500;
    color: hsl(var(--heading-color));
    margin-bottom: 15px;
}

.how-work__title {
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 2rem;
}

@media screen and (max-width: 1199px) {
    .how-work__title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 991px) {
    .how-work__title {
        font-size: 1.5rem;
    }
}

.how-work__desc {
    font-size: 1rem;
    color: hsl(var(--text-muted));
    line-height: 1.6;
    font-weight: 400;
}

.how-work__thumb {
    border-radius: 9999px;
    border: 1px solid hsl(var(--white));
    background: #e9e9e9;
    -webkit-box-shadow:
        0 0 2.93px 0 rgba(0, 0, 0, 0.04),
        0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    box-shadow:
        0 0 2.93px 0 rgba(0, 0, 0, 0.04),
        0 5.861px 11.721px 0 rgba(0, 0, 0, 0.08);
    padding: 27px 24px;
    text-align: center;
}

@media screen and (max-width: 1199px) {
    .how-work__thumb {
        padding: 20px 16px;
    }
}

@media screen and (max-width: 767px) {
    .how-work__thumb {
        padding: 15px 12px;
    }
}

.how-work__thumb__img {
    background: hsl(var(--white));
    border-radius: inherit;
    height: 145px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .how-work__thumb__img {
        height: 130px;
    }
}

@media screen and (max-width: 991px) {
    .how-work__thumb__img {
        height: 110px;
    }
}

@media screen and (max-width: 575px) {
    .how-work__thumb__img {
        height: 150px;
    }
}

@media screen and (max-width: 575px) {
    .how-work__thumb {
        height: 100%;
        margin-bottom: 30px;
    }
}

/* ===========================  How it work Section End Here ========================= */
/* ======================  Developer Section Start  ======================*/
.developer-code__wrapper .developer-code__thumb {
    z-index: -1;
    position: absolute;
    right: 165px;
}

@media screen and (max-width: 1399px) {
    .developer-code__wrapper .developer-code__thumb {
        right: 0px;
        top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .developer-code__wrapper .developer-code__thumb {
        display: none;
    }
}

.developer-code__box__tab__list {
    border-radius: 284.091px;
    border: 1.965px solid hsl(var(--white));
    padding: 9px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
    box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
}

.developer-code__box__tab__list .nav-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.developer-code__box__tab__list .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 7.955px 72.182px 8.5px 70.455px;
    border-radius: 30px;
    color: hsl(var(--text-muted)) !important;
    font-size: 1.25rem;
    font-weight: 500;
    width: 100%;
}

.developer-code__box__tab__list .nav-link.active {
    -webkit-box-shadow:
        0 0 4.545px 0 rgba(0, 0, 0, 0.04),
        0 4.545px 9.091px 0 rgba(0, 0, 0, 0.06);
    box-shadow:
        0 0 4.545px 0 rgba(0, 0, 0, 0.04),
        0 4.545px 9.091px 0 rgba(0, 0, 0, 0.06);
    background: hsl(var(--white));
    color: hsl(var(--heading-color)) !important;
}

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

.developer-code__box__tab {
    max-width: 740px;
}

.developer-code__box__tab__content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 13.637px 13.636px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 13.635px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    border-radius: 22.727px;
    border: 2px solid hsl(var(--white));
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
    box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
}

.developer-code__box__tab__content-box__top {
    width: 100%;
}

.copy-code__wrapper {
    background: hsl(var(--white));
    padding: 5px 16px !important;
    border-radius: 18px;
    border: 1px solid hsl(var(--border-color) / 0.55);
    width: 100%;
}

.security-body__code {
    border-radius: 5px;
    height: 100%;
    width: 100%;
    display: block;
    color: #90a1b9;
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.copy-code__wrapper .copy-url {
    color: #90a1b9 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 12px 0px;
    border: none !important;
}

.copy-code__wrapper .copy-url:hover {
    color: hsl(var(--white)) !important;
}

.copy-code__wrapper .copy-url:active {
    border: none !important;
}

.developer-code__box__tab__content-box__bottom {
    background-color: hsl(var(--white));
    border-radius: 18px;
    padding: 32px;
    height: 571.591px;
    width: 100%;
    overflow-y: auto;
}

@media screen and (max-width: 575px) {
    .developer-code__box__tab__content-box__bottom {
        padding: 24px;
    }
}

/* Thin scrollbar */
.developer-code__box__tab__content-box__bottom::-webkit-scrollbar {
    width: 6px;
}

.developer-code__box__tab__content-box__bottom::-webkit-scrollbar-track {
    background: transparent;
}

.developer-code__box__tab__content-box__bottom::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
}

.developer-code__box__tab__content-box__bottom::-webkit-scrollbar-thumb:hover {
    background-color: #ddd;
}

.developer-code__box__tab__content-box__bottom pre {
    color: hsl(var(--text-muted));
    font-size: 0.9375rem;
    font-weight: 400;
}

.developer-code__box__tab__content-box__bottom pre {
    overflow: auto;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

/* Chrome, Edge, Safari */
.developer-code__box__tab__content-box__bottom pre::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.developer-code__box__tab__content-box__bottom pre::-webkit-scrollbar-track {
    background: transparent;
}

.developer-code__box__tab__content-box__bottom pre::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
}

.developer-code__box__tab__content-box__bottom
    pre::-webkit-scrollbar-thumb:hover {
    background-color: #ddd !important;
}

/* ======================  Developer Section Start  ======================*/
/* ========================= Select2 CSS Start ======================== */
.select2-wrapper {
    --select2-min-height: 48px;
    --select2-arrow-size: 16px;
    --select2-font-size: 16px;
    --select2-padding-y: 11px;
    --select2-padding-x: 18px;
    --select2-border-radius: 12px;
    --select2-border-color: hsl(var(--border-color));
    --select2-border-color-focus: hsl(var(--base));
    --select2-bg-color: hsl(var(--white));
    --select2-color: hsl(var(--text-muted));
    --select2-color-placeholder: hsl(var(--body-color));
    --select2-dropdown-bg-color: hsl(var(--white));
    --select2-dropdown-border-radius: var(--select2-border-radius);
    --select2-dropdown-padding-y: 12px;
    --select2-dropdown-padding-x: var(--select2-dropdown-padding-y);
    --select2-dropdown-field-padding-y: 7px;
    --select2-dropdown-field-padding-x: calc(
        var(--select2-dropdown-field-padding-y) * 1.5
    );
    --select2-dropdown-field-radius: var(--select2-border-radius);
    --select2-dropdown-field-color: hsl(var(--gray-d-300));
    --select2-dropdown-field-bg-color: transparent;
    position: relative;
}

@media screen and (min-width: 576px) {
    .select2-wrapper:has(.form-select--xl) {
        --select2-min-height: 64px;
        --select2-arrow-size: 20px;
        --select2-font-size: 1.25rem;
        --select2-padding-y: 16px;
        --select2-dropdown-field-padding-y: 12px;
    }
}

@media screen and (min-width: 576px) {
    .select2-wrapper:has(.form-select--lg) {
        --select2-min-height: 56px;
        --select2-arrow-size: 18px;
        --select2-font-size: 1.125rem;
        --select2-padding-y: 13.5px;
        --select2-dropdown-field-padding-y: 9.5px;
    }
}

.select2-wrapper:has(.form-select--sm) {
    --select2-min-height: 40px;
    --select2-arrow-size: 14px;
    --select2-font-size: 0.875rem;
    --select2-padding-y: 7px;
    --select2-dropdown-field-padding-y: 6.5px;
}

.selection,
.select2-container {
    width: 100% !important;
    min-width: 136px;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    padding: var(--select2-padding-y) var(--select2-padding-x);
    height: auto;
    background-color: var(--select2-bg-color);
    border: 1px solid var(--select2-border-color);
    border-radius: var(--select2-border-radius);
}

.select2-container .select2-selection--multiple {
    padding-top: calc(var(--select2-padding-y) - 2px);
    padding-bottom: calc(var(--select2-padding-y) - 2px);
}

.select2-container--disabled .select2-selection--single,
.select2-container--disabled .select2-selection--multiple {
    opacity: 0.65;
    pointer-events: none;
    background-color: var(--select2-bg-color) !important;
}

.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--open.select2-container--below .select2-selection--multiple {
    border-top-left-radius: var(--select2-dropdown-border-radius);
    border-top-right-radius: var(--select2-dropdown-border-radius);
}

.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--open.select2-container--above .select2-selection--multiple {
    border-bottom-left-radius: var(--select2-dropdown-border-radius);
    border-bottom-right-radius: var(--select2-dropdown-border-radius);
}

.select2-container .select2-selection--single {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6px;
}

.select2-container--focus:not(.select2-container--disabled)
    .select2-selection--single,
.select2-container--focus:not(.select2-container--disabled)
    .select2-selection--multiple,
.select2-container--open .select2-selection--single,
.select2-container--open .select2-selection--multiple {
    border-color: var(--select2-border-color-focus) !important;
    outline: none;
}

.select2-selection--single .select2-selection__rendered {
    font-size: var(--select2-font-size);
    font-weight: 500;
    color: var(--select2-color) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    line-height: 100% !important;
    white-space: nowrap;
}

.select2-selection__placeholder {
    color: var(--select2-color-placeholder) !important;
}

.select2-container--focus:not(.select2-container--disabled)
    .select2-selection__placeholder,
.select2-container--open .select2-selection__placeholder {
    color: var(--select2-color) !important;
}

.select2-selection--single .select2-selection__arrow {
    width: auto !important;
    height: auto !important;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
}

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

.select2-selection--single .select2-selection__arrow::after {
    content: "\f107";
    font-size: var(--select2-arrow-size);
    font-family: "Line Awesome Free";
    font-weight: 900;
    color: var(--select2-color-placeholder);
}

.select2-selection--single[aria-expanded="true"]
    .select2-selection__arrow::after {
    content: "\f106";
}

.select2-container--focus:not(.select2-container--disabled)
    .select2-selection--single
    .select2-selection__arrow::after,
.select2-container--open
    .select2-selection--single
    .select2-selection__arrow::after,
.select2-container--selected
    .select2-selection--single
    .select2-selection__arrow::after {
    color: var(--select2-color) !important;
}

.select2-dropdown {
    overflow: hidden;
    border-color: var(--select2-border-color) !important;
    background-color: hsl(var(--white));
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.select2-container--open .select2-dropdown {
    border-color: hsl(var(--base)) !important;
}

.select2-container--open .select2-dropdown.select2-dropdown--below {
    border-bottom-left-radius: var(--select2-dropdown-border-radius);
    border-bottom-right-radius: var(--select2-dropdown-border-radius);
}

.select2-container--open .select2-dropdown.select2-dropdown--above {
    border-top-left-radius: var(--select2-dropdown-border-radius);
    border-top-right-radius: var(--select2-dropdown-border-radius);
}

.select2-search--dropdown {
    padding: var(--select2-dropdown-padding-y) var(--select2-dropdown-padding-y);
}

.select2-search--dropdown .select2-search__field {
    font-size: var(--select2-font-size);
    border-color: var(--select2-border-color) !important;
    border-radius: var(--select2-dropdown-field-radius);
    padding: var(--select2-dropdown-field-padding-y)
        var(--select2-dropdown-field-padding-x);
    color: var(--select2-dropdown-field-color);
    background-color: var(--select2-dropdown-field-bg-color);
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--select2-border-color-focus) !important;
    outline: none;
}

.select2-container--default .select2-results > .select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--white) / 0.1) hsl(var(--white) / 0.05);
}

.select2-results__option--selectable {
    font-size: var(--select2-font-size);
    font-weight: 500;
    line-height: 100%;
    color: var(--select2-color) !important;
    padding: var(--select2-dropdown-padding-y) var(--select2-dropdown-padding-x);
}

.select2-results__option--selectable.select2-results__option--selected {
    background-color: hsl(var(--white) / 0.05) !important;
}

.select2-results__option--selectable.select2-results__option--highlighted {
    color: hsl(var(--white)) !important;
    background-color: hsl(var(--base)) !important;
}

.select2-results__message {
    color: var(--select2-color);
    font-size: var(--select2-font-size);
    font-weight: 500;
    line-height: 100%;
    text-align: center;
}

.select2-selection--multiple {
    min-height: var(--select2-min-height) !important;
}

.select2-selection--multiple:has(.select2-selection__choice) {
    padding-top: calc(var(--select2-padding-y) - 8px);
    padding-left: calc(var(--select2-padding-x) - 8px);
}

.select2-selection--multiple .select2-search--inline .select2-search__field {
    height: calc(var(--select2-min-height) / 2) !important;
    margin-top: 0 !important;
}

.select2-selection--multiple .select2-selection__choice {
    font-size: 14px;
    font-weight: 500;
    background-color: var(--select2-bg-color) !important;
    border-color: var(--select2-border-color) !important;
    color: var(--select2-color) !important;
    padding: 0px 6px !important;
    border-radius: 250px !important;
    margin-top: 8px !important;
    margin-left: 8px !important;
}

.select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px !important;
}

.select2-selection--multiple .select2-selection__choice__remove {
    border-right-color: var(--select2-border-color) !important;
    color: var(--select2-color) !important;
}

.select2-selection--multiple .select2-selection__choice__remove:hover {
    color: var(--select2-color) !important;
    background-color: var(--select2-bg-color) !important;
}

.select2-selection--multiple .select2-search--inline .select2-search__field {
    color: var(--select2-color);
}

/* ========================= Select2 CSS End ========================== */
/* ========================= Slick Slider CSS Start ========================= */
.slick-slider {
    --slick-slide-gap: 12px;
    margin-inline: calc(var(--slick-slide-gap) * -1);
}

.slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-slider .slick-slide {
    height: auto;
    padding-inline: var(--slick-slide-gap);
}

.slick-slider .slick-slide > div {
    height: 100%;
}

/* ========================= Slick Slider CSS End =========================== */
/* ========================= Range Slider CSS Start =========================== */
.custom--range__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}

.custom--range__content label {
    width: 40%;
}

.custom--range__content input {
    width: 60%;
    text-align: right;
}

.custom--range input {
    border: 0;
    color: hsl(var(--body-color));
    font-weight: 500;
}

.custom--range #slider-range {
    height: 5px;
    border: 0;
    background: hsl(var(--base) / 0.2);
}

.custom--range #slider-range .ui-widget-header {
    background-color: hsl(var(--base));
}

.custom--range #slider-range span:focus {
    background-color: hsl(var(--base));
}

.custom--range #slider-range .ui-slider-handle {
    width: 15px !important;
    height: 15px !important;
    background-color: hsl(var(--base)) !important;
    border: 2px solid hsl(var(--white)) !important;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ========================= Range Slider CSS End ============================= */
/* ========================= Account CSS Start ========================= */
.account {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.account-logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
    margin-inline: auto;
    margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
    .account-logo {
        margin-bottom: 16px;
    }
}

.account-logo img {
    max-width: 176px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 1199px) {
    .account-logo img {
        max-width: 150px;
    }
}

@media screen and (max-width: 424px) {
    .account-logo img {
        max-width: 130px;
    }
}

.account-heading__title {
    color: hsl(var(--base));
    margin-bottom: 8px;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .account-heading__title {
        text-align: center;
    }
}

.account-heading__subtitle {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
    color: hsl(var(--gray));
}

.account-divider {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.account-divider::before,
.account-divider::after {
    content: "";
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    height: 1px;
    display: inline-block;
    background-color: hsl(var(--border-color));
}

.account-divider span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
    color: hsl(var(--gray));
    white-space: nowrap;
}

.account-form__extra {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    margin-top: 20px;
}

.account-form__forgot-link {
    text-align: right;
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    color: hsl(var(--danger));
}

.account-form__forgot-link:focus {
    outline: none;
    color: hsl(var(--danger-d-100));
}

.account-info {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    color: hsl(var(--gray));
}

.account-info a {
    color: hsl(var(--base));
    font-weight: 500;
}

.account-thumb,
.account-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.account-thumb {
    width: 61.14583333vw;
}

@media screen and (max-width: 1399px) {
    .account-thumb {
        width: 55vw;
    }
}

@media screen and (max-width: 1199px) {
    .account-thumb {
        width: 50vw;
    }
}

@media screen and (max-width: 991px) {
    .account-thumb {
        display: none;
    }
}

.account-thumb__bottom {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px 16px;
}

.account-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 36px 72px;
}

@media screen and (max-width: 1399px) {
    .account-content {
        padding: 32px 64px;
    }
}

@media screen and (max-width: 1199px) {
    .account-content {
        padding: 32px;
    }
}

@media screen and (max-width: 575px) {
    .account-content {
        padding: 24px 10px;
    }
}

.account-header,
.account-body {
    max-width: 600px;
}

.account-header:not(:last-child) {
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .account-header:not(:last-child) {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 575px) {
    .account-header:not(:last-child) {
        margin-bottom: 24px;
    }
}

.account-body > *:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
    .account-body > *:not(:last-child) {
        margin-bottom: 16px;
    }
}

/* ========================= Account CSS End =========================== */
.login-tab {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding: 8px !important;
    border-radius: 12px !important;
    background-color: hsl(var(--black) / 0.06) !important;
    border-top: 2px solid hsl(var(--white));
    border-bottom: 2px solid hsl(var(--white));
    -webkit-box-shadow:
        0px 6.66px 13.32px rgba(0, 0, 0, 0.08),
        0px 0px 3.33px rgba(0, 0, 0, 0.04);
    box-shadow:
        0px 6.66px 13.32px rgba(0, 0, 0, 0.08),
        0px 0px 3.33px rgba(0, 0, 0, 0.04);
}

.login-tab__button {
    font-size: 18px;
    font-weight: 500;
    padding: 12px;
    width: 100%;
    background-color: transparent;
    color: hsl(var(--text-muted)) !important;
    text-align: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.login-tab__button:hover {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.login-tab__button.active {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.form-group {
    position: relative;
}

.form--label {
    margin-bottom: 4px;
    font-size: 1rem;
    color: hsl(var(--neutral-800));
    font-weight: 400;
}

.input__icon {
    position: absolute;
    left: 13px;
    top: 47px;
    z-index: 1;
}

.account-body {
    background-color: hsl(var(--white));
    padding: 32px;
    border-radius: 32px;
    position: relative;
    z-index: 1;
    margin: 10px;
}

@media screen and (max-width: 424px) {
    .account-body {
        padding: 24px 16px;
    }
}

.account-body::after {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    z-index: -1;
    background-color: hsl(var(--white) / 0.02);
    border-radius: 40px;
    border-top: 2px solid hsl(var(--white));
    border-bottom: 2px solid hsl(var(--white));
    -webkit-box-shadow:
        0px 5.68px 11.36px hsl(var(--black) / 0.08),
        0px 0px 2.84px hsl(var(--black) / 0.04);
    box-shadow:
        0px 5.68px 11.36px hsl(var(--black) / 0.08),
        0px 0px 2.84px hsl(var(--black) / 0.04);
}

@media screen and (max-width: 424px) {
    .account-body::after {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
}

.account-content {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(var(--primary-50, #ecf0ff)),
        to(var(--primary-300, #f66921))
    ) !important;
    background: linear-gradient(
        180deg,
        var(--primary-50, #ecf0ff) 0%,
        var(--primary-300, #f66921) 100%
    ) !important;
}

.input--group-password {
    border-radius: 12px;
}

.input--group:focus {
    background-color: transparent;
}

.form--check .form-check-input {
    height: 18px;
    width: 18px;
    border: 2px solid hsl(var(--black) / 0.2);
    border-radius: 6px;
}

.account-form__forgot-link {
    color: hsl(var(--black));
    font-size: 14px;
    font-weight: 700;
}

.account-body__content {
    text-align: center;
    margin-bottom: 24px;
}

.back-btn {
    color: hsl(var(--heading-color) / 0.6);
    margin-bottom: 5px !important;
}

.account-body__title {
    font-size: 32px;
    font-weight: 600;
}

.account-body__desc {
    font-size: 18px;
    font-weight: 400;
    color: hsl(var(--text-muted));
}

.web__link {
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: hsl(var(--black) / 0.5);
    background-color: hsl(var(--white));
    padding: 15px;
    -webkit-box-shadow:
        0px 4px 8px hsl(var(--black) / 0.06),
        0px 0px 4px hsl(var(--black) / 0.04);
    box-shadow:
        0px 4px 8px hsl(var(--black) / 0.06),
        0px 0px 4px hsl(var(--black) / 0.04);
    border-radius: 10px;
}

@media screen and (max-width: 575px) {
    .web__link {
        font-size: 16px;
    }
}

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

.bg__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.sign-in__logo {
    margin-bottom: 34px;
    max-width: 260px;
}

.bg-text {
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 1;
    white-space: nowrap;
    /* Gradient Color */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(hsl(var(--white) / 0.2)),
        to(hsl(var(--white) / 0))
    );
    background: linear-gradient(
        180deg,
        hsl(var(--white) / 0.2),
        hsl(var(--white) / 0)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media screen and (max-width: 1399px) {
    .bg-text {
        font-size: 288px;
        bottom: -154px;
    }
}

@media screen and (max-width: 1199px) {
    .bg-text {
        font-size: 247px;
        bottom: -118px;
    }
}

@media screen and (max-width: 991px) {
    .bg-text {
        font-size: 204px;
        bottom: -87px;
    }
}

@media screen and (max-width: 767px) {
    .bg-text {
        font-size: 157px;
        bottom: -66px;
    }
}

@media screen and (max-width: 575px) {
    .bg-text {
        font-size: 116px;
        bottom: -42px;
    }
}

@media screen and (max-width: 424px) {
    .bg-text {
        font-size: 85px;
        bottom: -22px;
    }
}

.account__gird {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.input--group-password .form--control {
    background-color: transparent;
}

.input-group-btn {
    border-left: unset !important;
}

.form-field--password .form--control::-webkit-input-placeholder {
    font-size: 18px;
}

.form-field--password .form--control::-moz-placeholder {
    font-size: 18px;
}

.form-field--password .form--control:-ms-input-placeholder {
    font-size: 18px;
}

.form-field--password .form--control::-ms-input-placeholder {
    font-size: 18px;
}

.form-field--password .form--control::placeholder {
    font-size: 18px;
}

.account .form--control {
    font-size: 16px !important;
}

.sign-in__logo {
    margin-bottom: 30px;
    max-width: 260px;
}

.section-spacing {
    padding: 150px 0px 120px;
}

@media screen and (max-width: 767px) {
    .section-spacing {
        padding: 120px 0px 60px;
    }
}

.conatct-page .account-body {
    max-width: 756px !important;
}

.conatct-page .contact-form .form--control {
    padding: 17px 18px !important;
}

.contact-input__footer p {
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
}

.contact-page__heading .title {
    font-size: 120px;
    font-weight: 800;
    line-height: 0.9;
    background: linear-gradient(106deg, #09090b 10%, hsl(var(--base)) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #09090b;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1199px) {
    .contact-page__heading .title {
        font-size: 5rem;
    }
}

@media screen and (max-width: 991px) {
    .contact-page__heading .title {
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 767px) {
    .contact-page__heading .title {
        font-size: 2.8125rem;
    }
}

.contact-page__heading .desc {
    font-size: 2rem;
    color: hsl(var(--heading-color));
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 330px;
    line-height: 120%;
}

.contact-form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    max-width: 425px;
    width: 100%;
    gap: 15px;
    border-radius: 12px;
    border: 1px solid hsl(var(--white));
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 0 3.33px 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 3.33px 0 rgba(0, 0, 0, 0.04);
}

.contact-form__item:not(:last-child) {
    margin-bottom: 12px;
}

.contact-form__item__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 56px;
    height: 56px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid hsl(var(--white));
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 0 3.33px 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 3.33px 0 rgba(0, 0, 0, 0.04);
    color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
    .contact-form__item__icon {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .contact-form__item__icon svg {
        width: 20px;
        height: 20px;
    }
}

.contact-form__item .contact-form__visit {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid hsl(var(--white));
    background: rgba(255, 255, 255, 0.61);
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(11.1000003815px);
    backdrop-filter: blur(11.1000003815px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-form__item .contact-form__visit i {
    -webkit-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-form__item .contact-form__visit:hover i {
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}

.contact-form__item .contact-form__title {
    font-size: 14px;
    color: hsl(var(--heading-color));
}

.contact-form__item .contact-form__url {
    font-size: 1.125rem;
    color: hsl(var(--heading-color));
    font-weight: 500;
}

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

.contact-form__item__info {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.contact-social-link__list {
    display: flex;
    justify-content: start;
    gap: 8px;
}

.contact-social-box {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.contact-social-box .contact-social-__title {
    font-size: 1.125rem;
}

.contact-social-link__list__item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 56px;
    height: 56px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 12px;
    border: 1.965px solid #fff;
    color: hsl(var(--heading-color));
    background: rgba(255, 255, 255, 0.35);
    -webkit-box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
    box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
}

.contact-social-link__list__item__link:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    border: 1px solid hsl(var(--base));
}

@media screen and (max-width: 767px) {
    .contact-social-link__list__item__link {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .contact-social-link__list__item__link svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================= Dashboard CSS Start ========================= */
.dashboard {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: hsl(var(--gray-l-500));
}

.dashboard-sidebar {
    width: 312px;
    height: 100vh;
    background-color: hsl(var(--white));

    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: sticky;
    top: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .dashboard-sidebar {
        width: 280px;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1050;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.3s linear;
        transition: -webkit-transform 0.3s linear;
        transition: transform 0.3s linear;
        transition:
            transform 0.3s linear,
            -webkit-transform 0.3s linear;
    }

    .dashboard-sidebar.show {
        -webkit-transform: none !important;
        transform: none !important;
    }
}

.dashboard-sidebar__header {
    padding: 24px 16px 12px 16px;
    position: relative;
}

.dashboard-sidebar__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--black) / 0.05) hsl(var(--black) / 0.1);
    padding: 12px 16px 24px 16px;
    border-top: 1px solid transparent;
}

.dashboard-sidebar__body.scrolling {
    border-top-color: hsl(var(--border-color));
}

.dashboard-sidebar-toggle {
    --size: 32px !important;
    font-size: calc(var(--size) * 0.6);
}

.dashboard-sidebar-logo img {
    max-width: 170px;
    max-height: 60px;
}

@media screen and (max-width: 1199px) {
    .dashboard-sidebar-logo img {
        max-width: 150px;
    }
}

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

.dashboard-sidebar-menu__item:not(:last-child) {
    margin-bottom: 8px;
}

.dashboard-sidebar-menu__item.logout > a {
    color: hsl(var(--danger));
}

.dashboard-sidebar-menu__item.active > a {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.dashboard-sidebar-menu__link {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 12px;
    gap: 8px;
    padding: 16px 16px 16px 32px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 140%;
    color: hsl(var(--gray));
}

.dashboard-sidebar-menu__link[data-bs-toggle="collapse"]::after {
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-left: auto;
}

.dashboard-sidebar-menu__link[aria-expanded="true"]::after {
    content: "\f106";
}

.dashboard-sidebar-menu__link span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.dashboard-sidebar-menu__link svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1199px) {
    .dashboard-sidebar-menu__link {
        padding: 16px 16px 16px 16px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard-sidebar-menu__link {
        font-size: 1rem;
        padding: 12px 12px 12px 16px;
    }

    .dashboard-sidebar-menu__link svg {
        width: 16px;
        height: 16px;
    }
}

.dashboard-sidebar-menu__link:hover,
.dashboard-sidebar-menu__link:focus {
    color: hsl(var(--black));
    background-color: hsl(var(--black) / 0.05);
}

.dashboard-sidebar-submenu {
    padding: 5px 0;
}

.dashboard-sidebar-submenu__item {
    margin-bottom: 6px;
}

.dashboard-sidebar-submenu__item.active > a {
    font-weight: 500;
    color: hsl(var(--base));
}

.dashboard-sidebar-submenu__item.active > a::before {
    border-color: hsl(var(--base));
}

.dashboard-sidebar-submenu__link {
    --circle-size: 10px;
    width: 100%;
    color: hsl(var(--gray));
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 6px 6px calc(var(--circle-size) + 32px);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 1199px) {
    .dashboard-sidebar-submenu__link {
        padding: 6px 6px 6px calc(var(--circle-size) + 16px);
    }
}

@media screen and (max-width: 575px) {
    .dashboard-sidebar-submenu__link {
        font-size: 0.875rem;
    }
}

.dashboard-sidebar-submenu__link::before {
    content: "";
    width: var(--circle-size);
    height: var(--circle-size);
    display: inline-block;
    background-color: transparent;
    border: 1px solid hsl(var(--black) / 0.4);
    border-radius: 50%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.dashboard-sidebar-submenu__link:hover,
.dashboard-sidebar-submenu__link:focus {
    color: hsl(var(--black));
}

.dashboard-sidebar-submenu__link:hover::before,
.dashboard-sidebar-submenu__link:focus::before {
    border-color: hsl(var(--black));
}

.dashboard-sidebar .btn--close {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    --size: 40px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
}

.dashboard-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.dashboard-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 32px;
    background-color: hsl(var(--white));
    position: sticky;
    top: 0;
    z-index: 999;
}

@media screen and (max-width: 1199px) {
    .dashboard-header {
        padding: 16px 24px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard-header {
        padding: 16px;
    }
}

.dashboard-header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.dashboard-body {
    min-height: 100vh;
    position: relative;
    padding: 32px;
}

@media screen and (max-width: 1199px) {
    .dashboard-body {
        padding: 24px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard-body {
        padding: 16px;
    }
}

/* ========================= Dashboard CSS End =========================== */
.dashboard-sidebar-menu__link {
    color: hsl(var(--black) / 0.7);
    padding: 10px 16px;
}

.dashboard-sidebar-menu__item {
    margin-bottom: 6px !important;
}

.dashboard-sidebar__body__title {
    font-size: 12px;
    font-weight: 700;
    color: hsl(var(--black) / 0.7);
    margin-bottom: 11px;
    margin-left: 20px;
}

.dashboard-sidebar__items {
    margin-bottom: 32px;
}

.dashboard-sidebar__items:last-child {
    margin-bottom: 0;
}

.dashboard-header__notification {
    color: hsl(var(--black));
    border: 0;
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}

@media screen and (max-width: 375px) {
    .dashboard-header__notification {
        height: 35px;
        width: 35px;
    }
}

.lang-heading__flag {
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

.lang-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    background-color: transparent;
}

@media screen and (max-width: 576px) {
    .lang-heading {
        display: none;
    }
}

.lang-heading__title {
    font-size: 18px;
    font-weight: 500;
    color: hsl(var(--balck));
}

.lang-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
}

.lang-menu {
    padding: 10px;
    border-radius: 16px;
}

.dashboard-header__left__title {
    font-size: 32px;
    font-weight: 600;
    color: hsl(var(--black));
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .dashboard-header__left__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard-header__left__title {
        font-size: 18px;
    }
}

@media screen and (max-width: 375px) {
    .dashboard-header__left__title {
        font-size: 15px;
    }
}

.dashboard-header__left__desc {
    font-size: 18px;
    font-weight: 400;
    color: hsl(var(--text-muted));
}

@media screen and (max-width: 424px) {
    .dashboard-header__left__desc {
        font-size: 14px;
    }
}

@media screen and (max-width: 375px) {
    .dashboard-header__left__desc {
        font-size: 11px;
    }
}

.dashboard-sidebar {
    background-color: hsl(var(--base) / 0.1);
}

@media screen and (max-width: 1199px) {
    .dashboard-sidebar {
        background-color: hsl(var(--base) / 0.1);
        z-index: 1111;
    }
}

.dashboard-sidebar::after {
    content: "";
    height: inherit;
    width: 20px;
    right: 0;
    background-color: hsl(var(--neutral-50));
    position: absolute;
    border-radius: 30px 0px 0px 30px;
    -webkit-box-shadow: 0px 4px 0px 0 hsl(var(--black) / 0.06);
    box-shadow: 0px 4px 0px 0 hsl(var(--black) / 0.06);
}

@media screen and (max-width: 991px) {
    .dashboard-sidebar::after {
        display: none;
    }
}

.dashboard-header {
    background-color: hsl(var(--neutral-50));
    border-bottom: 1px solid hsl(var(--black) / 0.1);
    padding-left: 20px;
    z-index: 11 !important;
}

.dashboard-sidebar__body {
    padding-right: 36px;
    padding-left: 20px;
}

.dashboard__card {
    background-color: hsl(var(--white));
    padding: 20px 24px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.dashboard__card__top-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.dashboard__card__icon {
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: hsl(var(--white));
    margin-bottom: 20px;
    border-radius: 12px;
}

.dashboard__card__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: hsl(var(--text-muted));
}

.dashboard__card__title {
    font-size: 40px;
    font-weight: 700;
    color: hsl(var(--heading-color));
}

.dashboard__card__button {
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: hsl(var(--black) / 0.02);
    font-size: 20px;
    color: hsl(var(--black) / 0.5);
    border-radius: 12px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.dashboard__card__glow1 {
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: -1;
}

.dashboard__card__glow2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.dashboard-body {
    padding-left: 14px;
}

.card--base .dashboard__card__icon {
    color: hsl(var(--base));
}

.card--primary .dashboard__card__icon {
    color: hsl(var(--primary));
}

.card--info .dashboard__card__icon {
    color: hsl(var(--info));
}

.card--success .dashboard__card__icon {
    color: hsl(var(--success));
}

.card--warning .dashboard__card__icon {
    color: hsl(var(--warning));
}

.card--danger .dashboard__card__icon {
    color: hsl(var(--danger));
}

.card--purple .dashboard__card__icon {
    color: #ad46ff;
}

.user-profile-mini {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    border: none;
}

span.user-profile-mini i {
    color: hsl(var(--black) / 0.4);
    font-size: 0.875rem;
}

.user-profile-mini:hover {
    background-color: hsl(var(--base) / 0.06);
}

.user-profile-mini .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.user-profile-mini .user-info h4 {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .user-profile-mini .user-info h4 {
        font-size: 16px;
    }
}

.user-profile-mini .user-info span {
    font-size: 14px;
    font-weight: 400;
    color: hsl(var(--text-mute));
}

.user-profile-mini .user-profile-mini i {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-menu-dropdown-btn {
    border: none;
    background-color: hsl(var(--base) / 0.07);
    border-radius: 12px;
}

.footer-menu-dropdown {
    padding: 16px;
    padding-right: 40px;
    width: 100%;
}

.user-dropdown__menu {
    padding: 16px;
    border-radius: 20px;
    border: 0;
    -webkit-box-shadow:
        0 0 4px 0 hsl(var(--black) / 0.04),
        0 4px 8px 0 hsl(var(--black) / 0.08);
    box-shadow:
        0 0 4px 0 hsl(var(--black) / 0.04),
        0 4px 8px 0 hsl(var(--black) / 0.08);
    position: relative;
    z-index: 2;
}

.dropdown-item__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 12px;
}

.dashboard__search {
    position: relative;
    z-index: 1;
    width: 500px;
}

@media screen and (max-width: 992px) {
    .dashboard__search {
        width: 335px;
    }
}

@media screen and (max-width: 768px) {
    .dashboard__search {
        width: 250px;
    }
}

.dashboard__search__icon {
    position: absolute;
    left: 24px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dashboard__search .form--control {
    padding: 17px 48px;
    border-radius: 12px;
    border: none;
    border: 1px solid hsl(var(--white)) !important;
    color: hsl(var(--black) / 0.5) !important;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .dashboard__search .form--control {
        padding: 11.5px 48px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard__search .form--control {
        padding: 9.5px 48px;
    }
}

.dashboard__search .form--control:focus {
    border: 1px solid hsl(var(--base)) !important;
    outline: none;
    -webkit-box-shadow: 0 0 0 3px hsla(var(--base), 0.25);
    box-shadow: 0 0 0 3px hsla(var(--base), 0.25);
    background-color: hsl(var(--base) / 0.06);
}

.dashboard__search__right-icon {
    position: absolute;
    right: -1px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header-select2 {
    width: 240px !important;
    border-radius: 12px;
}

.select2-wrapper img {
    width: 22px;
    height: 22px;
}

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

.dashboard__body__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
    .dashboard__body__heading {
        gap: 6px;
    }
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border-radius: 12px;
    border-color: hsl(var(--white));
}

.select2-search__field {
    background-color: hsl(var(--balck) / 0.2);
}

.select2-results__option--selectable {
    color: hsl(var(--black)) !important;
    border-bottom: 1px solid hsl(var(--black) / 0.2);
}

.select2-results__option--selectable:last-child {
    border-bottom: none;
}

.select2-results__option--selectable.select2-results__option--highlighted {
    background-color: hsl(var(--black) / 0.05) !important;
    color: hsl(var(--black)) !important;
}

.table__icon {
    height: 44px;
    width: 44px;
    background-color: hsl(var(--success) / 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}

.table__currency__title {
    font-size: 16px;
    font-weight: 700;
    color: hsl(var(--black));
    margin-bottom: 0;
}

.table__currency__desc {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--black));
    margin-bottom: 0;
}

.table__currency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.transection-id {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .transection-id {
        font-size: 14px;
    }
}

.time {
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width: 1399px) {
    .time {
        font-size: 14px;
    }
}

@media screen and (max-width: 1399px) {
    .table__details {
        font-size: 14px;
    }
}

.table__amount {
    font-size: 16px;
    font-weight: 700;
    color: hsl(var(--success));
}

.table__details {
    font-size: 16px;
    font-weight: 400;
}

.dashboard__table {
    background-color: hsl(var(--white));
    padding: 24px;
    border-radius: 12px;
    padding-top: 0;
}

@media screen and (max-width: 425px) {
    .dashboard__table {
        padding: 10px;
    }
}

.logout {
    border-top: 1px solid hsl(var(--black) / 0.1);
    margin-top: 12px;
}

.logout__btn {
    background-color: hsl(var(--danger));
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-top: 12px;
}

.logout__btn:hover,
.logout__btn:focus,
.logout__btn:active {
    background-color: hsl(var(--danger)) !important;
}

.sidebar-toggle {
    border: none;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 16px;
    color: hsl(var(--base));
    font-weight: 600;
    flex-shrink: 0;
}

.dashboard-header__left {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.menu__notification {
    width: 425px !important;
    padding-top: 0;
    border-radius: 20px;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .menu__notification {
        width: 399px !important;
    }
}

@media screen and (max-width: 424px) {
    .menu__notification {
        width: 330px !important;
    }
}

@media screen and (max-width: 374px) {
    .menu__notification {
        width: 298px !important;
    }
}

.menu__notification li {
    position: relative;
    padding: 0px 12px;
}

.menu__notification li:hover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 82px;
    width: 4px;
    background-color: hsl(var(--base));
    border-radius: 0px 12px 12px 0px;
}

.menu__notification li:first-child {
    padding-left: 0px;
    padding-right: 0px;
}

.menu__notification li:first-child::after {
    display: none !important;
}

.menu__notification li:last-child a {
    border-bottom: none !important;
}

.notification__heading__title {
    font-size: 20px;
    font-weight: 500;
}

.notification__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px 16px;
    background-color: hsl(var(--base) / 0.2);
    margin-bottom: 28px;
}

.notification__item {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    border-bottom: 1px solid hsl(var(--black) / 0.1);
    margin-left: 0;
    border-left: 1px solid transparent;
    white-space: unset !important;
    padding-bottom: 16px;
    padding-left: 0;
}

.notification__item:hover {
    background-color: transparent;
}

.notification__item__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

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

.notification__item__date {
    font-size: 14px;
    font-weight: 400;
    color: hsl(var(--text-muted));
}

.notification__item__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    margin-bottom: 5px;
}

.notification__item__desc {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--neutral-700));
}

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

@media screen and (max-width: 991px) {
    .dashboard-sidebar {
        background-color: hsl(var(--white));
    }
}

@media (max-width: 575px) {
    .user-dropdown__menu {
        -webkit-transform: translate3d(22px, -99.5px, 0px) !important;
        transform: translate3d(22px, -99.5px, 0px) !important;
    }
}

@media (max-width: 470px) {
    .user-dropdown__menu {
        -webkit-transform: translate3d(22px, -263.5px, 0px) !important;
        transform: translate3d(22px, -263.5px, 0px) !important;
    }
}

.table__icon img {
    max-width: 25px !important;
}

/* ======================  Settings Page Start  ======================*/
.setting-sidebar {
    padding: 24px;
    background-color: hsl(var(--white));
    border-radius: 12px;
}

@media screen and (max-width: 767px) {
    .setting-sidebar {
        padding: 14px;
    }
}

.setting-sidebar__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0px;
}

.setting-sidebar__item {
    display: block;
    padding-block: 16px;
    border-bottom: 1px solid hsl(var(--neutral-100));
    font-weight: 500;
    color: hsl(var(--neutral-400));
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.setting-sidebar__item {
    padding: 10px 16px;
    margin-bottom: 10px;
}

.setting-sidebar__item.active {
    border-bottom: 2px solid hsl(var(--base));
}

.setting-sidebar__item.active,
.setting-sidebar__item:hover {
    color: hsl(var(--base));
}

.setting-content {
    padding: 24px;
    background-color: hsl(var(--white));
    border-radius: 12px;
}

@media screen and (max-width: 991px) {
    .setting-content {
        padding: 18px;
    }
}

@media screen and (max-width: 767px) {
    .setting-content {
        padding: 10px;
    }
}

.setting-content__thumb {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    border: 3px solid hsl(var(--white));
    outline: 2px solid hsl(var(--base));
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.setting-content__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.setting-content__thumb .custom-upload {
    position: absolute;
    right: -9px;
    bottom: -6px;
    width: 28px;
    height: 28px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: hsl(var(--base));
    border-radius: 50%;
    color: hsl(var(--white));
    font-size: 1rem;
    border: 2px solid hsl(var(--base));
    cursor: pointer;
}

/* notification switch design  start here */
.notification-switch__wrapper {
    background-color: hsl(var(--white));
    border-radius: 12px;
    padding: 24px;
    max-width: 700px;
}

.notification-switch__item {
    border-bottom: 1px solid hsl(var(--neutral-100));
    padding-block: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-switch__item:last-child {
    border-bottom: none;
}

.notification-switch__item__content {
    max-width: calc(100% - 50px);
    display: flex;
    gap: 12px;
}

.notification-switch__item__info .title {
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 500;
    color: hsl(var(--neutral-800));
    margin-bottom: 4px;
}

/* .wallet__card {
  background: hsl(var(--white));
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  box-shadow: var(--card-shadow);
  border-color: hsl(var(--border-color));
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.wallet__card:hover {
  transform: translateY(-5px);
} */

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

.wallet__card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: hsl(var(--black) / 0.065);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet__card__icon img {
    width: 28px;
    height: 28px;
}

.wallet__card__title {
    font-size: 24px !important;
    margin-bottom: 5px;
    font-weight: 600;
}

.wallet__card__title {
    font-size: 1rem !important;
    margin-bottom: 5px;
}

.wallet-card-currency-code {
    font-size: 0.875rem;
    font-weight: 400;
    color: hsl(var(--heading-color) / 0.5);
}

.wallet__card__balance-label {
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: hsl(var(--heading-color));
}

.wallet-balance .amount {
    font-size: 1.5rem;
}

.wallet__card__footer {
    border-top: 1px solid hsl(var(--border-color) / 0.5);
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wallet__card__footer .btn i {
    margin-right: 5px;
}

.wallet__card__footer .action-link {
    color: hsl(var(--text-mute));
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.wallet__card__footer .action-link:hover {
    background: hsl(var(--base) / 0.1);
}

.wallet__card__footer .action-link i {
    margin-right: 5px;
    color: hsl(var(--base));
}

.wallet__card__footer .action-link:hover {
    color: hsl(var(--base) / 0.8);
}

/* Primary */
.wallet__card.primary-bg .wallet__card__icon {
    background: hsl(var(--primary) / 0.1);
}

/* Success */
.wallet__card.success-bg .wallet__card__icon {
    background: hsl(var(--success) / 0.1);
}

/* Danger */
.wallet__card.danger-bg .wallet__card__icon {
    background: hsl(var(--danger) / 0.1);
}

/* Warning */
.wallet__card.warning-bg .wallet__card__icon {
    background: hsl(var(--warning) / 0.1);
}

/* Info */
.wallet__card.info-bg .wallet__card__icon {
    background: hsl(var(--info) / 0.1);
}

/* Dark */
.wallet__card.dark-bg .wallet__card__icon {
    background: hsl(var(--black) / 0.15);
}

/* Base (custom theme base) */
.wallet__card.base-bg .wallet__card__icon {
    background: hsl(var(--base) / 0.07);
}

.empty-message-row img {
    max-width: 90px;
}

.empty-message-row td {
    background-color: transparent !important;
}

.setup-security__header {
    margin-bottom: 30px;
}

.setup-security__header-desc {
    max-width: 540px;
    color: hsl(var(--neutral-500));
}

.setup-security__steps .steps-top {
    margin-bottom: 16px;
}

.setup-security__steps-desc {
    color: hsl(var(--neutral-500));
}

.setup-security__steps-body {
    background-color: hsl(var(--neutral-50));
    padding: 12px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    row-gap: 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .setup-security__steps-body {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px;
    }
}

@media screen and (max-width: 767px) {
    .setup-security__steps .security-body {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.setup-security__steps .security-body__title {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.setup-security__steps .security-body__desc {
    color: hsl(var(--neutral-500));
    font-size: 14px;
    margin-block: 8px;
}

.setup-security__steps .security-body__code {
    border-radius: 5px;
    height: 100%;
    width: 100%;
    display: block;
    color: hsl(var(--black));
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 500;
}

.copy-code__wrapper {
    background: hsl(var(--white));
    padding: 5px !important;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-color) / 0.55);
    padding-left: 12px !important;
}

.copy-code__wrapper .btn {
    padding: 10px 15px;
}

@media screen and (max-width: 424px) {
    .copy-code__wrapper .security-body__code {
        font-size: 13px;
    }

    .copy-code__wrapper .btn {
        padding: 7px 10px !important;
        font-size: 13px !important;
    }

    .copy-code__wrapper .btn svg {
        width: 16px !important;
        height: 16px !important;
    }
}

.setup-security__steps .steps-bottom {
    padding: 24px;
    border-radius: 12px;
    background-color: hsl(var(--white));
}

.setup-security .steps-bottom__desc {
    color: hsl(var(--neutral-500));
}

.setup-security .steps-bottom__code {
    color: hsl(var(--black));
    margin-block: 16px;
    display: block;
}

@media screen and (max-width: 767px) {
    .setup-security .steps-bottom__code {
        margin-bottom: 10px;
    }
}

.setup-security .steps-bottom .form-submit {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
    .setup-security .steps-bottom .form-submit {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .setup-security .steps-bottom .form-submit {
        margin-bottom: 20px;
    }
}

.setup-security .steps-bottom .form-submit input {
    width: 40px;
    height: 48px;
    text-align: center;
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    -webkit-box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
    box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
}

.twofa-qr-img {
    max-width: 160px;
    max-height: 215px;
}

.flex-align {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.twofa-varification-code-wrapper {
    width: 400px;
}

.copy-code__wrapper {
    background: hsl(var(--white));
    padding: 5px !important;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-color) / 0.55);
    padding-left: 12px !important;
}

.copy-code__wrapper .btn {
    padding: 10px 15px;
}

@media screen and (max-width: 424px) {
    .copy-code__wrapper .security-body__code {
        font-size: 13px;
    }

    .copy-code__wrapper .btn {
        padding: 7px 10px !important;
        font-size: 13px !important;
    }

    .copy-code__wrapper .btn svg {
        width: 16px !important;
        height: 16px !important;
    }
}

.setup-security__steps .steps-bottom {
    padding: 24px;
    border-radius: 12px;
    background-color: hsl(var(--white));
}

.setup-security .steps-bottom__desc {
    color: hsl(var(--neutral-500));
}

.setup-security .steps-bottom__code {
    color: hsl(var(--black));
    margin-block: 16px;
    display: block;
}

@media screen and (max-width: 767px) {
    .setup-security .steps-bottom__code {
        margin-bottom: 10px;
    }
}

.setup-security .steps-bottom .form-submit {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
    .setup-security .steps-bottom .form-submit {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .setup-security .steps-bottom .form-submit {
        margin-bottom: 20px;
    }
}

.setup-security .steps-bottom .form-submit input {
    width: 40px;
    height: 48px;
    text-align: center;
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    -webkit-box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
    box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
}

.custom--list span:first-child {
    font-weight: 600;
}

.custom--list .list-group-item:first-child {
    padding-top: 0px !important;
}

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

.upload-thumb {
    position: relative;
    display: inline-block;
}

.upload-thumb__wrapper {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 20px;
}

.upload-thumb-img {
    height: 120px;
    width: 120px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid hsl(var(--border-color));
}

.upload-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-thumb-btn {
    cursor: pointer;
    position: absolute;
    height: 30px;
    width: 30px;
    display: grid;
    place-content: center;
    bottom: 3px;
    right: -15px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    border-radius: 8px !important;
    outline: 2px solid hsl(var(--white));
}

.select2-img {
    border-radius: 50%;
}

/*======================== suport apon ========================*/
.modal-close__btn {
    color: hsl(var(--black));
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.modal-close__btn:hover {
    color: hsl(var(--danger));
}

.table tbody tr td {
    text-align: center;
    font-size: 1rem;
}

.table thead tr th:nth-child(2) {
    text-align: center;
}

.table thead tr th {
    text-align: center;
}

.header-country-select2 {
    border: 1px solid hsl(var(--base));
}

.notification__item__icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid hsl(var(--border-color) / 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.menu__notification li:hover .notification__item__icon {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.menu__notification li:hover:last-child::after {
    display: none;
}

.notification-btn {
    padding: 10px;
    margin-bottom: 7px;
}

.notification__heading__link {
    font-weight: 500;
}

.country_selector .select2-selection__rendered {
    margin-left: 33px;
}

.contact__number .form--control {
    padding-left: 55px;
}

.modal-close__btn {
    color: hsl(var(--black));
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.skeleton-animation {
    position: relative;
    border: none !important;
}

.skeleton-animation::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #f5f5f5 25%, #eaeaea 50%, #f5f5f5 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
    border-radius: 6px;
    overflow: hidden;
    left: 0;
    top: 0;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ======================  Invoice End  ======================*/
/* ======================  Payment-crypto Start  ======================*/
.payment-crypto-page {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    z-index: 1;
    background-color: hsl(var(--neutral-50));
    color: hsl(var(--neutral-500));
}

.payment-crypto-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../../../images/thumbs/invoice-bg.png");
}

.payment-crypto-invoice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../../../images/thumbs/bg-invoice-page.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.payment-crypto-page__inner-timeline {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.payment-crypto-page .card-more-btn {
    margin-block: 24px;
    width: 100%;
    height: 48px;
    border-radius: 8px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    border: 1px solid hsl(var(--neutral-300));
    vertical-align: middle;
    padding: 17px 12px;
}

@media screen and (max-width: 767px) {
    .payment-crypto-page .card-more-btn {
        margin-block: 12px;
    }
}

.inner-card {
    max-width: 900px;
    width: 100%;
}

.inner-card__item {
    background-color: hsl(var(--white));
    border-radius: 20px;
}

.inner-card__item:not(:last-child) {
    margin-bottom: 24px;
}

.inner-card__header {
    background: hsl(var(--white) / 0.085);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    padding: 14px 24px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
}

.payment-crypto-invoice__item {
    background-color: hsl(var(--base));
}

.payment-crypto-invoice__item .amount-wrapper h2 {
    color: hsl(var(--white));
    font-size: 48px;
}

@media screen and (max-width: 991px) {
    .payment-crypto-invoice__item .amount-wrapper h2 {
        font-size: 32px;
    }
}

.payment-crypto-invoice__item .inner-card__body-amount-info .text {
    color: hsl(var(--white) / 0.8);
}

.payment-crypto-invoice__item .inner-card__body-amount-info .date {
    color: hsl(var(--white)) !important;
}

.inner-card__header * {
    color: hsl(var(--white));
}

.inner-card__header .title {
    color: hsl(var(--white));
}

.inner-card__header .clock {
    color: hsl(var(--white));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    gap: 5px;
}

.inner-card__header .clock .time {
    min-width: 45px;
}

.inner-card__body {
    padding: 16px 24px;
}

.inner-card__body-amount {
    display: flex;
    gap: 12px;

    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid hsl(var(--white) / 0.3);
    padding-bottom: 16px;
}

@media screen and (max-width: 500px) {
    .inner-card__body-amount {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .inner-card__body-amount-info {
        text-align: center !important;
    }
}

.inner-card__body-amount-info label {
    white-space: nowrap;
}

@media screen and (max-width: 991px) {
    .inner-card__body-amount {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .inner-card__body-amount {
        margin-bottom: 20px;
    }
}

.recipient-address__name p {
    color: hsl(var(--white) / 0.7);
}

.recipient-address__thumb {
    width: 160px;
    height: 40px;
    padding: 5px;
}

.recipient-address__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0) invert(1);
}

.inner-card__body-amount .number {
    margin-bottom: 0;
}

.inner-card__body-amount-info .cost {
    line-height: 1;
    font-size: 0.875rem;
    color: hsl(var(--neutral-600));
}

.inner-card__body-amount-info .badge {
    display: block;
    border-radius: 2px;
    background-color: hsl(var(--info));
}

.inner-card__body-qr {
    text-align: center;
}

.inner-card .view-invoice {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.inner-card .view-invoice:hover {
    color: hsl(var(--base)) !important;
}

.timeline-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    position: relative;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    width: 2px;
    height: 16px;
    background-color: hsl(var(--neutral-300));
}

.timeline-item.active .timeline-item__icon {
    color: hsl(var(--base));
}

.timeline-item.active .timeline-item__icon i {
    display: none;
}

.timeline-item.active .timeline-item__icon svg {
    display: block;
}

.timeline-item.active .timeline-item__text {
    color: hsl(var(--base));
}

.timeline-item.active ~ .timeline-item .timeline-item__icon {
    color: hsl(var(--neutral-500));
}

.timeline-item.active ~ .timeline-item .timeline-item__icon i {
    display: none;
}

.timeline-item.active ~ .timeline-item .timeline-item__icon svg {
    display: block;
}

.timeline-item.active ~ .timeline-item .timeline-item__text {
    color: hsl(var(--neutral-500));
}

.timeline-item__icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border: 2px solid currentColor;
    border-radius: 50%;
    color: hsl(var(--success));
}

.timeline-item__icon svg {
    display: none;
}

.timeline-item__text {
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 500;
    color: hsl(var(--success));
}

.inner-card__body-addr-list {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
}

@media screen and (max-width: 767px) {
    .inner-card__body-addr-list {
        gap: 10px;
    }
}

.inner-card__body-addr-list .title {
    width: 140px;
    padding-right: 16px;
    vertical-align: top;
}

.inner-card__body-addr-list .value {
    color: hsl(var(--black));
    font-weight: 500;
    width: calc(100% - 145px);
}

.getway-modal .modal-body {
    max-height: 500px;
    overflow: auto;
}

.getway-modal .modal-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: hsl(var(--neutral-200));
}

.getway-modal .modal-body::-webkit-scrollbar-thumb {
    background: hsl(var(--neutral-500));
    border-radius: 10px;
}

.currency-list__check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid hsl(var(--neutral-300));
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.currency-list__img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.currency-list__item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.currency-list__item:hover {
    background-color: hsl(var(--neutral-50));
}

.currency-list__item:not(:last-child) {
    border-bottom: 1px solid hsl(var(--neutral-300));
}

.currency-list__item:has(input:checked) .currency-list__check {
    border-color: hsl(var(--base));
}

.currency-list__name {
    color: #000;
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 500;
}

.card-list {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-list__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 130px;
    flex: 1 1 130px;
    border: 1px solid hsl(var(--neutral-300));
    border-radius: 8px;
    padding: 12px;
    color: hsl(var(--neutral-800) / 0.5);
    cursor: pointer;
}

.card-list__item:hover {
    -webkit-box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
    box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
}

.card-list__item:has(input:checked) {
    -webkit-box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
    box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
    color: hsl(var(--neutral-800));
}

.card-list__item:has(input:checked) .card-list__text {
    color: hsl(var(--neutral-800));
}

.card-list__item svg {
    width: 24px;
    height: 24px;
}

.card-list__text {
    color: hsl(var(--neutral-800) / 0.5);
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
    font-weight: 500;
    line-height: 140%;
    margin-top: 2px;
}

.pay-info__title {
    color: hsl(var(--neutral-800));
}

.pay-info__title span {
    color: hsl(var(--neutral-400));
    font-weight: 400;
}

/* ======================  Payment-crypto End  ======================*/

.payment-method__wrapper {
    background-color: hsl(var(--white));
    border-radius: 20px;
}

.payment-method__wrapper__header {
    padding: 12px 24px;
    background-color: hsl(var(--neutral-50));
    border-radius: 12px 12px 0 0;
}

.payment-method__wrapper__body {
    padding: 24px;
}

.payment-method__wrapper .slick-initialized.slick-slider .slick-track {
    padding: 4px 0px;
}

.payment-methods-card__items {
    position: relative;
    overflow: hidden;
}

.payment-methods-card__title {
    color: hsl(var(--white)) !important;
    font-size: 1rem;
    margin-bottom: 15px;
}

.payment-methods-card__item-top {
    margin-bottom: 10px;
}

.payment-methods-card__item-icon {
    width: 100%;
    padding: 11px 16px;
    background-color: hsl(var(--neutral-50));
    height: 67px;
    border-radius: 8px;
}

.payment-methods-card__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payment-methods-card__items .form--radio .form-check-label {
    position: relative;
    margin: 0;
    background-image: none !important;
    z-index: -1;
    border: 1px solid hsl(var(--border-color));
    color: hsl(var(--heading-color)) !important;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.payment-methods-card__items .form-check-label:has(.form-check-input:checked) {
    border-color: hsl(var(--base)) !important;
}

.payment-methods-card__items .form--radio {
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center;
    padding: 0 !important;
}

.payment-methods-card__items .form--radio .form-check-input {
    border: 2px solid #c3c6cc;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    box-shadow: none;
    display: none !important;
}

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

.payment-methods-card__items
    .form--radio
    .form-check-label:has(input:disabled) {
    border: 1px solid hsl(var(--danger) / 0.2);
    cursor: not-allowed;
    background-color: hsl(var(--danger) / 0.018);
}

.payment-methods-card__item-content {
    text-align: center;
}

.payment-methods-card__item-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--heading-color));
    margin-bottom: 0px;
}

@media screen and (max-width: 575px) {
    .payment-methods-card__item-title {
        font-size: 1rem;
    }
}

.payment-methods-card__item-content .percent {
    font-size: 0.875rem;
    color: hsl(var(--neutral-500));
}

.payment-methods__account {
    background-color: hsl(var(--base));
    padding: 24px;
    border-radius: 12px;
}

.payment-methods__account-sub-title {
    color: hsl(var(--white)) !important;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.payment-methods__account-title {
    color: hsl(var(--white)) !important;
    font-size: 3rem;
    font-weight: 700;
}

@media screen and (max-width: 575px) {
    .payment-methods__account-title {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 375px) {
    .payment-methods__account-title {
        font-size: 2rem;
    }
}

.payment-methods__form .amount-area {
    text-align: center;
    flex: 1;
}

.payment-methods__form .amount-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--white)) !important;
    padding: 0;
}

.payment-methods__form .amount-input::-webkit-outer-spin-button,
.payment-methods__form .amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.payment-methods__form .amount-input::placeholder {
    color: hsl(var(--white) / 0.7);
}

.payment-methods__form .amount-area small {
    font-size: 13px;
    color: hsl(var(--white) / 0.45);
}

.payment-methods__form {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px;
    border-radius: 12px;
    background: hsl(var(--common-bg) / 0.4);
}

@media screen and (max-width: 575px) {
    .payment-methods__form {
        padding: 16px;
    }
}

@media screen and (max-width: 375px) {
    .payment-methods__form {
        padding: 10px;
    }
}

.payment-methods__form .currency-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: hsl(var(--common-bg) / 0.7);
    color: hsl(var(--white));
    font-size: 18px;
    font-weight: 600;
}

@media screen and (max-width: 575px) {
    .payment-methods__form .currency-icon {
        width: 30px;
        height: 30px;
    }
}

.payment-methods__form .amount-area {
    flex: 1;
    text-align: center;
}

@media screen and (max-width: 575px) {
    .payment-methods__form .amount-input {
        font-size: 24px;
    }
}

.payment-methods__form .amount-input::-webkit-inner-spin-button,
.payment-methods__form .amount-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.payment-methods__form .amount-area small {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

@media screen and (max-width: 375px) {
    .payment-methods__form .amount-area small {
        font-size: 10px;
    }
}

.payment-methods-card__form-card {
    border-radius: 12px;
    background: hsl(var(--white));
}

.payment-methods-card__form-card-header {
    padding: 12px 24px;
    background-color: hsl(var(--base) / 0.1);
    border-radius: 12px 12px 0px 0px;
}

.payment-methods-card__form-card-body {
    padding: 24px;
}

.border-bottom {
    border-bottom: 1px solid hsl(var(--border-color) / 0.5);
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
}

.amount-edit {
    outline: none;
    border: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    cursor: text;
}

.amount-edit:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/*=====================================to do =====================================*/
.amount__button {
    position: absolute;
    top: 9px;
    right: 14px;
    z-index: 9;
    border: none;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
}

.form-amount .form-control {
    border-radius: 12px !important;
    padding-right: 60px;
}

.amount-wrapper__title {
    font-weight: 800;
}

.inner__addr__list {
    padding-bottom: 16px;
    border-bottom: 1px solid hsl(var(--border-color) / 0.5);
    margin-bottom: 16px;
}

.pay__invoice__button {
    margin-top: 24px;
}

.table__wrap {
    background-color: hsl(var(--white));
    padding: 24px;
    border-radius: 12px;
}

.footer-payment-links {
    margin-top: 24px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
}

.footer-payment-links a {
    color: #8b8f94;
    text-decoration: none;
    margin: 0 6px;
}

.footer-payment-links span {
    color: #b5b9be;
    margin: 0 4px;
}

.footer-payment-links a:hover {
    color: hsl(var(--base));
}

/*=====================================to do =====================================*/

.table-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(var(--black) / 0.065);
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.table-thumb img {
    width: 25px;
    height: 25px;
    text-align: center;
}

.action-dropdown .dropdown-menu {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid hsl(var(--border-color));
}

.action-dropdown .dropdown-item {
    padding: 10px 12px;
    border-radius: 10px;
    color: hsl(var(--body-color));
    font-weight: 500;
}

.action-dropdown .dropdown-item i {
    font-size: 18px;
}

.action-dropdown .dropdown-item:active,
.action-dropdown .dropdown-item:hover {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.modal-loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.modal-loader.active {
    opacity: 1;
    pointer-events: all;
}

.loader-box {
    background: white;
    padding: 30px 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #ddd;
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

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

/* =========================================== How payment Css Start ==============================*/
.how-payment__banner {
    padding: 200px 0px 140px;
    position: relative;
    overflow: hidden;
    margin: 8px;
    border-radius: 40px;
}

@media screen and (max-width: 767px) {
    .how-payment__banner {
        padding: 150px 0px 60px;
        margin: 0px;
        border-radius: 0px;
    }
}

.how-payment__banner .banner__shape_one svg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.how-payment__banner__content {
    text-align: center;
    margin-bottom: 50px;
}

.how-payment__banner__subtitle {
    border-radius: 250px;
    border: 1px solid hsl(var(--base));
    background: #09090b;
    -webkit-box-shadow:
        0 0 2.556px 0 hsl(var(--base)),
        0 0 1.278px 0 hsl(var(--base));
    box-shadow:
        0 0 2.556px 0 hsl(var(--base)),
        0 0 1.278px 0 hsl(var(--base));
    color: hsl(var(--white));
    font-size: 1.125rem;
    display: inline-block;
    padding: 7px 15px;
}

@media screen and (max-width: 767px) {
    .how-payment__banner__subtitle {
        font-size: 0.875rem;
    }
}

.how-payment__banner__title {
    font-weight: 800;
}

.how-payment__banner__desc {
    font-size: 1.125rem;
    color: hsl(var(--neutral-700));
}

.how-payment__banner__step {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

@media screen and (max-width: 870px) {
    .how-payment__banner__step {
        max-width: 600px;
    }
}

@media screen and (max-width: 374px) {
    .how-payment__banner__step {
        gap: 0px;
    }
}

.how-payment__banner__step .shape-wrapper-step {
    position: absolute;
    width: 100%;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .how-payment__banner__step .shape-wrapper-step {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .how-payment__banner__step__item {
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .how-payment__banner__step__item:nth-child(2)
        .how-payment__banner__step__item__icon {
        position: relative;
        top: 8px;
        left: -4px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .how-payment__banner__step__item:nth-child(2)
        .how-payment__banner__step__item__icon {
        top: 6px;
        left: -7px;
    }
}

@media screen and (min-width: 768px) {
    .how-payment__banner__step__item:nth-child(2)
        .how-payment__banner__step__item__title {
        position: relative;
        left: -49px;
        top: 30px;
    }
}

@media screen and (min-width: 768px) {
    .how-payment__banner__step__item:nth-child(3)
        .how-payment__banner__step__item__icon {
        position: relative;
        top: 8px;
        left: 93px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .how-payment__banner__step__item:nth-child(3)
        .how-payment__banner__step__item__icon {
        top: 6px;
        left: 77px;
    }
}

@media screen and (min-width: 768px) and (max-width: 870px) {
    .how-payment__banner__step__item:nth-child(3)
        .how-payment__banner__step__item__icon {
        left: 63px;
    }
}

@media screen and (min-width: 768px) {
    .how-payment__banner__step__item:nth-child(3)
        .how-payment__banner__step__item__title {
        position: relative;
        left: 61px;
        top: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .how-payment__banner__step__item:nth-child(3)
        .how-payment__banner__step__item__title {
        left: 45px;
    }
}

@media screen and (min-width: 768px) and (max-width: 870px) {
    .how-payment__banner__step__item:nth-child(3)
        .how-payment__banner__step__item__title {
        left: 30px;
    }
}

@media screen and (min-width: 768px) {
    .how-payment__banner__step__item:nth-child(4)
        .how-payment__banner__step__item__icon {
        position: relative;
        top: 8px;
        left: 203px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .how-payment__banner__step__item:nth-child(4)
        .how-payment__banner__step__item__icon {
        top: 6px;
        left: 170px;
    }
}

@media screen and (min-width: 768px) and (max-width: 870px) {
    .how-payment__banner__step__item:nth-child(4)
        .how-payment__banner__step__item__icon {
        left: 141px;
    }
}

@media screen and (min-width: 768px) {
    .how-payment__banner__step__item:nth-child(4)
        .how-payment__banner__step__item__title {
        position: relative;
        top: 30px;
        left: 160px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .how-payment__banner__step__item:nth-child(4)
        .how-payment__banner__step__item__title {
        left: 128px;
    }
}

@media screen and (min-width: 768px) and (max-width: 870px) {
    .how-payment__banner__step__item:nth-child(4)
        .how-payment__banner__step__item__title {
        left: 93px;
    }
}

.how-payment__banner__step__item__icon-wrapper {
    color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
    .how-payment__banner__step__item__icon-wrapper {
        --icon-width: 60px;
        width: var(--icon-width);
        height: var(--icon-width);
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #d9d9d9;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        background-color: rgba(217, 217, 217, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

.how-payment__banner__step__item__icon {
    width: 64px;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: hsl(var(--white));
    border-radius: 50%;
    -webkit-box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
    box-shadow:
        0 0 4px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px 0 rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 991px) {
    .how-payment__banner__step__item__icon {
        width: 56px;
        height: 56px;
    }
}

@media screen and (max-width: 870px) {
    .how-payment__banner__step__item__icon {
        width: 45px;
        height: 45px;
    }

    .how-payment__banner__step__item__icon svg {
        width: 24px;
        height: 24px;
    }
}

.how-payment__banner__step__item__title .name {
    font-size: 1.5rem;
    color: hsl(var(--neutral-800));
    font-weight: 600 !important;
}

@media screen and (max-width: 991px) {
    .how-payment__banner__step__item__title .name {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 424px) {
    .how-payment__banner__step__item__title .name {
        font-size: 1rem;
    }
}

@media screen and (max-width: 374px) {
    .how-payment__banner__step__item__title .name {
        font-size: 0.875rem;
    }
}

.payment-verification-card {
    padding: 24px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: hsl(var(--white));
    height: 100%;
}

.payment-verification-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background-color: hsl(var(--base));
    z-index: -1;
    -webkit-filter: blur(125px);
    filter: blur(125px);
}

.payment-verification-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
    margin-bottom: 24px;
}

.payment-verification-card__title {
    font-size: 1.125rem;
    color: hsl(var(--heading-color));
    margin-bottom: 5px;
}

@media screen and (max-width: 424px) {
    .payment-verification-card__title {
        font-size: 1rem;
    }
}

.payment-verification-card__desc {
    font-size: 1rem;
    font-weight: 400;
    color: hsl(var(--text-muted));
    line-height: 160%;
}

@media screen and (max-width: 424px) {
    .payment-verification-card__desc {
        font-size: 0.875rem;
    }
}

.payment-verification-card__icon i {
    font-size: 1.5rem;
}

/* =========================================== How payment Css Start ==============================*/
.how-work__fiat {
    z-index: 1;
    overflow: hidden;
}

.how-work__fiat::after {
    content: "";
    position: absolute;
    width: 612px;
    height: 612px;
    border-radius: 612px;
    background: #2883fc;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    right: -306px;
    top: -306px;
    z-index: -1;
}

.how-work__fiat::before {
    content: "";
    position: absolute;
    width: 612px;
    height: 612px;
    border-radius: 612px;
    background: #2883fc;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    left: -306px;
    bottom: -306px;
    z-index: -1;
}

.how-work__fiat-item__left {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #333234;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    position: relative;
}

@media screen and (max-width: 460px) {
    .how-work__fiat-item__left {
        width: 60px;
        height: 60px;
        padding: 4px;
    }
}

.how-work__fiat-item__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: hsl(var(--white));
    color: hsl(var(--heading-color));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.how-work__fiat-item__number span {
    font-size: 2.5rem;
    font-weight: 700;
}

@media screen and (max-width: 460px) {
    .how-work__fiat-item__number span {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 460px) {
    .how-work__fiat-item__number {
        width: 50px;
        height: 50px;
    }
}

.how-work__fiat-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.how-work__fiat-item:not(:last-child) {
    margin-bottom: 48px;
}

@media screen and (max-width: 460px) {
    .how-work__fiat-item {
        gap: 12px;
    }
}

.how-work__fiat-item:hover .how-work__fiat-item__number {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.how-work__fiat-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    background-color: hsl(var(--white));
    padding: 24px;
    border-radius: 18px;
}

@media screen and (max-width: 460px) {
    .how-work__fiat-item__content {
        padding: 16px;
        gap: 12px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.how-work__fiat-item__icon {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    background-color: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.5rem;
}

@media screen and (max-width: 460px) {
    .how-work__fiat-item__icon {
        width: 40px;
        height: 40px;
    }
}

.how-work__fiat-item__title {
    font-size: 1.25rem;
    color: hsl(var(--heading-color));
    margin-bottom: 5px;
    font-weight: 500;
}

.how-work__fiat-item__desc {
    font-size: 1rem;
    font-weight: 400;
    color: #45556c;
    line-height: 160%;
}

.how-work__fiat-item__right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 14px;
    border-radius: 22.727px;
    border-top: 1px solid hsl(var(--white) / 0.5);
    border-bottom: 1px solid hsl(var(--white) / 0.5);
    background: #5f6062;
    -webkit-box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
    box-shadow:
        0 0 3.33px 0 rgba(0, 0, 0, 0.04),
        0 6.66px 13.319px 0 rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 460px) {
    .how-work__fiat-item__right {
        padding: 8px;
    }
}

.how-work__fiat-item:last-child .fiat-stem,
.how-work__fiat-item:last-child
    .api-payment
    .api-payment__icon__wrapper::before,
.api-payment
    .how-work__fiat-item:last-child
    .api-payment__icon__wrapper::before,
.how-work__fiat-item:last-child .api-payment .api-payment__icon__wrapper::after,
.api-payment
    .how-work__fiat-item:last-child
    .api-payment__icon__wrapper::after {
    display: none;
}

.fiat-stem,
.api-payment .api-payment__icon__wrapper::before,
.api-payment .api-payment__icon__wrapper::after {
    width: 10px;
    height: 92%;
    background-color: #333234;
    position: absolute;
    top: 50%;
    left: 35px;
    z-index: -1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .fiat-stem,
    .api-payment .api-payment__icon__wrapper::before,
    .api-payment .api-payment__icon__wrapper::after {
        height: 80%;
    }
}

@media screen and (max-width: 460px) {
    .fiat-stem,
    .api-payment .api-payment__icon__wrapper::before,
    .api-payment .api-payment__icon__wrapper::after {
        width: 10px;
        left: 25px;
    }
}

.how-work__fiat-item__group {
    -webkit-filter: url("#goo");
    filter: url("#goo");
}

.how-crypto__work {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.how-crypto__work::after {
    content: "";
    position: absolute;
    width: 874px;
    height: 874px;
    top: -360px;
    right: -678px;
    opacity: 0.25;
    background-color: #2883fc;
    -webkit-filter: blur(225px);
    filter: blur(225px);
    z-index: -1;
    border-radius: 50%;
}

@media screen and (max-width: 1499px) {
    .how-crypto__work::after {
        width: 600px;
        height: 600px;
    }
}

@media screen and (max-width: 991px) {
    .how-crypto__work::after {
        display: none;
    }
}

.how-crypto__work .inner-shape {
    position: absolute;
    top: 300px;
    left: -250px;
    z-index: -1;
    opacity: 0.7;
}

.how-crypto__work__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    position: relative;
}

.how-crypto__work__item::before {
    content: "";
    position: absolute;
    left: 125px;
    width: 62px;
    height: 88px;
    background-size: cover;
    top: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

@media screen and (max-width: 767px) {
    .how-crypto__work__item::before {
        display: none;
    }
}

.how-crypto__work__item__title {
    font-size: 1.25rem;
    font-weight: 500;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
    .how-crypto__work__item__title {
        overflow: unset;
        text-overflow: unset;
        display: normal;
        -webkit-line-clamp: unset;
    }
}

.how-crypto__work__item__desc {
    font-size: 1rem;
    font-weight: 400;
    color: #45556c;
    line-height: 160%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
    .how-crypto__work__item__desc {
        overflow: unset;
        text-overflow: unset;
        display: normal;
        -webkit-line-clamp: unset;
    }
}

.how-crypto__work__item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    padding: 14px;
}

.how-crypto__work__item__icon {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    background-color: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.how-crypto__work__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    position: relative;
}

.how-crypto__work__item:nth-child(even)::before {
    content: "";
    position: absolute;
    right: 125px;
    left: unset;
    width: 62px;
    height: 88px;
    background-size: cover;
    top: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

.how-crypto__work__item:nth-child(even) .soft-shape {
    position: absolute;
    right: 125px;
    height: 128px;
    width: 16px;
}

.how-crypto__work__item:nth-child(even) .soft-shape::after {
    content: "";
    width: 16px;
    height: 30px;
    position: absolute;
    background: #fafafa;
    right: 2px;
    border-radius: 10px;
}

.how-crypto__work__item:nth-child(even) .soft-shape::before {
    content: "";
    width: 16px;
    height: 30px;
    position: absolute;
    background: #fafafa;
    right: 2px;
    border-radius: 10px;
    bottom: 0px;
}

.how-crypto__work__item:nth-child(odd) {
    position: relative;
}

.how-crypto__work__item:nth-child(odd) .soft-shape {
    position: absolute;
    left: 125px;
    height: 128px;
    width: 16px;
}

.how-crypto__work__item:nth-child(odd) .soft-shape::after {
    content: "";
    width: 16px;
    height: 30px;
    position: absolute;
    background: #fafafa;
    left: 2px;
    border-radius: 10px;
}

.how-crypto__work__item:nth-child(odd) .soft-shape::before {
    content: "";
    width: 16px;
    height: 30px;
    position: absolute;
    background: #fafafa;
    left: 2px;
    border-radius: 10px;
    bottom: 0px;
}

.how-crypto__work__item__counter {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    background-color: hsl(var(--white));
    color: hsl(var(--heading-color));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 800;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 3rem;
}

@media screen and (max-width: 767px) {
    .how-crypto__work__item__counter {
        width: unset;
        height: unset;
        background-color: transparent !important;
        font-size: 2rem;
        color: hsl(var(--text-muted) / 0.6);
    }
}

.how-crypto__work__item__left {
    padding: 14px;
    background-color: #dcdcdc;
    border-radius: 16px;
    background: linear-gradient(145deg, #dcdcdc, #dcdcdc);
    -webkit-filter: drop-shadow(0 6.66px 13.319px rgba(0, 0, 0, 0.08))
        drop-shadow(0 0 3.33px rgba(0, 0, 0, 0.04));
    filter: drop-shadow(0 6.66px 13.319px rgba(0, 0, 0, 0.08))
        drop-shadow(0 0 3.33px rgba(0, 0, 0, 0.04));
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
    .how-crypto__work__item__left {
        background: transparent;
        padding: 0px;
        border: none;
        border-radius: unset;
        position: absolute;
        z-index: 1;
        right: 40px;
        top: 30px;
    }
}

.how-crypto__work__item__right {
    padding: 14px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 16px;
    background: linear-gradient(145deg, #dcdcdc, #dcdcdc);
    -webkit-filter: drop-shadow(0 6.66px 13.319px rgba(0, 0, 0, 0.08))
        drop-shadow(0 0 3.33px rgba(0, 0, 0, 0.04));
    filter: drop-shadow(0 6.66px 13.319px rgba(0, 0, 0, 0.08))
        drop-shadow(0 0 3.33px rgba(0, 0, 0, 0.04));
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.how-crypto__work__item__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 14px;
    border-radius: 15px;
    border-top: 1px solid hsl(var(--white) / 0.5);
    border-bottom: 1px solid hsl(var(--white) / 0.5);
    padding: 24px;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .how-crypto__work__item__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.how-crypto__work__item {
    position: relative;
}

.how-crypto__work__item:not(:last-of-type) {
    margin-bottom: 24px;
}

.api-payment__left {
    position: relative;
}

@media screen and (max-width: 575px) {
    .api-payment__left {
        margin-bottom: 10px;
    }
}

.api-payment__left .api-payment__cunter .number {
    color: hsl(var(--white));
    font-weight: 800;
    text-align: end;
}

@media screen and (max-width: 424px) {
    .api-payment__left .api-payment__cunter .number {
        text-align: center;
    }
}

.api-payment__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .api-payment__content {
        gap: 16px;
    }
}

@media screen and (max-width: 424px) {
    .api-payment__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
}

.api-payment .api-payment__icon__wrapper {
    width: 200px;
    height: 135px;
    background: #414367;
    padding: 12px;
    border-radius: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    -webkit-filter: url(#goo);
    filter: url(#goo);
}

@media screen and (max-width: 991px) {
    .api-payment .api-payment__icon__wrapper {
        width: 150px;
        height: 100px;
    }
}

.api-payment .api-payment__icon__wrapper::before,
.api-payment .api-payment__icon__wrapper::after {
    content: "";
    background-color: #414367;
    left: 26px;
    top: 80%;
    -webkit-transform: rotate(49deg);
    transform: rotate(49deg);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    width: 20px;
    border-radius: 0px;
}

@media screen and (max-width: 1199px) {
    .api-payment .api-payment__icon__wrapper::before,
    .api-payment .api-payment__icon__wrapper::after {
        display: none !important;
    }
}

.api-payment .api-payment__icon__wrapper::after {
    left: unset;
    right: 26px;
    -webkit-transform: rotate(-49deg);
    transform: rotate(-49deg);
}

@media screen and (max-width: 991px) {
    .api-payment .api-payment__icon__wrapper .api-payment__icon svg {
        width: 45px;
        height: 45px;
    }
}

.api-payment__icon {
    background-color: hsl(var(--white));
    color: hsl(var(--base));
    border-radius: 15px;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.api-payment__info {
    max-width: 390px;
}

@media screen and (max-width: 1199px) {
    .api-payment__info {
        max-width: 100%;
    }
}

.api-payment__info__title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(var(--white));
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 991px) {
    .api-payment__info__title {
        font-size: 1.5rem;
    }
}

.api-payment__info__desc {
    font-size: 1.125rem;
    color: hsl(var(--neutral-200));
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 991px) {
    .api-payment__info__desc {
        font-size: 1rem;
    }
}

.api-row-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

@media screen and (max-width: 991px) {
    .api-row-wrapper {
        gap: 16px;
    }
}

@media screen and (max-width: 575px) {
    .api-row-wrapper {
        display: block;
    }
}

.api-row-wrapper .api-col-wrapper {
    max-width: 50%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 1199px) {
    .api-row-wrapper .api-col-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .api-row-wrapper .api-col-wrapper:has(.api-payment__left) {
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}

@media screen and (max-width: 1199px) and (max-width: 424px) {
    .api-row-wrapper .api-col-wrapper:has(.api-payment__left) {
        max-width: 100%;
    }
}

.api-row-wrapper:not(:last-child) {
    margin-bottom: 32px;
}

.api-row-wrapper:last-child .api-payment__icon__wrapper::before {
    display: none;
}

.api-row-wrapper:first-child .api-payment__icon__wrapper::after {
    display: none;
}

.api-row-wrapper:nth-child(odd) .api-payment__icon__wrapper::after {
    left: auto;
    left: -37px;
    bottom: 61%;
    top: auto;
    z-index: -1;
    height: 50%;
}

@media screen and (max-width: 1399px) {
    .api-row-wrapper:nth-child(odd) .api-payment__icon__wrapper::after {
        left: -28px;
    }
}

@media screen and (min-width: 1200px) {
    .api-row-wrapper:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 1200px) {
    .api-row-wrapper:nth-child(even) .api-payment__icon__wrapper {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.api-row-wrapper:nth-child(even) .api-payment__icon__wrapper::before {
    left: auto;
    right: -37px;
    bottom: 61%;
    top: auto;
    z-index: -1;
    height: 50%;
}

@media screen and (max-width: 1399px) {
    .api-row-wrapper:nth-child(even) .api-payment__icon__wrapper::before {
        right: -28px;
    }
}

.api-row-wrapper:nth-child(even) .api-payment__info {
    text-align: right;
}

@media screen and (max-width: 1199px) {
    .api-row-wrapper:nth-child(even) .api-payment__info {
        text-align: left;
    }
}

@media screen and (max-width: 424px) {
    .api-row-wrapper:nth-child(even) .api-payment__info {
        text-align: center;
    }
}

.api-row-wrapper:nth-child(even) .api-payment__cunter .number {
    text-align: start !important;
}

@media screen and (max-width: 424px) {
    .api-row-wrapper:nth-child(even) .api-payment__cunter .number {
        text-align: center !important;
    }
}

.security-card .payment-verification-card__icon {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.api-payment__heading {
    position: relative;
}

@media screen and (max-width: 1199px) {
    .api-payment__heading {
        margin-bottom: 50px;
    }
}

.api-payment__heading .title {
    max-width: 550px;
    position: absolute;
    top: -50px;
}

@media screen and (max-width: 1199px) {
    .api-payment__heading .title {
        position: unset;
        max-width: 100%;
    }
}

/* analysis design start here */

.card {
    --space: 24px;
    border-radius: 14px !important;
    border: 1px solid #e5e7eb;
    box-shadow:
        0px 1px 3px rgba(0, 0, 0, 0.1),
        0px 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
}

.card:has(.card-header + .card-body) .card-body {
    padding-top: calc(var(--space) / 2);
}

[data-theme="dark"] .card {
    border-color: hsl(var(--black) / 0.2);
}

.card .card-header {
    padding: 16px 24px 16px 24px;
    background-color: transparent;
}

.card .card-body {
    background-color: transparent;
    border-radius: 14px !important;
    padding: 24px;
}

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

.widget-card-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 12;
}

/* analytics widget card design start here */
.analytics-widget-card {
    padding: 16px;
    position: relative;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
}

.analytics-widget-card:hover {
    transform: translateY(-5px);
}

[data-theme="dark"] .analytics-widget-card {
    border-color: hsl(var(--black) / 0.2);
    background-color: #353b54;
}

.analytics-widget-card-arrow i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.analytics-widget-card:hover .analytics-widget-card-arrow i {
    transform: rotate(0deg);
}

.analytics-widget-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.analytics-widget-card__amount {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 7px;
}

.analytics-widget-card-arrow {
    color: #99a1af;
}

.gateway-widget-card {
    padding: 16px;
    position: relative;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.gateway-widget-card:hover {
    transform: translateY(-5px);
}

[data-theme="dark"] .gateway-widget-card {
    border-color: hsl(var(--black) / 0.2);
    background-color: #353b54;
}

.gateway-widget-card__header {
    margin-bottom: 10px;
}

.gateway-widget-card__amount {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 7px;
}

/* analytics widget card design start here */

.currency-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
}

.currency-item .heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-item .currency-img {
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.currency-item .currency-img img {
    height: 100%;
    width: 100%;
}

.currency-wrapper {
    margin-top: 6px;
}

.currency-item .heading {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.currency-item .currency-img {
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.heading-content .name {
    font-size: 14px;
}

.currency-item .content {
    text-align: center;
}

[data-theme="dark"] .currency-item {
    background-color: hsl(var(--light));
    border: 1px solid hsl(var(--border-color));
}

[data-theme="dark"] span.apexcharts-legend-text {
    color: hsl(var(--secondary)) !important;
}

/* chart badge design start here */
.chart-badge-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
    .chart-badge-group {
        gap: 12px !important;
    }
}

.chart-badge__icon {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.chart-badge__title {
    font-size: 14px;
    color: hsl(var(--secondary));
}

.chart-badge {
    --primary: #3b82f6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ff3e1d;
    --purple: #8b5cf6;
}

.chart-badge--primary .chart-badge__icon {
    background-color: var(--primary);
}

.chart-badge--success .chart-badge__icon {
    background-color: var(--success);
}

.chart-badge--warning .chart-badge__icon {
    background-color: var(--warning);
}

.chart-badge--danger .chart-badge__icon {
    background-color: var(--danger);
}

.chart-badge--purple .chart-badge__icon {
    background-color: var(--purple);
}

.chat-list-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.chat-list-data__item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.chat-list-data .chart-badge__icon {
    border-radius: 50%;
}

.gateway-widget-card {
    --primary: 59, 130, 246;
    --success: 16, 185, 129;
    --warning: 245, 158, 11;
    --danger: 255, 62, 29;
    --purple: 139, 92, 246;
}

.pulse-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
}

.gateway-widget--primary .pulse-dot {
    background: rgb(var(--primary));
}

.gateway-widget--primary .pulse-ring {
    background: rgba(var(--primary), 0.25);
}

.gateway-widget--success .pulse-dot {
    background: rgb(var(--success));
}

.gateway-widget--success .pulse-ring {
    background: rgba(var(--success), 0.25);
}

.gateway-widget--warning .pulse-dot {
    background: rgb(var(--warning));
}

.gateway-widget--warning .pulse-ring {
    background: rgba(var(--warning), 0.25);
}

.gateway-widget--danger .pulse-dot {
    background: rgb(var(--danger));
}

.gateway-widget--danger .pulse-ring {
    background: rgba(var(--danger), 0.25);
}

.gateway-widget--primary .pulse-wrapper {
    background: rgba(var(--primary), 0.1);
}

.gateway-widget--success .pulse-wrapper {
    background: rgba(var(--success), 0.1);
}

.gateway-widget--warning .pulse-wrapper {
    background: rgba(var(--warning), 0.1);
}

.gateway-widget--danger .pulse-wrapper {
    background: rgba(var(--danger), 0.1);
}

.pulse-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: pulse 1.8s infinite ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

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

.user-browser__item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

[data-theme="dark"] .user-browser__item {
    background: #353b54;
}

.user-browser__item:not(:last-child) {
    margin-bottom: 12px;
}

.user-browser__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-browser__icon {
    font-size: 16px;
}

.user-browser__icon--dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f59e0b;
}

.user-browser__label {
    font-size: 14px;
    font-weight: 500;
}

.user-browser__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-browser__value {
    font-size: 14px;
    font-weight: 400;
}

.user-browser__bar {
    width: 130px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.user-browser__progress {
    height: 100%;
    border-radius: 10px;
}

/* Modifier Colors */

.user-browser__progress--chrome {
    background: #3b82f6;
}

.user-browser__progress--firefox {
    background: #10b981;
}

.user-browser__progress--other {
    background: #f59e0b;
}

.responsive-row {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
    margin-bottom: var(--bs-gutter-y);
}

/* =========================================== Blog Details Css Start ==============================*/
.blog-details {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    -webkit-box-shadow: 0px 2px 15px hsl(var(--white) / 0.25);
    box-shadow: 0px 2px 15px hsl(var(--white) / 0.25);
}

.blog-details__thumb {
    height: 595px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
    .blog-details__thumb {
        height: 350px;
    }
}

@media screen and (max-width: 767px) {
    .blog-details__thumb {
        height: 300px;
    }
}

.blog-details__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-details__title {
    margin-bottom: 15px;
}

.blog-details__desc {
    margin-bottom: 15px;
}

.blog-details__desc h4 {
    margin-bottom: 1rem;
}

/* ========================================== Blog Details Css End ======================================*/

.blog-sidebar {
    border-radius: 5px;
    position: sticky;
    top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.blog-sidebar__header {
    margin-bottom: 10px;
}

.blog-sidebar__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.blog-sidebar__title {
    position: relative;
    padding-bottom: 10px;
    color: hsl(var(--black));
}

.blog-sidebar__title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: hsl(var(--base));
    left: 0;
    bottom: 0px;
}

.blog-sidebar .contact-social-link__list__item__link {
    width: 40px;
    height: 40px;
}

.blog-sidebar .contact-social-link__list__item__link svg {
    width: 18px !important;
    width: 18px !important;
}

.latest-blog-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.latest-blog-item:last-of-type {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0;
}

.latest-blog-item__thumb {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 9px;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.latest-blog-item__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 424px) {
    .latest-blog-item__thumb {
        width: 60px;
        height: 60px;
    }
}

.latest-blog-item__thumb a {
    display: block;
    height: 100%;
    width: 100%;
}

.latest-blog-item__content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

@media screen and (max-width: 424px) {
    .latest-blog-item__content {
        width: calc(100% - 60px);
    }
}

.latest-blog-item__title {
    margin-bottom: 5px;
}

.latest-blog-item__title a {
    color: hsl(var(--heading-color));
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest-blog-item__title a:hover {
    color: hsl(var(--base));
}

/* ========================= Blog Sidebar CSS End =========================== */

/*========================== apon ==========================*/
.about__banner__subtitle {
    display: inline-flex;
    color: hsl(var(--white));
    border-radius: 50px;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 16px;
    background-color: hsl(var(--black));
    border: 1px solid hsl(var(--base));
    box-shadow:
        0 0 2.556px 0 hsl(var(--base)),
        0 0 1.278px 0 hsl(var(--base));
}

.total__left__subtitle {
    font-size: 22px;
    font-weight: 500;
    color: hsl(var(--base));
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.total__left__subtitle::after {
    content: "";
    height: 2px;
    width: 40px;
    position: absolute;
    left: 0;
    top: 15px;
    z-index: 2;
    background-color: hsl(var(--base));
}

.total__left__title {
    font-size: 150px;
    font-weight: 800;
    color: hsl(var(--base));
    line-height: 1;
}

.total__left__shape {
    height: 2px;
    width: 100%;
    background: linear-gradient(
        90deg,
        hsl(var(--base)) 0%,
        hsl(var(--white)) 100%
    );
}

.total__left__desc {
    font-size: 24px;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.total__right {
    margin-left: 30px;
}

.total__right__title {
    font-size: 64px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 10px;
}

.total__right__title span {
    color: hsl(var(--base));
}

.total__right__desc {
    font-size: 18px;
    font-weight: 400;
    color: hsl(var(--heading-color));
    max-width: 550px;
}

.total_value__icon {
    height: 72px;
    width: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(var(--base) / 0.1);
    color: hsl(var(--base));
    border-radius: 12px;
}

.total_value__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 146px;
}

.total_value__text {
    font-size: 64px;
    font-weight: 800;
    color: hsl(var(--base) / 0.1);
}

.total_value__title {
    font-size: 24px;
    font-weight: 600;
    color: hsl(var(--heading-color));
    margin-bottom: 4px;
}

.total_value__desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.total_value__button {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.total_value__item {
    border: 1px solid hsl(var(--base) / 0.15);
    border-radius: 24px;
    margin-top: 65px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.total_value__card {
    padding: 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
    background-color: hsl(var(--white));
    height: 100%;
}

.total_value__card:hover .total_value__card__bg {
    opacity: 1;
}

.total_value__card__bg {
    position: absolute;
    bottom: 0;
    right: -290px;
    z-index: -1;
    opacity: 0;
}

.total_value__item .col-lg-4:nth-child(2) .total_value__card {
    border-left: 1px solid hsl(var(--base) / 0.2);
    border-right: 1px solid hsl(var(--base) / 0.2);
    height: 100%;
}

@media screen and (min-width: 1399px) {
    .mission__card__wrap .row .col-sm-6:nth-child(3) .mission__card {
        margin-top: -30px;
    }
}

.mission__card__icon {
    margin-bottom: 24px;
}

.mission__card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mission__card__desc {
    font-size: 16px;
    font-weight: 400;
}

.our__mission {
    background-color: hsl(var(--black));
    border-radius: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.our__mission__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.our__mission__bg2 svg {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

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

.our__mission__subtitle {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 4px;
    color: hsl(var(--base));
    margin-bottom: 30px;
}

.our__mission__title {
    font-size: 64px;
    font-weight: 800;
    color: hsl(var(--white));
    margin-bottom: 30px;
}

.our__mission__desc {
    font-size: 18px;
    font-weight: 600;
    color: hsl(var(--white));
}

.mission__card {
    background-color: hsl(var(--white) / 0.15);
    border: 1px solid hsl(var(--white) / 0.4);
    padding: 32px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.mission__card__desc {
    color: hsl(var(--base) / 0.5);
}

.mission__card__wrap .row .col-sm-6:nth-child(1) .mission__card {
    box-shadow: 4px 4px 50px 0 rgba(253, 174, 0, 0.5);
}

.mission__card__desc {
    color: hsl(var(--white) / 0.6);
}

@media screen and (min-width: 1399px) {
    .mission__card__wrap .row .col-sm-6:nth-child(3) .mission__card {
        margin-top: -30px;
    }
}

.custom-tab {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px !important;
}

.custom-tab .nav-link {
    background-color: hsl(var(--white)) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    border-radius: 50px;
    color: hsl(var(--black) / 0.5);
    font-size: 20px;
    font-weight: 600;
}

.custom-tab .nav-link.active {
    background: linear-gradient(90deg, #fdc700 0%, #fe9a00 100%) !important;
    color: hsl(var(--black));
    border-color: hsl(var(--warning));
    box-shadow:
        0 12.516px 18.774px -3.755px rgba(240, 177, 0, 0.3),
        0 5.007px 7.51px -5.007px rgba(240, 177, 0, 0.3);
}

.pratform__content {
    text-align: center;
}

.pratform__content__title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pratform__content__desc {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
}

.currency__card {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--black) / 0.1);
    border-radius: 14px;
    padding: 22px;
}

.currency__card__icon {
    color: hsl(var(--black));
    margin-bottom: 10px;
}

.currency__card__title {
    font-size: 15px;
    font-weight: 700;
    color: hsl(var(--heading-color));
    margin-bottom: 4px;
}

.currency__card__desc {
    font-size: 12px;
    font-weight: 400;
}

.our__mission::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(
        107.13% 140% at 50% 50%,
        rgba(0, 0, 0, 0) 37.41%,
        hsl(var(--base-d-600)) 69.27%,
        hsl(var(--white)) 100%
    );
}

.about__banner__content {
    margin-bottom: 56px;
}

.counter__title {
    color: hsl(var(--base));
    font-size: 64px;
    font-weight: 800;
}

.counter__title span {
    color: hsl(var(--white));
}

.counter__item__desc {
    font-size: 18px;
    font-weight: 500;
    color: hsl(var(--white) / 0.4);
}

.about__banner__counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    margin: auto;
    width: 100%;
}

.about__banner__thumb {
    position: relative;
    z-index: 1;
}

.mission__card__wrap {
    margin-top: 65px !important;
}

.total_value__item__bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mt-6 {
    margin-bottom: 65px !important;
}

.about__banner__title {
    font-size: 91px;
}

.about__banner__desc {
    margin-bottom: 60px;
}

@media screen and (max-width: 1399px) {
    .about__banner__title {
        font-size: 60px;
    }

    .counter__title {
        font-size: 48px;
    }

    .total__left__title {
        font-size: 90px;
    }

    .total__right__title {
        font-size: 48px;
    }

    .total_value__item__bg svg {
        max-width: 500px;
        margin: auto;
    }

    .mission__card__wrap {
        margin-top: 20px !important;
    }

    .mission__card__wrap .col-md-6:nth-child(3) .mission__card {
        margin-top: unset;
    }

    .mission__card {
        height: 100%;
    }

    .our__mission__title {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .our__mission__subtitle {
        margin-bottom: 14px;
    }

    .pratform__content__title {
        font-size: 50px;
    }
}

@media screen and (max-width: 991px) {
    .counter__title {
        font-size: 30px;
    }

    .about__banner__title {
        font-size: 40px;
    }

    .total__right {
        margin-left: 0;
    }

    .total__left {
        margin-bottom: 30px;
    }

    .total_value__item .col-lg-4:nth-child(2) .total_value__card {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid hsl(var(--base) / 0.2);
        border-bottom: 1px solid hsl(var(--base) / 0.2);
        height: 100%;
    }

    .our__mission__thumb {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .about__banner__thumb img {
        display: none;
    }

    .counter__title span {
        color: hsl(var(--heading-color));
    }

    .counter__title {
        font-size: 20px;
    }

    .about__banner__counter {
        position: unset !important;
        transform: unset !important;
        max-width: 100% !important;
        justify-content: center;
        gap: 24px;
        text-align: center;
    }

    .about__banner {
        padding-top: 140px !important;
    }

    .about__banner__content {
        margin-bottom: 24px;
    }

    .about__banner__subtitle {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .about__banner__title {
        margin-bottom: 16px;
    }

    .counter__item__desc {
        color: hsl(var(--black));
        font-size: 14px;
    }

    .total__left__title {
        font-size: 50px;
    }

    .total__left__subtitle {
        padding-bottom: 14px;
        font-size: 16px;
    }

    .total__left__subtitle::after {
        width: 32px;
        left: 4px;
        top: 12px;
    }

    .total__right__title {
        font-size: 32px;
    }

    .our__mission__title {
        font-size: 35px;
        margin-bottom: 12px;
    }

    .pratform__content__title {
        font-size: 38px;
    }
}

@media screen and (max-width: 576px) {
    .about__banner__title {
        font-size: 25px !important;
    }

    .about__banner__desc {
        margin-bottom: 30px;
    }

    .about__banner__counter {
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .total__left__title {
        font-size: 30px;
    }

    .total__left__desc {
        font-size: 18px;
    }

    .total__left {
        margin-bottom: 18px;
    }

    .total__right__title {
        font-size: 24px;
    }

    .total__right__desc {
        font-size: 15px;
    }

    .total_value__item__bg svg {
        max-width: 319px;
        margin: auto;
    }

    .our__mission__title {
        font-size: 25px;
    }

    .pratform__content__title {
        font-size: 25px;
    }
}

.about__banner {
    position: relative;
    z-index: 1;
    padding-top: 180px;
}

.about__banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 424px) {
    .about__banner__subtitle {
        padding: 6px 14px;
    }

    .total__right__title {
        font-size: 20px;
    }

    .total_value__heading {
        margin-bottom: 32px;
    }

    .total_value__icon {
        height: 60px;
        width: 60px;
    }

    .mission__card {
        padding: 20px;
    }

    .our__mission__subtitle {
        font-size: 15px;
    }

    .our__mission__desc {
        font-size: 15px;
    }
}

@media screen and (max-width: 375px) {
    .total_value__item__bg svg {
        max-width: 188px;
        margin: auto;
    }
}

@media screen and (max-width: 991px) {
    .section-padding-top {
        padding-top: 120px;
    }
}
