@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Manrope", sans-serif;
    --body-font: "Inter", sans-serif;

    /* ========================= Theme Color Start ============================= */
    /* Base Color */
    --base-h: 146;
    --base-s: 84%;
    --base-l: 34%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
    /* ========================= Theme Color End ============================= */

    /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --black: 0 0% 0%;
    --heading-color: 240 4% 27%;
    --body-color: 0, 0%, 47%;
    /* --border-color: 218 12% 31%; */
    /* --border-color-two: 18 6% 35%; */
    /* --section-bg: 222 28% 7%; */
    /* --card-bg: 214 22% 14%; */
    /* --background-color: var(--black); */
    /* ========================= Color Variables End =========================== */

    /* ============================== Bootstrap Modifier Start ============================== */
    /* Primary Color */
    --primary-h: 211;
    --primary-s: 100%;
    --primary-l: 50%;
    --primary: var(--primary-h) var(--primary-s) var(--primary-l);
    --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
    --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
    --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
    --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
    --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
    --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
    --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
    --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
    --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
    --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
    /* Secondary Color */
    --secondary-h: 218;
    --secondary-s: 12%;
    --secondary-l: 31%;
    --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
    --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
    --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
    --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
    --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
    --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
    --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
    --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
    --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
    --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
    --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
    /* Success Color */
    --success-h: 134;
    --success-s: 61%;
    --success-l: 41%;
    --success: var(--success-h) var(--success-s) var(--success-l);
    --success-d-100: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.1);
    --success-d-200: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.2);
    --success-d-300: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.3);
    --success-d-400: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.4);
    --success-d-500: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.5);
    --success-l-100: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
    --success-l-200: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
    --success-l-300: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
    --success-l-400: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
    --success-l-500: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
    --success-two-h: 135;
    --success-two-s: 57%;
    --success-two-l: 58%;
    --success-two: var(--success-two-h) var(--success-two-s) var(--success-two-l);
    --success-two-d-100: var(--success-two-h) var(--success-two-s) calc(var(--success-two-l) - var(--success-two-l) * 0.1);
    --success-two-d-200: var(--success-two-h) var(--success-two-s) calc(var(--success-two-l) - var(--success-two-l) * 0.2);
    --success-two-d-300: var(--success-two-h) var(--success-two-s) calc(var(--success-two-l) - var(--success-two-l) * 0.3);
    --success-two-d-400: var(--success-two-h) var(--success-two-s) calc(var(--success-two-l) - var(--success-two-l) * 0.4);
    --success-two-d-500: var(--success-two-h) var(--success-two-s) calc(var(--success-two-l) - var(--success-two-l) * 0.5);
    --success-two-l-100: var(--success-two-h) calc(var(--success-two-s)) calc(var(--success-two-l) + (100% - var(--success-two-l)) * 0.1);
    --success-two-l-200: var(--success-two-h) calc(var(--success-two-s)) calc(var(--success-two-l) + (100% - var(--success-two-l)) * 0.2);
    --success-two-l-300: var(--success-two-h) calc(var(--success-two-s)) calc(var(--success-two-l) + (100% - var(--success-two-l)) * 0.3);
    --success-two-l-400: var(--success-two-h) calc(var(--success-two-s)) calc(var(--success-two-l) + (100% - var(--success-two-l)) * 0.4);
    --success-two-l-500: var(--success-two-h) calc(var(--success-two-s)) calc(var(--success-two-l) + (100% - var(--success-two-l)) * 0.5);
    /* Danger Color */
    --danger-h: 354;
    --danger-s: 70%;
    --danger-l: 54%;
    --danger: var(--danger-h) var(--danger-s) var(--danger-l);
    --danger-d-100: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.1);
    --danger-d-200: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.2);
    --danger-d-300: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.3);
    --danger-d-400: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.4);
    --danger-d-500: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.5);
    --danger-l-100: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
    --danger-l-200: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
    --danger-l-300: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
    --danger-l-400: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
    --danger-l-500: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
    --danger-two-h: 0;
    --danger-two-s: 91%;
    --danger-two-l: 71%;
    --danger-two: var(--danger-two-h) var(--danger-two-s) var(--danger-two-l);
    --danger-two-d-100: var(--danger-two-h) var(--danger-two-s) calc(var(--danger-two-l) - var(--danger-two-l) * 0.1);
    --danger-two-d-200: var(--danger-two-h) var(--danger-two-s) calc(var(--danger-two-l) - var(--danger-two-l) * 0.2);
    --danger-two-d-300: var(--danger-two-h) var(--danger-two-s) calc(var(--danger-two-l) - var(--danger-two-l) * 0.3);
    --danger-two-d-400: var(--danger-two-h) var(--danger-two-s) calc(var(--danger-two-l) - var(--danger-two-l) * 0.4);
    --danger-two-d-500: var(--danger-two-h) var(--danger-two-s) calc(var(--danger-two-l) - var(--danger-two-l) * 0.5);
    --danger-two-l-100: var(--danger-two-h) calc(var(--danger-two-s)) calc(var(--danger-two-l) + (100% - var(--danger-two-l)) * 0.1);
    --danger-two-l-200: var(--danger-two-h) calc(var(--danger-two-s)) calc(var(--danger-two-l) + (100% - var(--danger-two-l)) * 0.2);
    --danger-two-l-300: var(--danger-two-h) calc(var(--danger-two-s)) calc(var(--danger-two-l) + (100% - var(--danger-two-l)) * 0.3);
    --danger-two-l-400: var(--danger-two-h) calc(var(--danger-two-s)) calc(var(--danger-two-l) + (100% - var(--danger-two-l)) * 0.4);
    --danger-two-l-500: var(--danger-two-h) calc(var(--danger-two-s)) calc(var(--danger-two-l) + (100% - var(--danger-two-l)) * 0.5);
    /* Warning Color */
    --warning-h: 45;
    --warning-s: 100%;
    --warning-l: 51%;
    --warning: var(--warning-h) var(--warning-s) var(--warning-l);
    --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
    --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
    --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
    --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
    --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
    --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
    --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
    --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
    --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
    --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
    --warning-two-h: 48;
    --warning-two-s: 100%;
    --warning-two-l: 50%;
    --warning-two: var(--warning-two-h) var(--warning-two-s) var(--warning-two-l);
    --warning-two-d-100: var(--warning-two-h) var(--warning-two-s) calc(var(--warning-two-l) - var(--warning-two-l) * 0.1);
    --warning-two-d-200: var(--warning-two-h) var(--warning-two-s) calc(var(--warning-two-l) - var(--warning-two-l) * 0.2);
    --warning-two-d-300: var(--warning-two-h) var(--warning-two-s) calc(var(--warning-two-l) - var(--warning-two-l) * 0.3);
    --warning-two-d-400: var(--warning-two-h) var(--warning-two-s) calc(var(--warning-two-l) - var(--warning-two-l) * 0.4);
    --warning-two-d-500: var(--warning-two-h) var(--warning-two-s) calc(var(--warning-two-l) - var(--warning-two-l) * 0.5);
    --warning-two-l-100: var(--warning-two-h) calc(var(--warning-two-s)) calc(var(--warning-two-l) + (100% - var(--warning-two-l)) * 0.1);
    --warning-two-l-200: var(--warning-two-h) calc(var(--warning-two-s)) calc(var(--warning-two-l) + (100% - var(--warning-two-l)) * 0.2);
    --warning-two-l-300: var(--warning-two-h) calc(var(--warning-two-s)) calc(var(--warning-two-l) + (100% - var(--warning-two-l)) * 0.3);
    --warning-two-l-400: var(--warning-two-h) calc(var(--warning-two-s)) calc(var(--warning-two-l) + (100% - var(--warning-two-l)) * 0.4);
    --warning-two-l-500: var(--warning-two-h) calc(var(--warning-two-s)) calc(var(--warning-two-l) + (100% - var(--warning-two-l)) * 0.5);
    /* Info Color */
    --info-h: 188;
    --info-s: 78%;
    --info-l: 41%;
    --info: var(--info-h) var(--info-s) var(--info-l);
    --info-d-100: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.1);
    --info-d-200: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.2);
    --info-d-300: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.3);
    --info-d-400: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.4);
    --info-d-500: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.5);
    --info-l-100: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
    --info-l-200: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
    --info-l-300: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
    --info-l-400: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
    --info-l-500: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
    /* Dark Color */
    --dark-h: 210;
    --dark-s: 10%;
    --dark-l: 23%;
    --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-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);
    /* Light Color */
    --light-h: 240;
    --light-s: 7%;
    --light-l: 97%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --light-d-100: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.1);
    --light-d-200: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.2);
    --light-d-300: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.3);
    --light-d-400: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.4);
    --light-d-500: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.5);
    --light-l-100: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.1);
    --light-l-200: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.2);
    --light-l-300: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.3);
    --light-l-400: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.4);
    --light-l-500: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.5);
    /* Light Color */
    --orange-h: 25;
    --orange-s: 88%;
    --orange-l: 40%;
    --orange: var(--orange-h) var(--orange-s) var(--orange-l);
    --orange-d-100: var(--orange-h) var(--orange-s) calc(var(--orange-l) - var(--orange-l) * 0.1);
    --orange-d-200: var(--orange-h) var(--orange-s) calc(var(--orange-l) - var(--orange-l) * 0.2);
    --orange-d-300: var(--orange-h) var(--orange-s) calc(var(--orange-l) - var(--orange-l) * 0.3);
    --orange-d-400: var(--orange-h) var(--orange-s) calc(var(--orange-l) - var(--orange-l) * 0.4);
    --orange-d-500: var(--orange-h) var(--orange-s) calc(var(--orange-l) - var(--orange-l) * 0.5);
    --orange-l-100: var(--orange-h) calc(var(--orange-s)) calc(var(--orange-l) + (100% - var(--orange-l)) * 0.1);
    --orange-l-200: var(--orange-h) calc(var(--orange-s)) calc(var(--orange-l) + (100% - var(--orange-l)) * 0.2);
    --orange-l-300: var(--orange-h) calc(var(--orange-s)) calc(var(--orange-l) + (100% - var(--orange-l)) * 0.3);
    --orange-l-400: var(--orange-h) calc(var(--orange-s)) calc(var(--orange-l) + (100% - var(--orange-l)) * 0.4);
    --orange-l-500: var(--orange-h) calc(var(--orange-s)) calc(var(--orange-l) + (100% - var(--orange-l)) * 0.5);
    --orange-two-h: 25;
    --orange-two-s: 96%;
    --orange-two-l: 61%;
    --orange-two: var(--orange-two-h) var(--orange-two-s) var(--orange-two-l);
    --orange-two-d-100: var(--orange-two-h) var(--orange-two-s) calc(var(--orange-two-l) - var(--orange-two-l) * 0.1);
    --orange-two-d-200: var(--orange-two-h) var(--orange-two-s) calc(var(--orange-two-l) - var(--orange-two-l) * 0.2);
    --orange-two-d-300: var(--orange-two-h) var(--orange-two-s) calc(var(--orange-two-l) - var(--orange-two-l) * 0.3);
    --orange-two-d-400: var(--orange-two-h) var(--orange-two-s) calc(var(--orange-two-l) - var(--orange-two-l) * 0.4);
    --orange-two-d-500: var(--orange-two-h) var(--orange-two-s) calc(var(--orange-two-l) - var(--orange-two-l) * 0.5);
    --orange-two-l-100: var(--orange-two-h) calc(var(--orange-two-s)) calc(var(--orange-two-l) + (100% - var(--orange-two-l)) * 0.1);
    --orange-two-l-200: var(--orange-two-h) calc(var(--orange-two-s)) calc(var(--orange-two-l) + (100% - var(--orange-two-l)) * 0.2);
    --orange-two-l-300: var(--orange-two-h) calc(var(--orange-two-s)) calc(var(--orange-two-l) + (100% - var(--orange-two-l)) * 0.3);
    --orange-two-l-400: var(--orange-two-h) calc(var(--orange-two-s)) calc(var(--orange-two-l) + (100% - var(--orange-two-l)) * 0.4);
    --orange-two-l-500: var(--orange-two-h) calc(var(--orange-two-s)) calc(var(--orange-two-l) + (100% - var(--orange-two-l)) * 0.5);
    /* ============================== Bootstrap Modifier End ============================== */
}



.theme-one {
    color: #3f58e3 !important;
}

.theme-one-bg {
    background: #3f58e3 !important;
}

.theme-two {
    color: #05b9c8 !important;
}

.theme-two-bg {
    background: #05b9c8 !important;
}

.theme-three {
    color: #b31da3 !important;
}

.theme-three-bg {
    background: #b31da3 !important;
}

.theme-four {
    color: #7e2afc !important;
}

.theme-four-bg {
    background: #7e2afc !important;
}

.gradient-one {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(14%, #4057e3),
            color-stop(73%, #0091ff)) !important;
    background: linear-gradient(180deg, #4057e3 14%, #0091ff 73%) !important;
}

.gradient-two {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(19%, #05b9c8),
            color-stop(58%, #15d6b0),
            color-stop(81%, #25f398)) !important;
    background: linear-gradient(180deg,
            #05b9c8 19%,
            #15d6b0 58%,
            #25f398 81%) !important;
}

.gradient-three {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(9%, #b31da3),
            color-stop(50%, #d63f87),
            color-stop(88%, #f9606a)) !important;
    background: linear-gradient(180deg,
            #b31da3 9%,
            #d63f87 50%,
            #f9606a 88%) !important;
}

.gradient-four {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(39%, #7e2afc),
            color-stop(70%, #903df7),
            color-stop(88%, #a250f2)) !important;
    background: linear-gradient(180deg,
            #7e2afc 39%,
            #903df7 70%,
            #a250f2 88%) !important;
}

/* Text Color */

.text--primary {
    color: #1b273d !important;
}

.text--secondary {
    color: #554bb9 !important;
}

.text--base {
    color: hsl(var(--base)) !important;
}

.text--danger {
    color: #dc3545 !important;
}

.text--warning {
    color: #ffc107 !important;
}

.text--info {
    color: #17a2b8 !important;
}

.text--success {
    color: #28a745 !important;
}

.text--dark {
    color: #343a40 !important;
}

.text--white {
    color: hsl(var(--white)) !important;
}

/* Btn Color */

.btn {
    padding: 11px 28px;
    cursor: pointer;
    background-color: transparent;
    color: hsl(var(--white)) !important;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    line-height: 1;
}

.btn {
    color: hsl(var(--white)) !important;
}

.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.btn--base {
    background-color: hsl(var(--base)) !important;
}

.btn--base:hover,
.btn--base:focus .btn--base:focus-visible {
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid hsl(var(--base-d-200)) !important;
}

.btn-outline--base {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base)) !important;
    color: hsl(var(--base)) !important;
}

.btn-outline--base:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--primary {
    background-color: hsl(var(--primary)) !important;
}

.btn--primary:hover,
.btn--primary:focus .btn--primary:focus-visible {
    background-color: hsl(var(--primary-d-200)) !important;
    border: 1px solid hsl(var(--primary-d-200)) !important;
}

.btn-outline--primary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--primary)) !important;
    color: hsl(var(--primary)) !important;
}

.btn-outline--primary:hover,
.btn-outline--primary:focus .btn-outline--primary:focus-visible {
    background-color: hsl(var(--primary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--secondary {
    background-color: hsl(var(--secondary)) !important;
}

.btn--secondary:hover,
.btn--secondary:focus .btn--secondary:focus-visible {
    background-color: hsl(var(--secondary-d-200)) !important;
    border: 1px solid hsl(var(--secondary-d-200)) !important;
}

.btn-outline--secondary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--secondary)) !important;
    color: hsl(var(--secondary)) !important;
}

.btn-outline--secondary:hover,
.btn-outline--secondary:focus .btn-outline--secondary:focus-visible {
    background-color: hsl(var(--secondary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--success {
    background-color: hsl(var(--success)) !important;
}

.btn--success:hover,
.btn--success:focus .btn--success:focus-visible {
    background-color: hsl(var(--success-d-200)) !important;
    border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
    background-color: transparent !important;
    border: 1px solid hsl(var(--success)) !important;
    color: hsl(var(--success)) !important;
}

.btn-outline--success:hover,
.btn-outline--success:focus .btn-outline--success:focus-visible {
    background-color: hsl(var(--success)) !important;
    color: hsl(var(--white)) !important;
}

.btn--danger {
    background-color: hsl(var(--danger)) !important;
}

.btn--danger:hover,
.btn--danger:focus .btn--danger:focus-visible {
    background-color: hsl(var(--danger-d-200)) !important;
    border: 1px solid hsl(var(--danger-d-200)) !important;
}

.btn-outline--danger {
    background-color: transparent !important;
    border: 1px solid hsl(var(--danger)) !important;
    color: hsl(var(--danger)) !important;
}

.btn-outline--danger:hover,
.btn-outline--danger:focus .btn-outline--danger:focus-visible {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}

.btn--warning {
    background-color: hsl(var(--warning)) !important;
}

.btn--warning:hover,
.btn--warning:focus .btn--warning:focus-visible {
    background-color: hsl(var(--warning-d-200)) !important;
    border: 1px solid hsl(var(--warning-d-200)) !important;
}

.btn-outline--warning {
    background-color: transparent !important;
    border: 1px solid hsl(var(--warning)) !important;
    color: hsl(var(--warning)) !important;
}

.btn-outline--warning:hover,
.btn-outline--warning:focus .btn-outline--warning:focus-visible {
    background-color: hsl(var(--warning)) !important;
    color: hsl(var(--white)) !important;
}

.btn--info {
    background-color: hsl(var(--info)) !important;
}

.btn--info:hover,
.btn--info:focus .btn--info:focus-visible {
    background-color: hsl(var(--info-d-200)) !important;
    border: 1px solid hsl(var(--info-d-200)) !important;
}

.btn-outline--info {
    background-color: transparent !important;
    border: 1px solid hsl(var(--info)) !important;
    color: hsl(var(--info)) !important;
}

.btn-outline--info:hover,
.btn-outline--info:focus .btn-outline--info:focus-visible {
    background-color: hsl(var(--info)) !important;
    color: hsl(var(--white)) !important;
}

.btn--dark {
    background-color: hsl(var(--dark)) !important;
}

.btn--dark:hover,
.btn--dark:focus .btn--dark:focus-visible {
    background-color: hsl(var(--dark-d-200)) !important;
    border: 1px solid hsl(var(--dark-d-200)) !important;
}

.btn-outline--dark {
    background-color: transparent !important;
    border: 1px solid hsl(var(--dark)) !important;
    color: hsl(var(--dark)) !important;
}

.btn-outline--dark:hover,
.btn-outline--dark:focus .btn-outline--dark:focus-visible {
    background-color: hsl(var(--dark)) !important;
    color: hsl(var(--white)) !important;
}

/* Background Color */

.bg--primary {
    background: #1b273d !important;
}

.bg--secondary {
    background: #554bb9 !important;
}

.bg--base {
    background: hsl(var(--base)) !important;
}

.bg--danger {
    background: #dc3545 !important;
}

.bg--warning {
    background: #ffc107 !important;
}

.bg--info {
    background: #17a2b8 !important;
}

.bg--success {
    background: #28a745 !important;
}

.bg--dark {
    background: #343a40 !important;
}

.bg--white {
    background: hsl(var(--white)) !important;
}

.bg--none {
    background: transparent !important;
}

.facebook {
    color: #3b5998;
}

.twitter {
    color: #55acee;
}

.vimeo {
    color: #1ab7ea;
}

.instagram {
    color: #e4405f;
}

.facebook-bg {
    background: #3b5998;
}

.twitter-bg {
    background: #55acee;
}

.vimeo-bg {
    background: #1ab7ea;
}

.instagram-bg {
    background: #e4405f;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    color: hsl(var(--body-color));
    overflow-x: hidden !important;
    font-family: var(--body-font);
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: hsl(var(--heading-color));
    font-family: var(--heading-font);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: hsl(var(--heading-color));
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: hsl(var(--base));
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
    margin-top: -10px;
}

h3 {
    font-size: 1.875rem;
    margin-top: -6px;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin: 0;
    padding: 0;
    color: hsl(var(--body-color));
    font-size: 1rem;
    line-height: 1.75;

}

@media (max-width: 991px) {
    p {
        font-size: 0.938rem;
    }
}

@media (max-width: 575px) {
    p {
        font-size: 0.875rem;
    }
}

a {
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-decoration: none;
    color: hsl(var(--body-color));
}

a:hover {
    color: hsl(var(--base));
}

span {
    display: inline-block;
}

ul {
    margin: -7px 0;
    padding: 0;
}

ul li {
    list-style: none;
    padding: 7px 0;
}

.bg_img {
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat !important;
}

.bg_fixed {
    background-attachment: fixed !important;
}

input,
textarea,
button {
    border: none;
    outline: none;
}

label {
    margin-bottom: 7px;
    cursor: pointer;
}

.form--control {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.875rem;
    -webkit-box-shadow: 3px 3px 10px 3px rgba(27, 39, 61, 0.04);
    box-shadow: 3px 3px 10px 3px rgba(27, 39, 61, 0.04);
    border: 1px solid rgba(27, 39, 61, 0.1);
    line-height: 1;
    outline: 0 !important;
}

.form--control[readonly] {
    background: #fafafa;
}

.form--control[readonly]:focus {
    background: #fafafa;
}

.form--control:focus {
    background-color: hsl(var(--white));
    -webkit-box-shadow: 1px 1px 10px 3px hsl(var(--base)/.1);
    box-shadow: 1px 1px 10px 3px hsl(var(--base)/.1);
    border: 1px solid hsl(var(--base)/.9);
}

::-webkit-input-placeholder {
    color: #1f1f1f;
    line-height: 1;
}

textarea {
    width: 100%;
    height: 130px;
    resize: vertical;
    background: hsl(var(--white));
    padding: 20px;
    border-radius: 5px;
    padding-top: 25px;
    overflow: hidden;
    font-weight: 400;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

textarea.form--control {
    height: 100px;
    padding-top: 10px;
}

img {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.title,
.name {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.section-bg {
    background: #f6f6f7;
}

section ::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}

section ::-webkit-scrollbar-thumb {
    background: rgba(27, 39, 61, 0.35) !important;
    border-radius: 5px !important;
}

.nice-select {
    height: 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    -webkit-box-shadow: 3px 3px 10px 3px rgba(27, 39, 61, 0.05);
    box-shadow: 3px 3px 10px 3px rgba(27, 39, 61, 0.05);
}

.nice-select ::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}

.nice-select ::-webkit-scrollbar-thumb {
    background: rgba(27, 39, 61, 0.35) !important;
    border-radius: 5px !important;
}

.nice-select .list {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: auto;
}

.nice-select .list li {
    min-height: 20px;
    max-height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.custom--checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.custom--checkbox label {
    margin-bottom: -2px;
    padding-left: 7px;
}

.custom--checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 15px;
    width: 15px;
    cursor: pointer;
    background: hsl(var(--white));
    border: 1px solid rgba(27, 39, 61, 0.4);
    border-radius: 2px;
    margin-top: 2px;
    border-radius: 2px;
}

.custom--checkbox input[type="checkbox"]:checked {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.custom--checkbox input[type="checkbox"]::after {
    position: absolute;
    font-weight: 900;
    font-size: 1rem;
    font-family: "Line Awesome Free";
    content: "\f14a";
    font-size: 1.25rem;
    color: hsl(var(--base));
    visibility: hidden;
    opacity: 0;
}

.custom--checkbox input[type="checkbox"]:checked::after {
    visibility: visible;
    opacity: 1;
}

.custom--radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.custom--radio label {
    margin-bottom: -2px;
    padding-left: 7px;
}

.custom--radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 15px;
    width: 15px;
    cursor: pointer;
    background: hsl(var(--white));
    border: 1px solid rgba(27, 39, 61, 0.4);
    border-radius: 2px;
    margin-top: 6px;
    border-radius: 2px;
}

.custom--radio input[type="radio"]:checked {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.custom--radio input[type="radio"]::after {
    position: absolute;
    font-weight: 900;
    font-size: 1rem;
    font-family: "Line Awesome Free";
    content: "\f14a";
    font-size: 1.25rem;
    color: hsl(var(--base));
    visibility: hidden;
    opacity: 0;
}

.custom--radio input[type="radio"]:checked::after {
    visibility: visible;
    opacity: 1;
}

.scrollToTop {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--white));
    z-index: 2;
    bottom: 30px;
    right: 30px;
    font-size: 1.125rem;
    position: fixed;
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
    background: hsl(var(--base));
    border-radius: 3px;
}

.scrollToTop:hover {
    color: hsl(var(--white));
}

.scrollToTop.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation: bounceInDown 2s;
    animation: bounceInDown 2s;
}

.pos-rel {
    position: relative !important;
}

.slick-list {
    padding: 0 !important;
}

i {
    line-height: 1;
}

@media (min-width: 1200px) {
    .padding-top {
        padding-top: 80px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.875rem;
    }

    h4 {
        font-size: 1.375rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1.125rem;
    }

    .padding-top {
        padding-top: 90px;
    }

    .padding-bottom {
        padding-bottom: 90px;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    .padding-top {
        padding-top: 80px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.375rem;
    }

    h6 {
        font-size: 1.125rem;
    }

    .padding-top {
        padding-top: 70px;
    }

    .padding-bottom {
        padding-bottom: 70px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.625rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    h6 {
        font-size: 1rem;
    }

    .padding-top {
        padding-top: 60px;
    }

    .padding-bottom {
        padding-bottom: 60px;
    }

    .container,
    .container-fluid {
        max-width: 460px !important;
    }
}

.cmn--btn {
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 12px 25px;
    border-color: hsl(var(--base)) !important;
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    font-weight: 600;
}

.cmn--btn:hover {
    color: hsl(var(--white)) !important;
    border-color: hsl(var(--base-d-200)) !important;
    background-color: hsl(var(--base-d-200)) !important;
}

@media (max-width: 575px) {
    .cmn--btn {
        padding: 10px 15px;
        font-size: 0.8125rem;
    }
}

.cmn--btn.btn--sm,
.btn.btn--sm {
    padding: 6px 15px !important;
    height: auto;
}

.video-button {
    width: 55px;
    height: 55px;
    z-index: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    -webkit-box-shadow: 0 0 10px 3px rgba(31, 31, 31, 0.2);
    box-shadow: 0 0 10px 3px rgba(31, 31, 31, 0.2);
}

@media (max-width: 1399px) {
    .video-button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 1199px) {
    .video-button {
        width: 40px;
        height: 40px;
    }
}

.video-button::before {
    position: absolute;
    content: "";
    left: -7px;
    right: -7px;
    bottom: -7px;
    top: -7px;
    border-radius: 50%;
}

.video-button img {
    max-width: 24px;
    width: 100%;
    z-index: 1;
}

.video-button i {
    font-size: 1.5rem;
    color: hsl(var(--white));
    z-index: 1;
}


.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .scroll-hide {
        padding-right: 0;
    }
}

.scroll-hide-sm {
    position: absolute;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: #1b273dc2;
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show {
    visibility: visible;
    opacity: 1;
}

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: #1b273dc2;
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

.header.sticky .menu a:hover {
    color: hsl(var(--base));
}

.header.sticky .menu .sub-menu a {
    color: hsl(var(--body-color));
}

.header.sticky .menu .sub-menu a:hover {
    color: hsl(var(--white)) !important;
}

.header-bottom {
    position: sticky;
    top: 0;
    background: hsl(var(--white));
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    width: 100%;
    -webkit-box-shadow: 0 3px 20px 1px rgba(31, 31, 31, 0.07);
    box-shadow: 0 3px 20px 1px rgba(31, 31, 31, 0.07);
    z-index: 111;
}

@media (max-width: 991px) {
    .header-bottom {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .after-overlay {
        display: none;
    }
}

@media (max-width: 991px) {
    .after-overlay {
        position: absolute;
        background: #1b273dc2;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        transition: 0.2s linear;
        visibility: hidden;
        opacity: 0;
    }

    .after-overlay.show {
        visibility: visible;
        opacity: 1;
        z-index: 2;
    }
}


.modal {
    z-index: 9999;
}

.header-bottom-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    position: relative;
    padding: 7px 0;
}

@media (max-width: 991px) {
    .header-bottom-area {
        padding: 0;
    }
}

.logo img {
    max-width: 170px;
    max-height: 80px;
}

@media (max-width: 991px) {
    .header-bottom-area .logo img {
        max-width: 155px;
        max-height: 61px;
    }
}

@media (max-width: 575px) {
    .header-bottom-area .logo img {
        max-width: 140px;
        max-height: 55px;
    }
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 50px;
}

.menu>.has-sub-menu {
    margin-right: 15px;
}

@media (min-width: 992px) {
    .menu>.has-sub-menu.open .sub-menu {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .menu .sub-menu {
        display: block !important;
    }
}

.menu li {
    margin-right: 35px;
    padding: 0;
    position: relative;
}

.menu li.active a {
    color: hsl(var(--base));
}

.menu li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.menu li.has-sub-menu>a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 22px 0;
    padding-right: 22px;
}

.menu li.has-sub-menu>a::after {
    position: absolute;
    content: "\f107";
    font-weight: 900;
    font-family: "Line Awesome Free";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0.875rem;
}

.menu li a {
    padding: 29px 0;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    color: #1f1f1f;
    font-family: var(--heading-font);
}

.menu li a:hover {
    color: hsl(var(--base));
}

@media (max-width: 1199px) {
    .menu li a {
        font-size: 0.9375rem;
    }
}

.menu li a.color {
    background: rgba(27, 39, 61, 0.9);
    color: hsl(var(--white)) !important;
}

@media (max-width: 991px) {
    .menu {
        margin-left: 0;
    }

    .menu li {
        margin-right: 0;
    }

    .menu li a:not(.cmn--btn) {
        color: hsl(var(--heading-color));
        display: block;
        padding: 8px 20px;
        font-size: 0.938rem !important;
    }

    .menu li.buy-ticket-btn-wrapper {
        padding: 10px 20px 0 !important;
    }

    .menu li.buy-ticket-btn-wrapper .cmn--btn {
        font-size: 0.938rem !important;
        color: hsl(var(--white)) !important;
    }
}

@media (min-width: 992px) {
    .sub-menu {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        min-width: 180px;
        background: hsl(var(--white));
        border-radius: 5px !important;
        top: 100%;
        right: 0;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        z-index: 11;
        -webkit-box-shadow: 0 3px 15px 1px rgba(31, 31, 31, 0.08);
        box-shadow: 0 3px 15px 1px rgba(31, 31, 31, 0.08);
        overflow: hidden;
    }

    .sub-menu li {
        margin-right: 0;
        padding: 0;
        border-bottom: 1px dashed rgba(27, 39, 61, 0.2);
    }

    .sub-menu li:last-child {
        border: none;
    }

    .sub-menu li a {
        font-size: 0.875rem;
        padding: 5px 15px;
        display: block;
        color: hsl(var(--body-color)) !important;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-line-clamp: 1;
    }

    .sub-menu li a:hover {
        padding-left: 20px;
        background: hsl(var(--base));
        color: hsl(var(--white)) !important;
    }

    .sub-menu li:hover {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .sub-menu li .sub-menu {
        visibility: hidden;
        opacity: 0;
        top: 5px;
        left: -100%;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    .sub-menu li.has-sub-menu>a::after {
        -webkit-transform: translate(-20px, -50%);
        transform: translate(-20px, -50%);
    }
}

.header-trigger-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.header-trigger {
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 35px;
    border: 1px solid hsl(var(--base));
    border-radius: 3px;
    align-items: center;
    justify-content: center;
}


.header-trigger.disabled {
    border-color: #1b273d;
    opacity: 0.5;
}

.header-trigger.disabled span {
    background: none;
}

.seat-condition.sold.disabled {
    pointer-events: none;
}

.header-trigger.disabled span::before {
    -webkit-transform: rotate(-45deg) translate(-4px, 4px);
    transform: rotate(-45deg) translate(-3px, 4px);
    background: #1b273d;
    opacity: 0.5;
}

.header-trigger.disabled span::after {
    -webkit-transform: rotate(45deg) translate(-4px, -4px);
    transform: rotate(45deg) translate(-4px, -4px);
    background: #1b273d;
    opacity: 0.5;
}

.header-trigger span {
    width: 25px;
    height: 2px;
    background: hsl(var(--base));
    position: relative;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.header-trigger span::after,
.header-trigger span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: hsl(var(--base));
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.header-trigger span::after {
    bottom: -5px;
}

.header-trigger span::before {
    top: -5px;
}

.menu-list-wrapper .close-icon {
    display: none;
    color: hsl(var(--heading-color));
    font-size: 1.4rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .header-area {
        position: relative;
    }

    .menu>li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu-list-wrapper .close-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-list-wrapper {
        height: 100vh;
        overflow-y: auto;
        z-index: 999;
        transition: 0.2s linear;
        width: 320px;
        border-radius: 0;
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        align-items: start;
        flex-direction: row;
        padding-top: 20px;
    }

    .menu-list-wrapper.active {
        background: hsl(var(--white));
        opacity: 1;
        visibility: visible;
        z-index: 9992;
        transform: translateX(0);
    }

    .menu.active .cmn--btn {
        border-color: hsl(var(--white));
    }

    .menu .has-sub-menu>a::after {
        -webkit-transform: translate(-20px, -50%) !important;
        transform: translate(-20px, -50%) !important;
    }

    .menu li {
        padding: 0 !important;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .menu li .sub-menu {
        background: rgba(27, 39, 61, 0.85);
    }

    .menu li.has-sub-menu a::after {
        -webkit-transform: translate(-20px, -50%) !important;
        transform: translate(-20px, -50%) !important;
    }

    .menu li .button-area {
        margin-bottom: -10px;
    }

    .menu li .cmn--btn {
        margin-bottom: 10px;
    }

    .sub-menu {
        display: none;
        padding-left: 25px;
        background: hsl(var(--white));
    }

    .menu-list-wrapper .top {
        align-items: center;
        justify-content: space-between;
        padding: 0 20px 20px;
    }

    .menu-list-wrapper .top .logo img {
        max-width: 125px;
        max-height: 48px;
    }
}

@media (max-width: 575px) {
    .logo img {
        max-height: 60px;
        max-width: 150px;
    }
}

.header-top {
    padding: 5px 0;
    border-bottom: 1px solid rgba(27, 39, 61, 0.1);
    font-size: 0.875rem;
}

.header-top-area {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu-list-wrapper .header-top-area {
    display: none;
}

@media (max-width: 991px) {
    .header-top {
        display: none;
    }

    .menu-list-wrapper .header-top-area {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        padding: 0 20px;
    }
}


@media (max-width: 991px) {
    .header-top-area {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header-top-area .left-content li {
    padding: 0;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}

.header-top-area .left-content li:last-child::before {
    background: none;
}

.header-top-area .left-content li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    width: 1px;
    height: 50%;
    background: rgba(14, 158, 77, 0.3);
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 449px) {
    .header-top-area .left-content li::before {
        background: none;
    }
}

.header-top-area .left-content li i {
    color: hsl(var(--base));
    text-align: center;
    line-height: 35px;
    font-size: 1.125rem;
    margin-right: 3px;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .header-top-area .left-content {
        margin-bottom: 10px;
        width: 100%;
        flex-direction: column;
    }

    .header-top-area .right-content {
        width: 100%;
        justify-content: space-between;
    }

    .header-top-area .left-content li a {
        color: hsl(var(--white));
        font-size: 0.875rem;
    }

    .header-top-area .left-content li {
        padding-right: 0;
        margin-right: 0;
    }

    .header-top-area .left-content li::before {
        display: none;
    }

    .header-top-area .left-content li i {
        color: hsl(var(--white));
    }
}

.header-top-area .right-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-top-area .right-content .nice-select {
    height: 35px;
}

.header-top-area .right-content .cancel-ticket {
    margin-right: 15px;
}

.header-top-area .right-content .header-login {
    margin-left: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgba(31, 31, 31, 0.1);
    border-radius: 3px;
}

.header-top-area .right-content .header-login li {
    padding: 0;
    line-height: 1;
    padding: 10px 9px;
}

.header-top-area .right-content .header-login li i {
    color: hsl(var(--base));
    margin-right: 5px;
}

.header-top-area .right-content .header-login li .sign-in {
    color: hsl(var(--base));
}

/* account wrapper start */
.account-link-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
}

.account-link {
    color: hsl(var(--body-color));
    font-weight: 500;
    position: relative;
}

.account-link::before {
    position: absolute;
    content: '';
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: hsl(var(--body-color));
}

.account-link:last-child::before {
    display: none;
}

/* account wrapper end */


@media screen and (max-width: 449px) {
    .header-top-area .right-content .header-login {
        margin: 0;
    }
}

.social-icons {
    margin-top: 15px;
    margin-left: -5px;
}

.social-icons li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.social-icons li a:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.social-icons li a:hover i {
    color: hsl(var(--white));
    font-size: 1.25rem;
}

.social-icons li a i {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.banner-section {
    padding: 75px 0 200px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .banner-section {
        padding: 60px 0 185px;
    }
}

@media (max-width: 1199px) {
    .banner-section {
        padding: 50px 0 180px;
    }
}

@media (max-width: 991px) {
    .banner-section {
        padding: 45px 0 175px;
    }

    .account-link {
        color: hsl(var(--white));
        font-size: 0.875rem;
    }

    .account-link::before {
        background-color: hsl(var(--white));
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding: 40px 0 170px;
    }
}

@media (max-width: 575px) {
    .banner-section {
        padding: 32px 0 160px;
    }
}

@media (max-width: 424px) {
    .banner-section {
        padding: 28px 0 155px;
    }
}


.banner-section::before,
.banner-section::after {
    content: "";
    background-color: hsl(var(--base)/.2);
    position: absolute;
    -webkit-transform: translate(50%);
    transform: translate(50%);
    border-radius: 50%;
    width: 460px;
    height: 380px;
    right: 50px;
    top: -195px;
}

@media (max-width: 1399px) {

    .banner-section::before,
    .banner-section::after {
        right: 30px;
        top: -215px;
    }
}

@media (max-width: 1199px) {

    .banner-section::before,
    .banner-section::after {
        right: 10px;
        top: -232px;
    }
}

@media (max-width: 991px) {

    .banner-section::before,
    .banner-section::after {
        width: 385px;
        height: 350px;
    }
}

@media (max-width: 767px) {

    .banner-section::before,
    .banner-section::after {
        width: 345px;
        height: 328px;
    }
}

.banner-section::after {
    background-color: hsl(var(--base)/.3);
    top: -180px;
    right: 51px;
}

@media (max-width: 1399px) {
    .banner-section::after {
        top: -193px;
        right: 29px;
    }
}

@media (max-width: 1199px) {
    .banner-section::after {
        top: -217px;
        right: 8px;
    }
}

.banner-section .container {
    position: relative;
    z-index: 3;
}

.banner-section .shape {
    position: absolute;
    bottom: 0;
    right: -300px;
    width: 200px;
    -webkit-animation: run 20s linear infinite;
    animation: run 20s linear infinite;
}

@media (max-width: 991px) {
    .banner-section .shape {
        width: 150px;
        animation: run 15s linear infinite;
    }
}

@media (max-width: 767px) {
    .banner-section .shape {
        width: 130px;
        animation: run 10s linear infinite;
    }
}

.banner-section .shape img {
    width: 100%;
}

@-webkit-keyframes run {
    0% {
        right: -300px;
    }

    100% {
        right: calc(100% + 300px);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes run {
    0% {
        right: 0;
    }

    100% {
        right: 100%;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.banner-content__title {
    margin: 0 auto 32px;
    text-align: center;
    font-weight: 800;
    font-family: var(--body-font);
}

@media (max-width: 1399px) {
    .banner-content__title {
        max-width: 570px;
        font-size: 2.813rem;
        margin: 0 auto 30px;
    }
}

@media (max-width: 1199px) {
    .banner-content__title {
        max-width: 480px;
        font-size: 2.625rem;
    }
}

@media (max-width: 991px) {
    .banner-content__title {
        font-size: 2.5rem;
        margin: 0 auto 25px;
    }
}

@media (max-width: 767px) {
    .banner-content__title {
        font-size: 2.375rem;
        margin: 0 auto 20px;
    }
}

@media (max-width: 575px) {
    .banner-content__title {
        font-size: 2.25rem;
        width: 100%;
        margin: 0 auto 15px;
    }
}

@media (max-width: 424px) {
    .banner-content__title {
        font-size: 2rem;
    }
}

@media (max-width: 374px) {
    .banner-content__title {
        font-size: 1.75rem;
    }
}

.banner-content .cmn--btn {
    margin-top: 35px;
    word-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .banner-content .cmn--btn {
        margin-top: 25px;
    }
}

.inner-banner {
    overflow: hidden;
    position: relative;
    padding: 70px 0;
}

@media screen and (max-width: 575px) {
    .inner-banner {
        padding: 40px 0;
    }
}

.inner-banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(27 39 61 / 67%);
}

.inner-banner .inner-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    text-align: center;
}

.inner-banner .inner-banner-content .title {
    font-size: 2rem;
    color: hsl(var(--white));
}

@media (max-width: 1199px) {
    .inner-banner .inner-banner-content .title {
        font-size: 1.5625rem;
    }
}

@media (max-width: 767px) {
    .inner-banner .inner-banner-content .title {
        font-size: 1.5625rem;
    }
}

@media (max-width: 575px) {
    .inner-banner .inner-banner-content .title {
        font-size: 1.25rem;
    }
}


.inner-banner .inner-banner-content .breadcums {
    margin-top: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: -30px;
}

.inner-banner .inner-banner-content .breadcums li {
    padding: 0;
    padding-right: 30px;
    color: hsl(var(--white));
}

.inner-banner .inner-banner-content .breadcums li a {
    position: relative;
    font-size: 1.125rem;
    color: hsl(var(--white));
}

.inner-banner .inner-banner-content .breadcums li a:hover {
    color: hsl(var(--base));
}

.inner-banner .inner-banner-content .breadcums li .home {
    padding-right: 10px;
}

.inner-banner .inner-banner-content .breadcums li .home::before {
    position: absolute;
    font-weight: 900;
    font-size: 1rem;
    font-family: "Line Awesome Free";
    content: "\f061";
    left: 100%;
    top: 2px;
    color: hsl(var(--white));
}

.ui-widget-header {
    background: hsl(var(--base)/.9);
    color: hsl(var(--white)) !important;
}

.ui-state-default {
    border: 0 !important;
    background: rgba(27, 39, 61, 0.06) !important;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.ui-state-active {
    background: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.footer-top {
    background: rgba(27, 39, 61, 0.99);
    padding: 80px 0;
}

.footer-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-widget * {
    color: rgba(255, 255, 255, 0.85);
}

.footer-widget .logo {
    margin-bottom: 15px;
}

.footer-widget .widget-title {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    color: hsl(var(--base)) !important;
}

@media (max-width: 575px) {
    .footer-widget .widget-title {
        margin-bottom: 20px;
    }
}

.footer-widget .widget-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    width: 75px;
    height: 1px;
    background: hsl(var(--base)/.7);
    bottom: 0;
    left: 0;
}

.footer-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    width: 45px;
    height: 1px;
    background: hsl(var(--base)/.7);
    bottom: -5px;
    left: 0;
}

.footer-widget .footer-links {
    font-size: 0.9375rem;
}

.footer-contacts li {
    display: flex;
}

.footer-contacts li i {
    margin-top: 6px;
    margin-right: 7px;
}

.footer-widget .footer-links li {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    position: relative;
    padding-left: 20px;
}

.footer-widget .footer-links li:hover::before {
    color: hsl(var(--base));
}

.footer-widget .footer-links li::before {
    position: absolute;
    content: "\f101";
    font-family: "Line Awesome Free";
    font-size: 1rem;
    left: 0;
    top: 7px;
    font-weight: 900;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

@media (max-width: 575px) {
    .footer-widget .footer-links li {
        font-size: 0.875rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-widget .footer-links li:last-child {
        border-bottom: none;
    }
}

.footer-widget .footer-links li a {
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-widget .footer-links li a i {
    padding: 0 5px;
}

.footer-widget .footer-links li :hover * {
    color: hsl(var(--base));
}

.ticket-form-wrapper {
    border-radius: 10px;
}

.ticket-form-pick-drop-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ticket-form-pick-drop-wrapper .form--group {
    width: calc(50% - 20px);
}

@media (max-width: 991px) {
    .ticket-form-pick-drop-wrapper .form--group {
        width: calc(50% - 17px);
    }
}

@media (max-width: 424px) {
    .ticket-form-pick-drop-wrapper {
        gap: 12px;
    }

    .ticket-form-pick-drop-wrapper .form--group {
        width: 100%;
    }
}

.ticket-form-pick-drop-wrapper .changeStoppage {
    font-size: 1rem;
    color: hsl(var(--heading-color));
    cursor: pointer;
    line-height: 1;
    width: 16px;
    height: 16px;
    margin: 0 12px;
}

.ticket-form-pick-drop-wrapper .changeStoppage:hover {
    color: hsl(var(--base));
}


@media (max-width: 991px) {
    .ticket-form-pick-drop-wrapper .changeStoppage {
        font-size: 0.875rem;
        width: 14px;
        height: 14px;
        margin: 0 10px;
    }
}

@media (max-width: 424px) {
    .ticket-form-pick-drop-wrapper .changeStoppage {
        width: auto;
        height: auto;
        margin: 0 auto;
    }

    .ticket-form-pick-drop-wrapper .changeStoppage i {
        transform: rotate(90deg);
    }
}

.ticket-form-wrapper .ticket-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .ticket-form-wrapper .ticket-header {
        margin-bottom: 25px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .ticket-form-wrapper .ticket-type {
        margin-top: 5px;
    }
}

.ticket-form-wrapper .ticket-type li a {
    font-size: 0.875rem;
    background: hsl(var(--white));
    color: hsl(var(--base));
    padding: 5px 15px;
}

.ticket-form-wrapper .ticket-type li a.active {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.ticket-form {
    background: hsl(var(--white));
    -webkit-box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.1);
    box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.1);
    padding: 30px 15px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) {
    .ticket-form {
        padding: 25px 10px;
    }
}

@media (max-width: 991px) {
    .ticket-form {
        padding: 15px 10px 25px;
    }

    .ticket-form .form--group.forResponsive {
        padding-right: 5px;
    }

    .ticket-form .form--group.forResponsiveTwo {
        padding-left: 5px;
    }
}

@media (max-width: 767px) {
    .ticket-form {
        padding: 10px 5px 20px;
    }
}


@media (max-width: 575px) {
    .ticket-form .form--group.forResponsive {
        padding-right: 0;
    }

    .ticket-form .form--group.forResponsiveTwo {
        padding-left: 0;
    }
}

.ticket-form .form--group {
    position: relative;
}

.ticket-form .form--group i {
    position: absolute;
    padding: 5px;
    left: 5px;
    top: 3px;
    font-size: 1.25rem;
    line-height: 23px;
    color: hsl(var(--base));
    z-index: 11;
}

.ticket-form .form--group .form--control {
    border-color: hsl(var(--base)/.25);
    padding-left: 35px;
    height: 40px;
}

.ticket-form .form--group .form--control:focus {
    border-color: rgba(14, 158, 77, 0.95);
}

.ticket-form .form--group button {
    height: 40px;
}

.ticket-cancellation .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ticket-cancellation-wrapper {
    max-width: 740px;
    padding: 40px 35px;
    border-radius: 10px;
    margin: 0 auto;
    text-align: center;
    -webkit-box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.1);
    box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.1);
    background: hsl(var(--white));
}

@media (max-width: 575px) {
    .ticket-cancellation-wrapper {
        padding: 20px 15px;
    }
}

.ticket-cancellation-wrapper .title {
    margin-bottom: 10px;
}

.ticket-cancellation-wrapper p {
    margin-bottom: 35px;
}

.ticket-cancellation-form {
    text-align: left;
}

.ticket-cancellation-form .form--group {
    position: relative;
}

.ticket-cancellation-form .form--group label span {
    color: #f53b57;
}

.ticket-cancellation-form .form--group .otp-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
}

.ticket-cancellation-form .otp-btn {
    height: 40px;
    margin: 0;
    line-height: 1;
    padding: 0 18px;
    font-size: 0.8125rem;
}

.ticket-cancellation-form button {
    margin-top: 10px;
}

.cancellation-notice {
    text-align: center;
    background: hsl(var(--white));
    padding: 35px 30px;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .cancellation-notice {
        padding: 25px 15px;
    }
}

.cancellation-notice .title {
    margin-bottom: 15px;
}

.cancellation-notice p {
    margin-bottom: 8px;
}

.bus-reservation-wrapper {
    background: hsl(var(--white));
    padding: 35px 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px rgba(27, 39, 61, 0.07);
    box-shadow: 0 0 15px rgba(27, 39, 61, 0.07);
}

@media (max-width: 575px) {
    .bus-reservation-wrapper {
        padding: 20px 15px;
    }
}

.bus-reservation-wrapper .title {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(27, 39, 61, 0.1);
    padding-bottom: 10px;
}

.bus-reservation-wrapper .title.contact {
    margin-top: 20px;
    margin-bottom: 0px;
}

.bus-reservation-form .form--group label {
    font-weight: 600;
    font-family: 14px;
}

.blog-details {
    overflow: initial !important;
}

.blog-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    padding-left: 10px;
}

@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
    }
}

.blog-sidebar .sidebar-item {
    background: rgba(27, 39, 61, 0.05);
}

.blog-sidebar .sidebar-item:last-child {
    margin-bottom: 0;
}

.blog-sidebar .sidebar-item .search-bar {
    margin-bottom: 20px;
    position: relative;
}

@media (max-width: 575px) {
    .blog-sidebar .sidebar-item .search-bar {
        margin-bottom: 5px;
    }
}

.blog-sidebar .sidebar-item .search-bar .form--control {
    padding-right: 60px;
}

.blog-sidebar .sidebar-item .search-bar .search-button {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    padding: 10px 20px;
    font-size: 1.375rem;
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.blog-sidebar .sidebar-item .item-inner {
    padding: 20px;
    background: hsl(var(--white));
    border: 1px solid #ebebeb;
}

.blog-sidebar .sidebar-item .item-inner__title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}

.blog-sidebar .sidebar-item .item-inner .title {
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-sidebar .sidebar-item .lastest-post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}

.blog-sidebar .sidebar-item .lastest-post-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

.blog-sidebar .sidebar-item .lastest-post-item .thumb {
    width: 80px;
    height: 70px;
}

@media (max-width: 575px) {
    .blog-sidebar .sidebar-item .lastest-post-item .thumb {
        width: 60px;
        height: 60px;
    }
}

.blog-sidebar .sidebar-item .lastest-post-item .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-sidebar .sidebar-item .lastest-post-item .content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.blog-sidebar .sidebar-item .lastest-post-item .content .title {
    font-size: 1rem !important;
}

@media (max-width: 575px) {
    .blog-sidebar .sidebar-item .lastest-post-item .content .title {
        margin-bottom: 5px;
    }
}

.blog-sidebar .sidebar-item .lastest-post-item .content .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.blog-sidebar .sidebar-item .lastest-post-item .content .meta-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-sidebar .sidebar-item .lastest-post-item .content .meta-post li {
    padding: 1px 0;
    font-size: 0.8125rem;
    font-style: italic;
}

.blog-sidebar .sidebar-item .category-wrapper ul .category-item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}

.blog-sidebar .sidebar-item .category-wrapper ul .category-item:last-child {
    border: 0;
}

.blog-sidebar .sidebar-item .category-wrapper ul .category-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 500;
}

.blog-sidebar .sidebar-item .archives {
    padding-bottom: 80px;
}

.blog-sidebar .sidebar-item .news-tags .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-sidebar .sidebar-item .news-tags .tag-item {
    width: auto;
    padding: 4px;
}

.blog-sidebar .sidebar-item .news-tags .tag-item a {
    padding: 5px 13px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
}

.blog-sidebar .sidebar-item .news-tags .tag-item a:hover {
    border-color: hsl(var(--base));
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .pagination {
        margin-top: 40px;
    }
}

.pagination li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(31, 31, 31, 0.12);
    border-radius: 50% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5px;
    font-weight: 500;
    box-shadow: none !important;
}

.pagination li a.active,
.pagination li a:hover {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
}

.filter-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100% !important;
}

.filter-header .reset-button {
    width: auto;
    background: none;
    color: hsl(var(--body-color));
    padding: 3px 5px;
    font-weight: 500;
    font-size: 0.875rem;
}

.ticket-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.filter-item {
    padding: 15px 15px 25px;
    background: hsl(var(--white));
    border-bottom: 1px solid rgba(27, 39, 61, 0.1);
    width: 100%;
}

.filter-item:first-child {
    border-radius: 5px 5px 0 0;
}

.filter-item:last-child {
    border-bottom: 0;
    border-radius: 0 0 5px 5px;
}

@media (max-width: 991px) {
    .filter-item {
        padding: 25px 25px 30px;
    }
}

@media (max-width: 575px) {
    .filter-item {
        padding: 15px 15px 25px;
    }
}

.filter-item .title {
    margin-bottom: 15px;
}

.filter-item .bus-type li {
    width: 100%;
    padding: 5px 0px;
}

.filter-item .bus-type li span {
    display: block;
    padding: 3px 8px;
    background: #f6f6f7;
    border-radius: 3px;
    font-size: 0.875rem;
}

.filter-item .bus-type li span i {
    margin-right: 5px;
}

.package-sidebar .sidebar-item {
    margin-bottom: 40px;
    padding: 20px 15px 30px;
    background: rgba(27, 39, 61, 0.015);
    border-radius: 3px;
}

.package-sidebar .sidebar-item.sort-by {
    padding-bottom: 80px;
}

.package-sidebar .sidebar-item .title {
    margin-bottom: 15px;
}

.package-sidebar .sidebar-item .form--group {
    position: relative;
}

.package-sidebar .sidebar-item .form--group .form--control {
    height: 45px;
}

.package-sidebar .sidebar-item .form--group .search-btn {
    position: absolute;
    height: 100%;
    width: auto;
    right: 0;
    top: 0;
    font-size: 1.25rem;
}

.package-sidebar .sidebar-item .package-cate {
    margin: 0;
}

.package-sidebar .sidebar-item .package-cate .cate-item {
    padding: 4px !important;
    display: inline-block;
}

.package-sidebar .sidebar-item .package-cate .cate-item a {
    padding: 10px 20px;
    line-height: 1;
    border: 1px solid rgba(27, 39, 61, 0.1);
    background: hsl(var(--white));
    font-size: 0.875rem;
}

.account-section {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0;
}

@media (max-width: 1399px) {
    .account-section {
        padding: 40px 0;
    }
}

@media (max-width: 1199px) {
    .account-section {
        padding: 35px 0;
    }
}

@media (max-width: 991px) {
    .account-section {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .account-section {
        padding: 25px 0;
    }
}

.account-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: hsl(var(--black)/.2);
}

.account-section .container {
    position: relative;
    z-index: 1;
}

.account-section .spark {
    position: absolute;
    background: hsl(var(--white));
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: radial-gradient(circle,
            #ffe2e2 0%,
            rgba(255, 255, 255, 0) 51%,
            rgba(0, 212, 255, 0) 100%);
    left: 11%;
    bottom: 130px;
    opacity: 0.5;
    -webkit-animation: pulse 2s linear infinite;
    animation: pulse 2s linear infinite;
}

@media screen and (max-width: 1620px) {
    .account-section .spark {
        width: 40px;
        height: 40px;
        bottom: 110px;
    }
}

@media screen and (max-width: 1366px) {
    .account-section .spark {
        width: 30px;
        height: 30px;
        bottom: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .account-section .spark {
        width: 30px;
        height: 30px;
        bottom: 80px;
    }
}

.account-section .spark2 {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: radial-gradient(circle,
            #ffe2e2 0%,
            rgba(255, 255, 255, 0) 51%,
            rgba(0, 212, 255, 0) 100%);
    left: 22%;
    bottom: 135px;
    opacity: 0.5;
    -webkit-animation: pulse 2s linear infinite;
    animation: pulse 2s linear infinite;
}

@media screen and (max-width: 1620px) {
    .account-section .spark2 {
        width: 40px;
        height: 40px;
        bottom: 110px;
    }
}

@media screen and (max-width: 1366px) {
    .account-section .spark2 {
        width: 30px;
        height: 30px;
        bottom: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .account-section .spark2 {
        left: 30%;
        width: 30px;
        height: 30px;
        bottom: 90px;
    }
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0.2;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 0.2;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 0.2;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.account-wrapper {
    position: relative;
    background: hsl(var(--white));
    border-radius: 10px;
    padding: 50px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .account-wrapper {
        padding: 40px 35px;
    }
}

@media (max-width: 991px) {
    .account-wrapper {
        padding: 32px 30px;
    }
}

@media (max-width: 575px) {
    .account-wrapper {
        padding: 28px 25px;
        border-radius: 8px;
    }
}

@media (max-width: 424px) {
    .account-wrapper {
        padding: 25px 20px;
        border-radius: 5px;
    }
}

@media (max-width: 374px) {
    .account-wrapper {
        padding: 22px 15px;
    }
}

.account-form-wrapper {
    position: relative;
    z-index: 10;
}

.account-form .form--control {
    box-shadow: none;
}

.h-40 {
    height: 40px !important;
}

.account-form-wrapper p {
    word-break: keep-all;
}

.account-form-wrapper p a {
    color: hsl(var(--base)) !important;
}

.account-form-wrapper p a:hover {
    text-decoration: underline;
}

.account-page-link {
    margin-top: 10px;
}

.account-form-wrapper p a:hover {
    color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.account-header {
    margin-bottom: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199px) {
    .account-header {
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .account-header {
        margin-bottom: 20px;
    }
}

.account-header .title {
    margin-bottom: 5px;
    color: hsl(var(--base));
}

.account-form {
    z-index: 1;
}

.account-form .form--group {
    margin-bottom: 10px;
}

.account-form .form--group label {
    color: #1f1f1f;
}

@media (max-width: 991px) {

    .account-form .form--group label,
    .forgot-password {
        font-size: 0.938rem;
    }
}

@media (max-width: 575px) {

    .account-form .form--group label,
    .forgot-password {
        font-size: 0.875rem;
    }
}

.account-form .form--group label span {
    color: #f53b57;
}

.account-form .form--group ::-webkit-input-placeholder {
    color: hsl(var(--body-color));
}

.account-form .form--group .account-button {
    margin-top: 10px;
    width: 100%;
}

.post-item:hover .post-thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.post-thumb {
    overflow: hidden;
    border-radius: 8px;
}

.post-thumb img {
    width: 100%;
}

.post-content {
    padding-top: 15px;
}

.post-content .title {
    margin-bottom: 5px;
}

.post-content .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.post-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    margin-bottom: 10px;
}

.post-content .post-date {
    margin-bottom: 12px;
}

.post-content .post-date,
.post-content .post-link {
    font-size: 0.875rem;
    font-weight: 600;
}

.post-content .post-date i {
    margin-right: 5px;
    color: hsl(var(--base));
}

.post-content .post-link i {
    position: relative;
    padding-left: 2px;
    top: 1px;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.post-content .post-link:hover i {
    transform: rotate(0deg);
}

.post-details-content {
    padding-top: 25px;
}

.post-details-content .meta-post li {
    margin-right: 25px;
}

.post-details-content .meta-post li i {
    margin-right: 5px;
    color: hsl(var(--base));
}

.post-details-content .title {
    margin-bottom: 25px;
}

.post-details-content .blog-details-pera {
    margin-bottom: 20px;
}

.post-details-content .info li {
    padding-left: 20px;
    position: relative;
}

.post-details-content .info li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    content: "\f14a";
    font-weight: 900;
    font-family: "Line Awesome Free";
    left: 0;
    top: 6px;
    color: #1b273d;
    margin-right: 5px;
}

.post-details-content .quote-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 25px 20px;
    background: rgba(27, 39, 61, 0.03);
}

.post-details-content .quote-wrapper p {
    border-left: 2px solid hsl(var(--base));
    padding-left: 10px;
}

.post-details-content .quote-wrapper p i {
    font-size: 2.875rem;
    color: hsl(var(--base));
}


@media (max-width: 1199px) {
    .post-content {
        padding-top: 12px;
    }

    .post-content .post-date {
        margin-bottom: 8px;
    }

    .post-content p {
        margin-bottom: 8px;
    }
}

@media (max-width: 767px) {
    .post-content {
        padding-top: 10px;
    }

    .post-content .post-date {
        margin-bottom: 6px;
    }

    .post-content p {
        margin-bottom: 6px;
    }

    .post-content .post-date,
    .post-content .post-link {
        font-size: 0.813rem;
    }
}

.post-details-content .content-inner .meta-post {
    margin: 5px 0;
    margin-bottom: 10px;
}

.post-details-content .content-inner .meta-post li {
    padding: 2px 0;
}

.post-details-content .meta-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
}

.post-details-content .meta-content .title {
    margin: 0;
    margin-right: 15px;
}

.post-details-content .meta-content li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-details-content .meta-content li .la-heart {
    color: #f53b57;
}

.post-details-content .meta-content li i {
    margin-right: 7px;
}

.post-details-content .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
}

.post-details-content .social-icons li a {
    background: none;
    margin: 5px;
    border: none;
}

.post-details-content .social-icons li a:hover i {
    color: initial !important;
}

.post-details-content .social-icons li i {
    margin: 0 !important;
}

.post-author-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 40px 0;
    padding: 30px 20px;
    background: rgba(27, 39, 61, 0.03);
}

.post-author-area .author-thumb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.post-author-area .author-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.post-author-area .author-content {
    width: calc(100% - 100px);
    padding-left: 25px;
}

.post-author-area .author-content .name {
    margin-bottom: 10px;
}

.post-comment-area .post-comment-title {
    margin-bottom: 25px;
}

.comment-area {
    margin-top: 60px;
    margin-bottom: 50px;
}

.comment-area .title {
    margin-bottom: 27px;
}

@media (max-width: 575px) {
    .comment-area .title {
        margin-bottom: 0;
    }
}

.comments li {
    padding: 0;
    border-bottom: 1px solid #ebebeb;
}

.comments li:last-child {
    border-bottom: none;
}

.comments .comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px 0;
    padding-top: 35px;
    border-bottom: 1px solid #ebebeb;
}

.comments .comment-item:hover .reply {
    background: hsl(var(--base));
    color: hsl(var(--white)) !important;
    font-weight: 500;
}

.comments .comment-item:hover .reply:hover {
    background: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.comments .comment-item:last-child {
    border-bottom: none;
}

.comments .comment-item .thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.comments .comment-item .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.comments .comment-item .content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.comments .comment-item .content .comment-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.comments .comment-item .content .comment-header .left-content .name {
    margin-bottom: 3px;
}

.comments .comment-item .content .comment-header .left-content .time {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.comments .comment-item .content .comment-header .reply {
    text-transform: uppercase;
    font-size: 0.875rem;
    color: hsl(var(--body-color));
    border-color: #ebebeb;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 3px;
}

.comments .comment-item .content .comment-header .reply:hover {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 575px) {
    .comments .comment-item .content {
        width: 100%;
        padding: 0;
        margin-top: 15px;
    }
}

.comments .comment .comments {
    padding-left: 45px;
}

@media (max-width: 575px) {
    .comments .comment .comments {
        padding-left: 20px;
    }
}

.comment-form-area {
    margin-top: 60px;
}

.comment-form-area .title {
    margin-bottom: 27px;
}

.comment-form-area .comment-form .comment-btn {
    display: inline-block;
    padding: 10px 30px;
    width: auto;
    background: hsl(var(--base));
    margin-top: 8px;
}

.background-image {
    position: relative;
    padding-bottom: 175px;
}

@media (max-width: 767px) {
    .background-image {
        padding-bottom: 100px;
    }
}

.background-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(27, 39, 61, 0.4);
}

.pb-60 {
    padding-bottom: 60px;
}

@media (max-767px) {
    .pb-60 {
        margin-bottom: 40px;
    }
}

@media (max-575px) {
    .pb-60 {
        margin-bottom: 30px;
    }
}

.background-image .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    border-radius: 10px;
    background: hsl(var(--white));
    -webkit-box-shadow: 0 3px 15px rgba(27, 39, 61, 0.2);
    box-shadow: 0 3px 15px rgba(27, 39, 61, 0.2);
    overflow: hidden;
}

.contact-wrapper .title {
    margin-top: 0;
    margin-bottom: 25px;
}

.contact-form .form--group label {
    line-height: 1;
    font-weight: 600;
    color: #1f1f1f;
    font-size: 0.875rem;
}

.contact-form .form--group label span {
    color: #f53b57;
}

.contact-form .form--group ::-webkit-input-placeholder {
    color: hsl(var(--body-color));
}

.contact-form .contact-button {
    height: 45px;
    color: rgba(255, 255, 255, 0.95);
    width: auto;
}

.info-item {
    position: relative;
    z-index: 1;
    border: 1px solid #efefef;
    transition: all ease-in 0.3s;
    border-radius: 10px;
    height: 100%;
    display: flex;
    padding: 25px 20px;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    color: hsl(var(--base));
}

.info-item .content {
    width: calc(100% - 40px);
    padding-left: 20px;
}

.info-item .content .title {
    margin-bottom: 10px;
}

.info-item .content a {
    word-break: break-all;
    display: block;
}

.map-wrapper {
    margin-bottom: -8px;
}

.map-wrapper .map {
    width: 100%;
    min-height: 400px;
    height: 100%;
}

.dashboard-wrapper .title {
    margin-bottom: 25px;
}

.dashboard-section {
    background: rgba(27, 39, 61, 0.06);
}

.dashboard-section .pagination {
    margin: 0;
}

.dashboard-section .custom-pagination {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .dashboard-section .custom-pagination {
        margin-top: 20px;
    }
}

.dashboard-section .pagination li a {
    background: hsl(var(--white));
}

.dashboard-section .pagination li a.active,
.dashboard-section .pagination li a:hover {
    background: hsl(var(--base));
}

.booking-table-wrapper {
    background-color: hsl(var(--white));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(31, 31, 35, 0.1);
}

.booking-table {
    margin: 0;
    border: none;
    width: 100%;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
}

.booking-table thead tr {
    background: #081a41;
}

.booking-table thead tr:nth-child(even) {
    background: transparent;
}

.booking-table thead tr:nth-child(even) th {
    padding: 6px 0 !important;
}

.booking-table thead tr th {
    padding: 10px 15px;
    font-family: var(--heading-font);
    color: hsl(var(--white));
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.booking-table thead tr th:first-child {
    border-radius: 15px 0 0 0;
}

.booking-table thead tr th:last-child {
    border-radius: 0px 15px 0 0px;
}

.booking-table tbody {
    font-size: 0.875rem;
}

.booking-table tbody tr {
    background: hsl(var(--white));
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.booking-table thead tr th:first-child {
    text-align: left;
}

.booking-table thead tr th:last-child {
    text-align: right;
}

.booking-table tbody tr td:first-child {
    text-align: left;
}

.booking-table tbody tr td:last-child {
    text-align: right;
}

.booking-table tbody tr:last-child {
    border-bottom: 0;
    border-radius: 0 0 15px 15px;
}

.booking-table tbody tr .action-button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 200px;
    margin-left: auto;
}

.booking-table tbody tr .action-button-wrapper a {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 3px;
}

.booking-table tbody tr .action-button-wrapper .print {
    font-size: 1.125rem;
    color: hsl(var(--base));
    background: hsl(var(--base)/.1);
}

.booking-table tbody tr .action-button-wrapper .checkinfo {
    font-size: 1.125rem;
    color: #081a41;
    background: rgba(7, 10, 185, 0.1);
}

.booking-table tbody tr .action-button-wrapper .del {
    font-size: 1.125rem;
    color: #f53b57;
    margin-left: 10px;
    background: rgba(245, 59, 87, 0.1);
}

.booking-table tbody tr .serial {
    font-weight: 500;
    color: #1f1f1f;
}

.booking-table tbody tr .ticket-no {
    color: #554bb9;
}

.booking-table tbody tr .pickup,
.booking-table tbody tr .drop {
    color: hsl(var(--base));
}

.booking-table tbody tr .date {
    font-size: 0.875rem;
}

.booking-table tbody tr .time {
    color: #554bb9;
}

.booking-table tbody tr .seats {
    color: hsl(var(--base));
    word-break: break-all;
}

.booking-table tbody tr .fare {
    font-weight: 500;
    color: #554bb9;
}

.booking-table tbody tr td {
    color: hsl(var(--body-color));
    vertical-align: middle;
    padding: 12px 15px;
}

.booking-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 15px;
}

.booking-table tbody tr:last-child td:last-child {
    border-radius: 0px 0 15px 0px;
}

.booking-table tbody tr td .badge {
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .booking-table tbody tr td {
        border: none;
        border-bottom: 1px solid rgba(27, 39, 61, 0.1);
    }

    .booking-table tbody tr td:last-child {
        border: none;
    }
}

.booking-table .details {
    max-width: 250px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .booking-table thead {
        display: none;
    }

    .booking-table tbody tr {
        display: block;
    }

    .booking-table tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-collapse: collapse;
        padding: 10px 15px;
        border-radius: 0 !important;
    }

    .booking-table tbody tr td::before {
        content: attr(data-label);
        font-family: var(--heading-font);
        font-size: 0.875rem;
        color: hsl(var(--heading-color));
        font-weight: 500;
    }

    .booking-table tbody tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.3);
    }
}

.working-process-item {
    text-align: center;
    padding: 30px 25px 15px;
    position: relative;
    -webkit-box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.05);
    box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.05);
    border-radius: 5px;
}

.working-process-item:hover {
    -webkit-box-shadow: 0 0 18px 3px rgba(27, 39, 61, 0.08);
    box-shadow: 0 0 18px 3px rgba(27, 39, 61, 0.08);
}

@media (min-width: 1200px) {
    .working-process-item {
        padding: 35px 30px 25px;
    }
}

.working-process-item .thumb-wrapper {
    display: inline-block;
    position: relative;
}

.working-process-item .thumb-wrapper span {
    position: absolute;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    width: 35px;
    height: 35px;
    right: -15px;
    top: -15px;
    border-radius: 50%;
    background: hsl(var(--base));
    font-size: 0.875rem;
    color: hsl(var(--white));
}

.selection {
    display: block !important;
}

.working-process-item .thumb {
    width: 80px;
    height: 80px;
    -webkit-box-shadow: 0 0 0 8px hsl(var(--base)/.1);
    box-shadow: 0 0 0 8px hsl(var(--base)/.1);
    margin: 0 auto 20px;
    border-radius: 50%;
    font-size: 2rem;
    color: hsl(var(--base));
    background: hsl(var(--base)/.25);
}

@media (max-width: 1199px) {
    .working-process-item .thumb {
        width: 70px;
        height: 70px;
        font-size: 1.875rem;
    }
}

.working-process-item .content .title {
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .working-process-item .content .title {
        margin-bottom: 5px;
    }
}

.route-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.route-item:hover .route-content .title {
    color: hsl(var(--base));
}

.route-item .icon {
    width: 20px;
    font-size: 1.25rem;
    margin: 0 10px;
}

.route-item .icon img {
    width: 100%;
}

@media (max-width: 1199px) {
    .route-item .icon {
        margin: 10px auto;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@media (max-width: 1199px) {
    .route-item {
        display: block;
    }
}

.route-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 25px;
    border: 1px solid hsl(var(--base)/.25);
    border-radius: 5px;
    height: 100%;
}

.route-inner .route-icon {
    width: 35px;
    height: 35px;
    font-size: 2.125rem;
    color: hsl(var(--base));
    border-radius: 5px;
    line-height: 1;
    margin-left: -10px;
}

.route-inner .route-content {
    width: calc(100% - 35px);
    padding-left: 15px;
}

.route-inner .route-content .route-to {
    margin-top: 7px;
}

.route-inner .route-content .route-to li {
    padding: 2px 3px;
    line-height: 1.3;
    color: hsl(var(--body-color));
}

.choose-us .section-header {
    margin-bottom: 70px;
}

.choose-item {
    text-align: center;
    padding: 15px 20px;
}

@media (max-width: 1199px) {
    .choose-item {
        padding: 15px 0;
    }
}

.choose-item-thumb {
    width: 100%;
    margin: 0 auto 25px;
    position: relative;
}

.choose-item-thumb::before,
.choose-item-thumb::after {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    background: rgba(85, 75, 185, 0.1);
    top: -20px;
    border-radius: 62% 20% 40% 40% / 56% 19% 73% 42%;
}

@media (max-width: 991px) {

    .choose-item-thumb::before,
    .choose-item-thumb::after {
        width: 100px;
        height: 100px;
    }
}

.choose-item-thumb::before {
    top: -20%;
    left: 25%;
    border-radius: 23% 78% 27% 70% / 56% 56% 41% 42%;
}

.choose-item-thumb::after {
    left: 40%;
}

.choose-item-thumb img {
    max-width: 120px;
    max-width: 100px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .choose-item-thumb img {
        max-width: 100px;
    }
}

.choose-item-content {
    position: relative;
    z-index: 1;
}

.choose-item-content .title {
    margin-bottom: 5px;
}

.slick-list {
    padding: 10px 0 !important;
}

.amenities-item {
    -webkit-box-shadow: 0 0 7px rgba(27, 39, 61, 0.25);
    box-shadow: 0 0 7px rgba(27, 39, 61, 0.25);
    padding: 25px 30px;
    text-align: center;
    border-radius: 5px;
    margin: 0 10px;
}

@media (max-width: 1199px) {
    .amenities-item {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .amenities-item {
        padding: 25px 30px;
    }
}

@media (max-width: 575px) {
    .amenities-item {
        padding: 15px 20px;
        margin: 0 5px;
    }
}

.amenities-item:hover {
    -webkit-box-shadow: 0 0 10px 1px hsl(var(--base)/.25);
    box-shadow: 0 0 10px 1px hsl(var(--base)/.25);
}

.amenities-item:hover .thumb {
    color: rgba(14, 158, 77, 0.8);
    border-color: rgba(14, 158, 77, 0.6);
}

.amenities-item .thumb {
    display: inline-block;
    font-size: 3.75rem;
    color: rgba(27, 39, 61, 0.5);
    border-bottom: 2px solid rgba(27, 39, 61, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .amenities-item .thumb {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .amenities-item .thumb {
        font-size: 3rem;
        padding-bottom: 6px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .amenities-item .thumb {
        font-size: 2.625rem;
    }
}

.amenities-item .title {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(27, 39, 61, 0.5);
}

@media (max-width: 1199px) {
    .amenities-item .title {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .amenities-item .title {
        font-size: 0.9375rem;
    }
}

@media (max-width: 575px) {
    .amenities-item .title {
        font-size: 0.875rem;
    }
}

.cmn--btn.btn--sm {
    padding: 5px 13px !important;
    font-size: 0.8125rem !important;
    font-weight: 600;
    word-spacing: 4px;
}

.package-item {
    -webkit-box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.1);
    box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.1);
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.package-item:hover {
    -webkit-box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.2);
    box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.2);
}

.package-item:hover .package-thumb {
    overflow: hidden;
}

.package-item:hover .package-thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.package-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.package-thumb .discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: hsl(var(--base));
    color: hsl(var(--white));
    padding: 8px;
    padding-left: 20px;
    border-radius: 0 3px 3px 0;
    line-height: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    font-size: 0.875rem;
}

.package-thumb img {
    width: 100%;
}

.package-content {
    padding: 20px 15px;
    border-radius: 0 0 5px 5px;
}

.package-content .tour {
    font-weight: 500 !important;
}

.package-content .location {
    margin-bottom: 15px;
    font-size: 0.875rem;
}

.package-content .location i {
    color: hsl(var(--base));
    font-size: 1rem;
    margin-right: 5px;
}

.package-content .ratting {
    margin: 0;
}

.package-content .ratting li {
    line-height: 1;
    margin-right: 5px;
}

.package-content .ratting li:last-child {
    margin-right: 0;
}

.package-content .ratting .rate {
    padding: 4px 6px;
    border-radius: 3px;
    color: hsl(var(--white));
    background: hsl(var(--base));
}

.package-content .ratting .txt {
    color: hsl(var(--base));
}

.package-content .ratting .total-reviews {
    color: hsl(var(--body-color));
}

.package-content .package-price {
    margin-top: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.package-content .package-price .price .fare span {
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(var(--base));
}

.package-content .package-price .per {
    font-size: 0.875rem;
    line-height: 1;
}

.package-content .package-price .buy-package-btn {
    border-bottom: 1px solid rgba(27, 39, 61, 0.3);
    line-height: 1.2;
}

.package-content .package-price .buy-package-btn:hover {
    border-color: hsl(var(--base));
}

.faq-wrapper {
    padding-right: 40px;
}

@media (max-width: 991px) {
    .faq-wrapper {
        padding-right: 0;
    }
}

@media (max-width: 1199px) {
    .faq-wrapper {
        padding-right: 10px;
    }
}

.testimonial-wrapper {
    padding: 30px;
    background: hsl(var(--white));
    border-radius: 8px;
    box-shadow: 0 3px 11px #dbdbdbd9;
}

@media (max-width: 767px) {
    .testimonial-wrapper {
        padding: 20px 25px 25px;
    }
}

@media (max-width: 575px) {
    .testimonial-wrapper {
        padding: 20px 20px 25px;
    }
}

@media (max-width: 450px) {
    .testimonial-wrapper {
        padding: 20px;
    }
}

.testimonial-wrapper .slick-dots {
    bottom: -40px;
}

.testimonial-wrapper .slick-dots button::before {
    background: hsl(var(--base));
    height: 5px;
    font-size: 0;
    border-radius: 3px;
}

.testimonial-section {
    background: #f7f7f7;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid hsl(var(--base)/.25) !important;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.open .faq-title .icon::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.faq-wrapper.faq-wrapper-two .faq-item.active .faq-content {
    display: block;
}

.faq-wrapper.faq-wrapper-two .faq-item.open .faq-title .icon::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.faq-wrapper.faq-wrapper-two .faq-item.active .faq-content {
    display: block;
}

.faq-item .faq-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-item .faq-title .icon {
    position: relative;
}

.faq-item .faq-title .icon::after,
.faq-item .faq-title .icon::before {
    position: absolute;
    content: "";
    background: hsl(var(--base)/.9);
}

.faq-item .faq-title .icon::before {
    width: 20px;
    height: 2px;
    left: -50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

@media (max-width: 767px) {
    .faq-item .faq-title .icon::before {
        width: 20px;
    }
}

.faq-item .faq-title .icon::after {
    height: 20px;
    width: 2px;
    left: -1px;
    -webkit-transform: translateY(-49%);
    transform: translateY(-49%);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

@media (max-width: 767px) {
    .faq-item .faq-title .icon::after {
        height: 20px;
    }
}

.faq-item .faq-title .title {
    padding-left: 25px;
    margin: 0;
}

@media (max-width: 1199px) {
    .faq-item .faq-title .title {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .faq-item .faq-title .title {
        padding-left: 20px;
    }
}

.faq-item .faq-content {
    padding: 15px;
    padding-top: 0;
    display: none;
}

.testimonial-item .thumb-wrapper .name {
    text-align: center;
    padding-top: 10px;
}

@media (max-width: 1199px) {
    .testimonial-item .thumb-wrapper .designation {
        font-size: 0.938rem;
    }
}

@media (max-width: 767px) {
    .testimonial-item .thumb-wrapper .designation {
        font-size: 0.875rem;
    }
}

.testimonial-item .thumb {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.testimonial-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-item .content {
    margin-top: 15px;
}

@media (max-width: 991px) {
    .testimonial-item .content {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .testimonial-item .content {
        margin-top: 5px;
    }
}

.testimonial-item .content p {
    font-size: 0.9375rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .testimonial-item .content p {
        font-size: 0.875rem;
    }
}

.testimonial-item .content p i {
    font-size: 2.625rem;
    color: hsl(var(--base));
}

.faq-section.two .title {
    margin-bottom: 15px;
}

.faq-wrapper-two {
    padding: 25px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px 1px rgba(27, 39, 61, 0.07);
    box-shadow: 0 0 15px 1px rgba(27, 39, 61, 0.07);
    border: 1px solid rgba(27, 39, 61, 0.1);
}

@media (min-width: 1400px) {
    .faq-wrapper-two {
        padding: 35px 30px;
    }
}

@media (max-width: 575px) {
    .faq-wrapper-two {
        padding: 20px 15px;
    }
}

.faq-wrapper-two .faq-item-two {
    margin-bottom: 25px;
}

.faq-wrapper-two .faq-item-two:last-child {
    margin-bottom: 0;
}

.faq-wrapper-two .faq-item-two .title {
    margin-bottom: 5px;
}

.faq-wrapper-two .faq-item-two span {
    color: #1f1f1f;
    font-size: 1.125rem;
    font-weight: 500;
}

.about-thumb {
    border-radius: 5px;
    overflow: hidden;
}

.about-thumb img {
    width: 100%;
}

.about-content__title {
    padding-right: 120px;
    margin-bottom: 15px;
}

.about-content__desc {
    line-height: 1.5;
    margin-bottom: 15px;
}

.about-content__desc:last-child {
    margin-bottom: 0;
}

.about-content__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 15px;
    margin: 25px 0 0;
}

.about-content__list-item {
    position: relative;
    width: calc(50% - 30px);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0 0 0 22px;
}

.about-content__list-item .icon {
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .about-content__desc {
        margin-bottom: 12px;
    }

    .about-content__list {
        column-gap: 20px;
        row-gap: 12px;
        margin: 20px 0 0;
    }

    .about-content__list-item {
        width: calc(50% - 20px);
        padding: 0 0 0 20px;
    }

    .about-content__title {
        padding-right: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .about-content__title {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .about-content__desc {
        margin-bottom: 8px;
    }

    .about-content__list {
        row-gap: 10px;
        margin: 15px 0 0;
    }
}

@media screen and (max-width: 991px) {
    .about-content {
        margin-bottom: 20px;
    }

    .about-content__list-item {
        font-size: 0.938rem;
    }
}

@media screen and (max-width: 575px) {
    .about-content__list-item {
        width: 100%;
        font-size: 0.875rem;
    }
}

.how-reserve-item {
    padding: 20px 15px;
    background: hsl(var(--white));
    border-radius: 5px;
    text-align: center;
}

@media (min-width: 1400px) {
    .how-reserve-item {
        padding: 30px 25px;
    }
}

.how-reserve-item .thumb {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    font-size: 1.875rem;
    background: hsl(var(--white));
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base)/.7);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 7px rgba(14, 158, 77, 0.3);
    box-shadow: 0 0 0 7px rgba(14, 158, 77, 0.3);
    background: hsl(var(--base)/.9);
    color: hsl(var(--white));
}

@media (max-width: 1199px) {
    .how-reserve-item .thumb {
        width: 70px;
        height: 70px;
    }
}

.how-reserve-item .content .title {
    margin-bottom: 5px;
}

.ticket-search-bar {
    position: relative;
}

.ticket-search-bar::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #1b273d;
    opacity: 0.45;
}

.ticket-search-bar .container {
    position: relative;
    z-index: 1;
}

.bus-search-header {
    padding: 40px 30px;
    border-radius: 10px 10px 0 0;
    background: hsl(var(--white));
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bus-search-header .ticket-form {
    padding: 0;
    box-shadow: none;
}

@media (max-width: 767px) {
    .bus-search-header {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .bus-search-header {
        padding: 20px 15px;
    }
}

.bus-search-header .route-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bus-search-header .route-info .thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.bus-search-header .route-info .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bus-search-header .route-info .content {
    padding-left: 15px;
}

.bus-search-header .route-info .content .title {
    color: #1f1f1f;
    margin-bottom: 0;
}

.bus-search-header .route-info .content .date {
    font-size: 0.875rem;
}

.bus-search-header .search-result .title {
    margin-bottom: 7px;
}

.bus-search-header .search-result .wrapper .icon {
    font-size: 1.625rem;
    color: hsl(var(--base));
    margin-right: 5px;
}

.bus-search-header .search-result .wrapper .result-info {
    font-size: 0.9375rem;
}

.bus-search-header .route-date-changer .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bus-search-header .route-date-changer button {
    width: auto;
    height: auto;
    padding: 12px 18px;
    font-weight: 500;
    font-size: 0.9375rem;
}

@media (max-width: 1199px) {
    .bus-search-header .route-date-changer button {
        margin-bottom: 10px;
    }
}

.bus-search-header .route-date-changer .result-info {
    margin-bottom: 10px;
    line-height: 1.3;
    display: block;
}

.bus-search-header .ticket-form-two {
    padding: 0;
    background: transparent;
    margin-bottom: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ticket-item {
    padding: 25px;
    background: hsl(var(--white));
    margin-bottom: 15px;
    border-radius: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ticket-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .ticket-item {
        padding: 20px 15px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.ticket-item-inner {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media (max-width: 1199px) {
    .ticket-item-inner {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .ticket-item-inner {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .ticket-item-inner {
        margin-bottom: 5px;
    }
}

.ticket-item-inner .bus-info {
    font-size: 0.8125rem;
}

.ticket-item-inner .ratting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #e9ba11;
}

.ticket-item-inner .ratting i {
    margin-right: 4px;
}

.ticket-item-inner .bus-time {
    text-align: center;
}

.ticket-item-inner .bus-time i {
    font-size: 1.5rem;
    color: hsl(var(--base));
}

.ticket-item-inner .bus-time .time {
    font-size: 1.125rem;
    color: #1f1f1f;
    font-weight: 600;
}

@media (max-width: 991px) {
    .ticket-item-inner .bus-time:first-child {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .ticket-item-inner .bus-time {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .ticket-item-inner .bus-time:last-child {
        padding-right: 0;
    }
}

.ticket-item-inner button {
    height: auto;
    width: auto;
    padding: 10px 15px;
    margin: 0;
    line-height: 1;
    font-weight: 600;
    word-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-top: 10px;
}

.ticket-item-inner .bus-name {
    max-width: 490px;
}

.travel-time {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .travel-time {
        text-align: left;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}

.travel-time div {
    padding: 0 15px;
}

@media (max-width: 575px) {
    .travel-time div {
        padding: 0 10px;
    }
}

.book-ticket {
    text-align: center;
}

@media (max-width: 767px) {
    .book-ticket {
        text-align: left;
    }
}

.book-ticket .rent {
    font-size: 1.25rem;
    color: hsl(var(--base));
    margin-bottom: 5px;
}

.book-ticket .seats-left {
    color: #1b273d;
}

.ticket-item-footer {
    padding-top: 10px;
    margin-top: 15px;
    width: 100%;
    border-top: 1px solid rgba(27, 39, 61, 0.1);
    position: relative;
}

.ticket-item-footer .info-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ticket-item-footer .info-list li {
    padding: 3px 10px;
    cursor: pointer;
}

.ticket-item-footer .info-list li a.active {
    color: hsl(var(--base));
}

@media (max-width: 767px) {
    .ticket-item-footer .info-list li {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .ticket-item-footer .info-list li {
        width: 100%;
    }
}

.ticket-item-footer .info-details {
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 25px;
    padding-right: 60px;
    background: hsl(var(--white));
    border: 1px solid rgba(27, 39, 61, 0.15);
    left: 0;
    top: 50px;
    -webkit-box-shadow: 0 10px 25px rgba(27, 39, 61, 0.15);
    box-shadow: 0 10px 25px rgba(27, 39, 61, 0.15);
}

@media (max-width: 575px) {
    .ticket-item-footer .info-details {
        padding: 15px;
    }
}

.ticket-item-footer .info-details .list {
    margin-top: 15px;
}

.ticket-item-footer .info-details .list li {
    list-style-type: none;
    margin-left: 15px;
}

@media (max-width: 767px) {
    .ticket-item-footer .info-details .list li {
        margin-left: 0 !important;
    }
}

.ticket-item-footer .bor-drop-lsit {
    max-height: 400px;
    overflow-y: auto;
}

.ticket-item-footer .bor-drop-lsit li {
    list-style: none !important;
    border-bottom: 1px solid rgba(27, 39, 61, 0.1);
}

.ticket-item-footer .bor-drop-lsit li:last-child {
    border-bottom: none;
}

.ticket-item-footer .bor-drop-lsit li .time {
    font-size: 1.0625rem;
    color: #554bb9;
    font-weight: 600;
}

.ticket-item-footer .bor-drop-lsit li .bor-point {
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.ticket-item-footer .amenities-details .list li {
    width: 30%;
    list-style-type: none;
}

@media (max-width: 767px) {
    .ticket-item-footer .amenities-details .list li {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .ticket-item-footer .amenities-details .list li {
        width: 100%;
    }
}

.ticket-item-footer .amenities-details .list li i {
    color: hsl(var(--base));
    margin-right: 5px;
}

.tab-pane .close-btn {
    padding: 5px 10px;
    border-radius: 3px;
    background: rgba(27, 39, 61, 0.2);
    color: hsl(var(--white));
    font-size: 1.25rem;
    position: absolute;
    display: inline-block;
    right: 10px;
    top: 60px;
    cursor: pointer;
    z-index: 5;
}

.tab-pane .close-btn:hover {
    background: #1b273d;
}

.bus-seat-management {
    padding: 30px;
    border-radius: 10px;
    background: hsl(var(--white));
    -webkit-box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.05);
    box-shadow: 0 0 15px 3px rgba(27, 39, 61, 0.05);
    width: 100%;
}

.bus-seat-management .all-seats li {
    font-size: 1.5rem;
    padding: 5px;
}

.seat-plan-wrapper {
    width: 100%;
    margin-top: 40px;
    display: none;
    position: relative;
    z-index: 1;
    background: hsl(var(--white));
}

.seat-plan-wrapper.selected {
    display: block;
}

.seat-plan-inner {
    margin-top: 25px;
}

.seat-plan-inner .single {
    position: relative;
    border: 0.5px solid #00000028;
    min-height: 150px;
    max-width: 100%;
    padding: 80px 25px 30px;
    margin-bottom: 55px;
}

@media (max-width: 1199px) {
    .seat-plan-inner .single {
        padding-top: 60px;
    }
}

@media (max-width: 575px) {
    .ticket-sidebar .seat-plan-inner .single {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.seat-plan-inner .front {
    position: absolute;
    width: 60px;
    height: 25px;
    top: -13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.625rem;
    font-weight: 600;
    z-index: 1;
    color: #9b9b9b;
    background: #f1f1f1;
    letter-spacing: 1px;
}

.seat-plan-inner .rear {
    position: absolute;
    width: 60px;
    height: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.625rem;
    font-weight: 600;
    color: #9b9b9b;
    background: #f1f1f1;
    letter-spacing: 1px;
}

.seat-plan-inner .lower {
    width: 50px;
    height: 40px;
    position: absolute;
    left: 20px;
    top: 20px;
    color: hsl(var(--body-color));
    font-weight: 600;
    text-transform: uppercase;
}

.seat-plan-inner .driver {
    position: absolute;
    right: 20px;
    top: 15px;
}

.seat-wrapper {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.seat-wrapper .reserve-for-ladies .seat {
    color: hsl(var(--body-color)) !important;
}

.seat-wrapper .left-side,
.seat-wrapper .right-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.seat-wrapper .left-side,
.seat-wrapper .right-side div:last-of-type .seat {
    margin-right: 0;
}

.seat-wrapper .seat {
    height: 40px;
    width: 30px;
    color: hsl(var(--body-color));
    border: 1px solid #979797;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    font-weight: 100;
    font-size: 0.875rem;
}

.btn-link:hover {
    color: hsl(var(--base)) !important;
}

@media (max-width: 575px) {
    .seat-wrapper .seat {
        height: 45px;
        width: 30px;
        font-size: 0.875rem;
    }
}

.seat-wrapper .seat span {
    position: absolute;
    left: 2px;
    right: 2px;
    height: 4px;
    border: 1px solid rgba(27, 39, 61, 0.25);
    border-radius: 2px;
    bottom: 6px;
}

.seat-wrapper .seat.selected {
    border-color: rgb(57, 163, 57);
    background: rgb(57, 163, 57);
    color: hsl(var(--white));
}


.seat-wrapper .seat.selected span {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.seat-for-reserved {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    margin-top: 15px;
}

.seat-for-reserved .seat-condition {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    padding-bottom: 15px;
}

@media (max-width: 575px) {
    .seat-for-reserved .seat-condition {
        width: 100%;
        padding-bottom: 15px;
    }
}

.seat-for-reserved .seat {
    width: 40px;
    height: 18px;
    border: 1px solid #979797;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

.seat-for-reserved .seat span {
    position: absolute;
    top: 2px;
    bottom: 2px;
    width: 4px;
    border: 1px solid rgba(27, 39, 61, 0.25);
    right: 7px;
    border-radius: 2px;
}

.seat-for-reserved p {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.25;
}

.seat-for-reserved .selected-by-you .seat {
    border-color: rgb(57, 163, 57);
    background: rgb(57, 163, 57);
}

.seat-for-reserved .selected-by-you .seat span {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.seat-for-reserved .selected-by-ladies .seat {
    border-color: #f763c6;
    background: #f763c6;
    color: hsl(var(--white)) !important;
}

.seat-for-reserved .selected-by-gents .seat {
    border-color: #554bb9;
    background: #554bb9;
    color: hsl(var(--white)) !important;
}

.seat-for-reserved .selected-by-ladies .seat span {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.seat-for-reserved .selected-by-others .seat {
    border-color: #707d88;
    background: #707d88;
    color: hsl(var(--white)) !important;
}

.seat-for-reserved .selected-by-others .seat span {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.seat-for-reserved .selected-by-gents .seat span {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.seat-for-reserved .reserve-for-ladies .seat {
    border-color: #f763c6;
    background: hsl(var(--white));
}

.seat-for-reserved .reserve-for-ladies .seat span {
    background: #f763c6;
    border-color: #f763c6;
    color: hsl(var(--white));
}

.selected-by-you .seat {
    border-color: hsl(var(--base));
    background: hsl(var(--base));
}

.selected-by-you .seat span {
    background: hsl(var(--white));
    border-color: hsl(var(--white));
}

.selected-by-ladies .seat {
    color: hsl(var(--white));
    border-color: #f763c6 !important;
    background: #f763c6 !important;
}

.selected-by-ladies .seat span {
    background: hsl(var(--white)) !important;
    border-color: hsl(var(--white)) !important;
}

.selected-by-others .seat {
    color: hsl(var(--white));
    border-color: #707d88 !important;
    background: #707d88 !important;
}

.selected-by-others .seat span {
    background: hsl(var(--white)) !important;
    border-color: hsl(var(--white)) !important;
}

.selected-by-gents .seat {
    color: hsl(var(--white));
    border-color: #554bb9 !important;
    background: #554bb9 !important;
}

.selected-by-gents .seat span {
    background: hsl(var(--white)) !important;
    border-color: hsl(var(--white)) !important;
}

.sold .seat {
    color: hsl(var(--white));
    border-color: hsl(var(--white)) !important;
    background: #d7d7d7 !important;
}

.sold .seat span {
    background: hsl(var(--white)) !important;
    border-color: hsl(var(--white)) !important;
}

.reserve-for-ladies .seat {
    border-color: #f763c6 !important;
    background: hsl(var(--white)) !important;
}

.reserve-for-ladies .seat span {
    background: #f763c6 !important;
    border-color: #f763c6 !important;
}

.seat-overview-wrapper {
    border: 1px solid rgba(27, 39, 61, 0.1);
    border-radius: 5px;
    padding: 20px 15px;
    position: sticky;
    top: 100px;
}

@media (min-width: 1200px) {
    .seat-overview-wrapper {
        padding: 30px;
    }
}

.seat-overview-wrapper .boarding-point {
    margin-bottom: 15px;
    height: 40px;
}

.seat-overview-wrapper .destination-point {
    margin-top: 15px;
    height: 40px;
}

.seat-overview-wrapper .seat-info {
    margin-top: 15px;
}

.seat-overview-wrapper .seat-info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.seat-overview-wrapper .seat-info li .title {
    display: inline-block;
}

.seat-overview-wrapper .seat-info li .value {
    display: inline-block;
}

.seat-overview-wrapper .book-bus-btn {
    height: 40px;
}

.privacy-policy {
    overflow: initial !important;
}

.privacy-policy-sidebar-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

.privacy-policy-sidebar-menu li {
    width: 100%;
    margin-bottom: 5px;
}

.privacy-policy-sidebar-menu li a {
    padding: 15px 20px;
    -webkit-box-shadow: 0 2px 10px 1px rgba(27, 39, 61, 0.05);
    box-shadow: 0 2px 10px 1px rgba(27, 39, 61, 0.05);
    display: block;
    border-radius: 5px;
}

.privacy-policy-sidebar-menu li a.active {
    border-right: 3px solid hsl(var(--base));
    color: hsl(var(--base));
}

.privacy-policy-sidebar-menu li a:hover {
    -webkit-box-shadow: 0 2px 12px 2px rgba(27, 39, 61, 0.08);
    box-shadow: 0 2px 12px 2px rgba(27, 39, 61, 0.08);
}

.privacy-policy-content {
    padding-left: 40px;
}

@media (max-width: 1199px) {
    .privacy-policy-content {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .privacy-policy-content {
        padding-left: 0px;
    }
}

.privacy-policy-content .content-item {
    margin-bottom: 40px;
}

.privacy-policy-content .content-item .title {
    margin-bottom: 15px;
}

.privacy-policy-content .content-item .info-list {
    margin-top: 15px;
}

.privacy-policy-content .content-item .info-list li {
    padding-left: 25px;
    position: relative;
}

.privacy-policy-content .content-item .info-list li::before {
    position: absolute;
    font-weight: 900;
    font-size: 1rem;
    font-family: "Line Awesome Free";
    content: "\f101";
    left: 0;
    top: 7px;
    color: #1b273d;
}

.header-trigger-wrapper,
.header-top-area,
.header-top-area .left-content,
.header-top-area .right-content,
.header-top-area .right-content .header-login,
.social-icons,
.inner-banner .inner-banner-content .breadcums,
.footer-widget .footer-links li a,
.ticket-form-wrapper .ticket-header,
.ticket-form-wrapper .ticket-type,
.filter-header,
.account-header,
.post-details-content .meta-post,
.contact-wrapper,
.contact-info-wrapper .info-item,
.route-inner .route-content .route-to,
.package-content .package-price,
.bus-search-header .route-info,
.bus-search-header .search-result .wrapper,
.ticket-item,
.travel-time,
.ticket-item-footer .info-list,
.ticket-item-footer .amenities-details .list,
.bus-seat-management .all-seats,
.ratting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-icons li a,
.contact-info-wrapper .info-item .icon,
.working-process-item .thumb-wrapper span,
.working-process-item .thumb,
.how-reserve-item .thumb,
.seat-wrapper .seat,
.preloader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-header .title {
    margin-bottom: 15px;
}

.section-header .title span {
    color: hsl(var(--base));
}

@media (max-width: 991px) {
    .section-header .title {
        margin-bottom: 12px;
    }
}

@media (max-width: 575px) {
    .section-header {
        text-align: center;
    }

    .section-header .title {
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 0.938rem;
    }
}

.ratting li {
    padding: 0 4px;
}

.preloader {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99999;
    background: hsl(var(--white));
}

.truck-wrapper {
    height: 200px;
    width: 200px;
    border: 5px solid hsl(var(--base));
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
    transform: translateX(-50%) translateY(-50%) scale(0.8);
    background: white;
    -webkit-animation: bg 0.5s linear infinite;
    animation: bg 0.5s linear infinite;
    border-radius: 100%;
    overflow: hidden;
}

.preloader-content {
    font-size: 1.25rem;
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #4caf50;
    background: #1efc7a;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#4caf50),
            to(#61c664));
    background: linear-gradient(to right, #4caf50 0%, #61c664 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#1efcc8', endColorstr='#1dd3d6', GradientType=1);
    color: white;
    padding-top: 8px;
    padding-bottom: 18px;
    -webkit-animation: bg 3s linear infinite;
    animation: bg 3s linear infinite;
}

.truck {
    height: 110px;
    width: 150px;
    position: absolute;
    bottom: 48px;
    left: calc(50% + 10px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.truck>.glases {
    background: #28b5f5;
    background: linear-gradient(135deg,
            #514f4f 0%,
            #514f4f 50%,
            #333131 52%,
            #333131 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#28b5f5', endColorstr='#0299e3', GradientType=1);
    position: absolute;
    height: 25px;
    width: 143.9px;
    border: 4px solid #fbd734;
    border-bottom: none;
    top: 35.5px;
    left: -19px;
    border-top-right-radius: 6px;
    -webkit-animation: updown-half 0.4s linear infinite;
    animation: updown-half 0.4s linear infinite;
}

.truck>.glases:after {
    content: "";
    display: block;
    background-color: #fbd734;
    height: 6px;
    width: 3px;
    position: absolute;
    right: -6px;
    bottom: 0px;
    border-radius: 10px / 15px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

.truck>.glases:before {
    content: "";
    display: block;
    background-color: #fbd734;
    height: 27px;
    width: 3px;
    position: absolute;
    left: 102px;
    bottom: 0px;
    /*   border-top-right-radius:4px; */
}

.truck>.bonet {
    background-color: #fbd734;
    position: absolute;
    width: 153.8px;
    height: 15px;
    top: 64px;
    left: -19px;
    z-index: -1;
    -webkit-animation: updown 0.4s linear infinite;
    animation: updown 0.4s linear infinite;
}

.truck>.bonet:after {
    content: "";
    display: block;
    background: white;
    background: linear-gradient(135deg,
            white 0%,
            #f1f1f1 50%,
            #e1e1e1 51%,
            #f6f6f6 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='hsl(var(--white))fff', endColorstr='#f6f6f6', GradientType=1);
    height: 10px;
    width: 6px;
    position: absolute;
    right: 0px;
    bottom: 2px;
    border-top-left-radius: 4px;
}

.truck>.base {
    position: absolute;
    background-color: #445a64;
    width: 134px;
    height: 15px;
    border-top-right-radius: 10px;
    top: 70px;
    left: -15px;
    -webkit-animation: updown 0.4s linear infinite;
    animation: updown 0.4s linear infinite;
}

.truck>.base:before {
    content: "";
    display: block;
    background-color: #e54a18;
    height: 20px;
    width: 5px;
    position: absolute;
    left: -4px;
    bottom: 0px;
    border-bottom-left-radius: 4px;
}

.truck>.base:after {
    content: "";
    display: block;
    background-color: #445a64;
    height: 10px;
    width: 20px;
    position: absolute;
    right: -16px;
    bottom: 0px;
    border-bottom-right-radius: 4px;
    z-index: -1;
}

.truck>.base-aux {
    width: 3px;
    height: 26px;
    background-color: #fbd734;
    position: absolute;
    top: 38px;
    left: 25px;
    /*   border-bottom-right-radius:4px; */
    -webkit-animation: updown-half 0.4s linear infinite;
    animation: updown-half 0.4s linear infinite;
}

.truck>.wheel-back {
    left: 20px;
}

.truck>.wheel-front {
    left: 95px;
}

.truck>.wheel-back,
.truck>.wheel-front {
    border-radius: 100%;
    position: absolute;
    background: #546e7a;
    background: linear-gradient(135deg,
            #546e7a 0%,
            #546e7a 49%,
            #445a64 52%,
            #445a64 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#546e7a', endColorstr='#445a64', GradientType=1);
    top: 75px;
    height: 22px;
    width: 22px;
    -webkit-animation: spin 0.6s linear infinite;
    animation: spin 0.6s linear infinite;
}

.truck>.wheel-back:before,
.truck>.wheel-front:before {
    content: "";
    border-radius: 100%;
    left: 5px;
    top: 5px;
    position: absolute;
    background: #afbdc3;
    background: linear-gradient(135deg,
            #afbdc3 0%,
            #afbdc3 50%,
            #8fa3ad 51%,
            #8fa3ad 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#afbdc3', endColorstr='#8fa3ad', GradientType=1);
    height: 12px;
    width: 12px;
}

@-webkit-keyframes spin {
    50% {
        top: 76px;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    50% {
        top: 76px;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes container {
    30% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }

    50% {
        top: 11px;
    }

    70% {
        top: 10px;
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
}

@keyframes container {
    30% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }

    50% {
        top: 11px;
    }

    70% {
        top: 10px;
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
}

.truck>.smoke {
    position: absolute;
    background-color: #afbdc3;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    top: 90px;
    left: 6px;
    -webkit-animation: fade 0.4s linear infinite;
    animation: fade 0.4s linear infinite;
    opacity: 0;
}

.truck>.smoke:after {
    content: "";
    position: absolute;
    background-color: RGB(143, 163, 173);
    border-radius: 100%;
    width: 6px;
    height: 6px;
    top: -4px;
    left: 4px;
}

.truck>.smoke:before {
    content: "";
    position: absolute;
    background-color: RGB(143, 163, 173);
    border-radius: 100%;
    width: 4px;
    height: 4px;
    top: -2px;
    left: 0px;
}

@-webkit-keyframes fade {
    30% {
        opacity: 0.3;
        left: 7px;
    }

    50% {
        opacity: 0.5;
        left: 6px;
    }

    70% {
        opacity: 0.1;
        left: 4px;
    }

    90% {
        opacity: 0.4;
        left: 2px;
    }
}

@keyframes fade {
    30% {
        opacity: 0.3;
        left: 7px;
    }

    50% {
        opacity: 0.5;
        left: 6px;
    }

    70% {
        opacity: 0.1;
        left: 4px;
    }

    90% {
        opacity: 0.4;
        left: 2px;
    }
}

@-webkit-keyframes bg {
    from {
        background-position-x: 0px;
    }

    to {
        background-position-x: -400px;
    }
}

@keyframes bg {
    from {
        background-position-x: 0px;
    }

    to {
        background-position-x: -400px;
    }
}

@-webkit-keyframes updown {
    50% {
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }

    70% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

@keyframes updown {
    50% {
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }

    70% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

@-webkit-keyframes updown-half {
    50% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }

    70% {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
    }
}

@keyframes updown-half {
    50% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }

    70% {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
    }
}

@media (min-width: 768px) {
    .card .card-body {
        padding: 35px;
    }
}

.w-unset {
    width: unset !important;
}

.fs-small {
    font-size: 0.8125rem;
}

.h-50 {
    height: 50px !important;
}

.remove-btn {
    border-radius: 0 5px 5px 0 !important;
}

#inputAttachments {
    line-height: 28px;
}

.addFile,
.remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radius-5 {
    border-radius: 5px !important;
}

.border--base {
    border-color: hsl(var(--base)) !important;
}

.btn--base:disabled {
    opacity: .5;
}

.border--primary {
    border-color: #0091ff !important;
}

.border--right {
    border-right: 1px solid #ebebeb;
}

.btn--close {
    background: transparent !important;
    color: black;
    padding: 5px !important;
    height: auto;
}

.badge--secondary {
    color: #78818a !important;
    background: #78818a15 !important;
    border-color: #78818a !important;
}

.badge--warning {
    background-color: rgba(255, 159, 67, 0.15);
    border: 1px solid #ff9f43;
    color: #ff9f43;
}

.badge--success {
    background-color: hsl(var(--base)/.15);
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

.badge--white {
    border: 1px solid hsl(var(--white));
    color: hsl(var(--white));
}

.badge--danger {
    background-color: rgba(234, 84, 85, 0.15);
    border: 1px solid #ea5455;
    color: #ea5455;
}

.badge--primary {
    background-color: rgba(115, 103, 240, 0.15);
    border: 1px solid #7367f0;
    color: #7367f0;
}

.badge--base {
    background-color: hsl(var(--base)/.149);
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
}

.badge--dark {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(var(--black));
    color: hsl(var(--black));
}

.profile__thumb__edit {
    border: 1px solid #e5e5e7;
    box-shadow: 0 2px 15px rgba(31, 31, 35, 0.1);
    padding: 35px;
    max-width: 450px;
    margin: 0 auto;
}

@media (max-width: 450px) {
    .profile__thumb__edit {
        padding: 25px 15px;
    }
}

@media (min-width: 1400px) {
    .profile__thumb__edit {
        margin-right: 15px;
    }
}

.profile__thumb__edit .thumb {
    max-width: 300px;
    width: 100%;
    height: 260px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.profile__thumb__edit .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile__content__edit {
    padding: 30px;
    box-shadow: 0 0 15px rgba(31, 31, 35, 0.1);
}

.profile__content__edit .title {
    background: #1b273d;
    padding: 15px 25px;
    text-align: center;
    color: hsl(var(--white));
    border-radius: 5px 5px 0 0;
}

@media (max-width: 450px) {
    .profile__content__edit {
        padding: 20px 15px;
    }
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 500;
}

.profile__content__edit .input-group .form--control {
    padding: 0 15px;
    width: 100%;
    border-color: #e5e5e7;
}

.profile__content__edit .input-group .form--control:focus {
    border-color: hsl(var(--base));
}

.w-unset {
    width: unset !important;
}

.facilities {
    margin: 0px 10px;
    padding: 0px 10px;
    background-color: #f7f7f7;
    color: hsl(var(--body-color));
    border-radius: 15px;
}

/* New Css */
.langSel {
    padding: 0px 15px;
    height: 35px;
}

.fs--14px {
    font-size: 0.875rem !important;
}

/* Dahsboard Widget */
.dashboard-widget {
    background: hsl(var(--white));
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
    border-left: 4px solid hsl(var(--base));
}

.dashboard-widget__content p {
    font-weight: 500;
}

.dashboard-widget__content .title {
    margin-bottom: 0;
    margin-top: 8px;
    font-weight: 700;
}

.dashboard-widget__icon {
    font-size: 2rem;
    background-color: hsl(var(--base));
    border-radius: 7px;
    color: hsl(var(--white));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-ticket:hover {
    color: hsl(var(--base));
}

div[class*="col"]:nth-child(3n + 1) .dashboard-widget {
    border-color: #43c525;
}

div[class*="col"]:nth-child(3n + 1) .dashboard-widget .dashboard-widget__icon {
    background-color: #43c525;
}

div[class*="col"]:nth-child(3n + 2) .dashboard-widget {
    border-color: #dc3545;
}

div[class*="col"]:nth-child(3n + 2) .dashboard-widget .dashboard-widget__icon {
    background-color: #dc3545;
}

div[class*="col"]:nth-child(3n + 3) .dashboard-widget {
    border-color: #ffc107;
}

div[class*="col"]:nth-child(3n + 3) .dashboard-widget .dashboard-widget__icon {
    background-color: #ffc107;
}

.cmn--card {
    box-shadow: 0 0 15px rgba(31, 31, 35, 0.18);
    border: 0;
}

.cmn--card .card-header {
    background: hsl(var(--base));
    border: 0;
    padding: 15px 25px;
    border-radius: 5px 5px 0 0;
}

.cmn--card .card-footer {
    border: 0;
    padding: 15px 25px;
    background: hsl(var(--white));
    border-radius: 0 0 5px 5px;
}

@media (max-width: 575px) {
    .cmn--card .card-header {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.cmn--card .card-header .title {
    color: hsl(var(--white));
}

.pb-80 {
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .pb-80 {
        padding-bottom: 40px;
    }
}

.card-deposit .card-body {
    text-align: center;
}

.card-deposit .card-body img {
    max-width: 180px;
    max-height: 180px;
    margin: 0 auto;
    object-fit: contain;
}

.deposit-preview-content {
    width: calc(100% - 180px);
    padding-left: 25px;
}

.deposit-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.deposit-preview .deposit-thumb {
    width: 350px;
}

.deposit-preview .deposit-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deposit-preview .deposit-content {
    width: calc(100% - 350px);
    border-left: none;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    padding-left: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1199px) {
    .deposit-preview .deposit-thumb {
        width: 215px;
    }

    .deposit-preview .deposit-content {
        width: calc(100% - 215px);
        padding-left: 20px;
    }

    .deposit-preview .deposit-content ul li {
        font-size: 0.875rem !important;
    }

    .deposit-preview {
        padding: 30px 20px;
    }
}

.deposit-preview .deposit-content ul {
    width: 100%;
    text-align: center;
}

.deposit-preview .deposit-content ul li {
    padding: 10px 0;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.deposit-preview .deposit-content ul li:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {

    .deposit-preview .deposit-content,
    .deposit-preview .deposit-thumb {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .deposit-preview {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
        padding: 20px;
    }

    .deposit-preview .deposit-thumb {
        width: 100%;
    }

    .deposit-preview .deposit-content {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        -webkit-border-radius: 0 0 5px 5px;
        -moz-border-radius: 0 0 5px 5px;
        border-radius: 0 0 5px 5px;
    }
}

@media (max-width: 450px) {
    .deposit-preview {
        padding: 15px;
    }

    .deposit-preview .deposit-content li {
        font-size: 0.875rem !important;
    }
}

.text-left {
    text-align: left !important;
    display: block !important;
}

.input-group .form--control {
    flex: 1 1 auto;
}

.input-group-text {
    height: 100%;
}

.form--control:focus~.input-group-append .input-group-text {
    border-color: #6323ff;
}

.input-group-append .input-group-text {
    border-radius: 0 5px 5px 0;
    background-color: #6123ff17;
    color: #6323ff;
}

.fileinput .thumbnail img {
    width: 100%;
}

label.required:after {
    content: '*';
    color: #dc3545 !important;
    margin-left: 3px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    color: #111;
    background-color: hsl(var(--white));
    z-index: 11;
}

.ui-datepicker-prev {
    position: relative;
}

.ui-datepicker-prev::before {
    position: absolute;
    content: "\f104";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Line Awesome Free";
    font-weight: 900;
}

.ui-datepicker-next::before {
    position: absolute;
    content: "\f105";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Line Awesome Free";
    font-weight: 900;
}

.footer-section {
    margin-top: auto;
}

.pagination li .page-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(31, 31, 31, 0.12);
    border-radius: 50% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5px;
    font-weight: 500;
    box-shadow: none !important;
}

.pagination .page-item.disabled .page-link {
    opacity: .6;
}

.page-item.active .page-link {
    color: hsl(var(--white));
}


.viser-form .form-control.form--control,
.form-select.form--control {
    display: block;
    height: unset;
    padding: 12px 20px;
    line-height: 1.3;
}

.form-check-input:focus {
    box-shadow: none;
}

.viser-form .custom--radio,
.viser-form .custom--checkbox {
    flex-direction: column;
}

.viser-form .form-group.form--group {
    margin-bottom: 16px;
}

.pagination .page-item.disabled .page-link:hover {
    background: hsl(var(--white)) !important;
}

.nav--link {
    color: hsl(var(--base)) !important;
}

.nav--link:hover {
    text-decoration: underline;
}

/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
    position: relative;
    z-index: 1;
    display: block;
    padding-top: 14px;
    margin-bottom: 0;
}

.breadcrumb.two {
    background: rgba(27, 39, 61, 0.06);
}

@media screen and (max-width: 1399px) {
    .breadcrumb {
        padding-top: 13px;
    }
}

@media screen and (max-width: 1199px) {
    .breadcrumb {
        padding-top: 12px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        padding-top: 11px;
    }
}

.breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width: 575px) {
    .breadcrumb__list {
        gap: 4px;
    }
}

.breadcrumb__item {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
    .breadcrumb__item {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 575px) {
    .breadcrumb__item {
        font-size: 0.875rem;
    }
}

.breadcrumb__link {
    position: relative;
    color: inherit;
}

.breadcrumb__link::after {
    position: absolute;
    content: '';
    background: hsl(var(--body-color));
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: all ease 0.3s;
}

.breadcrumb__link:hover:after {
    background: hsl(var(--base));
}

/* ====================== Breadcrumb Css End ==================== */


/* ====================== Counter Css Start ==================== */
.counter-section {
    padding: 45px 0;
    background: rgba(27, 39, 61, 0.99);
}

@media screen and (max-width: 1399px) {
    .counter-section {
        padding: 40px 0;
    }
}

@media screen and (max-width: 1199px) {
    .counter-section {
        padding: 35px 0;
    }
}

@media screen and (max-width: 991px) {
    .counter-section {
        padding: 30px 0;
    }
}

@media screen and (max-width: 575px) {
    .counter-section {
        padding: 25px 0;
    }
}

/* About Counter Wrapper */
.counter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 767px) {
    .counter-wrapper {
        row-gap: 30px;
    }
}

/* About Counter Item */
.counter-item {
    position: relative;
    width: 25%;
}

.counter-item:nth-child(2),
.counter-item:nth-child(3) {
    padding-left: 50px;
}

.counter-item:nth-child(4) {
    padding-left: 75px;
}

@media screen and (max-width: 1399px) {

    .counter-item:nth-child(2),
    .counter-item:nth-child(3) {
        padding-left: 40px;
    }

    .counter-item:nth-child(4) {
        padding-left: 60px;
    }
}

@media screen and (max-width: 1199px) {

    .counter-item:nth-child(2),
    .counter-item:nth-child(3) {
        padding-left: 30px;
    }

    .counter-item:nth-child(4) {
        padding-left: 45px;
    }
}

@media screen and (max-width: 991px) {

    .counter-item:nth-child(2),
    .counter-item:nth-child(3) {
        padding-left: 20px;
    }

    .counter-item:nth-child(4) {
        padding-left: 30px;
    }
}

@media screen and (max-width: 767px) {
    .counter-item {
        width: 50%;
    }

    .counter-item:nth-child(3) {
        padding-left: 0;
    }

    .counter-item:nth-child(2),
    .counter-item:nth-child(4) {
        padding-left: 50px;
    }
}

@media screen and (max-width: 575px) {

    .counter-item:nth-child(2),
    .counter-item:nth-child(4) {
        padding-left: 30px;
    }
}

@media screen and (max-width: 424px) {

    .counter-item:nth-child(2),
    .counter-item:nth-child(4) {
        padding-left: 20px;
    }
}

.counter-item__number {
    color: hsl(var(--white));
    font-size: 3.125rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .counter-item__number {
        font-size: 2.8125rem;
    }
}

@media screen and (max-width: 1199px) {
    .counter-item__number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    .counter-item__number {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 767px) {
    .counter-item__number {
        font-size: 2.125rem;
    }
}

@media screen and (max-width: 575px) {
    .counter-item__number {
        font-size: 2rem;
    }
}

.counter-item__number .suffix {
    position: relative;
    top: 3px;
    right: 12px;
}

@media screen and (max-width: 1399px) {
    .counter-item__number .suffix {
        right: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .counter-item__number .suffix {
        right: 8px;
    }
}

@media screen and (max-width: 991px) {
    .counter-item__number .suffix {
        right: 6px;
    }
}

.counter-item__desc {
    color: hsl(var(--white));
    font-weight: 600;
    line-height: 1.444;
}

@media screen and (max-width: 1199px) {
    .counter-item__desc {
        font-size: 1rem;
    }
}

/* ====================== Counter Css End ==================== */


/* ticket form */

.ticket-form {
    background: hsl(var(--white));
    box-shadow: 0 4px 8px hsl(var(--black) / .078),
        0 8px 16px hsl(var(--black) / .078);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.ticket-form-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ticket-form-group {
    border: 1px solid #DADADA;
    border-radius: 8px;
    height: 60px;
    padding: 10px;
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    flex: 1;
    --s-height: auto;
    --select-border: transparent;
    --select-bg: transparent;
    --select-shadow: none;
    --border-radius: 8px;
    --font-size: 1rem;
    --font-weight: 400;
    --select-width: 100%;

    .select2-container--default.select2-container--focus :is(.select2-selection--multiple, .select2-selection--single),
    .select2-container--default.select2-container--open :is(.select2-selection--multiple, .select2-selection--single) {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        border-color: transparent !important;
        padding: 0;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
        padding: 0;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-weight: 600;
        color: hsl(var(--heading-color));
    }

    .select2-selection__arrow {
        display: none;
    }

    .select2-container:has(.select2-dropdown) {
        position: relative;
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        z-index: 1000;
    }

    .select2-dropdown {
        position: relative !important;
        width: 100% !important;
        margin-top: 0 !important;
        border: 0 !important;
        z-index: 1;
    }

    .select2-dropdown::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(100% - 55px);
        background: hsl(var(--white));
        box-shadow: 0 3px 5px hsl(var(--black) / .1);
        border-radius: 0 0 6px 6px;
        z-index: -1;
    }

    .select2-search--dropdown {
        display: block;
        padding: 0;
        height: 55px;
    }

    .select2-container--default .select2-search--dropdown .select2-search__field {
        background: hsl(var(--black) / .02);
        height: 100%;
        border-radius: 6px 6px 0 0;
        font-size: 0.875rem;
    }

    .select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
        font-size: 0.875rem;
        color: hsl(var(--body-color));
        font-weight: 500;
    }

    .select2-container--default .select2-results__option--selected,
    .select2-container--default .select2-results__option--highlighted {
        background-color: transparent !important;
        font-weight: 700;
    }

    .select2-results__option {
        padding: 6px 10px;
        padding-left: 30px;
        color: hsl(var(--body-color));
        font-size: 0.8rem;
        font-weight: 500;
        position: relative;
    }

    .select2-results__option::after {
        content: "\f3c5";
        font-weight: 900;
        font-family: "Line Awesome Free";
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.875rem;
    }
}

.ticket-form-group .icon {
    flex-shrink: 0;
    color: hsl(var(--base));
}

.ticket-form-group .title {
    color: hsl(var(--base));
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}


.ticket-form-arrow {
    color: hsl(var(--base));
    cursor: pointer;
}

.ticket-form-group-content {
    flex: 1;
}

.ticket-form-group .date-range {
    padding: 0;
    border: 0;
    background-color: transparent;
    height: auto;
    font-weight: 600;
    box-shadow: none;
    color: hsl(var(--heading-color));
}

.ticket-form-button {
    flex-shrink: 0;
}

.ticket-form-button .btn {
    height: 60px;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .ticket-form-group .title {
        font-size: 0.7rem;
    }

    .ticket-form-group {
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            font-weight: 600;
            color: hsl(var(--heading-color));
            font-size: 0.875rem;
        }
    }

    .ticket-form-button .btn {
        font-size: 0.875rem;
    }
}

@media (max-width: 991px) {

    .search-date-group,
    .ticket-form-button {
        flex: unset;
        width: calc(50% - 15px);
    }

    .ticket-form-button .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .ticket-form-wrapper {
        justify-content: center;
    }

    .ticket-form-group,
    .ticket-form-button {
        flex: unset;
        width: 100%;
    }
}

.banner-section .shape {
    position: absolute;
    bottom: 0;
    right: -300px;
    width: 200px;
    -webkit-animation: run 20s linear infinite;
    animation: run 20s linear infinite;
}

/* ticket form end */

.fs-15 {
    font-size: 15px !important;
}

.try-again-link {
    color: hsl(var(--base));
}