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

/*==================== Color Variables End =====================*/
/*======================= Dark variable ======================*/
.dark {
  /*====== Common section dark color Start =====*/
  color: hsl(var(--white));
  background-color: hsl(var(--dark));
  /** ====  Form   ===*/
  /* ==== Dashboard ==== */
  /* ===== Table  ====*/
  /*=========== Common section dark color End ==========*/
  /** ====================== Random section dark color ========================*/
  /**==============================  w.ling dark css  ==============================*/
  /**================ Home Two Dark Style  ================*/
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: hsl(var(--white));
}

.dark .banner-left__content h2 {
  color: hsl(var(--white));
}

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

.dark .header.fixed-header {
  background-color: hsl(var(--dark));
}

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

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

.dark .dropdown-menu li .dropdown-item {
  color: hsl(var(--white));
}

.dark .nav-menu .nav-item:hover .dropdown-menu {
  background: hsl(var(--dark));
}

.dark .dropdown-menu li .dropdown-item {
  color: hsl(var(--white));
}

.dark .navbar-toggler.header-button {
  color: hsl(var(--white));
}

.dark .header-wrapper .menu-wrapper ul.main-menu a {
  padding: 0px 15px;
  font-weight: 700;
  color: hsl(var(--white));
}

.dark .btn--base.outline {
  color: hsl(var(--white));
}

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

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

.dark .toggle-search-box i {
  color: hsl(var(--white));
}

.dark .testimonial-item__name {
  color: hsl(var(--white));
}

.dark .testimonial-item__designation {
  color: hsl(var(--white));
}

.dark .footer-item__title {
  color: hsl(var(--white));
}

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

.dark .footer-contact-menu__item p {
  color: hsl(var(--white));
}

.dark .footer-item__desc {
  color: hsl(var(--white));
}

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

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

.dark .custom--accordion .accordion-button {
  color: hsl(var(--white));
}

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

.dark .custom--accordion .accordion-body {
  color: hsl(var(--white) / 0.6);
}

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

.dark .custom--accordion .accordion-button[aria-expanded="true"]::after,
.dark .custom--accordion .accordion-button[aria-expanded="false"]::after {
  color: hsl(var(--white));
}

.dark .pagination .page-item .page-link {
  color: hsl(var(--white));
}

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

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

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

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

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

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

.dark .form--control[type="file"]::file-selector-button {
  border: 1px solid hsl(var(--black) / 0.08);
  background-color: hsl(var(--white) / 0.6);
  color: hsl(var(--white) / 0.6);
}

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

.dark .form--label {
  color: hsl(var(--white) / 0.9);
}

.dark .input-group-text {
  color: hsl(var(--white));
}

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

.dark .breadcumb {
  background-image: linear-gradient(
    to left,
    hsl(var(--base) / 0.2) -15%,
    hsl(var(--white) / 0.1) 55%
  );
}

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

.dark .breadcumb__title {
  color: hsl(var(--base));
}

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

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

.dark .blog-sidebar__title {
  color: hsl(var(--white)) !important;
}

.dark .contact-info__addres-wrap .single_wrapper .single-info .cont-text h6 a {
  color: hsl(var(--white) / 0.6);
}

.dark .sidebar-menu-list__link {
  color: hsl(var(--white));
}

.dark .sidebar-submenu-list__link {
  color: hsl(var(--white));
}

.dark .dashboard .pricing-plan-item .pricing-plan-item__bottom button {
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--white));
}

.dark .table thead tr th {
  background-color: hsl(var(--base) / 0.05);
  color: hsl(var(--white));
}

.dark .table tbody tr td {
  color: hsl(var(--white));
  border: 1px solid hsl(var(--base) / 0.1);
}

.dark .table tbody tr td a {
  color: hsl(var(--white));
}

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

.dark .modal-content {
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: hsl(var(--dark));
}

.dark .btn-close {
  color: hsl(var(--white)) !important;
  filter: invert(1);
}

.dark .password-show-hide {
  color: hsl(var(--white) / 0.5);
}

.dark .section-heading__title {
  color: hsl(var(--white));
}

.dark .service__content h3 {
  color: hsl(var(--white));
}

.dark .service__content a {
  color: hsl(var(--white));
}

.dark .pricing-plan-item .pricing-plan-item__top .title {
  color: hsl(var(--white));
}

.dark .pricing-plan-item .pricing-plan-item__price .title {
  color: hsl(var(--white));
}

.dark .pricing-plan-item .pricing-plan-item__price .title span {
  color: hsl(var(--white) / 0.5);
}

.dark .pricing-plan-item .pricing-plan-item__bottom a {
  color: hsl(var(--white));
}

.dark .product__price-title span a {
  color: hsl(var(--white));
}

.dark .product__title a {
  color: hsl(var(--white));
}

.dark .product__rating-view a {
  color: hsl(var(--white));
}

.dark .product__rating-view a:hover {
  color: hsl(var(--white)) !important;
}

.dark .client-logos img {
  filter: invert(1);
}

.dark .order-wrapper__top h4 {
  color: hsl(var(--white));
}

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

.dark .form--control::placeholder {
  color: hsl(var(--white)) !important;
}

.dark .latest-blog__title a {
  color: hsl(var(--white));
}

.dark .text-list.style-tag .text-list__link {
  color: hsl(var(--white));
}

.dark .contact-map iframe {
  filter: brightness(0.6);
}

.dark .sidebar-menu-list__item {
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.dark .section-heading__subtitle-big {
  color: transparent;
  -webkit-text-stroke: 5px hsl(var(--white) / 0.06) !important;
}

.dark .section-heading .subtitle {
  color: hsl(var(--base));
}

.dark .why-choose-us__topic .item .why-title-cont .content h4 {
  color: hsl(var(--white));
}

.dark .experience__icon h3 {
  color: hsl(var(--white));
}

.dark .blog-item__title-link {
  color: hsl(var(--white));
}

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

.dark a.btn--simple {
  color: hsl(var(--white) / 0.6);
}

.dark .blog-bottom-wrap .auth-name h5 span {
  color: hsl(var(--white) / 0.6);
}

.dark .footer-area::after {
  background-color: hsl(var(--black) / 0.9);
}

.dark .bottom-footer {
  background-color: hsl(var(--dark) / 0.7);
}

.dark .sidebar-menu-wrapper {
  background-color: hsl(var(--dark));
}

.dark .social-list.blog-details a.social-list__link {
  color: hsl(var(--white) / 0.6) !important;
  background: hsl(var(--dark));
}

.dark .social-list.blog-details {
  padding-right: 0px;
}

.dark .dashboard_profile .sidebar-menu-list__link {
  color: hsl(var(--white));
}

.dark .about-thumb .about-contact::before {
  border: 3px solid hsl(var(--base));
}

.dark .main-banner-img::after {
  border: 7px solid hsl(var(--white));
}

.dark .service {
  background: hsl(var(--white) / 0.05);
}

.dark .form-group span.small-text {
  color: hsl(var(--white) / 0.6);
}

.dark .service-area .service.service-box-right {
  background: hsl(var(--white) / 0.05);
}

.dark .header-service .user p {
  color: hsl(var(--black));
}

.dark .service-area .body-msg .single-msg {
  color: hsl(var(--black) / 0.6);
}

.dark .service-area .submit-icon i {
  color: hsl(var(--black));
}

.dark
  .pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item {
  border-right: 1px solid hsl(var(--white) / 0.1);
}

.dark .pricing-plan-item .pricing-plan-item__list .price-list-item-wrapper {
  border-bottom: 1px solid hsl(var(--white) / 0.08);
}

.dark .pricing-plan-item .pricing-plan-item__top {
  border-right: 1px solid hsl(var(--white) / 0.1);
}

.dark .all-price-wrapper {
  border: 1px solid hsl(var(--white) / 0.1);
}

.dark
  .pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper.bottom
  .price-list-item {
  border-right: 1px solid hsl(var(--white) / 0.1);
}

.dark
  .pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item
  i.fa-minus {
  color: hsl(var(--white) / 0.1);
}

.dark section.testimonials::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: hsl(var(--dark) / 0.7);
  z-index: -1;
  top: 0;
  left: 0;
}

.dark .testimonial-item::before {
  border: 3px solid hsl(var(--base));
}

.dark .custom--accordion .accordion-button[aria-expanded="true"]::after,
.dark .custom--accordion .accordion-button[aria-expanded="false"]::after {
  color: hsl(var(--white)) !important;
}

.dark .blog-item {
  background-color: hsl(var(--white) / 0.07);
}

.dark .features-area {
  position: relative;
}

.dark .features-area::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: hsl(var(--dark) / 0.7);
  z-index: -1;
  top: 0;
  left: 0;
}

.dark .single-features::before {
  border: 3px solid hsl(var(--base));
}

.dark .single-features__icon i {
  color: hsl(var(--white));
}

.dark .contact-info__addres-wrap .single_wrapper::before {
  border: 3px solid hsl(var(--base));
}

.dark .footer-area::before {
  background: linear-gradient(
    to left,
    hsl(var(--dark) / 0.6) -148%,
    hsl(var(--dark) / 0.9) 90%
  );
}

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

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

.dark .btn::before {
  border: 3px solid hsl(var(--base));
}

.dark .footer-item__title::after {
  background-color: hsl(var(--white) / 0.8);
}

.dark .contact-info__addres-wrap .single_wrapper {
  background: linear-gradient(
    to right,
    hsl(var(--base) / 0.2) 0%,
    hsl(var(--white) / 0.1) 100%
  );
}

.dark .single-features {
  background: linear-gradient(
    to right,
    hsl(var(--base) / 0.2) 0%,
    hsl(var(--white) / 0.1) 100%
  );
}

.dark .dashboard-card::before {
  border: 3px solid hsl(var(--base));
}

.dark .dashboard-card {
  background: linear-gradient(
    to right,
    hsl(var(--base) / 0.2) 0%,
    hsl(var(--white) / 0.1) 100%
  );
}

.dark .custom--accordion .accordion-item {
  border: 2px solid hsl(var(--white) / 0.2);
}

.dark .banner-section.banner-two .banner-left__content h2 {
  color: hsl(var(--white));
}

.dark .header-main-area.header-two .header-wrapper {
  background: hsl(var(--dark) / 0.7);
}

.dark .banner-section.banner-two img.banner-bg {
  opacity: 0.2;
}

.dark .banner-section.banner-two .banner-left__content p {
  color: hsl(var(--white) / 0.8);
}

.dark .about-section.home-two::before {
  background: linear-gradient(
    to bottom,
    hsl(var(--black) / 0.6) 0%,
    hsl(var(--dark) / 0.7) 100%
  );
}

.dark .features-area.home-two .single-features {
  background: hsl(var(--dark) / 0.9);
}

.dark .features-area.home-two::before {
  background: hsl(var(--dark) / 0.85);
}

.dark .contact-area.home-two .contact-info__addres-wrap .single_wrapper {
  background: hsl(var(--dark));
  border: 1px solid hsl(var(--white) / 0.1);
}

.dark
  .contact-area.home-two
  .contact-info__addres-wrap
  .single_wrapper
  .single-info
  .cont-text
  a {
  color: hsl(var(--white) / 0.6);
}

.dark
  .contact-area.home-two
  .contact-info__addres-wrap
  .single_wrapper
  .contact-top {
  color: hsl(var(--white) / 0.1);
}

.dark section.testimonials.home-two::before {
  background: hsl(var(--white) / 0.1);
}

.dark .testimonials.home-two .testimonial-item {
  background-color: hsl(var(--dark));
}

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

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

.section-heading .subtitle {
  font-size: 16px;
  color: hsl(var(--base));
  display: inline-block;
  font-weight: 700;
  margin-bottom: 17px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-heading .des {
  width: 37%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1399px) {
  .section-heading .des {
    width: 50%;
  }
}

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

@media screen and (max-width: 767px) {
  .section-heading .des {
    width: 80%;
  }
}

@media screen and (max-width: 575px) {
  .section-heading .des {
    width: 90%;
  }
}

.title-one {
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  color: hsl(var(--black));
  text-transform: capitalize;
}

@media screen and (max-width: 991px) {
  .title-one {
    font-size: 30px;
  }
}

@media screen and (max-width: 575px) {
  .title-one {
    font-size: 26px;
  }
}

.title-two {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  color: hsl(var(--black));
  text-transform: capitalize;
}

.title-three {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  color: hsl(var(--black));
  text-transform: capitalize;
}

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

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

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

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

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

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

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

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

.slick-next {
  right: -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-arrow {
  position: absolute;
  z-index: 1;
  border: none;
  background-color: transparent;
  color: hsl(var(--white));
  width: 60px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 0.4s;
  background-color: hsl(var(--dark));
  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(--dark));
  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);
  }
}

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

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

.slick-dots li button {
  border: none;
  background-color: hsl(var(--base) / 0.5);
  color: hsl(var(--base) / 0.7);
  margin: 0 3px;
  width: 11px;
  height: 11px;
  border-radius: 1px;
  text-indent: -9999px;
  border-radius: 100%;
}

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

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

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

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

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

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

/*============** Custom Animation **============*/
/*==== Animation y-axis ==== */
.animate-y-axis {
  -webkit-animation-name: y-axis;
  animation-name: y-axis;
  -webkit-animation-duration: 11s;
  animation-duration: 11s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes y-axis {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

@keyframes y-axis {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

.animate-y-axis-slider {
  -webkit-animation-name: y-axis-slider;
  animation-name: y-axis-slider;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes y-axis-slider {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

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

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

@keyframes y-axis-slider {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

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

  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
/*==== Animation x-axis ==== */
.animate-x-axis {
  -webkit-animation-name: x-axis;
  animation-name: x-axis;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes x-axis {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes x-axis {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
/*==== Animation Rotate ==== */
.animate-rotate {
  animation-name: rotate;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 24s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 24s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotate;
  -ms-animation-duration: 24s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotate;
  -o-animation-duration: 24s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*==== Animation Play Video Button Pulse New ==== */
.video-main {
  position: relative;
  display: inline-block;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 110px;
  height: 110px;
  background: #0d6efd;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -16px;
  bottom: -25px;
  z-index: 1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/*==== Animation Play Video Button Pulse old ==== */
.round-animated {
  position: relative;
  z-index: 1;
}

.round-animated-2 {
  position: relative;
  z-index: 1;
}

.round-animated::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 75px;
  height: 75px;
  background: #0d6efd;
  border-radius: 50%;
  -webkit-animation: round-border 1500ms ease-out infinite;
  animation: round-border 1500ms ease-out infinite;
  z-index: -1;
}

.round-animated-2::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: rgba(210, 81, 81, 0.5);
  border-radius: 50%;
  -webkit-animation: round-border 1500ms ease-out infinite;
  animation: round-border 1500ms ease-out infinite;
  z-index: -1;
}

@-webkit-keyframes round-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes round-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*==== Animate zoom-in-out  ====*/
.animate-zoom-in-out {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}
/*=============== More Animation in here ============= */
.animate-square-zoom {
  position: relative;
  overflow: hidden;
}

.animate-square-zoom:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 7px;
}

.animate-square-zoom:hover:before {
  -webkit-animation-duration: 0.95s;
  animation-duration: 0.95s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-name: circle;
  animation-name: circle;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 5;
  }
}

.animate-zoominout {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

.animate-zoom-fade {
  animation-name: zoom-fade;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: zoom-fade;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: zoom-fade;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: zoom-fade;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: zoom-fade;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.animate-float-bob {
  animation-name: float-bob;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 7s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 7s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 7s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 7s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
/*====================== Bg Variable ====================*/
.bg--white {
  background-color: hsl(var(--white)) !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--violet {
  background-color: hsl(var(--violet)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-60 {
  padding-top: 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;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select {
  cursor: pointer;
}

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

*:focus {
  outline: none;
}

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

button:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

/*=============== Accordion style start =================*/
.custom--accordion .accordion-item {
  background-color: transparent !important;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: none;
  border: 1px solid hsl(var(--black) / 0.1);
}

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

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

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

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

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

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

.custom--accordion .accordion-button {
  color: var(--black);
  font-size: 18px;
  padding: 15px;
  font-weight: 600;
}

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

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

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

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

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

.custom--accordion .accordion-button[aria-expanded="true"]::after,
.custom--accordion .accordion-button[aria-expanded="false"]::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f068";
  display: inline-block;
  position: relative;
  margin-left: auto;
  width: 0 !important;
  right: 16px;
  font-size: 16px;
  color: hsl(var(--black) / 0.5) !important;
}

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

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

.accordion-thumb__inner {
  text-align: center;
  position: relative;
}

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

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

.accordion-thumb__inner .faq-small {
  position: absolute;
  right: 0;
  top: 44%;
}

@media screen and (max-width: 575px) {
  .accordion-thumb__inner .faq-small {
    display: none;
  }
}

.accordion-thumb__inner .content {
  position: absolute;
  display: flex;
  align-items: center;
  background: hsl(var(--white));
  box-shadow: -5px 6px 24px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 30px;
  bottom: 95px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .accordion-thumb__inner .content {
    flex-direction: column;
    padding: 5px;
    top: 27px;
    bottom: inherit;
    left: 20px;
    position: inherit;
  }
}

.accordion-thumb__inner .content .icon {
  height: 87px;
  width: 87px;
  line-height: 87px;
  text-align: center;
  background: hsl(var(--base) / 0.05);
  border-radius: 100%;
  font-size: 38px;
  color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
  .accordion-thumb__inner .content .icon {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 15px;
  }
}

.accordion-thumb__inner .content .count {
  text-align: start;
  width: calc(100% - 87px);
  margin-left: 15px;
}

@media screen and (max-width: 374px) {
  .accordion-thumb__inner .content .count {
    width: 100%;
    text-align: center;
  }
}

.accordion-thumb__inner .content .count .happy-cus {
  font-size: 18px;
  color: hsl(var(--black));
}

.accordion-thumb__inner .content .count .title-two {
  margin-bottom: 6px;
}

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

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

.btn {
  color: hsl(var(--white));
  font-weight: 500;
  padding: 16px 26px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  text-align: center;
  border: 0px solid transparent;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.5s;
  font-family: var(--heading-font) !important;
  font-size: 16px;
}

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

.btn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0;
  background-color: hsl(var(--black));
  top: 0px;
  left: 2px;
  z-index: -1;
  border-radius: 8px;
  transition: 0.3s all;
}

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

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

.btn:hover,
.btn:focus {
  border-radius: 8px;
}

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

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

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

.btn--sm {
  padding: 13px 24px;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 14px;
  text-wrap: nowrap;
}

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

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

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

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

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

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

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

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

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

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

.btn--base:hover::before {
  height: 98%;
  width: 100%;
  top: -3px;
  left: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*====================== Form Style ====================*/
.search-box .form--control {
  color: hsl(var(--dark));
  padding-right: 40px;
}

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

.form--label {
  margin-bottom: 6px;
  font-size: 16px;
  color: hsl(var(--dark));
  font-weight: 500;
}

.form--control {
  font-weight: 400;
  outline: none;
  width: 100%;
  padding: 20px 40px 20px 18px;
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.06);
  color: hsl(var(--dark));
  line-height: 1.2;
  border-radius: 4px !important;
}

.form--control::placeholder {
  color: hsl(var(--dark) / 0.6);
  font-size: 16px;
}

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

.form--control:disabled,
.form--control[readonly] {
  background-color: hsl(var(--dark) / 0.1);
  opacity: 1;
  border: 0;
}

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

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

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

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

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

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

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

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

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

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

.input--group {
  position: relative;
}

.input--icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--dark) / 0.5);
}

.input--group.textarea .input--icon {
  top: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form--check .form-check-label {
  width: calc(100% - 16px);
  padding-left: 8px;
}

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

@media screen and (max-width: 424px) {
  .form--check a {
    font-size: 15px;
  }
}
/*==========  Custom Radion Design ============*/
.form--radio .form-check-input {
  box-shadow: none;
  border: 2px solid hsl(var(--base));
  position: relative;
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-group.form-group.right .form--control {
  padding-right: 40px;
  border: 1px solid hsl(var(--black) / 0.06);
  color: hsl(var(--dark));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom--modal .modal-header.close {
  width: 35px;
  height: 35px;
  background-color: hsl(var(--danger));
  font-size: 25px;
  line-height: 1;
  border-radius: 4px;
  transition: 0.2s linear;
}

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

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

.custom--modal .modal-content {
  text-align: center;
  background-color: hsl(var(--base-two));
  border-radius: 10px !important;
}

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

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

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

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

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

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

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

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

/*====================== Table Style ====================*/
.table {
  margin: 0;
  font-size: 15px;
  border-collapse: separate;
  border-spacing: 0px 0px;
}

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

.table thead tr th {
  text-align: center;
  font-size: 15px;
  padding: 15px 20px;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-weight: 500;
  border: 1px solid hsl(var(--black) / 0.03);
  border-top: 0;
  max-width: 170px;
  border-left: 0;
  text-wrap: nowrap;
  border-right: 0;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

.table tbody tr td i {
  color: hsl(var(--white));
}

.table tbody tr td img {
  width: 80px;
  object-fit: cover;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 991px) {
  .table-wrapper .table--responsive--lg tbody tr td {
    display: block;
  }
}
/*================== Tab Content =============*/
.custom--tab {
  justify-content: start;
  border-radius: 0px;
  margin-bottom: 35px;
  border-bottom: 1px solid hsl(var(--black) / 0.07);
  padding-bottom: 15px;
}

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

.custom--tab .nav-item .nav-link {
  color: hsl(var(--black) / 0.7);
  padding: 13px 18px;
  background-color: hsl(var(--base) / 0.06) !important;
  border-radius: 8px;
  transition: 0.4s;
  border: 0px solid hsl(var(--black) / 0.08) !important;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

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

.custom--tab .nav-item .nav-link.active {
  color: hsl(var(--base));
  border: 0px solid transparent !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.navbar-brand.logo img {
  height: 100%;
  max-width: 100%;
  max-height: 50px;
}

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

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

.header {
  position: relative;
  z-index: 5;
}

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

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

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

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

.toggle-search-box i {
  color: hsl(var(--dark));
  font-weight: 900;
}

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

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

.navbar {
  padding: 0 !important;
}

/*============== Lg Device Start ==============*/
.nav-menu .nav-item {
  position: relative;
  padding: 0 15px !important;
}

@media screen and (max-width: 1199px) {
  .nav-menu .nav-item {
    padding: 0 6px !important;
  }
}

@media screen and (max-width: 1199px) {
  .nav-menu .nav-item .nav-link {
    font-size: 15px !important;
  }
}
/*========================= Desktop Device Start =========================*/
@media (min-width: 992px) {
  .nav-menu {
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 -15px;
  }

  .nav-menu .nav-item {
    position: relative;
    padding: 0 5px;
  }

  .nav-menu .nav-item .btn.btn--base {
    padding: 8px 20px;
    margin-top: 23px;
    margin-right: 10px;
  }

  .nav-menu .nav-item:hover .nav-link {
    color: hsl(var(--base)) !important;
  }

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

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

  .nav-menu .nav-item .nav-link {
    font-weight: 500;
    font-size: 17px;
    color: hsl(var(--dark)) !important;
    padding: 33px 0;
    position: relative;
    cursor: pointer;
    text-transform: capitalize;
    /* ======================== Style two ================*/
  }

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

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

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

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

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

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

@media (min-width: 992px) {
  .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.2s linear;
    overflow: hidden;
    border-radius: 0;
    min-width: 190px;
  }

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

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

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

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

@media (min-width: 992px) {
  .nav-menu .nav-item .btn.btn--base {
    margin-top: 23px;
  }

  .nav-menu .nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    top: 100% !important;
    transform: scaleY(1);
  }
}
/*============================== Small Device =======================*/
@media screen and (max-width: 991px) {
  .body-overlay.show {
    visibility: visible;
    opacity: 1;
  }

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

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

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

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

  .nav-item:last-child > a {
    border-bottom: 0;
    margin-top: 10px;
  }

  .nav-item .nav-link {
    margin-bottom: 8px;
    padding: 10px 10px 10px 0 !important;
    display: flex;
    align-items: center;
    margin: 0 !important;
    border-bottom: 1px solid hsl(var(--base) / 0.2);
    color: hsl(var(--dark));
    font-weight: 500;
  }

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

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

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

  .nav-item__icon {
    margin-left: 10px;
    display: block;
  }

  .dropdown-menu {
    border-radius: 3px;
    -webkit-box-shadow: none;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
    width: 100%;
    margin: 0px !important;
    padding: 0 !important;
    border: 0;
    background-color: hsl(var(--base) / 0.03);
    overflow: hidden;
  }

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

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

  .dropdown-menu li .dropdown-item:hover,
  .dropdown-menu li .dropdown-item:focus {
    color: hsl(var(--white));
  }
}

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

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

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

.navbar-toggler.header-button i {
  font-size: 25px;
}

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

@media screen and (max-width: 991px) {
  .header {
    top: 0px;
    padding: 7px 0;
    position: inherit;
    left: 0;
    right: 0;
    z-index: 7;
    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-background));
  position: fixed;
  transition: 0.4s linear;
  top: 0px;
  animation: slide-down 0.8s;
  width: 100%;
  box-shadow: rgba(9, 9, 9, 0.05) 0px 1px 0px;
  border-bottom: 1px solid hsl(var(--white) / 0.08);
}

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

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

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

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

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

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

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

.logo-menu-wrapper .menu-wrapper {
  margin-left: 45px;
}

@media screen and (max-width: 1280px) {
  .logo-menu-wrapper .menu-wrapper {
    margin-left: 20px;
  }
}

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

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

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

.header-wrapper .logo-wrapper {
  padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 1380px) {
  .header-wrapper .menu-wrapper .main-menu__menu-link {
    font-size: 17px;
  }
}

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

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

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

.header-wrapper .menu-wrapper .main-menu__menu-link .language-box .select {
  color: hsl(var(--dark));
  background-color: transparent;
  border: 1px solid transparent;
  padding: 3px 0px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0px;
}

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

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

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

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

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

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

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

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

@media screen and (max-width: 1199px) {
  .header-wrapper .header-language-wrap {
    display: none !important;
  }
}

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

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

@media screen and (max-width: 1380px) {
  .header-wrapper .menu-right-wrapper ul li {
    margin-left: 10px;
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .header-wrapper .menu-right-wrapper ul li.love-btn-wrap {
    display: none;
  }
}

.header-wrapper .menu-right-wrapper ul li.love-btn-wrap .love-btn {
  position: relative;
}

.header-wrapper .menu-right-wrapper ul li.love-btn-wrap .love-btn span.count {
  background: hsl(var(--base));
  font-size: 12px;
  color: hsl(var(--white));
  position: absolute;
  top: -6px;
  right: 0;
  border-radius: 50%;
  height: 23px;
  width: 23px;
  line-height: 22px;
  text-align: center;
}

.header-wrapper .menu-right-wrapper ul li.love-btn-wrap .love-btn i {
  font-size: 16px;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.2);
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
}

.header-wrapper .menu-right-wrapper ul li.header-search-icon {
  display: none;
}

@media screen and (max-width: 767px) {
  .header-wrapper .menu-right-wrapper ul li.header-search-icon {
    display: block;
  }
}

.header-wrapper .menu-right-wrapper ul li.header-search-icon .close-btn {
  position: relative;
}

.header-wrapper
  .menu-right-wrapper
  ul
  li.header-search-icon
  .close-btn
  span.count {
  background: hsl(var(--base));
  font-size: 12px;
  color: hsl(var(--white));
  position: absolute;
  top: -6px;
  right: 0;
  border-radius: 50%;
  height: 23px;
  width: 23px;
  line-height: 22px;
  text-align: center;
}

.header-wrapper .menu-right-wrapper ul li.header-search-icon .close-btn i {
  font-size: 16px;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.2);
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .header-wrapper .menu-right-wrapper ul li.login-button-wrap {
    display: none;
  }
}

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

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

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

@media screen and (max-width: 1199px) {
  .header-wrapper .menu-right-wrapper ul li.sidebar-menu-show-hide {
    display: none;
  }
}

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

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

@media screen and (max-width: 424px) {
  .header-wrapper .menu-right-wrapper ul li:last-child {
    display: none;
  }
}

.header-wrapper .menu-right-wrapper ul li .sidebar-menu-show-hide {
  background: hsl(var(--base));
  padding: 11px 15px;
  color: hsl(var(--white));
  border-radius: 6px;
  position: relative;
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .header-wrapper .menu-right-wrapper ul li .sidebar-menu-show-hide {
    padding: 7px 11px;
    font-size: 22px;
  }
}

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

.menu-right-wrapper ul li a {
  font-family: var(--heading-font) !important;
}

.menu-right-wrapper ul li .login-btn {
  font-size: 18px;
  font-weight: 600;
  color: hsl(var(--black));
}

@media screen and (max-width: 575px) {
  .menu-right-wrapper ul li .login-btn {
    display: none;
  }
}

.menu-right-wrapper ul li .login-btn i {
  color: hsl(var(--base));
  margin-right: 8px;
  font-size: 22px;
}

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

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

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

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

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

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

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

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

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

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

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

.header-wrapper .menu-right-wrapper ul li .btn {
  padding: 11px 20px;
  border-radius: 4px;
}

@media screen and (max-width: 991px) {
  .header-wrapper .menu-right-wrapper ul li .btn {
    display: none !important;
  }
}

.header-wrapper .menu-right-wrapper ul li.mobile-search {
  display: none;
}

@media screen and (max-width: 767px) {
  .header-wrapper .menu-right-wrapper ul li.mobile-search {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .menu-search-wrapper {
    display: none;
  }
}

.menu-search {
  position: relative;
}

.menu-search .form-group {
  width: 250px;
}

.menu-search .form-group .form--control {
  position: relative;
  margin-right: 25px;
  padding: 15px 20px;
  padding-right: 50px;
}

.menu-search .search_btn i {
  color: hsl(var(--black) / 0.7);
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.responsive-area {
  position: fixed;
  background: hsl(var(--dark));
  z-index: 99;
  width: 100%;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  padding: 20px;
  padding-bottom: 35px;
  text-align: start;
  box-shadow: 5px 15px 30px 0 rgba(5, 13, 54, 0.05);
  transition: all 0.3s ease-in-out;
  transition: all 0.5s ease-out;
  overflow: hidden;
}

.responsive-area.show {
  top: 0;
  height: 100%;
}

.responsive-area .title-three {
  color: hsl(var(--white));
}

.responsive-area .close-search {
  background: hsl(var(--base));
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  margin-left: auto;
  margin-bottom: 20px;
  color: hsl(var(--white));
  position: absolute;
  top: 50px;
  right: 50px;
}

@media screen and (max-width: 767px) {
  .responsive-area .menu-search-wrapper {
    display: block;
  }
}

.responsive-area .menu-search .search_btn i {
  top: 33%;
}

.responsive-area .menu-search .form-group {
  width: inherit;
}

.sidebar-menu-list__item .cart-res {
  position: relative;
}

.sidebar-menu-list__item .cart-res i {
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.2);
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
}

.sidebar-menu-list__item .cart-res span.count {
  background: hsl(var(--base));
  font-size: 12px;
  color: hsl(var(--white));
  position: absolute;
  top: -6px;
  right: 0;
  border-radius: 50%;
  height: 23px;
  width: 23px;
  line-height: 22px;
  text-align: center;
}

/*================ Top Header Start Here ================*/
.header-main-area {
  position: inherit;
  top: 50px;
  left: 0;
  right: 0;
  transition: 0.3s linear;
  padding-top: 0;
  background: hsl(var(--white));
  z-index: 2;
}

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

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

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

.top-header-wrapper .contact-list__item-icon {
  color: hsl(var(--white));
}

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

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

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

.top-header-wrapper .contact-list__item-icon {
  color: hsl(var(--white));
}

.top-header-wrapper .contact-list__link {
  color: hsl(var(--white));
}

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

.top-header-wrapper .language-box {
  margin-left: 21px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top-contact .contact-list__item::before {
  display: none;
}

.top-contact .contact-list__item {
  padding: 0;
  margin-left: 15px;
}

/*====================== Breadcumb Css Start ====================*/
.breadcumb {
  position: relative;
  z-index: 1;
  padding: 80px 0 90px;
  background: hsl(var(--base) / 0.08);
}

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

.breadcumb__wrapper {
  text-align: center;
}

.breadcumb__title {
  color: hsl(var(--black));
  font-weight: 700;
  font-size: 30px;
}

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

.breadcumb__item {
  color: hsl(var(--base));
  padding: 0 5px;
  font-weight: 700;
  font-size: 16px;
}

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

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

.breadcumb__link {
  color: hsl(var(--base));
  font-weight: 700;
}

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

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

@media screen and (max-width: 1199px) {
  .footer-item {
    margin-bottom: 15px;
  }
}

.footer-item .latest-blog__title a {
  color: hsl(var(--white));
}

.footer-item .latest-blog {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid hsl(var(--white) / 0.1);
}

.footer-item span.latest-blog__date {
  color: hsl(var(--white) / 0.6);
}

.footer-item__desc {
  color: hsl(var(--white));
}

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

.footer-item__logo a img {
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 64px;
  filter: brightness(1);
}

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

@media screen and (max-width: 575px) {
  .footer-item__title {
    margin-bottom: 7px;
  }
}

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

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

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

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

.footer-item .social-list__item .social-list__link {
  border: 1px solid hsl(var(--base) / 0.2);
  color: hsl(var(--white));
}

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

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

.footer-menu__link {
  position: relative;
  color: hsl(var(--white));
  display: flex;
  align-items: center;
}

.footer-menu__link i {
  font-size: 6px;
  color: hsl(var(--base));
  margin-right: 7px;
}

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

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

.footer-contact-menu__item p {
  color: hsl(var(--white));
}

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

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

.search-box.footer button {
  position: absolute;
  right: 9px;
  top: 9px;
  border: 1px solid transparent;
}

.search-box.footer input.form--control {
  padding-right: 135px;
  border-radius: 10px;
  border: 0;
  padding: 16px;
  color: hsl(var(--dark));
}

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

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

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

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

html {
  height: 100%;
}

.loader {
  width: 60px;
  height: 40px;
  position: relative;
  display: inline-block;
  --base-color: #263238;
  /*use your base color*/
}

.loader::before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: hsl(var(--white));
  background-image: radial-gradient(
      circle 8px at 18px 18px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 18px 0px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 0px 18px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 36px 18px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 18px 36px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 30px 5px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 30px 5px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 30px 30px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 5px 30px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 4px at 5px 5px,
      var(--base-color) 100%,
      transparent 0
    );
  background-repeat: no-repeat;
  box-sizing: border-box;
  animation: rotationBack 3s linear infinite;
}

.loader::after {
  content: "";
  left: 35px;
  top: 15px;
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: hsl(var(--white));
  background-image: radial-gradient(
      circle 5px at 12px 12px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 12px 0px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 0px 12px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 24px 12px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 12px 24px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 20px 3px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 20px 3px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 20px 20px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 3px 20px,
      var(--base-color) 100%,
      transparent 0
    ),
    radial-gradient(
      circle 2.5px at 3px 3px,
      var(--base-color) 100%,
      transparent 0
    );
  background-repeat: no-repeat;
  box-sizing: border-box;
  animation: rotationBack 4s linear infinite reverse;
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }

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

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

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

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

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

  50% {
    transform: translateY(20px);
  }
}
/*=================== Overlay Search Box Start =======================*/
.overlay-search-box .modal-header {
  border-bottom: 0;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-list.inline .text-list__item {
  padding: 0px 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-sidebar__title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 43px;
  height: 2px;
  background: hsl(var(--black) / 0.05);
  width: 100%;
}

.blog-sidebar__title:after {
  position: absolute;
  content: "";
  left: 0;
  top: 43px;
  height: 2px;
  background: hsl(var(--base));
  width: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*============= Category ==========*/
.category-box ul li {
  margin-bottom: 15px;
}

.category-box ul li a {
  display: flex;
  justify-content: space-between;
  color: hsl(var(--black) / 0.8);
}

/*============= Why book box ==========*/
.why-book-box ul li {
  display: flex;
  margin-bottom: 30px;
  padding-right: 87px;
}

@media screen and (max-width: 424px) {
  .why-book-box ul li {
    padding-right: 0;
  }
}

.why-book-box ul li .icon {
  height: 58px;
  width: 58px;
  line-height: 56px;
  background: hsl(var(--white));
  border-radius: 14px;
  text-align: center;
  color: hsl(var(--base));
  border: 1px solid hsl(var(--black) / 0.1);
  font-size: 27px;
}

.why-book-box ul li .title {
  font-size: 18px;
  font-weight: 600;
  width: calc(100% - 58px);
  margin-left: 23px;
  margin-top: 5px;
}

/*============= Booking summary ==========*/
.booking-summary-wrap {
  padding: 20px;
  background: hsl(var(--white));
  border-radius: 12px;
  border: 1px solid hsl(var(--black) / 0.1);
  margin-bottom: 30px;
}

.booking-item {
  position: relative;
  margin-bottom: 30px;
}

.booking-item .icon {
  position: absolute;
  right: 0;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: hsl(var(--base) / 0.04);
  border-radius: 100%;
  color: hsl(var(--black) / 0.8);
  transition: 0.4s all;
  cursor: pointer;
  font-size: 14px;
}

.booking-item .icon:hover {
  color: red;
}

.booking-item .icon .bottom {
  display: flex;
  justify-content: space-between;
}

.booking-item .icon .bottom span {
  font-size: 18px;
  color: hsl(var(--black) / 0.7);
}

.booking-summary-wrap .border-left-right {
  display: block;
  border: 1px solid hsl(var(--black) / 0.04);
  margin-top: 33px;
  margin-bottom: 25px;
}

.booking-summary-wrap .bottom {
  display: flex;
  justify-content: space-between;
}

.booking-summary-wrap .bottom .total h5 {
  margin-bottom: 16px;
}

.blog-sidebar .form--control {
  background: transparent;
}

/*========== Privacy page Style ==========*/
.info-wrap li {
  font-size: 14px;
  display: flex;
  margin-bottom: 15px;
}

.info-wrap li i {
  margin-right: 15px;
  font-size: 8px;
  color: hsl(var(--black) / 0.5);
  margin-top: 7px;
}

.data-security-item p {
  margin-bottom: 15px;
}

.data-security-item p span {
  color: hsl(var(--black));
  font-weight: 700;
}

.data-cookies-item h6 {
  font-size: 18px;
  font-weight: 700;
}

.privacy-wrapper .title-two {
  margin-bottom: 18px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 575px) {
  .comment-list .comment-list {
    margin-left: 40px;
  }
}
/*==============** Dashboard Profile **==============*/
.dashboard-wrapper {
  overflow: hidden;
  background: #f5f4f7;
  min-height: 100vh;
}

.dashboard-header-wrap {
  border: 1px solid hsl(var(--white) / 0.08);
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: hsl(var(--body-background));
}

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  .header-right .item .input-group {
    display: none;
  }
}

.header-right .item .profile {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 10px 0;
  transition: 0.4s all;
}

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

.header-right .item .profile:hover .profile-menu {
  visibility: visible;
  opacity: 1;
  top: 99%;
}

.header-right .item .profile img {
  height: 38px;
  width: 38px;
  border-radius: 100%;
}

.header-right .item .profile .profile-menu {
  position: absolute;
  width: 155px;
  top: 90%;
  visibility: hidden;
  opacity: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 35, 23, 0.04);
  box-shadow: 5px 6px 12px 0px rgba(0, 0, 0, 0.07);
  padding: 15px;
  right: -23px;
  background: hsl(var(--white));
  text-align: center;
  z-index: 2;
}

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

.header-right .item.home-icon .btn {
  height: inherit;
  width: inherit;
  padding: 0;
  color: hsl(var(--white)) !important;
  background: hsl(var(--base));
  text-align: center;
  padding: 5px 10px;
}

.header-right .item.home-icon .btn i {
  color: hsl(var(--white)) !important;
  background: transparent;
}

.dashboard_profile {
  border: 1px solid hsl(var(--black) / 0.04);
  width: 300px;
  height: 100%;
  position: fixed;
  left: 0;
  top: 20px;
  border-radius: 4px;
  margin-left: 20px;
  background-color: hsl(var(--white));
  transition: 0.3s all;
}

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

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

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

.dashboard_profile .sidebar-menu-list__item {
  border-bottom: 0px solid hsl(var(--black) / 0.1);
  margin-bottom: 15px;
}

.dashboard_profile .sidebar-menu-list__item:hover {
  border-radius: 6px;
}

.dashboard_profile .sidebar-menu-list__item.active > {
  border-radius: 6px;
}

.dashboard_profile .sidebar-menu-list__item.active > a {
  color: hsl(var(--base));
  border-radius: 4px;
}

.dashboard_profile .sidebar-menu-list__item.active > a .icon {
  color: hsl(var(--base));
}

.dashboard_profile .sidebar-menu-list__item .sidebar-menu-list__link .icon {
  font-size: 16px;
  color: hsl(var(--black) / 0.5);
}

.responsive-lang-wrap {
  width: 153px;
  margin-left: 20px;
  margin-top: -25px;
  margin-bottom: 25px;
  display: none;
}

@media screen and (max-width: 767px) {
  .responsive-lang-wrap {
    display: block;
  }
}

.dashboard-wrapper .dashboard-container-wrapper {
  margin: 20px;
  margin-left: 335px;
}

@media screen and (max-width: 1199px) {
  .dashboard-wrapper .dashboard-container-wrapper {
    margin-left: 0;
  }
}

.dashboard_profile_wrap {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  padding: 25px;
  padding-bottom: 0;
  border: 0px solid hsl(var(--white) / 0.08);
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .dashboard_profile_wrap {
    align-items: center;
    justify-content: space-between;
  }
}

.dashboard_profile_wrap .close-hide-show {
  display: none;
  padding: 7px 13px;
  background: hsl(var(--base));
  border-radius: 4px;
  font-size: 18px;
  position: absolute;
  right: 19px;
  top: 17px;
  color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
  .dashboard_profile_wrap .close-hide-show {
    display: block;
  }
}

.dashboard_profile_wrap h3 {
  font-size: 18px;
}

.dashboard_profile_wrap .sidebar-menu-list {
  padding: 20px;
}

.dashboard_profile_wrap .profile_photo {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 3px solid hsl(var(--base));
  margin-bottom: 35px;
}

.dashboard_profile_wrap .profile_photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: hsl(var(--dark));
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
}

.dashboard_profile_wrap .profile_photo img {
  object-fit: cover;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.dashboard_profile_wrap .profile_photo .photo_upload {
  display: inline-block;
  padding: 0px 0px 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: hsl(var(--white));
  transform: translate(-50%, -50%);
}

.dashboard_profile_wrap .profile_photo .photo_upload i {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.dashboard_profile_wrap .profile_photo .photo_upload .upload_file {
  opacity: 0;
  position: absolute;
  z-index: -1;
  visibility: hidden;
  display: none;
}

.dashboard_profile_wrap h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: 1px;
  margin-top: 10px;
}

.dashboard_profile_wrap p {
  margin-bottom: 10px;
}

.dashboard_profile__details .sidebar-menu-list {
  padding: 0 20px 20px;
  max-height: 80vh;
  overflow-x: auto;
}

.dashboard_profile_wrap .profile_photo:hover::before {
  visibility: visible;
  opacity: 0.7;
}

.dashboard_profile_wrap .profile_photo:hover .photo_upload i {
  visibility: visible;
  opacity: 1;
}

.profile-left__contact .action-category-item {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
  display: flex;
  padding: 20px;
}

.profile-left__contact .action-category-item__icon {
  margin-bottom: 0;
  margin-right: 15px;
}

.profile-left__contact .action-category-item__text .site-title {
  font-size: 17px;
  margin-top: 11px;
  color: hsl(var(--white) / 0.8);
}

.profile-right-wrap {
  border: 1px solid hsl(var(--black) / 0.08);
  border-radius: 8px;
  padding: 20px;
}

/*======= Two Factor Verification =======*/
.two-fact-wrapper {
  border: 1px solid hsl(var(--white) / 0.08);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.two-fact-left {
  background-color: hsl(var(--white) / 0.02);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid hsl(var(--black) / 0.06);
  color: hsl(var(--dark));
}

.two-fact-left__thumb {
  margin: 50px auto;
  height: 200px;
  width: 200px;
  border-radius: 100%;
  background: hsl(var(--black) / 0.08);
  position: relative;
}

.two-fact-left__thumb img {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.two-fact-left__content {
  text-align: center;
  margin-bottom: 50px;
}

.two-fact-left__bottom .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.two-fact-left__bottom .form-group.form-group.right .form--control {
  background: hsl(var(--black) / 0.1);
  padding: 17px;
  border-radius: 4px !important;
  overflow: hidden;
  border: 0;
}

.two-fact-left__bottom .form-group.form-group.right .input-group-text {
  right: 14px;
  font-size: 20px;
  top: 15px;
  cursor: pointer;
}

.dashboard-body {
  position: relative;
}

.dashboard-body__bar-icon {
  color: hsl(var(--white));
  font-size: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 40px;
  line-height: 40px;
  background-color: hsl(var(--base));
  text-align: center;
  border-radius: 5px;
}

/*======= Dashboard Card =======*/
.dashboard-card {
  padding: 20px 10px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(
    to right,
    hsl(var(--base) / 0.5) 0%,
    hsl(var(--white) / 0.08) 100%
  );
  border-radius: var(--border-radius-sm);
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  position: relative;
  transition: all 0.4s;
}

.dashboard-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.dashboard-card:hover::before {
  top: 0;
  left: 0;
}

.dashboard-card::before {
  position: absolute;
  content: "";
  height: 101%;
  width: 100%;
  background-color: transparent;
  top: 10px;
  left: -11px;
  z-index: -1;
  border-radius: var(--border-radius-sm);
  transition: 0.5s;
  border: 3px solid hsl(var(--black));
}

@media screen and (max-width: 767px) {
  .dashboard-card {
    padding: 20px 15px;
  }
}

.dashboard-card__link {
  position: absolute;
  right: 20px;
}

.dashboard-card__link a {
  color: hsl(var(--white));
  font-size: 14px;
  background: hsl(var(--base));
  padding: 1px 6px;
  border-radius: 5px;
}

.dashboard-card__link a:hover {
  text-decoration: underline;
}

.dashboard-card__icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.dashboard-card__title {
  margin-bottom: 10px;
  font-size: 14px;
}

.dashboard-card__content {
  text-align: left;
  width: calc(100% - 60px);
  padding-left: 10px;
}

.dashboard-card__amount {
  margin-bottom: 5px;
  margin-bottom: 0;
  font-size: 14px;
}

.selling-group-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--base) / 0.2);
  padding: 6px 0;
}

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

.courier-summary-wrap ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid hsl(var(--white) / 0.4);
}

.courier-summary-wrap ul li:first-child {
  border-bottom: 0;
}

.search-box.w-100 {
  width: 100%;
}

.form-group.form-group.right.attachments .input-group-text {
  background: hsl(var(--white) / 0.08);
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  right: 4px;
  cursor: pointer;
}

.form-group.form-group.right.attachments .input-group-text i {
  margin-left: 8px;
  display: block;
}

/*======= open Ticket =======*/
.attachments-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.attachments-box__item {
  margin-right: 25px;
  margin-bottom: 20px;
  position: relative;
  background: hsl(var(--white) / 0.08);
  padding: 20px;
  height: 60px;
  width: 100px;
  text-align: center;
}

.attachments-box__item:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 374px) {
  .attachments-box__item {
    margin-right: 10px;
    width: 80px;
  }
}

.attachments-box__item .close-icon {
  position: absolute;
  top: -9px;
  right: -8px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid hsl(var(--white) / 0.1);
  border-radius: 100%;
  background: #202028;
  z-index: 1;
  cursor: pointer;
}

.attachments-box__item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dashboard .pricing-plan-item .pricing-plan-item__top .title {
  padding: 0;
  margin-bottom: 12px;
  border: 0;
  color: hsl(var(--base));
}

.dashboard .pricing-plan-item .pricing-plan-item__top span {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  border-bottom: 2px dotted hsl(var(--base) / 0.4);
  padding-bottom: 14px;
}

.dashboard .pricing-plan-item .pricing-plan-item__top h5 {
  margin-bottom: 5px;
  font-size: 20px;
}

.dashboard .pricing-plan-item .pricing-plan-item__list {
  margin-bottom: 10px;
}

.dashboard .pricing-plan-item .pricing-plan-item__bottom button {
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--black));
}

.modal-dialog-centered {
  min-width: 580px;
}

@media screen and (max-width: 991px) {
  .modal-dialog-centered {
    min-width: inherit;
  }
}

.room-card {
  text-align: center;
  padding: 40px 30px;
  background: hsl(var(--white));
  border-radius: 8px;
  position: relative;
}

.room-card a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.room-card__icon {
  height: 65px;
  width: 65px;
  line-height: 65px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  font-size: 25px;
}

.room-card__text span {
  text-transform: uppercase;
  color: hsl(var(--black) / 0.6);
  font-weight: 500;
}

.room-card__text .title {
  font-size: 30px;
  font-weight: 600;
}

.card-primary {
  background-color: hsl(var(--primary) / 0.1);
}

.card-primary i {
  color: hsl(var(--primary));
}

.card-violet {
  background-color: hsl(var(--violet) / 0.1);
}

.card-violet i {
  color: hsl(var(--violet));
}

.card-success {
  background-color: hsl(var(--success) / 0.1);
}

.card-success i {
  color: hsl(var(--success));
}

.card-danger {
  background-color: hsl(var(--danger) / 0.1);
}

.card-danger i {
  color: hsl(var(--danger));
}

.card-warning {
  background-color: hsl(var(--warning) / 0.1);
}

.card-warning i {
  color: hsl(var(--warning));
}

.card-info {
  background-color: hsl(var(--info) / 0.1);
}

.card-info i {
  color: hsl(var(--info));
}

.card-success-1 {
  background-color: hsl(var(--success) / 0.1);
}

.card-success-1 i {
  color: hsl(var(--success));
}

.card-primary-1 {
  background-color: hsl(var(--primary) / 0.1);
}

.card-primary-1 i {
  color: hsl(var(--primary));
}

.card-violet-1 {
  background-color: hsl(var(--violet) / 0.1);
}

.card-violet-1 i {
  color: hsl(var(--violet) / 0.8);
}

/*===== Domain check status   ==== */
.account-status.account-form .form--check {
  justify-content: center;
}

.account-status.account-form .form--check .form-check-label {
  width: inherit;
  display: flex;
  justify-content: center;
}

.account-status.account-form h3.account-form__title.mb-2 {
  font-size: 60px;
  color: hsl(var(--base));
  margin-bottom: 0;
}

.account-status.account-form .choose-domain {
  margin-bottom: 15px;
}

.account-status.account-form .choose-domain h3 {
  margin-bottom: 5px;
}

.account-status.account-form .choose-domain h4 {
  color: hsl(var(--base));
  margin-bottom: 0px;
}

.order-wrapper {
  border: 1px solid hsl(var(--base) / 0.05);
}

.order-wrapper__top h4 {
  background-color: hsl(var(--base) / 0.05);
  font-size: 19px;
  padding: 16px 20px;
  color: hsl(var(--dark));
  font-family: var(--heading-font);
  font-weight: 600;
  border: 1px solid hsl(var(--base) / 0.1);
}

.order-wrapper__body {
  padding: 20px;
}

.order-wrapper__body .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-wrapper__body .item:first-child {
  border-bottom: 1px solid hsl(var(--base) / 0.05);
}

/*======= Apex chart =========*/
.apexcharts-wrap {
  background: hsl(var(--white));
  padding: 30px;
  border-radius: 8px;
}

.apexcharts-wrap .apexcharts-legend-text {
  font-size: 14px !important;
}

/* ======= Dashboard Deposit  ======= */
.deposit-item {
  padding: 20px;
  text-align: center;
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 8px;
}

.deposit-item__thumb {
  border-radius: 8px;
  margin-bottom: 25px;
}

.deposit-item__body .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.dotted-btn {
  border: 1px dotted hsl(var(--white) / 0.08);
  width: 100%;
  border-radius: 4px;
  padding: 15px 10px;
  color: hsl(var(--base));
  font-weight: 500;
}

.border-wrapper {
  border: 1px dotted hsl(var(--white) / 0.08);
  margin: 20px;
  border-radius: 8px;
}

.dashboard-card-wrap {
  background: hsl(var(--white));
  margin-top: 24px;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.drop-file-wrap .dashboard_profile_wrap {
  border: 1px dotted hsl(var(--black) / 0.1);
  padding: 22px;
  height: 300px;
  position: relative;
}

.drop-file-wrap .dashboard_profile_wrap .profile_photo {
  margin-bottom: 0px;
  border: 0;
}

.user-info p {
  margin-bottom: 0;
}

.user-info p span {
  font-weight: 500;
}

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

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

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

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

/*============== Search Form Start ==================*/
.search-form {
  margin-top: 50px;
  border: 12px solid hsl(var(--white) / 0.15);
  border-radius: 40px;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .search-form {
    border-width: 7px;
  }
}

.search-form .form--control {
  background-color: hsl(var(--white));
  color: hsl(var(--base-two));
  border-radius: 0;
  font-weight: 500;
  border-radius: 40px;
  padding: 15px;
  padding-right: 150px;
}

.search-form .form--control::placeholder {
  color: hsl(var(--black) / 0.4) !important;
  font-weight: 500;
}

.search-form .btn--base {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  height: auto;
  align-items: center;
  border-radius: 40px !important;
  padding: 10px 20px;
  font-size: 15px;
}

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

/*====================== Hexagon Design Css Start ====================*/
.hex {
  position: relative;
  margin: 20px auto;
  width: 185px;
  height: 300px;
  border-radius: 15px;
  background-color: hsl(var(--base));
  transform: rotate(30deg);
}

.hex:before,
.hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.hex:before {
  transform: rotate(-60deg);
}

.hex:after {
  transform: rotate(60deg);
}

.shape {
  position: absolute;
}

.shape.one {
  left: 40%;
  bottom: 20%;
  max-width: 3%;
  animation: banner_shape_one 8s linear infinite;
}

.shape.two {
  right: 6%;
  top: 15%;
  max-width: 6%;
  animation: banner_shape_two 15s linear infinite;
}

.shape.three {
  top: 15%;
  left: 6%;
  max-width: 4%;
  animation: banner_shape_three 8s linear infinite;
}

.shape.four {
  bottom: 13%;
  left: 11%;
  max-width: 5%;
  animation: banner_shape_four 8s linear infinite;
}

.shape.five {
  right: 6%;
  bottom: 16%;
  transform: rotate(108deg);
  max-width: 4%;
  animation: banner_shape_five 8s linear infinite;
}

.shape.six {
  right: 6%;
  top: 15%;
  max-width: 6%;
  animation: banner_shape_six 5s linear infinite;
}

.shape.seven {
  top: 15%;
  left: 6%;
  max-width: 4%;
  animation: banner_shape_seven 8s linear infinite;
}

.shape.eight {
  bottom: 13%;
  left: 11%;
  max-width: 5%;
  animation: banner_shape_eight 3s linear infinite;
}

.shape.nine {
  right: 6%;
  bottom: 30%;
  max-width: 4%;
  transform: rotate(60deg);
  animation: banner_shape_nine 8s linear infinite;
}

.shape.ten {
  right: 6%;
  top: 15%;
  max-width: 6%;
  animation: banner_shape_ten 10s linear infinite;
  transform: rotate(-60deg);
}

.shape.eleven {
  top: 15%;
  left: 6%;
  max-width: 4%;
  animation: banner_shape_eleven 20s linear infinite;
}

.shape.thirteen {
  right: 0;
  bottom: 30%;
  max-width: 4%;
  animation: banner_shape_thirteen 30s linear infinite;
}

.shape.fourteen {
  right: 6%;
  bottom: 30%;
  max-width: 4%;
  transform: rotate(60deg);
  animation: banner_shape_fourteen 8s linear infinite;
}

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

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

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

@keyframes banner_shape_two {
  0% {
    transform: translateX(0px) translateY(40px);
  }

  25% {
    transform: translateX(40px) translateY(0px);
  }

  50% {
    transform: translateX(0px) translateY(-40px);
  }

  75% {
    transform: translateX(-40px) translateY(0px);
  }

  100% {
    transform: translateX(0px) translateY(40px);
  }
}

@keyframes banner_shape_three {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateX(50px) rotate(180deg);
  }

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

@keyframes banner_shape_four {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }

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

@keyframes banner_shape_five {
  0% {
    transform: translateX(0px) rotate(108deg);
  }

  50% {
    transform: translateX(50px) rotate(130deg);
  }

  100% {
    transform: translateX(0px) rotate(108deg);
  }
}

@keyframes banner_shape_six {
  0% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes banner_shape_seven {
  0% {
    transform: scaleY(0);
  }

  50% {
    transform: scaleY(1);
  }

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

@keyframes banner_shape_eight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

@keyframes banner_shape_nine {
  0% {
    transform: translateY(100px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(180deg);
  }

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

@keyframes banner_shape_ten {
  0% {
    transform: translateY(100px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

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

@keyframes banner_shape_thirteen {
  0% {
    bottom: 0;
  }

  50% {
    bottom: 50%;
  }

  100% {
    bottom: 0;
  }
}

@keyframes banner_shape_fourteen {
  0% {
    left: 10px;
    transform: rotate(0deg);
  }

  50% {
    left: 100px;
    transform: rotate(1000deg);
  }

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

@keyframes banner_shape_eleven {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*====================== Star Rating Style ====================*/
.rating-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rating-list__item {
  padding: 0 1px;
  color: hsl(var(--warning));
}

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

/*======== Sidebar Menu Start =======*/
.dashboard_profile .sidebar-menu-list__link {
  color: hsl(var(--black));
}

.sidebar-menu {
  padding-bottom: 10px;
  padding-top: 0px;
  height: 100vh;
  min-height: 100%;
  overflow-y: auto;
  z-index: 999;
  transition: 0.2s linear;
  box-shadow: var(--box-shadow);
  /*============== Sidebar Show hide Css Start ===========*/
  /*============== Sidebar Show hide Css end ===========*/
}

.sidebar-menu.show-sidebar {
  transform: translateX(0);
  background-color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
  .sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 320px;
    padding-top: 60px;
    transform: translateX(-100%);
    z-index: 9992;
    border-radius: 0;
  }
}

.sidebar-menu__close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 18px;
  transition: 0.2s linear;
  cursor: pointer;
  display: none;
  z-index: 9;
}

@media screen and (max-width: 1199px) {
  .sidebar-menu__close {
    display: block;
  }
}

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

.sidebar-menu-list__item {
  border-bottom: 1px solid hsl(var(--black) / 0.1);
}

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

.sidebar-menu-list__item:hover {
  background-color: hsl(var(--white) / 0.1);
  color: hsl(var(--white));
}

.sidebar-menu-list__item a:hover {
  color: hsl(var(--base));
}

.sidebar-menu-list__item a:hover .icon i {
  color: hsl(var(--base));
}

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

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

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

.sidebar-menu-list__link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 8px 20px 8px 20px;
  width: 100%;
  color: hsl(var(--black));
}

.sidebar-menu-list__link .icon {
  margin-right: 5px;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  animation: 0.4s all;
}

.sidebar-menu-list__link .icon i {
  animation: 0.4s all;
}

/*=============== Sidebar Submenu Start ===============*/
.sidebar-submenu {
  display: none;
  position: relative;
}

.sidebar-submenu::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 22px;
  left: 27px;
  border-left: 1px solid hsl(var(--base));
}

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

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

.sidebar-submenu-list__item {
  position: relative;
}

.sidebar-submenu-list__item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 27px;
  width: 16px;
  height: 1px;
  border-top: 1px solid hsl(var(--base));
}

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

.sidebar-submenu-list__link {
  padding: 8px 20px 4px 50px !important;
  display: block;
  color: hsl(var(--black));
  border-bottom: 0 !important;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
/*========  responsive sidebar menu  =======*/
.sidebar-menu-wrapper {
  width: 300px;
  height: 100vh;
  background-color: hsl(var(--white));
  position: fixed;
  z-index: 99;
  left: -320px;
  transition: all 0.4s ease-in-out;
}

.sidebar-menu-wrapper.show {
  left: 0;
}

.sidebar-menu-wrapper .top-close {
  margin-top: 21px;
  text-align: end;
  margin-right: 24px;
}

.sidebar-menu-wrapper .top-close i {
  font-size: 18px;
  color: hsl(var(--white));
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: hsl(var(--base));
  border-radius: 4px;
}

.responsive-area .menu-search .category-box .select {
  border: 0;
  margin-right: 0px;
  margin-left: 0px;
  color: hsl(var(--dark));
}

.sidebar-menu-list__item .btn.btn--base {
  border: 1px solid hsl(var(--white));
}

.sidebar-menu-list__item select.select {
  color: hsl(var(--dark));
  background-color: transparent;
  padding: 7px 0px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0px;
  padding-left: 19px;
}

/*============= Animation Play Video Button Pulse New ========== */
.mfp-iframe-holder .mfp-close {
  top: -52px;
  color: hsl(var(--white));
  font-size: 21px;
  font-weight: 800;
  width: 42px;
  height: 35px;
  background: hsl(var(--base));
  text-align: center;
  line-height: 32px;
  padding: 0;
  opacity: 1;
  border-radius: 5px;
}

.mfp-iframe-holder .mfp-close:hover {
  opacity: 0.9;
}

.mfp-image-holder .mfp-close {
  top: -16px;
  color: hsl(var(--white));
  font-size: 21px;
  font-weight: 800;
  width: 42px;
  height: 35px;
  background: hsl(var(--base));
  text-align: center;
  line-height: 32px;
  padding: 0;
  opacity: 1;
  border-radius: 5px;
}

.mfp-image-holder .mfp-close:hover {
  opacity: 0.9;
}

.play-video {
  height: 90px;
  width: 90px;
  background: hsl(var(--white));
  line-height: 94px;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.video-main {
  position: relative;
  display: inline-block;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {
  content: "\f04b";
  color: hsl(var(--base));
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: hsl(var(--base) / 0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 10%;
  right: -29px;
  bottom: -30px;
  z-index: 1;
  -webkit-animation: waves 9s ease-in-out infinite;
  animation: waves 9s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.wave-3 {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

/*============= Custom cursor  start  =============*/
.cursor-outer {
  margin-left: -18px;
  margin-top: -18px;
  width: 35px;
  height: 35px;
  background: hsl(var(--base));
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.2;
  transition: all 0.3s ease-out;
}

.mouseCursor {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

[dir="rtl"] .mouseCursor {
  left: 0;
  right: auto;
}

.cursor-inner {
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 10000001;
  background-color: hsl(var(--base));
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner span {
  color: hsl(var(--white));
  line-height: 80px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.mouseCursor.cursor-big {
  width: 80px;
  height: 80px;
  margin-inline-start: -40px;
  margin-top: -40px;
}

.mouseCursor.cursor-big.cursor-outer {
  display: none;
}

.mouseCursor.cursor-big.d-none {
  display: none;
}

.slider-drag .swiper-slide {
  cursor: none;
}

/*============= Banner area start  =============*/
.banner-section {
  position: relative;
  z-index: 1;
  padding: 100px 0 165px;
  overflow: hidden;
}

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

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

@media screen and (max-width: 767px) {
  .banner-section {
    padding: 80px 0 130px;
  }
}

@media screen and (max-width: 424px) {
  .banner-section {
    padding: 75px 0 125px;
  }
}

.banner-left__content .video-button-wrap .waves {
  width: 100px;
  height: 100px;
  right: -83px;
  bottom: -45px;
  border-radius: 100%;
  background: hsl(var(--white) / 0.2);
}

@media screen and (max-width: 991px) {
  .banner-left__content {
    margin-bottom: 20px;
  }
}

.banner-left__content .video-button-wrap {
  display: inline-block;
}

.banner-left__content .video-button-wrap .popup-vide-wrap {
  display: inline-block;
}

.banner-left__content a.video-button.popup_video {
  position: relative;
  z-index: 1;
  border-radius: 100%;
}

.banner-left__content .video-button i {
  height: 58px;
  width: 58px;
  text-align: center;
  line-height: 58px;
  border-radius: 100%;
  display: block;
  background: hsl(var(--white));
  color: hsl(var(--white)) !important;
}

.banner-left__content span.subtitle {
  font-size: 16px;
  font-weight: 700;
  color: hsl(var(--white));
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.banner-left__content h2 {
  font-size: 66px;
  text-transform: capitalize;
  margin-bottom: 16px;
  font-weight: 600;
  color: hsl(var(--white));
  line-height: 130%;
}

@media screen and (max-width: 1199px) {
  .banner-left__content h2 {
    font-size: 49px;
  }
}

@media screen and (max-width: 991px) {
  .banner-left__content h2 {
    font-size: 60px;
    margin-bottom: 11px;
  }
}

@media screen and (max-width: 767px) {
  .banner-left__content h2 {
    font-size: 43px;
  }
}

@media screen and (max-width: 424px) {
  .banner-left__content h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 374px) {
  .banner-left__content h2 {
    font-size: 35px;
  }
}

.banner-left__content p {
  margin-bottom: 35px;
  margin-bottom: 35px;
  width: 88%;
}

@media screen and (max-width: 991px) {
  .banner-left__content p {
    margin-bottom: 15px;
  }
}

.banner-left__content .btn--base {
  background-color: hsl(var(--black));
  color: hsl(var(--white));
}

.banner-left__content .btn:hover::before {
  background: hsl(var(--base));
  border: 1px solid hsl(var(--white));
}

/*============= Category area start  =============*/
.category-area {
  margin-top: -75px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.category-area .slick-dots {
  margin-top: 15px;
}

.category-box {
  text-align: center;
}

.category-box__thumb {
  height: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  border: 19px solid hsl(var(--white));
  border-radius: 50%;
  position: relative;
}

.category-box__thumb:before {
  content: "";
  position: absolute;
  height: 131px;
  width: 132px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed hsl(var(--black) / 0.6);
  animation: rotateAnimation 40s linear infinite;
  /* Adjust duration and timing function as needed */
}

.category-box__thumb img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

@keyframes rotateAnimation {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*============= Product area start  =============*/
.product-item {
    border: 1px solid hsl(var(--black) / 0.06);
    background: hsl(var(--black) / 0.04);
    border-radius: 12px;
    padding: 15px 15px 10px 15px;
    transition: all 0.4s ease-in-out;
    margin-top: 4px;
    margin-bottom: 5px;
}

.product-item:hover {
  box-shadow: 0px 4px 10px rgba(1, 15, 28, 0.14);
  border: 1px solid hsl(var(--base) / 0.5);
  transform: translateY(-3px);
}

.product-item:hover .product-item__thumb {
  transform: scale(1.02);
}

.product-item__thumb {
  position: relative;
  margin-bottom: 22px;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.product-item__thumb img {
  border-radius: 12px;
  width: 100%;
}

.product-item__thumb .tags {
  position: absolute;
  left: 8px;
  top: 10px;
  background: hsl(var(--base));
  font-size: 12px;
  color: hsl(var(--white));
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
}
.product-item__thumb .tags2 {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: hsl(var(--warning));
  font-size: 12px;
  color: hsl(var(--white));
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
}
.product-item__thumb .product-details-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-item__content {
  text-align: center;
}

.product-item__content .review-wrap {
  margin-bottom: 11px;
}

.product-item__content .review-wrap .rating-list {
  margin-right: 5px;
}

.product-item__content .review-wrap .rating-list .rating-list__item {
  margin-right: 2px;
}

.product-item__content .product-title {
  font-size: 17px;
  font-weight: 500;
  color: hsl(var(--black) / 0.9);
}

.product-item__content .title-three {
  color: hsl(var(--base));
  margin-right: 11px;
}

.product-item__content .title-three .currency {
  font-size: 14px;
}

.product-item__content .weight {
  font-size: 10px;
  display: inline-block;
}

.product-item__content .bottom-wrap span.weight {
  padding: 4px 8px;
  background: hsl(var(--black) / 0.06);
  border-radius: 4px;
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 600;
}

/*============= Products Details ==========*/
.product-details-left__thumb {
  width: 100%;
  border-radius: 12px;
}

.product-details-left__thumb img {
  width: 100%;
  border-radius: 12px;
}

.product-details-area button.btn-close {
  position: absolute;
  right: 30px;
}

.product-details-area button.btn-close:focus {
  box-shadow: none;
}

.product-details-area .modal-content {
  padding: 25px;
}

.product-detials {
  border: 1px solid hsl(var(--base) / 0.1);
  border-radius: 20px;
  margin-right: 30px;
}

@media screen and (max-width: 991px) {
  .product-detials {
    margin-right: 0px;
  }
}

.product-detials .product-price {
  font-size: 20px;
}

.product-detials .product {
  box-shadow: none;
  border: 0;
  padding-bottom: 0;
}

.product-detials .product:hover {
  border: none;
  transform: none;
}

.product-detials .product__thumb img {
  border-radius: 10px;
  width: 100%;
}

.product-detials .product.product__price-title {
  padding-bottom: 25px;
  margin-bottom: 27px;
}

.project-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.project-details a {
  margin-right: 10px;
}

.project-details .buy.btn--base {
  background-color: hsl(var(--black));
}

.project-details .buy.btn:before {
  background-color: hsl(var(--base));
}

.quantity_box {
  width: 180px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  height: 45px;
  margin-right: 10px;
  margin-top: 0px;
  margin-bottom: 30px;
}

.quantity_box input {
  width: 55px;
  border-radius: 0px;
  height: 38px;
  border-top: 1px solid hsl(var(--black) / 0.2);
  border-bottom: 1px solid hsl(var(--black) / 0.2);
  border-left: 0;
  border-right: 0;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  padding-left: 27px;
  outline: none;
  font-size: 14px;
  font-weight: 700;
}

.quantity_box button {
  width: 45px;
  height: 38px;
  background-color: transparent;
  font-size: 12px;
  border: none;
  padding: 5px 18px;
  border: 1px solid hsl(var(--black) / 0.2);
  border-top-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.quantity_box button i {
  color: hsl(var(--base)) !important;
}

.quantity_box button.sub {
  border: 1px solid hsl(var(--black) / 0.2);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 5px 18px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 5px;
}

.about-right-content .about-bottom ul li {
  display: flex;
  margin-bottom: 5px;
  font-size: 14px;
  display: flex;
  margin-bottom: 5px;
  font-size: 14px;
}

.about-right-content .about-bottom ul li i {
  color: hsl(var(--base));
  margin-right: 10px;
  margin-top: 8px;
}

.about-right-content .about-bottom ul li p {
  font-size: 14px;
}

.about-right-content .about-bottom ul li p span {
  color: hsl(var(--base));
}

.product-details__content .review-wrap .stock {
  font-size: 15px;
  background: hsl(var(--base) / 0.2);
  padding: 0px 10px;
  border-radius: 4px;
}

.product-details__content .review-wrap p.review-count {
  font-size: 14px;
}

.product-details__content .title a {
  font-size: 16px;
  font-weight: 500;
  color: hsl(var(--white) / 0.8);
  margin: 0;
}

.product-details__content .desc {
  font-size: 14px;
}

.product-details__bottom ul li {
  display: flex;
  margin-bottom: 5px;
  font-size: 14px;
}

.product-details__bottom ul li i {
  color: hsl(var(--base));
  margin-right: 10px;
  margin-top: 8px;
}

.product-details__bottom ul li img {
  margin-left: 10px;
}

.product-details__bottom ul li p {
  font-size: 14px;
}

.product-details__bottom ul li span {
  font-weight: 700;
}

.product-details__bottom h5.social-share__title {
  font-size: 14px;
  font-weight: 700;
}

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

.product-details__bottom .social-list__link i {
  margin: 0;
}

.product-details__bottom .social-list__link:hover i {
  color: hsl(var(--black));
}

.product-details__bottom .payment li {
  display: flex;
  flex-wrap: wrap;
}

.product-details__content .price-quantity-kg {
  font-size: 18px;
  color: hsl(var(--black) / 0.7);
  margin-bottom: 0;
}

.product-details__content .price-text {
  font-size: 20px;
  color: hsl(var(--black) / 0.7);
  margin-bottom: 0;
}

.product-details__content .product-price {
  font-size: 22px;
  font-weight: 500;
}

.product-details__content .product-price.old {
  color: hsl(var(--black) / 0.6);
  font-size: 17px;
}

.customer-item-delivery-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: hsl(var(--black) / 0.04);
  padding: 10px 15px;
  border-radius: 12px;
}

.customer-item-delivery {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  margin-top: 5px;
}

.customer-item-delivery__icon {
  margin-right: 12px;
}

.customer-item-delivery__icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: hsl(var(--black) / 0.07);
  border-radius: 50%;
  font-size: 15px;
  color: hsl(var(--black) / 0.7);
}

.customer-item-delivery__content .title {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 500;
}

.payment-img-wrap__thumb img {
  margin-right: 16px;
}

.product-details__content .review-wrap .stock {
  font-size: 14px;
  background: hsl(var(--base) / 0.2);
  padding: 0px 10px;
  border-radius: 4px;
}

.product-details__content .review-wrap p.review-count {
  font-size: 14px;
}

.product-details__content .title a {
  font-size: 16px;
  font-weight: 500;
  color: hsl(var(--white) / 0.8);
  margin: 0;
}

.product-details__content .desc {
  font-size: 14px;
}

.product-details__content .about-bottom ul li {
  display: flex;
  margin-bottom: 5px;
  font-size: 14px;
}

.product-details__content .about-bottom ul li p {
  font-size: 14px;
}

.product-details__content .about-bottom ul li p span {
  color: hsl(var(--base));
}

.product-details__bottom ul li {
  display: flex;
  margin-bottom: 5px;
  font-size: 14px;
}

.product-details__bottom ul li i {
  color: hsl(var(--base));
  margin-right: 10px;
  margin-top: 8px;
}

.product-details__bottom ul li img {
  margin-left: 10px;
}

.product-details__bottom ul li p {
  font-size: 14px;
}

.product-details__bottom ul li span {
  font-weight: 700;
}

.product-details__bottom h5.social-share__title {
  font-size: 14px;
  font-weight: 700;
}

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

.product-details__bottom .social-list__link i {
  margin: 0;
}

.product-details__bottom .social-list__link:hover i {
  color: hsl(var(--black));
}

.product-details__bottom .payment li {
  display: flex;
  flex-wrap: wrap;
}

.product-details__content .product-price {
  font-size: 20px;
  font-weight: 500;
}

/*============= Card ===========*/
.product-card__coupon {
  position: relative;
}

.product-card__coupon .apply-btn {
  position: absolute;
  right: 0;
  height: 87%;
  padding: 0 25px;
  border-left: 1px solid hsl(var(--black) / 0.07);
  color: hsl(var(--info));
  transition: all 0.3s;
}

.product-card__coupon .apply-btn:hover {
  color: hsl(var(--base));
}

.product-card__update {
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 767px) {
  .product-card__update {
    justify-content: start;
  }
}

.cart-quantity .language-box .select {
  border: 1px solid hsl(var(--black) / 0.09);
  padding: 7px 12px;
  border-radius: 4px;
}

.card-wrap {
  border: 1px solid hsl(var(--black) / 0.09);
  padding: 20px;
  border-radius: 12px;
}

.cart-total ul li {
  list-style: none;
  font-size: 15px;
  color: #6f7172;
  padding: 10px 30px;
  border-bottom: 1px solid hsl(var(--base) / 0.1);
  font-weight: 400;
}

.cart-total ul li:last-child {
  border-bottom: 0;
  font-weight: 600;
  font-size: 18px;
}

.cart-total ul li span {
  float: right;
}

.cart-total ul :last-child {
  border-bottom: 0;
}

.cart-total {
  border: 1px solid hsl(var(--black) / 0.09);
  padding: 15px;
  border-radius: 12px;
}

/* ========  category details  ======*/
.category-area .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -80px;
}

@media screen and (max-width: 991px) {
  .category-area .slick-arrow {
    top: -75px;
  }
}

@media screen and (max-width: 767px) {
  .category-area .slick-arrow {
    width: 30px;
    height: 30px;
    top: -70px;
  }
}

.category-area .slick-prev {
  right: 60px;
  left: auto;
  background-color: hsl(var(--black) / 0.06);
  color: hsl(var(--black));
}
.category-area .slick-next {
  background-color: hsl(var(--black) / 0.06);
}

@media screen and (max-width: 767px) {
  .category-area .slick-prev {
    right: 50px;
  }

  .category-area .slick-next {
    right: 8px;
  }
}

/* ========  single details  ======*/
.single-slider .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 47%;
    right: 20px;
  }
  

  .single-slider .slick-prev {
    left: 20px;
    top: 50%;
    background-color: hsl(var(--black) / 0.6);
    color: hsl(var(--white));
  }

/* ========  product details  ======*/
.product-area .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -80px;
}

@media screen and (max-width: 991px) {
  .product-area .slick-arrow {
    top: -75px;
  }
}

@media screen and (max-width: 767px) {
  .product-area .slick-arrow {
    width: 30px;
    height: 30px;
    top: -70px;
  }
}

.product-area .slick-prev {
  right: 60px;
  left: auto;
  background-color: hsl(var(--black) / 0.06);
  color: hsl(var(--black));
}

@media screen and (max-width: 767px) {
  .product-area .slick-prev {
    right: 50px;
  }

  .product-area .slick-next {
    right: 8px;
  }
}

.product-categories .form--check {
  margin-bottom: 15px;
}

.product-categories .form--check .form-check-input {
  cursor: pointer;
}

.product-categories .form--check .form-check-label {
  cursor: pointer;
  transition: all 0.3s;
}

.product-categories .form--check .form-check-label:hover {
  color: hsl(var(--base));
}

/*============= Why agro area start  =============*/
.why-agro-item {
  padding: 5px;
  margin-top: 5px;
  position: relative;
  border-radius: 12px;
  outline: 1px solid hsl(var(--black) / 0.06);
}

.why-agro-item__thumb {
  border-radius: 12px;
}

.why-agro-item__thumb img {
  border-radius: 12px;
}

.why-agro-item .why-agro-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  color: hsl(var(--white));
}

/*====================== About ====================*/
.about-item-thumb__inner {
  position: relative;
}

.about-item-thumb__inner img {
  border-radius: 12px;
}

.about-item-thumb__inner .content {
  position: absolute;
  background: hsl(var(--base));
  border-radius: 12px;
  top: 8%;
  padding: 0px;
}

.about-item-thumb__inner .content .count {
  padding: 23px;
  text-align: center;
}

.about-item-thumb__inner .content .count i {
  font-size: 50px;
  border-radius: 12px;
  color: hsl(var(--white));
  margin-bottom: 15px;
}

.about-item-thumb__inner .content .count .title-one {
  color: hsl(var(--white));
}

.about-item-thumb__inner .content .count .happy-cus {
  font-size: 24px;
  color: hsl(var(--white));
  text-align: center;
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.about-item-middle {
  margin-bottom: 47px;
  margin-top: 44px;
}

.about-item-middle__item .icon {
  margin-bottom: 20px;
}

.about-item-middle__item .icon i {
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 100%;
  background: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 22px;
}

.about-item-bottom {
  border: 1px solid hsl(var(--black) / 0.1);
  border-radius: 12px;
  padding: 30px;
}

.about-item-bottom__item {
  display: flex;
}

.about-item-bottom__item .thumb {
  height: 68px;
  width: 68px;
  margin-right: 15px;
}

.about-item-bottom__item .thumb img {
  height: 100%;
  width: 100%;
}

.about-item-bottom__item .content {
  width: calc(100% - 68px);
}

.about-item-bottom__item .content .title-three {
  margin-bottom: 3px;
}

/*====================== community Section====================*/
.community-section {
  overflow: hidden;
}

.community-thumb {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

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

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

.community-thumb__inner .community-top {
  position: absolute;
  right: -33px;
  top: 11px;
  object-fit: cover;
  animation: jump-1 10s linear infinite;
  border-radius: var(--border-radius);
}

@media screen and (max-width: 1399px) {
  .community-thumb__inner .community-top {
    position: absolute;
    right: -80px;
  }
}

@media screen and (max-width: 991px) {
  .community-thumb__inner .community-top {
    right: -115px;
  }
}

@media screen and (max-width: 575px) {
  .community-thumb__inner .community-top {
    display: none;
  }
}

.community-thumb__inner .community-middle {
  position: absolute;
  left: -73px;
  top: 25%;
}

.community-thumb__inner .community-bottom-img {
  position: absolute;
  left: -68px;
  bottom: -92px;
  animation: jump-1 10s linear infinite;
}

@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

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

.community-right-content {
  padding-left: 50px;
}

@media screen and (max-width: 991px) {
  .community-right-content {
    padding-left: 0;
  }
}

.community-right-content .title-one {
  margin-bottom: 20px;
}

.community-bottom__item {
  margin-bottom: 40px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}
/*====================== Community Page Style ====================*/
.community-item {
  background: hsl(var(--base) / 0.03);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.community-item__top {
  margin-bottom: 20px;
}

.community-item__top .top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.community-item__top .top-wrapper .left {
  display: flex;
  flex-wrap: wrap;
}

.community-item__top .top-wrapper .left .thumb {
  width: 42px;
  height: 42px;
}

.community-item__top .top-wrapper .left .thumb img {
  height: 100%;
  width: 100%;
}

.community-item__top .top-wrapper .left .content {
  width: calc(100% - 42px);
  margin-left: 12px;
}

.community-item__top .top-wrapper .left .content .title-three {
  font-size: 18px;
  margin-bottom: 0;
}

.community-item__top .top-wrapper .left .content .title-three .follow {
  font-size: 16px;
  color: hsl(var(--black) / 0.6);
}

.community-item__top .top-wrapper .left .content p {
  font-size: 14px;
}

.community-item__top .top-wrapper .right .icon {
  color: hsl(var(--base));
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: hsl(var(--base) / 0.08);
  border-radius: 100%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.community-item__top .content .seemore {
  color: hsl(var(--base));
  font-weight: 600;
  cursor: pointer;
}

.community-item__top .content p {
  color: hsl(var(--black));
}

.community-item__thumb {
  border-radius: 12px;
  margin-bottom: 30px;
}

.community-item__thumb img {
  border-radius: 12px;
}

.community-item .community-bottom {
  display: flex;
  justify-content: space-between;
}

.community-item .community-bottom .left {
  display: flex;
  flex-wrap: wrap;
}

.community-item .community-bottom .left li {
  margin-right: 30px;
  color: hsl(var(--black) / 0.8);
  position: relative;
}

.community-item .community-bottom .left li::before {
  content: "";
  height: 14px;
  width: 1px;
  background: hsl(var(--black) / 0.8);
  right: -17px;
  top: 5px;
  position: absolute;
}

.community-item .community-bottom .left li:last-child::before {
  display: none;
}

.community-item .community-bottom .left li a {
  color: hsl(var(--black) / 0.8);
}

.community-item .community-bottom .left li button {
  color: hsl(var(--black) / 0.8);
}

.community-item .community-bottom .right .icon {
  color: hsl(var(--base));
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: hsl(var(--base) / 0.08);
  border-radius: 100%;
  cursor: pointer;
}

/*====================== Dropdown menu style ====================*/
.post-top-menu {
  position: absolute;
  width: 250px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 1;
  background: hsl(var(--white));
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  right: 46px;
  text-align: start;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

@media screen and (max-width: 374px) {
  .post-top-menu {
    width: 230px;
    right: 20px;
  }
}

.post-top-menu.show {
  opacity: 1;
  visibility: visible;
}

.post-top-menu__item {
  border-bottom: 1px solid hsl(var(--black) / 0.1);
  padding: 10px 20px;
  transition: all 0.3s;
}

.post-top-menu__item .text {
  transition: all 0.3s;
}

.post-top-menu__item:hover {
  background: hsl(var(--base) / 0.1);
}

.post-top-menu__item:hover .text {
  color: hsl(var(--base));
}

.post-top-menu__link {
  margin: 0;
  line-height: 1;
  font-size: 16px;
  color: hsl(var(--black));
  position: relative;
  display: block;
  display: flex;
  align-items: center;
}

.post-top-menu__link .icon {
  margin-right: 5px;
}

.post-top-menu__link .right-arrow {
  margin-left: 15px;
  margin-top: 0px;
  display: inline-block;
}

.body-overlay.everyone-btn-hide {
  opacity: 0;
  visibility: visible;
  z-index: 1;
}

/*============= what we offer Start Here *=============*/
.what-we-offer-left .section-heading {
  margin-bottom: 45px;
}

.what-we-offer-left .section-heading .title-one {
  padding-right: 30px;
}

.what-we-offer-left .section-heading p {
  width: 60%;
}

.what-offer-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: hsl(var(--white) / 0.5);
  border-radius: 12px;
  padding: 30px;
  transition: 0.4s;
}

.what-offer-item:hover {
  box-shadow: 0px 4px 10px rgba(1, 15, 28, 0.14);
  transform: translateY(-3px);
}

.what-offer-item__icon {
  margin-bottom: 20px;
}

.what-offer-item__icon i {
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 100%;
  background: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 22px;
}

.what-we-offer-right {
  text-align: end;
}

@media screen and (max-width: 1199px) {
  .what-we-offer-right {
    text-align: center;
  }
}
/*====================== Location Style ====================*/
.location-item {
  transition: 0.4s all;
}

.location-item:hover {
  transform: translateY(-2px);
}

.location-item__thumb {
  position: relative;
}

.location-item__thumb::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    hsl(var(--black) / 0.8) 100%
  );
  position: absolute;
}

.location-item__thumb a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.location-item__thumb img {
  border-radius: 12px;
  width: 100%;
}

.location-item__thumb .content {
  position: absolute;
  bottom: 15px;
  left: 30px;
}

.location-item__thumb .content .title-two {
  color: hsl(var(--white));
  margin-bottom: 15px;
}

.location-item__thumb .content .tag {
  background: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 14px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 18px;
  display: block;
}

/*====================== Quality Hostel ====================*/
/*=================== Luxury Experience =========*/
@media screen and (max-width: 767px) {
  .luxury-section {
    margin-bottom: 40px;
  }
}

.luxury-bottom-item {
  display: flex;
}

.luxury-bottom-item i {
  margin-right: 10px;
  color: hsl(var(--base));
  margin-top: 5px;
}

.luxury-bottom-item p {
  color: hsl(var(--black));
}

.about-item-thumb.luxury .about-item-thumb__inner .content {
  right: 0;
}

.about-item-thumb.luxury .about-item-thumb__inner .content .icon i {
  margin-left: -40px;
}

/*=================== Right Hotel =========*/
.right-hostel-thumb__inner {
  position: relative;
  max-width: 614px;
  border-radius: 12px;
}

.right-hostel-thumb__inner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: hsl(var(--black) / 0.4);
  content: "";
  border-radius: 12px;
  z-index: 3;
}

.right-hostel-thumb__inner .img-2 {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.right-hostel-thumb__inner .popup-vide-wrap {
  position: absolute;
  top: 54%;
  left: 56%;
  z-index: 4;
}

.right-hostel-thumb__inner .video-button {
  position: absolute;
  height: 90px;
  width: 90px;
  background: hsl(var(--white));
  line-height: 90px;
  text-align: center;
  margin-bottom: 38px;
  top: -74px;
  left: -90px;
  border-radius: 100%;
  z-index: 1;
  font-size: 26px;
}

.right-hostel-thumb__inner .waves {
  border-radius: 100%;
}

.right-hostel-section {
  position: relative;
}

.right-hostel-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: hsl(var(--base));
  height: 470px;
  width: 100%;
  z-index: -1;
}

.right-hostel-right-content .section-heading {
  padding-right: 100px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1199px) {
  .right-hostel-right-content .section-heading {
    padding-right: 0;
  }
}

.right-hostel-right-content .section-heading .subtitle {
  color: hsl(var(--white));
}

.right-hostel-right-content .section-heading .title-one {
  color: hsl(var(--white));
}

.right-hostel-right-content .section-heading p.desc {
  color: hsl(var(--white));
}

.right-hostel-bottom__item {
  padding: 30px;
  background: hsl(var(--white));
  border-radius: 12px;
  box-shadow: 2px 4px 25px 0px rgba(0, 0, 0, 0.1);
}

/*====================== Hostel List Page Style ====================*/
.breadcumb .search-bg-wrapper {
  margin-top: 110px;
  margin-bottom: -190px;
}

.hostel-list-area {
  padding-top: 205px;
}

.hostel-top-filer {
  cursor: pointer;
  position: relative;
}

.filter-search {
  padding: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 12px;
  width: 232px;
  position: absolute;
  z-index: 9;
  top: 30px;
  display: none;
  right: 0;
  background: hsl(var(--white));
}

.filter-search.show {
  display: block;
}

.filter-search .form-group {
  margin-bottom: 15px;
}

.hostel-list-item {
  border-radius: 12px;
  transition: 0.4s all;
}

.hostel-list-item:hover {
  transform: translateY(-2px);
}

.hostel-list-item:hover .hostel-list-item__bottom-wrap {
  border: 1px solid hsl(var(--base) / 0.2);
  border-top: 0;
}

.hostel-list-item__thumb {
  position: relative;
  overflow: hidden;
  transition: 0.3s all;
}

.hostel-list-item__thumb .offer-title {
  position: absolute;
  left: 15px;
  top: 14px;
  background: #f90;
  font-size: 16px;
  font-weight: 700;
  color: hsl(var(--white));
  padding: 6px 13px;
  border-radius: 12px;
  text-transform: uppercase;
}

.hostel-list-item__thumb a {
  width: 100%;
}

.hostel-list-item__thumb a img {
  border-radius: 12px 12px 0 0;
  width: 100%;
}

.hostel-list-item__title-wrap {
  border-bottom: 1px solid hsl(var(--black) / 0.1);
  padding: 20px 20px;
  padding-bottom: 10px;
}

.hostel-list-item__title-wrap .rating-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hostel-list-item__title-wrap .rating-wrap .left .icon {
  display: flex;
  align-items: center;
}

.hostel-list-item__title-wrap .rating-wrap .left .icon .rating {
  background: #f90;
  padding: 1px 6px;
  display: block;
  border-radius: 5px;
  color: hsl(var(--white));
  margin-right: 9px;
}

.hostel-list-item__title-wrap .rating-wrap .right .icon {
  display: flex;
  align-items: center;
}

.hostel-list-item__title-wrap .rating-wrap .right .icon i {
  color: hsl(var(--black) / 0.8);
  margin-right: 9px;
}

.hostel-list-item__bottom-wrap {
  border: 1px solid hsl(var(--black) / 0.1);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.hostel-list-item__amount {
  padding: 5px 20px;
  border-bottom: 1px solid hsl(var(--black) / 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
}

.hostel-list-item__amount .amount-item {
  position: relative;
}

.hostel-list-item__amount .amount-item:first-child:before {
  content: "";
  position: absolute;
  right: -37px;
  height: 183%;
  top: -22px;
  width: 1px;
  background: hsl(var(--black) / 0.1);
}

@media screen and (max-width: 575px) {
  .hostel-list-item__amount .amount-item:first-child:before {
    display: none;
  }
}

.hostel-list-item__amount .amount-item p {
  font-size: 14px;
  font-weight: 500;
}

.hostel-list-item__amount .amount-item .amount-item-title {
  font-size: 20px;
}

.hostel-list-item__amount .amount-item .amount-item-title sub {
  color: hsl(var(--black) / 0.6);
  text-decoration: line-through;
}

.hostel-list-item__amount .amount-item i {
  color: hsl(var(--base));
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: hsl(var(--base) / 0.06);
  border-radius: 100%;
  cursor: pointer;
}

.hostel-list-item__bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  padding-bottom: 0;
  align-items: center;
  flex-wrap: wrap;
}

.hostel-list-item__bottom .left {
  padding-bottom: 20px;
}

.hostel-list-item__bottom .left ul {
  display: flex;
  position: relative;
}

.hostel-list-item__bottom .left ul li {
  margin-right: 8px;
}

.hostel-list-item__bottom .left ul li i {
  color: hsl(var(--base));
  height: 36px;
  width: 36px;
  text-align: center;
  cursor: pointer;
  line-height: 36px;
  background: hsl(var(--base) / 0.06);
  border-radius: 100%;
}

.hostel-list-item__bottom .right {
  padding-bottom: 20px;
}

.hostel-list-item__title-wrap .rating-wrap .left {
  position: relative;
}

.hostel-list-item__title-wrap .rating-wrap .left:before {
  content: "";
  position: absolute;
  right: -39px;
  width: 1px;
  width: 1px;
  top: 9px;
  height: 16px;
  background: hsl(var(--black) / 0.1);
}

@media screen and (max-width: 575px) {
  .hostel-list-item__title-wrap .rating-wrap .left:before {
    display: none;
  }
}

.hostel-list-item__bottom .left ul.hover-item-icon {
  position: absolute;
  background: hsl(var(--white));
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 8px;
  border-radius: 3px;
  right: -8px;
  display: flex;
  transition: all 0.6s ease-in-out;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
}

.hostel-list-item__bottom .left li {
  position: relative;
  transition: 0.5s all;
}

.hostel-list-item__bottom .left ul.hover-item-icon li {
  margin-right: 0;
  margin: 0px 5px;
}

.hostel-list-item__bottom .left ul li:hover .hover-item-icon {
  opacity: 1;
  visibility: visible;
}

/*====== single hostel ======*/
.icon-wish {
  color: hsl(var(--base));
  height: 53px;
  width: 53px;
  text-align: center;
  line-height: 55px;
  background: hsl(var(--base) / 0.04);
  border-radius: 100%;
  cursor: pointer;
  margin-left: auto;
  font-size: 24px;
}

.hostel-list-single-area .hostel-list-item__title-wrap .rating-wrap {
  justify-content: flex-start;
}

.hostel-list-single-area .hostel-list-item__title-wrap {
  padding: 0;
  border: 0;
  margin: 15px 0 10px;
}

.hostel-list-single-area .hostel-list-item__title-wrap .rating-wrap .left {
  margin-right: 73px;
}

.hostel-list-single-area .hostel-list-item:hover {
  transform: translateY(0px);
}

.hostel-list-single-area .hostel-list-item__thumb img {
  width: 100%;
  border-radius: 12px;
}

.single-facilities .title {
  margin-bottom: -8px;
}

.border-wrap {
  margin-bottom: 10px;
}

.border-wrap .border-style {
  display: inline-block;
  border: 1px solid hsl(var(--black) / 0.03);
  width: 100%;
  position: relative;
}

.border-wrap .border-style:before {
  position: absolute;
  left: 0;
  width: 20px;
  background: hsl(var(--base));
  height: 1px;
  content: "";
}

.single-facilities ul li {
  display: flex;
}

.single-facilities ul li i {
  font-size: 8px;
  color: hsl(var(--base));
  margin-right: 13px;
  margin-top: 10px;
}

.single-facilities ul li p {
  font-size: 14px;
}

.hostel-list-details-tap-wrap {
  margin-bottom: 70px;
}

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

.rating-top h6 {
  font-size: 16px;
  color: hsl(var(--black) / 0.7);
}

.rating-top h6 span {
  background: #f90;
  padding: 3px 5px;
  border-radius: 3px;
  display: inline-block;
  color: hsl(var(--white));
  margin-right: 15px;
}

.rating-comment-item {
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
  margin-bottom: 20px;
}

.rating-comment-item .about-item-bottom__item {
  margin-bottom: 14px;
}

.rating-comment-item .bottom ul {
  display: flex;
  margin-right: 10px;
}

.rating-comment-item .bottom {
  display: flex;
}

.rating-comment-item .bottom ul li {
  color: #ffc107;
  margin-right: 6px;
}

.rating-comment-item .bottom .count {
  color: hsl(var(--black) / 0.6);
}

.view-more {
  text-decoration: underline;
  font-weight: 600;
  color: hsl(var(--black) / 0.8);
}

.google-map-wrap iframe {
  border-radius: 12px;
}

.dorm-beds-wrap {
  border: 1px solid hsl(var(--black) / 0.1);
  padding: 20px;
  border-radius: 12px;
}

.dorm-beds-wrap .dorms-left {
  display: flex;
}

@media screen and (max-width: 424px) {
  .dorm-beds-wrap .dorms-left {
    flex-direction: column;
    margin-bottom: 15px;
  }
}

.dorm-beds-wrap .thumb {
  width: 122px;
  height: 98px;
  margin-right: 25px;
}

@media screen and (max-width: 424px) {
  .dorm-beds-wrap .thumb {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
}

.dorm-beds-wrap .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dorms-left .content {
  width: calc(100% - 122px);
}

@media screen and (max-width: 424px) {
  .dorms-left .content {
    width: 100%;
  }
}

.dorms-left .content span {
  color: hsl(var(--black) / 0.8);
  display: inline-block;
  margin-bottom: 4px;
}

.dorms-left .content .hostel-list-item__bottom {
  padding: 0;
}

.dorm-beds-wrap .row.border--bottom {
  border-bottom: 1px solid hsl(var(--black) / 0.1);
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.dorms-tight {
  display: flex;
  justify-content: space-between;
}

.dorms-tight .price .discount-tag {
  background: #f90;
  padding: 4px 10px;
  border-radius: 4px;
  color: hsl(var(--white));
  margin-bottom: 12px;
  display: inline-block;
}

.dorms-tight .price .title-two span {
  font-size: 16px;
  color: hsl(var(--black) / 0.6);
  text-decoration: line-through;
}

.dorms-tight .select {
  border: 0;
  background: hsl(var(--base) / 0.06);
  color: hsl(var(--black));
  border-radius: 12px;
  padding: 13px 26px;
  margin-top: 20px;
  font-weight: 600;
}

.dorms-tight .select option {
  color: hsl(var(--white));
}

.row.border--bottom:last-child {
  border-bottom: 0;
  padding: 0;
  margin: 0;
}

.bed-select .form-select {
  display: block;
  width: 100%;
  padding: 11px 32px 11px 16px;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: hsl(var(--base) / 0.05);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}

.bed-select {
  margin-top: 20px;
}

.rating-top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.rating-wrap ul {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  margin-left: 15px;
}

.rating-wrap ul li {
  margin-right: 7px;
  cursor: pointer;
}

/*====================== Why choose ====================*/
.why-choose-area.py-80 {
  position: relative;
}

.why-choose-area.py-80 .why-choose-bg {
  height: 457px;
  width: 833px;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.2;
}

.why-choose-us__thumb {
  position: relative;
}

.why-choose-us__thumb .popup-vide-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-95%, -50%);
}

.why-choose-us__thumb .popup-vide-wrap .play-video {
  height: 80px;
  width: 80px;
  line-height: 84px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  text-align: center;
}

.why-choose-us__thumb .popup-vide-wrap .waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: hsl(var(--base) / 0.2);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 50%;
  right: -34px;
  bottom: -35px;
  z-index: 1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.why-choose-us__content h3 {
  font-size: 28px;
  font-weight: 600;
}

@media screen and (max-width: 575px) {
  .why-choose-us__content h3 {
    font-size: 22px;
  }
}

.why-choose-us__topic {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-us__topic .item {
  margin-bottom: 15px;
}

.why-choose-us__topic .item .why-title-cont i {
  color: hsl(var(--base));
  font-size: 24px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background: hsl(var(--base) / 0.2);
}

.why-choose-us__topic .item .why-title-cont .content {
  width: calc(100% - 50px);
}

.why-choose-us__topic .item .why-title-cont .content h4 {
  color: hsl(var(--black));
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 3px;
}

.why-choose-us__topic .item .why-title-cont .content p {
  width: 60%;
}

@media screen and (max-width: 991px) {
  .why-choose-us__topic .item .why-title-cont .content p {
    width: 80%;
  }
}

@media screen and (max-width: 424px) {
  .why-choose-us__topic .item .why-title-cont .content p {
    width: 100%;
  }
}

.why-choose-us .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.why-choose-us .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.why-choose-us .wave-3 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

/*====================== Experience ====================*/
.experience-area .col-lg-3:nth-child(even) .experience {
  margin-top: 40px;
  background-color: hsl(var(--base) / 0.04);
}

@media screen and (max-width: 767px) {
  .experience-area .col-lg-3:nth-child(even) .experience {
    margin-top: 0;
  }
}

.experience {
  box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.08);
  border-radius: var(--border-radius);
  padding: 30px 30px 35px;
  border: 2px solid hsl(var(--base) / 0.07);
  transition: all 0.4s ease-in-out;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--white) / 0.01);
}

.experience:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  border: 2px solid hsl(var(--base) / 0.4);
  transform: translateY(-3px);
}

.experience:hover::after {
  left: -25px;
}

.experience::after {
  content: "";
  position: absolute;
  top: -13px;
  left: -225px;
  width: 149px;
  height: 116px;
  background: hsl(var(--base) / 0.04);
  transform: rotate(168deg);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.experience__icon {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.6s ease-in-out;
}

.experience__icon h3 {
  font-size: 35px;
  color: hsl(var(--dark));
  margin-top: 2px;
  text-align: center;
  border-radius: 50%;
  transition: transform 0.5s ease;
  font-weight: 700;
  margin: auto;
}

.experience__content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

/*====================== Offer ====================*/
.pricing-header-wrap {
  display: flex;
  justify-content: space-between;
  background: hsl(var(--base) / 0.1);
  text-align: center;
}

.pricing-plan-item {
  padding: 0px 11px 0px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.pricing-plan-item .pricing-plan-item__top {
  width: 33.33%;
  border-right: 1px solid hsl(var(--black) / 0.1);
  padding: 10px 0;
}

.pricing-plan-item .pricing-plan-item__top:last-child {
  border-right: 0;
}

.pricing-plan-item .pricing-plan-item__top .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

@media screen and (max-width: 575px) {
  .pricing-plan-item .pricing-plan-item__top .title {
    font-size: 16px;
  }
}

.pricing-plan-item .pricing-plan-item__price .title {
  font-weight: 600;
  font-size: 35px;
  margin-bottom: 20px;
}

.pricing-plan-item .pricing-plan-item__price .title span {
  font-size: 16px;
  color: hsl(var(--black) / 0.5);
}

.pricing-plan-item .pricing-plan-item__list .price-list-item-wrapper {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-bottom: 1px solid hsl(var(--black) / 0.08);
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item {
  width: 33.33%;
  padding: 5px 0;
  border-right: 1px solid hsl(var(--black) / 0.1);
}

@media screen and (max-width: 575px) {
  .pricing-plan-item
    .pricing-plan-item__list
    .price-list-item-wrapper
    .price-list-item
    p {
    font-size: 15px;
  }
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item:last-child {
  border-right: 0;
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item
  i {
  color: hsl(var(--base));
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper
  .price-list-item
  i.fa-minus {
  color: hsl(var(--black) / 0.1);
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper.bottom
  .price-list-item {
  border-right: 1px solid hsl(var(--black) / 0.1);
  padding: 20px 0;
}

@media screen and (max-width: 575px) {
  .pricing-plan-item
    .pricing-plan-item__list
    .price-list-item-wrapper.bottom
    .price-list-item
    .btn {
    padding: 5px 5px;
    font-size: 15px;
  }
}

@media screen and (max-width: 424px) {
  .pricing-plan-item
    .pricing-plan-item__list
    .price-list-item-wrapper.bottom
    .price-list-item
    .btn {
    padding: 5px 5px;
    font-size: 14px;
  }
}

.pricing-plan-item
  .pricing-plan-item__list
  .price-list-item-wrapper.bottom
  .price-list-item:last-child {
  border-right: 0;
}

.pricing-plan-item .pricing-plan-item__list ul li {
  padding-bottom: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
}

.pricing-plan-item .pricing-plan-item__list ul li i {
  color: hsl(var(--base));
  margin-right: 10px;
  margin-top: 3px;
}

.pricing-plan-item .pricing-plan-item__bottom a {
  font-size: 20px;
  font-weight: 700;
}

.pricing-plan-item
  .pricing-plan-item__list
  .row:last-child
  .price-list-item-wrapper {
  border-bottom: 0;
}

.all-price-wrapper {
  border: 1px solid hsl(var(--black) / 0.1);
}

/*============= Project area start  =============*/
.projects-area .col-lg-4:nth-child(3) .Our-Project {
  margin-top: -450px;
}

@media screen and (max-width: 991px) {
  .projects-area .col-lg-4:nth-child(3) .Our-Project {
    margin-top: -120px;
  }
}

@media screen and (max-width: 767px) {
  .projects-area .col-lg-4:nth-child(3) .Our-Project {
    margin-top: 0px;
  }
}

.projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
  margin-top: -30px;
}

@media screen and (max-width: 1399px) {
  .projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
    margin-top: -90px;
  }
}

@media screen and (max-width: 1199px) {
  .projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
    margin-top: -150px;
  }
}

@media screen and (max-width: 991px) {
  .projects-area .col-lg-4:nth-child(3) .col-lg-12:last-child .Our-Project {
    margin-top: 0px;
  }
}

.projects-area .col-lg-4:nth-child(1) .Our-Project {
  margin-bottom: 0px;
}

.Our-Project {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.Our-Project:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  transform: translateY(-3px);
}

.Our-Project a {
  position: relative;
  z-index: 2;
}

.Our-Project a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: var(--border-ra dius);
  left: 0px;
  bottom: 0px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(var(--base) / 0.6) 100%
  );
}

.Our-Project a .content {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.Our-Project a .content h4 {
  color: hsl(var(--white));
  margin-bottom: 5px;
  font-weight: 600;
}

.Our-Project a .content span {
  color: hsl(var(--white));
  font-weight: 500;
}

/*============= Team News =============*/
.team-item {
  border-radius: var(--border-radius);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.team-item:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  transform: translateY(-3px);
}

.team-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  left: 0px;
  bottom: 0px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(var(--base) / 0.3) 100%
  );
}

.team-item__content-wrapper {
  position: absolute;
  bottom: 35px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.team-item__content-wrapper .team-name h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  color: hsl(var(--white));
}

.team-item__content-wrapper .team-name span {
  color: hsl(var(--white));
  font-weight: 600;
}

.team-item__content-wrapper .social-wrap {
  position: absolute;
  bottom: 70px;
  right: 5px;
}

.team-item__content-wrapper .social-wrap ul li {
  position: relative;
}

.team-item__content-wrapper .social-wrap ul li:hover .social-team {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.team-item__content-wrapper .social-wrap ul li .social-team {
  position: absolute;
  bottom: 42px;
  transition: all 0.6s ease-in-out;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.team-item__content-wrapper .social-wrap ul li .social-team li {
  margin-top: 2px;
}

.team-item__content-wrapper .social-wrap ul li a {
  padding: 8px 14px;
  background: hsl(var(--base));
  margin-right: 10px;
  color: hsl(var(--white));
  border-radius: var(--border-radius-sm);
}

.team-item__thumb img {
  width: 100%;
  border-radius: var(--border-radius);
}

.team-item__thumb img img {
  width: 100%;
}

/*====================== Product Section ====================*/
.product {
  box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.08);
  border-radius: 20px;
  padding: 20px 20px 27px;
  border: 1px solid hsl(var(--base) / 0.07);
  transition: all 0.4s ease-in-out;
}

.product:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--base) / 0.4);
  transform: translateY(-3px);
}

.product__thumb {
  margin-bottom: 25px;
  border-radius: 10px;
}

.product__thumb img {
  border-radius: 10px;
  width: 100%;
}

.product__price-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid hsl(var(--base) / 0.2);
  padding-bottom: 20px;
  margin-bottom: 18px;
}

.product__price-title span {
  font-weight: 600;
  font-size: 14px;
  display: block;
}

.product__price-title span i {
  color: hsl(var(--base));
  font-size: 16px;
  font-weight: 800;
}

.product__price-title span:last-child {
  font-size: 20px;
}

.product__title {
  margin-bottom: 23px;
}

.product__title a {
  font-size: 18px;
  font-weight: 700;
}

.product__rating-view {
  display: flex;
  justify-content: space-between;
}

.product__rating-view .social-list__item {
  margin-right: 5px;
  font-size: 14px;
  color: hsl(var(--base));
}

.product__rating-view a {
  font-size: 14px;
  font-weight: 600;
  border: 1px solid hsl(var(--base) / 0.5);
  padding: 3px 7px;
  border-radius: 5px;
}

.product__rating-view a:hover {
  background-color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--white));
}

.product-detials {
  border: 1px solid hsl(var(--base) / 0.1);
  border-radius: 20px;
  margin-right: 30px;
}

@media screen and (max-width: 991px) {
  .product-detials {
    margin-right: 0px;
  }
}

.product-detials .product {
  box-shadow: none;
  border: 0;
  padding-bottom: 0;
}

.product-detials .product:hover {
  border: none;
  transform: none;
}

.product-detials .product__thumb img {
  border-radius: 10px;
  width: 100%;
}

.product-detials .product.product__price-title {
  padding-bottom: 25px;
  margin-bottom: 27px;
}

/*=================== Testimonials =========*/
.testimonials {
  position: relative;
  z-index: 1;
}

.testimonials::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: hsl(var(--black) / 0.02);
  z-index: -1;
}

.testimonials-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}

.testimonials-left {
  position: absolute;
  left: 5%;
}

@media screen and (max-width: 1399px) {
  .testimonials-left {
    width: 200px;
  }
}

@media screen and (max-width: 991px) {
  .testimonials-left {
    width: 150px;
  }
}

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

.testimonials-right {
  position: absolute;
  right: 5%;
  bottom: 13%;
}

@media screen and (max-width: 1399px) {
  .testimonials-right {
    width: 200px;
  }
}

@media screen and (max-width: 991px) {
  .testimonials-right {
    width: 150px;
  }
}

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

.testimonial-item {
  position: relative;
  height: 100%;
  margin-bottom: 10px;
  display: flex;
}

@media screen and (max-width: 575px) {
  .testimonial-item {
    flex-direction: column;
    overflow: hidden;
  }
}

.testimonial-item__content {
  justify-content: space-between;
  margin-left: 10px;
}

.testimonial-item__info {
  margin-bottom: 25px;
}

@media screen and (max-width: 424px) {
  .testimonial-item__info {
    margin-bottom: 10px;
  }
}

.testimonial-item__thumb {
  z-index: 22;
  padding: 12px;
  width: 538px;
}

@media screen and (max-width: 575px) {
  .testimonial-item__thumb {
    width: 250px;
  }
}

.testimonial-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}

.testimonial-item__name {
  margin-bottom: 0;
  color: hsl(var(--black));
}

.testimonial-item__designation {
  color: hsl(var(--black) / 0.8);
}

.testimonial-item__desc {
  color: hsl(var(--black));
  margin-bottom: 20px;
  font-size: 20px;
  font-style: italic;
  padding: 0 40px;
}

@media screen and (max-width: 424px) {
  .testimonial-item__desc {
    margin-bottom: 4px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial-item__desc {
    padding: 0;
  }
}

.testimonial-item__info img {
  height: 68px;
  width: 68px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

/*=================== Client area =========*/
.client-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.client-logos:last-of-type {
  margin-bottom: 0;
}

.client-logos img {
  width: 160px !important;
  padding: 15px;
  border: 3px solid hsl(var(--base) / 0.06);
}

.client-logos .slick-slide {
  margin: 0 10px;
}

/*=================== Client Page Logo =========*/
.client-logo {
  background-color: hsl(var(--white));
  padding: 40px 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
  border-radius: 5px;
  border: 1px solid hsl(var(--black) / 0.08);
  transition: 0.3s linear;
}

.client-logo:hover {
  background-color: hsl(var(--base-two));
}

/*============= Blog Style ===========*/
.blog .section-heading {
  padding-right: 20px;
}

@media screen and (max-width: 1399px) {
  .blog .section-heading {
    padding-right: 0;
  }
}

.blog-item {
  overflow: hidden;
  height: 100%;
}

.blog-item:hover .blog-item__thumb img {
  transform: scale(1.01);
  border-radius: 12px;
}

.blog-item:hover .blog-item__title img {
  color: hsl(var(--base));
  border-radius: 12px;
}

.blog-item__thumb {
  border-radius: 12px;
  position: relative;
}

.blog-item__thumb img {
  transition: 0.3s linear;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item__content {
  height: 100%;
}

.blog-item__title {
  margin-top: 20px;
}

@media screen and (max-width: 575px) {
  .blog-item__title {
    margin-top: 15px;
  }
}

.blog-item__title-link {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-size: 24px;
  font-weight: 700;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-item__desc {
  margin-bottom: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
  .blog-item__desc {
    margin-bottom: 15px;
  }
}

.blog-bottom-wrap {
  border-top: 1px solid hsl(var(--base) / 0.2);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-bottom-wrap .like-comment {
  display: flex;
  align-items: center;
}

.blog-bottom-wrap .like-comment .left-auth img {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  object-fit: cover;
  margin-right: 10px;
}

.blog-bottom-wrap .auth-name h5 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}

.blog-bottom-wrap .auth-name h5 span {
  color: hsl(var(--dark) / 0.6);
}

.blog-bottom-wrap .comments-like span {
  font-size: 15px;
  margin-left: 10px;
  display: inline-block;
}

.blog-bottom-wrap .comments-like span i {
  color: hsl(var(--base));
  font-size: 14px;
}

.date-wrap {
  position: absolute;
  background: hsl(var(--white));
  padding: 4px 14px;
  display: block;
  border-radius: 6px;
  bottom: 15px;
  left: 15px;
  z-index: 1;
  font-size: 30px;
  font-weight: 800;
  color: hsl(var(--base));
  line-height: 1.1;
  text-align: center;
}

.date-wrap span.month {
  color: hsl(var(--dark));
  display: block;
}

/*============= Video Start Here =======================*/
.video-left:hover .video-left__thumb img {
  transform: scale(1.2);
}

.video-left__thumb {
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 16px;
}

.video-left__thumb img {
  border-radius: 16px;
  width: 100%;
  transition: all 0.5s linear;
}

.video-left__thumb:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(var(--dark));
  opacity: 0.4;
  border-radius: 16px;
  z-index: 1;
}

.video-left__content a:hover {
  color: inherit;
}

.video-left .popup-vide-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  z-index: 4;
}

.video-left .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.video-left .meta .right-side-meta.ms-auto .like {
  margin-left: 10px;
}

.video-left .meta .right-side-meta.ms-auto .like i {
  color: hsl(var(--base));
}

.video-left .date i {
  color: hsl(var(--base));
}

/*============= Breaking News =============*/
.subscribe-wrap {
  padding: 30px 70px 30px;
  border-radius: 0px;
}

@media screen and (max-width: 767px) {
  .subscribe-wrap {
    padding: 40px;
  }
}

@media screen and (max-width: 374px) {
  .subscribe-wrap {
    padding: 20px;
  }
}

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

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

@media screen and (max-width: 424px) {
  .subscribe-wrap .section-heading__title {
    font-size: 22px;
  }
}

.subscribe-wrap p {
  margin-bottom: 20px;
}

.subscribe-wrap__input {
  position: relative;
}

.subscribe-wrap__input input {
  height: 60px;
  border-radius: 10px;
  background-color: hsl(var(--base) / 0.05);
  padding-right: 70px;
}

.subscribe-wrap__input button {
  position: absolute;
  height: 100%;
  width: 62px;
  background-color: hsl(var(--base));
  border-radius: 0px 0px 0px 0;
  right: 0;
  border-radius: 0px 10px 10px 0px;
}

.subscribe-right {
  position: relative;
}

.subscribe-right::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  left: 0px;
  bottom: 0px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    hsl(var(--base)) 100%
  );
}

/* =================== Featured Start Here ==================== */
.single-features {
  padding: 30px;
  display: flex;
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  background: linear-gradient(
    to left,
    hsl(var(--base) / 0.5) 0%,
    hsl(var(--white) / 0.08) 100%
  );
  position: relative;
  transition: all 0.4s;
  border-radius: var(--border-radius);
}

.single-features:hover::before {
  top: 0px;
  left: 0px;
}

.single-features::before {
  position: absolute;
  content: "";
  height: 101%;
  width: 100%;
  background-color: transparent;
  top: 10px;
  left: -11px;
  z-index: 1;
  border-radius: var(--border-radius);
  transition: 0.5s;
  border: 3px solid hsl(var(--black));
}

.single-features__icon {
  margin-right: 20px;
  position: relative;
}

.single-features__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px dashed hsl(var(--base));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 1;
  animation: rotation-circle 7s infinite linear;
}

.single-features__icon i {
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: hsl(var(--black));
}

@keyframes rotation-circle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}
/*====================== Checkout Page ====================*/
.cuppon-accor span {
  cursor: pointer;
  transition: all 0.4s;
}

.cuppon-accor span:hover {
  color: hsl(var(--base));
}

.product-card__cupon span {
  cursor: pointer;
  transition: all 0.4s;
}

.product-card__cupon span:hover {
  color: hsl(var(--base));
}

/*=================== Blog Details =========*/
.blog-details {
  overflow: hidden;
  box-shadow: 0px 2px 15px hsl(var(--white) / 0.25);
  padding-right: 50px;
}

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

.blog-details .blog-item:hover .blog-item__thumb img {
  transform: scale(1);
}

.blog-details .blog-item {
  box-shadow: none;
}

.blog-details .blog-item__thumb {
  height: 450px;
  max-height: 100%;
}

@media screen and (max-width: 991px) {
  .blog-details .blog-item__thumb {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .blog-details .blog-item__thumb {
    height: 300px;
  }
}

.blog-details .blog-item__thumb img {
  height: 450px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .blog-item__content {
  padding-bottom: 0;
}

.blog-details__content {
  padding: 20px 0px;
}

@media screen and (max-width: 767px) {
  .blog-details__content {
    padding: 20px 25px;
  }
}

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

.blog-details__title {
  margin-bottom: 15px;
}

.blog-details__desc {
  margin-bottom: 15px;
}

.blog-details .blog-bottom-wrap {
  border-top: 0;
  padding: 20px 25px 0px;
}

blockquote {
  background-color: hsl(var(--base) / 0.05);
  padding: 60px 20px 20px;
  border-radius: 5px;
  border-left: 3px solid hsl(var(--base));
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  margin-top: 30px;
}

blockquote::before {
  content: "\f10e";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 80px;
  top: -56px;
  right: 50%;
  z-index: -1;
  opacity: 0.4;
  transform: translateX(39%);
}

.social-list.blog-details a.social-list__link {
  color: hsl(var(--dark)) !important;
}

/*=================== Contact top Start =========*/
.contact-info__addres-wrap .single_wrapper {
  box-shadow: 0px 0px 11px 0px hsl(var(--base) / 0.1);
  border: 2px solid hsl(var(--base) / 0.1);
  transition: all 0.4s ease-in-out;
  padding: 34px;
  margin-bottom: 32px;
  border-radius: var(--border-radius);
}

.contact-info__addres-wrap .single_wrapper:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  border: 2px solid hsl(var(--base) / 0.4);
  transform: translateY(-3px);
}

.contact-info__addres-wrap .single_wrapper h4 {
  border-bottom: 1px solid hsl(var(--black) / 0.08);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.contact-info__addres-wrap .single_wrapper h3 {
  margin-bottom: 30px;
  text-transform: capitalize;
  color: hsl(var(--black));
}

.contact-info__addres-wrap .single_wrapper .single-info {
  display: flex;
  align-items: center;
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-icon {
  margin-right: 25px;
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-icon i {
  font-size: 40px;
  color: hsl(var(--base));
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-text h6 {
  font-size: 16px;
  font-weight: 400;
}

.contact-info__addres-wrap .single_wrapper .single-info .cont-text h6 a {
  color: hsl(var(--black) / 0.6);
}

.contact-map iframe {
  width: 100%;
  height: 500px;
}

.contactus-form {
  border: 1px solid hsl(var(--base) / 0.1);
  background-color: hsl(var(--white) / 0.1);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0px 0px 11px 0px hsl(var(--base) / 0.1);
}

@media screen and (max-width: 767px) {
  .contactus-form {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 575px) {
  .contactus-form {
    padding: 20px 15px;
  }
}
/*=================== Account =========*/
.account .login-bg-img {
  position: absolute;
  width: 48%;
  height: 100%;
  border-radius: 0;
  top: 0;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .account .login-bg-img {
    display: none;
  }
}

.account-inner {
  position: relative;
}

.border-box {
  padding: 30px;
  border: 1px solid hsl(var(--black) / 0.1);
  border-radius: 8px;
}

.account-form {
  border: 1px solid hsl(var(--black) / 0.1);
  background-color: hsl(var(--white) / 0.1);
  padding: 50px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media screen and (max-width: 1199px) {
  .account-form {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 991px) {
  .account-form {
    padding: 35px 25px;
  }
}

@media screen and (max-width: 767px) {
  .account-form {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 424px) {
  .account-form {
    padding: 30px 15px;
  }
}

.account-form__title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

.account-form__content {
  text-align: center;
  margin-bottom: 40px;
}

.account-form__desc {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 575px) {
  .account-form__desc {
    width: 100%;
  }
}

.account-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1199px) {
  .account-thumb {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 47%;
  }

  .account-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/*=================== Left Css =========*/
.policy-left {
  position: sticky;
  top: 100px;
}

.policy-left__wrapper {
  background-color: hsl(var(--white) / 0.2);
  padding: 45px 20px !important;
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  .policy-left__wrapper {
    padding: 30px 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .policy-left__wrapper {
    padding: 35px 15px !important;
  }
}

.policy-left .nav-link {
  padding: 0px;
  margin: 5px 0;
}

.policy-left .nav-link:hover {
  color: hsl(var(--base));
}

.policy-left__list {
  color: hsl(var(--white));
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 10px !important;
}

.policy-left__list.active {
  background-color: transparent !important;
  color: hsl(var(--base)) !important;
}

.policy-left__list.active::before {
  background-color: hsl(var(--base));
}

.policy-left__list::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 70%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: hsl(var(--white));
}

.policy-left__item {
  color: hsl(var(--body-color));
}

.policy-left__item span {
  font-size: 13px;
  margin-right: 10px;
}

.policy-left__item.active {
  color: hsl(var(--base)) !important;
  background-color: transparent !important;
}

.policy-right__list {
  margin-top: 30px;
}

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

.policy-card {
  background-color: hsl(var(--white) / 0.2);
  padding: 25px;
  border-radius: 5px;
}

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

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

.policy-card:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .policy-card:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .policy-card:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 575px) {
  .policy-card:not(:last-child) {
    margin-bottom: 30px;
  }
}

.policy-card__title {
  margin-bottom: 10px;
}

.policy-card__desc {
  margin-bottom: 30px;
}

@media (max-width: 757px) {
  .policy-card__desc {
    margin-bottom: 20px;
  }
}

.policy-card__desc:last-of-type {
  margin-bottom: 0;
}

/*============** Term Of Service **============*/
.single-terms h3 {
  font-size: 30px;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid hsl(var(--base));
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.single-terms p {
  margin-bottom: 15px;
}

.error-wrapper .container .row {
  height: 85vh;
}

.error-wrap {
  background: #f5f4f7;
  padding: 32px 0 45px;
  border-radius: 8px;
}

.error-wrap img {
  background: hsl(var(--danger));
}

.error-wrap__title {
  margin-bottom: 0;
}

.error-wrap__desc {
  margin-bottom: 30px;
  font-size: 18px;
}

.error__text span {
  font-size: 75px;
  font-weight: 800;
}

.error__text span:nth-child(2) {
  color: red;
}
/* cookie */
.cookies-card {
  position: fixed;
  bottom: 16px;
  padding: 10px;
  background: #fff;
  border: 1px solid hsl(var(--base));
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 99;
  margin: auto 10px;
}

/* -------------------------------------------------------search start loader------------------------------------------------------- */
.lds-spinner {
  color: hsl(var(--base));
  display: inline-block;
  position: relative;
  width: 80px;
  height: 112px;
  padding: 10px 0px;
  left: 50%;
  transform: translateX(-50%);
}

.lds-spinner2 {
  left: 0;
}
.lds-spinner_home {
  left: 0 !important;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 15px;
  left: 37px;
  width: 2px;
  height: 11px;
  border-radius: 20%;
  background: hsl(var(--black));
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* -------------------------------------------------------search end loader------------------------------------------------------- */
