@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/*================ Css Variables Start ===============*/
:root {
  /* === Font Family === */
  --heading-font: "Helvetica-Bold", sans-serif;
  --body-font: "Helvetica-Bold", sans-serif;
  --body-font-family: "Helvetica-Bold", sans-serif;
  --body-font-family-bold: "Inter", sans-serif;
  --body-font-family-bold-italic: "Inter", sans-serif;
  --body-font-family-italic: "Inter", "Inter Placeholder", sans-serif;
  /* === TypoGraphy ===*/
  --heading-one: clamp(1.5rem, 2.8vw + 1rem, 3.75rem);
  --heading-two: clamp(1.375rem, 1.7vw + 1rem, 2.5rem);
  --heading-three: clamp(1.25rem, 0.8vw + 1rem, 1.875rem);
  --heading-four: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
  --heading-five: clamp(1.0625rem, 0.3vw + 1rem, 1.25rem);
  --heading-six: 1rem;
  /* ======================== Color Variables Start ===========================*/
  /*== White Color ==*/
  --white: 0 0% 100%;
  /*== Light Color ==*/
  --light-h: 0;
  --light-s: 0%;
  --light-l: 78%;
  --light: var(--light-h) var(--light-s) var(--light-l);
  /*== Black Color ==*/
  --black-h: 0;
  --black-s: 0%;
  --black-l: 0%;
  --black: var(--black-h) var(--black-s) var(--black-l);
  --heading-color: var(--white);
  --body-color: 0 0% 100%;
  --border-color: 0 0% 88%;
  --body-background: 240 11% 14%;
  --section-bg: 208 100% 97%;
  --mixed-color: hsl(calc((var(--black) + var(--base)) / 2));
  /*================================ Border-radius ===============================*/
  --border-radius: 15px;
  --border-radius-sm: 8px;
  /*================================ Box Shadow Start ===============================*/
  --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
  --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) / 0.92);
  --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
  /* ================================ Base Light Color =============================== */
  --base-light-h: 152;
  --base-light-s: 100%;
  --base-light-l: 50%;
  --base-light: var(--base-light-h) var(--base-light-s) var(--base-light-l);
  /*========================= Base Color =============================*/
  --base-h: 354;
  --base-s: 88%;
  --base-l: 71%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  /*== Base Darken ==*/
  --base-d-100: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.1);
  --base-d-200: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.2);
  --base-d-300: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.3);
  --base-d-400: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.4);
  --base-d-500: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.5);
  --base-d-600: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.6);
  --base-d-700: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-700: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-800: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-800: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-900: var(--base-h) var(--base-s)
    calc(var(--base-l) - var(--base-l) * 0.9);
  /*== Base Lighten ==*/
  --base-l-100: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
  --base-l-200: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  --base-l-300: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
  --base-l-400: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
  --base-l-500: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
  --base-l-600: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
  --base-l-700: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
  --base-l-800: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
  --base-l-900: var(--base-h) calc(var(--base-s))
    calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
  --background-gradient: linear-gradient(
    45deg,
    hsl(var(--base)),
    hsl(var(--base-two))
  );
  /*========================= Base Two Color =============================*/
  --base-two-h: 354;
  --base-two-s: 88%;
  --base-two-l: 81%;
  --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
  /*== Base Two Darken ==*/
  --base-two-d-100: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.05);
  --base-two-d-200: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.1);
  --base-two-d-300: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.2);
  --base-two-d-400: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.3);
  --base-two-d-500: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.4);
  --base-two-d-600: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.5);
  --base-two-d-700: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.6);
  --base-two-d-800: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.7);
  --base-two-d-900: var(--base-two-h) var(--base-two-s)
    calc(var(--base-two-l) - var(--base-two-l) * 0.8);
  /*=== Base Two Lighten ===*/
  --base-two-l-100: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.05);
  --base-two-l-200: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
  --base-two-l-300: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
  --base-two-l-400: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
  --base-two-l-500: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
  --base-two-l-600: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
  --base-two-l-700: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
  --base-two-l-800: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
  --base-two-l-900: var(--base-two-h) calc(var(--base-two-s))
    calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
  /*=== Dark Color ===*/
  --base-dark-color: #111111;
  --dark-h: 228;
  --dark-s: 67%;
  --dark-l: 12%;
  --dark: var(--dark-h) var(--dark-s) var(--dark-l);
  --dark-d-100: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.1);
  --dark-d-200: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.2);
  --dark-d-300: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.3);
  --dark-d-400: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.4);
  --dark-d-500: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.5);
  --dark-d-600: var(--dark-h) var(--dark-s)
    calc(var(--dark-l) - var(--dark-l) * 0.6);
  --dark-l-100: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.1);
  --dark-l-200: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.2);
  --dark-l-300: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.3);
  --dark-l-400: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.4);
  --dark-l-500: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.5);
  --dark-l-600: var(--dark-h) calc(var(--dark-s))
    calc(var(--dark-l) + (100% - var(--dark-l)) * 0.6);
  /*========================= Bootstrap Modifier Start ========================*/
  --primary-h: 211;
  --primary-s: 100%;
  --primary-l: 50%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  /*=== Primary Darken ===*/
  --primary-d-100: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.1);
  --primary-d-200: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.2);
  --primary-d-300: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.3);
  --primary-d-400: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.4);
  --primary-d-500: var(--primary-h) var(--primary-s)
    calc(var(--primary-l) - var(--primary-l) * 0.5);
  /*=== primary Lighten ===*/
  --primary-l-100: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
  --primary-l-200: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
  --primary-l-300: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
  --primary-l-400: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
  --primary-l-500: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
  --primary-l-600: var(--primary-h) calc(var(--primary-s))
    calc(var(--primary-l) + (100% - var(--primary-l)) * 0.6);
  /*=== Secondary Color ===*/
  --secondary-h: 210;
  --secondary-s: 11%;
  --secondary-l: 71%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
  /*=== Secondary Darken ===*/
  --secondary-d-100: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.1);
  --secondary-d-200: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.2);
  --secondary-d-300: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.3);
  --secondary-d-400: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.4);
  --secondary-d-500: var(--secondary-h) var(--secondary-s)
    calc(var(--secondary-l) - var(--secondary-l) * 0.5);
  /*=== secondary Lighten ===*/
  --secondary-l-100: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
  --secondary-l-200: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
  --secondary-l-300: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
  --secondary-l-400: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
  --secondary-l-500: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
  --secondary-l-600: var(--secondary-h) calc(var(--secondary-s))
    calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.6);
  /*=== Success Color ===*/
  --success-h: 115;
  --success-s: 100%;
  --success-l: 47%;
  --success: var(--success-h) var(--success-s) var(--success-l);
  /*=== Success Darken ===*/
  --success-d-100: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.1);
  --success-d-200: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.2);
  --success-d-300: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.3);
  --success-d-400: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.4);
  --success-d-500: var(--success-h) var(--success-s)
    calc(var(--success-l) - var(--success-l) * 0.5);
  /*=== Success Lighten ===*/
  --success-l-100: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
  --success-l-200: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
  --success-l-300: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
  --success-l-400: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
  --success-l-500: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
  --success-l-600: var(--success-h) calc(var(--success-s))
    calc(var(--success-l) + (100% - var(--success-l)) * 0.6);
  /*=== Danger Color ==*/
  --danger-h: 0;
  --danger-s: 96%;
  --danger-l: 63%;
  --danger: var(--danger-h) var(--danger-s) var(--danger-l);
  /*=== Danger Darken ===*/
  --danger-d-100: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.1);
  --danger-d-200: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.2);
  --danger-d-300: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.3);
  --danger-d-400: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.4);
  --danger-d-500: var(--danger-h) var(--danger-s)
    calc(var(--danger-l) - var(--danger-l) * 0.5);
  /*=== danger Lighten ===*/
  --danger-l-100: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
  --danger-l-200: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
  --danger-l-300: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
  --danger-l-400: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
  --danger-l-500: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
  --danger-l-600: var(--danger-h) calc(var(--danger-s))
    calc(var(--danger-l) + (100% - var(--danger-l)) * 0.6);
  /*=== Warning Color ===*/
  --warning-h: 29;
  --warning-s: 88%;
  --warning-l: 59%;
  --warning: var(--warning-h) var(--warning-s) var(--warning-l);
  /*=== Warning Darken ===*/
  --warning-d-100: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.1);
  --warning-d-200: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.2);
  --warning-d-300: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.3);
  --warning-d-400: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.4);
  --warning-d-500: var(--warning-h) var(--warning-s)
    calc(var(--warning-l) - var(--warning-l) * 0.5);
  /*===  Warning Lighten ===*/
  --warning-l-100: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
  --warning-l-200: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
  --warning-l-300: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
  --warning-l-400: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
  --warning-l-500: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
  --warning-l-600: var(--warning-h) calc(var(--warning-s))
    calc(var(--warning-l) + (100% - var(--warning-l)) * 0.6);
  /*=== Info Color ===*/
  --info-h: 196;
  --info-s: 100%;
  --info-l: 50%;
  --info: var(--info-h) var(--info-s) var(--info-l);
  /*=== Info Darken ===*/
  --info-d-100: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.1);
  --info-d-200: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.2);
  --info-d-300: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.3);
  --info-d-400: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.4);
  --info-d-500: var(--info-h) var(--info-s)
    calc(var(--info-l) - var(--info-l) * 0.5);
  /*=== nfo Lighten ===*/
  --info-l-100: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
  --info-l-200: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
  --info-l-300: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
  --info-l-400: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
  --info-l-500: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
  --info-l-600: var(--info-h) calc(var(--info-s))
    calc(var(--info-l) + (100% - var(--info-l)) * 0.6);
  /*=== Violet Color ===*/
  --violet-h: 251;
  --violet-s: 96%;
  --violet-l: 63%;
  --violet: var(--violet-h) var(--violet-s) var(--violet-l);
  /*=== Violet Darken ===*/
  --violet-d-100: var(--violet-h) var(--violet-s)
    calc(var(--violet-l) - var(--violet-l) * 0.1);
  --violet-d-200: var(--violet-h) var(--violet-s)
    calc(var(--violet-l) - var(--violet-l) * 0.2);
  --violet-d-300: var(--violet-h) var(--violet-s)
    calc(var(--violet-l) - var(--violet-l) * 0.3);
  --violet-d-400: var(--violet-h) var(--violet-s)
    calc(var(--violet-l) - var(--violet-l) * 0.4);
  --violet-d-500: var(--violet-h) var(--violet-s)
    calc(var(--violet-l) - var(--violet-l) * 0.5);
  /*=== Violet Lighten ===*/
  --violet-l-100: var(--violet-h) calc(var(--violet-s))
    calc(var(--violet-l) + (100% - var(--violet-l)) * 0.1);
  --violet-l-200: var(--violet-h) calc(var(--violet-s))
    calc(var(--violet-l) + (100% - var(--violet-l)) * 0.2);
  --violet-l-300: var(--violet-h) calc(var(--violet-s))
    calc(var(--violet-l) + (100% - var(--violet-l)) * 0.3);
  --violet-l-400: var(--violet-h) calc(var(--violet-s))
    calc(var(--violet-l) + (100% - var(--violet-l)) * 0.4);
  --violet-l-500: var(--violet-h) calc(var(--violet-s))
    calc(var(--violet-l) + (100% - var(--violet-l)) * 0.5);
  --violet-l-600: var(--violet-h) calc(var(--violet-s))
    calc(var(--violet-l) + (100% - var(--violet-l)) * 0.6);
  /*=== Yellow Color ===*/
  --yellow-h: 50;
  --yellow-s: 100%;
  --yellow-l: 50%;
  --yellow: var(--yellow-h) var(--yellow-s) var(--yellow-l);
  /*=== Yellow Darken ===*/
  --yellow-d-100: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.1);
  --yellow-d-200: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.2);
  --yellow-d-300: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.3);
  --yellow-d-400: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.4);
  --yellow-d-500: var(--yellow-h) var(--yellow-s)
    calc(var(--yellow-l) - var(--yellow-l) * 0.5);
  /*=== yellow Lighten ===*/
  --yellow-l-100: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.1);
  --yellow-l-200: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.2);
  --yellow-l-300: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.3);
  --yellow-l-400: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.4);
  --yellow-l-500: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.5);
  --yellow-l-600: var(--yellow-h) calc(var(--yellow-s))
    calc(var(--yellow-l) + (100% - var(--yellow-l)) * 0.6);
  /*======================= Bootstrap Modifier End ==============================*/
}

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

.modal-content .btn-close {
  filter: invert(1);
}

.custom--modal .modal-footer .btn--sm.btn.btn--base.outline {
  color: hsl(var(--white));
}

.custom--modal .modal-footer .btn--sm.btn.btn--base.outline:hover {
  color: hsl(var(--base-two));
}

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

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

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

.section-heading.left-content .one {
  margin: unset;
  margin-bottom: 1px;
}

.section-heading.left-content .two {
  margin: unset;
  margin-left: 5px;
  margin-bottom: 1px;
}

.section-heading.left-content .three {
  margin: unset;
  margin-left: 9px;
  margin-bottom: 1px;
}

.section-heading.left-content .section-heading__desc {
  max-width: 100%;
}

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

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

.section-heading .subtitle {
  font-size: 18px;
  color: hsl(var(--base));
  display: inline-block;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.section-heading__subtitle-big {
  font-size: 100px;
  color: transparent;
  -webkit-text-stroke: 2px hsl(var(--dark) / 0.03);
  position: absolute;
  top: -46px;
  left: -35px;
  z-index: 1;
  font-weight: 600;
}

@media screen and (max-width: 424px) {
  .section-heading__subtitle-big {
    left: 0;
  }
}

.section-heading__border {
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.section-heading__border .one {
  display: block;
  width: 47px;
  height: 2px;
  background: hsl(var(--base-two));
  margin: 0px auto 0px;
  margin-bottom: 2px;
}

.section-heading__border .two {
  display: block;
  width: 37px;
  height: 2px;
  background: hsl(var(--base-two));
  margin: 0px auto 0px;
  margin-bottom: 2px;
}

.section-heading__border .three {
  display: block;
  width: 28px;
  height: 2px;
  background: hsl(var(--base-two));
  margin: 0px auto 0px;
  margin-bottom: 2px;
}

.section-heading__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.375;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: hsl(var(--white));
}

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

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

.section-heading__desc {
  max-width: 55%;
}

@media screen and (max-width: 1399px) {
  .section-heading__desc {
    max-width: 62%;
  }
}

@media screen and (max-width: 1199px) {
  .section-heading__desc {
    max-width: 75%;
  }
}

@media screen and (max-width: 991px) {
  .section-heading__desc {
    max-width: 85%;
  }
}

@media screen and (max-width: 767px) {
  .section-heading__desc {
    max-width: 100%;
  }
}

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

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

.site-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  color: hsl(var(--white));
}

.svg-color {
  fill: none;
  stroke: hsl(var(--white) / 0.08);
  transition: 0.2s ease;
}

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

.slick-initialized.slick-slider {
  margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
  display: flex;
}

.slick-initialized.slick-slider .slick-slide {
  height: auto;
  padding: 0 12px;
}

.slick-initialized.slick-slider .slick-slide > div {
  height: 100%;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: hsl(var(--white));
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.2s linear;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 20px;
}

@media screen and (max-width: 991px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .slick-arrow {
    width: 45px;
    height: 45px;
  }
}

.slick-arrow:hover {
  border-color: hsl(var(--base));
  background-color: hsl(var(--base-two));
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  border: none;
  background-color: transparent;
  color: hsl(var(--base));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  font-size: 40px;
  top: calc(50%);
}

.slick-arrow:hover {
  background-color: transparent;
  color: hsl(var(--base));
}

.slick-dots {
  text-align: center;
  padding-top: 20px;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  border: none;
  background-color: hsl(var(--white));
  color: hsl(var(--white));
  margin: 0 3px;
  width: 45px;
  height: 7px;
  border-radius: 1px;
  text-indent: -9999px;
}

.slick-dots li.slick-active button {
  background-color: hsl(var(--base));
}

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

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

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

.header-transparent {
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9;
}

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

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

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

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

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

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

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

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

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

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

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

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

.section-bg-to-right {
  background: linear-gradient(
    to right,
    hsl(var(--base) / 0.1) 0%,
    hsl(var(--white) / 0.08) 100%
  );
}

.section-bg-to-left {
  background: linear-gradient(
    to left,
    hsl(var(--base) / 0.1) 0%,
    hsl(var(--white) / 0.08) 100%
  );
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: var(--heading-font);
  color: hsl(var(--body-color));
  word-break: break-word;
  background-color: var(--base-dark-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

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

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

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

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

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

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

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

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

h6 {
  font-size: var(--heading-six);
  font-weight: 500;
}

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

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

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

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

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

select {
  cursor: pointer;
}

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

*:focus {
  outline: none;
}

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

button:focus {
  outline: none;
}

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

.fs-14,
.table tbody tr td:first-child,
.table thead tr th,
.form--radio .form-check-label,
.form--check .form-check-label,
.form--control::placeholder {
  font-size: 0.875rem;
}

/* Media Queries */

/* For standard 1080p monitors (and some larger laptops) */
@media (min-width: 1921px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    zoom: 1.2;
    /* Slightly increase size, if desired. Or remove this block for no change. */
  }

  .breadcumb {
    padding: calc(120px * 1.2) 0 0 !important;
  }
}

/* For larger than standard 1080p monitors, or to increase size on standard monitors */
@media (min-width: 2200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    zoom: 1.4;
    /* Your original value */
  }

  .breadcumb {
    padding: calc(120px * 1.4) 0 0 !important;
  }
}

/* For large monitors (2K and some high-resolution 1080p) */
@media (min-width: 2560px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    zoom: 1.6;
    /* Or adjust to your preference */
  }

  .breadcumb {
    padding: calc(120px * 1.6) 0 0 !important;
  }
}

/* For very large monitors (4K and beyond) */
@media (min-width: 3840px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    zoom: 2;
    /* Or adjust to your preference */
  }

  .breadcumb {
    padding: calc(120px * 2) 0 0 !important;
  }
}

.scrollDisabled {
  margin-block-start: 0;
  width: 100%;
  position: fixed;
  overflow-y: hidden;
}

@media screen and (max-width: 991px) {
  .scrollDisabled {
    overflow-y: hidden;
  }
}

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

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

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

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

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

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

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

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

/*=========================== Accordion style start =============================*/
.accordion-area {
  position: relative;
}

.faq-shape-bg {
  position: absolute;
  width: fit-content;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  bottom: 67px;
}

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

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

.custom--accordion .accordion-body {
  padding: 20px;
  background-color: transparent;
  color: hsl(var(--white) / 0.8);
}

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

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

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

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

.custom--accordion .accordion-button {
  background-color: transparent;
  color: var(--heading-color);
  font-size: 18px;
  padding: 30px 25px;
  font-size: 20px;
}

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

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

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

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

.custom--accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  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 5 Free";
  font-weight: 600;
  content: "\f107";
  display: inline-block;
  position: relative;
  margin-left: auto;
  width: 0 !important;
  right: 16px;
  color: hsl(var(--base-two)) !important;
}

@media screen and (max-width: 575px) {
  .custom--accordion .accordion-button[aria-expanded="true"]::after,
  .custom--accordion .accordion-button[aria-expanded="false"]::after {
    right: -13px;
    font-size: 14px;
  }
}

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

.accordion-thumb__inner {
  text-align: start;
}

@media screen and (max-width: 991px) {
  .accordion-thumb__inner {
    text-align: center;
  }
}

.accordion-thumb__inner img {
  border-radius: var(--border-radius);
}

/*====================== Button Style ====================*/
button {
  border: none;
  transition: 0.2s linear;
}

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

.btn {
  color: hsl(var(--white));
  padding: 11px 16px;
  border-radius: var(--border-radius-sm);
  position: relative;
  text-align: center;
  border: 0px solid transparent;
  font-weight: 500;
  transition: 0.5s;
  font-family: var(--heading-font);
  font-size: 18px;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

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

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

.btn:hover,
.btn:focus {
  border-radius: var(--border-radius-sm);
}

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

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

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

.btn--sm {
  padding: 6px 15px;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 13px;
}

.btn--sm:hover,
.btn--sm:focus {
  background-color: hsl(var(--white));
  color: hsl(var(--base));
  border-radius: var(--border-radius-sm);
}

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

.btn--ssm {
  padding: 3px 7px;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 14px;
}

.btn--ssm:hover,
.btn--ssm:focus {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base));
}

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

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

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

.btn--base.border-none::before {
  border: 0;
}

.btn--base.style-1 {
  background-color: hsl(var(--white));
  color: hsl(var(--base));
}

.btn--base.style-1::before {
  background-color: hsl(var(--base));
}

.btn--base.style-1:hover {
  color: hsl(var(--white));
}

.btn--base:hover,
.btn--base:focus {
  border-radius: var(--border-radius-sm);
  background: hsl(var(--base-two));
  border: 0;
  color: hsl(var(--white));
}

.btn--base.pill {
  border-radius: 35px;
}

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

.btn--a--main {
  color: hsl(var(--base));
  cursor: pointer;
}

.btn--base.outline.hover-white-c:hover,
.btn--base.outline.hover-white-c:focus {
  color: hsl(var(--black));
}

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

.btn--simple__icon {
  font-size: 13px;
  margin-left: 5px;
}

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

.btn--primary:hover,
.btn--primary:focus {
  background-color: hsl(var(--primary-d-100));
}

.btn--primary.pill {
  border-radius: 35px;
}

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

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

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

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: hsl(var(--secondary-d-100));
}

.btn--secondary.pill {
  border-radius: 35px;
}

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

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

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

.btn--success:hover,
.btn--success:focus {
  background-color: hsl(var(--success-d-100));
}

.btn--success.pill {
  border-radius: 35px;
}

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

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

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

.btn--danger:hover,
.btn--danger:focus {
  background-color: hsl(var(--base-two));
  color: hsl(var(--white));
}

.btn--danger.pill {
  border-radius: 35px;
}

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

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

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

.btn--warning:hover,
.btn--warning:focus {
  background-color: hsl(var(--warning-d-100));
}

.btn--warning.pill {
  border-radius: 35px;
}

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

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

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

.btn--info:hover,
.btn--info:focus {
  background-color: hsl(var(--info-d-100));
}

.btn--info.pill {
  border-radius: 35px;
}

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

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

.btn--violet {
  background-color: hsl(var(--violet));
}

.btn--violet:hover,
.btn--violet:focus {
  background-color: hsl(var(--violet-d-100));
}

.btn--violet.pill {
  border-radius: 35px;
}

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

.btn--violet.outline:hover,
.btn--violet.outline:focus {
  background-color: hsl(var(--violet));
  color: hsl(var(--white));
}

.custom--card {
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  background-color: hsl(var(--white));
  border: transparent;
}

.custom--card .card-body {
  background-color: hsl(var(--white));
  padding: 30px;
  border-radius: 5px;
}

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

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

.btn-delete-account {
  background-color: hsl(var(--danger));
  color: hsl(var(--white));
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s linear;
}

.btn-update-account {
  padding: 10px 10px;
}

.btn-onboarding {
  padding: 6px 15px;
}

/*====================== Form Style ====================*/
.search-box .input--group .form--control {
  padding-right: 30px;
}

.search-box .form--control {
  padding-right: 40px;
}

.form--label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 400;
}

.form--control {
  font-weight: 400;
  outline: none;
  border: 0;
  width: 100%;
  padding: 12px 16px 10px;
  background-color: #ffffff;
  border-bottom: 1px solid hsl(var(--white) / 0.08);
  color: var(--base-dark-color);
  line-height: 1;
  border-radius: 10px;
  font-size: 13px;
}

.form--control::placeholder {
  color: #636c72;
  font-size: 13px;
}

.form--control:focus {
  box-shadow: none;
  border-color: hsl(var(--base-two) / 0.4);
}

.form--control:disabled,
.form--control[readonly] {
  background-color: hsl(var(--white) / 0.5);
  opacity: 1;
  border: 0;
  padding-left: 15px;
}

.form--control[type="password"] {
  color: var(--base-dark-color);
  border-radius: 10px !important;
}

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

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

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

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

.form--control.left-y-radius {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.form--control.right-y-radius {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.form--round-input {
  border-radius: 10px !important;
}

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

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

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

input:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill {
  box-shadow: 0 0 0px 1000px hsl(var(--black)) inset !important;
  color: hsl(var(--base)) !important;
  font-size: 14px;
}

.custom--modal .modal-body input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #202028 inset;
  -webkit-text-fill-color: hsl(var(--base)) !important;
  font-size: 14px;
}

.input--group {
  position: relative;
}

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

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

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

.login-border-wrap .login-border {
  border-bottom: 1px dotted hsl(var(--white) / 0.1);
  width: 30%;
  display: block;
  margin-top: 6px;
}

.login-border-wrap span {
  font-size: 24px;
  font-weight: 500;
  margin-right: 5px;
  margin-left: 5px;
}

.login-social-wrap {
  display: flex;
  justify-content: center;
}

.login-social-wrap a.social-list__link {
  width: 43px;
  height: 43px;
  border: 0;
  /* background: hsl(var(--white)/0.2); */
  font-size: 25px;
}

.login-social-wrap a.social-list__link:hover {
  /* background: hsl(var(--base-two)); */
  color: hsl(var(--white)) !important;
}

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

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

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

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

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

.input-group.country-code .input-group-text {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid hsl(var(--white) / 0.08);
  border-radius: 0;
  color: hsl(var(--white));
}

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

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

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

/*=========== Custom Checkbox Design ===========*/
.form--check {
  display: flex;
  flex-wrap: wrap;
}

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

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

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

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

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

.form--check .form-check-label {
  width: calc(100% - 16px);
  padding-left: 15px;
  font-size: 12px;
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-group span.small-text {
  font-size: 13px;
  color: hsl(var(--black) / 0.6);
  margin-top: 10px;
  display: block;
}

.form-validation-error {
  color: #e6334d;
  font-weight: 500;
  font-size: 12px;
}

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

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

.form-group.form-group.right {
  position: relative;
}

.form-group.form-group.right .form--control {
  padding-right: 40px;
}

.form-group.form-group.right .input-group-text {
  background: transparent;
  border: 0;
  padding: 0;
  color: hsl(var(--white) / 0.5);
  position: absolute;
  top: 16px;
  right: 2px;
}

.deposit-modal-content p {
  font-size: 14px;
  display: flex;
  align-items: start;
}

.deposit-modal-content p i {
  font-size: 10px;
  color: hsl(var(--base));
  margin-right: 8px;
  margin-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom--modal .modal-header .close {
  color: hsl(var(--white));
}

.custom--modal .modal-header .close i {
  font-size: 25px;
  line-height: 1;
  border-radius: 4px;
  transition: 0.2s linear;
}

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

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

.custom--modal .modal-content {
  background-color: #202028;
  border-radius: 10px !important;
  border: 1px solid hsl(var(--base));
}

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

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

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

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

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

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

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

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

/*====================== Table Style Light ====================*/
.table {
  margin: 0;
  font-size: 15px;
  border-collapse: separate;
  border-spacing: 0px 0px;
  border-radius: 6px !important;
  overflow: hidden;
}

.table .table-btn i {
  color: hsl(var(--white));
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 0px solid hsl(var(--base));
  border-radius: 5px;
}

.table thead tr th {
  background-color: hsl(var(--base) / 0.1);
  text-align: center;
  font-size: 15px;
  padding: 15px 20px;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-weight: 500;
  border: 1px solid hsl(var(--base) / 0.1);
  max-width: 170px;
}

.table thead tr th:first-child {
  border-radius: 0px 0 0 0;
  border-right: 0;
}

.table thead tr th:last-child {
  border-radius: 0 0px 0 0;
  border-left: 0;
}

.table tbody {
  border: 0 !important;
  color: hsl(var(--dark));
  border: 1px solid hsl(var(--base) / 0.1);
}

.table tbody tr:nth-child(even) {
  background-color: hsl(var(--base) / 0.02);
  border-bottom: 1px solid hsl(var(--dark) / 0.06);
}

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

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

.table tbody tr td {
  vertical-align: middle;
  padding: 10px 15px;
  border-width: 1px;
  border: 0;
  font-family: var(--heading-font);
  color: hsl(var(--dark));
  max-width: 170px;
  text-align: center;
  border: 1px solid hsl(var(--base) / 0.1);
}

.table tbody tr td img {
  width: 100px;
}

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

.table tbody tr td:first-child {
  text-align: center;
}

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

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

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

  .table--responsive--md tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    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;
  }

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

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

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

  .table--responsive--lg tbody tr {
    display: block;
    margin-bottom: 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .table--responsive--lg tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: right;
    padding: 10px 10px;
    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;
  }

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

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

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

  .table--responsive--xl tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    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;
  }

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

@media screen and (max-width: 1199px) {
  .table--responsive--xl 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 td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    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;
  }

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

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

@media screen and (max-width: 991px) {
  .table-wrapper .table--responsive--lg tbody tr td {
    display: block;
  }
}

/*====================== Table Style dark to Light ====================*/
.dark-to-light-table .table thead tr th {
  background-color: transparent;
  color: hsl(var(--white));
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.dark-to-light-table .table tbody tr td {
  color: hsl(var(--white) / 0.9);
  border: none;
}

.dark-to-light-table .table tbody tr td::before {
  color: hsl(var(--white) / 0.9);
}

.dark-to-light-table .table tbody tr:nth-child(even) {
  background-color: hsl(var(--white) / 0.02);
  border-bottom: 1px solid #d9d9d9;
}

.dark-to-light-table .table .table-btn i {
  color: hsl(var(--white) / 0.9);
  transition: 0.3s all;
}

.dark-to-light-table .table .table-btn i:hover {
  color: hsl(var(--base));
}

/*================== Tab Content =============*/
.custom--tab {
  justify-content: start;
  border-radius: 6px;
  margin-bottom: 40px;
  border: 0;
}

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

.custom--tab .nav-item .nav-link {
  color: hsl(var(--white));
  padding: 10px 25px;
  border-radius: 5px;
  transition: 0.4s;
  border: 0;
  background: hsl(var(--white) / 0.04) !important;
}

.custom--tab .nav-item .nav-link i {
  margin-right: 5px;
  font-size: 15px;
}

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

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

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

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

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

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

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

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

.badge--success {
  background-color: hsl(var(--success) / 0.1) !important;
  border: 1px solid hsl(var(--success)) !important;
  color: hsl(var(--success)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-control-fixed {
  border: none !important;
}

/* ================= Floting Input End ================= */
/*======== Image Select style Start =======*/
.f-dropdown {
  --max-scroll: 3;
  position: relative;
  z-index: 2;
}

.f-dropdown select {
  display: none;
}

.f-dropdown > span {
  cursor: pointer;
  padding: 0;
  border-radius: 0px;
  display: flex;
  align-items: center;
  position: relative;
  border: 0px solid hsl(var(--black) / 0.1);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  color: hsl(var(--white)) !important;
  padding-right: 25px;
}

.f-dropdown > span > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 12px;
}

.f-dropdown > span img {
  width: 30px;
  margin-right: 10px;
}

.f-dropdown > span:before,
.f-dropdown > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  right: 12px;
  background: hsl(var(--white));
  transition: all 0.3s ease;
}

.f-dropdown > span:before {
  margin-right: 4px;
  transform: scale(0.96, 0.8) rotate(50deg);
}

.f-dropdown > span:after {
  transform: scale(0.96, 0.8) rotate(-50deg);
}

.f-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(var(--max-scroll) * 46px);
  top: 40px;
  left: 0;
  z-index: 1;
  right: 0;
  background: hsl(var(--dark));
  border: 1px solid hsl(var(--base));
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: 0 0;
  transition: opacity 0.2s ease, visibility 0.2s ease,
    transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transform: translate(0, 5px);
}

.f-dropdown ul li {
  padding: 0;
  margin: 0;
}

.f-dropdown ul li a {
  cursor: pointer;
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  outline: none;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.f-dropdown ul li a img {
  width: 30px;
  margin-right: 10px;
}

.f-dropdown ul li a:hover {
  color: hsl(var(--base));
}

.f-dropdown ul li.active a {
  color: hsl(var(--white));
  background: hsl(var(--base));
}

.f-dropdown ul li.active a:before,
.f-dropdown ul li.active a:after {
  --scale: 0.6;
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 12px;
  top: 50%;
  opacity: 0;
  background: hsl(var(--white));
  transition: all 0.2s ease;
}

.f-dropdown ul li.active a:before {
  transform: rotate(45deg) scale(var(--scale));
}

.f-dropdown ul li.active a:after {
  transform: rotate(-45deg) scale(var(--scale));
}

.f-dropdown ul li.active a:hover:before,
.f-dropdown ul li.active a:hover:after {
  --scale: 0.9;
  opacity: 1;
}

.f-dropdown ul li:first-child a {
  border-radius: 6px 6px 0 0;
}

.f-dropdown ul li:last-child a {
  border-radius: 0 0 6px 6px;
}

.f-dropdown.disabled {
  opacity: 0.7;
}

.f-dropdown.disabled > span {
  cursor: not-allowed;
}

.f-dropdown.filled > span {
  color: #000;
}

.f-dropdown.open {
  z-index: 15;
}

.f-dropdown.open > span {
  border-color: #aaa;
}

.f-dropdown.open > span:before,
.f-dropdown.open > span:after {
  background: hsl(var(--white));
}

.f-dropdown.open > span:before {
  transform: scale(0.96, 0.8) rotate(-50deg);
}

.f-dropdown.open > span:after {
  transform: scale(0.96, 0.8) rotate(50deg);
}

.f-dropdown.open ul {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 12px);
  transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

/*============** Header area **============*/
/*== Sticky header ==*/
.header {
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 991px) {
  .header {
    top: 0px;
    padding: 18px 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 7;
    max-height: 101vh;
    overflow-y: auto;
    background-color: var(--base-dark-color);
  }

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

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

.header.fixed-header {
  background-color: var(--base-dark-color);
  position: fixed;
  transition: 0.4s linear;
  top: 0px;
  animation: slide-down 0.8s;
  width: 100%;
  box-shadow: rgba(9, 9, 9, 0.05) 0px 1px 0px;
  border-bottom: 1px solid hsl(var(--white) / 0.08);
}

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

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

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

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

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

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

.header-main-area .container-fluid {
  padding: 0 100px;
}

@media screen and (max-width: 1399px) {
  .header-main-area .container-fluid {
    padding: 0 60px;
  }
}

@media screen and (max-width: 575px) {
  .header-main-area .container-fluid {
    padding: 0 25px;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}

@media screen and (max-width: 1199px) {
  .header-wrapper {
    padding: 18px 0px;
  }
}

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

.header-wrapper .logo-wrapper img {
  width: 165px;
}

@media screen and (max-width: 991px) {
  .header-wrapper .logo-wrapper img {
    width: 155px;
  }
}

@media screen and (max-width: 575px) {
  .header-wrapper .logo-wrapper img {
    width: 145px;
  }
}

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

.header-wrapper .menu-wrapper .main-menu {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .header-wrapper .menu-wrapper .main-menu .main-menu__menu-item:first-child {
    display: none;
  }
}

.header-wrapper .menu-wrapper .main-menu__menu-item {
  transition: all 0.4s;
  position: relative;
  padding: 0px 20px;
}

@media screen and (max-width: 1199px) {
  .header-wrapper .menu-wrapper .main-menu__menu-item {
    padding: 0px 8px;
  }
}

.header-wrapper .menu-wrapper .main-menu__menu-item.dropdown {
  margin-right: 18px;
}

.header-wrapper .menu-wrapper .main-menu__menu-item .menu-link.btn.btn--base {
  padding: 8px 22px;
  transition: 0.3s;
}

.header-wrapper
  .menu-wrapper
  .main-menu__menu-item
  .menu-link.btn.btn--base:hover {
  color: hsl(var(--white));
}

.header-wrapper .menu-wrapper .main-menu__menu-link {
  font-weight: 500;
  color: hsl(var(--white));
  font-size: 18px;
  padding: 30px 0;
}

.header-wrapper .menu-wrapper .main-menu__menu-link.active {
  color: hsl(var(--base-two));
}

@media screen and (max-width: 1199px) {
  .header-wrapper .menu-wrapper .main-menu__menu-link {
    padding: 0px 12px;
  }
}

.header-wrapper .menu-wrapper .main-menu__menu-link:hover {
  color: hsl(var(--base-two));
}

.header-wrapper .menu-wrapper .main-menu__menu-icon {
  position: absolute;
  right: 0;
  top: 53%;
  transform: translateY(-50%);
  right: -4px;
  font-size: 15px;
}

.header-wrapper .dropdown-menu {
  display: block;
  padding: 0 !important;
  transform: scaleY(0);
  transform-origin: top center;
  overflow: hidden;
  border-radius: 0;
  min-width: 190px;
}

.header-wrapper .dropdown-menu__item {
  border-bottom: 1px solid hsl(var(--black) / 0.08);
}

.header-wrapper .dropdown-menu__item:last-child {
  border-bottom: 3px solid hsl(var(--base));
}

.header-wrapper .dropdown-menu__link {
  padding: 7px 20px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
  width: 100%;
  color: hsl(var(--black));
}

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

.header-wrapper .menu-wrapper .main-menu__menu-item:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  top: 100% !important;
  transform: scaleY(1);
}

.header-wrapper .header-language-wrap .language-box .select {
  color: hsl(var(--white));
  font-size: 16px;
  font-weight: 500;
}

.header-wrapper .menu-right-wrapper ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-wrapper .menu-right-wrapper ul li {
  margin-left: 17px;
}

@media screen and (max-width: 1199px) {
  .header-wrapper .menu-right-wrapper ul li {
    margin-left: 0px;
  }
}

.header-wrapper .menu-right-wrapper ul li .btn.btn--base.fav-btn {
  background: hsl(var(--white) / 0.1);
}

@media screen and (max-width: 1199px) {
  .header-wrapper .menu-right-wrapper ul li .btn.btn--base.fav-btn {
    margin-right: 15px;
  }
}

@media screen and (max-width: 991px) {
  .header-wrapper .menu-right-wrapper ul li .btn.btn--base.fav-btn {
    padding: 4px 9px;
  }
}

.header-wrapper .menu-right-wrapper ul li .btn.btn--base.fav-btn i {
  color: #d7443e;
  margin-right: 6px;
}

.header-wrapper .menu-right-wrapper ul li .btn.btn--base.fav-btn::before {
  border: none;
}

/* @media screen and (max-width: 1199px) {
    .header-wrapper .menu-right-wrapper ul li:nth-child(2) {
        display: none;
    }

    .header-wrapper .menu-right-wrapper ul li:nth-child(3) {
        display: none;
    }
} */

.header-wrapper .menu-right-wrapper ul li:first-child {
  margin-left: 0px;
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .header-wrapper .menu-right-wrapper ul li:first-child {
    margin-right: 0;
  }

  .header-wrapper .menu-right-wrapper ul li:nth-child(3) {
    display: none;
    visibility: hidden;
  }
}

.header-wrapper .menu-right-wrapper ul li.responsive-bar {
  display: none;
  visibility: hidden;
}

@media screen and (max-width: 991px) {
  .header-wrapper .menu-right-wrapper ul li.responsive-bar {
    display: block;
    visibility: visible;
    margin-right: 15px;
  }

  .header-wrapper .menu-right-wrapper .dropdown-menu-right {
    display: none;
  }
}

@media screen and (max-width: 410px) {
  .header-wrapper .menu-right-wrapper ul li.responsive-bar {
    margin-right: 0px;
  }
}

.header-wrapper .menu-right-wrapper ul li .sidebar-menu-show-hide {
  background: hsl(var(--base));
  padding: 9px 12px;
  color: hsl(var(--white));
  border-radius: 4px;
  position: relative;
}

.header-wrapper .menu-right-wrapper ul li .sidebar-menu-show-hide.btn::after {
  position: absolute;
  content: "";
  height: 104%;
  width: 102%;
  background-color: transparent;
  top: 6px;
  left: -10px;
  z-index: -1;
  border-radius: 4px;
  transition: 0.5s;
  border: 3px solid hsl(var(--black) / 0.5);
}

.header-wrapper .menu-right-wrapper .dropdown {
  border: 1px solid hsl(var(--base));
  padding: 12px;
  border-radius: 12px;
}

.header-wrapper .menu-right-wrapper .dropdown .navbar-user__info {
  color: hsl(var(--base));
}

.header-wrapper .menu-right-wrapper .dropdown .dropdown-menu {
  margin-top: 30px !important;
  margin-right: -12px !important;
  border-radius: 10px;
  background: #464646;
}

.header-wrapper
  .menu-right-wrapper
  .dropdown
  .dropdown-menu
  .dropdown-menu__item:last-child {
  border: none;
}

.header-wrapper .menu-right-wrapper .dropdown .navbar-user__thumb {
  width: 25px;
  display: inline-block;
  margin-left: 17px;
}

.header-wrapper .menu-right-wrapper .dropdown .navbar-user__thumb img {
  border-radius: 50%;
  height: 25px;
}

@media screen and (max-width: 991px) {
  .header-wrapper .menu-right-wrapper .dropdown {
    border: none;
    padding: 12px 12px 5px;
  }

  .header-wrapper .menu-right-wrapper .dropdown .navbar-user__thumb {
    display: none;
  }

  .header-wrapper .menu-right-wrapper .dropdown .navbar-user__info i:before {
    font-size: 20px;
  }
}

.sidebar-menu-wrapper .sidebar-menu-list__link {
  padding-left: 20px;
}

.menu-search-wrap {
  position: relative;
  width: 10px;
}

.menu-search-wrap .menu-search-wrap--search-icon {
  cursor: pointer;
}

.menu-search-wrap .menu-search-wrap--search-icon i {
  font-size: 17px;
}

.menu-search-wrap .header-search-hide-show {
  display: none;
  transition: all 0.4s ease-in-out;
}

.menu-search-wrap .header-search-hide-show.show {
  display: block;
  right: 22px;
  transition: all 0.4s ease-in-out;
}

.menu-search-wrap .close-hide-show {
  display: none;
}

.menu-search-wrap .close-hide-show.show {
  display: block;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 410px) {
  .button-item {
    display: none;
  }
}

.search-box.header-search {
  width: 260px;
  position: absolute;
  right: -7px;
  top: -12px;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 424px) {
  .search-box.header-search {
    width: 170px;
  }
}

.search-box.header-search input.form--control {
  padding-right: 52px;
  background: hsl(var(--white));
  border: 1px solid hsl(var(--base) / 0.2);
}

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

.search-box.header-search button.search-box__button {
  top: 24px;
  right: 0;
  background: hsl(var(--base));
  height: 100%;
  padding: 13px;
  border-radius: 0 10px 10px 0px;
  border: 1px solid hsl(var(--white));
}

.search-box.header-search button.search-box__button i {
  color: hsl(var(--white));
}

.header-wrapper.header-three .menu-right-wrapper ul li:last-child {
  display: inherit;
  visibility: visible;
}

@media screen and (max-width: 991px) {
  .header-wrapper.header-three .menu-wrapper ul.main-menu {
    display: inherit !important;
  }
}

@media screen and (max-width: 370px) {
  .header-wrapper.header-three .menu-wrapper ul.main-menu {
    display: none !important;
  }
}

/*================ Top Header Start Here ================*/
.header-main-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s linear;
  padding-top: 0;
}

.header-top {
  border-bottom: 1px solid hsl(var(--base) / 0.08);
  padding: 10px 0px;
  position: relative;
  z-index: 2;
  background-color: hsl(var(--base) / 0.2);
}

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

.header-top .social-list.style-two .social-list__link {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

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

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

@media screen and (max-width: 424px) {
  .top-header-wrapper {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  .latest-top.latest-slider {
    text-align: center;
  }
}

.latest-top.latest-slider p {
  color: hsl(var(--dark));
  line-height: 1.4;
}

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

@media screen and (max-width: 991px) {
  .contact-list {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .contact-list {
    display: none;
  }
}

.contact-list__item {
  padding: 2px 20px 0px;
  position: relative;
  color: hsl(var(--white));
}

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

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

.contact-list__item-icon {
  font-size: 16px;
  text-align: center;
  color: hsl(var(--base));
  display: inline-block;
  margin-right: 10px;
}

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

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

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

@media screen and (max-width: 991px) {
  .top-button {
    justify-content: center;
  }
}

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

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

.login-registration-list__item {
  color: hsl(var(--white));
  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%;
  transform: translateY(-50%);
  background-color: hsl(var(--dark) / 0.5);
}

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

.login-registration-list__icon i {
  color: hsl(var(--base));
}

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

.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: flex;
  align-items: center;
  position: relative;
}

.language-box .select {
  color: hsl(var(--white));
  background-color: transparent;
  border: 1px solid transparent;
  padding: 3px 0px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 0px;
}

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

li.login-registration-list__item .social-list__item .social-list__link {
  height: 30px;
  width: 30px;
  color: hsl(var(--base)) !important;
}

li.login-registration-list__item .social-list__item .social-list__link:hover {
  color: hsl(var(--white)) !important;
}

/*====================== Breadcumb Css Start ====================*/
.breadcumb {
  position: relative;
  padding: 120px 0 0;
  z-index: 1;
  background: var(--base-dark-color);
}

.breadcumb .breadcumb-bg {
  position: absolute;
  z-index: -1;
  opacity: 0.05;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.breadcumb .breadcumb-bg.light {
  display: none;
}

.breadcumb__wrapper {
  text-align: center;
}

.breadcumb__title {
  color: hsl(var(--base));
  font-weight: 700;
  font-size: 32px;
  display: none;
}

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

.breadcumb__item {
  color: hsl(var(--white));
  padding: 0 3px;
  font-weight: 400;
  font-size: 14px;
}

.breadcumb__item .fa-chevron-right {
  color: hsl(var(--base));
}

.breadcumb__item:first-child a {
  color: hsl(var(--base));
}

@media screen and (max-width: 575px) {
  .breadcumb__item {
    font-size: 12px;
  }
}

.breadcumb__item-text {
  font-size: 14px !important;
  margin: 0;
  color: hsl(var(--white));
}

.breadcumb__link {
  color: hsl(var(--white));
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
}

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

@media screen and (max-width: 991px) {
  .breadcumb {
    padding: 100px 0 0;
  }

  .breadcumb .breadcumb__title {
    display: none;
  }

  .breadcumb__list {
    justify-content: start;
  }
}

/*============= Footer Start Here =======================*/
.footer-area {
  background: var(--base-dark-color);
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.footer-item-wrapper {
  display: flex;
  justify-content: start;
}

@media screen and (max-width: 1199px) {
  .footer-item-wrapper {
    justify-content: start;
  }
}

.footer-item {
  margin-left: 0;
}

.footer-item__desc p {
  color: hsl(var(--body-color) / 0.8);
  font-size: 15px;
}

.auth-item__logo a img {
  width: auto;
  height: 50px;
}

.footer-item__logo a img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .auth-item__logo {
    text-align: center;
  }

  .auth-item__logo a img {
    width: 200px;
    height: auto;
  }
}

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

.footer-item__title::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 3px;
  left: 0;
  bottom: -2px;
  background-color: hsl(var(--body-color) / 0.2);
  display: none;
}

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

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

.footer-item__legal {
  font-size: 11px;
  text-align: center;
  color: hsl(var(--body-color) / 0.4);
  line-height: inherit;
  font-family: helvetica !important;
  font-weight: 400;
}

.login-social-wrap .social-list__link {
  border-radius: 50%;
  /* background: hsl(var(--white)/0.2); */
}

.footer-menu {
  display: flex;
  flex-direction: column;
  margin: -5px 0;
}

.footer-menu__item {
  display: block;
  padding: 0;
  margin-bottom: 10px;
}

.footer-menu__item a:before {
  content: none;
}

.footer-menu__link {
  padding: 0;
  position: relative;
  color: hsl(var(--base));
  font-family: Helvetica !important;
  font-weight: 100 !important;
}

.footer-menu__terms {
  font-size: 14px;
}

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

.footer-menu__link::before {
  position: absolute;
  content: "\f111";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  left: -10px;
  top: 45%;
  transform: translateY(-50%);
  color: hsl(var(--base-two));
  font-size: 6px;
}

.footer-menu__link:hover > {
  color: hsl(var(--base-two));
  margin-left: 4px;
}

.title-border {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.title-border .long {
  width: 40px;
  height: 1px;
  background: hsl(var(--base-two));
  display: inline-block;
}

.title-border .short {
  width: 14px;
  height: 1px;
  background: hsl(var(--base-two));
  display: block;
  margin-left: 5px;
}

.footer-contact-menu {
  margin: -6px 0;
}

@media screen and (max-width: 991px) {
  .footer-contact-menu {
    margin: 0;
  }
}

.footer-contact-menu__item {
  display: flex;
  padding: 1px 0;
  margin-bottom: 5px;
}

.footer-contact-menu__item p {
  color: hsl(var(--body-color) / 0.8);
}

.footer-contact-menu__item a {
  color: hsl(var(--base));
  font-size: 18px !important;
}

@media screen and (max-width: 991px) {
  .footer-contact-menu__item a {
    font-size: 20px !important;
    font-family: helvetica;
    font-weight: 400;
  }
}

.footer-contact-menu__item-icon {
  width: 43px;
  height: 40px;
  background: hsl(var(--white) / 0.2);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: hsl(var(--base-two));
}

.footer-contact-menu__item-content {
  width: 100%;
}

.search-box.footer-area button {
  position: absolute;
  right: 8px;
  top: 9px;
  border: 1px solid hsl(var(--white) / 0.3);
}

.search-box.footer-area input.form--control {
  padding-right: 135px;
  border-radius: 10px;
  border: 0;
  padding: 19px 15px;
}

.search-box.footer-area input.form--control::placeholder {
  color: hsl(var(--white));
}

.footer-border-bottom {
  background: hsl(var(--white) / 0.1);
  width: 100%;
  height: 1px;
  margin-top: 10px;
  position: relative;
}

.footer-border-bottom::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: hsl(var(--base-two));
  left: 0;
  top: 0;
}

.footer-border-bottom::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: hsl(var(--base-two));
  right: 0;
  top: 0;
}

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

.footer-area .bottom-footer-text p {
  color: hsl(var(--base));
  font-size: 18px;
}

.bottom-footer-menu ul {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .bottom-footer-menu ul {
    justify-content: center;
  }
}

.bottom-footer-menu ul li {
  padding-left: 14px;
  margin-left: 14px;
  position: relative;
}

.bottom-footer-menu ul li::after {
  content: "";
  position: absolute;
  left: 0px;
  background: hsl(var(--white));
  height: 5px;
  width: 5px;
  bottom: 6px;
  border-radius: 50%;
}

.bottom-footer-menu ul li:first-child::after {
  content: none;
}

.bottom-footer-menu ul li a {
  color: hsl(var(--white));
}

@media screen and (max-width: 424px) {
  .bottom-footer-menu ul li a {
    font-size: 14px;
  }
}

.search-box.footer-area {
  background: hsl(var(--black) / 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.footer-item .login-social-wrap {
  justify-content: end;
}

/*====================== Preloader Style ====================*/
#loading {
  background-color: var(--base-dark-color);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  margin-top: -40px;
  margin-left: -40px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: loading-center-absolute 1.5s infinite;
  animation: loading-center-absolute 1.5s infinite;
}

html {
  height: 100%;
}

.loader {
  position: relative;
  width: 250px;
  height: auto;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .loader:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    animation: layerTr 1s linear infinite alternate;
} */

@keyframes layers1 {
  0% {
    box-shadow: 0px 0px 0 0px;
  }

  90%,
  100% {
    box-shadow: 20px 20px 0 -4px;
  }
}

@keyframes layerTr {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-25px, -25px) scale(1);
  }
}

.banner-section.bg-img {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)),
    url(../images/home-hero.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.auth-section.bg-img {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)),
    url(../images/auth-bg.png);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 991px) {
  .auth-section.bg-img {
    background-color: var(--base-dark-color);
    background-image: none;
  }

  .auth-section .login .container {
    display: flex;
    justify-content: center;
  }

  .loader {
    width: 200px;
  }
}

.bg-overlay {
  position: relative;
  isolation: isolate;
}

.bg-overlay::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--base-two));
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-overlay-two {
  position: relative;
  isolation: isolate;
}

.bg-overlay-two::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: hsl(var(--base));
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*==================== Scroll to Top Start ======================*/
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-sm);
  font-size: 16px;
  z-index: 5;
  transition: 0.5s;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  bottom: -50px;
  animation: scroll_top 5s linear infinite;
  border: 1px solid hsl(var(--white) / 0.8);
}

@media screen and (max-width: 767px) {
  .scroll-top {
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 15px;
  }
}

.scroll-top:hover {
  color: hsl(var(--white));
  background-color: hsl(var(--dark) / 0.7);
}

.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

@keyframes scroll_top {
  0%,
  to {
    transform: translateY(0px);
  }

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

/*=================== Overlay Search Box Start =======================*/
.overlay-search-box .modal-header {
  border-bottom: 0;
  padding: 0;
}

.overlay-search-box .modal-content {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  pointer-events: auto;
  background-color: hsl(var(--dark));
  background-clip: padding-box;
  border-radius: 0.3rem;
  outline: 0;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.search-box {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .search-box {
    width: 100%;
  }
}

.search-btn {
  background-color: transparent;
  color: hsl(var(--white));
  font-weight: 500;
  font-size: 18px;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.2s linear;
  transform: translateY(-50%) rotate(-90deg);
}

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

.toggle-search-box {
  margin-left: 15px;
  order: 1;
  display: flex;
}

@media screen and (max-width: 991px) {
  .toggle-search-box {
    order: -1;
    margin-left: auto;
    margin-right: 16px;
  }
}

.toggle-search-box button {
  background-color: transparent;
  color: hsl(var(--white));
  transform: scaleX(-1);
}

.search-overlay-close {
  background-color: transparent;
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base));
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  transition: 0.2s linear;
}

.search-overlay-close:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
}

/*====================== Selection Style ====================*/
::selection {
  color: hsl(var(--white));
  background: hsl(var(--base-d-100));
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base-d-100));
  border: 0px solid transparent;
  border-radius: 2px;
}

/*====================== Social Icon Style ====================*/
.social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social-list__item {
  margin-right: 5px;
  margin-bottom: 5px;
}

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

.social-list__link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(var(--white) / 0.4);
  transition: 0.3s;
  cursor: pointer;
  color: hsl(var(--base)) !important;
}

.social-list__link.active {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border-color: hsl(var(--base)) !important;
}

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

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

/*====================== List Style ====================*/
.text-list {
  margin: -8px 0px;
}

.text-list.inline {
  display: flex;
  align-items: center;
  margin: 0px -8px;
}

.text-list.inline .text-list__item {
  padding: 0px 8px;
  color: hsl(var(--base-two));
}

.text-list__item-icon i {
  color: var(--base-two);
}

.text-list__item {
  padding: 8px 0px;
  color: hsl(var(--body-color));
}

.text-list__item-icon {
  color: hsl(var(--base-two));
  font-size: 12px;
  margin-right: 5px;
}

.blog-sidebar-wrapper {
  position: sticky;
  top: 100px;
}

/*============ Sidebar search box =============*/
.search-box {
  position: relative;
}

.search-box__button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--base-two));
}

/*============ google-add-sidebar-1 =============*/
.google-add-sidebar-1 {
  height: 300px;
  overflow: hidden;
  max-width: 374px;
  border-radius: 6px;
}

.google-add-sidebar-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============ Auth box =============*/
.blog-sidebar__auth-thumb {
  height: 120px;
  width: 120px;
  margin: auto;
  margin-bottom: 20px;
}

.blog-sidebar__auth-thumb img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-sidebar__auth-content .social-list {
  justify-content: center;
}

.blog-sidebar__auth-content h4 {
  margin-bottom: 10px;
}

.blog-sidebar__auth-content p {
  padding-bottom: 20px;
}

.social-list__item .social-list__link {
  border: 1px solid hsl(var(--base-two) / 0.4);
  color: hsl(var(--dark));
}

.social-list__item .social-list__link:hover {
  color: hsl(var(--white));
}

/*================== Sidebar Box & Title ===================*/
.blog-sidebar {
  background: hsl(var(--base) / 0.06);
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  position: relative;
}

.search-result-box2 {
  height: 438px;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  z-index: 2;
  background-color: var(--base-dark-color);
  width: 86%;
  display: none;
  opacity: 0;
}

.search-result-box2.show {
  display: block;
  opacity: 1;
}

.blog-sidebar:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .blog-sidebar {
    padding: 20px 15px;
  }
}

.blog-sidebar span.border {
  display: block;
  margin-bottom: 32px;
  width: 100%;
  height: 4px;
  background: hsl(var(--base) / 0.1);
  border-radius: 30px;
}

.blog-sidebar .hr-line {
  height: 4px;
  width: 60px;
  margin-top: 10px;
  margin-left: 6px;
  border-radius: 30px;
  background-color: hsl(var(--base));
  display: inline-block;
}

.blog-sidebar__title {
  position: relative;
  color: hsl(var(--dark)) !important;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 23px;
}

.blog-sidebar__sub-title {
  font-size: 19px;
  font-weight: 600;
}

/*========================= Category & Tags List Style ========================= */
.text-list {
  margin: 0;
  /*====================== Tag Style ====================*/
}

.text-list.style-category .text-list__item {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 10px;
  transition: all 0.5s linear;
  border-radius: 5px;
}

.text-list.style-category .text-list__item:hover:before {
  opacity: 0.8;
}

.text-list.style-category .text-list__item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: hsl(var(--dark));
  opacity: 0.6;
  z-index: 1;
  transition: all 0.5s linear;
}

.text-list.style-category .text-list__item .thumb {
  border-radius: 6px;
}

.text-list.style-category .text-list__item .thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.text-list.style-category .text-list__item a {
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  font-size: 17px;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  padding: 0 20px;
  color: hsl(var(--white)) !important;
  justify-content: space-between;
}

.text-list.style-category .text-list__item a span {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-left: auto;
  background: hsl(var(--base));
  color: hsl(var(--white));
}

.text-list.style-category .text-list__link {
  color: hsl(var(--dark)) !important;
}

.text-list.style-category .text-list__link:hover {
  color: hsl(var(--base));
}

.text-list.style-tag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: -7px;
}

.text-list.style-tag .text-list__item {
  padding: 7px;
}

.text-list.style-tag .text-list__link {
  color: hsl(var(--dark));
  border: 1px solid hsl(var(--base) / 0.2);
  padding: 6px 20px;
  border-radius: 3px;
}

.text-list.style-tag .text-list__link.active {
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
}

.text-list.style-tag .text-list__link:hover {
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
}

/*======================== Latest blog========================*/
.latest-blog {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

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

.latest-blog__thumb {
  width: 80px;
  max-height: 80px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 424px) {
  .latest-blog__thumb {
    width: 60px;
  }
}

.latest-blog__thumb a {
  display: block;
  height: 100%;
  width: 100%;
}

.latest-blog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-blog__content {
  width: calc(100% - 80px);
  padding-left: 15px;
}

@media screen and (max-width: 424px) {
  .latest-blog__content {
    width: calc(100% - 60px);
  }
}

.latest-blog__title {
  margin-bottom: 5px;
}

.latest-blog__title a {
  font-weight: 500;
  font-size: 16px;
}

.latest-blog__title a:hover {
  color: hsl(var(--base-two));
}

span.latest-blog__date {
  color: hsl(var(--base-two));
}

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

/*============= Product Sidebar ============= */
.product-details-area .blog-sidebar {
  background-color: transparent;
  padding: 15px 10px;
  border: 1px solid hsl(var(--white) / 0.08);
}

.blog-sidebar-wrapper.product-sidebar .side-bar-item {
  border-bottom: 1px solid hsl(var(--white) / 0.08);
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.blog-sidebar-wrapper.product-sidebar .side-bar-item:last-child {
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0;
}

.blog-sidebar-wrapper.product-sidebar
  .side-bar-item
  .form--check
  .form-check-input {
  border: 1px solid hsl(var(--white) / 0.1);
}

.product-detials .blog-sidebar-wrapper.product-sidebar .blog-sidebar {
  background: transparent;
  padding: 15px 0 15px 15px;
}

@media screen and (max-width: 991px) {
  .product-detials .blog-sidebar-wrapper.product-sidebar .blog-sidebar {
    padding: 0;
  }

  .product-details-area .blog-sidebar {
    padding: 24px 12px 64px;
    border: none;
  }
}

.blog-sidebar-wrapper.product-sidebar .blog-sidebar__title {
  position: relative;
  color: hsl(var(--white)) !important;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 12px;
}

.blog-sidebar-wrapper.product-sidebar .blog-sidebar__sub-title {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}

.blog-sidebar-wrapper.product-sidebar .blog-sidebar__category-wrap .item {
  display: flex;
  justify-content: space-between;
}

.blog-sidebar-wrapper.product-sidebar
  .blog-sidebar
  .side-bar-item
  .form-check-label {
  font-size: 13px;
  line-height: 24px;
}

/*====================== Comment Style ====================*/
.comment-list__item:last-child .comment-list__content {
  border-bottom: none;
}

.comment-list__thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .comment-list__thumb {
    width: 60px;
    height: 60px;
  }
}

.comment-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-list__content {
  width: calc(100% - 80px);
  padding-left: 15px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .comment-list__content {
    width: calc(100% - 60px);
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 575px) {
  .comment-list__content {
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
}

.comment-list__name {
  font-size: 20px;
  margin-bottom: 5px;
  color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
  .comment-list__name {
    font-size: 17px;
  }
}

.comment-list__time {
  margin-bottom: 15px;
}

.comment-list__time-icon {
  color: hsl(var(--base));
  font-size: 15px;
  margin-right: 5px;
}

.comment-list__reply {
  margin-top: 10px;
}

.comment-list__reply-text {
  color: hsl(var(--base));
  font-weight: 400;
}

.comment-list__reply:hover .comment-list__reply-icon {
  color: hsl(var(--base));
}

.comment-list__reply-icon {
  font-size: 14px;
  transform: scaleX(-1);
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .comment-list__reply-icon {
    font-size: 12px;
  }
}

.comment-list .comment-list {
  margin-left: 70px;
}

.comment-list
  .comment-list.style-right
  .comment-list__item:last-child
  .comment-list__content {
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

@media screen and (max-width: 575px) {
  .comment-list .comment-list {
    margin-left: 40px;
  }
}

/*==============** Dashboard Profile **==============*/
.dashboard-wrapper {
  overflow: hidden;
}

.dashboard-header-wrap {
  padding: 5px 15px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #2a2a2a80;
}

@media screen and (max-width: 767px) {
  .dashboard-header-wrap {
    margin-top: 35px;
  }
}

.dashboard-header-wrap .header-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--white) / 0.8);
  margin-bottom: 0;
}

.dashboard-section-title {
  color: hsl(var(--base));
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
}

.dashboard-section .review-wrap {
  border: 1px solid #464646;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.dashboard-section .review-wrap .review-wrap__top {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .dashboard-header-wrap .header-left h3 {
    display: none;
  }

  .dashboard-header-wrap .header-left .sidebar-menu-list__link {
    font-size: 12px;
  }

  .header-right .item {
    margin-left: 18px;
    margin-top: -3px;
  }

  .header-right a {
    font-size: 12px;
  }

  .header-right a i {
    height: 20px;
    width: 20px;
    line-height: 20px;
    font-size: 12px;
  }
}

.dashboard-header-wrap .header-left .dashboard-show-hide {
  padding: 8px 10px;
  background: hsl(var(--base));
  border-radius: 3px;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1199px) {
  .dashboard-header-wrap .header-left .dashboard-show-hide {
    display: block;
  }
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .item {
  margin-left: 18px;
}

@media screen and (max-width: 424px) {
  .header-right .item:first-child {
    display: none;
  }
}

.header-right i {
  height: 30px;
  width: 30px;
  line-height: 29px;
  text-align: center;
  background: hsl(var(--white) / 0.1);
  color: hsl(var(--base-two)) !important;
  border-radius: 5px;
  cursor: pointer;
}

.dashboard_profile {
  border: 1px solid hsl(var(--white) / 0.08);
  width: 300px;
  max-height: 100vh;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 20px;
  border-radius: 4px;
  margin-left: 20px;
  background-color: var(--base-dark-color);
  transition: 0.3s all;
  display: none;
}

@media screen and (max-width: 1199px) {
  .dashboard_profile {
    left: -320px;
    top: 0;
    display: block;
  }
}

@media screen and (max-width: 374px) {
  .dashboard_profile {
    width: 280px;
  }
}

.dashboard_profile.show {
  left: -20px;
  top: 0;
  z-index: 99;
}

.responsive-lang-wrap {
  width: 153px;
  margin-left: 20px;
  margin-bottom: 10px;
  display: none;
}

@media screen and (max-width: 424px) {
  .responsive-lang-wrap {
    display: block;
  }
}

.dashboard-wrapper .dashboard-container-wrapper {
  margin: 20px;
  /* margin-left: 335px; */
}

@media screen and (max-width: 1199px) {
  .dashboard-wrapper .dashboard-container-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.dashboard_profile_wrap {
  position: relative;
  text-align: start;
  border: 0px solid hsl(var(--white) / 0.08);
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .dashboard_profile_wrap {
    align-items: center;
    justify-content: space-between;
  }
}

.dashboard_profile_wrap .close-hide-show {
  display: none;
  padding: 7px 13px;
  background: hsl(var(--base));
  border-radius: 4px;
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 30px;
}

@media screen and (max-width: 1199px) {
  .dashboard_profile_wrap .close-hide-show {
    display: block;
  }
}

.dashboard_profile_wrap h3 {
  font-size: 18px;
}

.dashboard_profile_wrap .sidebar-menu-list {
  padding: 20px;
}

.dashboard_profile_wrap .profile_photo {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 3px solid hsl(var(--base));
  margin-bottom: 35px;
}

.dashboard_profile_wrap .profile_photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: hsl(var(--dark));
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
}

.dashboard_profile_wrap .profile_photo img {
  object-fit: cover;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.dashboard_profile_wrap .profile_photo .photo_upload {
  display: inline-block;
  padding: 0px 0px 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: hsl(var(--white));
  transform: translate(-50%, -50%);
}

.dashboard_profile_wrap .profile_photo .photo_upload i {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.dashboard_profile_wrap .profile_photo .photo_upload .upload_file {
  opacity: 0;
  position: absolute;
  z-index: -1;
  visibility: hidden;
  display: none;
}

.dashboard_profile_wrap h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: 1px;
  margin-top: 10px;
}

.dashboard_profile_wrap p {
  margin-bottom: 10px;
}

.dashboard_profile__details .sidebar-menu-list {
  padding: 0 20px 20px;
  max-height: 80vh;
  overflow-x: auto;
}

.dashboard_profile_wrap .profile_photo:hover::before {
  visibility: visible;
  opacity: 0.7;
}

.dashboard_profile_wrap .profile_photo:hover .photo_upload i {
  visibility: visible;
  opacity: 1;
}

.profile-left__contact .action-category-item {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
  display: flex;
  padding: 20px;
}

.dashboard-item-wrap .action-category-item {
  width: 100%;
  border-radius: 8px !important;
  background: hsl(var(--white) / 0.03);
  position: relative;
  overflow: hidden;
  padding: 15px;
  border: none;
}

.dashboard-item-wrap .action-category-item::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: 32px;
  bottom: -8px;
  border-radius: 100%;
  background-color: hsl(var(--base));
  filter: blur(53px);
  z-index: -1;
}

.dashboard-item-wrap .action-category-item__icon i {
  font-size: 35px;
  margin-top: -5px;
}

.dashboard-item-wrap .action-category-item__icon i svg {
  margin-top: -5px;
}

.profile-left__contact .action-category-item__icon {
  margin-bottom: 0;
  margin-right: 15px;
}

.profile-left__contact .action-category-item__text .site-title {
  font-size: 17px;
  margin-top: 11px;
  color: hsl(var(--white) / 0.8);
}

.profile-right-wrap {
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 8px;
  padding: 20px;
}

.profile-right-wrap .profile-right h5 {
  color: hsl(var(--base));
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
}

.data-extra-schedules .custom-form-field {
  /* border: 1px solid #ffffff !important; */
  color: white !important;
  font-size: 13px;
  background: #2a2a2a !important;
}

.dashboard-wrapper .dashboard-container-wrapper .custom-form-field {
  border: 1px solid #464646;
  background: transparent;
  color: white;
  border-radius: 10px !important;
  line-height: 23px;
}

.dashboard-wrapper
  .dashboard-container-wrapper
  .custom-form-field::placeholder {
  color: #636c72;
}

.dashboard-wrapper .dashboard-container-wrapper .custom-form-field:disabled,
.dashboard-wrapper .dashboard-container-wrapper .custom-form-field[readonly] {
  color: #636c72;
  background: #212121;
}

/*======= Two Factor Verification =======*/
.two-fact-wrapper {
  border: 1px solid hsl(var(--white) / 0.08);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.two-fact-left {
  background-color: hsl(var(--white) / 0.02);
  padding: 30px;
  border-radius: 8px;
}

.two-fact-left__thumb {
  margin: 50px auto;
  height: 200px;
  width: 200px;
  border-radius: 100%;
  background: hsl(var(--black) / 0.08);
  position: relative;
}

.two-fact-left__thumb img {
  width: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.two-fact-left__content {
  text-align: center;
  margin-bottom: 50px;
}

.two-fact-left__bottom .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.two-fact-left__bottom .form-group.form-group.right .form--control {
  background: hsl(var(--white) / 0.1);
  padding: 12px;
  border-radius: 4px !important;
  overflow: hidden;
  border: 0;
}

.two-fact-left__bottom .form-group.form-group.right .input-group-text {
  right: 14px;
  font-size: 20px;
  top: 15px;
  cursor: pointer;
}

.dashboard-body {
  position: relative;
}

.dashboard-body__bar-icon {
  color: hsl(var(--white));
  font-size: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 40px;
  line-height: 40px;
  background-color: hsl(var(--base));
  text-align: center;
  border-radius: 5px;
}

/*======= Dashboard Card =======*/
.dashboard-card {
  padding: 20px 10px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(
    to right,
    hsl(var(--base) / 0.5) 0%,
    hsl(var(--white) / 0.08) 100%
  );
  border-radius: var(--border-radius-sm);
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  position: relative;
  transition: all 0.4s;
}

.dashboard-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.dashboard-card:hover::before {
  top: 0;
  left: 0;
}

.dashboard-card::before {
  position: absolute;
  content: "";
  height: 101%;
  width: 100%;
  background-color: transparent;
  top: 10px;
  left: -11px;
  z-index: -1;
  border-radius: var(--border-radius-sm);
  transition: 0.5s;
  border: 3px solid hsl(var(--black));
}

@media screen and (max-width: 767px) {
  .dashboard-card {
    padding: 20px 15px;
  }
}

.dashboard-card__link {
  position: absolute;
  right: 20px;
}

.dashboard-card__link a {
  color: hsl(var(--white));
  font-size: 14px;
  background: hsl(var(--base));
  padding: 1px 6px;
  border-radius: 5px;
}

.dashboard-card__link a:hover {
  text-decoration: underline;
}

.dashboard-card__icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.dashboard-card__title {
  margin-bottom: 10px;
  font-size: 14px;
}

.dashboard-card__content {
  text-align: left;
  width: calc(100% - 60px);
  padding-left: 10px;
}

.dashboard-card__amount {
  margin-bottom: 5px;
  margin-bottom: 0;
  font-size: 14px;
}

.selling-group-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--base) / 0.2);
  padding: 6px 0;
}

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

.courier-summary-wrap ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid hsl(var(--white) / 0.4);
}

.courier-summary-wrap ul li:first-child {
  border-bottom: 0;
}

.search-box.w-100 {
  width: 100%;
}

.form-group.form-group.right.attachments .input-group-text {
  background: hsl(var(--white) / 0.08);
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  right: 4px;
  cursor: pointer;
}

.form-group.form-group.right.attachments .input-group-text i {
  margin-left: 8px;
  display: block;
}

/*======= open Ticket =======*/
.attachments-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.attachments-box__item {
  margin-right: 25px;
  margin-bottom: 20px;
  position: relative;
  background: hsl(var(--white) / 0.08);
  padding: 20px;
  height: 100px;
  width: 100px;
  text-align: center;
}

.attachments-box__item:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 374px) {
  .attachments-box__item {
    margin-right: 10px;
    width: 80px;
  }
}

.attachments-box__item .close-icon {
  position: absolute;
  top: -9px;
  right: -8px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid hsl(var(--white) / 0.1);
  border-radius: 100%;
  background: #202028;
  z-index: 1;
  cursor: pointer;
}

.attachments-box__item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.attachments-box__item img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}

.dashboard .pricing-plan-item .pricing-plan-item__top .title {
  padding: 0;
  margin-bottom: 12px;
  border: 0;
  color: hsl(var(--base));
}

.dashboard .pricing-plan-item .pricing-plan-item__top span {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  border-bottom: 2px dotted hsl(var(--base) / 0.4);
  padding-bottom: 14px;
}

.dashboard .pricing-plan-item .pricing-plan-item__top h5 {
  margin-bottom: 5px;
  font-size: 20px;
}

.dashboard .pricing-plan-item .pricing-plan-item__list {
  margin-bottom: 10px;
}

.dashboard .pricing-plan-item .pricing-plan-item__bottom button {
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--black));
}

.modal-dialog-centered {
  min-width: 580px;
}

@media screen and (max-width: 991px) {
  .modal-dialog-centered {
    min-width: inherit;
  }
}

.card-primary {
  background-color: hsl(var(--primary) / 0.6);
}

.card-primary .dashboard-card__icon {
  background-color: hsl(var(--primary));
}

.card-violet {
  background-color: hsl(var(--violet) / 0.6);
}

.card-violet .dashboard-card__icon {
  background-color: hsl(var(--violet));
}

.card-success {
  background-color: hsl(var(--success) / 0.6);
}

.card-success .dashboard-card__icon {
  background-color: hsl(var(--success));
}

.card-danger {
  background-color: hsl(var(--danger) / 0.4);
}

.card-danger .dashboard-card__icon {
  background-color: hsl(var(--danger));
}

.card-warning {
  background-color: hsl(var(--warning) / 0.6);
}

.card-warning .dashboard-card__icon {
  background-color: hsl(var(--warning));
}

.card-info {
  background-color: hsl(var(--info) / 0.6);
}

.card-info .dashboard-card__icon {
  background-color: hsl(var(--info));
}

.card-success-1 {
  background-color: hsl(var(--success) / 0.3);
}

.card-success-1 .dashboard-card__icon {
  background-color: hsl(var(--success));
}

.card-primary-1 {
  background-color: hsl(var(--primary) / 0.4);
}

.card-primary-1 .dashboard-card__icon {
  background-color: hsl(var(--primary));
}

.card-violet-1 {
  background-color: hsl(var(--violet) / 0.3);
}

.card-violet-1 .dashboard-card__icon {
  background-color: hsl(var(--violet) / 0.8);
}

/*===== Domain check status   ==== */
.account-status.account-form .form--check {
  justify-content: center;
}

.account-status.account-form .form--check .form-check-label {
  width: inherit;
  display: flex;
  justify-content: center;
}

.account-status.account-form h3.account-form__title.mb-2 {
  font-size: 60px;
  color: hsl(var(--base));
  margin-bottom: 0;
}

.account-status.account-form .choose-domain {
  margin-bottom: 15px;
}

.account-status.account-form .choose-domain h3 {
  margin-bottom: 5px;
}

.account-status.account-form .choose-domain h4 {
  color: hsl(var(--base));
  margin-bottom: 0px;
}

.order-wrapper {
  border: 1px solid hsl(var(--base) / 0.05);
}

.order-wrapper__top h4 {
  background-color: hsl(var(--base) / 0.05);
  font-size: 19px;
  padding: 16px 20px;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-weight: 600;
  border: 1px solid hsl(var(--base) / 0.1);
}

.order-wrapper__body {
  padding: 20px;
}

.order-wrapper__body .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-wrapper__body .item:first-child {
  border-bottom: 1px solid hsl(var(--base) / 0.05);
}

/*======= Apex chart =========*/
.apexcharts-wrap {
  border-radius: 8px;
  padding: 15px 10px 5px 5px;
  background-color: #151517;
}

.apexcharts-wrap .apexcharts-legend-text {
  color: hsl(var(--white)) !important;
}

.apexcharts-wrap .apexcharts-yaxis-texts-g text {
  fill: hsl(var(--white));
}

.apexcharts-wrap .apexcharts-yaxis-title text {
  fill: hsl(var(--white)) !important;
}

.apexcharts-wrap .apexcharts-xaxis-texts-g text {
  fill: hsl(var(--white)) !important;
}

.apex-chart-top .language-box .select {
  border: 1px solid hsl(var(--white) / 0.08);
  padding: 7px;
  border-radius: 8px;
}

/* ======= Dashboard Deposit  ======= */
.deposit-item {
  padding: 20px;
  text-align: center;
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 8px;
}

.deposit-item__thumb {
  border-radius: 8px;
  margin-bottom: 25px;
}

.deposit-item__body .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.dotted-btn {
  border: 1px dotted hsl(var(--white) / 0.08);
  width: 100%;
  border-radius: 4px;
  padding: 15px 10px;
  color: hsl(var(--base));
  font-weight: 500;
}

.border-wrapper {
  border: 1px dotted hsl(var(--white) / 0.08);
  margin: 20px;
  border-radius: 8px;
}

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

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

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

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

/*============== Search Form Start ==================*/
.search-form {
  margin-top: 50px;
  border: 12px solid hsl(var(--white) / 0.15);
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .search-form {
    border-width: 7px;
  }
}

.search-form .form--control {
  background-color: hsl(var(--white));
  color: hsl(var(--base-two));
  border-radius: 0;
  font-weight: 500;
  border-radius: 40px;
  padding: 15px;
  padding-right: 150px;
}

.search-form .form--control::placeholder {
  color: hsl(var(--black) / 0.4) !important;
  font-weight: 500;
}

.search-form .btn--base {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  height: auto;
  align-items: center;
  border-radius: 40px !important;
  padding: 10px 20px;
  font-size: 15px;
}

.search-form .btn--base:hover,
.search-form .btn--base:focus {
  color: hsl(var(--white));
  background-color: hsl(var(--base));
}

/*====================== Hexagon Design Css Start ====================*/
.hex {
  position: relative;
  margin: 20px auto;
  width: 185px;
  height: 300px;
  border-radius: 15px;
  background-color: hsl(var(--base));
  transform: rotate(30deg);
}

.hex:before,
.hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.hex:before {
  transform: rotate(-60deg);
}

.hex:after {
  transform: rotate(60deg);
}

.shape {
  position: absolute;
}

.shape.one {
  left: 40%;
  bottom: 20%;
  max-width: 3%;
  animation: banner_shape_one 8s linear infinite;
}

.shape.two {
  right: 6%;
  top: 15%;
  max-width: 6%;
  animation: banner_shape_two 15s linear infinite;
}

.shape.three {
  top: 15%;
  left: 6%;
  max-width: 4%;
  animation: banner_shape_three 8s linear infinite;
}

.shape.four {
  bottom: 13%;
  left: 11%;
  max-width: 5%;
  animation: banner_shape_four 8s linear infinite;
}

.shape.five {
  right: 6%;
  bottom: 16%;
  transform: rotate(108deg);
  max-width: 4%;
  animation: banner_shape_five 8s linear infinite;
}

.shape.six {
  right: 6%;
  top: 15%;
  max-width: 6%;
  animation: banner_shape_six 5s linear infinite;
}

.shape.seven {
  top: 15%;
  left: 6%;
  max-width: 4%;
  animation: banner_shape_seven 8s linear infinite;
}

.shape.eight {
  bottom: 13%;
  left: 11%;
  max-width: 5%;
  animation: banner_shape_eight 3s linear infinite;
}

.shape.nine {
  right: 6%;
  bottom: 30%;
  max-width: 4%;
  transform: rotate(60deg);
  animation: banner_shape_nine 8s linear infinite;
}

.shape.ten {
  right: 6%;
  top: 15%;
  max-width: 6%;
  animation: banner_shape_ten 10s linear infinite;
  transform: rotate(-60deg);
}

.shape.eleven {
  top: 15%;
  left: 6%;
  max-width: 4%;
  animation: banner_shape_eleven 20s linear infinite;
}

.shape.thirteen {
  right: 0;
  bottom: 30%;
  max-width: 4%;
  animation: banner_shape_thirteen 30s linear infinite;
}

.shape.fourteen {
  right: 6%;
  bottom: 30%;
  max-width: 4%;
  transform: rotate(60deg);
  animation: banner_shape_fourteen 8s linear infinite;
}

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

  50% {
    transform: translate(20px);
  }

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

@keyframes banner_shape_two {
  0% {
    transform: translateX(0px) translateY(40px);
  }

  25% {
    transform: translateX(40px) translateY(0px);
  }

  50% {
    transform: translateX(0px) translateY(-40px);
  }

  75% {
    transform: translateX(-40px) translateY(0px);
  }

  100% {
    transform: translateX(0px) translateY(40px);
  }
}

@keyframes banner_shape_three {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

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

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

@keyframes banner_shape_four {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }

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

@keyframes banner_shape_five {
  0% {
    transform: translateX(0px) rotate(108deg);
  }

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

  100% {
    transform: translateX(0px) rotate(108deg);
  }
}

@keyframes banner_shape_six {
  0% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(0);
  }

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

@keyframes banner_shape_seven {
  0% {
    transform: scaleY(0);
  }

  50% {
    transform: scaleY(1);
  }

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

@keyframes banner_shape_eight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-15px);
  }
}

@keyframes banner_shape_nine {
  0% {
    transform: translateY(100px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(180deg);
  }

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

@keyframes banner_shape_ten {
  0% {
    transform: translateY(100px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

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

@keyframes banner_shape_thirteen {
  0% {
    bottom: 0;
  }

  50% {
    bottom: 50%;
  }

  100% {
    bottom: 0;
  }
}

@keyframes banner_shape_fourteen {
  0% {
    left: 10px;
    transform: rotate(0deg);
  }

  50% {
    left: 100px;
    transform: rotate(1000deg);
  }

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

@keyframes banner_shape_eleven {
  0% {
    transform: rotate(0deg);
  }

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

/*====================== Star Rating Style ====================*/
.rating-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rating-list__item {
  padding: 0 1px;
  color: hsl(var(--warning));
}

.rating-list__text {
  color: hsl(var(--body-color));
}

/*====================== Range Style ====================*/
.custom--range__content {
  display: flex;
  flex-wrap: wrap;
  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-two) / 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(--white)) !important;
  border: 2px solid hsl(var(--base)) !important;
  border-radius: 50%;
}

/*============ ------ **  Range Slider **-------- ============*/
.range-slider label {
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
}

.range-slider .ui-slider {
  position: relative;
  text-align: left;
}

.range-slider .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid hsl(var(--base));
  cursor: w-resize;
  background: hsl(var(--base));
  outline: none;
  top: -8px;
  margin-left: -8px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.range-slider .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background-position: 0 0;
}

.range-slider .ui-widget-content {
  background-color: hsl(var(--white)) !important;
}

.range-slider .ui-widget-header {
  background-color: hsl(var(--base));
}

.range-slider .ui-slider.ui-state-disabled .ui-slider-handle,
.range-slider .ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit;
}

.range-slider .ui-slider-horizontal {
  height: 3px;
  border-radius: 10px;
  width: calc(100% - 16px);
  margin-left: 8px;
}

.range-slider .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.range-slider .ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.range-slider .ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

input.first-slider-value:focus,
input.second-slider-value:focus,
input.first-slider-value,
input.second-slider-value {
  width: 40%;
  display: inline-block;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 12px 0 0 0;
  cursor: default;
  color: hsl(var(--white));
  font-size: 12px;
}

input.first-slider-value {
  float: left;
  margin-left: -8px;
  width: 40%;
}

input.second-slider-value {
  float: right;
  width: 40%;
  text-align: right;
  margin-right: -8px;
}

.range-slider {
  line-height: 37px;
}

/*======== Sidebar Menu Start =======*/
.sidebar-menu {
  padding-bottom: 10px;
  padding-top: 0px;
  height: 100vh;
  min-height: 100%;
  overflow-y: auto;
  z-index: 999;
  transition: 0.2s linear;
  box-shadow: var(--box-shadow);
  /*============== Sidebar Show hide Css Start ===========*/
  /*============== Sidebar Show hide Css end ===========*/
}

.sidebar-menu.show-sidebar {
  transform: translateX(0);
  background-color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
  .sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 320px;
    padding-top: 60px;
    transform: translateX(-100%);
    z-index: 9992;
    border-radius: 0;
  }
}

.sidebar-menu__close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 18px;
  transition: 0.2s linear;
  cursor: pointer;
  display: none;
  z-index: 9;
}

@media screen and (max-width: 1199px) {
  .sidebar-menu__close {
    display: block;
  }
}

.sidebar-menu__close:hover,
.sidebar-menu__close:focus {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: hsl(var(--white));
}

.sidebar-menu-list__item:last-child {
  border-bottom: 0;
}

.sidebar-menu-list__item:hover {
  color: hsl(var(--white));
}

.sidebar-menu-list__item a:hover {
  color: hsl(var(--base-two));
}

.sidebar-menu-list__item a:hover .icon svg {
  fill: hsl(var(--base));
}

.sidebar-menu-list__item a:hover.active a.sidebar-menu-list__link {
  color: hsl(var(--base));
}

.sidebar-menu-list__item.has-dropdown.active > a {
  color: hsl(var(--base));
}

.sidebar-menu-list__item.has-dropdown.active > a:after {
  transform: rotate(90deg);
  margin-left: 14px;
  color: hsl(var(--base));
}

.sidebar-menu-list__item.has-dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  text-align: center;
  background: 0 0;
  position: absolute;
  top: 10px;
  transition: 0.1s linear;
  right: 0;
}

.sidebar-menu-list__link {
  text-decoration: none;
  position: relative;
  width: 100%;
  min-width: fit-content;
  color: hsl(var(--white) / 0.8);
  padding: 10px 0px 10px 0px;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

.sidebar-menu-list__link.active {
  color: hsl(var(--base));
}

.sidebar-menu-list__link .icon {
  margin-right: 5px;
  font-size: 16px;
}

.sidebar-menu-list__link .icon svg {
  fill: hsl(var(--white) / 0.8);
}

li.sidebar-menu-list__item.active a.sidebar-menu-list__link {
  color: hsl(var(--base-two));
}

li.sidebar-menu-list__item.active a.sidebar-menu-list__link svg {
  fill: hsl(var(--base));
}

/*=============== Sidebar Submenu Start ===============*/
.sidebar-submenu {
  display: none;
  position: relative;
}

.sidebar-submenu::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 22px;
  left: 27px;
  border-left: 1px solid hsl(var(--base-two));
}

.sidebar-submenu.open-submenu {
  display: block;
}

.sidebar-submenu-list {
  padding: 5px 0;
}

.sidebar-submenu-list__item {
  position: relative;
}

.sidebar-submenu-list__item::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 27px;
  width: 16px;
  height: 1px;
  border-top: 1px solid hsl(var(--base-two));
}

.sidebar-submenu-list__item.active > a {
  color: hsl(var(--base-two));
}

.sidebar-submenu-list__link {
  padding: 8px 20px 4px 50px !important;
  display: block;
  color: hsl(var(--white));
  border-bottom: 0 !important;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(-5deg);
  }

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

/*========  responsive sidebar menu  =======*/
.sidebar-menu-wrapper {
  width: 100%;
  height: 100%;
  background-color: hsl(var(--base));
  position: fixed;
  z-index: 99999;
  left: -100%;
  transition: all 0.4s ease-in-out;
}

.sidebar-menu-wrapper.show {
  left: 0;
  position: fixed;
  top: 0;
}

@media screen and (max-width: 374px) {
  .sidebar-menu-wrapper {
    width: 100%;
  }
}

.sidebar-menu-wrapper .top-close {
  margin-top: 20px;
  text-align: end;
  margin-right: 24px;
  margin-left: 20px;
  height: 40px;
}

.logo-wrapper img {
  width: 155px;
}

.sidebar-menu-wrapper .top-close i {
  font-size: 25px;
  color: var(--base-dark-color);
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 34px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
}

.sidebar-menu-wrapper .btn.btn--base.fav-btn {
  background: hsl(var(--white) / 0.1);
}

.sidebar-menu-wrapper .btn.btn--base.fav-btn i {
  color: #d7443e;
  margin-right: 3px;
}

.sidebar-menu-list.mobile {
  display: flex;
  height: calc(100% - 284px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sidebar-menu-list.mobile .sidebar-menu-list__item .language-box {
  padding: 7px 13px;
}

.sidebar-menu-list.mobile .sidebar-menu-list__item .language-box .select {
  font-size: 16px;
}

.sidebar-menu-list.mobile .sidebar-menu-list__item a {
  font-size: 31px;
}

.sidebar-menu-footer {
  background: var(--base-dark-color);
  height: 200px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 16px;
  /* position: fixed; */
  /* bottom: 0; */
}

.sidebar-menu-footer .footer-contact-menu__item-content {
  text-align: center;
}

.sidebar-menu-footer .footer-contact-menu__item-content a {
  font-size: 31px;
}

.sidebar-menu-footer .bottom-footer-text p {
  font-size: 13px;
  color: hsl(var(--base));
}

.sidebar-menu-footer .footer-menu__item a:before {
  content: none;
}

.sidebar-menu-footer .footer-menu__link {
  font-size: 13px;
}

.sidebar-menu-footer-title {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 16px;
  color: hsl(var(--base));
}

/*========  responsive product filter  =======*/

.products-sidebar-overlay {
  position: fixed;
  width: 100%;
  height: calc(100vh - 85px);
  content: "";
  left: 0;
  top: 84px;
  background-color: hsl(var(--black) / 0.6);
  z-index: 99;
  transition: 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

.products-sidebar-overlay.show {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}

.products-filter-wrapper {
  width: 100%;
  height: calc(100vh - 78px);
  background-color: var(--base-dark-color);
  position: fixed;
  z-index: 9999;
  left: -100%;
  top: 77px;
  transition: all 0.4s ease-in-out;
}

.products-filter-wrapper .filter-buttons {
  display: none;
}

.products-filter-wrapper.show {
  left: 0;
}

@media screen and (max-width: 374px) {
  .products-filter-wrapper {
    width: 100%;
  }
}

.products-filter-wrapper .top-close {
  background: #2a2a2a;
  text-align: end;
  padding: 12px 20px;
}

.logo-wrapper img {
  width: 155px;
}

.products-filter-wrapper .top-close i {
  font-size: 25px;
  color: hsl(var(--base));
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 34px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
}

.products-filter-wrapper .btn.btn--base.fav-btn {
  background: hsl(var(--white) / 0.1);
}

.products-filter-wrapper .btn.btn--base.fav-btn i {
  color: #d7443e;
  margin-right: 3px;
}

.products-filter-body {
  height: calc(100vh - 193px);
  max-height: calc(100vh - 193px);
  width: 100%;
  overflow-y: auto;
}

.products-filter-footer {
  height: 56px;
  width: 100%;
  background: hsl(var(--base));
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  z-index: 10001;
}

.products-filter-footer p {
  font-size: 18px;
}

.products-filter-show-hide {
  width: 50%;
}

@media screen and (min-width: 991px) {
  .products-filter
    .product-sidebar
    .side-bar-item:first-child
    .blog-sidebar__filter-wrap {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 15px;
  }

  .products-filter
    .product-sidebar
    .side-bar-item:first-child
    .blog-sidebar__filter-wrap:first-child {
    order: 2;
  }

  .product-details-area .filter-buttons button:not(:last-child) {
    display: none;
  }

  .product-details-area .filter-buttons button:last-child {
    display: block;
    width: 100%;
    height: 45px;
    padding: 0;
    font-size: 14px;
  }
}

.product-details-area .filter-buttons {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .activity-filter {
    display: none;
  }

  .products-filter-show-hide {
    font-size: 14px;
  }

  .products-filter .product-sidebar .blog-sidebar {
    padding: 0;
    border: 0;
  }

  .products-filter .product-sidebar .side-bar-item:first-child {
    padding: 0;
    border: 0;
  }

  .products-filter .product-sidebar .side-bar-item:first-child #search {
    height: 50px;
  }

  .products-filter
    .product-sidebar
    .side-bar-item:first-child
    .blog-sidebar__title,
  .products-filter .product-sidebar .side-bar-item:first-child .form--label {
    display: none;
  }

  .products-filter .product-sidebar .side-bar-item:nth-child(n + 2) {
    display: none;
  }

  .products-filter-body
    .products-filter
    .product-sidebar
    .side-bar-item:nth-child(n + 2) {
    display: block;
  }

  .product-details-area .filter-buttons button {
    display: block;
  }

  .products-filter-wrapper .filter-buttons {
    display: none;
  }

  .mobile-category {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .sidebar-menu-list.mobile .sidebar-menu-list__item a {
    font-size: 22px;
  }

  .sidebar-menu-footer .footer-contact-menu__item-content a {
    font-size: 22px;
  }

  .products-filter-footer p {
    font-size: 15px;
  }
}

/*============= Animation Play Video Button Pulse New ========== */
.mfp-iframe-holder .mfp-close {
  top: -52px;
  color: hsl(var(--white));
  font-size: 21px;
  font-weight: 800;
  width: 42px;
  height: 35px;
  background: hsl(var(--base));
  text-align: center;
  line-height: 32px;
  padding: 0;
  opacity: 1;
  border-radius: 5px;
}

.mfp-iframe-holder .mfp-close:hover {
  opacity: 0.9;
}

.play-video {
  height: 80px;
  width: 80px;
  background: hsl(var(--base));
  line-height: 80px;
  display: inline-block;
  border-radius: 100%;
  position: relative;
  z-index: 3;
  text-align: center;
}

.video-main {
  position: relative;
  display: inline-block;
}

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

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

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

.fa-play:before {
  content: "\f04b";
  color: hsl(var(--white));
}

.waves {
  position: absolute;
  width: 140px;
  height: 140px;
  background: hsl(var(--base) / 0.5);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -29px;
  bottom: -30px;
  z-index: 1;
  -webkit-animation: waves 9s ease-in-out infinite;
  animation: waves 9s ease-in-out infinite;
}

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

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

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

/*==================== Category Start Here ==================== */
.category-wrap {
  padding-right: 40px;
}

@media screen and (max-width: 1199px) {
  .category-wrap {
    padding-right: 0;
  }
}

.category-item {
  border-bottom: 1px solid hsl(var(--base) / 0.1);
  padding-bottom: 20px;
  margin-bottom: 50px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .category-item {
    flex-direction: column;
    margin-bottom: 37px;
  }
}

.category-item:hover .category-item__thumb img {
  transform: scale(1.2);
}

.category-item__thumb {
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  border-radius: 17px;
  min-width: 280px;
  height: 200px;
}

.category-item__thumb img {
  min-width: 280px;
  height: 200px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s linear;
}

.category-item__content {
  padding-left: 20px;
  margin-top: -7px;
}

@media screen and (max-width: 767px) {
  .category-item__content {
    padding-left: 0px;
  }
}

.category-item__content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

.category-item__content h3 a:hover {
  background-size: 100% 2px;
  color: inherit;
}

.category-item__content p {
  margin-bottom: 10px;
}

.meta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.meta-wrap .view-commetn-wrap li a {
  font-size: 14px;
}

.meta-wrap .view-commetn-wrap li a.right-dot {
  position: relative;
  margin-left: 20px;
}

.meta-wrap .view-commetn-wrap li a.right-dot::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 8px;
  width: 7px;
  height: 7px;
  background: hsl(var(--black));
  border-radius: 50%;
}

/*============= Custom cursor  start  =============*/
.cursor-outer {
  margin-left: -18px;
  margin-top: -18px;
  width: 35px;
  height: 35px;
  background: hsl(var(--base));
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.2;
  transition: all 0.3s ease-out;
}

.mouseCursor {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

[dir="rtl"] .mouseCursor {
  left: 0;
  right: auto;
}

.cursor-inner {
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 10000001;
  background-color: hsl(var(--base));
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner span {
  color: hsl(var(--white));
  line-height: 80px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.mouseCursor.cursor-big {
  width: 80px;
  height: 80px;
  margin-inline-start: -40px;
  margin-top: -40px;
}

.mouseCursor.cursor-big.cursor-outer {
  display: none;
}

.mouseCursor.cursor-big.d-none {
  display: none;
}

.slider-drag .swiper-slide {
  cursor: none;
}

/*================== Dark Style Color ==================*/
/*===== Dark and light logo hide and show =====*/
.logo-wrapper .normal-logo {
  display: block;
}

.logo-wrapper .normal-logo.hidden {
  display: none;
}

.logo-wrapper .dark-logo {
  display: block;
}

.logo-wrapper .dark-logo.hidden {
  display: none;
}

.footer-item__logo .footer-logo-normal {
  display: block;
  position: relative;
}

.footer-item__logo .footer-logo-normal.hidden {
  display: none;
}

.footer-item__logo .footer-logo-dark {
  display: block;
}

.footer-item__logo .footer-logo-dark.hidden {
  display: none;
}

/*============= Banner area start  =============*/
.banner-section img.banner-shape.light-img {
  display: none;
}

.banner-section {
  position: relative;
  z-index: 1;
  padding: 300px 0 380px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .banner-section {
    padding: 200px 0 250px;
  }
}

.banner-section .popup-vide-wrap {
  position: absolute;
  right: 12%;
  top: 77%;
  z-index: -1;
}

@media screen and (max-width: 1620px) {
  .banner-section .popup-vide-wrap {
    right: 12%;
  }
}

@media screen and (max-width: 1599px) {
  .banner-section .popup-vide-wrap {
    right: 9%;
  }
}

@media screen and (max-width: 1499px) {
  .banner-section .popup-vide-wrap {
    right: 0px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-section .popup-vide-wrap {
    right: -3%;
    top: 60%;
  }
}

@media screen and (max-width: 991px) {
  .banner-section .popup-vide-wrap {
    right: 31%;
    top: 87%;
  }
}

@media screen and (max-width: 575px) {
  .banner-section .popup-vide-wrap {
    right: 17%;
    top: 88%;
  }
}

@media screen and (max-width: 767px) {
  .banner-section .popup-vide-wrap {
    right: 6%;
    top: 93%;
  }
}

.banner-section .popup-vide-wrap .waves {
  position: absolute;
  width: 550px;
  height: 550px;
  right: -14px;
  bottom: 40px;
  border-radius: 100%;
  background: hsl(var(--base) / 0.12);
}

@media screen and (max-width: 1599px) {
  .banner-section .popup-vide-wrap .waves {
    right: -66px;
  }
}

@media screen and (max-width: 1499px) {
  .banner-section .popup-vide-wrap .waves {
    width: 450px;
    height: 450px;
    right: 55px;
    bottom: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-section .popup-vide-wrap .waves {
    right: 70px;
    bottom: -65px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section .popup-vide-wrap .waves {
    width: 390px;
    height: 390px;
    right: -120px;
    bottom: 110px;
  }
}

@media screen and (max-width: 767px) {
  .banner-section .popup-vide-wrap .waves {
    width: 390px;
    height: 390px;
    right: 5px;
    bottom: 226px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section .popup-vide-wrap .waves {
    width: 390px;
    height: 390px;
    right: 5px;
    bottom: 198px;
  }
}

@media screen and (max-width: 374px) {
  .banner-section .popup-vide-wrap .waves {
    width: 250px;
    height: 250px;
    right: 24px;
    bottom: 280px;
  }
}

.banner-section .banner-shape {
  position: absolute;
  right: 125px;
  top: 40px;
  z-index: -3;
}

@media screen and (max-width: 1800px) {
  .banner-section .banner-shape {
    right: 70px;
  }
}

@media screen and (max-width: 1700px) {
  .banner-section .banner-shape {
    right: 44px;
  }
}

@media screen and (max-width: 1599px) {
  .banner-section .banner-shape {
    right: -52px;
  }
}

@media screen and (max-width: 1499px) {
  .banner-section .banner-shape {
    right: -166px;
  }
}

@media screen and (max-width: 1399px) {
  .banner-section .banner-shape {
    right: -185px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-section .banner-shape {
    right: -161px;
    top: -82px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section .banner-shape {
    top: 29%;
    right: 6%;
  }
}

@media screen and (max-width: 575px) {
  .banner-section .banner-shape {
    display: none;
  }
}

.banner-section .banner-hero-image {
  position: absolute;
  z-index: -3;
}

.banner-effect {
  content: "";
  position: absolute;
  width: 380px;
  height: 342px;
  left: -189px;
  bottom: -74px;
  border-radius: 100%;
  background-color: hsl(var(--base));
  filter: blur(110px);
  z-index: -1;
  opacity: 1;
}

.banner-effect_two {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: 48px;
  bottom: 115px;
  border-radius: 100%;
  background-color: hsl(var(--base-two));
  filter: blur(81px);
  z-index: -1;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .banner-effect {
    right: 86px;
  }

  .banner-effect_two {
    top: 0;
    right: -29px;
    height: 300px;
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .banner-section .banner-effect {
    right: 35px;
  }

  .banner-effect_two {
    top: 50px;
    right: -29px;
    height: 230px;
    width: 230px;
    height: 230px;
  }
}

@media screen and (max-width: 410px) {
  .banner-effect_two {
    top: 50px;
    right: -29px;
    height: 170px;
    width: 170px;
  }
}

@media screen and (max-width: 374px) {
  .banner-section .banner-effect {
    right: 0px;
    bottom: 70px;
  }
}

.banner-left__content .video-button-wrap .waves {
  width: 100px;
  height: 100px;
  right: -79px;
  bottom: -45px;
  border-radius: 100%;
}

.banner-left__content {
  margin-top: 25px;
}

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

.banner-left__content .video-button-wrap {
  display: flex;
}

.banner-left__content a.video-button.popup_video {
  background: hsl(var(--white)) !important;
  position: relative;
  z-index: 1;
  border-radius: 100%;
}

.banner-left__content a.video-button i {
  height: 48px;
  width: 48px;
  text-align: center;
  border: 3px solid hsl(var(--base));
  line-height: 42px;
  border-radius: 100%;
  display: block;
}

.banner-left__content span.subtitle {
  font-size: 20px;
  font-weight: 600;
  color: hsl(var(--base));
  display: inline-block;
  margin-bottom: 11px;
}

@media screen and (max-width: 575px) {
  .banner-left__content span.subtitle {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.banner-left__content h2 {
  font-size: 56px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 800;
  color: hsl(var(--white));
  line-height: 1.2142;
}

.banner-left__content h2 span {
  color: hsl(var(--base));
  background-image: linear-gradient(
    to right,
    hsl(var(--base)) 0%,
    hsl(var(--base-light)) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1399px) {
  .banner-left__content h2 {
    font-size: 50px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-left__content h2 {
    font-size: 45px;
  }
}

@media screen and (max-width: 991px) {
  .banner-left__content h2 {
    font-size: 40px;
    margin-bottom: 11px;
  }
}

@media screen and (max-width: 767px) {
  .banner-left__content h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 424px) {
  .banner-left__content h2 {
    font-size: 28px;
  }
}

.banner-left__content p {
  margin-bottom: 35px;
  margin-bottom: 70px;
  width: 88%;
  text-transform: capitalize;
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .banner-left__content p {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 575px) {
  .banner-left__content p {
    margin-bottom: 35px;
    width: 100%;
  }
}

.banner-left__content .button-wrap .btn.btn--base.two {
  background-color: #414148;
  transition: 0.3s all;
}

.banner-left__content .button-wrap .btn.btn--base.two:hover {
  background-color: hsl(var(--base-two));
}

@media screen and (max-width: 991px) {
  .banner-left__content .btn {
    padding: 12px 15px;
  }
}

@media screen and (max-width: 374px) {
  .banner-left__content .btn {
    padding: 8px 10px;
  }
}

.banner-right-wrap {
  text-align: right;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -60px;
}

@media screen and (max-width: 991px) {
  .banner-right-wrap {
    margin-left: 0px;
    text-align: center;
    margin-top: 0;
  }
}

.main-banner-img {
  transition: all 0.4s;
  position: relative;
  border-radius: 100%;
}

.main-banner-img .banner-shape-left {
  position: absolute;
  left: -45px;
  top: 150px;
}

@media screen and (max-width: 575px) {
  .main-banner-img .banner-shape-left {
    left: 20px;
    display: none;
  }
}

@media screen and (max-width: 424px) {
  .main-banner-img .banner-shape-left {
    left: -11px;
  }
}

.main-banner-img .banner-shape-right {
  position: absolute;
  top: 38px;
  right: -30px;
}

@media screen and (max-width: 991px) {
  .main-banner-img .banner-shape-right {
    right: 20px;
  }
}

@media screen and (max-width: 575px) {
  .main-banner-img .banner-shape-right {
    right: 0;
  }
}

@media screen and (max-width: 374px) {
  .main-banner-img .banner-shape-right {
    right: -20px;
    top: 15px;
  }
}

.input-search {
  border-radius: 12px;
  background: #ffffff;
  color: #000;
  border: 2px solid #f67280;
}

.input-search input {
  color: #000;
  padding: 20px;
  border-radius: 10px !important;
}

/*============= Banner two area start  =============*/
.banner-section.banner-two {
  padding: 215px 0 120px;
}

@media screen and (max-width: 1199px) {
  .banner-section.banner-two {
    padding: 170px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .banner-section.banner-two {
    padding: 150px 0 80px;
  }
}

.banner-section.banner-two .banner-two-banner-shape {
  position: absolute;
  top: 0px;
  z-index: -3;
  left: 0;
  height: 100%;
  width: 100%;
}

.banner-section.banner-two .main-banner-img {
  border: 3px solid hsl(var(--base) / 0.3);
}

/*============= Banner Three area start  =============*/
.banner-section.banner-three {
  padding: 280px 0 180px;
}

@media screen and (max-width: 1399px) {
  .banner-section.banner-three {
    padding: 260px 0 160px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-section.banner-three {
    padding: 230px 0 130px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three {
    padding: 120px 0 30px;
  }
}

@media screen and (max-width: 374px) {
  .banner-section.banner-three {
    padding: 100px 0 10px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three {
    padding: 170px 0 130px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three {
    padding: 170px 0 130px;
  }
}

.banner-section.banner-three .banner-effect {
  content: "";
  position: absolute;
  width: 542px;
  height: 542px;
  left: 50%;
  top: 32%;
  border-radius: 100%;
  background-color: hsl(var(--base) / 0.5);
  opacity: 0.6;
  filter: blur(60px);
  z-index: -1;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .banner-section.banner-three .banner-effect {
    width: 442px;
    height: 442px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three .banner-effect {
    width: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three .banner-effect {
    width: 350px;
    height: 350px;
  }
}

.banner-section.banner-three .banner-3-left-top {
  position: absolute;
  left: 13%;
  top: -25%;
  border: 1px solid transparent;
  border-radius: 100%;
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three .banner-3-left-top {
    display: none;
  }
}

.banner-section.banner-three .banner-3-right-top {
  position: absolute;
  right: 4%;
  top: -23%;
  border: 1px solid transparent;
  border-radius: 100%;
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three .banner-3-right-top {
    left: 40%;
    top: -14%;
  }
}

@media screen and (max-width: 374px) {
  .banner-section.banner-three .banner-3-right-top {
    top: -10%;
  }
}

.banner-section.banner-three .banner-3-left-bottom {
  position: absolute;
  bottom: -32%;
  left: 8%;
  border: 1px solid transparent;
  border-radius: 100%;
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three .banner-3-left-bottom {
    left: 40%;
    bottom: -29%;
  }
}

@media screen and (max-width: 374px) {
  .banner-section.banner-three .banner-3-left-bottom {
    bottom: -22%;
  }
}

.banner-section.banner-three .banner-3-right-bottom {
  position: absolute;
  bottom: -32%;
  right: 8%;
  border: 1px solid transparent;
  border-radius: 100%;
}

@media screen and (max-width: 575px) {
  .banner-section.banner-three .banner-3-right-bottom {
    display: none;
  }
}

.banner-section.banner-three .banner-left__content p {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
}

@media screen and (max-width: 1399px) {
  .banner-section.banner-three .banner-left__content p {
    width: 100%;
  }
}

/*============= Action category start  =============*/
.action-category-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  overflow: auto;
  padding: 0;
  margin-top: 80px;
}

.action-category-item {
  padding: 5px;
  transition: all 0.4s;
  width: 100%;
  min-width: 100px;
  border: 1px solid #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .action-category-item {
    width: 33.33%;
  }
}

@media screen and (max-width: 767px) {
  .action-category-item {
    width: 50%;
  }
}

@media screen and (max-width: 440px) {
  .action-category-item {
    width: 100%;
  }
}

.action-category-item:hover .action-category-item__icon .svg-color {
  stroke: hsl(var(--base-two));
}

.action-category-item p {
  font-size: 11px;
  line-height: 11px;
}

.action-category-item:nth-child(0) {
  margin-right: 20px;
}

.action-category-divide-item {
  height: auto;
  margin: 0;
  border: 0.5px solid #ffffff;
}

.action-category-item__icon {
  position: relative;
  margin-bottom: 5px;
}

.action-category-item__icon i {
  position: absolute;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
  color: hsl(var(--base));
  font-size: 23px;
  transition: all 0.4s;
}

.action-category-item__icon .icon-svg {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  fill: hsl(var(--base));
  stroke: hsl(var(--base));
  font-size: 23px;
  transition: all 0.4s;
}

.action-category-item__text .site-title {
  margin-bottom: 1px;
}

.dashboard-container-wrapper .action-category-item__text .site-title {
  text-align: center;
}

/*============= Product Section ===========*/
.product {
  border-radius: 8px;
  padding: 17px;
  border: 1px solid hsl(var(--white) / 0.08);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
}

.product:hover {
  border: 1px solid hsl(var(--base-two) / 0.5);
  transform: translateY(-3px);
}

#map {
  width: 100%;
  height: calc(100vh - 125px);
  border: 2px solid #464646;
  border-radius: 10px;
}

#map .gm-style .gm-style-iw-c {
  background-color: var(--base-dark-color);
  padding: 12px !important;
}

#map .gm-style .gm-style-iw-tc::after {
  background-color: var(--base-dark-color);
}

#map .gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.filtered-product-map {
  position: sticky;
  top: 105px;
}

.product__thumb {
  margin-bottom: 18px;
  border-radius: 8px;
}

.product__thumb a {
  display: block;
}

.product__thumb a img {
  border-radius: 8px;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.product__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  gap: 10px;
}

.product__description {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 400;
}

.product__price {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: white;
  border-radius: 4px;
  transition: 0.3s all;
}

.product__rating {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: white;
  padding: 4px 8px;
  background: #f3b842;
  border-radius: 4px;
  transition: 0.3s all;
  width: 80px;
  text-align: center;
}

.product__body {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.product-mobile .product__body {
  gap: 10px;
}

.product__body .product__activity-item {
  background: #464646;
  border-radius: 5px;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
}

.product__body .product-rating {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 5px;
}

.product__body .product-rating .wishlist-btn {
  color: hsl(var(--base));
  font-size: 22px;
}

.product__body .product-rating h4 {
  margin: 0 20px;
  font-size: 14px;
}

.product__body .contact-information {
  margin: 20px 0 10px;
}

.product__body .contact-information ul li {
  margin-bottom: 5px;
}

.product__body .contact-information ul li i {
  color: #464646;
  width: 15px;
}

.product__body .contact-information ul li span {
  margin-left: 30px;
  font-size: 14px;
  display: block;
  margin-top: -23px;
}

.product__body .google-map-wrap {
  padding: 0;
  border: none;
  border-radius: 10px;
  width: 100%;
}

.product-details .product-box .product-single-slider {
  height: 435px;
}

@media screen and (max-width: 991px) {
  .product-details .product-box .product-single-slider {
    height: 235px;
  }
}

.product__body .price-item {
  position: relative;
}

.product__body .price-item:last-child::before {
  display: none;
}

.product__body .price-item:first-child .price .icon i {
  color: hsl(var(--base-two));
}

.product__body .price-item::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 10px;
  height: 24px;
  width: 1px;
  background: hsl(var(--white) / 0.08);
}

.blog-sidebar .product__body .price-item::before {
  right: -28%;
}

@media screen and (max-width: 1399px) {
  .product__body .price-item::before {
    right: -13px;
  }
}

@media screen and (max-width: 1199px) {
  .product__body .price-item::before {
    display: none;
  }
}

.product__body .price-item .price-title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 16px;
  color: hsl(var(--white) / 0.8);
}

.product__body .price-item .price {
  display: flex;
  align-items: center;
}

.product__body .price-item .price p {
  font-size: 14px;
  margin-left: 7px;
}

.product__body .price-item .price .trangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid hsl(var(--base));
  display: block;
}

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

.site-title .love-icon i {
  color: hsl(var(--base));
  display: block;
  margin-left: 5px;
  font-size: 17px;
}

.advance_search_input {
  height: 50px;
}

.product-btn {
  padding: 6px 14px;
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base));
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s all;
}

.product-btn:hover {
  background: hsl(var(--base-two));
  color: hsl(var(--white));
}

@media screen and (min-width: 991px) {
  .product-details-area .product {
    display: grid;
    grid-template-columns: 200px auto;
    column-gap: 20px;
    padding: 15px;
  }

  .product-details-area .action-category-wrapper {
    margin-top: 0;
  }

  .product-details-area .product .product__thumb {
    grid-row-start: 1;
    grid-row-end: 4;
    width: 200px;
    height: 170px;
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
  }

  .product-details-area .product .product__thumb a img {
    width: 200px;
    height: 170px;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  .product-details-area .action-category-wrapper .action-category-divide-item {
    display: none;
  }

  .product-details-area .action-category-wrapper {
    margin: 0 65px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-details-area .action-category-wrapper .action-category-item {
    width: calc((100% - 25px) / 2);
  }
}

.product-details-area .action-category-wrapper .action-category-item.selected {
  background: hsl(var(--base-two));
}

.product-details-area
  .action-category-wrapper
  .action-category-item.selected
  svg
  path {
  fill: #ffffff;
  stroke: #ffffff;
}

@media screen and (max-width: 767px) {
  .products-filter-show-hide {
    font-size: 12px;
  }

  .site-title a {
    font-size: 16px;
  }

  .site-title a.btn-view-map {
    font-size: 12px;
  }

  .product__description {
    font-size: 12px;
  }

  .header-wrapper .header-language-wrap .language-box .select {
    font-size: 12px;
  }

  .product__body {
    gap: 7px;
  }

  .product__body .product-rating {
    width: auto;
  }

  .product__body .product-rating h4 {
    display: none;
  }

  .love-icon {
    margin-right: 15px;
  }
}

/*============= Profile Setting ===========*/

.profile-setting .profile-activities-section .action-category-wrapper {
  margin-top: 0;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.profile-setting
  .profile-activities-section
  .action-category-wrapper
  .action-category-item {
  width: calc((100% - 200px) / 9);
}

@media screen and (max-width: 1440px) {
  .profile-setting
    .profile-activities-section
    .action-category-wrapper
    .action-category-item {
    width: calc((100% - 150px) / 7);
  }
}

@media screen and (max-width: 991px) {
  .profile-setting
    .profile-activities-section
    .action-category-wrapper
    .action-category-item {
    width: calc((100% - 75px) / 4);
  }
}

@media screen and (max-width: 575px) {
  .profile-setting
    .profile-activities-section
    .action-category-wrapper
    .action-category-item {
    width: calc((100% - 50px) / 3);
  }
}

@media screen and (max-width: 440px) {
  .profile-setting
    .profile-activities-section
    .action-category-wrapper
    .action-category-item {
    width: calc((100% - 25px) / 2);
  }
}

.profile-setting .action-category-wrapper .action-category-item.selected {
  background: hsl(var(--base-two));
}

.profile-setting
  .action-category-wrapper
  .action-category-item.selected
  svg
  path {
  fill: #ffffff;
  stroke: #ffffff;
}

.profile-setting .profile-activities-section,
.profile-setting .profile-services-section,
.profile-setting .schedules-input-section,
.profile-setting .images-upload-section,
.profile-rates .rates-input-section {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
}

.profile-setting .profile-activities-section label,
.profile-setting .profile-services-section label,
.profile-setting .schedules-input-section label,
.profile-setting .images-upload-section label,
.profile-rates .rates-input-section label {
  color: hsl(var(--base));
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 36px;
}

.profile-setting .profile-services-section .action-category-wrapper {
  margin-top: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.profile-setting
  .profile-services-section
  .action-category-wrapper
  .action-category-item {
  width: fit-content;
  padding: 10px;
}

.profile-rates .rates-input-section .remove_extra_rates {
  padding: 5px 10px;
  background-color: #464646;
}

.profile-rates .rates-input-section .remove_extra_rates:hover {
  color: hsl(var(--base-two));
}

.profile-rates .rates-input-section .remove_extra_rates:hover {
  color: hsl(var(--base-two));
}

.profile-rates .rates-input-section .data-extra-rates {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-rates .rates-input-section .la-edit {
  font-size: 30px;
}

.profile-rates .rates-input-section .input-title {
  font-size: 16px;
  padding: 3px 10px;
  color: white;
  border: 1px solid transparent;
  box-shadow: none;
  border-radius: 0 !important;
}

.profile-rates .rates-input-section .input-title:focus {
  border: 1px solid #464646;
}

.profile-rates .rates-input-section .input-description {
  font-size: 14px;
  padding: 3px 10px;
  color: #464646;
  border: 1px solid transparent;
  box-shadow: none;
  border-radius: 0 !important;
}

.profile-rates .rates-input-section .input-description:focus {
  border: 1px solid #464646;
}

.profile-rates .rates-input-section .input-price {
  width: 60px;
  text-align: center;
}

.profile-rates .rates-input-section .extra_rates {
  padding: 10px 10px;
  background-color: #464646;
  width: 180px;
  font-size: 16px;
}

.profile-rates .rates-input-section .extra_rates:hover {
  color: hsl(var(--base-two));
}

.schedules-input-section .form-dark-select {
  background-color: transparent !important;
}

.cta-section input[type="radio"] + label {
  width: 100%;
  padding: 7px 10px;
  color: white;
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .cta-section input[type="radio"] + label {
    width: 100%;
  }
}

.cta-section input[type="radio"] + label:hover {
  color: hsl(var(--base-two));
}

.cta-section input[type="radio"] {
  display: none;
}

.cta-section input[type="radio"]:checked + label {
  background: hsl(var(--base-two));
  border-radius: 10px;
  color: white;
}

/*============= Product Sidebar ===========*/
.onboarding-section {
  height: 100vh;
}

.onboarding-section .onboarding-step {
  margin-top: -100px;
}

.onboarding-step .prev-btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  font-weight: 700;
}

.onboarding-step .next-btn {
  position: absolute;
  bottom: 30px;
  right: 0;
  font-weight: 700;
}

.onboarding-step .finish-btn {
  width: 365px;
  margin-top: 90px;
  font-weight: 700;
}

.onboarding-step .prev-btn:hover,
.onboarding-step .next-btn:hover,
.onboarding-step .finish-btn:hover {
  color: hsl(var(--base-two));
}

.onboarding-step h1.title {
  font-family: Helvetica;
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  color: #ffffff;
}

.onboarding-step h2.title {
  font-family: Helvetica;
  font-weight: 700;
  font-size: 28px;
  line-height: 48px;
  color: #ffffff;
  margin: 0;
}

.onboarding-step p.description {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: hsl(var(--base));
}

.onboarding-step img.onboarding-gym {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 60px;
}

.onboarding-section .onboarding-step .custom-form-field {
  border: 1px solid #f67280;
  background: transparent !important;
  color: white;
  border-radius: 10px !important;
}

.onboarding-section .onboarding-step .custom-form-field::placeholder {
  color: #fff;
}

.onboarding-section .onboarding-step .onboarding-form-wrapper {
  width: 550px;
  margin: 40px auto 0;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-category-wrapper {
  flex-wrap: wrap;
  column-gap: 75px;
  justify-content: space-evenly;
  margin-top: 60px;
  padding-inline: 40px;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-category-wrapper
  .action-category-item {
  flex-wrap: wrap;
  width: 65px;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-category-wrapper
  .action-category-item.selected {
  background: hsl(var(--base-two));
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-category-wrapper
  .action-category-item.selected
  svg
  path {
  fill: #ffffff;
  stroke: #ffffff;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-services-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-inline: 40px;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-services-wrapper
  .action-service-item {
  height: 37px;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #f67280;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-services-wrapper
  .action-service-item.selected {
  background: hsl(var(--base-two));
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .action-services-wrapper
  .action-service-item
  .action-service-item__text
  p {
  font-weight: 500;
  font-size: 14px;
  line-height: 16.94px;
  text-align: center;
}

.onboarding-count-steps {
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .onboarding-step .prev-btn {
    position: fixed;
    left: 10px;
  }

  .onboarding-step .next-btn {
    position: fixed;
    right: 10px;
    color: black !important;
  }

  .onboarding-step .finish-btn {
    width: 100%;
    margin-top: 45px;
  }

  .onboarding-step h1.title {
    font-size: 31px;
  }

  .onboarding-step h2.title {
    font-size: 25px;
  }

  .onboarding-step p.description {
    font-size: 16px;
  }

  .onboarding-section .onboarding-step .onboarding-form-wrapper {
    width: 100%;
    margin: 45px 0 0;
  }

  .onboarding-section
    .onboarding-step
    .onboarding-form-wrapper
    .action-category-wrapper {
    column-gap: 25px;
    padding: 0;
  }

  .onboarding-section
    .onboarding-step
    .onboarding-form-wrapper
    .action-category-wrapper
    .action-category-item {
    width: calc((100% - 50px) / 3);
  }

  .onboarding-count-steps {
    right: 10px;
    top: 30px;
  }
}

@media screen and (max-width: 576px) {
  .onboarding-step .start-btn {
    width: calc(100% - 20px);
  }
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-blurred {
  background: transparent;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-blurred
  p.ck-placeholder {
  color: hsl(var(--white)) !important;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-focused {
  background: transparent;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck.ck-button:not(.ck-disabled):hover,
a.ck.ck-button:not(.ck-disabled):hover {
  background: hsl(var(--white) / 0.1);
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck-reset_all
  :not(.ck-reset_all-excluded *),
.ck.ck-reset_all {
  color: hsl(var(--white));
  background: transparent;
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck.ck-editor__main
  > .ck-editor__editable:not(.ck-focused) {
  border-color: hsl(var(--white) / 0.3);
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck-rounded-corners
  .ck.ck-editor__top
  .ck-sticky-panel
  .ck-toolbar,
.ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
  border-color: hsl(var(--white) / 0.08);
}

.onboarding-section
  .onboarding-step
  .onboarding-form-wrapper
  .ck-rounded-corners
  .ck.ck-editor__main
  > .ck-editor__editable,
.ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
  border-color: hsl(var(--white) / 0.08);
}

/*============= Product Sidebar ===========*/
.about-seller__wrap .author-wrap {
  display: flex;
  margin-bottom: 10px;
}

.about-seller__wrap .author-wrap__thumb {
  margin-right: 15px;
  height: 68px;
  width: 68px;
  border-radius: 100%;
}

.about-seller__wrap .author-wrap__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.review-wrap__top .review-wrap__thumb {
  margin-right: 15px;
  max-height: 68px;
  width: 68px;
  border-radius: 100%;
}

.review-wrap__top .review-wrap__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.about-seller__wrap .author-wrap__content h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.about-seller__wrap .author-wrap__content p {
  font-size: 14px;
  font-weight: 400;
}

.about-seller__bottom .product__body .price-item::before {
  right: -143%;
}

/*============= Product Details ===========*/
.product-details {
  border-radius: 8px;
  margin-top: -15px;
}

.product-details .product-box {
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .product-details .product-box {
    margin-bottom: 15px;
  }
}

.product-details .product-box__thumb {
  margin-right: 24px;
  width: 100%;
  border-radius: 8px;
}

.product-details .product-box__thumb img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .product-details .product-box__thumb {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .product-details .product-box__thumb img {
    width: 100%;
  }
}

.product-details .product-box__right {
  width: 100%;
  flex-wrap: nowrap;
}

.product-details .product-box__right .product-box__title {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .product-details .product-box__right .product-box__title {
    height: 50px;
  }

  .product-details
    .product-box__right
    .product-box__title
    .product-box__content {
    display: none;
  }
}

.product-details .product-box__top h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .product-details .product-box__top h3 {
    font-size: 14px;
  }
}

.product-details .product-box__top .rating-list__item i {
  font-size: 14px;
  color: #ffcc4a;
}

.product-details .product-box__top .rating-list__item span {
  margin-left: 5px;
  display: inline-block;
  color: hsl(var(--white));
}

.product-details .product-box__content p {
  color: hsl(var(--white) / 0.8);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  width: 45%;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .product-details .product-box__content p {
    padding: 0;
    width: 100%;
    margin: 0;
  }
}

.product-details .product-box__bottom h4 {
  font-size: 24px;
  font-weight: 400;
  color: hsl(var(--base));
}

.product-details .product-box__bottom .input-wrapper {
  position: relative;
}

.product-details .product-box__bottom .input-wrapper .form--control {
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 5px !important;
  padding: 16px;
  padding-right: 112px;
}

.product-details .product-box__bottom .input-wrapper .product-btn {
  position: absolute;
  right: 11px;
  top: 11px;
}

.product-details_tab-wrapper.first-section .product-details-content-body {
  border-bottom: none;
}

.product-rating.first-section {
  display: none;
}

@media screen and (max-width: 991px) {
  .product-rating.first-section {
    display: flex;
    align-items: center;
  }

  .product-details_tab-wrapper.first-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-rating.second-section {
    display: none;
  }

  .product-details_tab-wrapper.first-section .product-details-content-header {
    display: none;
  }
}

.product-details_tab-wrapper .product-details-content-header {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #f67280;
  margin-top: 25px;
  margin-bottom: 25px;
}

.product-details_tab-wrapper .product-details-content-body {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.product-details_tab-wrapper .product-details-content-body:last-child {
  border-bottom: none;
}

.specification {
  padding: 0;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .specification {
    width: 100%;
  }
}

.specification__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.schedule {
  padding: 0;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .schedule {
    width: 100%;
  }
}

.schedule__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.rates {
  width: 100%;
}

.rates__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}

.rates__item p:first-child {
  display: flex;
  flex-direction: column;
}

.rates__item p:first-child span:first-child {
  font-size: 16px;
}

.rates__item p:first-child span:last-child {
  font-size: 13px;
  color: #464646;
}

.rates__item p:last-child {
  border: 1px solid hsl(var(--white) / 0.08);
  padding: 10px;
  border-radius: 10px;
  line-height: 20px;
}

.product-details-content-services {
  margin-bottom: 25px;
}

.product-details-content-services .accordion-item .accordion-button {
  padding: 0;
  font-size: 16px;
}

.product-details-content-services .custom--accordion .accordion-item {
  border: none;
}

.product-details-content-services .custom--accordion .accordion-body {
  padding: 0;
  margin-top: 10px;
}

.product-details-content-services .custom--accordion .accordion-body ul li {
  font-size: 13px;
}

.product-details-content-services
  .custom--accordion
  .accordion-body
  ul
  li
  span {
  margin-left: 10px;
}

.review-wrap {
  padding-bottom: 25px;
}

.review-wrap__top {
  display: flex;
  margin-bottom: 15px;
}

.review-wrap__thumb {
  margin-right: 20px;
  min-width: 68px;
}

.review-wrap__content h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.review-wrap__content h5 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 20px;
}

.review-wrap__content p {
  font-size: 14px;
  margin-top: 4px;
}

.review-wrap__content .rating-list__item i {
  color: #ffcc4a;
  font-size: 12px;
}

/*============= How work start  =============*/
.how-work-area {
  background-color: hsl(var(--white) / 0.02);
  position: relative;
}

.how-work-bg {
  position: absolute;
  z-index: -1;
  opacity: 0.05;
  bottom: 0;
}

.how-work {
  text-align: center;
  padding: 0 40px;
  position: relative;
  transition: 0.3s all;
}

.how-work__top {
  height: 80px;
  width: 80px;
  line-height: 80px;
  border: 1px solid hsl(var(--white) / 0.08);
  margin: 0 auto 0;
  border-radius: 100%;
  font-size: 32px;
  font-weight: 700;
  color: hsl(var(--base));
  margin-bottom: 30px;
  transition: 0.3s all;
}

.how-work:hover .how-work__top {
  border: 1px solid hsl(var(--base-two) / 0.5);
}

.how-work__content .site-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.how-work__icon {
  position: absolute;
  right: -35px;
  top: 17%;
}

.how-work__icon svg {
  stroke: hsl(var(--white));
}

@media screen and (max-width: 1399px) {
  .how-work__icon {
    right: -46px;
    top: 11%;
  }
}

@media screen and (max-width: 1199px) {
  .how-work__icon {
    right: -66px;
    top: 11%;
  }
}

@media screen and (max-width: 991px) {
  .how-work__icon {
    display: none;
  }
}

.col-lg-4:last-child .how-work .how-work__icon {
  display: none;
}

/*====================== Winner Section ====================*/
.winner {
  position: relative;
  padding: 40px 15px 15px 15px;
  border-radius: 8px;
  border: 1px solid hsl(var(--white) / 0.08);
  transition: 0.3s all;
  text-align: center;
  background: hsl(var(--white) / 0.02);
  margin-top: 35px;
}

.winner:hover {
  border: 1px solid hsl(var(--base-two) / 0.5);
  transform: translateY(-3px);
}

.winner__thumb {
  height: 72px;
  width: 72px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -75px;
  margin-bottom: 20px;
  border: 5px solid hsl(var(--base-two));
  position: relative;
}

.winner__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.winner__thumb .icon {
  position: absolute;
  top: 0px;
  right: -11px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: hsl(var(--black));
  border-radius: 100%;
  font-size: 14px;
  color: #ffc107;
}

.winner__content .site-title {
  margin-bottom: 25px;
}

.winner__body-text {
  display: flex;
  flex-direction: column;
  border: 1px dotted hsl(var(--white) / 0.08);
  padding: 15px 0;
  margin-bottom: 22px;
}

.winner__body-text .small {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 16px;
  color: hsl(var(--white) / 0.9);
}

.winner__body-text .big {
  font-size: 14px;
  text-transform: capitalize;
  line-height: 19px;
  font-weight: 500;
}

.winner__bottom {
  display: flex;
  justify-content: space-between;
}

.winner__bottom .item {
  text-align: left;
  position: relative;
}

.winner__bottom .item:last-child:before {
  display: none;
}

.winner__bottom .item::before {
  content: "";
  position: absolute;
  right: -45px;
  top: 10px;
  height: 24px;
  width: 1px;
  background: hsl(var(--white) / 0.08);
}

@media screen and (max-width: 1399px) {
  .winner__bottom .item::before {
    right: -26px;
  }
}

@media screen and (max-width: 1199px) {
  .winner__bottom .item::before {
    display: none;
  }
}

.winner__bottom .item .title {
  font-size: 12px;
  text-transform: uppercase;
  color: hsl(var(--white) / 0.9);
  line-height: 15px;
}

.winner__bottom .item .amount {
  font-size: 14px;
  font-weight: 500;
}

/*============= Love user start  =============*/
.love-users-area {
  position: relative;
}

.love-users-area .love-user-bg-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.love-user {
  position: relative;
  padding: 50px 20px;
  border-radius: 8px;
  border: 1px solid hsl(var(--white) / 0.08);
  transition: 0.3s all;
  text-align: center;
  background: #24242c;
  margin-top: 3px;
}

.love-user:hover {
  border: 1px solid hsl(var(--base-two) / 0.5);
  transform: translateY(-3px);
}

.love-user__thumb {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}

.love-user__thumb .icon {
  position: absolute;
  top: -1px;
  right: -13px;
  border: 1px solid hsl(var(--white) / 0.1);
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
  background-color: #363744;
  border-radius: 100%;
  font-size: 14px;
  color: hsl(var(--base-two));
}

.love-user__content .site-title {
  margin-bottom: 7px;
}

.love-user__content .degination {
  color: hsl(var(--white) / 0.8);
  margin-bottom: 20px;
  display: block;
}

.love-user__content p {
  font-style: italic;
  font-size: 18px;
}

/*====================== Experience ====================*/
.experience {
  text-align: center;
  position: relative;
}

.experience__icon {
  margin-bottom: 15px;
}

.experience__icon i {
  font-size: 25px;
  background: hsl(var(--base) / 0.2);
  color: hsl(var(--base));
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
}

.experience__count {
  margin-bottom: 10px;
  position: relative;
  transition: all 0.6s ease-in-out;
}

.experience__count h3 {
  font-size: 56px;
  color: hsl(var(--white));
  margin-top: 2px;
  text-align: center;
  border-radius: 50%;
  transition: transform 0.5s ease;
  font-weight: 700;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .experience__count h3 {
    font-size: 40px;
  }
}

@media screen and (max-width: 374px) {
  .experience__count h3 {
    font-size: 35px;
  }
}

.experience__count h3 .letter {
  font-size: 30px;
  font-weight: 400;
  color: hsl(var(--base-two));
  text-shadow: none;
}

@media screen and (max-width: 991px) {
  .experience__count h3 .letter {
    font-size: 20px;
  }
}

@media screen and (max-width: 374px) {
  .experience__count h3 .letter {
    font-size: 15px;
  }
}

.experience__count .strocke-text {
  color: var(--base-dark-color);
  -webkit-text-stroke: 1px hsl(var(--white) / 0.08);
  position: absolute;
  left: 51%;
  z-index: -1;
  top: 0;
  transform: translate(-66%);
}

@media screen and (max-width: 1399px) {
  .experience__count .strocke-text {
    right: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .experience__count .strocke-text {
    right: -5px;
  }
}

@media screen and (max-width: 991px) {
  .experience__count .strocke-text {
    display: none;
  }
}

.experience__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: hsl(var(--white));
}

.col-lg-3:last-child .experience__count h3 .letter {
  visibility: hidden;
  opacity: 0;
}

.col-lg-3:last-child .experience__count .strocke-text {
  right: inherit;
  left: 47%;
}

/*====================== About Section====================*/
.about-section {
  overflow: hidden;
}

.about-thumb {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .about-thumb {
    padding: 0;
  }
}

.about-thumb__inner .img-2 {
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  height: 438px;
}

.about-thumb__inner img.img-1 {
  position: absolute;
  right: -33px;
  top: 11px;
  object-fit: cover;
  animation: jump-1 10s linear infinite;
  border-radius: var(--border-radius);
  border: 7px solid #f1f1f1;
}

@media screen and (max-width: 575px) {
  .about-thumb__inner img.img-1 {
    display: none;
  }
}

.about-thumb .about-contact {
  border-radius: var(--border-radius-sm);
  background: hsl(var(--white));
  padding: 25px;
  position: absolute;
  bottom: 76px;
  right: -29px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: jump-2 10s linear infinite;
}

.about-thumb .about-contact::before {
  position: absolute;
  content: "";
  height: 104%;
  width: 102%;
  background-color: transparent;
  top: 6px;
  left: -10px;
  z-index: -1;
  border-radius: var(--border-radius-sm);
  transition: 0.5s;
  border: 3px solid hsl(var(--black));
}

@media screen and (max-width: 1199px) {
  .about-thumb .about-contact {
    bottom: 76px;
  }
}

@media screen and (max-width: 991px) {
  .about-thumb .about-contact {
    bottom: 76px;
    right: -29px;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 575px) {
  .about-thumb .about-contact {
    visibility: hidden;
    opacity: 0;
  }
}

.about-thumb .about-contact i {
  color: hsl(var(--base));
  font-size: 24px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background: hsl(var(--base) / 0.2);
}

.about-thumb .about-contact h4 {
  color: hsl(var(--black));
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px;
}

.about-thumb .about-contact a {
  color: hsl(var(--black));
  font-weight: 400;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.about-thumb .about-contact a:hover {
  text-decoration: underline;
}

.about-thumb .about-contact-top {
  width: auto;
  bottom: -185px;
  background: hsl(var(--base));
  padding: 15px 20px;
  position: absolute;
  left: 37px;
  border-radius: var(--border-radius);
}

@media screen and (max-width: 1199px) {
  .about-thumb .about-contact-top {
    bottom: -135px;
  }
}

@media screen and (max-width: 991px) {
  .about-thumb .about-contact-top {
    bottom: -75px;
  }
}

@media screen and (max-width: 575px) {
  .about-thumb .about-contact-top {
    bottom: -60px;
    left: 10%;
  }
}

.about-thumb .about-contact-top h4 {
  font-size: 45px;
  text-align: center;
  color: hsl(var(--white));
  margin-bottom: 0;
  font-weight: 700;
}

.about-thumb .about-contact-top span {
  color: hsl(var(--white));
  font-weight: 600;
  font-size: 13px;
}

.about-popup-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-thumb-faq {
  position: relative;
}

.about-thumb-faq .about-img-contact {
  display: inline-block;
  background: #363744;
  border-radius: 13px;
  text-align: center;
  padding: 59px 15px 15px 15px;
  position: absolute;
  bottom: -16%;
  right: 32%;
}

@media screen and (max-width: 374px) {
  .about-thumb-faq .about-img-contact {
    right: 12%;
  }
}

.about-thumb-faq .about-img-contact p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
  color: hsl(var(--white));
}

.about-thumb-faq .about-img-contact h4 a {
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--base));
  transition: 0.3s all;
}

.about-thumb-faq .about-img-contact:hover h4 a {
  color: hsl(var(--base-two));
}

.about-thumb-faq .about-img-contact .icon {
  height: 78px;
  width: 78px;
  line-height: 78px;
  text-align: center;
  background: hsl(var(--white));
  border-radius: 100%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.about-thumb-faq .about-img-contact .icon svg {
  fill: hsl(var(--base-two));
  stroke: hsl(var(--base-two));
}

@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }

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

.about-bottom {
  display: flex;
  flex-wrap: wrap;
}

.about-bottom .founder {
  display: flex;
  flex-wrap: wrap;
}

.about-bottom .founder img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.about-bottom .founder .founder-text h4 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 17px;
}

/*====================== How it works ====================*/
.service {
  box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.08);
  border-radius: var(--border-radius);
  padding: 30px 30px 35px;
  border: 2px solid hsl(var(--base) / 0.07);
  transition: all 0.4s ease-in-out;
  position: relative;
  background: hsl(var(--white));
}

.service:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  border: 2px solid hsl(var(--base) / 0.4);
}

.service:hover .service__icon i {
  transform: scaleX(-1);
}

.service:hover .service__icon::before {
  background: hsl(var(--base) / 0.3);
}

.service__icon {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.6s ease-in-out;
}

.service__icon i {
  font-size: 27px;
  color: hsl(var(--base));
  margin-top: 2px;
  height: 70px;
  width: 70px;
  text-align: center;
  background: hsl(var(--base) / 0.2);
  line-height: 70px;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.service__content h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service__content a {
  font-size: 16px;
  font-weight: 600;
  margin-top: 11px;
}

.service .emojionearea.focused {
  border-color: hsl(var(--base));
  outline: 0;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px hsl(var(--base) / 0.1);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px hsl(var(--base) / 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px hsl(var(--base) / 0.1);
}

.service .emojionearea .emojionearea-button {
  left: 5px;
  top: 18px;
}

.service .emojionearea .emojionearea-picker.emojionearea-picker-position-left,
.service .emojionearea .emojionearea-picker.emojionearea-picker-position-right {
  margin-left: 0px;
  top: -290px !important;
}

.service .emojionearea .emojionearea-picker {
  left: 8px;
}

.service-area .service .emojionearea .emojionearea-editor {
  padding-right: 0;
}

.service-area .service-box-middle span i {
  font-size: 30px;
}

@media screen and (max-width: 991px) {
  .service-area .service-box-middle span i {
    transform: rotate(90deg) !important;
  }
}

.service-area .service.service-box-right {
  min-height: 645px;
  background: hsl(var(--white));
}

.service-area .service.service-box-right .header-service .user {
  display: flex;
  background: #ededed;
  padding: 10px 8px;
}

.service-area .header-service .user img {
  width: 31px;
  border-radius: 100%;
  margin-right: 9px;
}

.service-area .footer-service {
  display: flex;
  background: #ededed;
  padding: 10px 8px;
  align-items: center;
  justify-content: space-between;
}

.service-area .body-msg {
  height: 481px;
  background: #ece5dd;
}

.service-area .form--control.msg-area {
  background: hsl(var(--white));
  width: 100%;
  padding: 18px 15px;
}

.service-area .footer-text {
  width: 89%;
}

.service-area .submit-icon {
  height: 38px;
  width: 38px;
  text-align: center;
  line-height: 38px;
}

.service-area .body-msg {
  display: flex;
  align-items: end;
  justify-content: end;
}

.service-area .body-msg .single-msg {
  width: 60%;
  text-align: end;
  margin: 15px;
  display: inline-block;
  font-size: 14px;
  background: hsl(var(--base));
  padding: 5px;
  padding-right: 10px;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
  border-radius: var(--border-radius);
  line-height: 24px;
}

.service-area .find-your-brand-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.service-area .find-your-brand-wrap .input-left {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .service-area .find-your-brand-wrap .input-left {
    width: 100%;
  }
}

/*====================== Why choose ====================*/
.why-choose-area.py-80 {
  position: relative;
}

.why-choose-area.py-80 .why-choose-bg {
  height: 457px;
  width: 833px;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.2;
}

.why-choose-us__thumb {
  position: relative;
}

.why-choose-us__thumb .popup-vide-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-95%, -50%);
}

.why-choose-us__thumb .popup-vide-wrap .play-video {
  height: 80px;
  width: 80px;
  line-height: 84px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  text-align: center;
}

.why-choose-us__thumb .popup-vide-wrap .waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: hsl(var(--base) / 0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 50%;
  right: -34px;
  bottom: -35px;
  z-index: 1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.why-choose-us__content h3 {
  font-size: 28px;
  font-weight: 600;
}

@media screen and (max-width: 575px) {
  .why-choose-us__content h3 {
    font-size: 22px;
  }
}

.why-choose-us__topic {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-us__topic .item {
  margin-bottom: 15px;
}

.why-choose-us__topic .item .why-title-cont i {
  color: hsl(var(--base));
  font-size: 24px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background: hsl(var(--base) / 0.2);
}

.why-choose-us__topic .item .why-title-cont .content {
  width: calc(100% - 50px);
}

.why-choose-us__topic .item .why-title-cont .content h4 {
  color: hsl(var(--black));
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 3px;
}

.why-choose-us__topic .item .why-title-cont .content p {
  width: 60%;
}

@media screen and (max-width: 991px) {
  .why-choose-us__topic .item .why-title-cont .content p {
    width: 80%;
  }
}

@media screen and (max-width: 424px) {
  .why-choose-us__topic .item .why-title-cont .content p {
    width: 100%;
  }
}

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

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

.why-choose-us .wave-3 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

/*====================== Experience ====================*/
.experience {
  text-align: center;
  position: relative;
}

.experience__icon {
  margin-bottom: 15px;
}

.experience__icon i {
  font-size: 25px;
  background: hsl(var(--base) / 0.2);
  color: hsl(var(--base));
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
}

.experience__count {
  margin-bottom: 10px;
  position: relative;
  transition: all 0.6s ease-in-out;
}

.experience__count h3 {
  font-size: 56px;
  color: hsl(var(--white));
  margin-top: 2px;
  text-align: center;
  border-radius: 50%;
  transition: transform 0.5s ease;
  font-weight: 700;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .experience__count h3 {
    font-size: 40px;
  }
}

@media screen and (max-width: 374px) {
  .experience__count h3 {
    font-size: 35px;
  }
}

.experience__count .strocke-text {
  color: var(--base-dark-color);
  -webkit-text-stroke: 1px hsl(var(--white) / 0.08);
  position: absolute;
  left: 51%;
  z-index: -1;
  top: 0;
  transform: translate(-66%);
}

@media screen and (max-width: 1399px) {
  .experience__count .strocke-text {
    right: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .experience__count .strocke-text {
    right: -5px;
  }
}

@media screen and (max-width: 991px) {
  .experience__count .strocke-text {
    display: none;
  }
}

.experience__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: hsl(var(--white));
}

.col-lg-3:last-child .experience__count h3 .letter {
  visibility: hidden;
  opacity: 0;
}

.col-lg-3:last-child .experience__count .strocke-text {
  right: inherit;
  left: 47%;
}

/*====================== Offer ====================*/
.pricing-header-wrap {
  display: flex;
  justify-content: space-between;
  background: hsl(var(--base) / 0.1);
  text-align: center;
}

.pricing-plan-item {
  padding: 0px 11px 0px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.pricing-plan-item .pricing-plan-item__top {
  width: 33.33%;
  border-right: 1px solid hsl(var(--black) / 0.1);
  padding: 10px 0;
}

.pricing-plan-item .pricing-plan-item__top:last-child {
  border-right: 0;
}

.pricing-plan-item .pricing-plan-item__top .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

@media screen and (max-width: 575px) {
  .pricing-plan-item .pricing-plan-item__top .title {
    font-size: 16px;
  }
}

.pricing-plan-item .pricing-plan-item__price .title {
  font-weight: 600;
  font-size: 35px;
  margin-bottom: 20px;
}

.pricing-plan-item .pricing-plan-item__price .title span {
  font-size: 16px;
  color: hsl(var(--black) / 0.5);
}

.pricing-plan-item .pricing-plan-item__list .price-list-item-wrapper {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-bottom: 1px solid hsl(var(--black) / 0.08);
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item {
  width: 33.33%;
  padding: 5px 0;
  border-right: 1px solid hsl(var(--black) / 0.1);
}

@media screen and (max-width: 575px) {
  .pricing-plan-item
    .pricing-plan-item__list
    .price-list-item-wrapper
    .price-list-item
    p {
    font-size: 15px;
  }
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item:last-child {
  border-right: 0;
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item
  i {
  color: hsl(var(--base));
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item
  i.fa-minus {
  color: hsl(var(--black) / 0.1);
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper.bottom
  .price-list-item {
  border-right: 1px solid hsl(var(--black) / 0.1);
  padding: 20px 0;
}

@media screen and (max-width: 575px) {
  .pricing-plan-item
    .pricing-plan-item__list
    .price-list-item-wrapper.bottom
    .price-list-item
    .btn {
    padding: 5px 5px;
    font-size: 15px;
  }
}

@media screen and (max-width: 424px) {
  .pricing-plan-item
    .pricing-plan-item__list
    .price-list-item-wrapper.bottom
    .price-list-item
    .btn {
    padding: 5px 5px;
    font-size: 14px;
  }
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper.bottom
  .price-list-item:last-child {
  border-right: 0;
}

.pricing-plan-item .pricing-plan-item__list ul li {
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
}

.pricing-plan-item .pricing-plan-item__list ul li i {
  color: hsl(var(--base));
  margin-right: 10px;
  margin-top: 3px;
}

.pricing-plan-item .pricing-plan-item__bottom a {
  font-size: 20px;
  font-weight: 700;
}

.pricing-plan-item
  .pricing-plan-item__list
  .row:last-child
  .price-list-item-wrapper {
  border-bottom: 0;
}

.all-price-wrapper {
  border: 1px solid hsl(var(--black) / 0.1);
}

/*============= Project area start  =============*/
.projects-area .col-lg-4:nth-child(3) .Our-Project {
  margin-top: -450px;
}

@media screen and (max-width: 991px) {
  .projects-area .col-lg-4:nth-child(3) .Our-Project {
    margin-top: -120px;
  }
}

@media screen and (max-width: 767px) {
  .projects-area .col-lg-4:nth-child(3) .Our-Project {
    margin-top: 0px;
  }
}

.projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
  margin-top: -30px;
}

@media screen and (max-width: 1399px) {
  .projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
    margin-top: -90px;
  }
}

@media screen and (max-width: 1199px) {
  .projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
    margin-top: -150px;
  }
}

@media screen and (max-width: 991px) {
  .projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
    margin-top: 0px;
  }
}

.projects-area .col-lg-4:nth-child(1) .Our-Project {
  margin-bottom: 0px;
}

.Our-Project {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.Our-Project:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  transform: translateY(-3px);
}

.Our-Project a {
  position: relative;
  z-index: 2;
}

.Our-Project a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: var(--border-ra dius);
  left: 0px;
  bottom: 0px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(var(--base) / 0.6) 100%
  );
}

.Our-Project a .content {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.Our-Project a .content h4 {
  color: hsl(var(--white));
  margin-bottom: 5px;
  font-weight: 600;
}

.Our-Project a .content span {
  color: hsl(var(--white));
  font-weight: 500;
}

/*============= Team News =============*/
.team-item {
  border-radius: var(--border-radius);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.team-item:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  transform: translateY(-3px);
}

.team-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  left: 0px;
  bottom: 0px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(var(--base) / 0.3) 100%
  );
}

.team-item__content-wrapper {
  position: absolute;
  bottom: 35px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.team-item__content-wrapper .team-name h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  color: hsl(var(--white));
}

.team-item__content-wrapper .team-name span {
  color: hsl(var(--white));
  font-weight: 600;
}

.team-item__content-wrapper .social-wrap {
  position: absolute;
  bottom: 70px;
  right: 5px;
}

.team-item__content-wrapper .social-wrap ul li {
  position: relative;
}

.team-item__content-wrapper .social-wrap ul li:hover .social-team {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.team-item__content-wrapper .social-wrap ul li .social-team {
  position: absolute;
  bottom: 42px;
  transition: all 0.6s ease-in-out;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.team-item__content-wrapper .social-wrap ul li .social-team li {
  margin-top: 2px;
}

.team-item__content-wrapper .social-wrap ul li a {
  padding: 8px 14px;
  background: hsl(var(--base));
  margin-right: 10px;
  color: hsl(var(--white));
  border-radius: var(--border-radius-sm);
}

.team-item__thumb img {
  width: 100%;
  border-radius: var(--border-radius);
}

.team-item__thumb img img {
  width: 100%;
}

/*=================== Testimonials =========*/
.testimonials {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonials::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to left,
    hsl(var(--base) / 0.1) 0%,
    hsl(var(--white) / 0.08) 100%
  );
  z-index: -1;
}

.testimonial-item {
  background-color: hsl(var(--base) / 0.2);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  position: relative;
  height: 100%;
  margin-bottom: 50px;
  display: flex;
}

.testimonial-item:hover::before {
  left: 0;
  top: 0;
}

.testimonial-item::before {
  position: absolute;
  content: "";
  height: 101%;
  width: 100%;
  background-color: transparent;
  top: 10px;
  left: -11px;
  z-index: -1;
  border-radius: var(--border-radius-sm);
  transition: 0.5s;
  border: 3px solid hsl(var(--black));
}

@media screen and (max-width: 424px) {
  .testimonial-item {
    padding: 25px 15px;
  }
}

@media screen and (max-width: 575px) {
  .testimonial-item {
    margin-bottom: 35px;
    flex-direction: column;
    overflow: hidden;
  }
}

.testimonial-item__quate {
  position: absolute;
  right: 62px;
  width: 64px;
  opacity: 0.08;
  top: 6px;
}

.testimonial-item__quate i {
  font-size: 93px;
  color: hsl(var(--base) / 0.7);
}

.testimonial-item__content {
  justify-content: space-between;
  margin-left: 10px;
}

.testimonial-item__info {
  margin-bottom: 15px;
}

@media screen and (max-width: 424px) {
  .testimonial-item__info {
    margin-bottom: 10px;
  }
}

.testimonial-item__thumb {
  z-index: 22;
  padding: 12px;
  width: 538px;
}

@media screen and (max-width: 575px) {
  .testimonial-item__thumb {
    width: 250px;
  }
}

.testimonial-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}

.testimonial-item__details {
  width: calc(100% - 60px);
}

@media screen and (max-width: 424px) {
  .testimonial-item__details {
    width: calc(100% - 45px);
    padding-left: 10px;
  }
}

.testimonial-item__name {
  margin-bottom: 0;
  color: hsl(var(--black));
}

.testimonial-item__designation {
  color: hsl(var(--black) / 0.8);
}

.testimonial-item__desc {
  color: hsl(var(--black) / 0.5);
  margin-bottom: 20px;
}

@media screen and (max-width: 424px) {
  .testimonial-item__desc {
    margin-bottom: 10px;
  }
}

.rating-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rating-list__item {
  padding: 0 1px;
  color: hsl(var(--base));
}

.testimonails-thumb img {
  border-radius: var(--border-radius);
}

/*=================== Client area =========*/
.client-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.client-logos:last-of-type {
  margin-bottom: 0;
}

.client-logos img {
  width: 160px !important;
  padding: 15px;
  border: 3px solid hsl(var(--base) / 0.06);
}

.client-logos .slick-slide {
  margin: 0 10px;
}

/*=================== Client Page Logo =========*/
.client-logo {
  background-color: hsl(var(--white));
  padding: 40px 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
  border-radius: 5px;
  border: 1px solid hsl(var(--black) / 0.08);
  transition: 0.3s linear;
}

.client-logo:hover {
  background-color: hsl(var(--base-two));
}

/*====================== Blog Style ====================*/
.blog {
  background-color: var(--base-dark-color);
  position: relative;
}

.blog-item {
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
  background: hsl(var(--black) / 0.1);
  display: flex;
}

@media screen and (max-width: 1199px) {
  .blog-item {
    flex-wrap: wrap;
  }
}

.blog-item:hover .blog-item__thumb img {
  transform: scale(1);
}

.blog-item:hover .blog-item__title img {
  color: hsl(var(--base));
}

.blog-item__thumb {
  overflow: hidden;
  border-radius: 8px;
  width: 223px;
  height: 197px;
  margin-right: 20px;
}

@media screen and (max-width: 1199px) {
  .blog-item__thumb {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .blog-item__thumb {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.blog-item__thumb a {
  display: block;
}

.blog-item__thumb a img {
  transition: 0.3s linear;
  border-radius: 8px;
  width: 100%;
}

.blog-item__content {
  height: 100%;
  padding-top: px;
  width: calc(100% - 223px);
}

@media screen and (max-width: 1199px) {
  .blog-item__content {
    width: 100%;
  }
}

.blog-item__content .site-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-item__content .desc {
  color: hsl(var(--white) / 0.8);
  border-bottom: 1px solid hsl(var(--white) / 0.08);
  margin-bottom: 20px;
  padding-bottom: 25px;
  transition: 0.4s all;
}

.blog-item__content:hover .desc {
  border-bottom: 1px solid hsl(var(--base-two) / 0.5);
}

.blog-item__bottom {
  display: flex;
  justify-content: space-between;
}

.blog-item__bottom .item {
  display: flex;
  position: relative;
  align-items: center;
}

.blog-item__bottom .item:last-child:before {
  display: none;
}

.blog-item__bottom .item::before {
  content: "";
  position: absolute;
  right: -98%;
  top: 4px;
  height: 24px;
  width: 1px;
  background: hsl(var(--white) / 0.08);
}

@media screen and (max-width: 991px) {
  .blog-item__bottom .item::before {
    display: none;
  }
}

.blog-item__bottom .item:last-child:before {
  display: none;
}

.blog-item__bottom .item img {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 15px;
}

.blog-item__bottom .item .icon i {
  margin-right: 15px;
  font-size: 14px;
  color: hsl(var(--base-two));
}

.blog-item__bottom .item .text {
  font-size: 14px;
  color: hsl(var(--base-two));
}

.blog-bottom-wrap {
  border-top: 1px solid hsl(var(--base) / 0.2);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-bottom-wrap .like-comment {
  display: flex;
  align-items: center;
}

.blog-bottom-wrap .like-comment .left-auth img {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  object-fit: cover;
  margin-right: 10px;
}

.blog-bottom-wrap .auth-name h5 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}

.blog-bottom-wrap .auth-name h5 span {
  color: hsl(var(--dark) / 0.6);
}

.blog-bottom-wrap .comments-like span {
  font-size: 15px;
  margin-left: 10px;
  display: inline-block;
}

.blog-bottom-wrap .comments-like span i {
  color: hsl(var(--base));
  font-size: 14px;
}

/*============= Video Start Here =======================*/
.video-left:hover .video-left__thumb img {
  transform: scale(1.2);
}

.video-left__thumb {
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 16px;
}

.video-left__thumb img {
  border-radius: 16px;
  width: 100%;
  transition: all 0.5s linear;
}

.video-left__thumb:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(var(--dark));
  opacity: 0.4;
  border-radius: 16px;
  z-index: 1;
}

.video-left__content a:hover {
  color: inherit;
}

.video-left .popup-vide-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  z-index: 4;
}

.video-left .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.video-left .meta .right-side-meta.ms-auto .like {
  margin-left: 10px;
}

.video-left .meta .right-side-meta.ms-auto .like i {
  color: hsl(var(--base));
}

.video-left .date i {
  color: hsl(var(--base));
}

/*============= Breaking News =============*/
.subscribe-wrap {
  padding: 30px 70px 30px;
  border-radius: 0px;
}

@media screen and (max-width: 767px) {
  .subscribe-wrap {
    padding: 40px;
  }
}

@media screen and (max-width: 374px) {
  .subscribe-wrap {
    padding: 20px;
  }
}

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

@media screen and (max-width: 767px) {
  .subscribe-wrap .section-heading__title {
    font-size: 27px;
  }
}

@media screen and (max-width: 424px) {
  .subscribe-wrap .section-heading__title {
    font-size: 22px;
  }
}

.subscribe-wrap p {
  margin-bottom: 20px;
}

.subscribe-wrap__input {
  position: relative;
}

.subscribe-wrap__input input {
  height: 60px;
  border-radius: 10px;
  background-color: hsl(var(--base) / 0.05);
  padding-right: 70px;
}

.subscribe-wrap__input button {
  position: absolute;
  height: 100%;
  width: 62px;
  background-color: hsl(var(--base));
  border-radius: 0px 0px 0px 0;
  right: 0;
  border-radius: 0px 10px 10px 0px;
}

.subscribe-right {
  position: relative;
}

.subscribe-right::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  left: 0px;
  bottom: 0px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(var(--base)) 100%
  );
}

/* =================== Featured Start Here ==================== */
.single-features {
  padding: 30px;
  display: flex;
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  background: linear-gradient(
    to left,
    hsl(var(--base) / 0.5) 0%,
    hsl(var(--white) / 0.08) 100%
  );
  position: relative;
  transition: all 0.4s;
  border-radius: var(--border-radius);
}

.single-features:hover::before {
  top: 0px;
  left: 0px;
}

.single-features::before {
  position: absolute;
  content: "";
  height: 101%;
  width: 100%;
  background-color: transparent;
  top: 10px;
  left: -11px;
  z-index: 1;
  border-radius: var(--border-radius);
  transition: 0.5s;
  border: 3px solid hsl(var(--black));
}

.single-features__icon {
  margin-right: 20px;
  position: relative;
}

.single-features__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px dashed hsl(var(--base));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 1;
  animation: rotation-circle 7s infinite linear;
}

.single-features__icon i {
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: hsl(var(--black));
}

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

  to {
    transform: rotate(359deg);
  }
}

/*====================== Checkout Page ====================*/
.cuppon-accor span {
  cursor: pointer;
  transition: all 0.4s;
}

.cuppon-accor span:hover {
  color: hsl(var(--base));
}

.product-card__cupon span {
  cursor: pointer;
  transition: all 0.4s;
}

.product-card__cupon span:hover {
  color: hsl(var(--base));
}

/*=================== Blog Details =========*/
.blog-details {
  overflow: hidden;
  padding-right: 50px;
}

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

.blog-details .blog-item {
  box-shadow: none;
  border: 1px solid hsl(var(--white) / 0.08);
}

.blog-details .blog-item__thumb {
  height: inherit;
  width: 100%;
  max-height: 100%;
  margin-right: 0;
}

.blog-details .blog-item__thumb img {
  width: 100%;
}

.blog-details .blog-item__content {
  padding-bottom: 0;
}

.blog-details__content {
  padding: 20px 25px;
}

@media screen and (max-width: 767px) {
  .blog-details__content {
    padding: 20px 25px;
  }
}

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

.blog-details__title {
  margin-bottom: 15px;
}

.blog-details__desc {
  margin-bottom: 15px;
}

.blog-details .blog-bottom-wrap {
  border-top: 0;
  padding: 20px 25px 0px;
}

blockquote {
  background-color: hsl(var(--base) / 0.05);
  padding: 20px 20px 20px;
  border-radius: 5px;
  border-left: 3px solid hsl(var(--base));
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  margin-top: 30px;
}

blockquote::before {
  content: "\f100";
  position: absolute;
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  font-size: 141px;
  top: -95px;
  right: 50%;
  z-index: -1;
  opacity: 0.4;
  transform: translateX(39%);
  display: none;
}

/*=================== Contact top Start =========*/
.contact-info__addres-wrap .single_wrapper {
  padding: 30px;
  margin-bottom: 44px;
  border-radius: var(--border-radius);
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  position: relative;
  transition: all 0.4s;
  background: linear-gradient(
    to right,
    hsl(var(--base) / 0.5) 0%,
    hsl(var(--white) / 0.08) 100%
  );
}

.contact-info__addres-wrap .single_wrapper:hover::before {
  left: 0;
  top: 0;
}

.contact-info__addres-wrap .single_wrapper::before {
  position: absolute;
  content: "";
  height: 101%;
  width: 100%;
  background-color: transparent;
  top: 10px;
  left: -11px;
  z-index: -1;
  border-radius: var(--border-radius);
  transition: 0.5s;
  border: 3px solid hsl(var(--black));
}

.contact-info__addres-wrap .single_wrapper h3 {
  margin-bottom: 30px;
  text-transform: capitalize;
  color: hsl(var(--black));
}

.contact-info__addres-wrap .single_wrapper .single-info {
  display: flex;
  align-items: center;
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-icon {
  margin-right: 25px;
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-icon i {
  font-size: 40px;
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-text h6 {
  font-size: 16px;
  font-weight: 400;
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-text h6 a {
  color: hsl(var(--black) / 0.9);
}

.contact-map {
  width: 100%;
  min-height: 300px;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
}

.contactus-form {
  background-color: hsl(var(--white) / 0.1);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
}

@media screen and (max-width: 767px) {
  .contactus-form {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 575px) {
  .contactus-form {
    padding: 20px 15px;
  }
}

.contact-left-wrap {
  padding: 40px 20px;
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 8px;
}

.contact-left-wrap .contact-left-bottom {
  padding: 20px 15px;
  text-align: center;
  border: 1px dotted hsl(var(--white) / 0.08);
  margin-top: 20px;
  border-radius: 8px;
}

.contact-left-wrap .contact-left-bottom .icon {
  height: 48px;
  width: 48px;
  line-height: 48px;
  text-align: center;
  background: hsl(var(--white) / 0.08);
  border-radius: 100%;
  margin: 0 auto 18px;
}

.contact-left-wrap .contact-left-bottom .icon svg {
  fill: hsl(var(--base-two));
}

.contact-left-wrap .contact-left-bottom .site-title {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-left-wrap .contact-left-bottom h4 {
  font-size: 32px;
  font-weight: 500;
  color: hsl(var(--base));
}

.contact-right-wrapper .action-category-wrapper {
  margin-top: 0;
  margin-bottom: 40px;
}

.contact-right-wrapper .action-category-wrapper .action-category-item {
  padding: 35px 10px;
  width: 50%;
}

@media screen and (max-width: 575px) {
  .contact-right-wrapper .action-category-wrapper .action-category-item {
    width: 100%;
  }
}

.google-map-wrap {
  padding: 25px;
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 8px;
}

.google-map-wrap iframe {
  border-radius: 8px;
}

/*=================== Account =========*/
.account.login-page,
.account.register {
  margin-top: 50px;
  margin-bottom: 50px;
  /* top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%, -50%); */
}

.account .login-bg-img {
  position: absolute;
  width: 48%;
  height: 100%;
  border-radius: 0;
  top: 0;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .account.login-page,
  .account.register {
    margin-top: 80px;
    /* left: 0;
        top: 100px;
        transform: none; */
  }

  .account .login-bg-img {
    display: none;
  }
}

.account-inner {
  position: relative;
}

.account-inner .account-form .custom-form-field {
  border: 1px solid #464646;
  background: transparent;
  color: white;
  border-radius: 10px !important;
  line-height: 23px;
}

.account-inner .account-form .custom-form-field::placeholder {
  color: #636c72;
}

.account-form {
  background-color: var(--base-dark-color);
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .account-form {
    padding: 5px;
  }
}

.account-form__content {
  padding: 0;
  border-radius: 8px;
  text-align: center;
}

.account-form__content h3 {
  font-size: 20px;
}

.account-form__content h5 {
  font-size: 12px;
}

.account-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1199px) {
  .account-thumb {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 47%;
  }

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

/*=================== Left Css =========*/
.policy-left {
  position: sticky;
  top: 100px;
}

.policy-left__wrapper {
  background-color: hsl(var(--white) / 0.2);
  padding: 45px 20px !important;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .policy-left__wrapper {
    padding: 30px 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .policy-left__wrapper {
    padding: 35px 15px !important;
  }
}

.policy-left .nav-link {
  padding: 0px;
  margin: 5px 0;
}

.policy-left .nav-link:hover {
  color: hsl(var(--base));
}

.policy-left__list {
  color: hsl(var(--white));
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 10px !important;
}

.policy-left__list.active {
  background-color: transparent !important;
  color: hsl(var(--base)) !important;
}

.policy-left__list.active::before {
  background-color: hsl(var(--base));
}

.policy-left__list::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 70%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: hsl(var(--white));
}

.policy-left__item {
  color: hsl(var(--body-color));
}

.policy-left__item span {
  font-size: 13px;
  margin-right: 10px;
}

.policy-left__item.active {
  color: hsl(var(--base)) !important;
  background-color: transparent !important;
}

.policy-right__list {
  margin-top: 30px;
}

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

.policy-card {
  background-color: hsl(var(--white) / 0.2);
  padding: 25px;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .policy-card {
    padding: 20px;
  }
}

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

.policy-card:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .policy-card:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .policy-card:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 575px) {
  .policy-card:not(:last-child) {
    margin-bottom: 30px;
  }
}

.policy-card__title {
  margin-bottom: 10px;
}

.policy-card__desc {
  margin-bottom: 30px;
}

@media (max-width: 757px) {
  .policy-card__desc {
    margin-bottom: 20px;
  }
}

.policy-card__desc:last-of-type {
  margin-bottom: 0;
}

/*============** Term Of Service **============*/
.single-terms h3 {
  font-size: 30px;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid hsl(var(--base));
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.single-terms p {
  margin-bottom: 15px;
}

.error-wrap img {
  background: hsl(var(--danger));
}

.error-wrap__title {
  margin-bottom: 0;
}

.error-wrap__desc {
  margin-bottom: 30px;
  font-size: 18px;
}

.error__text span {
  font-size: 75px;
  font-weight: 800;
}

.error__text span:nth-child(2) {
  color: red;
}

.error-thumb img {
  width: 65%;
}

@media screen and (max-width: 767px) {
  .error-thumb img {
    width: 80%;
  }
}

.search-wrap2 .new {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

/* < search box loader */
.lds-spinner {
  color: hsl(var(--base));
  display: inline-block;
  position: relative;
  width: 80px;
  height: 112px;
  padding: 10px 0px;
  left: 50%;
  transform: translateX(-50%);
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 15px;
  left: 37px;
  width: 2px;
  height: 11px;
  border-radius: 20%;
  background: hsl(var(--white));
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

.form-check-input:focus {
  border-color: hsl(var(--base-two));
  outline: 0;
  box-shadow: 0 0 0 0.25rem hsl(var(--base-two) / 0.2);
}

.list-group-wrap-bidding .list-group.list-group-flush {
  margin-bottom: 8px;
}

.list-group-wrap-bidding .list-group-item {
  background: #202028;
  color: hsl(var(--white));
  border-bottom: 1px solid hsl(var(--white) / 0.05);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.list--group--item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: hsl(var(--white));
  text-decoration: none;
  background-color: #202028;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.image-upload .thumb .profilePicPreview {
  width: 100%;
  height: 210px;
  display: block;
  border-radius: 10px;
  background-size: cover !important;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.image-upload .thumb .profilePicUpload {
  font-size: 0;
  display: none;
}

.image-upload .thumb .avatar-edit label {
  text-align: center;
  line-height: 32px;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 25px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 16%);
  transition: all 0.3s;
  margin-top: 6px;
}

.image-upload .thumb .profilePicPreview.has-image .remove-image {
  display: block;
}

.image-upload .thumb .profilePicPreview .remove-image {
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  width: 34px;
  height: 34px;
  font-size: 23px;
  border-radius: 50%;
  background-color: hsl(var(--base));
  color: #dddd;
  display: none;
  opacity: 1;
}

.dashboard-boarder {
  padding: 20px;
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 8px;
}

.table-boarder {
  padding: 5px;
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 4px;
}

.cookies-card {
  position: fixed;
  bottom: 16px;
  padding: 10px;
  background: hsl(var(--black));
  border: 1px solid hsl(var(--base));
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 99;
  margin: auto 50px;
  width: 79%;
}

.withdraw-preview-text span {
  color: hsl(var(--white));
}

.card-header {
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.admin-ticket-warap {
  background: hsl(var(--base) / 0.1);
  border-radius: 12px;
  border: 1px solid hsl(var(--base) / 0.2);
}

.user-ticket-warap {
  background: hsl(var(--white) / 0.04);
  border-radius: 12px;
  border: 1px solid hsl(var(--white) / 0.1);
}

button.btn--close {
  height: 30px;
  width: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  position: absolute;
  right: 15px;
  top: 15px;
  transition: 0.3s all;
}

button.btn--close:hover {
  background: hsl(var(--base-two));
}

.dashboard-wrapper
  .dashboard-container-wrapper
  .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-blurred {
  background: transparent;
}

.dashboard-wrapper
  .dashboard-container-wrapper
  .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-blurred
  p.ck-placeholder {
  color: hsl(var(--white)) !important;
}

.dashboard-wrapper
  .dashboard-container-wrapper
  .ck.ck-content.ck-editor__editable.ck-rounded-corners.ck-editor__editable_inline.ck-focused {
  background: transparent;
}

.dashboard-wrapper
  .dashboard-container-wrapper
  .ck.ck-button:not(.ck-disabled):hover,
a.ck.ck-button:not(.ck-disabled):hover {
  background: hsl(var(--white) / 0.1);
}

.dashboard-container-wrapper .ck-reset_all :not(.ck-reset_all-excluded *),
.ck.ck-reset_all {
  color: hsl(var(--white));
  background: transparent;
}

.dashboard-container-wrapper
  .ck.ck-editor__main
  > .ck-editor__editable:not(.ck-focused) {
  border-color: hsl(var(--white) / 0.3);
}

.dashboard-container-wrapper
  .ck-rounded-corners
  .ck.ck-editor__top
  .ck-sticky-panel
  .ck-toolbar,
.ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
  border-color: hsl(var(--white) / 0.08);
}

.dashboard-container-wrapper
  .ck-rounded-corners
  .ck.ck-editor__main
  > .ck-editor__editable,
.ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
  border-color: hsl(var(--white) / 0.08);
}

/*======= Dark css=======*/

/* Policy Terms and Condition */
.wyg h1,
h2,
h3,
h4 {
  color: hsl(var(--white) / 0.8);
}

.wyg strong {
  color: hsl(var(--white) / 0.7);
}

.wyg p {
  color: hsl(var(--white) / 0.7);
}

.wyg ul {
  margin-left: 40px;
  margin-bottom: 15px;
}

.wyg ul li {
  list-style-type: disc;
  color: hsl(var(--white) / 0.7);
}

.privacy-bg-effect .banner-right {
  background-color: hsl(var(--base-two) / 0.2);
  bottom: 20px;
  width: 280px;
  height: 280px;
  filter: blur(110px);
  z-index: -1;
  opacity: 1;
  right: 0;
  position: absolute;
}

.privacy-bg-effect.left .banner-effect {
  background-color: hsl(var(--base) / 0.2);
  top: 20px;
  left: 0;
  width: 280px;
  height: 280px;
}

.single-related-product {
  margin-top: 3px;
}

.have-account__link {
  color: hsl(var(--base));
}

.have-account__text,
.have-account__link {
  font-size: 12px;
}

.forgot-password {
  color: hsl(var(--base));
  font-size: 12px;
}

.policy {
  color: hsl(var(--base));
  font-size: 12px;
}

.input-group-text.bg--base {
  color: hsl(var(--white));
}

.gig-img-wrap {
  width: 380px !important;
  height: 242px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px auto !important;
}

.gig-img {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.product-details-slider .slick-dots li button {
  width: 21px;
  height: 4px;
  border-radius: 0;
}

/* drag and drop box */
.photo_upload .drag_area {
  height: 150px;
  border-radius: 8px;
  border: 1px solid #f67280;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  user-select: none;
  --webkit-user-select: none;
}

.photo_upload .drag_area .visible {
  font-size: 18px;
}

.photo_upload .select {
  cursor: pointer;
  transition: 0.4s;
}

.photo_upload .select:hover {
  opacity: 0.6;
}

.photo_upload .container_area {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 30px;
}

.photo_upload .container_area .image {
  height: 75px;
  margin-left: 5px;
  width: 75px;
  position: relative;
  margin-bottom: 8px;
}

.photo_upload .container_area .image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.photo_upload .container_area .image .delete {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
  background: hsl(var(--danger));
  top: 0px;
  right: 0px;
  font-size: 12px;
  cursor: pointer;
  color: hsl(var(--white));
  z-index: 9;
}

.photo_upload input,
.photo_upload .drag_area .on-drop,
.photo_upload .drag_area.dragover .visible {
  display: none;
}

.drag_drop_content {
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drag_drop_content .icon_wrap {
  /* width: 90px; */
  height: 90px;
  border-radius: 50%;
  /* background: hsl(var(--base)); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.drag_drop_content .icon_wrap i {
  font-size: 30px;
}

/* Loader Section */

.liquid-loader {
  overflow: hidden;
  position: absolute;
  top: 450px;
  left: calc(50% - 100px);
  zoom: 0.65;
}

.gegga {
  width: 0;
}

.snurra {
  filter: url(#gegga);
}

.stopp1 {
  stop-color: #f700a8;
}

.stopp2 {
  stop-color: #ff8000;
}

.halvan {
  animation: Snurra1 10s infinite linear;
  stroke-dasharray: 180 800;
  fill: none;
  stroke: url(#gradient);
  stroke-width: 23;
  stroke-linecap: round;
}

.strecken {
  animation: Snurra1 3s infinite linear;
  stroke-dasharray: 26 54;
  fill: none;
  stroke: url(#gradient);
  stroke-width: 23;
  stroke-linecap: round;
}

.skugga {
  filter: blur(5px);
  opacity: 0.3;
  position: absolute;
  transform: translate(3px, 3px);
}

@keyframes Snurra1 {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -403px;
  }
}

.blurred {
  filter: blur(4px);
  transition: filter 0.3s ease-in-out;
}

/* Calendar */

.calendar-wrapper {
  width: 100%;
  background: #2a2a2a;
  border-radius: 10px;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.calendar-wrapper header {
  display: flex;
  align-items: center;
  padding: 20px 5% 10px;
  justify-content: space-between;
  background: #2a2a2a;
  border-radius: 10px 10px 0 0;
}

.calendar-wrapper header .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calendar-wrapper header .icons span {
  height: 47px;
  width: 47px;
  cursor: pointer;
  color: white;
  text-align: center;
  font-size: 1.9rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 50%;
}

.icons span:last-child {
  margin-right: -10px;
}

.calendar-wrapper header .icons span:hover {
  background: hsl(var(--base));
}

.calendar-wrapper header .current-date {
  font-size: 16px;
  font-weight: 400;
  color: hsl(var(--base));
}

.calendar {
  padding: 20px 5px 40px;
}

.calendar ul {
  display: grid;
  grid-template-columns: repeat(7, calc(100% / 7));
  text-align: center;
  row-gap: 10px;
}

.calendar li {
  color: white;
  font-size: 14px;
}

.calendar .weeks li {
  font-weight: 500;
  cursor: default;
  margin: auto auto 10px;
  width: fit-content;
}

.calendar .days li {
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin: 10px auto;
}

.calendar .days li.visit-active::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.calendar .days li.visit-active i {
  font-size: 10px;
  position: absolute;
  content: "";
  right: -17px;
  top: -15px;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: hsl(var(--base));
  font-style: normal;
}

.days li.inactive {
  color: #aaa;
}

.days li.active {
  color: #fff;
}

.days li::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.days li.active::before {
  background: hsl(var(--base));
}

.days li:not(.active):hover {
  color: black;
}

.days li:not(.active):hover::before {
  background: #f2f2f2;
  color: black;
}

@media screen and (max-width: 991px) {
  .calendar-wrapper header {
    padding: 20px 5% 0;
  }

  .calendar {
    padding: 20px 5px;
  }
}

.alert.alert_pink {
  background: hsl(var(--base));
}

.alert.alert_pink i {
  font-size: 20px;
}

.alert.alert_pink p,
.alert.alert_pink button {
  color: #111111;
}

.datepickers-container {
  z-index: 1056;
}

/* Gym Dashboard */
.gym-range-tabs {
  padding: 5px;
  background: #000000;
  border-radius: 5px;
  gap: 20px;
  justify-content: space-between;
  width: fit-content;
  margin-bottom: 15px;
}

.gym-range-tabs.nav-pills .nav-link {
  font-weight: 400;
  font-size: 12px;
  line-height: 12.1px;
  text-align: center;
  color: white;
  width: 80px;
}

@media screen and (max-width: 991px) {
  .gym-range-tabs {
    width: 100%;
    gap: 0;
    margin-bottom: 0;
  }

  .gym-range-tabs.nav-pills .nav-link {
    font-weight: 400;
    font-size: 11px;
    width: 75px;
  }
}

.gym-range-tabs.nav-pills .nav-item.divider {
  background: white;
  width: 1px;
  height: 15px;
  margin-top: 6px;
}

.gym-range-tabs.nav-pills .nav-link.active {
  background: #464646;
}

.apexcharts-canvas.apexcharts-theme-dark {
  background: transparent !important;
}

.visits-list p {
  font-size: 13px;
}

.review-section .review-chart {
  /* width: 500px; */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  margin-top: 15px;
}

.review-section .review-chart .rate-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 30px;
  padding: 20px 0;
  padding: 10px;
}

.review-section .rate-box .value {
  display: flex;
  align-items: center;
}

.review-section .rate-box .value:hover {
  color: #f3b842;
}

.review-section .review-chart .rate-text {
  display: flex;
  align-items: center;
}

.review-section .review-chart .rate-text .value {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  cursor: pointer;
  width: 20px;
}

.review-section .review-chart .rate-text .count {
  font-weight: 400;
  font-size: 14px;
  font-size: 14px;
  color: #6a6a6a;
  width: 40px;
}

.review-section .review-chart .rate-text .la-star {
  color: #f3b842;
}

.review-section .rate-box .progress--bar {
  border-width: 1px;
  position: relative;
  background-color: transparent;
  height: 10px;
  border-radius: 100px;
  width: 250px;
}

.review-section .rate-box .progress--bar .progress {
  background-color: #f3b842;
  height: 100%;
  border-radius: 100px;
  transition: 300ms ease-in-out;
}

.review-section .global {
  height: 100%;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.review-section .one .fas {
  color: #cfd8dc;
}

.review-section .two {
  background: linear-gradient(to right, #f3b842 0%, transparent 0%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  transition: 0.5s ease-in-out all;
}

.review-section .global > span.global-value {
  color: #f3b842;
  font-size: 39px;
  font-weight: 500;
}

.review-section .global > span.total-reviews {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

.review-section .rating-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.review-section .rating-icons span {
  position: absolute;
  display: flex;
  font-size: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px;
}

.trends-section .most-activity {
  width: fit-content;
  height: 50px;
  border-radius: 10px;
  padding: 15px;
  background: hsl(var(--base));
  color: black;
  font-weight: 700;
  font-size: 19px;
  line-height: 100%;
  text-align: center;
  vertical-align: middle;
}

.trends-section .most-activity-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  background-size: cover;
  background-position: 0 50%;
  background-repeat: no-repeat;
}

.form-dark-select {
  color: white;
  border-radius: 10px;
  background-color: #2a2a2a;
  border: 1px solid hsl(var(--base));
  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='%23F67280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  appearance: none;
  background-position: 95%;
}

.trends-section .trends-range-select {
  width: 100px;
  color: white;
  border-radius: 10px;
  background-color: var(--base-dark-color);
  border: 1px solid #ffffff;
  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='%23F67280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  appearance: none;
  background-position: 90%;
}

.trends-section .trend-icon {
  width: 30px;
  text-align: center;
  margin-right: 10px;
}

.trends-section .trend-title {
  font-size: 16px;
}

.trends-section .trend-count {
  font-size: 16px;
  width: 60px;
  text-align: center;
  border-radius: 7px;
  padding: 2px 7px;
  background: #05c16833;
  color: #05c168;
}

/* Toast */

.colored-toast.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content,
.wishlist-toast.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  font-size: 20px !important;
}

.colored-toast.swal2-popup.swal2-toast,
.wishlist-toast.swal2-popup.swal2-toast {
  background-color: var(--base-dark-color) !important;
  border: 1px solid hsl(var(--base));
  border-radius: 10px;
}

.colored-toast.swal2-popup.swal2-toast .swal2-title,
.wishlist-toast.swal2-popup.swal2-toast .swal2-title {
  color: white;
  margin: 10px 0 0 !important;
  font-size: 16px;
  font-weight: 400;
  grid-column: inherit !important;
}

.wishlist-toast .swal2-title {
  color: hsl(var(--base-two)) !important;
}

.colored-toast.swal2-popup.swal2-toast .swal2-html-container {
  color: white;
  font-size: 13px;
  font-weight: 400;
  grid-column: inherit !important;
  margin: 10px 0 0 !important;
}

.colored-toast .swal2-icon,
.wishlist-toast .swal2-icon {
  border-color: transparent !important;
  margin: -5px 0 0 -5px !important;
}

.colored-toast .colored-toast-close,
.wishlist-toast .wishlist-toast-close {
  margin-top: -5px !important;
}

/* Popover Dark */
.popover-dark {
  background: var(--base-dark-color);
  color: hsl(var(--white));
  border: 1px solid hsl(var(--base));
}

.popover-dark .popover-body {
  color: hsl(var(--white));
  padding: 10px;
}

.popover-dark .popover-body a {
  color: hsl(var(--base));
  border-bottom: 1px solid hsl(var(--base));
}

.popover-dark .popover-body a:hover {
  color: hsl(var(--base-two));
  border-bottom: 1px solid hsl(var(--base-two));
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
  border-left-color: hsl(var(--base));
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
  border-right-color: hsl(var(--base));
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
  border-top-color: hsl(var(--base));
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
  border-bottom-color: hsl(var(--base));
}

/* Contenedor general */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px; /* opcional: controla el ancho total */
  margin: 0 auto;
}

/* Cada opción (radio + label + input) ocupa todo el ancho */
.cta-option {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* Label como botón */
.cta-option label {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  border: 2px solid #e67a86;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Estado inactivo */
.cta-option input[type="radio"] {
  display: none;
}

/* Label cuando NO está seleccionado */
.cta-option input[type="radio"]:not(:checked) + label {
  background: transparent;
  border-color: #444;
  color: #fff;
}

/* Label cuando está seleccionado */
.cta-option input[type="radio"]:checked + label {
  background: #e67a86;
  border-color: #e67a86;
  color: #000;
}

/* Input de URL debajo del botón, mismo ancho */
.hidden-input {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
}

.hidden-input input[type="url"] {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  border: 2px solid #e67a86;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  outline: none;
  transition: box-shadow 0.25s ease;
}

.hidden-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hidden-input input:focus {
  box-shadow: 0 0 0 4px rgba(230, 122, 134, 0.25);
}

/* Animación de despliegue suave */
.hidden-input.show {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
