/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
  --heading-font: "Basement Grotesque Norm";
  --body-font: "Inter", sans-serif;
  /* ========================= Color Variables Start =========================== */
  --white: 0 0% 100%;
  --light-h: 0;
  --light-s: 1%;
  --light-l: 53%;
  --light: var(--light-h) var(--light-s) var(--light-l);
  --black-h: 0;
  --black-s: 0%;
  --black-l: 0%;
  --black: var(--black-h) var(--black-s) var(--black-l);
  --heading-color: var(--white);
  --body-color: var(--white);
  --border-color: 207 44% 32%;
  --body-bg: 208 88% 13%;
  --section-bg: 207 51% 24%;
  --section-bg-two: 207 90% 8%;
  /* ================================ Box Shadow Start =============================== */
  --header-box-shadow: 0px -1px 15px 3px hsl(var(--white) / 0.3);
  --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--white) / 0.92);
  --box-shadow: 0px 2px 15px hsl(var(--white) / 0.05);
  /* ================================ Box Shadow End =============================== */
  /*=========================== gradient color start here ===========================*/
  --base-gradient: linear-gradient(90deg,
      hsl(var(--base)) 0%,
      hsl(var(--base-two)) 47.11%,
      hsl(var(--base-three)) 100%);
  --base-gradient-reverse: linear-gradient(90deg,
      hsl(var(--base-three)) 0%,
      hsl(var(--base-two)) 47.11%,
      hsl(var(--base)) 100%);
  --gradient: linear-gradient(90deg,
      hsl(var(--base-two)) 0%,
      hsl(var(--base-two)) 100%);
  --gradient-two: linear-gradient(180deg,
      rgba(0, 194, 255, 0) 0%,
      rgba(255, 41, 195, 0.8) 100%);
  --gradient-three: linear-gradient(180deg,
      rgba(24, 255, 158, 0) 0%,
      #17ffe3 100%);
  --gradient-four: linear-gradient(180deg,
      rgba(0, 194, 255, 0) 0%,
      rgba(255, 41, 195, 0.2) 100%);
  --shape-one: linear-gradient(180deg,
      rgba(0, 194, 255, 0) 0%,
      rgba(255, 41, 195, 0.2) 100%);
  --choose-bg: linear-gradient(90deg,
      rgba(8, 158, 245, 0.1) 0%,
      rgba(44, 188, 205, 0.1) 47.11%,
      rgba(95, 231, 147, 0.1) 100%);
  /*=========================== gradient color end here ===========================*/
  /* ========================= Base Color ============================= */
  --base-h: 202;
  --base-s: 94%;
  --base-l: 50%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  /* Base Darken  */
  --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
  --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
  --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
  --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
  --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
  --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
  --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
  /* Base Lighten */
  --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
  --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
  --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
  --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
  --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
  --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
  --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
  --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
  --background-gradient: linear-gradient(45deg,
      hsl(var(--base)),
      hsl(var(--base-two)));
  /* ========================= Base Two Color ============================= */
  --base-two-h: 186;
  --base-two-s: 65%;
  --base-two-l: 49%;
  --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
  /* Base Two Darken */
  --base-two-d-100: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.05);
  --base-two-d-200: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.1);
  --base-two-d-300: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.2);
  --base-two-d-400: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.3);
  --base-two-d-500: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.4);
  --base-two-d-600: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.5);
  --base-two-d-700: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.6);
  --base-two-d-800: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.7);
  --base-two-d-900: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.8);
  /* Base Two Lighten */
  --base-two-l-100: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.05);
  --base-two-l-200: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
  --base-two-l-300: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
  --base-two-l-400: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
  --base-two-l-500: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
  --base-two-l-600: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
  --base-two-l-700: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
  --base-two-l-800: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
  --base-two-l-900: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
  /* ========================= Base Three Color ============================= */
  --base-three-h: 143;
  --base-three-s: 74%;
  --base-three-l: 64%;
  --base-three: var(--base-three-h) var(--base-three-s) var(--base-three-l);
  /* Base Two Darken */
  --base-three-d-100: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.05);
  --base-three-d-200: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.1);
  --base-three-d-300: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.2);
  --base-three-d-400: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.3);
  --base-three-d-500: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.4);
  --base-three-d-600: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.5);
  --base-three-d-700: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.6);
  --base-three-d-800: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.7);
  --base-three-d-900: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.8);
  /* Base Two Lighten */
  --base-three-l-100: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.05);
  --base-three-l-200: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.1);
  --base-three-l-300: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.2);
  --base-three-l-400: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.3);
  --base-three-l-500: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.4);
  --base-three-l-600: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.5);
  --base-three-l-700: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.6);
  --base-three-l-800: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.7);
  --base-three-l-900: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.8);
  /* ============================== Bootstrap Modifier Start ============================== */
  /* Primary Color */
  --primary-h: 211;
  --primary-s: 100%;
  --primary-l: 50%;
  --primary: var(--primary-h) var(--primary-s) var(--primary-l);
  /* Primary Darken */
  --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
  --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
  --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
  --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
  --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
  /* primary 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: 208;
  --secondary-s: 7%;
  --secondary-l: 46%;
  --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
  /* Secondary Darken */
  --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
  --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
  --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
  --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
  --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
  /* secondary 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: 99;
  --success-s: 52%;
  --success-l: 55%;
  --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: 100%;
  --warning-l: 63%;
  --warning: var(--warning-h) var(--warning-s) var(--warning-l);
  /* Warning Darken */
  --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
  --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
  --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
  --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
  --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
  /* Warning 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);
  --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);
  /* dark Color */
  --dark-h: 207;
  --dark-s: 90%;
  --dark-l: 8%;
  --dark: var(--dark-h) var(--dark-s) var(--dark-l);
  /* dark Darken */
  --dark-d-100: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.1);
  --dark-d-200: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.2);
  --dark-d-300: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.3);
  --dark-d-400: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.4);
  --dark-d-500: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.5);
  --dark-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 End ============================== */
}

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

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

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

span {
  display: inline-block;
}

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

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

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

h1 {
  font-size: clamp(1.5rem, 0.3542rem + 2.6474vw, 4.1875rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 1.1625rem + 1.6875vw, 3.1875rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.5rem, 1.275rem + 1.125vw, 2.625rem);
}

h4 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
}

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

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

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

a {
  display: inline-block;
  transition: 0.2s linear;
  text-decoration: none;
  color: #2cbece;
}

a:hover {
  color: #2cbece;
}

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

select {
  cursor: pointer;
}

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

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

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

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

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
  .col-xsm-6 {
    width: 50%;
  }
}

/* Section Background */
.section-bg-two {
  background-color: hsl(var(--section-bg-two) / 0.5);
  backdrop-filter: blur(50px);
}

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

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

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

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

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

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

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

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

/* Overlay End */

.small {
  color: hsl(var(--white) / 0.6) !important;
}

.min-w-170 {
  min-width: 170px;
}

.max-w-content {
  max-width: max-content;
}

.max-w-250 {
  max-width: 250px;
}

@media (min-width: 1600px) {
  .max-w-xxxl-60 {
    max-width: 60%;
  }
}

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

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

.flex-align,
.dashboard .user-info__right,
.dashboard .user-info__button,
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

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

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

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

.top-center-extend,
.dashboard .sidebar-submenu-list__link::before,
.custom--accordion .accordion-button[aria-expanded="true"]::after,
.custom--accordion .accordion-button[aria-expanded="false"]::after {
  top: 50%;
  transform: translateY(-50%);
}

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

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

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

.fs-11 {
  font-size: 0.6875rem;
}

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

.fs-13,
.dashboard .sidebar-menu-list__item.has-dropdown>a:after,
.table tbody tr td,
.customer__name {
  font-size: 0.8125rem;
}

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

.fs-15,
.dashboard .user-info .user-info-dropdown__link,
.dashboard .sidebar-submenu-list__link .icon,
.dashboard .sidebar-menu-list__link .icon,
.btn--icon {
  font-size: 0.9375rem;
}

.fs-16,
.how-work__desc,
.dashboard .dashboard-header .bd-btn,
.dashboard .sidebar-submenu-list__link,
.dashboard .sidebar-menu-list__link,
.breadcrumb__item,
.alert__title,
.table tbody tr td::before,
.table thead tr th,
.btn,
p {
  font-size: 1rem;
}

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

  .fs-16,
  .how-work__desc,
  .dashboard .dashboard-header .bd-btn,
  .dashboard .sidebar-submenu-list__link,
  .dashboard .sidebar-menu-list__link,
  .breadcrumb__item,
  .alert__title,
  .table tbody tr td::before,
  .table thead tr th,
  .btn,
  p {
    font-size: 0.9375rem;
  }
}

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

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

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

.fs-18,
.user-profile-info__icon {
  font-size: 1.125rem;
}

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

  .fs-18,
  .user-profile-info__icon {
    font-size: 1.0625rem;
  }
}

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

  .fs-18,
  .user-profile-info__icon {
    font-size: 1rem;
  }
}

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

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

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

/* ===================== Font Size For responsive devices End =================== */
/* ====================== Section Heading ==================== */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

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

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

.section-heading__subtitle {
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.3125rem);
  font-weight: 400;
  margin-bottom: 15px;
  color: hsl(var(--white));
}

.section-heading__title {
  margin-bottom: 15px;
  font-size: clamp(1.5rem, 1.1625rem + 1.6875vw, 3.125rem);
}

.section-heading__desc {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.5rem);
}

.section-heading__btn {
  margin-top: 60px;
}

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

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

.section-heading.style-left .section-heading__desc {
  margin-left: 0;
}

/* ====================== Section Heading En d==================== */
/* ================================= Background Color Css Start =========================== */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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--dark {
  border-color: hsl(var(--dark)) !important;
}

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

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

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

.custom--accordion .accordion-body {
  padding: 20px 0;
  background-color: transparent;
}

.custom--accordion .accordion-body .text {
  max-width: 80%;
  color: hsl(var(--white) / 0.8);
}

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

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

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

.custom--accordion .accordion-button {
  background-color: transparent;
  color: var(--heading-color);
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.3125rem);
  font-family: var(--body-font);
  padding: 16px 0;
  line-height: 150%;
}

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

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

.custom--accordion .accordion-button::after {
  content: "\f067";
  font-size: 25px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  background-image: none;
  top: 0;
  height: unset;
  transform: none !important;
  color: hsl(var(--body-color));
  background-image: none;
}

.custom--accordion .accordion-button[aria-expanded="true"]::after {
  color: hsl(var(--base));
  transform: rotate(45deg) !important;
}

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

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

.btn {
  color: hsl(var(--white)) !important;
  font-weight: 500;
  padding: 19px 25px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  font-family: var(--body-font);
  line-height: 1;
}

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

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

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

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

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

.btn--sm {
  padding: 13px 23px;
  font-size: 0.8125rem;
}

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

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

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

.btn--base {
  background: var(--base-gradient);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
}

.btn--base::before {
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--base-gradient-reverse);
  content: "";
  z-index: -1;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.btn--base:hover::before {
  left: 0%;
}

.btn--base::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: var(--base-gradient);
  transition: all ease 0.3s;
  z-index: -1;
}

.btn--base:hover::after {
  left: 100%;
}

.btn--disabled {
  background: hsl(var(--white) / 0.1) !important;
  cursor: initial !important;
  color: hsl(var(--white)) !important;
}

.btn--disabled::after,
.btn--disabled::before {
  display: none;
}

.btn--disabled:hover.btn--base {
  background: hsl(var(--white) / 0.2) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================= Button Css End =========================== */
.btn-outline--base {
  background: var(--base-gradient) !important;
  border: transparent !important;
  color: hsl(var(--white)) !important;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.btn-outline--base::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: hsl(var(--body-bg)) !important;
  z-index: -1;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-outline--base::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  border-radius: 8px;
  background: var(--base-gradient-reverse) !important;
  background-size: 50% 100%;
  animation: gradient 7s linear 0s infinite;
  transition: 1s linear;
}

@keyframes gradient {
  100% {
    transform: rotate(1turn);
  }
}

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

.btn-outline--base:hover::after,
.btn-outline--base:focus .btn-outline--base:focus-visible::after {
  background: var(--base-gradient) !important;
}

/* ================================= Card Css Start =========================== */
.custom--card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 2px 2px 15px 2px hsl(var(--base-d-600)/0.8);
  background-color: hsl(var(--body-bg));
  border: 1px solid hsl(var(--border-color));
}

.custom--card .card-header {
  padding: 12px 24px;
  background-color: transparent;
  border-bottom: 1px solid hsl(var(--border-color));
}

.custom--card .card-header .card-title,
.custom--card .card-header .title {
  margin-bottom: 0;
}

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

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

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
/* Form Label */
.form--label {
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: hsl(var(--white) / 0.6);
  font-weight: 400;
}

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

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

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

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

/* Form Select End */
/* Form Control Start */
.form--control {
  border-radius: 12px;
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 17px 24px;
  background-color: hsl(var(--body-bg)) !important;
  border: 1px solid hsl(var(--border-color));
  color: hsl(var(--white));
  line-height: 1;
}

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

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

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

.form--control:disabled:focus,
.form--control[readonly]:focus {
  border-color: hsl(var(--base) / 0.14);
}

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

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

.form--control[type="file"] {
  line-height: 50px;
  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)) !important;
  transition: 0.2s linear;
  line-height: 25px;
  position: relative;
  margin-left: 15px;
  color: hsl(var(--body-color)) !important;
}

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

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

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

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

/* Autofill Css End */
/* input group */
.input--group {
  position: relative;
}

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

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

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

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

/* Custom Checkbox Design */
.form--check {
  margin-bottom: 12px;
}

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

.form--check .form-check-input {
  box-shadow: none;
  background: var(--base-gradient);
  box-shadow: none !important;
  border: 0;
  position: relative;
  border-radius: 4px;
  width: 22px;
  height: 22px;
  border: 1px solid hsl(var(--black) / 0.2);
  cursor: pointer;
}

.form--check .form-check-input::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: hsl(var(--section-bg-two));
  border-radius: 4px;
}

.form--check .form-check-input:checked {
  box-shadow: none;
}

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

.form--check .form-check-input {
  margin-top: 0;
}

.form--check .form-check-input:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--white));
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--base-gradient);
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.form--check .form-check-label {
  font-weight: 600;
  width: calc(100% - 22px);
  padding-left: 12px;
  cursor: pointer;
  color: hsl(var(--white) / 0.6);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*  Custom Switch End Design */
/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start =========================== */
.custom--modal.modal {
  background-color: hsl(var(--black) / 0.45);
}

.custom--modal .modal-header,
.custom--modal .modal-footer {
  border-bottom: 1px solid hsl(var(--white) / 0.2);
  padding: 16px;
}

.custom--modal .modal-content {
  background-color: hsl(var(--body-bg));
  border-radius: 10px !important;
  z-index: 99999999;
}

.modal-backdrop {
  z-index: -1;
}

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

.custom--modal .close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: hsl(var(--white));
  background-color: hsl(var(--white) / 0.15);
  font-size: 14px;
}

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

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

.custom--modal .close:hover,
.custom--modal .close:focus {
  background-color: hsl(var(--white) / 0.5) !important;
}

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

.custom--modal .modal-body .text {
  padding: 16px;
  background-size: 10px;
  color: hsl(var(--white));
}

.close-icon {
  color: hsl(var(--white));
}

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

.custom--modal .modal-footer {
  border-top: 1px solid hsl(var(--white) / 0.2);
}

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

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

.pagination .page-item.disabled .page-link {
  opacity: 0.5;
}

.pagination .page-item .page-link {
  border: 1px solid hsl(var(--white) / 0.25);
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  color: hsl(var(--body-color));
}

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

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

nav:has(.pagination) {
  margin-top: 32px;
}

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

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

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

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

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

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

.customer__name {
  white-space: nowrap;
  margin-bottom: 0;
  color: hsl(var(--white) / 0.7);
}

@media screen and (max-width: 991px) {
  .customer__name {
    text-align: right;
  }
}

.action-buttons {
  gap: 10px;
  justify-content: flex-end;
}

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

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

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

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

.table thead tr th {
  text-align: center;
  padding: 15px 20px;
  color: hsl(var(--white) / 0.8);
  font-weight: 600;
  border-bottom: 0;
  max-width: 170px;
  border-bottom: 1px solid hsl(var(--white) / 0.12);
}

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

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

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

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

.table tbody {
  border: 0 !important;
}

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

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

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

.table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 20px 15px;
  border-width: 1px;
  border: 0;
  color: hsl(var(--white) / 0.8);
  font-weight: 500;
  max-width: 170px;
  border-bottom: 1px solid hsl(var(--white) / 0.12);
  border-right: none !important;
}

.table tbody tr td::before {
  content: attr(data-label);
  color: hsl(var(--white) / 0.8);
  font-weight: 500;
  display: none;
  width: 45% !important;
  text-align: left;
}

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

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

.table--responsive:has(.table--empty) {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 768px) {
  .table--responsive:has(.table--responsive--sm) {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 992px) {
  .table--responsive:has(.table--responsive--md) {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 1200px) {
  .table--responsive:has(.table--responsive--lg) {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

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

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

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

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

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

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

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

@media screen and (min-width: 1400px) {
  .table--responsive:has(.table--responsive--xl) {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

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

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

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

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

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

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

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

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

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
  border-radius: 6px;
  margin-bottom: 55px !important;
  gap: 16px;
  justify-content: center;
}

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

.custom--tab .nav-item .nav-link {
  color: hsl(var(--white));
  padding: 16px 30px !important;
  background-color: hsl(var(--white) / 0.05) !important;
  border-radius: 8px;
  transition: 0.4s;
  border: 1px solid hsl(var(--white) / 0.06) !important;
}

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

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

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

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

.custom--tab.tab-two {
  gap: 35px;
  margin-bottom: 80px !important;
  justify-content: flex-start;
}

@media screen and (max-width: 575px) {
  .custom--tab.tab-two {
    gap: 20px;
  }
}

.custom--tab.tab-two .nav-item {
  padding: 0px;
}

.custom--tab.tab-two .nav-item .nav-link {
  color: hsl(var(--white) / 0.6);
  padding: 0 !important;
  background-color: transparent !important;
  border-radius: 0px;
  transition: 0.4s;
  border: 0 !important;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
}

@media screen and (max-width: 575px) {
  .custom--tab.tab-two .nav-item .nav-link {
    padding: 0 10px;
  }
}

@media screen and (max-width: 424px) {
  .custom--tab.tab-two .nav-item .nav-link {
    font-size: 14px;
  }
}

.custom--tab.tab-two .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--base-gradient);
}

.custom--tab.tab-two .nav-item .nav-link.active {
  background: var(--base-gradient);
  -webkit-background-clip: text !important;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  -moz-text-fill-color: transparent;
}

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

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

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

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

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 500;
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

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

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
  margin-bottom: 0;
  font-weight: 400;
  padding: 17px 24px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

.alert__desc {
  color: hsl(var(--white) / 0.6);
  display: block;
  line-height: 1.375;
}

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

.alert__link {
  position: relative;
}

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

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

.alert--gradient {
  border: none;
  background: var(--base-gradient);
}

.alert--gradient::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #04223c;
  z-index: -1;
  border-radius: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ====================================== Alert Css End =============================== */
.toggle,
.toggler {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}

.toggle-btn {
  text-align: center;
}

.toggler {
  color: hsl(var(--white));
  transition: 0.2s;
  font-weight: 700;
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.3125rem);
}

.toggler--is-active {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.b {
  display: block;
}

.toggle {
  position: relative;
  width: 80px;
  height: 35px;
  border-radius: 100px;
  background-color: hsl(var(--white));
  overflow: hidden;
}

.check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}

.check:checked~.switch {
  right: 2px;
  left: 57.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}

.switch {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 57.5%;
  background-color: #089ef5;
  border-radius: 36px;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
}

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

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

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

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

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

  50% {
    opacity: 1;
  }

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

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

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

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

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

.header {
  position: relative;
  z-index: 5;
  background-color: hsl(var(--body-bg));
  backdrop-filter: blur(100px);
}

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

@media screen and (max-width: 991px) {
  .header {
    top: 0px;
    background-color: hsl(var(--body-bg));
    padding: 10px 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 101vh;
    overflow-y: auto;
  }

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

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

.header.fixed-header {
  background-color: hsl(var(--body-bg));
  position: sticky;
  transition: 0.3s linear;
  top: 0px;
  animation: slide-down 0.8s;
  width: 100%;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

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

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

.navbar {
  padding: 0 !important;
}

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

  .header .nav-menu .nav-item {
    position: relative;
    padding-right: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header .nav-menu .nav-item {
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .header .nav-menu .nav-item:last-child {
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .header .nav-menu .nav-item.active .nav-link {
    color: hsl(var(--base-two)) !important;
  }

  .header .nav-menu .nav-item.active .nav-link::before {
    width: 100%;
    transform: translateX(0);
  }
}

@media (min-width: 992px) {
  .header .nav-menu .nav-item:hover .nav-link {
    color: hsl(var(--base-two)) !important;
  }

  .header .nav-menu .nav-item:hover .nav-link::before {
    width: 100%;
    transform: translateX(0);
  }

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

@media (min-width: 992px) {
  .header .nav-menu .nav-item .nav-link {
    font-weight: 400;
    font-size: 1rem;
    color: hsl(var(--white)) !important;
    padding: 28px 0;
    position: relative;
    cursor: pointer;
    /* ======================== Style two ================ */
  }

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

  .header .nav-menu .nav-item .nav-link::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
    transition: 0.3s;
  }

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

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

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

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

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

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

/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 991px) {
  .header .nav-menu {
    margin-top: 20px;
  }

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

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

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

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

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

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

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

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

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

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

  .header .dropdown-menu li:nth-last-child(1) {
    border-bottom: none;
  }

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

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

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

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

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

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

.language-box .select {
  color: hsl(var(--white) / 0.6) !important;
}

.language-box .select:focus {
  color: hsl(var(--white)) !important;
}

/* ================================= Header Css End =========================== */
.custom--dropdown {
  margin-right: 30px;
}

/* Custom Dropdown Css Start */
@media screen and (max-width: 991px) {
  .custom--dropdown {
    margin-right: 0px;
  }
}

.custom--dropdown.open>.custom--dropdown__selected::before {
  transform: rotate(180deg);
}

.custom--dropdown>.custom--dropdown__selected {
  background-color: transparent;
  position: relative;
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
  padding-right: 30px;
}

.custom--dropdown>.custom--dropdown__selected::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f107";
  display: inline-block;
  position: absolute;
  margin-left: auto;
  width: unset !important;
  right: 10px;
  color: hsl(var(--white));
  font-size: 12px;
}

@media screen and (max-width: 1399px) {
  .custom--dropdown>.custom--dropdown__selected::before {
    right: 2px;
  }
}

@media screen and (max-width: 1399px) {
  .custom--dropdown>.custom--dropdown__selected {
    padding-right: 15px;
  }
}

.custom--dropdown>.dropdown-list {
  position: absolute;
  background-color: hsl(var(--black));
  width: 100%;
  border-radius: 3px;
  -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  opacity: 0;
  overflow: hidden;
  transition: 0.25s ease-in-out;
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  top: 100%;
  margin-top: 5px;
  z-index: -1;
  visibility: hidden;
  max-height: 230px;
  width: 120px;
  overflow-y: auto !important;
}

@media screen and (max-width: 991px) {
  .custom--dropdown>.dropdown-list {
    left: auto;
    right: 0;
  }
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar-thumb {
  background-color: hsl(var(--black) / 0.15);
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar-thumb {
  background-color: hsl(var(--black) / 0.3);
}

.custom--dropdown.open>.dropdown-list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  z-index: 999 !important;
  background-color: hsl(var(--base)) !important;
  box-shadow: var(--box-shadow);
}

.dropdown-list>.dropdown-list__item {
  padding: 10px 8px !important;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
}

.dropdown-list>.dropdown-list__item:hover {
  background-color: hsl(var(--base-two)) !important;
}

.dropdown-list>.dropdown-list__item,
.custom--dropdown>.custom--dropdown__selected {
  display: flex;
  align-items: center;
}

.dropdown-list>.dropdown-list__item .thumb img,
.custom--dropdown>.custom--dropdown__selected .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.dropdown-list>.dropdown-list__item .thumb img,
.custom--dropdown>.custom--dropdown__selected .thumb img {
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  overflow: hidden;
  margin-right: 5px;
  border-radius: 50%;
}

.dropdown-list>.dropdown-list__item .text,
.custom--dropdown>.custom--dropdown__selected .text {
  width: calc(100% - 24px);
  padding-left: 4px;
  color: hsl(var(--white)) !important;
  white-space: nowrap;
}

.dropdown-list__item .thumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============= Footer Start Here ======================= */
.footer-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: auto;
}

.footer-area.is-cta {
  margin-top: -200px;
}

@media screen and (max-width: 991px) {
  .footer-area.is-cta {
    margin-top: -140px;
  }
}

.footer-area.is-cta .footer-area__wrapper {
  padding-top: 210px;
}

@media screen and (max-width: 1199px) {
  .footer-area.is-cta .footer-area__wrapper {
    padding-top: 190px;
  }
}

@media screen and (max-width: 991px) {
  .footer-area.is-cta .footer-area__wrapper {
    padding-top: 160px;
  }
}

@media screen and (max-width: 575px) {
  .footer-area.is-cta .footer-area__wrapper {
    padding-top: 140px;
  }
}

.footer-area .shape-one {
  position: absolute;
  top: -270px;
  left: 538px;
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(400px);
  width: 1311.523px;
  height: 1311.523px;
  transform: rotate(150.883deg);
  flex-shrink: 0;
  z-index: -1;
}

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

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

.footer-item__title {
  color: hsl(var(--white));
  margin-bottom: 25px;
  font-size: 16px !important;
  font-family: var(--body-font);
}

.footer-item__desc {
  max-width: 300px;
}

.footer-item__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--white) / 0.3);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.footer-item .social-list {
  padding-left: 20px;
}

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

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

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

.footer-menu__link {
  color: hsl(var(--white) / 0.8);
  font-weight: 300;
}

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

/* Footer Contact */
.footer-contact__title {
  margin-bottom: 7px;
  font-size: 16px;
  font-family: var(--body-font);
}

.footer-contact__desc {
  color: hsl(var(--body-color-three));
  font-size: 0.75rem;
  margin-bottom: 30px;
}

.footer-contact__item {
  padding-bottom: 12px;
}

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

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

.footer-contact__item-content {
  width: calc(100% - 15px);
  padding-left: 15px;
  color: hsl(var(--white) / 0.7);
}

.footer-contact .form-control.form--control {
  background-color: hsl(var(--white) / 0.1) !important;
  padding: 19px;
  color: hsl(var(--white));
  padding-right: 120px;
  border-radius: 10px;
}

.footer-contact .form-control.form--control::placeholder {
  color: hsl(var(--white) / 0.7);
}

.subscribe-btn {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  border-radius: 10px;
}

/* ============= Footer End Here ======================= */
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
  background-color: hsl(var(--body-bg));
}

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

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

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

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

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

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

.social-list__link {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
  font-size: 20px;
  color: hsl(var(--white));
}

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

/* ================================= Social Icon Css End ===========================  */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  padding: 20px 55px;
  padding-bottom: 0;
}

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

.breadcrumb__wrapper {
  text-align: center;
}

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

.breadcrumb__item {
  color: hsl(var(--white) / 0.6);
  padding: 0 5px;
  font-weight: 400;
}

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

.breadcrumb__link {
  color: hsl(var(--white) / 0.6);
  font-weight: 500;
}

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

/* ====================== Breadcrumb Css End ==================== */
/* ================================= Start Rating Css Start =========================== */
.rating-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.rating-list__item {
  color: hsl(var(--white));
  width: 35px;
  height: 35px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(var(--base-two));
}

.rating-list__item.half {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.rating-list__item.half::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: hsl(var(--white) / 0.7);
}

.rating-list__item.half::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: hsl(var(--base-two));
}

.rating-list__text {
  color: hsl(var(--body-color));
}

/* ================================= Start Rating Css End =========================== */
/* ================================= Dashboard Fulid Sidebar Css Start =========================== */
.dashboard .sidebar-logo {
  text-align: center;
  margin: 40px 0;
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-logo {
    margin-top: 32px;
  }
}

.dashboard .sidebar-logo img {
  max-width: 240px;
  max-height: 60px;
}

.dashboard .sidebar-menu {
  height: 100vh;
  overflow-y: auto;
  z-index: 999;
  background-color: #02172880;
  transition: 0.2s linear;
  width: 320px;
  border-radius: 0;
  position: sticky;
  left: 0;
  top: 0;
  align-items: start;
  flex-direction: row;
  /* Hr Css */
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu {
    position: fixed;
  }
}

@media screen and (max-width: 1199px) {
  .dashboard .sidebar-menu {
    width: 280px;
  }
}

.dashboard .sidebar-menu::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.dashboard .sidebar-menu::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base) / 0.15);
}

.dashboard .sidebar-menu__inner {
  padding: 0 45px;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .dashboard .sidebar-menu__inner {
    padding: 0 25px;
  }
}

.dashboard .sidebar-menu.show-sidebar {
  transform: translateX(0);
}

@media screen and (max-width: 991px) {
  .dashboard .sidebar-menu {
    transform: translateX(-100%);
    z-index: 9992;
    border-radius: 0;
    background-color: hsl(var(--black));
  }
}

.dashboard .sidebar-menu__close {
  position: absolute;
  top: 8px;
  right: 16px;
  color: hsl(var(--body-color));
  font-size: 1.25rem;
  transition: 0.2s linear;
  cursor: pointer;
  z-index: 9;
}

.dashboard .sidebar-menu__close:hover,
.dashboard .sidebar-menu__close:focus {
  color: hsl(var(--base));
}

.dashboard .sidebar-menu hr {
  opacity: 0.15;
}

.dashboard .sidebar-menu-list {
  margin-top: 40px;
}

.dashboard .sidebar-menu-list__item {
  margin-bottom: 6px;
}

.dashboard .sidebar-menu-list__item:last-child .sidebar-menu-list__link {
  border-bottom: 0;
}

.dashboard .sidebar-menu-list__item.active>a {
  position: relative;
  z-index: 1;
  color: hsl(var(--white));
}

.dashboard .sidebar-menu-list__item.active>a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base-gradient);
  z-index: -1;
  border-radius: 8px;
}

.dashboard .sidebar-menu-list__item.active>a::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #04223c;
  z-index: -1;
  border-radius: 8px;
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a {
  color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a:after {
  transform: rotate(90deg);
  right: 18px;
  color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__item.has-dropdown>a:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  text-align: center;
  background: 0 0;
  right: 16px;
  top: 14px;
  transition: 0.1s linear;
  color: hsl(var(--body-color) / 0.6);
}

.dashboard .sidebar-menu-list__link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 13px 15px;
  width: 100%;
  color: #a5a9ad;
  font-weight: 600;
  transition: 0.3s linear;
}

.dashboard .sidebar-menu-list__link.active {
  color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__link .icon {
  margin-right: 8px;
  text-align: center;
  border-radius: 4px;
}

.dashboard .sidebar-menu-list__link:hover::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--base-gradient);
  z-index: -1;
  border-radius: 8px;
}

.dashboard .sidebar-menu-list__link:hover::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #04223c;
  z-index: -1;
  border-radius: 8px;
}

.dashboard .sidebar-submenu {
  display: none;
}

.dashboard .sidebar-submenu.open-submenu {
  display: block;
}

.dashboard .sidebar-submenu-list {
  padding: 5px 0;
}

.dashboard .sidebar-submenu-list__item {
  margin-bottom: 6px;
}

.dashboard .sidebar-submenu-list__item.active>a {
  color: hsl(var(--base));
  background-color: hsl(var(--base) / 0.06);
}

.dashboard .sidebar-submenu-list__link {
  padding: 12px 15px;
  display: block;
  color: hsl(var(--body-color));
  color: #a5a9ad;
  font-weight: 600;
  margin-left: 20px;
  border-radius: 5px;
  position: relative;
  padding-left: 25px;
}

.dashboard .sidebar-submenu-list__link::before {
  left: 10px;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid hsl(var(--black) / 0.4);
  border-radius: 50%;
}

.dashboard .sidebar-submenu-list__link:hover {
  background-color: hsl(var(--base) / 0.04);
}

.dashboard .sidebar-submenu-list__link .icon {
  margin-right: 8px;
  text-align: center;
  border-radius: 4px;
}

/* ============ User Profile Css Start ============ */
/* Sidebar User Info Css */
.user-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid hsl(var(--base-two) / 0.15);
  width: 100%;
  padding: 20px 24px;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 299px;
  align-self: flex-end;
}

.user-profile-info {
  display: flex;
  flex-wrap: wrap;
}

.user-profile-info__icon {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f3f9fe;
  border: 1px solid hsl(var(--black) / 0.1);
}

.user-profile-info__content {
  width: calc(100% - 50px);
  padding-left: 15px;
}

.user-profile-info__name {
  margin-bottom: 0px;
}

.user-profile-info__desc {
  color: hsl(var(--body-color));
  font-size: 15px;
}

/* ========= User Profile Css End ============== */
/* ================================= Dashboard Fulid Sidebar Css End =========================== */
/* ================================= Dashboard Css Start =========================== */
.dashboard {
  position: relative;
  z-index: 1;
}

/* ================================= Dashboard Css End =========================== */

@media screen and (max-width: 991px) {
  .dashboard {
    z-index: unset;
  }
}

.dashboard .shape-one {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: inline-block;
  z-index: -1;
  overflow: hidden;
}

.dashboard .shape-one::before {
  content: '';
  position: relative;
  width: 1556px;
  height: 772px;
  display: inline-block;
  background: var(--shape-one);
  transform: rotate(150deg);
  mix-blend-mode: hard-light;
  filter: blur(100px);
  border-radius: 2768.806px;
}

.dashboard__right {
  width: calc(100% - 320px);
}

@media screen and (max-width: 1199px) {
  .dashboard__right {
    width: calc(100% - 280px);
  }
}

@media screen and (max-width: 991px) {
  .dashboard__right {
    width: 100%;
  }
}

.dashboard .dropdown {
  display: inline-block !important;
}

.dashboard .dashboard-header {
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 1499px) {
  .dashboard .dashboard-header {
    padding: 20px 40px;
  }
}

@media screen and (max-width: 1399px) {
  .dashboard .dashboard-header {
    padding: 20px 32px;
  }
}

@media screen and (max-width: 1199px) {
  .dashboard .dashboard-header {
    padding: 20px 24px;
  }
}

@media screen and (max-width: 991px) {
  .dashboard .dashboard-header {
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .dashboard .dashboard-header {
    padding: 16px;
  }
}

.dashboard .dashboard-header__inner {
  padding: 15px 0;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  .dashboard .dashboard-header__inner {
    display: block;
  }
}

.dashboard .dashboard-header__right {
  gap: 15px;
}

.dashboard .dashboard-header .bd-btn {
  padding: 10px 25px;
  background-color: hsl(var(--base) / 0.1);
  color: hsl(var(--base));
  border-radius: 5px;
  font-weight: 600;
}

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

.dashboard .dashboard-header .bd-btn:active {
  position: relative;
  top: 2px;
}

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

.dashboard .user-info {
  position: relative;
}


.dashboard .user-info__button {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  cursor: pointer;
  gap: 15px;
  border: 1px solid transparent;
  background: var(--base-gradient);
  border-radius: 99px;
}

.dashboard .user-info__button::after {
  content: '';
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--body-bg));
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .dashboard .user-info__button {
    padding: 4px;
  }
}

@media screen and (max-width: 575px) {
  .dashboard .user-info__button {
    gap: 10px;
  }
}

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

.dashboard .user-info .user-info-dropdown {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.25s linear;
  border: 1px solid hsl(var(--white) /0.25);
  background-color: hsl(var(--body-bg));
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  width: 200px;
  position: absolute;
  right: 0;
  z-index: 9;
  top: 100%;
  margin-top: 15px;
  transform: scale(0.95);
  visibility: hidden;
  opacity: 0;
}

.dashboard .user-info .user-info-dropdown.show {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 991px) {
  .dashboard .user-info .user-info-dropdown {
    transform: unset !important;
    top: 43px !important;
  }
}

.dashboard .user-info .user-info-md {
  padding: 10px 16px !important;
  border-bottom: 1px solid hsl(var(--white)/0.25);
}

.dashboard .user-info .user-info-dropdown__item:last-child .user-info-dropdown__link {
  border-bottom: 0 !important;
}

.dashboard .user-info .user-info-dropdown__link {
  padding: 10px 16px !important;
  color: hsl(var(--white) / 0.6) !important;
  margin-left: 0 !important;
  width: 100%;
  font-weight: 500;
  text-align: left;
  border-radius: 5px;
}

.dashboard .user-info .user-info-dropdown__link.active {
  background-color: hsl(var(--base));
}

.dashboard .user-info .user-info-dropdown__link:hover {
  background-color: hsl(var(--base) / 0.08);
  color: hsl(var(--base)) !important;
}

.dashboard .user-info .user-info-dropdown__link .icon {
  margin-right: 8px;
}

.dashboard .user-info__icon {
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: hsl(var(--white));
  overflow: hidden;
  border-radius: 50%;
  background-color: hsl(var(--white)/0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard .user-info__name {
  color: hsl(var(--white));
  font-weight: 400;
  margin-bottom: -4px;
}

.dashboard .user-info__balance {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--white)/0.6);
}

.dashboard .user-info__right {
  gap: 25px;
}

@media screen and (max-width: 575px) {
  .dashboard .user-info__right {
    gap: 10px;
  }
}

.dashboard .user-info__right .notification {
  font-size: 20px;
}

.dashboard .user-info__right .notification i {
  color: hsl(var(--white));
}

.dashboard .user-info__right .notification-link {
  position: relative;
}

.dashboard .user-info__right .notification-link:hover {
  color: hsl(var(--white));
}

.dashboard .dashboard-body {
  position: relative;
  padding: 0 56px 56px;
}

@media screen and (max-width: 1499px) {
  .dashboard .dashboard-body {
    padding: 0px 40px 40px;
  }
}

@media screen and (max-width: 1399px) {
  .dashboard .dashboard-body {
    padding: 0px 32px 32px;
  }
}

@media screen and (max-width: 1199px) {
  .dashboard .dashboard-body {
    padding: 0px 24px 24px;
  }
}

@media screen and (max-width: 767px) {
  .dashboard .dashboard-body {
    padding: 0px 16px 16px;
  }
}

.dashboard .dashboard-body__bar-icon {
  color: hsl(var(--body-color));
  font-size: 1.5625rem;
  margin-bottom: 20px;
  cursor: pointer;
}

.dashboard .dashboard-body__desc {
  margin-top: 50px;
}

.dashboard .dashboard-body__desc .title {
  color: hsl(var(--white));
  font-weight: 500;
}

.dashboard .dashboard-card {
  border-radius: 30px;
  padding: 40px 50px;
  background-color: hsl(var(--section-bg-two) / 0.5);
  margin-bottom: 24px;
  height: max-content;
}

@media screen and (max-width: 1499px) {
  .dashboard .dashboard-card {
    padding: 32px;
  }
}

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

@media screen and (max-width: 424px) {
  .dashboard .dashboard-card {
    padding: 16px;
  }
}

.dashboard .dashboard-card:last-child {
  margin-bottom: 0;
}

.dashboard .dashboard-card__text:not(:last-child) {
  border-bottom: 1px solid hsl(var(--white) / 0.2);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.dashboard .dashboard-card .title {
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  margin-bottom: 0;
  padding-bottom: 20px;
  font-family: var(--body-font);
}

.dashboard .dashboard-card__desc {
  margin-top: 30px;
}

.dashboard .dashboard-card__desc.desc-two {
  max-width: 990px;
}

.dashboard .dashboard-card__table {
  width: 43%;
}

@media screen and (max-width: 1599px) {
  .dashboard .dashboard-card__table {
    width: 50%;
  }
}

@media screen and (max-width: 1399px) {
  .dashboard .dashboard-card__table {
    width: 100%;
  }
}

.dashboard .dashboard-card__chart {
  width: 57%;
}

@media screen and (max-width: 1599px) {
  .dashboard .dashboard-card__chart {
    width: 50%;
  }
}

@media screen and (max-width: 1399px) {
  .dashboard .dashboard-card__chart {
    width: 100%;
  }
}

.dashboard .dashboard-card .custom--tab {
  margin-top: 48px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  padding-bottom: 55px;
  border-radius: 0 !important;
}

.dashboard .dashboard-table {
  margin-top: 25px;
}

@media screen and (max-width: 1499px) {
  .dashboard .dashboard-table.dashboard-card {
    padding: 32px;
  }
}

@media screen and (max-width: 575px) {
  .dashboard .dashboard-table.dashboard-card {
    padding: 24px;
  }
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-table.dashboard-card {
    padding: 16px;
  }
}

.dashboard .dashboard-card-wrapper {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 1399px) {
  .dashboard .dashboard-card-wrapper {
    flex-direction: column;
  }
}

.dashboard .account-card-wrapper {
  display: flex;
  gap: 55px;
}

@media screen and (max-width: 1399px) {
  .dashboard .account-card-wrapper {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .dashboard .account-card-wrapper {
    flex-wrap: wrap;
  }
}


@media screen and (min-width: 768px) {

  .dashboard-card .table--responsive--sm th:first-child,
  .dashboard-card .table--responsive--sm td:first-child {
    padding-left: 0;

  }

  .dashboard-card .table--responsive--sm th:last-child,
  .dashboard-card .table--responsive--sm td:last-child {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .dashboard-card .table--responsive--sm td {
    padding-left: 0;
    padding-right: 0;

  }
}

@media screen and (min-width: 992px) {

  .dashboard-card .table--responsive--md th:first-child,
  .dashboard-card .table--responsive--md td:first-child {
    padding-left: 0;

  }

  .dashboard-card .table--responsive--md th:last-child,
  .dashboard-card .table--responsive--md td:last-child {
    padding-right: 0;
  }
}

@media screen and (max-width: 991px) {
  .dashboard-card .table--responsive--md td {
    padding-left: 0;
    padding-right: 0;

  }
}

@media screen and (min-width: 1200px) {

  .dashboard-card .table--responsive--lg th:first-child,
  .dashboard-card .table--responsive--lg td:first-child {
    padding-left: 0;

  }

  .dashboard-card .table--responsive--lg th:last-child,
  .dashboard-card .table--responsive--lg td:last-child {
    padding-right: 0;
  }
}

@media screen and (max-width: 1199px) {
  .dashboard-card .table--responsive--lg td {
    padding-left: 0;
    padding-right: 0;

  }
}

@media screen and (min-width: 1400px) {

  .dashboard-card .table--responsive--xl th:first-child,
  .dashboard-card .table--responsive--xl td:first-child {
    padding-left: 0;

  }

  .dashboard-card .table--responsive--xl th:last-child,
  .dashboard-card .table--responsive--xl td:last-child {
    padding-right: 0;
  }
}

@media screen and (max-width: 1399px) {
  .dashboard-card .table--responsive--xl td {
    padding-left: 0;
    padding-right: 0;
  }
}

.dashboard .account-card {
  padding: 40px 50px;
  border-radius: 30px;
  background-color: hsl(var(--section-bg-two) / 0.5);
  transition: 0.25s ease-in-out;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard .account-card:hover {
  transform: translateY(-6px);
}

@media screen and (max-width: 1399px) {
  .dashboard .account-card {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .dashboard .account-card {
    width: 100%;
  }
}

.dashboard .account-card__title {
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  margin-bottom: 0;
  padding-bottom: 40px;
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard .account-card__desc {
  max-width: 470px;
  font-size: 21px;
  font-weight: 500;
}

@media screen and (max-width: 1199px) {
  .dashboard .account-card__desc {
    font-size: 17px;
  }
}

.dashboard .account-card__bottom {
  margin-top: 30px;
  display: flex;
  align-items: end;
}

.dashboard .account-card__bottom .btn {
  padding: 20px 50px;
}

.dashboard .account-card .body-title {
  padding-top: 40px;
  font-family: var(--body-font);
}

.dashboard .account-system__list {
  margin-top: 20px;
}

.dashboard .account-system__item {
  font-weight: 500;
  color: hsl(var(--white) / 0.8);
  margin-bottom: 5px;
}

.dashboard .account-system__icon {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-size: 20px;
  padding-right: 10px;
}

.dashboard .dashboard-bottom {
  margin-top: 40px;
}

.dashboard .dashboard-bottom__text {
  color: hsl(var(--white) / 0.8);
}

.dashboard .dashboard-bottom__link {
  color: hsl(var(--white) / 0.8);
}

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

.dashboard .dashboard-bottom__btn {
  margin-top: 40px;
}

.dashboard .dashboard-top {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .dashboard .dashboard-top {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 575px) {
  .dashboard .dashboard-top {
    margin-bottom: 24px;
  }
}

.dashboard .balance-range__list {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
  .dashboard .balance-range__list {
    gap: 8px;
  }
}

.dashboard .balance-range__item {
  padding: 16px 48px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  background: var(--base-gradient);
  cursor: pointer;
}

@media screen and (max-width: 575px) {
  .dashboard .balance-range__item {
    padding: 10px 25px;
  }
}

.dashboard .balance-range__item::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: hsl(var(--section-bg-two));
  border-radius: 12px;
  z-index: -1;
}

.dashboard .balance-range__item.active {
  background: var(--base-gradient);
}

.dashboard .balance-range__item.active.balance-range__item::before {
  display: none;
}

.dashboard .trade-wrapper {
  margin-top: 30px;
}

.dashboard .form-check-wrapper {
  margin-top: 30px;
}

.dashboard .account-system {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 70px;
}

.dashboard .account-system__title {
  margin-bottom: 20px;
  color: hsl(var(--white) / 0.8);
}

.dashboard .billing-info {
  border-top: 1px solid hsl(var(--white) / 0.2);
  padding: 30px 0;
  margin: 30px 0;
  border-bottom: 1px solid hsl(var(--white) / 0.2);
}

.dashboard .billing-info__header {
  margin-bottom: 30px;
}

.dashboard .billing-info__header-title {
  font-weight: 500;
  color: hsl(var(--white));
}

.dashboard .account-condition {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.dashboard .account-condition__list .item {
  background-color: hsl(var(--body-bg));
  border-radius: 12px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 30px;
  border-right: 5px solid hsl(var(--base));
}

.dashboard .account-condition__link {
  color: hsl(var(--white) / 0.8);
  display: block;
  padding: 17px 24px;
}

.dashboard .discount {
  margin-top: 60px;
}

.dashboard .discount__title {
  margin-bottom: 20px;
}

.dashboard .discount__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 991px) {
  .dashboard .discount__wrapper {
    flex-wrap: wrap;
  }
}

.dashboard .discount__wrapper .btn {
  min-width: 130px;
  height: 56px;
}

.dashboard .account__header-thumb {
  position: relative;
  width: 80px;
  margin-bottom: 40px;
}

.dashboard .account__header-thumb img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.dashboard .edit {
  position: absolute;
  width: 18px;
  height: 18px;
  display: flex;
  font-size: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: hsl(var(--white));
  right: -3px;
  top: 10px;
  cursor: pointer;
  color: hsl(var(--black));
}

.dashboard .certificate-process-system {
  background-color: hsl(var(--body-bg) / 0.9);
  border: 1px solid hsl(var(--white) / 0.1);
  border-radius: 12px;
  min-height: 190px;
  padding: 20px;
}

/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider .slick-list {
  margin: 0 -10px;
}

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

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

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

@media screen and (max-width: 991px) {
  .slick-next {
    right: -10px;
  }
}

@media screen and (max-width: 575px) {
  .slick-next {
    right: 10px;
  }
}

.slick-prev {
  left: -20px;
}

@media screen and (max-width: 991px) {
  .slick-prev {
    left: -10px;
  }
}

@media screen and (max-width: 575px) {
  .slick-prev {
    left: 10px;
  }
}

/* -------------- Slick Slider Arrow Style two ------------  */
.slick-arrow {
  position: absolute;
  z-index: 1;
  border: none;
  background-color: transparent;
  color: hsl(var(--white));
  width: 32px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 0.4s;
  background-color: hsl(var(--black));
  color: hsl(var(--white));
  top: -67px;
}

@media screen and (max-width: 1199px) {
  .slick-arrow {
    top: -69px;
  }
}

@media screen and (max-width: 767px) {
  .slick-arrow {
    top: auto;
    bottom: -50px;
    right: 50%;
  }
}

.slick-arrow:hover {
  background-color: hsl(var(--black));
  color: hsl(var(--white));
}

.slick-next {
  right: 10px;
  background-color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
  .slick-next {
    top: auto;
    right: calc(50% - 37px);
  }
}

.slick-prev {
  right: 52px;
}

@media screen and (max-width: 767px) {
  .slick-prev {
    top: auto;
    right: calc(50% + 5px);
  }
}

/* Dots Css Start */
.slick-dots {
  text-align: center;
  padding-top: 20px;
}

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

.slick-dots li button {
  border: 1px solid transparent;
  background-color: hsl(var(--white) / 0.5);
  color: hsl(var(--white));
  margin: 0 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  text-indent: -9999px;
  transition: 0.3s linear;
}

.slick-dots li.slick-active button {
  background: var(--base-gradient);
  width: 11px;
  height: 11px;
  border-color: hsl(var(--white));
  border-radius: 50%;
}

/* Dots Css End */
/* ================= Slick Arrow & Dots css Start ================ */
/* =========================== Banner Section Start Here ========================= */
.banner-section {
  position: relative;
  z-index: 1;
  padding: 180px 0 240px;
  overflow: hidden;
  background-color: hsl(var(--section-bg-two)) !important;
}

@media screen and (max-width: 991px) {
  .banner-section {
    padding: 160px 0 170px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section.bg-img {
    background-position: center right;
    object-fit: contain;
  }
}

.banner-content {
  text-align: center;
}

.banner-content__title {
  color: hsl(var(--white));
  font-weight: 800;
  font-size: clamp(1.75rem, 0.975rem + 3.875vw, 5.625rem);
}

@media screen and (max-width: 374px) {
  .banner-content__title span {
    white-space: nowrap;
  }
}

.banner-content__subtitle {
  font-weight: 800;
  margin-bottom: 0;
}

.banner-content__desc {
  max-width: 65%;
  margin: 0 auto;
  color: hsl(var(--white));
  font-weight: 500;
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.3125rem);
}

@media screen and (max-width: 991px) {
  .banner-content__desc {
    max-width: 79%;
  }
}

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

@media screen and (max-width: 424px) {
  .banner-content__desc {
    font-size: clamp(0.875rem, 0.769rem + 0.4813vw, 1rem);
  }
}

.banner-content__button {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 436px;
  margin-inline: auto;
}

@media screen and (max-width: 991px) {
  .banner-content__button {
    margin-top: 48px;
  }
}

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

@media screen and (max-width: 767px) {
  .banner-content__button {
    flex-wrap: wrap;
  }
}

.banner-content__button .btn {
  flex: 1 1 50%;
}

.title-style {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

/* =========================== Banner Section End Here ========================= */

.banner-bg__shape {
  --size: 1182px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  z-index: -1;
  transform: rotate(158.67deg);
}

.banner-bg__shape::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: inline-block;
  filter: blur(200px);
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(0, 194, 255, 0) 0%, rgba(255, 41, 195, 0.8) 100%);
}

/* body-gradient bg color css */
.shape-one-bg {
  position: absolute;
  top: 32px;
  right: -440px;
  background: var(--gradient-two);
  width: 694px;
  height: 694px;
  filter: blur(113px);
  transform: rotate(186deg);
  z-index: -1;
  opacity: 0.7;
}

.shape-two-bg {
  position: absolute;
  top: 159px;
  left: -190px;
  background: var(--gradient);
  filter: blur(100px);
  z-index: -2;
  width: 740px;
  height: 508px;
  opacity: 0.2;
  transform: rotate(341deg);
}

.shape-three-bg {
  position: absolute;
  top: -148px;
  left: 40px;
  background-color: hsl(var(--base-three));
  filter: blur(200px);
  z-index: -1;
  width: 200px;
  height: 324px;
  transform: rotate(-76deg);
}

.shape-four-bg {
  position: absolute;
  bottom: -172px;
  right: -50px;
  background-color: hsl(var(--base-three));
  filter: blur(300px);
  z-index: -1;
  width: 400px;
  height: 100%;
  opacity: 0.5;
}

@media screen and (max-width: 424px) {
  .banner-shape {
    display: none;
  }
}

.banner-shape__one {
  position: absolute;
  top: 70px;
  left: 250px;
  animation: move 4s linear infinite;
}

@media screen and (max-width: 1399px) {
  .banner-shape__one {
    top: 40px;
    left: 120px;
  }
}

@media screen and (max-width: 991px) {
  .banner-shape__one {
    left: 90px;
    max-width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .banner-shape__one {
    left: 90px;
    max-width: 45px;
    top: 70px;
  }
}

.banner-shape__two {
  position: absolute;
  top: 170px;
  right: 170px;
  animation: move 3s linear infinite;
}

@media screen and (max-width: 1399px) {
  .banner-shape__two {
    top: 140px;
    right: 120px;
  }
}

@media screen and (max-width: 991px) {
  .banner-shape__two {
    top: 100px;
    right: 80px;
    max-width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .banner-shape__two {
    right: 40px;
    max-width: 40px;
  }
}

.banner-shape__three {
  position: absolute;
  bottom: 240px;
  right: 310px;
  animation: move 5s linear infinite;
}

@media screen and (max-width: 1399px) {
  .banner-shape__three {
    bottom: 140px;
    right: 220px;
  }
}

@media screen and (max-width: 991px) {
  .banner-shape__three {
    bottom: 180px;
    right: 120px;
    max-width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .banner-shape__three {
    right: 90px;
    max-width: 40px;
    bottom: 140px;
  }
}

.banner-shape__four {
  position: absolute;
  bottom: 256px;
  left: 340px;
  animation: move 7s linear infinite;
}

@media screen and (max-width: 1399px) {
  .banner-shape__four {
    bottom: 140px;
    left: 120px;
  }
}

@media screen and (max-width: 991px) {
  .banner-shape__four {
    bottom: 180px;
    left: 120px;
    max-width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .banner-shape__four {
    bottom: 140px;
    left: 100px;
    max-width: 40px;
  }
}

@keyframes move {
  0% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(70%);
  }

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

/* ================================ Testimonails Section Css Start ============================= */
.testimonial-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-section .shape-one {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(100px);
  width: 1311.523px;
  height: 1311.523px;
  transform: rotate(150.883deg);
  flex-shrink: 0;
  z-index: -1;
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonails-card {
  padding: 0 10px;
  height: 100%;
}

.testimonial-item {
  position: relative;
  height: 100%;
}

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

.testimonial-item__rating-title {
  margin-bottom: 3px;
  align-items: center;
  display: flex;
  gap: 3px;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 2rem;
}

.testimonial-item__rating-title .icon {
  font-size: 35px;
  color: hsl(var(--base-two));
}

.testimonial-item__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-item__thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 424px) {
  .testimonial-item__thumb {
    width: 45px;
    height: 45px;
  }
}

.testimonial-item__details {
  padding-left: 20px;
}

@media screen and (max-width: 424px) {
  .testimonial-item__details {
    padding-left: 10px;
  }
}

.testimonial-item__name {
  margin-bottom: 0;
  color: hsl(var(--white) / 0.9);
  font-family: var(--body-font);
}

.testimonial-item__designation {
  color: hsl(var(--white));
  font-size: 0.75rem;
}

.testimonial-item__desc {
  margin-top: 32px;
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.3125rem);
  text-align: center;
  font-weight: 400;
}

@media screen and (max-width: 424px) {
  .testimonial-item__desc {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.testimonial-wrapper__review {
  justify-content: center;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial-wrapper__review .review__text {
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--white) / 0.8);
}

.testimonial-wrapper__review .review__title {
  font-size: 15px;
}

.testimonial-wrapper__review .review__title .icon {
  color: hsl(var(--base-two));
  font-size: 20px;
}

/* ================================ Testimonails Section Css End ============================= */
/* =============================== Brand Section Css Start ======================= */
.trading-slider {
  background: hsl(var(--section-bg));
  padding: 16px 0;
}

.trading-slider .slick-slide {
  margin-right: 20px;
}

.trading {
  margin-top: -70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trading__desc {
  text-align: center;
  margin-bottom: 20px;
}

.trading-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: max-content;
}

.trading-wrapper::after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  border-radius: 8px;
  background: hsl(var(--body-color) / 0.5);
}

@media (max-width: 1750px) {
  .trading-wrapper::after {
    display: none;
  }
}

.trading-item__content {
  display: flex;
  align-items: center;
}

.trading-item__icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.trading-item__title {
  margin-right: 22px;
  font-weight: 600;
  padding-right: 11px;
  position: relative;
}

.trading-item__title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--body-color) / 0.7);
  transform: translateY(-50%);
}

.trading-item__number {
  margin-right: 10px;
}

.trading-item__rate {
  color: hsl(var(--base-three));
}

/* =============================== Brand Section Css End ======================= */
/*================ brand section start here ================*/
.brand-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.brand-section .shape-one {
  position: absolute;
  top: 0;
  left: 50%;
  background: linear-gradient(180deg,
      rgba(0, 194, 255, 0) 0%,
      rgba(255, 41, 195, 0.2) 100%);
  mix-blend-mode: hard-light;
  filter: blur(100px);
  width: 600px;
  height: 700px;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 30px 138px;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .brand-logos {
    gap: 30px 100px;
  }
}

@media screen and (max-width: 575px) {
  .brand-logos {
    gap: 30px 70px;
  }
}

@media screen and (max-width: 424px) {
  .brand-logos {
    gap: 30px;
  }
}

.brand-title {
  text-align: center;
  margin-bottom: 25px;
}

/*================ brand section end here ================*/
/*================== how work section start here ==================*/
.how-work-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.how-work-section .shape-one {
  position: absolute;
  border-radius: 1311.523px;
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(150px);
  width: 800px;
  height: 900px;
  transform: translate(-50%, -50%);
  z-index: -1;
  bottom: -657px;
  left: 50%;
}


.how-work-section .section-heading__desc {
  max-width: 85%;
}

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

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

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

.how-work-item {
  --icon-size: 60px;
  display: flex;
  align-items: start;
  gap: 32px;
  position: relative;
}

@media screen and (max-width: 424px) {
  .how-work-item {
    --icon-size: 48px;
    gap: 24px;
  }
}

.how-work-item:not(:last-child) {
  padding-bottom: 70px;
}

@media screen and (max-width: 1199px) {
  .how-work-item:not(:last-child) {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 575px) {
  .how-work-item:not(:last-child) {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 424px) {
  .how-work-item:not(:last-child) {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 374px) {
  .how-work-item:not(:last-child) {
    padding-bottom: 30px;
  }
}

.how-work-item:not(:last-child)::after {
  content: '';
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url('../images/shapes/h-1.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: calc(50% + var(--icon-size));
  left: 10px;
  transform: translateY(calc(-50% + calc((var(--icon-size) / 2) * -1)));
}

.how-work-item__icon {
  width: var(--icon-size);
  height: var(--icon-size);
  font-size: 24px;
  text-align: center;
  border-radius: 8px;
  transition: 0.2s linear;
  color: hsl(var(--white));
  background: var(--base-gradient);
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.how-work-item__title {
  margin-bottom: 10px;
  font-family: var(--body-font);
  font-weight: 500;
}

.how-work-item__desc {
  max-width: 450px;
  color: hsl(var(--white) / 0.8);
}

/*================== how work section end here ==================*/
/*=====================counter section css start her===================== */
.counter-up-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.counter-up-section .section-heading__desc {
  max-width: 450px;
}

.counter-up-section .shape-one {
  position: absolute;
  width: 1311.523px;
  height: 1311.523px;
  transform: rotate(240deg);
  background: var(--shape-one);
  z-index: -1;
  mix-blend-mode: hard-light;
  filter: blur(200px);
  top: 0;
  left: 0;
}

.counterup-item__content {
  text-align: center;
}

.counterup-item__title {
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  gap: 4px;
}

.counterup-item__text {
  font-weight: 500;
  font-size: 1rem;
  color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
  .counterup-item__text {
    font-size: 14px;
  }
}

.counterup-item__icon img {
  width: 48px;
  height: 48px;
}

@media screen and (max-width: 991px) {
  .counterup-item__icon img {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 424px) {
  .counterup-item__icon img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .counterup-item .counterup-wrapper {
    flex-direction: column;
  }
}

.odometer .odometer-inside {
  font-size: clamp(1.5rem, 1.275rem + 1.125vw, 2.625rem);
  line-height: 1;
}

.odometer .odometer-value,
.odometer .odometer-formatting-mark {
  background: var(--base-gradient) !important;
  -webkit-background-clip: text !important;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  -moz-text-fill-color: transparent;
}

/*=====================counter section css end her===================== */
/*============ evaluation css start here ============*/
.evaluation-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.evaluation-section .shape-one {
  position: absolute;
  background: var(--shape-one);
  width: 1624.806px;
  height: 673.913px;
  transform: rotate(138deg);
  z-index: -1;
  mix-blend-mode: hard-light;
  filter: blur(181px);
  border-radius: 2768.806px;
  left: -274px;
  top: 165px;
}

.evaluation-wrapper {
  display: flex;
  /* flex-wrap: wrap; */
  background-color: hsl(var(--white) / 0.1);
  padding: 20px 0px;
  border-radius: 10px;
  gap: 0;
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }
}

.evaluation-wrapper__left {
  flex: 1 0 230px;
}

@media screen and (max-width: 1199px) {
  .evaluation-wrapper__left {
    flex: 1 0 200px;
  }
}

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

.evaluation-wrapper__right {
  flex-grow: 1;
  display: flex;
  transition: .3s ease;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: hsl(var(--white) / 0.1) hsl(var(--black) / 0.1);
}

.evaluation-wrapper__right .evaluation-card {
  background-color: hsl(var(--section-bg));
  border-radius: 8px;
  flex: 1 0 calc(33.3333333333% - 50px);
}

@media screen and (max-width: 1399px) {
  .evaluation-wrapper__right .evaluation-card {
    flex: 1 0 calc(33.3333333333% - 40px);
  }
}

@media screen and (max-width: 1199px) {
  .evaluation-wrapper__right .evaluation-card {
    flex: 1 0 calc(33.3333333333% - 25px);
  }
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper__right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .evaluation-wrapper__right .evaluation-card {
    max-width: calc(50% - 24px);
    flex: 1 1 auto;

  }
}

@media screen and (max-width: 767px) {
  .evaluation-wrapper__right .evaluation-card {
    max-width: 100%;
    flex: 1 1 auto;
  }
}

/* Responsive For Dashboard */
@media screen and (max-width: 1599px) {
  .dashboard .evaluation-wrapper__right .evaluation-card {
    flex: 1 0 33.3333333333%;
  }
}

@media screen and (max-width: 1199px) {
  .dashboard .evaluation-wrapper__right .evaluation-card {
    flex: 1 0 calc(50% - 0px);
  }
}


.evaluation-wrapper__right .evaluation-card:nth-child(odd) .evaluation-item {
  background-color: hsl(var(--body-bg) / 0.25);
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper__right .evaluation-card:nth-child(odd) .evaluation-item {
    background-color: transparent;
  }
}

.evaluation-wrapper__right .evaluation-card:nth-child(odd) .evaluation-card__header {
  background-color: hsl(var(--body-bg) / 0.25);
  border-radius: 12px 12px 0 0;
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper__right .evaluation-card:nth-child(odd) .evaluation-card__header {
    background-color: transparent;
    border-radius: 0;
  }
}

.evaluation-wrapper__right .evaluation-card:nth-child(odd) .evaluation-card__footer {
  background-color: hsl(var(--body-bg) / 0.25);
  border-radius: 0 0 12px 12px;
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper__right .evaluation-card:nth-child(odd) .evaluation-card__footer {
    background-color: transparent;
    border-radius: 0;
  }
}

.evaluation-wrapper__right .evaluation-card:nth-child(even) .evaluation-item {
  background-color: hsl(var(--white) / 0.1);
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper__right .evaluation-card:nth-child(even) .evaluation-item {
    background-color: transparent;
  }
}

.evaluation-wrapper__right .evaluation-card:nth-child(even) .evaluation-card__header {
  background-color: hsl(var(--white) / 0.1);
  border-radius: 12px 12px 0 0;
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper__right .evaluation-card:nth-child(even) .evaluation-card__header {
    background-color: transparent;
    border-radius: 0;
  }
}

.evaluation-wrapper__right .evaluation-card:nth-child(even) .evaluation-card__footer {
  background-color: hsl(var(--white) / 0.1);
  border-radius: 0 0 12px 12px;
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper__right .evaluation-card:nth-child(even) .evaluation-card__footer {
    background-color: transparent;
    border-radius: 0;
  }
}

.evaluation-wrapper__right .evaluation-card__footer {
  padding: 20px 25px;
}

@media screen and (max-width: 1199px) {
  .evaluation-wrapper__right .evaluation-card__footer {
    padding: 15px;
  }
}

.evaluation-wrapper .evaluation-item {
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 500;
}

.evaluation-wrapper .evaluation-item.profit,
.evaluation-wrapper .evaluation-item.target {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .evaluation-wrapper .evaluation-item {
    justify-content: space-between;
    font-size: 14px;
    padding: 15px;
  }
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper .evaluation-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .evaluation-wrapper .evaluation-item.profit,
  .evaluation-wrapper .evaluation-item[class*="target"] {
    height: auto !important;
  }
}

.evaluation-wrapper .evaluation-item__name {
  display: none;
}

.evaluation-wrapper .evaluation-item__text {
  font-size: 14px;
}


@media screen and (max-width: 991px) {
  .evaluation-wrapper .evaluation-item__name {
    display: inline-block;
    white-space: nowrap;
  }

  .evaluation-wrapper .evaluation-item__text {
    text-align: right;
  }
}

.evaluation-item-meta__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.evaluation-item-meta__item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: hsl(var(--white) / 0.8);
  flex-shrink: 0;
  margin-top: 8px;
}

.evaluation-item-meta__item:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (max-width: 1199px) {
  .evaluation-item-meta__item::before {
    display: none;
  }
}

.evaluation-wrapper .evaluation-card {
  display: flex;
  flex-direction: column;
}

.evaluation-wrapper .evaluation-card__header {
  padding: 20px 25px;
}

@media screen and (max-width: 1199px) {
  .evaluation-wrapper .evaluation-card__header {
    padding: 15px;
  }
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper .evaluation-card__header {
    text-align: center;
  }
}

.evaluation-wrapper .evaluation-card__body {
  flex-grow: 1;
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper .evaluation-card__title {
    margin-bottom: 0;
  }
}

.evaluation-wrapper .evaluation-card__title-two {
  display: none;
}

@media screen and (max-width: 991px) {
  .evaluation-wrapper .evaluation-card__title-two {
    display: block;
  }
}

.select-evaluation .toggle-btn .text {
  font-size: 1rem;
  font-weight: 500;
}

.text-color {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.toggle {
  position: relative;
  width: 60px;
  height: 33px;
  border-radius: 100px;
  background-color: hsl(var(--white));
  overflow: hidden;
}

.switch {
  position: absolute;
  left: 2px;
  top: 50%;
  bottom: 2px;
  right: 57.5%;
  background-color: #089ef5;
  border-radius: 36px;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
  width: 23px;
  height: 23px;
  transform: translateY(-50%);
}

/*============ evaluation css start here ============*/
/*================= why choose section start here =================*/
.why-choose-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: hsl(var(--section-bg-two) / 0.5);
}

.why-choose-section .section-heading {
  margin-bottom: 100px;
}

.why-choose-section .shape-one {
  position: absolute;
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(200px);
  width: 800px;
  height: 1075px;
  transform: translate(-50%, -50%);
  z-index: -1;
  left: 50%;
  top: -23px;
}

.why-choose-section .choose-item {
  border: 1px solid hsl(var(--white) / 0.1);
  background: transparent;
  padding: 44px 35px;
  border-radius: 12px;
  height: 100%;
  transition: 0.3s linear;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .why-choose-section .choose-item {
    padding: 30px 20px;
  }
}

.why-choose-section .choose-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(var(--body-bg));
  z-index: -1;
  transition: 0.3s linear;
}

.why-choose-section .choose-item:hover {
  background: var(--base-gradient-reverse);
}

.why-choose-section .choose-item:hover .choose-item__icon {
  background: var(--base-gradient);
}

.why-choose-section .choose-item:hover .choose-item__icon i {
  background: hsl(var(--white));
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: hsl(var(--white));
  -moz-text-fill-color: hsl(var(--white));
}

.why-choose-section .choose-item__icon {
  display: flex;
  width: 93px;
  height: 93px;
  padding: 25px;
  justify-content: center;
  align-items: center;
  background: var(--choose-bg);
  font-size: 40px;
  margin-bottom: 35px;
  border-radius: 12px;
  transition: 0.3s linear;
}

@media screen and (max-width: 767px) {
  .why-choose-section .choose-item__icon {
    width: 70px;
    height: 70px;
    padding: 15px;
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.why-choose-section .choose-item__icon i {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.why-choose-section .choose-item__title {
  font-family: var(--body-font);
  font-weight: 700;
  color: hsl(var(--white) / 0.9);
}

.why-choose-section .choose-item__desc {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--white) / 0.9);
}

.choose-item-wrapper [class*="col-"]:nth-child(3n + 2) .choose-item {
  transform: translateY(-50px);
}

@media screen and (max-width: 991px) {
  .choose-item-wrapper [class*="col-"]:nth-child(3n + 2) .choose-item {
    transform: translate(0);
  }
}

/*================= why choose section start here =================*/
/*=============== highlight section start here ===============*/
.highlight-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.highlight-section .shape-one {
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(100px);
  width: 600px;
  height: 400px;
  transform: rotate(-158.666deg);
  z-index: -2;
  position: absolute;
  bottom: -298px;
  right: 225px;
}

.highlight-section .highlight-item {
  border: 1px solid hsl(var(--border-color));
  border-radius: 12px;
  padding: 35px 55px;
  background-color: hsl(var(--section-bg) / 0.3);
  height: 100%;
  transition: 0.2s linear;
}

.highlight-section .highlight-item:hover {
  border-color: hsl(var(--base));
}

@media screen and (max-width: 1199px) {
  .highlight-section .highlight-item {
    padding: 30px;
  }
}

.highlight-section .highlight-item__title {
  font-family: var(--body-font);
  color: hsl(var(--white) / 0.9);
  max-width: 215px;
  margin-bottom: 24px;
}

.highlight-section .highlight-item__desc {
  font-family: 500;
  color: hsl(var(--white) / 0.9);
}

/*================ highlight section end here ================*/
/*========== payout section css start here ==========*/
.payout-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.payout-section .shape-one {
  position: absolute;
  top: -15px;
  right: 400px;
  background: var(--shape-one);
  transform: rotate(-158.666deg);
  width: 1052px;
  height: 626px;
  z-index: -1;
  mix-blend-mode: hard-light;
  filter: blur(150px);
}

.payout-section .section-heading {
  margin-bottom: 0;
}

.payout-section .section-heading__desc {
  font-size: 1rem;
}

.payout-section .payout-thumb {
  max-width: 475px;
}

@media screen and (max-width: 991px) {
  .payout-section .payout-thumb {
    max-width: 400px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 424px) {
  .payout-section .payout-thumb {
    max-width: 350px;
  }
}

@media screen and (max-width: 374px) {
  .payout-section .payout-thumb {
    max-width: 300px;
  }
}

.payout-section .payout-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*========== payout section css start here ==========*/
/*===================== faq section start here =====================*/
.faq-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq-section .shape-one {
  position: absolute;
  left: -128px;
  top: -149px;
  background: var(--shape-one);
  width: 1311.523px;
  height: 1311.523px;
  transform: rotate(-158.666deg);
  flex-shrink: 0;
  z-index: -1;
  filter: blur(100px);
  border-radius: 1311.523px;
}

/*===================== faq section end here =====================*/
/*======================= cta section start here =======================*/
.cta-section {
  position: relative;
  z-index: 2;
  margin-top: -200px;
  overflow: hidden;
}

.cta-section .shape-one {
  position: absolute;
  top: -200px;
  right: 150px;
  background: var(--shape-one);
  filter: blur(400px);
  width: 1311.523px;
  height: 1311.523px;
  transform: rotate(150.883deg);
  flex-shrink: 0;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .cta-section .shape-one {
    top: 0;
    right: 100px;
  }
}

.cta-section .cta {
  background-color: hsl(var(--section-bg) / 0.8);
  padding: 80px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid hsl(var(--base) / 0.2);
}

@media screen and (max-width: 991px) {
  .cta-section .cta {
    padding: 40px;
  }
}

@media screen and (max-width: 575px) {
  .cta-section .cta {
    padding: 40px 15px;
  }
}

.cta-section .cta__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 45px;
}

/*======================= cta section end here =======================*/
/*==================== about section css start here ====================*/
.banner-two-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: hsl(var(--section-bg-two)) !important;
  padding: 60px 0;
}

@media screen and (max-width: 991px) {
  .banner-two-section {
    padding: 120px 0 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .banner-two-section {
    padding: 100px 0 50px 0;
  }
}

.about-section {
  overflow: hidden;
}

.about-section__content .title {
  margin-bottom: 15px;
}

.about-section__content .text {
  font-family: var(--body-font);
  font-weight: 600;
  margin-bottom: 2rem;
  max-width: 530px;
}

.about-section__content .desc {
  margin-bottom: 2rem;
  color: hsl(var(--white));
  line-height: 160%;
}

.about-section .about-thumb {
  max-width: 620px;
  max-height: 670px;
  position: relative;
  z-index: 1;
}

.about-section .about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  overflow: hidden;
}

.about-section .about-thumb::after {
  --size: 155px;
  position: absolute;
  content: "";
  top: calc(calc(var(--size) * 0.0838709677) * -1);
  /* -13px */
  right: calc(var(--size) * 0.0258064516);
  /* 4px */
  width: var(--size);
  height: var(--size);
  background: var(--base-gradient);
  border-radius: calc(var(--size) * 0.3870967742);
  /* 60px */
  z-index: -1;
}


@media screen and (max-width: 991px) {
  .about-section .about-thumb::after {
    --size: 100px;
  }
}

@media screen and (max-width: 424px) {
  .about-section .about-thumb::after {
    display: none;
  }
}

.about-section .about-thumb::before {
  --size: 335px;
  position: absolute;
  content: "";
  bottom: calc(calc(var(--size) * 0.0656716418) * -1);
  /* -22px */
  left: calc(calc(var(--size) * 0.0597014925) * -1);
  /* -20px */
  width: var(--size);
  height: var(--size);
  border-radius: calc(var(--size) * 0.2388059701);
  /*80px*/
  z-index: -1;
  background: var(--base-gradient);
}

@media screen and (max-width: 991px) {
  .about-section .about-thumb::before {
    --size: 235px;
  }
}

@media screen and (max-width: 424px) {
  .about-section .about-thumb::before {
    display: none;
  }
}

/*==================== about section css end here ====================*/
/*======================== achievement section css start here ========================*/
.achievement-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.achievement-section .shape-one {
  position: absolute;
  top: -607px;
  left: -434px;
  width: 2768.806px;
  height: 1675.913px;
  transform: rotate(150deg);
  flex-shrink: 0;
  border-radius: 2768.806px;
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(100px);
  z-index: -1;
}

.achievement-section .section-heading__title {
  max-width: 500px;
}

.achievement-left__review {
  display: flex;
  align-items: end;
  gap: 30px;
  flex-wrap: wrap;
}

.achievement-left__review .review-title {
  margin-bottom: 0;
  font-family: var(--body-font);
}

.achievement-right .content {
  margin-bottom: 55px;
}

@media (max-width: 1199px) {
  .achievement-right .content {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .achievement-right .content {
    margin-bottom: 30px;
  }
}

.achievement-right .content:last-child {
  margin-bottom: 0;
}

.achievement__rating-title {
  margin-bottom: 3px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 3px;
}

.achievement__rating-title .icon {
  font-size: 35px;
  color: hsl(var(--base-two));
}

/*======================== achievement section css end here ========================*/
/*==================== competitions css start here ====================*/
.dashboard-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.dashboard-wrapper .dashboard-card {
  height: 100%;
  margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
  .dashboard-wrapper .dashboard-card {
    padding: 40px;
  }
}

@media screen and (max-width: 575px) {
  .dashboard-wrapper .dashboard-card {
    padding: 20px;
  }
}

.competition__thumb {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}

.competition__title {
  text-align: center;
  max-width: 270px;
  margin-top: 20px;
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.3125rem);
  font-weight: 600;
}

.competition__content {
  text-align: center;
  margin-top: 25px;
}

.competition__text {
  margin-bottom: 10px;
}

.competition-card__timer-title {
  color: hsl(var(--white) / 0.6);
  text-align: center;
  margin-bottom: 30px;
}

.competition__bottom {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 1rem;
}

@media screen and (max-width: 424px) {
  .competition__bottom {
    grid-gap: 10px;
  }
}

.competition__bottom :last-child {
  grid-column: span 2;
}

.prize-pool__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.prize-pool__text {
  color: hsl(var(--white) / 0.6);
  font-size: 0.75rem;
}

.prize-pool__number {
  font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.3125rem);
  font-weight: 700;
  color: hsl(var(--white) / 0.6);
  margin-top: 8px;
}

.countdown-list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.countdown-list__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: hsl(var(--white) / 0.6);
  font-size: 9px;
}

.countdown-list__item span {
  font-size: 1rem;
}

/*==================== competitions css end here ====================*/
/*================ contact section css start here ================*/
.contact-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-section .shape-one {
  position: absolute;
  top: 0;
  left: -545px;
  width: 2667.806px;
  height: 1027.913px;
  transform: rotate(127deg);
  flex-shrink: 0;
  border-radius: 2768.806px;
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(206px);
  z-index: -1;
}

.contact-section .shape-two {
  position: absolute;
  top: 289px;
  right: -1081px;
  width: 2479.806px;
  height: 1250.913px;
  transform: rotate(127deg);
  flex-shrink: 0;
  border-radius: 2768.806px;
  background: var(--shape-one);
  mix-blend-mode: hard-light;
  filter: blur(176px);
  z-index: -1;
}

.contact-item__title {
  font-family: var(--body-font);
}

@media screen and (max-width: 1199px) {
  .contact-item__title {
    margin-bottom: 10px;
  }
}

.contact-item__icon {
  background: var(--base-gradient);
  font-size: 40px;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
  .contact-item__icon {
    margin-bottom: 10px;
  }
}

.contact-item .contact-item__link {
  color: hsl(var(--white));
  margin-top: 24px;
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .contact-item .contact-item__link {
    margin-top: 10px;
  }
}

.contact-bottom__map iframe {
  min-height: 550px;
  border-radius: 12px;
  width: 100%;
}

.contact-bottom__form {
  padding: 0 15px;
}

.contact-bottom__form-title {
  margin-bottom: 35px;
}

.contact-bottom__form-desc {
  margin-bottom: 45px;
}

/*================ contact section css end here ================*/
/* =========================================== Account Css Start =========================*/
.account {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}

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

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

.account-inner {
  position: relative;
}

.account-form-wrapper {
  background-color: transparent;
  padding: 0px 0px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 550px;
  position: relative;
  left: 10%;
}


@media screen and (max-width: 991px) {
  .account-form-wrapper {
    left: 0%;
  }
}

.account-form {
  background-color: hsl(var(--body-bg));
  padding: 40px;
  border-radius: 30px;
  margin-top: 50px;
}

.other-option {
  position: relative;
  margin-top: 16px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  z-index: 1;
}

.account-form__title {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 1499px) {
  .account-form {
    padding: 20px;
    margin-top: 25px;
  }
}

@media (max-width: 1399px) {
  .account-form__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .account-form__title {
    margin-bottom: 10px;
  }
}

.account-form__text {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .account-form__text {
    margin-bottom: 24px;
  }
}

.account-form__logo img {
  width: 100%;
  max-width: 230px;
  object-fit: cover;
}

.account-form__forgot-password {
  background-color: hsl(var(--section-bg-two) / 0.7);
  padding: 40px;
  border-radius: 30px;
  margin-top: 50px;
}

.account-form__forgot-password-title {
  text-align: center;
  margin-bottom: 35px;
}

.account-form__forgot-password-desc {
  margin-bottom: 35px;
  text-align: center;
}

.login-system {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.login-page {
  margin-top: 20px;
  text-align: center;
}

.login-page__link {
  transition: 0.2s;
}

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

.signup-bottom {
  margin-top: 20px;
}

.signup-bottom__text {
  text-align: center;
  margin: 0 auto;
  color: hsl(var(--white) / 0.6);
  max-width: 380px;
}

.signup-bottom__link {
  color: hsl(var(--white) / 0.6);
  text-decoration: underline;
}

.social-login {
  flex-grow: 1;
}

.social-login .btn {
  width: 100%;
  background-color: hsl(var(--body-bg));
  font-size: 14px;
  border: 1px solid hsl(var(--section-bg) / 0.7);
  color: hsl(var(--white) / 0.6) !important;
  padding: 17px 20px;
}

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

.social-login__icon {
  background: var(--base-gradient);
  margin-right: 6px;
  font-size: 20px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.other-option__text {
  font-size: 14px;
  padding: 0 6px;
  background-color: hsl(var(--body-bg));
}

.other-option::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 45%;
  border: 0.1px solid hsl(var(--white) / 0.1);
  z-index: -1;
}

.other-option::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 45%;
  border: 0.1px solid hsl(var(--white) / 0.1);
  z-index: -1;
}

.forgot-password {
  margin-top: 20px;
  text-align: center;
}

.forgot-password__link {
  font-size: 14px;
  color: hsl(var(--white) / 0.6);
}

/* ============================================ Account Css End ====================================*/
.account-inner {
  position: relative;
  display: flex;
}

.account-inner__left {
  width: 40%;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .account-inner__left {
    width: 45%;
  }
}

.account-inner__right {
  width: 60%;
  min-height: 100vh;
  position: relative;
}

@media screen and (max-width: 1399px) {
  .account-inner__right {
    width: 50%;
  }

  .account-inner__left {
    width: 50%;
  }
}

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

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

.account-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.account-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */

.is-cta-up.is-cta {
  padding-bottom: 300px !important;
}

@media screen and (max-width: 575px) {
  .is-cta-up.is-cta {
    padding-bottom: 270px !important;
  }
}

.account-form .input-group .input-group-text {
  background: hsl(var(--body-bg));
  border: 0;
  color: hsl(var(--white));
  border-radius: 12px;
}

.account-form .input-group .form--control {
  padding-left: 5px;
  flex-grow: 1;
  border: 0;
}

.custom-input-group {
  border-radius: 12px;
}

.custom-input-group .input-group-text {
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  border: none;
}

.custom-input-group:focus-within {
  border-radius: 12px;
}

.customer {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .customer {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 374px) {
  .customer {
    display: block;
    text-align: left;
  }
}

.customer__thumb {
  width: 35px;
  overflow: hidden;
}

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

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

@media screen and (max-width: 991px) {
  .customer__content {
    width: 100%;
  }
}

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

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

.customer__name {
  margin-bottom: 0;
  font-weight: 400;
  color: hsl(var(--white) / 0.7);
}

.progress {
  background-color: hsl(var(--base) / 0.15);
  height: 0.438rem;
}

.progress-bar {
  background-color: hsl(var(--base));
}

.dashboard-header-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  align-items: center;
  justify-content: space-between;
}


.dashboard-header-menu__link-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.dashboard-header-menu__link {
  position: relative;
  font-weight: 500;
  color: hsl(var(--white) / 0.6);
  transition: 0.3s linear;
}

.dashboard-header-menu__link.active,
.dashboard-header-menu__link:hover,
.dashboard-header-menu__link:focus {
  color: hsl(var(--base));
}

.dashboard-header-menu__link.active::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background-color: hsl(var(--base));
}

/*=================== Dashboard Compact Card CSS start here ===================*/
.dashboard-card--compact {
  padding: 24px !important;
}

.dashboard-card--compact .dashboard-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card--compact .dashboard-card__icon.text--base {
  background-color: hsl(var(--base) / 0.15);
}

.dashboard-card--compact .dashboard-card__icon.text--success {
  background-color: hsl(var(--success) / 0.15);
}

.dashboard-card--compact .dashboard-card__icon.text--danger {
  background-color: hsl(var(--danger) / 0.15);
}

.dashboard-card--compact .dashboard-card__content {
  display: flex;
  flex-direction: column-reverse;
}

.dashboard-card--compact .dashboard-card__coin-name {
  color: hsl(var(--white));
  font-size: 14px;
  font-weight: 500;
}

.dashboard-card--compact .dashboard-card__coin-name:hover {
  color: hsl(var(--base));
}

.dashboard-card--compact .dashboard-card__coin-title {
  background: var(--base-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  margin-bottom: 0;
  text-align: right;
}

@media (max-width: 575px) {
  .dashboard-card--compact .dashboard-card__coin-title {
    text-align: right;
  }
}

/*=================== Dashboard Compact Card CSS End here ===================*/
/*=================== transaction css start here ===================*/
.transection {
  padding: 18px;
  background-color: hsl(var(--white) / 0.03);
  border-radius: 6px;
}

@media screen and (max-width: 424px) {
  .transection {
    padding: 10px;
  }
}

.transection__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.transection__item .badge {
  padding-left: 12px;
  padding-right: 12px;
}

.transection__item:last-child {
  margin-bottom: 0;
}

.transection__date {
  position: relative;
  z-index: 1;
}

.transection__date::before {
  position: absolute;
  content: "";
  right: -25px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 32px;
  background: var(--base-gradient);
}

@media screen and (max-width: 575px) {
  .transection__date::before {
    display: none;
  }
}

.transection__date.one::before {
  background-color: hsl(var(--green));
}

.transection__date.two::before {
  background-color: hsl(var(--red));
}

.transection__date-number {
  font-size: clamp(0.875rem, 0.769rem + 0.4813vw, 1rem);
  white-space: nowrap;
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .transection__date-number {
    font-size: 14px;
  }
}

.transection__date-text {
  font-size: 14px;
  white-space: nowrap;
}

.transection__content {
  width: calc(100% - 30px);
  padding-left: 50px;
}

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

.transection__content-title {
  font-size: clamp(0.875rem, 0.769rem + 0.4813vw, 1rem);
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .transection__content-title {
    font-size: 14px;
  }
}

.transection__content-desc {
  font-size: 14px;
  font-weight: 400;
}

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

/*=================== transaction css end here ===================*/

.wallet-ballance {
  background-color: hsl(var(--white) / 0.05) !important;
  border-radius: 12px !important;
}

.list-group {
  --bs-list-group-border-color: hsl(var(--white) / 0.125);
  --bs-list-group-color: hsl(var(--white));
  --bs-list-group-bg: hsl(var(--body-bg));
}

.tradingview-widget-copyright {
  display: none;
}

.myswiper-two .nav-link {
  font-size: 12px !important;
}

.swiper {
  overflow: unset;
  overflow-x: clip !important;
  position: relative;
}

.swiper-two {
  position: relative;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.swiper-button-next {
  position: absolute !important;
  top: -25px;
  right: 0;
  height: 30px;
  width: 30px;
  background-image: none !important;
}

@media screen and (max-width: 424px) {
  .swiper-button-next {
    top: -43px;
  }
}

.swiper-button-next::after {
  font-size: 20px;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  content: "\f054" !important;
  font-weight: 900;
  color: hsl(var(--black)/0.8);
  margin-left: 10px;
}

@media screen and (max-width: 575px) {
  .swiper-button-next::after {
    font-size: 15px;
  }
}

.swiper-button-next-two {
  position: absolute !important;
  top: 0px;
  right: 0;
  height: 20px;
  width: 20px;
  z-index: 999;
  background-image: none !important;
  background-color: hsl(var(--base-d-700));
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next-two::after {
  font-size: 14px;
  position: absolute;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  content: "\f054" !important;
  font-weight: 900;
  color: hsl(var(--white)/0.8);
  margin-left: 10px;
}

@media screen and (max-width: 575px) {
  .swiper-button-next-two::after {
    font-size: 15px;
  }
}

.swiper-button-disabled {
  display: none !important;
}

.swiper-button-prev {
  position: absolute !important;
  top: -25px;
  right: 80px !important;
  height: 30px;
  width: 30px;
  left: unset !important;
  line-height: 30;
  color: hsl(var(--black)/0.8);
}

.swiper-button-prev-two {
  position: absolute !important;
  top: 0px;
  left: 0px !important;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: unset !important;
  line-height: 30;
  z-index: 999;
  color: hsl(var(--white)/0.8);
  background-color: hsl(var(--base-d-700));
}

.swiper-button-prev-two::after {
  font-size: 14px;
  line-height: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f053" !important;
  font-weight: 700;
  color: hsl(var(--white)/0.8);
  margin-right: 10px;
}

@media screen and (max-width: 575px) {
  .swiper-button-prev-two::after {
    font-size: 13px;
  }
}

@media screen and (max-width: 424px) {
  .swiper-button-prev {
    right: 48px !important;
    top: -43px;
  }
}

.swiper-button-prev::after {
  font-size: 18px;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  content: "\f053" !important;
  font-weight: 700;
  color: hsl(var(--black)/0.8);
  margin-right: 10px;
}

@media screen and (max-width: 575px) {
  .swiper-button-prev::after {
    font-size: 15px;
  }
}

.swiper-pagination-fraction {
  left: unset;
  width: none;
  width: unset;
  position: absolute;
  right: 40px !important;
  top: -44px !important;
  font-size: 15px;
}

@media screen and (max-width: 424px) {
  .swiper-pagination-fraction {
    right: 22px !important;
    top: -60px !important;
    font-size: 13px;
  }
}

.swiper-pagination-current {
  color: hsl(var(--black));
}

.swiper-wrapper {
  flex-wrap: unset;
}

.custom--tab.swiper-wrapper {
  margin: 0 -15px;
}

.custom--tab.tab-two .nav-item .nav-link {
  border: none !important;
}

.customer__name {
  margin-bottom: 0;
  color: hsl(var(--white)/0.7);
}


.pair-thumb {
  display: flex;
  align-items: center;
  padding-right: 8px;
}

@media screen and (max-width: 991px) {
  .pair-thumb {
    margin-inline-start: auto;
  }
}

.coin-img-one,
.coin-img-two {
  background-color: hsl(var(--white));
  border-radius: 50%;
  display: grid;
  height: 30px;
  width: 30px;
  place-items: center;

}

.coin-img-one {
  z-index: 1;
}

.coin-img-two {
  z-index: 0;
  margin-left: -10px;
}

.coin-img-one img,
.coin-img-two img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.table-header-menu {
  display: flex;
  align-items: center;
  gap: 16px 24px;
}

.table-header-menu__link {
  color: hsl(var(--white)/0.6);
}

#confirmationModal .btn--sm[type="submit"] {
  padding-top: 14px;
  padding-bottom: 14px;
}

.dashboard-top .title-style {
  font-size: clamp(1.5rem, 0.769rem + 0.4813vw, 2rem);
  font-weight: 600;
}