:root {
    --blue: #007bff;
    --hov-blue: #1f6dc2;
    --soft-blue: rgba(0, 123, 255, 0.15);
    --secondary-base: #ffc519;
    --hov-secondary-base: #dbaa17;
    --soft-secondary-base: rgba(255, 197, 25, 0.15);
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --soft-white: #b5b5bf;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #0c3226;
    --secondary: #233f25;
    --hov-primary: #e56f0e;
    --soft-primary: rgba(247, 123, 11, 0.15);
    --soft-secondary: rgba(143, 151, 171, 0.15);
    --success: #0abb75;
    --soft-success: rgba(10, 187, 117, 0.15);
    --info: #25bcf1;
    --soft-info: rgba(37, 188, 241, 0.15);
    --warning: #ffc519;
    --soft-warning: rgba(255, 197, 25, 0.15);
    --danger: #ef486a;
    --soft-danger: rgba(239, 72, 106, 0.15);
    --light: #f2f3f8;
    --soft-light: #dfdfe6;
    --dark: #111723;
    --soft-dark: rgba(42, 50, 66, 0.15);
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
}

pre {
    white-space: initial;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none !important;
}

/* .img-fit {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
} */

.des-color > p {
    color: #6c757d !important;
}

/* Hide the native checkbox */
.softtech-checkbox input[type="checkbox"] {
    display: none;
}

/* Style the square box */
.softtech-square-check {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 4px; /* optional */
}

/* Checked state */
.softtech-checkbox input[type="checkbox"]:checked + .softtech-square-check {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Optional: checkmark inside the box */
.softtech-checkbox
    input[type="checkbox"]:checked
    + .softtech-square-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white; /* checkmark color */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/*appointment phone section for large and medium */
.phone {
    position: absolute;
    bottom: 5%;
    left: 10%;
    display: flex;
    align-items: center;
    max-width: 250px;
    color: var(--secondary); /* text-primary color */
}

/* Icon spacing */
.phone i {
    margin-right: 0.5rem;
}

/* Base font size for mobile */
.phone span,
.phone a,
.phone i {
    font-size: 13px; /* mobile */
}

/* Medium screens ≥768px */
@media (min-width: 768px) {
    .phone span,
    .phone a,
    .phone i {
        font-size: 13px;
        color: var(--secondary);
        padding-left: 5px;
    }
}

/* Large screens ≥992px */
@media (min-width: 992px) {
    .phone span,
    .phone a,
    .phone i {
        font-size: 13px;
        color: var(--secondary);
        padding-left: 5px;
    }
}
/*======================================== overlay and hover overlay====================  */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
}
.overlay.overlay-fixed {
    position: fixed;
}
.hov-overlay .overlay,
.hov-container .hov-box {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}
.hov-overlay:hover .overlay,
.hov-container:hover .hov-box {
    visibility: visible;
    opacity: 1;
}
.hov-scale-img:hover img,
.hov-scale:hover {
    transform: scale(1.05);
}
.fullscreen {
    min-height: 100vh;
}

/*======================================================= Z-index style ====================== */
.z--1 {
    z-index: -1 !important;
}
.z-0 {
    z-index: 0 !important;
}
.z-1 {
    z-index: 1 !important;
}
.z-2 {
    z-index: 2 !important;
}
.z-3 {
    z-index: 3 !important;
}
.z-4 {
    z-index: 4 !important;
}
.z-5 {
    z-index: 5 !important;
}
.z-1020 {
    z-index: 1020 !important;
}
.z-1025 {
    z-index: 1025 !important;
}
.z-1035 {
    z-index: 1035 !important;
}
.z-1045 {
    z-index: 1045 !important;
}

/* ===============================================text truncate  =========================*/
.text-truncate-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-truncate-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.text-truncate-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* ======================================================cursor style =========================== */
.c-pointer {
    cursor: pointer !important;
}
.c-not-allowed {
    cursor: not-allowed !important;
}
.c-default {
    cursor: default !important;
}

/*============================================================= position style ================================ */
.attached-top,
.attached-bottom {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}
.attached-top {
    top: 0;
}
.attached-bottom {
    bottom: 0;
}
.separator {
    position: relative;
    text-align: center;
    z-index: 1;
}

.separator:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #ebedf2;
    left: 0;
    right: 0;
    top: 50%;
    z-index: -1;
}
.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.absolute-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.absolute-top-right {
    position: absolute;
    top: 0;
    right: 0;
}
[dir="rtl"] .absolute-top-right {
    right: auto;
    left: 0;
}
.absolute-top-right--2px {
    position: absolute;
    top: -2px;
    right: -2px;
}
.absolute-top-right--5px {
    position: absolute;
    top: -5px;
    right: -5px;
}
.absolute-top-right--10px {
    position: absolute;
    top: -10px;
    right: -10px;
}
.absolute-top-left {
    position: absolute;
    top: 0;
    left: 0;
}
[dir="rtl"] .absolute-top-left {
    left: auto;
    right: 0;
}
.absolute-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}
[dir="rtl"] .absolute-bottom-right {
    left: auto;
    right: 0;
}
.absolute-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
}
[dir="rtl"] .absolute-bottom-left {
    left: auto;
    right: 0;
}
.absolute-top-center {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.sticky-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
}
.recommended-ribbon {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #ff0000;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    padding: 5px 30px;
    top: 29px;
    right: -40px;
}

.dot-loader > div {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin: 0 2px;
    background: #777;
    -webkit-animation: loader 1.48s ease-in-out infinite both;
    animation: loader 1.48s ease-in-out infinite both;
}
.dot-loader > div:nth-child(1) {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.dot-loader > div:nth-child(2) {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.attributes-color-container {
    display: block;
    width: 40px;
    height: 25px;
    border: solid 1px #000;
}

@-webkit-keyframes loader {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.2;
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes loader {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.2;
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
}

.hor-swipe {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .mobile-hor-swipe {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        white-space: nowrap;
    }
    .modal-body .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }
}

.top-0 {
    top: 0 !important;
}
.top-100 {
    top: 100% !important;
}
.bottom-0 {
    bottom: 0 !important;
}
.bottom-100 {
    bottom: 100% !important;
}
.left-0 {
    left: 0 !important;
}
.left-100 {
    left: 100% !important;
}
.right-0 {
    right: 0 !important;
}
.right-100 {
    right: 100% !important;
}

/*========================================================== font weight style ============================== */

.fw-100 {
    font-weight: 100 !important;
}
.fw-200 {
    font-weight: 200 !important;
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}
.fw-800 {
    font-weight: 800 !important;
}
.fw-900 {
    font-weight: 900 !important;
}

/*========================================================== font size style ============================== */
.fs-8 {
    font-size: 8px !important;
}
.fs-9 {
    font-size: 9px !important;
}
.fs-10 {
    font-size: 10px !important;
}
.fs-11 {
    font-size: 11px !important;
}
.fs-12 {
    font-size: 12px !important;
}
.fs-13 {
    font-size: 13px !important;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-15 {
    font-size: 15px !important;
}
.fs-16 {
    font-size: 16px !important;
}
.fs-17 {
    font-size: 17px !important;
}
.fs-18 {
    font-size: 18px !important;
}
.fs-19 {
    font-size: 19px !important;
}
.fs-20 {
    font-size: 20px !important;
}
.fs-21 {
    font-size: 21px !important;
}

.fs-22 {
    font-size: 22px !important;
}
.fs-23 {
    font-size: 23px !important;
}
.fs-24 {
    font-size: 24px !important;
}
.fs-25 {
    font-size: 25px !important;
}
.fs-26 {
    font-size: 26px !important;
}
.fs-27 {
    font-size: 27px !important;
}
.fs-28 {
    font-size: 28px !important;
}
.fs-30 {
    font-size: 30px !important;
}
.fs-35 {
    font-size: 35px !important;
}
.fs-40 {
    font-size: 40px !important;
}
.fs-45 {
    font-size: 45px !important;
}

/*========================================================== Line height style ============================== */

.lh-1 {
    line-height: 1 !important;
}
.lh-1-1 {
    line-height: 1.1 !important;
}
.lh-1-2 {
    line-height: 1.2 !important;
}
.lh-1-3 {
    line-height: 1.3 !important;
}
.lh-1-4 {
    line-height: 1.4 !important;
}
.lh-1-5 {
    line-height: 1.5 !important;
}
.lh-1-6 {
    line-height: 1.6 !important;
}
.lh-1-7 {
    line-height: 1.7 !important;
}
.lh-1-8 {
    line-height: 1.8 !important;
}
.lh-1-9 {
    line-height: 1.9 !important;
}
.lh-2 {
    line-height: 2 !important;
}

/*========================================================== opacity style ============================== */
.opacity-0,
.hov-opacity-0:hover {
    opacity: 0 !important;
}
.opacity-10,
.hov-opacity-10:hover {
    opacity: 0.1 !important;
}
.opacity-20,
.hov-opacity-20:hover {
    opacity: 0.2 !important;
}
.opacity-30,
.hov-opacity-30:hover {
    opacity: 0.3 !important;
}
.opacity-40,
.hov-opacity-40:hover {
    opacity: 0.4 !important;
}
.opacity-50,
.hov-opacity-50:hover {
    opacity: 0.5 !important;
}
.opacity-60,
.hov-opacity-60:hover {
    opacity: 0.6 !important;
}
.opacity-70,
.hov-opacity-70:hover {
    opacity: 0.7 !important;
}
.opacity-80,
.hov-opacity-80:hover {
    opacity: 0.8 !important;
}
.opacity-90,
.hov-opacity-90:hover {
    opacity: 0.9 !important;
}
.opacity-100,
.hov-opacity-100:hover {
    opacity: 1 !important;
}

/*========================================================== shadow style ============================== */
.shadow-xs,
.hov-shadow-xs:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}
.shadow-sm,
.hov-shadow-sm:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.shadow,
.hov-shadow:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}
.shadow-md,
.hov-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.shadow-lg,
.hov-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.shadow-xl,
.hov-shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.shadow-2xl,
.hov-shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}
.shadow-out,
.hov-shadow-out:hover {
    z-index: 2 !important;
    box-shadow: 0px 20px 40px rgb(0 0 0 / 16%) !important;
    /* box-shadow: 0px 2px 30px -7px rgb(0 0 0 / 30%) !important; */
}
.shadow-none,
.hov-shadow-none:hover {
    box-shadow: none !important;
}

/*========================================================== bg style ============================== */
.bg-cover {
    background-size: cover;
}
.bg-center {
    background-position: center center;
}
.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-primary,
.hov-bg-primary:hover {
    background-color: var(--primary) !important;
}
.bg-soft-primary,
.hov-bg-soft-primary:hover {
    background-color: var(--soft-primary) !important;
}
.bg-secondary,
.hov-bg-secondary:hover {
    background-color: var(--secondary) !important;
}
.bg-soft-secondary,
.hov-bg-soft-secondary:hover {
    background-color: var(--soft-secondary) !important;
}
.bg-success,
.hov-bg-success:hover {
    background-color: var(--success) !important;
}
.bg-soft-success,
.hov-bg-soft-success:hover {
    background-color: var(--soft-success) !important;
}
.bg-info,
.hov-bg-info:hover {
    background-color: var(--info) !important;
}
.bg-soft-info,
.hov-bg-soft-info:hover {
    background-color: var(--soft-info) !important;
}
.bg-warning,
.hov-bg-warning:hover {
    background-color: var(--warning) !important;
}
.bg-soft-warning,
.hov-bg-soft-warning:hover {
    background-color: var(--soft-warning) !important;
}
.bg-secondary-base,
.hov-bg-secondary-base:hover {
    background-color: var(--secondary-base) !important;
}
.bg-soft-secondary-base,
.hov-bg-soft-secondary-base:hover {
    background-color: var(--soft-secondary-base) !important;
}
.bg-danger,
.hov-bg-danger:hover {
    background-color: var(--danger) !important;
}
.bg-soft-danger,
.hov-bg-soft-danger:hover {
    background-color: var(--soft-danger) !important;
}
.bg-dark,
.hov-bg-dark:hover {
    background-color: var(--dark) !important;
}
.bg-soft-dark,
.hov-bg-soft-dark:hover {
    background-color: var(--soft-dark) !important;
}
.bg-blue,
.hov-bg-blue:hover {
    background-color: var(--blue) !important;
}
.bg-soft-blue,
.hov-bg-soft-blue:hover {
    background-color: var(--soft-blue) !important;
}
.bg-light,
.hov-bg-light:hover {
    background-color: var(--light) !important;
}
.bg-black,
.hov-bg-black:hover {
    background-color: #17171f !important;
}
.bg-soft-light,
.hov-bg-soft-light:hover {
    background-color: var(--soft-light) !important;
}
.bg-gray,
.hov-bg-gray:hover {
    background-color: var(--gray) !important;
}
.bg-soft-white {
    background-color: var(--soft-white) !important;
}
.hov-bg-white:hover {
    background-color: #fff !important;
}

.bg-black-10,
.hov-bg-black-10:hover {
    background-color: rgb(0 0 0 / 10%) !important;
}
.bg-black-20,
.hov-bg-black-20:hover,
.bg-black-10:hover {
    background-color: rgb(0 0 0 / 20%) !important;
}

.bg-grad-1 {
    background-color: #eb4786;
    background-image: linear-gradient(315deg, #eb4786 0%, #b854a6 74%);
}
.bg-grad-2 {
    background-color: #875fc0;
    background-image: linear-gradient(315deg, #875fc0 0%, #5346ba 74%);
}
.bg-grad-3 {
    background-color: #47c5f4;
    background-image: linear-gradient(315deg, #47c5f4 0%, #6791d9 74%);
}
.bg-grad-4 {
    background-color: #ffb72c;
    background-image: linear-gradient(315deg, #ffb72c 0%, #f57f59 74%);
}
.bg-grad-5 {
    background-color: #f2d470;
    background-image: linear-gradient(120deg, #f2d470 0%, #f39f3d 100%);
}

/*========================================================== box shadow style ============================== */
.shadow-primary,
.hov-shadow-primary:hover {
    box-shadow: -5px 5px 18px rgba(1, 158, 247, 0.39);
}
.shadow-secondary,
.hov-shadow-secondary:hover {
    box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.08);
}
.shadow-success,
.hov-shadow-success:hover {
    box-shadow: -5px 5px 18px rgba(81, 204, 138, 0.39);
}

/*========================================================== Border style ============================== */

.border-2 {
    border: 2px solid !important;
}
.border-3 {
    border: 2px solid !important;
}

.border-gray-100 {
    border-color: #f7fafc !important;
}
.border-gray-200 {
    border-color: #edf2f7 !important;
}
.border-gray-300 {
    border-color: #e2e8f0 !important;
}
.border-gray-400 {
    border-color: #cbd5e0 !important;
}
.border-gray-500 {
    border-color: #a0aec0 !important;
}
.border-gray-600 {
    border-color: #718096 !important;
}
.border-gray-700 {
    border-color: #4a5568 !important;
}
.border-gray-800 {
    border-color: #2d3748 !important;
}
.border-gray-900 {
    border-color: #1a202c !important;
}

.border-primary {
    border-color: var(--primary) !important;
}
.border-secondary {
    border-color: var(--secondary) !important;
}
.border-success {
    border-color: var(--success) !important;
}
.border-info {
    border-color: var(--info) !important;
}
.border-warning {
    border-color: var(--warning) !important;
}
.border-secondary-base {
    border-color: var(--secondary-base) !important;
}
.border-danger {
    border-color: var(--danger) !important;
}
.border-light {
    border-color: var(--light) !important;
}
.border-dark {
    border-color: var(--dark) !important;
}
.border-blue {
    border-color: var(--blue) !important;
}

.border-soft-primary {
    border-color: var(--soft-primary) !important;
}
.border-soft-secondary {
    border-color: var(--soft-secondary) !important;
}
.border-soft-success {
    border-color: var(--soft-success) !important;
}
.border-soft-info {
    border-color: var(--soft-info) !important;
}
.border-soft-warning {
    border-color: var(--soft-warning) !important;
}
.border-soft-secondary-base {
    border-color: var(--soft-secondary-base) !important;
}
.border-soft-danger {
    border-color: var(--soft-danger) !important;
}
.border-soft-dark {
    border-color: var(--soft-dark) !important;
}
.border-soft-light {
    border-color: var(--soft-light) !important;
}
.border-soft-blue {
    border-color: var(--soft-blue) !important;
}
.spinner-border {
    border-right-color: transparent !important;
}

.border-width-2 {
    border-width: 2px !important;
}
.border-width-3 {
    border-width: 3px !important;
}
.border-width-4 {
    border-width: 4px !important;
}
.border-bottom-6px {
    border-bottom: 6px solid !important;
    border-bottom-color: var(--soft-light) !important;
}
.done .border-bottom-6px {
    border-bottom-color: var(--success) !important;
}
.active .border-bottom-6px {
    border-bottom-color: var(--primary) !important;
}

.border-dotted {
    border-style: dotted !important;
}
.border-dashed {
    border-style: dashed !important;
}
.border-transparent {
    border-color: transparent !important;
}
.hov-border:hover {
    border-color: #dee2e6 !important;
}
.hov-border-primary:hover {
    border-color: var(--primary) !important;
}

/*========================================================== text style ============================== */
.border-left-thick {
    border-left: 15px solid var(--secondary);
}
.text-primary,
.hov-text-primary:hover {
    color: var(--primary) !important;
}
.text-soft-primary,
.hov-text-soft-primary:hover {
    color: var(--soft-primary) !important;
}
.text-secondary,
.hov-text-secondary:hover {
    color: var(--secondary) !important;
}
.text-soft-secondary,
.hov-text-soft-secondary:hover {
    color: var(--soft-secondary) !important;
}
.text-success,
.hov-text-success:hover {
    color: var(--success) !important;
}
.text-soft-success,
.hov-text-soft-success:hover {
    color: var(--soft-success) !important;
}
.text-info,
.hov-text-info:hover {
    color: var(--info) !important;
}
.text-soft-info,
.hov-text-soft-info:hover {
    color: var(--soft-info) !important;
}
.text-warning,
.hov-text-warning:hover {
    color: var(--warning) !important;
}
.text-soft-warning,
.hov-text-soft-warning:hover {
    color: var(--soft-warning) !important;
}
.text-secondary-base,
.hov-text-secondary-base:hover {
    color: var(--secondary-base) !important;
}
.text-soft-secondary-base,
.hov-text-soft-secondary-base:hover {
    color: var(--soft-secondary-base) !important;
}
.text-danger,
.hov-text-danger:hover {
    color: var(--danger) !important;
}
.text-soft-danger,
.hov-text-soft-danger:hover {
    color: var(--soft-danger) !important;
}
.text-dark,
.hov-text-dark:hover {
    color: var(--dark) !important;
}
.text-soft-dark,
.hov-text-soft-dark:hover {
    color: var(--soft-dark) !important;
}
.text-gray,
.hov-text-gray:hover {
    color: var(--gray) !important;
}
.text-gray-dark {
    color: var(--gray-dark) !important;
}
.text-blue,
.hov-text-blue:hover {
    color: var(--blue) !important;
}
.text-soft-blue,
.hov-text-soft-blue:hover {
    color: var(--soft-blue) !important;
}
.text-light,
.hov-text-light:hover {
    color: var(--light) !important;
}
.text-soft-light {
    color: var(--soft-light) !important;
}
.text-soft-white {
    color: var(--soft-white) !important;
}
.text-blue {
    color: var(--blue) !important;
}
.text-inherit {
    color: inherit !important;
}
.hov-text-white:hover {
    color: #fff !important;
}
.hov-text-bold:hover {
    font-weight: bold !important;
}

/*========================================================== width style ============================== */
.w-auto {
    width: auto;
}
.w-5px,
.size-5px {
    width: 5px;
}
.w-10px,
.size-10px {
    width: 10px;
}
.w-15px,
.size-15px {
    width: 15px;
}
.w-20px,
.size-20px {
    width: 20px;
}
.w-25px,
.size-25px {
    width: 25px;
}
.w-30px,
.size-30px {
    width: 30px;
}
.w-35px,
.size-35px {
    width: 35px;
}
.w-40px,
.size-40px {
    width: 40px;
}
.w-45px,
.size-45px {
    width: 45px;
}
.w-48px,
.size-48px {
    width: 48px;
}
.w-50px,
.size-50px {
    width: 50px;
}
.w-60px,
.size-60px {
    width: 60px;
}
.w-64px,
.size-64px {
    width: 64px;
}
.w-70px,
.size-70px {
    width: 70px;
}
.w-80px,
.size-80px {
    width: 80px;
}
.w-90px,
.size-90px {
    width: 90px;
}
.w-100px,
.size-100px {
    width: 100px;
}
.w-110px,
.size-110px {
    width: 110px;
}
.w-120px,
.size-120px {
    width: 120px;
}
.w-130px,
.size-130px {
    width: 130px;
}
.w-140px,
.size-140px {
    width: 140px;
}
.w-150px,
.size-150px {
    width: 150px;
}
.w-160px,
.size-160px {
    width: 160px;
}
.w-170px,
.size-170px {
    width: 170px;
}
.w-180px,
.size-180px {
    width: 180px;
}
.w-190px,
.size-190px {
    width: 190px;
}
.w-200px,
.size-200px {
    width: 200px;
}
.w-210px,
.size-210px {
    width: 210px;
}
.w-220px,
.size-220px {
    width: 220px;
}
.w-230px,
.size-230px {
    width: 230px;
}
.w-240px,
.size-240px {
    width: 240px;
}
.w-250px,
.size-250px {
    width: 250px;
}
.w-260px,
.size-260px {
    width: 260px;
}
.w-270px,
.size-270px {
    width: 270px;
}
.w-280px,
.size-280px {
    width: 280px;
}
.w-290px,
.size-290px {
    width: 290px;
}
.w-300px,
.size-300px {
    width: 300px;
}
.w-310px,
.size-310px {
    width: 310px;
}
.w-320px,
.size-320px {
    width: 320px;
}
.w-330px,
.size-330px {
    width: 330px;
}
.w-340px,
.size-340px {
    width: 340px;
}
.w-350px,
.size-350px {
    width: 350px;
}
.w-360px,
.size-360px {
    width: 360px;
}
.w-370px,
.size-370px {
    width: 370px;
}
.w-380px,
.size-380px {
    width: 380px;
}
.w-390px,
.size-390px {
    width: 390px;
}
.w-400px,
.size-400px {
    width: 400px;
}
.w-410px,
.size-410px {
    width: 410px;
}
.w-420px,
.size-420px {
    width: 420px;
}
.w-450px,
.size-450px {
    width: 450px;
}
.w-500px,
.size-500px {
    width: 500px;
}
.w-553px,
.size-553px {
    width: 553px;
}
.w-640px,
.size-640px {
    width: 640px;
}
.w-800px,
.size-800px {
    width: 820px;
}
/*========================================================== height style ============================== */
.h-auto {
    height: auto;
}
.h-5px,
.size-5px {
    height: 5px;
}
.h-10px,
.size-10px {
    height: 10px;
}
.h-15px,
.size-15px {
    height: 15px;
}
.h-20px,
.size-20px {
    height: 20px;
}
.h-25px,
.size-25px {
    height: 25px;
}
.h-30px,
.size-30px {
    height: 30px;
}
.h-35px,
.size-35px {
    height: 35px;
}
.h-40px,
.size-40px {
    height: 40px;
}
.h-45px,
.size-45px {
    height: 45px;
}
.h-48px,
.size-48px {
    height: 48px;
}
.h-50px,
.size-50px {
    height: 50px;
}
.h-60px,
.size-60px {
    height: 60px;
}
.h-64px,
.size-64px {
    height: 64px;
}
.h-70px,
.size-70px {
    height: 70px;
}
.h-80px,
.size-80px {
    height: 80px;
}
.h-90px,
.size-90px {
    height: 90px;
}
.h-100px,
.size-100px {
    height: 100px;
}
.h-110px,
.size-110px {
    height: 110px;
}
.h-120px,
.size-120px {
    height: 120px;
}
.h-130px,
.size-130px {
    height: 130px;
}
.h-140px,
.size-140px {
    height: 140px;
}
.h-150px,
.size-150px {
    height: 150px;
}
.h-255px,
.size-255px {
    height: 255px;
}
.h-160px,
.size-160px {
    height: 160px;
}
.h-170px,
.size-170px {
    height: 170px;
}
.h-180px,
.size-180px {
    height: 180px;
}
.h-197px,
.size-197px {
    height: 197px;
}
.h-190px,
.size-190px {
    height: 190px;
}
.h-200px,
.size-200px {
    height: 200px;
}
.h-210px,
.size-210px {
    height: 210px;
}
.h-212px,
.size-212px {
    height: 212px;
}
.h-215px,
.size-215px {
    height: 215px;
}
.h-226px,
.size-226px {
    height: 226px;
}
.h-220px,
.size-220px {
    height: 220px;
}
.h-230px,
.size-230px {
    height: 230px;
}
.h-240px,
.size-240px {
    height: 240px;
}
.h-250px,
.size-250px {
    height: 250px;
}
.h-260px,
.size-260px {
    height: 260px;
}
.h-270px,
.size-270px {
    height: 270px;
}
.h-280px,
.size-280px {
    height: 280px;
}
.h-290px,
.size-290px {
    height: 290px;
}
.h-300px,
.size-300px {
    height: 300px;
}
.h-310px,
.size-310px {
    height: 310px;
}
.h-320px,
.size-320px {
    height: 320px;
}
.h-330px,
.size-330px {
    height: 330px;
}
.h-340px,
.size-340px {
    height: 340px;
}
.h-350px,
.size-350px {
    height: 350px;
}
.h-360px,
.size-360px {
    height: 360px;
}
.h-370px,
.size-370px {
    height: 370px;
}
.h-380px,
.size-380px {
    height: 380px;
}
.h-390px,
.size-390px {
    height: 390px;
}
.h-400px,
.size-400px {
    height: 400px;
}
.h-410px,
.size-410px {
    height: 410px;
}
.h-420px,
.size-420px {
    height: 420px;
}
.h-450px,
.size-450px {
    height: 450px;
}
.h-460px,
.size-460px {
    height: 460px;
}
.h-475px,
.size-475px {
    height: 475px;
}
.h-485px,
.size-485px {
    height: 485px;
}
.h-490px,
.size-490px {
    height: 490px;
}
.h-500px,
.size-500px {
    height: 500px;
}
.h-553px,
.size-553px {
    height: 553px;
}
.h-600px,
.size-600px {
    height: 600px;
}
.h-620px,
.size-620px {
    height: 620px;
}
.h-630px,
.size-630px {
    height: 630px;
}
.h-640px,
.size-640px {
    height: 640px;
}
.h-800px,
.size-800px {
    height: 820px;
}
/*========================================================== padding style ============================== */
/* padding left  */
.pl-6 {
    padding-left: 6px;
}
.pl-7 {
    padding-left: 7px;
}
.pl-8 {
    padding-left: 8px;
}
.pl-9 {
    padding-left: 9px;
}
.pl-10 {
    padding-left: 10px;
}
.pl-11 {
    padding-left: 11px;
}
.pl-12 {
    padding-left: 12px;
}
.pl-13 {
    padding-left: 13px;
}
.pl-14 {
    padding-left: 14px;
}
.pl-15 {
    padding-left: 15px;
}
.pl-16 {
    padding-left: 16px;
}
.pl-17 {
    padding-left: 17px;
}
.pl-18 {
    padding-left: 18px;
}
.pl-19 {
    padding-left: 19px;
}
.pl-20 {
    padding-left: 20px;
}
.pl-21 {
    padding-left: 21px;
}
.pl-22 {
    padding-left: 22px;
}
.pl-23 {
    padding-left: 23px;
}
.pl-24 {
    padding-left: 24px;
}
.pl-25 {
    padding-left: 25px;
}

/* padding right  */
.pr-6 {
    padding-right: 6px;
}
.pr-7 {
    padding-right: 7px;
}
.pr-8 {
    padding-right: 8px;
}
.pr-9 {
    padding-right: 9px;
}
.pr-10 {
    padding-right: 10px;
}
.pr-11 {
    padding-right: 11px;
}
.pr-12 {
    padding-right: 12px;
}
.pr-13 {
    padding-right: 13px;
}
.pr-14 {
    padding-right: 14px;
}
.pr-15 {
    padding-right: 15px;
}
.pr-16 {
    padding-right: 16px;
}
.pr-17 {
    padding-right: 17px;
}
.pr-18 {
    padding-right: 18px;
}
.pr-19 {
    padding-right: 19px;
}
.pr-20 {
    padding-right: 20px;
}
.pr-21 {
    padding-right: 21px;
}
.pr-22 {
    padding-right: 22px;
}
.pr-23 {
    padding-right: 23px;
}
.pr-24 {
    padding-right: 24px;
}
.pr-25 {
    padding-right: 25px;
}

/* margin left  */
.ml-6 {
    margin-left: 6px;
}
.ml-7 {
    margin-left: 7px;
}
.ml-8 {
    margin-left: 8px;
}
.ml-9 {
    margin-left: 9px;
}
.ml-10 {
    margin-left: 10px;
}
.ml-11 {
    margin-left: 11px;
}
.ml-12 {
    margin-left: 12px;
}
.ml-13 {
    margin-left: 13px;
}
.ml-14 {
    margin-left: 14px;
}
.ml-15 {
    margin-left: 15px;
}
.ml-16 {
    margin-left: 16px;
}
.ml-17 {
    margin-left: 17px;
}
.ml-18 {
    margin-left: 18px;
}
.ml-19 {
    margin-left: 19px;
}
.ml-20 {
    margin-left: 20px;
}
.ml-21 {
    margin-left: 21px;
}
.ml-22 {
    margin-left: 22px;
}
.ml-23 {
    margin-left: 23px;
}
.ml-24 {
    margin-left: 24px;
}
.ml-25 {
    margin-left: 25px;
}

/* margin right  */
.mr-6 {
    margin-right: 6px;
}
.mr-7 {
    margin-right: 7px;
}
.mr-8 {
    margin-right: 8px;
}
.mr-9 {
    margin-right: 9px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-11 {
    margin-right: 11px;
}
.mr-12 {
    margin-right: 12px;
}
.mr-13 {
    margin-right: 13px;
}
.mr-14 {
    margin-right: 14px;
}
.mr-15 {
    margin-right: 15px;
}
.mr-16 {
    margin-right: 16px;
}
.mr-17 {
    margin-right: 17px;
}
.mr-18 {
    margin-right: 18px;
}
.mr-19 {
    margin-right: 19px;
}
.mr-20 {
    margin-right: 20px;
}
.mr-21 {
    margin-right: 21px;
}
.mr-22 {
    margin-right: 22px;
}
.mr-23 {
    margin-right: 23px;
}
.mr-24 {
    margin-right: 24px;
}
.mr-25 {
    margin-right: 25px;
}

/* padding x-axis  */
.px-6 {
    padding-left: 6px;
    padding-right: 6px;
}
.px-7 {
    padding-left: 7px;
    padding-right: 7px;
}
.px-8 {
    padding-left: 8px;
    padding-right: 8px;
}
.px-9 {
    padding-left: 9px;
    padding-right: 9px;
}
.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}
.px-11 {
    padding-left: 11px;
    padding-right: 11px;
}
.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}
.px-13 {
    padding-left: 13px;
    padding-right: 13px;
}
.px-14 {
    padding-left: 14px;
    padding-right: 14px;
}
.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}
.px-16 {
    padding-left: 16px;
    padding-right: 16px;
}
.px-17 {
    padding-left: 17px;
    padding-right: 17px;
}
.px-18 {
    padding-left: 18px;
    padding-right: 18px;
}
.px-19 {
    padding-left: 19px;
    padding-right: 19px;
}
.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}
.px-21 {
    padding-left: 21px;
    padding-right: 21px;
}
.px-22 {
    padding-left: 22px;
    padding-right: 22px;
}
.px-23 {
    padding-left: 23px;
    padding-right: 23px;
}
.px-24 {
    padding-left: 24px;
    padding-right: 24px;
}
.px-25 {
    padding-left: 25px;
    padding-right: 25px;
}

/* padding y axis  */
.py-6 {
    padding-top: 6px;
    padding-bottom: 6px;
}
.py-7 {
    padding-top: 7px;
    padding-bottom: 7px;
}
.py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.py-9 {
    padding-top: 9px;
    padding-bottom: 9px;
}
.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py-11 {
    padding-top: 11px;
    padding-bottom: 11px;
}
.py-12 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.py-13 {
    padding-top: 13px;
    padding-bottom: 13px;
}
.py-14 {
    padding-top: 14px;
    padding-bottom: 14px;
}
.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.py-16 {
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-17 {
    padding-top: 17px;
    padding-bottom: 17px;
}
.py-18 {
    padding-top: 18px;
    padding-bottom: 18px;
}
.py-19 {
    padding-top: 19px;
    padding-bottom: 19px;
}
.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.py-21 {
    padding-top: 21px;
    padding-bottom: 21px;
}
.py-22 {
    padding-top: 22px;
    padding-bottom: 22px;
}
.py-23 {
    padding-top: 23px;
    padding-bottom: 23px;
}
.py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
}
.py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}
/*========================================================== col and gutters style ============================== */
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl,
.col-xxl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.gutters-5 {
    margin-right: -5px;
    margin-left: -5px;
}
.gutters-5 > .col,
.gutters-5 > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}
.gutters-10 {
    margin-right: -10px;
    margin-left: -10px;
}
.gutters-10 > .col,
.gutters-10 > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}
.gutters-15 {
    margin-right: -15px;
    margin-left: -15px;
}
.gutters-15 > .col,
.gutters-15 > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}
.gutters-16 {
    margin-right: -16px;
    margin-left: -16px;
}
.gutters-16 > .col,
.gutters-16 > [class*="col-"] {
    padding-right: 0px;
    padding-left: 0px;
}
.gutters-17 {
    margin-right: -17px;
    margin-left: -17px;
}
.gutters-17 > .col,
.gutters-17 > [class*="col-"] {
    padding-right: 17px;
    padding-left: 17px;
}
.gutters-20 {
    margin-right: -20px;
    margin-left: -20px;
}
.gutters-20 > .col,
.gutters-20 > [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
}
.gutters-25 {
    margin-right: -25px;
    margin-left: -25px;
}
.gutters-25 > .col,
.gutters-25 > [class*="col-"] {
    padding-right: 25px;
    padding-left: 25px;
}
.gutters-30 {
    margin-right: -30px;
    margin-left: -30px;
}
.gutters-30 > .col,
.gutters-30 > [class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
}
/*========================================================== row cols  style ============================== */
[dir="rtl"] .row-cols-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
[dir="rtl"] .row-cols-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
[dir="rtl"] .row-cols-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
[dir="rtl"] .row-cols-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
[dir="rtl"] .row-cols-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
[dir="rtl"] .row-cols-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
/*========================================================== Responsive all device style ============================== */

/* small device */
@media (min-width: 576px) {
    .border-sm {
        border: 1px solid #dfdfe6 !important;
    }
    .border-sm-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-sm-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-sm-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-sm-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-sm-0 {
        border: 0 !important;
    }
    .border-sm-top-0 {
        border-top: 0 !important;
    }
    .border-sm-right-0 {
        border-right: 0 !important;
    }
    .border-sm-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-sm-left-0 {
        border-left: 0 !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }
    .w-sm-50 {
        width: 50% !important;
    }
    .w-sm-75 {
        width: 75% !important;
    }
    .w-sm-100 {
        width: 100% !important;
    }
    .w-sm-auto {
        width: auto !important;
    }

    /* padding small device */
    /* padding left  */
    .pl-sm-1 {
        padding-left: 1px;
    }
    .pl-sm-2 {
        padding-left: 2px;
    }
    .pl-sm-3 {
        padding-left: 3px;
    }
    .pl-sm-4 {
        padding-left: 4px;
    }
    .pl-sm-5 {
        padding-left: 5px;
    }
    .pl-sm-6 {
        padding-left: 6px;
    }
    .pl-sm-7 {
        padding-left: 7px;
    }
    .pl-sm-8 {
        padding-left: 8px;
    }
    .pl-sm-9 {
        padding-left: 9px;
    }
    .pl-sm-10 {
        padding-left: 10px;
    }

    /* padding right  */
    .pr-sm-1 {
        padding-right: 1px;
    }
    .pr-sm-2 {
        padding-right: 2px;
    }
    .pr-sm-3 {
        padding-right: 3px;
    }
    .pr-sm-4 {
        padding-right: 4px;
    }
    .pr-sm-5 {
        padding-right: 5px;
    }
    .pr-sm-6 {
        padding-right: 6px;
    }
    .pr-sm-7 {
        padding-right: 7px;
    }
    .pr-sm-8 {
        padding-right: 8px;
    }
    .pr-sm-9 {
        padding-right: 9px;
    }
    .pr-sm-10 {
        padding-right: 10px;
    }

    /* margin left  */
    .ml-sm-1 {
        margin-left: 1px;
    }
    .ml-sm-2 {
        margin-left: 2px;
    }
    .ml-sm-3 {
        margin-left: 3px;
    }
    .ml-sm-4 {
        margin-left: 4px;
    }
    .ml-sm-5 {
        margin-left: 5px;
    }
    .ml-sm-6 {
        margin-left: 6px;
    }
    .ml-sm-7 {
        margin-left: 7px;
    }
    .ml-sm-8 {
        margin-left: 8px;
    }
    .ml-sm-9 {
        margin-left: 9px;
    }
    .ml-sm-10 {
        margin-left: 10px;
    }

    /* margin right  */
    .mr-sm-1 {
        margin-right: 1px;
    }
    .mr-sm-2 {
        margin-right: 2px;
    }
    .mr-sm-3 {
        margin-right: 3px;
    }
    .mr-sm-4 {
        margin-right: 4px;
    }
    .mr-sm-5 {
        margin-right: 5px;
    }
    .mr-sm-6 {
        margin-right: 6px;
    }
    .mr-sm-7 {
        margin-right: 7px;
    }
    .mr-sm-8 {
        margin-right: 8px;
    }
    .mr-sm-9 {
        margin-right: 9px;
    }
    .mr-sm-10 {
        margin-right: 10px;
    }

    /* padding x-axis  */
    .px-sm-1 {
        padding-left: 1px;
        padding-right: 1px;
    }
    .px-sm-2 {
        padding-left: 2px;
        padding-right: 2px;
    }
    .px-sm-3 {
        padding-left: 3px;
        padding-right: 3px;
    }
    .px-sm-4 {
        padding-left: 4px;
        padding-right: 4px;
    }
    .px-sm-5 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .px-sm-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .px-sm-7 {
        padding-left: 7px;
        padding-right: 7px;
    }
    .px-sm-8 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .px-sm-9 {
        padding-left: 9px;
        padding-right: 9px;
    }
    .px-sm-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* padding y axis  */
    .py-sm-1 {
        padding-top: 1px;
        padding-bottom: 1px;
    }
    .py-sm-2 {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .py-sm-3 {
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .py-sm-4 {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }
    .py-sm-5 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .py-sm-6 {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .py-sm-7 {
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .py-sm-8 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .py-sm-9 {
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .py-sm-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .w-sm-auto {
        width: auto;
    }
    .w-sm-5px,
    .size-sm-5px {
        width: 5px;
    }
    .w-sm-10px,
    .size-sm-10px {
        width: 10px;
    }
    .w-sm-15px,
    .size-sm-15px {
        width: 15px;
    }
    .w-sm-20px,
    .size-sm-20px {
        width: 20px;
    }
    .w-sm-25px,
    .size-sm-25px {
        width: 25px;
    }
    .w-sm-30px,
    .size-sm-30px {
        width: 30px;
    }
    .w-sm-35px,
    .size-sm-35px {
        width: 35px;
    }
    .w-sm-40px,
    .size-sm-40px {
        width: 40px;
    }
    .w-sm-45px,
    .size-sm-45px {
        width: 45px;
    }
    .w-sm-48px,
    .size-sm-48px {
        width: 48px;
    }
    .w-sm-50px,
    .size-sm-50px {
        width: 50px;
    }
    .w-sm-55px,
    .size-sm-55px {
        width: 55px;
    }
    .w-sm-60px,
    .size-sm-60px {
        width: 60px;
    }
    .w-sm-64px,
    .size-sm-64px {
        width: 64px;
    }
    .w-sm-70px,
    .size-sm-70px {
        width: 70px;
    }
    .w-sm-80px,
    .size-sm-80px {
        width: 80px;
    }
    .w-sm-90px,
    .size-sm-90px {
        width: 90px;
    }
    .w-sm-100px,
    .size-sm-100px {
        width: 100px;
    }
    .w-sm-110px,
    .size-sm-110px {
        width: 110px;
    }
    .w-sm-120px,
    .size-sm-120px {
        width: 120px;
    }
    .w-sm-130px,
    .size-sm-130px {
        width: 130px;
    }
    .w-sm-140px,
    .size-sm-140px {
        width: 140px;
    }
    .w-sm-150px,
    .size-sm-150px {
        width: 150px;
    }
    .w-sm-160px,
    .size-sm-160px {
        width: 160px;
    }
    .w-sm-170px,
    .size-sm-170px {
        width: 170px;
    }
    .w-sm-180px,
    .size-sm-180px {
        width: 180px;
    }
    .w-sm-190px,
    .size-sm-190px {
        width: 190px;
    }
    .w-sm-200px,
    .size-sm-200px {
        width: 200px;
    }
    .w-sm-210px,
    .size-sm-210px {
        width: 210px;
    }
    .w-sm-220px,
    .size-sm-220px {
        width: 220px;
    }
    .w-sm-230px,
    .size-sm-230px {
        width: 230px;
    }
    .w-sm-240px,
    .size-sm-240px {
        width: 240px;
    }
    .w-sm-250px,
    .size-sm-250px {
        width: 250px;
    }
    .w-sm-260px,
    .size-sm-260px {
        width: 260px;
    }
    .w-sm-270px,
    .size-sm-270px {
        width: 270px;
    }
    .w-sm-280px,
    .size-sm-280px {
        width: 280px;
    }
    .w-sm-290px,
    .size-sm-290px {
        width: 290px;
    }
    .w-sm-300px,
    .size-sm-300px {
        width: 300px;
    }
    .w-sm-310px,
    .size-sm-310px {
        width: 310px;
    }
    .w-sm-320px,
    .size-sm-320px {
        width: 320px;
    }
    .w-sm-330px,
    .size-sm-330px {
        width: 330px;
    }
    .w-sm-340px,
    .size-sm-340px {
        width: 340px;
    }
    .w-sm-350px,
    .size-sm-350px {
        width: 350px;
    }
    .w-sm-360px,
    .size-sm-360px {
        width: 360px;
    }
    .w-sm-370px,
    .size-sm-370px {
        width: 370px;
    }
    .w-sm-380px,
    .size-sm-380px {
        width: 380px;
    }
    .w-sm-390px,
    .size-sm-390px {
        width: 390px;
    }
    .w-sm-400px,
    .size-sm-400px {
        width: 400px;
    }
    .w-sm-410px,
    .size-sm-410px {
        width: 410px;
    }
    .w-sm-420px,
    .size-sm-420px {
        width: 420px;
    }
    .w-sm-450px,
    .size-sm-450px {
        width: 450px;
    }
    .w-sm-500px,
    .size-sm-500px {
        width: 500px;
    }
    .w-sm-553px,
    .size-sm-553px {
        width: 553px;
    }
    .w-sm-640px,
    .size-sm-640px {
        width: 640px;
    }
    .w-sm-800px,
    .size-sm-800px {
        width: 820px;
    }

    .h-sm-auto {
        height: auto;
    }
    .h-sm-5px,
    .size-sm-5px {
        height: 5px;
    }
    .h-sm-10px,
    .size-sm-10px {
        height: 10px;
    }
    .h-sm-15px,
    .size-sm-15px {
        height: 15px;
    }
    .h-sm-20px,
    .size-sm-20px {
        height: 20px;
    }
    .h-sm-25px,
    .size-sm-25px {
        height: 25px;
    }
    .h-sm-30px,
    .size-sm-30px {
        height: 30px;
    }
    .h-sm-35px,
    .size-sm-35px {
        height: 35px;
    }
    .h-sm-40px,
    .size-sm-40px {
        height: 40px;
    }
    .h-sm-45px,
    .size-sm-45px {
        height: 45px;
    }
    .h-sm-48px,
    .size-sm-48px {
        height: 48px;
    }
    .h-sm-50px,
    .size-sm-50px {
        height: 50px;
    }
    .h-sm-55px,
    .size-sm-55px {
        height: 55px;
    }
    .h-sm-60px,
    .size-sm-60px {
        height: 60px;
    }
    .h-sm-64px,
    .size-sm-64px {
        height: 64px;
    }
    .h-sm-70px,
    .size-sm-70px {
        height: 70px;
    }
    .h-sm-80px,
    .size-sm-80px {
        height: 80px;
    }
    .h-sm-90px,
    .size-sm-90px {
        height: 90px;
    }
    .h-sm-100px,
    .size-sm-100px {
        height: 100px;
    }
    .h-sm-110px,
    .size-sm-110px {
        height: 110px;
    }
    .h-sm-120px,
    .size-sm-120px {
        height: 120px;
    }
    .h-sm-130px,
    .size-sm-130px {
        height: 130px;
    }
    .h-sm-140px,
    .size-sm-140px {
        height: 140px;
    }
    .h-sm-150px,
    .size-sm-150px {
        height: 150px;
    }
    .h-sm-160px,
    .size-sm-160px {
        height: 160px;
    }
    .h-sm-170px,
    .size-sm-170px {
        height: 170px;
    }
    .h-sm-180px,
    .size-sm-180px {
        height: 180px;
    }
    .h-sm-190px,
    .size-sm-190px {
        height: 190px;
    }
    .h-sm-200px,
    .size-sm-200px {
        height: 200px;
    }
    .h-sm-210px,
    .size-sm-210px {
        height: 210px;
    }
    .h-sm-220px,
    .size-sm-220px {
        height: 220px;
    }
    .h-sm-230px,
    .size-sm-230px {
        height: 230px;
    }
    .h-sm-240px,
    .size-sm-240px {
        height: 240px;
    }
    .h-sm-250px,
    .size-sm-250px {
        height: 250px;
    }
    .h-sm-260px,
    .size-sm-260px {
        height: 260px;
    }
    .h-sm-270px,
    .size-sm-270px {
        height: 270px;
    }
    .h-sm-280px,
    .size-sm-280px {
        height: 280px;
    }
    .h-sm-290px,
    .size-sm-290px {
        height: 290px;
    }
    .h-sm-300px,
    .size-sm-300px {
        height: 300px;
    }
    .h-sm-310px,
    .size-sm-310px {
        height: 310px;
    }
    .h-sm-320px,
    .size-sm-320px {
        height: 320px;
    }
    .h-sm-330px,
    .size-sm-330px {
        height: 330px;
    }
    .h-sm-340px,
    .size-sm-340px {
        height: 340px;
    }
    .h-sm-350px,
    .size-sm-350px {
        height: 350px;
    }
    .h-sm-360px,
    .size-sm-360px {
        height: 360px;
    }
    .h-sm-370px,
    .size-sm-370px {
        height: 370px;
    }
    .h-sm-380px,
    .size-sm-380px {
        height: 380px;
    }
    .h-sm-390px,
    .size-sm-390px {
        height: 390px;
    }
    .h-sm-400px,
    .size-sm-400px {
        height: 400px;
    }
    .h-sm-410px,
    .size-sm-410px {
        height: 410px;
    }
    .h-sm-420px,
    .size-sm-420px {
        height: 420px;
    }
    .h-sm-450px,
    .size-sm-450px {
        height: 450px;
    }
    .h-sm-460px,
    .size-sm-460px {
        height: 460px;
    }
    .h-sm-475px,
    .size-sm-475px {
        height: 475px;
    }
    .h-sm-485px,
    .size-sm-485px {
        height: 485px;
    }
    .h-sm-490px,
    .size-sm-490px {
        height: 490px;
    }
    .h-sm-500px,
    .size-sm-500px {
        height: 500px;
    }
    .h-sm-553px,
    .size-sm-553px {
        height: 553px;
    }
    .h-sm-640px,
    .size-sm-640px {
        height: 640px;
    }
    .h-sm-800px,
    .size-sm-800px {
        height: 820px;
    }

    .sm-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .sm-no-gutters > .col,
    .sm-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .sm-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .sm-gutters-5 > .col,
    .sm-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .sm-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .sm-gutters-10 > .col,
    .sm-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .sm-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .sm-gutters-15 > .col,
    .sm-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .sm-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }

    .sm-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }

    .sm-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .sm-gutters-20 > .col,
    .sm-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .sm-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .sm-gutters-25 > .col,
    .sm-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .sm-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .sm-gutters-30 > .col,
    .sm-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-sm-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-sm-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-sm-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-sm-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-sm-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-sm-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-sm-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-sm-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}
/* medium */
@media (min-width: 768px) {
    .border-md {
        border: 1px solid #dfdfe6 !important;
    }
    .border-md-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-md-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-md-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-md-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-md-0 {
        border: 0 !important;
    }
    .border-md-top-0 {
        border-top: 0 !important;
    }
    .border-md-right-0 {
        border-right: 0 !important;
    }
    .border-md-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-md-left-0 {
        border-left: 0 !important;
    }

    .w-md-25 {
        width: 25% !important;
    }
    .w-md-50 {
        width: 50% !important;
    }
    .w-md-75 {
        width: 75% !important;
    }
    .w-md-100 {
        width: 100% !important;
    }
    .w-md-auto {
        width: auto !important;
    }

    /* padding left  */
    .pl-md-1 {
        padding-left: 1px;
    }
    .pl-md-2 {
        padding-left: 2px;
    }
    .pl-md-3 {
        padding-left: 3px;
    }
    .pl-md-4 {
        padding-left: 4px;
    }
    .pl-md-5 {
        padding-left: 5px;
    }
    .pl-md-6 {
        padding-left: 6px;
    }
    .pl-md-7 {
        padding-left: 7px;
    }
    .pl-md-8 {
        padding-left: 8px;
    }
    .pl-md-9 {
        padding-left: 9px;
    }
    .pl-md-10 {
        padding-left: 10px;
    }

    /* padding right  */
    .pr-md-1 {
        padding-right: 1px;
    }
    .pr-md-2 {
        padding-right: 2px;
    }
    .pr-md-3 {
        padding-right: 3px;
    }
    .pr-md-4 {
        padding-right: 4px;
    }
    .pr-md-5 {
        padding-right: 5px;
    }
    .pr-md-6 {
        padding-right: 6px;
    }
    .pr-md-7 {
        padding-right: 7px;
    }
    .pr-md-8 {
        padding-right: 8px;
    }
    .pr-md-9 {
        padding-right: 9px;
    }
    .pr-md-10 {
        padding-right: 10px;
    }

    /* margin left  */
    .ml-md-1 {
        margin-left: 1px;
    }
    .ml-md-2 {
        margin-left: 2px;
    }
    .ml-md-3 {
        margin-left: 3px;
    }
    .ml-md-4 {
        margin-left: 4px;
    }
    .ml-md-5 {
        margin-left: 5px;
    }
    .ml-md-6 {
        margin-left: 6px;
    }
    .ml-md-7 {
        margin-left: 7px;
    }
    .ml-md-8 {
        margin-left: 8px;
    }
    .ml-md-9 {
        margin-left: 9px;
    }
    .ml-md-10 {
        margin-left: 10px;
    }

    /* margin right  */
    .mr-md-1 {
        margin-right: 1px;
    }
    .mr-md-2 {
        margin-right: 2px;
    }
    .mr-md-3 {
        margin-right: 3px;
    }
    .mr-md-4 {
        margin-right: 4px;
    }
    .mr-md-5 {
        margin-right: 5px;
    }
    .mr-md-6 {
        margin-right: 6px;
    }
    .mr-md-7 {
        margin-right: 7px;
    }
    .mr-md-8 {
        margin-right: 8px;
    }
    .mr-md-9 {
        margin-right: 9px;
    }
    .mr-md-10 {
        margin-right: 10px;
    }

    /* padding x-axis  */
    .px-md-1 {
        padding-left: 1px;
        padding-right: 1px;
    }
    .px-md-2 {
        padding-left: 2px;
        padding-right: 2px;
    }
    .px-md-3 {
        padding-left: 3px;
        padding-right: 3px;
    }
    .px-md-4 {
        padding-left: 4px;
        padding-right: 4px;
    }
    .px-md-5 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .px-md-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .px-md-7 {
        padding-left: 7px;
        padding-right: 7px;
    }
    .px-md-8 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .px-md-9 {
        padding-left: 9px;
        padding-right: 9px;
    }
    .px-md-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* padding y axis  */
    .py-md-1 {
        padding-top: 1px;
        padding-bottom: 1px;
    }
    .py-md-2 {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .py-md-3 {
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .py-md-4 {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .py-md-5 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .py-md-6 {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .py-md-7 {
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .py-md-8 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .py-md-9 {
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .py-md-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .w-md-auto {
        width: auto;
    }
    .w-md-5px,
    .size-md-5px {
        width: 5px;
    }
    .w-md-10px,
    .size-md-10px {
        width: 10px;
    }
    .w-md-15px,
    .size-md-15px {
        width: 15px;
    }
    .w-md-20px,
    .size-md-20px {
        width: 20px;
    }
    .w-md-25px,
    .size-md-25px {
        width: 25px;
    }
    .w-md-30px,
    .size-md-30px {
        width: 30px;
    }
    .w-md-35px,
    .size-md-35px {
        width: 35px;
    }
    .w-md-40px,
    .size-md-40px {
        width: 40px;
    }
    .w-md-45px,
    .size-md-45px {
        width: 45px;
    }
    .w-md-48px,
    .size-md-48px {
        width: 48px;
    }
    .w-md-50px,
    .size-md-50px {
        width: 50px;
    }
    .w-md-55px,
    .size-md-55px {
        width: 55px;
    }
    .w-md-60px,
    .size-md-60px {
        width: 60px;
    }
    .w-md-64px,
    .size-md-64px {
        width: 64px;
    }
    .w-md-70px,
    .size-md-70px {
        width: 70px;
    }
    .w-md-80px,
    .size-md-80px {
        width: 80px;
    }
    .w-md-90px,
    .size-md-90px {
        width: 90px;
    }
    .w-md-100px,
    .size-md-100px {
        width: 100px;
    }
    .w-md-110px,
    .size-md-110px {
        width: 110px;
    }
    .w-md-120px,
    .size-md-120px {
        width: 120px;
    }
    .w-md-130px,
    .size-md-130px {
        width: 130px;
    }
    .w-md-140px,
    .size-md-140px {
        width: 140px;
    }
    .w-md-150px,
    .size-md-150px {
        width: 150px;
    }
    .w-md-160px,
    .size-md-160px {
        width: 160px;
    }
    .w-md-170px,
    .size-md-170px {
        width: 170px;
    }
    .w-md-180px,
    .size-md-180px {
        width: 180px;
    }
    .w-md-190px,
    .size-md-190px {
        width: 190px;
    }
    .w-md-200px,
    .size-md-200px {
        width: 200px;
    }
    .w-md-210px,
    .size-md-210px {
        width: 210px;
    }
    .w-md-220px,
    .size-md-220px {
        width: 220px;
    }
    .w-md-230px,
    .size-md-230px {
        width: 230px;
    }
    .w-md-240px,
    .size-md-240px {
        width: 240px;
    }
    .w-md-250px,
    .size-md-250px {
        width: 250px;
    }
    .w-md-260px,
    .size-md-260px {
        width: 260px;
    }
    .w-md-270px,
    .size-md-270px {
        width: 270px;
    }
    .w-md-280px,
    .size-md-280px {
        width: 280px;
    }
    .w-md-290px,
    .size-md-290px {
        width: 290px;
    }
    .w-md-300px,
    .size-md-300px {
        width: 300px;
    }
    .w-md-310px,
    .size-md-310px {
        width: 310px;
    }
    .w-md-320px,
    .size-md-320px {
        width: 320px;
    }
    .w-md-330px,
    .size-md-330px {
        width: 330px;
    }
    .w-md-340px,
    .size-md-340px {
        width: 340px;
    }
    .w-md-350px,
    .size-md-350px {
        width: 350px;
    }
    .w-md-360px,
    .size-md-360px {
        width: 360px;
    }
    .w-md-370px,
    .size-md-370px {
        width: 370px;
    }
    .w-md-380px,
    .size-md-380px {
        width: 380px;
    }
    .w-md-390px,
    .size-md-390px {
        width: 390px;
    }
    .w-md-400px,
    .size-md-400px {
        width: 400px;
    }
    .w-md-410px,
    .size-md-410px {
        width: 410px;
    }
    .w-md-420px,
    .size-md-420px {
        width: 420px;
    }
    .w-md-450px,
    .size-md-450px {
        width: 450px;
    }
    .w-md-500px,
    .size-md-500px {
        width: 500px;
    }
    .w-md-553px,
    .size-md-553px {
        width: 553px;
    }
    .w-md-640px,
    .size-md-640px {
        width: 640px;
    }
    .w-md-800px,
    .size-md-800px {
        width: 820px;
    }

    .h-md-auto {
        height: auto;
    }
    .h-md-5px,
    .size-md-5px {
        height: 5px;
    }
    .h-md-10px,
    .size-md-10px {
        height: 10px;
    }
    .h-md-15px,
    .size-md-15px {
        height: 15px;
    }
    .h-md-20px,
    .size-md-20px {
        height: 20px;
    }
    .h-md-25px,
    .size-md-25px {
        height: 25px;
    }
    .h-md-30px,
    .size-md-30px {
        height: 30px;
    }
    .h-md-35px,
    .size-md-35px {
        height: 35px;
    }
    .h-md-40px,
    .size-md-40px {
        height: 40px;
    }
    .h-md-45px,
    .size-md-45px {
        height: 45px;
    }
    .h-md-48px,
    .size-md-48px {
        height: 48px;
    }
    .h-md-50px,
    .size-md-50px {
        height: 50px;
    }
    .h-md-55px,
    .size-md-55px {
        height: 55px;
    }
    .h-md-60px,
    .size-md-60px {
        height: 60px;
    }
    .h-md-64px,
    .size-md-64px {
        height: 64px;
    }
    .h-md-70px,
    .size-md-70px {
        height: 70px;
    }
    .h-md-80px,
    .size-md-80px {
        height: 80px;
    }
    .h-md-90px,
    .size-md-90px {
        height: 90px;
    }
    .h-md-100px,
    .size-md-100px {
        height: 100px;
    }
    .h-md-110px,
    .size-md-110px {
        height: 110px;
    }
    .h-md-120px,
    .size-md-120px {
        height: 120px;
    }
    .h-md-130px,
    .size-md-130px {
        height: 130px;
    }
    .h-md-140px,
    .size-md-140px {
        height: 140px;
    }
    .h-md-150px,
    .size-md-150px {
        height: 150px;
    }
    .h-md-160px,
    .size-md-160px {
        height: 160px;
    }
    .h-md-170px,
    .size-md-170px {
        height: 170px;
    }
    .h-md-180px,
    .size-md-180px {
        height: 180px;
    }
    .h-md-190px,
    .size-md-190px {
        height: 190px;
    }
    .h-md-200px,
    .size-md-200px {
        height: 200px;
    }
    .h-md-210px,
    .size-md-210px {
        height: 210px;
    }
    .h-md-220px,
    .size-md-220px {
        height: 220px;
    }
    .h-md-230px,
    .size-md-230px {
        height: 230px;
    }
    .h-md-240px,
    .size-md-240px {
        height: 240px;
    }
    .h-md-250px,
    .size-md-250px {
        height: 250px;
    }
    .h-md-255px,
    .size-md-255px {
        height: 255px;
    }
    .h-md-260px,
    .size-md-260px {
        height: 260px;
    }
    .h-md-270px,
    .size-md-270px {
        height: 270px;
    }
    .h-md-280px,
    .size-md-280px {
        height: 280px;
    }
    .h-md-290px,
    .size-md-290px {
        height: 290px;
    }
    .h-md-300px,
    .size-md-300px {
        height: 300px;
    }
    .h-md-310px,
    .size-md-310px {
        height: 310px;
    }
    .h-md-316px,
    .size-md-316px {
        height: 316px;
    }
    .h-md-320px,
    .size-md-320px {
        height: 320px;
    }
    .h-md-330px,
    .size-md-330px {
        height: 330px;
    }
    .h-md-337px,
    .size-md-337px {
        height: 337px;
    }
    .h-md-340px,
    .size-md-340px {
        height: 340px;
    }
    .h-md-350px,
    .size-md-350px {
        height: 350px;
    }
    .h-md-360px,
    .size-md-360px {
        height: 360px;
    }
    .h-md-370px,
    .size-md-370px {
        height: 370px;
    }
    .h-md-374px,
    .size-md-374px {
        height: 374px;
    }
    .h-md-380px,
    .size-md-380px {
        height: 380px;
    }
    .h-md-390px,
    .size-md-390px {
        height: 390px;
    }
    .h-md-400px,
    .size-md-400px {
        height: 400px;
    }
    .h-md-410px,
    .size-md-410px {
        height: 410px;
    }
    .h-md-416px,
    .size-md-416px {
        height: 416px;
    }
    .h-md-420px,
    .size-md-420px {
        height: 420px;
    }
    .h-md-425px,
    .size-md-425px {
        height: 425px;
    }
    .h-md-450px,
    .size-md-450px {
        height: 450px;
    }
    .h-md-460px,
    .size-md-460px {
        height: 460px;
    }
    .h-md-475px,
    .size-md-475px {
        height: 475px;
    }
    .h-md-485px,
    .size-md-485px {
        height: 485px;
    }
    .h-md-490px,
    .size-md-490px {
        height: 490px;
    }
    .h-md-500px,
    .size-md-500px {
        height: 500px;
    }
    .h-md-553px,
    .size-md-553px {
        height: 553px;
    }
    .h-md-570px {
        height: 570px;
    }
    .h-md-640px,
    .size-md-640px {
        height: 640px;
    }
    .h-md-800px,
    .size-md-800px {
        height: 820px;
    }

    .md-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .md-no-gutters > .col,
    .md-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .md-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .md-gutters-5 > .col,
    .md-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .md-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .md-gutters-10 > .col,
    .md-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .md-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .md-gutters-15 > .col,
    .md-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .md-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .md-gutters-16 > .col,
    .md-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .md-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .md-gutters-17 > .col,
    .md-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .md-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .md-gutters-20 > .col,
    .md-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .md-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .md-gutters-25 > .col,
    .md-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .md-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .md-gutters-30 > .col,
    .md-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-md-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-md-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-md-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-md-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-md-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-md-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-md-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-md-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .absolute-md-top-right {
        position: absolute;
        top: 0;
        right: 0;
        bottom: inherit;
        left: inherit;
    }
}
/* large device */
@media (min-width: 992px) {
    .border-lg {
        border: 1px solid #dfdfe6 !important;
    }
    .border-lg-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-lg-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-lg-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-lg-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-lg-0 {
        border: 0 !important;
    }
    .border-lg-top-0 {
        border-top: 0 !important;
    }
    .border-lg-right-0 {
        border-right: 0 !important;
    }
    .border-lg-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-lg-left-0 {
        border-left: 0 !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }
    .w-lg-50 {
        width: 50% !important;
    }
    .w-lg-75 {
        width: 75% !important;
    }
    .w-lg-100 {
        width: 100% !important;
    }
    .w-lg-auto {
        width: auto !important;
    }

    /* padding left  */
    .pl-lg-1 {
        padding-left: 1px;
    }
    .pl-lg-2 {
        padding-left: 2px;
    }
    .pl-lg-3 {
        padding-left: 3px;
    }
    .pl-lg-4 {
        padding-left: 4px;
    }
    .pl-lg-5 {
        padding-left: 5px;
    }
    .pl-lg-6 {
        padding-left: 6px;
    }
    .pl-lg-7 {
        padding-left: 7px;
    }
    .pl-lg-8 {
        padding-left: 8px;
    }
    .pl-lg-9 {
        padding-left: 9px;
    }
    .pl-lg-10 {
        padding-left: 10px;
    }

    /* padding right  */
    .pr-lg-1 {
        padding-right: 1px;
    }
    .pr-lg-2 {
        padding-right: 2px;
    }
    .pr-lg-3 {
        padding-right: 3px;
    }
    .pr-lg-4 {
        padding-right: 4px;
    }
    .pr-lg-5 {
        padding-right: 5px;
    }
    .pr-lg-6 {
        padding-right: 6px;
    }
    .pr-lg-7 {
        padding-right: 7px;
    }
    .pr-lg-8 {
        padding-right: 8px;
    }
    .pr-lg-9 {
        padding-right: 9px;
    }
    .pr-lg-10 {
        padding-right: 10px;
    }

    /* margin left  */
    .ml-lg-1 {
        margin-left: 1px;
    }
    .ml-lg-2 {
        margin-left: 2px;
    }
    .ml-lg-3 {
        margin-left: 3px;
    }
    .ml-lg-4 {
        margin-left: 4px;
    }
    .ml-lg-5 {
        margin-left: 5px;
    }
    .ml-lg-6 {
        margin-left: 6px;
    }
    .ml-lg-7 {
        margin-left: 7px;
    }
    .ml-lg-8 {
        margin-left: 8px;
    }
    .ml-lg-9 {
        margin-left: 9px;
    }
    .ml-lg-10 {
        margin-left: 10px;
    }

    /* margin right  */
    .mr-lg-1 {
        margin-right: 1px;
    }
    .mr-lg-2 {
        margin-right: 2px;
    }
    .mr-lg-3 {
        margin-right: 3px;
    }
    .mr-lg-4 {
        margin-right: 4px;
    }
    .mr-lg-5 {
        margin-right: 5px;
    }
    .mr-lg-6 {
        margin-right: 6px;
    }
    .mr-lg-7 {
        margin-right: 7px;
    }
    .mr-lg-8 {
        margin-right: 8px;
    }
    .mr-lg-9 {
        margin-right: 9px;
    }
    .mr-lg-10 {
        margin-right: 10px;
    }

    /* padding x-axis  */
    .px-lg-1 {
        padding-left: 1px;
        padding-right: 1px;
    }
    .px-lg-2 {
        padding-left: 2px;
        padding-right: 2px;
    }
    .px-lg-3 {
        padding-left: 3px;
        padding-right: 3px;
    }
    .px-lg-4 {
        padding-left: 4px;
        padding-right: 4px;
    }
    .px-lg-5 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .px-lg-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .px-lg-7 {
        padding-left: 7px;
        padding-right: 7px;
    }
    .px-lg-8 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .px-lg-9 {
        padding-left: 9px;
        padding-right: 9px;
    }
    .px-lg-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* padding y axis  */
    .py-lg-1 {
        padding-top: 1px;
        padding-bottom: 1px;
    }
    .py-lg-2 {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .py-lg-3 {
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .py-lg-4 {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .py-lg-5 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .py-lg-6 {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .py-lg-7 {
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .py-lg-8 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .py-lg-9 {
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .py-lg-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .w-lg-auto {
        width: auto;
    }
    .w-lg-5px,
    .size-lg-5px {
        width: 5px;
    }
    .w-lg-10px,
    .size-lg-10px {
        width: 10px;
    }
    .w-lg-15px,
    .size-lg-15px {
        width: 15px;
    }
    .w-lg-20px,
    .size-lg-20px {
        width: 20px;
    }
    .w-lg-25px,
    .size-lg-25px {
        width: 25px;
    }
    .w-lg-30px,
    .size-lg-30px {
        width: 30px;
    }
    .w-lg-35px,
    .size-lg-35px {
        width: 35px;
    }
    .w-lg-40px,
    .size-lg-40px {
        width: 40px;
    }
    .w-lg-45px,
    .size-lg-45px {
        width: 45px;
    }
    .w-lg-48px,
    .size-lg-48px {
        width: 48px;
    }
    .w-lg-50px,
    .size-lg-50px {
        width: 50px;
    }
    .w-lg-60px,
    .size-lg-60px {
        width: 60px;
    }
    .w-lg-64px,
    .size-lg-64px {
        width: 64px;
    }
    .w-lg-70px,
    .size-lg-70px {
        width: 70px;
    }
    .w-lg-80px,
    .size-lg-80px {
        width: 80px;
    }
    .w-lg-90px,
    .size-lg-90px {
        width: 90px;
    }
    .w-lg-100px,
    .size-lg-100px {
        width: 100px;
    }
    .w-lg-110px,
    .size-lg-110px {
        width: 110px;
    }
    .w-lg-120px,
    .size-lg-120px {
        width: 120px;
    }
    .w-lg-130px,
    .size-lg-130px {
        width: 130px;
    }
    .w-lg-140px,
    .size-lg-140px {
        width: 140px;
    }
    .w-lg-150px,
    .size-lg-150px {
        width: 150px;
    }
    .w-lg-160px,
    .size-lg-160px {
        width: 160px;
    }
    .w-lg-170px,
    .size-lg-170px {
        width: 170px;
    }
    .w-lg-180px,
    .size-lg-180px {
        width: 180px;
    }
    .w-lg-190px,
    .size-lg-190px {
        width: 190px;
    }
    .w-lg-200px,
    .size-lg-200px {
        width: 200px;
    }
    .w-lg-210px,
    .size-lg-210px {
        width: 210px;
    }
    .w-lg-220px,
    .size-lg-220px {
        width: 220px;
    }
    .w-lg-230px,
    .size-lg-230px {
        width: 230px;
    }
    .w-lg-240px,
    .size-lg-240px {
        width: 240px;
    }
    .w-lg-250px,
    .size-lg-250px {
        width: 250px;
    }
    .w-lg-260px,
    .size-lg-260px {
        width: 260px;
    }
    .w-lg-270px,
    .size-lg-270px {
        width: 270px;
    }
    .w-lg-280px,
    .size-lg-280px {
        width: 280px;
    }
    .w-lg-290px,
    .size-lg-290px {
        width: 290px;
    }
    .w-lg-300px,
    .size-lg-300px {
        width: 300px;
    }
    .w-lg-310px,
    .size-lg-310px {
        width: 310px;
    }
    .w-lg-320px,
    .size-lg-320px {
        width: 320px;
    }
    .w-lg-330px,
    .size-lg-330px {
        width: 330px;
    }
    .w-lg-340px,
    .size-lg-340px {
        width: 340px;
    }
    .w-lg-350px,
    .size-lg-350px {
        width: 350px;
    }
    .w-lg-360px,
    .size-lg-360px {
        width: 360px;
    }
    .w-lg-370px,
    .size-lg-370px {
        width: 370px;
    }
    .w-lg-380px,
    .size-lg-380px {
        width: 380px;
    }
    .w-lg-390px,
    .size-lg-390px {
        width: 390px;
    }
    .w-lg-400px,
    .size-lg-400px {
        width: 400px;
    }
    .w-lg-410px,
    .size-lg-410px {
        width: 410px;
    }
    .w-lg-420px,
    .size-lg-420px {
        width: 420px;
    }
    .w-lg-450px,
    .size-lg-450px {
        width: 450px;
    }
    .w-lg-500px,
    .size-lg-500px {
        width: 500px;
    }
    .w-lg-553px,
    .size-lg-553px {
        width: 553px;
    }
    .w-lg-640px,
    .size-lg-640px {
        width: 640px;
    }
    .w-lg-800px,
    .size-lg-800px {
        width: 820px;
    }

    .h-lg-auto {
        height: auto;
    }
    .h-lg-5px,
    .size-lg-5px {
        height: 5px;
    }
    .h-lg-10px,
    .size-lg-10px {
        height: 10px;
    }
    .h-lg-15px,
    .size-lg-15px {
        height: 15px;
    }
    .h-lg-20px,
    .size-lg-20px {
        height: 20px;
    }
    .h-lg-25px,
    .size-lg-25px {
        height: 25px;
    }
    .h-lg-30px,
    .size-lg-30px {
        height: 30px;
    }
    .h-lg-35px,
    .size-lg-35px {
        height: 35px;
    }
    .h-lg-40px,
    .size-lg-40px {
        height: 40px;
    }
    .h-lg-45px,
    .size-lg-45px {
        height: 45px;
    }
    .h-lg-48px,
    .size-lg-48px {
        height: 48px;
    }
    .h-lg-50px,
    .size-lg-50px {
        height: 50px;
    }
    .h-lg-60px,
    .size-lg-60px {
        height: 60px;
    }
    .h-lg-64px,
    .size-lg-64px {
        height: 64px;
    }
    .h-lg-70px,
    .size-lg-70px {
        height: 70px;
    }
    .h-lg-80px,
    .size-lg-80px {
        height: 80px;
    }
    .h-lg-90px,
    .size-lg-90px {
        height: 90px;
    }
    .h-lg-100px,
    .size-lg-100px {
        height: 100px;
    }
    .h-lg-110px,
    .size-lg-110px {
        height: 110px;
    }
    .h-lg-120px,
    .size-lg-120px {
        height: 120px;
    }
    .h-lg-130px,
    .size-lg-130px {
        height: 130px;
    }
    .h-lg-140px,
    .size-lg-140px {
        height: 140px;
    }
    .h-lg-150px,
    .size-lg-150px {
        height: 150px;
    }
    .h-lg-160px,
    .size-lg-160px {
        height: 160px;
    }
    .h-lg-170px,
    .size-lg-170px {
        height: 170px;
    }
    .h-lg-180px,
    .size-lg-180px {
        height: 180px;
    }
    .h-lg-190px,
    .size-lg-190px {
        height: 190px;
    }
    .h-lg-200px,
    .size-lg-200px {
        height: 200px;
    }
    .h-lg-210px,
    .size-lg-210px {
        height: 210px;
    }
    .h-lg-220px,
    .size-lg-220px {
        height: 220px;
    }
    .h-lg-230px,
    .size-lg-230px {
        height: 230px;
    }
    .h-lg-240px,
    .size-lg-240px {
        height: 240px;
    }
    .h-lg-250px,
    .size-lg-250px {
        height: 250px;
    }
    .h-lg-260px,
    .size-lg-260px {
        height: 260px;
    }
    .h-lg-270px,
    .size-lg-270px {
        height: 270px;
    }
    .h-lg-280px,
    .size-lg-280px {
        height: 280px;
    }
    .h-lg-283px,
    .size-lg-283px {
        height: 283px;
    }
    .h-lg-290px,
    .size-lg-290px {
        height: 290px;
    }
    .h-lg-300px,
    .size-lg-300px {
        height: 300px;
    }
    .h-lg-310px,
    .size-lg-310px {
        height: 310px;
    }
    .h-lg-320px,
    .size-lg-320px {
        height: 320px;
    }
    .h-lg-330px,
    .size-lg-330px {
        height: 330px;
    }
    .h-lg-340px,
    .size-lg-340px {
        height: 340px;
    }
    .h-lg-350px,
    .size-lg-350px {
        height: 350px;
    }
    .h-lg-360px,
    .size-lg-360px {
        height: 360px;
    }
    .h-lg-370px,
    .size-lg-370px {
        height: 370px;
    }
    .h-lg-380px,
    .size-lg-380px {
        height: 380px;
    }
    .h-lg-390px,
    .size-lg-390px {
        height: 390px;
    }
    .h-lg-400px,
    .size-lg-400px {
        height: 400px;
    }
    .h-lg-410px,
    .size-lg-410px {
        height: 410px;
    }
    .h-lg-420px,
    .size-lg-420px {
        height: 420px;
    }
    .h-lg-450px,
    .size-lg-450px {
        height: 450px;
    }
    .h-lg-460px,
    .size-lg-460px {
        height: 460px;
    }
    .h-lg-475px,
    .size-lg-475px {
        height: 475px;
    }
    .h-lg-485px,
    .size-lg-485px {
        height: 485px;
    }
    .h-lg-490px,
    .size-lg-490px {
        height: 490px;
    }
    .h-lg-500px,
    .size-lg-500px {
        height: 500px;
    }
    .h-lg-520px,
    .size-lg-520px {
        height: 520px;
    }
    .h-lg-540px,
    .size-lg-540px {
        height: 540px;
    }
    .h-lg-553px,
    .size-lg-553px {
        height: 553px;
    }
    .h-lg-584px,
    .size-lg-584px {
        height: 584px;
    }
    .h-lg-640px,
    .size-lg-640px {
        height: 640px;
    }
    .h-lg-622px,
    .size-lg-622px {
        height: 622px;
    }
    .h-lg-800px,
    .size-lg-800px {
        height: 820px;
    }

    .lg-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .lg-no-gutters > .col,
    .lg-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .lg-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .lg-gutters-5 > .col,
    .lg-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .lg-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .lg-gutters-10 > .col,
    .lg-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .lg-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .lg-gutters-15 > .col,
    .lg-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .lg-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .lg-gutters-16 > .col,
    .lg-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .lg-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .lg-gutters-17 > .col,
    .lg-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .lg-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .lg-gutters-20 > .col,
    .lg-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .lg-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .lg-gutters-25 > .col,
    .lg-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .lg-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .lg-gutters-30 > .col,
    .lg-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-lg-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-lg-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-lg-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-lg-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-lg-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-lg-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-lg-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-lg-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}
/* xl */
@media (min-width: 1200px) {
    .border-xl {
        border: 1px solid #dfdfe6 !important;
    }
    .border-xl-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-xl-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-xl-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-xl-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-xl-0 {
        border: 0 !important;
    }
    .border-xl-top-0 {
        border-top: 0 !important;
    }
    .border-xl-right-0 {
        border-right: 0 !important;
    }
    .border-xl-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-xl-left-0 {
        border-left: 0 !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }
    .w-xl-50 {
        width: 50% !important;
    }
    .w-xl-75 {
        width: 75% !important;
    }
    .w-xl-100 {
        width: 100% !important;
    }
    .w-xl-auto {
        width: auto !important;
    }

    /* padding left  */
    .pl-xl-1 {
        padding-left: 1px;
    }
    .pl-xl-2 {
        padding-left: 2px;
    }
    .pl-xl-3 {
        padding-left: 3px;
    }
    .pl-xl-4 {
        padding-left: 4px;
    }
    .pl-xl-5 {
        padding-left: 5px;
    }
    .pl-xl-6 {
        padding-left: 6px;
    }
    .pl-xl-7 {
        padding-left: 7px;
    }
    .pl-xl-8 {
        padding-left: 8px;
    }
    .pl-xl-9 {
        padding-left: 9px;
    }
    .pl-xl-10 {
        padding-left: 10px;
    }

    /* padding right  */
    .pr-xl-1 {
        padding-right: 1px;
    }
    .pr-xl-2 {
        padding-right: 2px;
    }
    .pr-xl-3 {
        padding-right: 3px;
    }
    .pr-xl-4 {
        padding-right: 4px;
    }
    .pr-xl-5 {
        padding-right: 5px;
    }
    .pr-xl-6 {
        padding-right: 6px;
    }
    .pr-xl-7 {
        padding-right: 7px;
    }
    .pr-xl-8 {
        padding-right: 8px;
    }
    .pr-xl-9 {
        padding-right: 9px;
    }
    .pr-xl-10 {
        padding-right: 10px;
    }

    /* margin left  */
    .ml-xl-1 {
        margin-left: 1px;
    }
    .ml-xl-2 {
        margin-left: 2px;
    }
    .ml-xl-3 {
        margin-left: 3px;
    }
    .ml-xl-4 {
        margin-left: 4px;
    }
    .ml-xl-5 {
        margin-left: 5px;
    }
    .ml-xl-6 {
        margin-left: 6px;
    }
    .ml-xl-7 {
        margin-left: 7px;
    }
    .ml-xl-8 {
        margin-left: 8px;
    }
    .ml-xl-9 {
        margin-left: 9px;
    }
    .ml-xl-10 {
        margin-left: 10px;
    }

    /* margin right  */
    .mr-xl-1 {
        margin-right: 1px;
    }
    .mr-xl-2 {
        margin-right: 2px;
    }
    .mr-xl-3 {
        margin-right: 3px;
    }
    .mr-xl-4 {
        margin-right: 4px;
    }
    .mr-xl-5 {
        margin-right: 5px;
    }
    .mr-xl-6 {
        margin-right: 6px;
    }
    .mr-xl-7 {
        margin-right: 7px;
    }
    .mr-xl-8 {
        margin-right: 8px;
    }
    .mr-xl-9 {
        margin-right: 9px;
    }
    .mr-xl-10 {
        margin-right: 10px;
    }

    /* padding x-axis  */
    .px-xl-1 {
        padding-left: 1px;
        padding-right: 1px;
    }
    .px-xl-2 {
        padding-left: 2px;
        padding-right: 2px;
    }
    .px-xl-3 {
        padding-left: 3px;
        padding-right: 3px;
    }
    .px-xl-4 {
        padding-left: 4px;
        padding-right: 4px;
    }
    .px-xl-5 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .px-xl-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .px-xl-7 {
        padding-left: 7px;
        padding-right: 7px;
    }
    .px-xl-8 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .px-xl-9 {
        padding-left: 9px;
        padding-right: 9px;
    }
    .px-xl-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* padding y axis  */
    .py-xl-1 {
        padding-top: 1px;
        padding-bottom: 1px;
    }
    .py-xl-2 {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .py-xl-3 {
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .py-xl-4 {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .py-xl-5 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .py-xl-6 {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .py-xl-7 {
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .py-xl-8 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .py-xl-9 {
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .py-xl-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .w-xl-auto {
        width: auto;
    }
    .w-xl-5px,
    .size-xl-5px {
        width: 5px;
    }
    .w-xl-10px,
    .size-xl-10px {
        width: 10px;
    }
    .w-xl-15px,
    .size-xl-15px {
        width: 15px;
    }
    .w-xl-20px,
    .size-xl-20px {
        width: 20px;
    }
    .w-xl-25px,
    .size-xl-25px {
        width: 25px;
    }
    .w-xl-30px,
    .size-xl-30px {
        width: 30px;
    }
    .w-xl-35px,
    .size-xl-35px {
        width: 35px;
    }
    .w-xl-40px,
    .size-xl-40px {
        width: 40px;
    }
    .w-xl-45px,
    .size-xl-45px {
        width: 45px;
    }
    .w-xl-48px,
    .size-xl-48px {
        width: 48px;
    }
    .w-xl-50px,
    .size-xl-50px {
        width: 50px;
    }
    .w-xl-60px,
    .size-xl-60px {
        width: 60px;
    }
    .w-xl-64px,
    .size-xl-64px {
        width: 64px;
    }
    .w-xl-70px,
    .size-xl-70px {
        width: 70px;
    }
    .w-xl-80px,
    .size-xl-80px {
        width: 80px;
    }
    .w-xl-90px,
    .size-xl-90px {
        width: 90px;
    }
    .w-xl-100px,
    .size-xl-100px {
        width: 100px;
    }
    .w-xl-110px,
    .size-xl-110px {
        width: 110px;
    }
    .w-xl-120px,
    .size-xl-120px {
        width: 120px;
    }
    .w-xl-130px,
    .size-xl-130px {
        width: 130px;
    }
    .w-xl-140px,
    .size-xl-140px {
        width: 140px;
    }
    .w-xl-150px,
    .size-xl-150px {
        width: 150px;
    }
    .w-xl-160px,
    .size-xl-160px {
        width: 160px;
    }
    .w-xl-170px,
    .size-xl-170px {
        width: 170px;
    }
    .w-xl-180px,
    .size-xl-180px {
        width: 180px;
    }
    .w-xl-190px,
    .size-xl-190px {
        width: 190px;
    }
    .w-xl-200px,
    .size-xl-200px {
        width: 200px;
    }
    .w-xl-210px,
    .size-xl-210px {
        width: 210px;
    }
    .w-xl-220px,
    .size-xl-220px {
        width: 220px;
    }
    .w-xl-230px,
    .size-xl-230px {
        width: 230px;
    }
    .w-xl-240px,
    .size-xl-240px {
        width: 240px;
    }
    .w-xl-250px,
    .size-xl-250px {
        width: 250px;
    }
    .w-xl-260px,
    .size-xl-260px {
        width: 260px;
    }
    .w-xl-270px,
    .size-xl-270px {
        width: 270px;
    }
    .w-xl-280px,
    .size-xl-280px {
        width: 280px;
    }
    .w-xl-290px,
    .size-xl-290px {
        width: 290px;
    }
    .w-xl-300px,
    .size-xl-300px {
        width: 300px;
    }
    .w-xl-310px,
    .size-xl-310px {
        width: 310px;
    }
    .w-xl-320px,
    .size-xl-320px {
        width: 320px;
    }
    .w-xl-330px,
    .size-xl-330px {
        width: 330px;
    }
    .w-xl-340px,
    .size-xl-340px {
        width: 340px;
    }
    .w-xl-350px,
    .size-xl-350px {
        width: 350px;
    }
    .w-xl-360px,
    .size-xl-360px {
        width: 360px;
    }
    .w-xl-370px,
    .size-xl-370px {
        width: 370px;
    }
    .w-xl-380px,
    .size-xl-380px {
        width: 380px;
    }
    .w-xl-390px,
    .size-xl-390px {
        width: 390px;
    }
    .w-xl-400px,
    .size-xl-400px {
        width: 400px;
    }
    .w-xl-410px,
    .size-xl-410px {
        width: 410px;
    }
    .w-xl-420px,
    .size-xl-420px {
        width: 420px;
    }
    .w-xl-450px,
    .size-xl-450px {
        width: 450px;
    }
    .w-xl-500px,
    .size-xl-500px {
        width: 500px;
    }
    .w-xl-553px,
    .size-xl-553px {
        width: 553px;
    }
    .w-xl-640px,
    .size-xl-640px {
        width: 640px;
    }
    .w-xl-800px,
    .size-xl-800px {
        width: 820px;
    }

    .h-xl-auto {
        height: auto;
    }
    .h-xl-5px,
    .size-xl-5px {
        height: 5px;
    }
    .h-xl-10px,
    .size-xl-10px {
        height: 10px;
    }
    .h-xl-15px,
    .size-xl-15px {
        height: 15px;
    }
    .h-xl-20px,
    .size-xl-20px {
        height: 20px;
    }
    .h-xl-25px,
    .size-xl-25px {
        height: 25px;
    }
    .h-xl-30px,
    .size-xl-30px {
        height: 30px;
    }
    .h-xl-35px,
    .size-xl-35px {
        height: 35px;
    }
    .h-xl-40px,
    .size-xl-40px {
        height: 40px;
    }
    .h-xl-45px,
    .size-xl-45px {
        height: 45px;
    }
    .h-xl-48px,
    .size-xl-48px {
        height: 48px;
    }
    .h-xl-50px,
    .size-xl-50px {
        height: 50px;
    }
    .h-xl-60px,
    .size-xl-60px {
        height: 60px;
    }
    .h-xl-64px,
    .size-xl-64px {
        height: 64px;
    }
    .h-xl-70px,
    .size-xl-70px {
        height: 70px;
    }
    .h-xl-80px,
    .size-xl-80px {
        height: 80px;
    }
    .h-xl-90px,
    .size-xl-90px {
        height: 90px;
    }
    .h-xl-100px,
    .size-xl-100px {
        height: 100px;
    }
    .h-xl-110px,
    .size-xl-110px {
        height: 110px;
    }
    .h-xl-120px,
    .size-xl-120px {
        height: 120px;
    }
    .h-xl-130px,
    .size-xl-130px {
        height: 130px;
    }
    .h-xl-140px,
    .size-xl-140px {
        height: 140px;
    }
    .h-xl-150px,
    .size-xl-150px {
        height: 150px;
    }
    .h-xl-160px,
    .size-xl-160px {
        height: 160px;
    }
    .h-xl-170px,
    .size-xl-170px {
        height: 170px;
    }
    .h-xl-180px,
    .size-xl-180px {
        height: 180px;
    }
    .h-xl-190px,
    .size-xl-190px {
        height: 190px;
    }
    .h-xl-200px,
    .size-xl-200px {
        height: 200px;
    }
    .h-xl-210px,
    .size-xl-210px {
        height: 210px;
    }
    .h-xl-220px,
    .size-xl-220px {
        height: 220px;
    }
    .h-xl-230px,
    .size-xl-230px {
        height: 230px;
    }
    .h-xl-240px,
    .size-xl-240px {
        height: 240px;
    }
    .h-xl-250px,
    .size-xl-250px {
        height: 250px;
    }
    .h-xl-260px,
    .size-xl-260px {
        height: 260px;
    }
    .h-xl-270px,
    .size-xl-270px {
        height: 270px;
    }
    .h-xl-280px,
    .size-xl-280px {
        height: 280px;
    }
    .h-xl-290px,
    .size-xl-290px {
        height: 290px;
    }
    .h-xl-300px,
    .size-xl-300px {
        height: 300px;
    }
    .h-xl-310px,
    .size-xl-310px {
        height: 310px;
    }
    .h-xl-320px,
    .size-xl-320px {
        height: 320px;
    }
    .h-xl-330px,
    .size-xl-330px {
        height: 330px;
    }
    .h-xl-340px,
    .size-xl-340px {
        height: 340px;
    }
    .h-xl-350px,
    .size-xl-350px {
        height: 350px;
    }
    .h-xl-360px,
    .size-xl-360px {
        height: 360px;
    }
    .h-xl-370px,
    .size-xl-370px {
        height: 370px;
    }
    .h-xl-380px,
    .size-xl-380px {
        height: 380px;
    }
    .h-xl-390px,
    .size-xl-390px {
        height: 390px;
    }
    .h-xl-400px,
    .size-xl-400px {
        height: 400px;
    }
    .h-xl-410px,
    .size-xl-410px {
        height: 410px;
    }
    .h-xl-420px,
    .size-xl-420px {
        height: 420px;
    }
    .h-xl-450px,
    .size-xl-450px {
        height: 450px;
    }
    .h-xl-460px,
    .size-xl-460px {
        height: 460px;
    }
    .h-xl-475px,
    .size-xl-475px {
        height: 475px;
    }
    .h-xl-485px,
    .size-xl-485px {
        height: 485px;
    }
    .h-xl-490px,
    .size-xl-490px {
        height: 490px;
    }
    .h-xl-500px,
    .size-xl-500px {
        height: 500px;
    }
    .h-xl-553px,
    .size-xl-553px {
        height: 553px;
    }
    .h-xl-640px,
    .size-xl-640px {
        height: 640px;
    }
    .h-xl-800px,
    .size-xl-800px {
        height: 820px;
    }

    .xl-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .xl-no-gutters > .col,
    .xl-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .xl-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .xl-gutters-5 > .col,
    .xl-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .xl-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .xl-gutters-10 > .col,
    .xl-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .xl-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .xl-gutters-15 > .col,
    .xl-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .xl-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .xl-gutters-16 > .col,
    .xl-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .xl-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .xl-gutters-17 > .col,
    .xl-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .xl-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .xl-gutters-20 > .col,
    .xl-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .xl-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .xl-gutters-25 > .col,
    .xl-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .xl-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .xl-gutters-30 > .col,
    .xl-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-xl-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-xl-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-xl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-xl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-xl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-xl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-xl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-xl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

/* xxl */
@media (min-width: 1500px) {
    .h-xxl-465px,
    .size-xxl-465px {
        height: 465px;
    }
    .h-xxl-416px,
    .size-xxl-416px {
        height: 416px;
    }
    .border-xxl {
        border: 1px solid #dfdfe6 !important;
    }
    .border-xxl-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-xxl-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-xxl-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-xxl-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-xxl-0 {
        border: 0 !important;
    }
    .border-xxl-top-0 {
        border-top: 0 !important;
    }
    .border-xxl-right-0 {
        border-right: 0 !important;
    }
    .border-xxl-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-xxl-left-0 {
        border-left: 0 !important;
    }

    .w-xxl-25 {
        width: 25% !important;
    }
    .w-xxl-50 {
        width: 50% !important;
    }
    .w-xxl-75 {
        width: 75% !important;
    }
    .w-xxl-100 {
        width: 100% !important;
    }
    .w-xxl-auto {
        width: auto !important;
    }

    .container,
    .container-xxl {
        max-width: 1400px;
    }
    .col-xxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-xxl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-xxl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-xxl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .row-cols-xxl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-xxl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-xxl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xxl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100;
    }
    .col-xxl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xxl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xxl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xxl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xxl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xxl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.333333%;
    }
    .offset-xxl-2 {
        margin-left: 16.666667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.333333%;
    }
    .offset-xxl-5 {
        margin-left: 41.666667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.333333%;
    }
    .offset-xxl-8 {
        margin-left: 66.666667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.333333%;
    }
    .offset-xxl-11 {
        margin-left: 91.666667%;
    }

    /* padding left  */
    .pl-xxl-1 {
        padding-left: 1px;
    }
    .pl-xxl-2 {
        padding-left: 2px;
    }
    .pl-xxl-3 {
        padding-left: 3px;
    }
    .pl-xxl-4 {
        padding-left: 4px;
    }
    .pl-xxl-5 {
        padding-left: 5px;
    }
    .pl-xxl-6 {
        padding-left: 6px;
    }
    .pl-xxl-7 {
        padding-left: 7px;
    }
    .pl-xxl-8 {
        padding-left: 8px;
    }
    .pl-xxl-9 {
        padding-left: 9px;
    }
    .pl-xxl-10 {
        padding-left: 10px;
    }

    /* padding right  */
    .pr-xxl-1 {
        padding-right: 1px;
    }
    .pr-xxl-2 {
        padding-right: 2px;
    }
    .pr-xxl-3 {
        padding-right: 3px;
    }
    .pr-xxl-4 {
        padding-right: 4px;
    }
    .pr-xxl-5 {
        padding-right: 5px;
    }
    .pr-xxl-6 {
        padding-right: 6px;
    }
    .pr-xxl-7 {
        padding-right: 7px;
    }
    .pr-xxl-8 {
        padding-right: 8px;
    }
    .pr-xxl-9 {
        padding-right: 9px;
    }
    .pr-xxl-10 {
        padding-right: 10px;
    }

    /* margin left  */
    .ml-xxl-1 {
        margin-left: 1px;
    }
    .ml-xxl-2 {
        margin-left: 2px;
    }
    .ml-xxl-3 {
        margin-left: 3px;
    }
    .ml-xxl-4 {
        margin-left: 4px;
    }
    .ml-xxl-5 {
        margin-left: 5px;
    }
    .ml-xxl-6 {
        margin-left: 6px;
    }
    .ml-xxl-7 {
        margin-left: 7px;
    }
    .ml-xxl-8 {
        margin-left: 8px;
    }
    .ml-xxl-9 {
        margin-left: 9px;
    }
    .ml-xxl-10 {
        margin-left: 10px;
    }

    /* margin right  */
    .mr-xxl-1 {
        margin-right: 1px;
    }
    .mr-xxl-2 {
        margin-right: 2px;
    }
    .mr-xxl-3 {
        margin-right: 3px;
    }
    .mr-xxl-4 {
        margin-right: 4px;
    }
    .mr-xxl-5 {
        margin-right: 5px;
    }
    .mr-xxl-6 {
        margin-right: 6px;
    }
    .mr-xxl-7 {
        margin-right: 7px;
    }
    .mr-xxl-8 {
        margin-right: 8px;
    }
    .mr-xxl-9 {
        margin-right: 9px;
    }
    .mr-xxl-10 {
        margin-right: 10px;
    }

    /* padding x-axis  */
    .px-xxl-1 {
        padding-left: 1px;
        padding-right: 1px;
    }
    .px-xxl-2 {
        padding-left: 2px;
        padding-right: 2px;
    }
    .px-xxl-3 {
        padding-left: 3px;
        padding-right: 3px;
    }
    .px-xxl-4 {
        padding-left: 4px;
        padding-right: 4px;
    }
    .px-xxl-5 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .px-xxl-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .px-xxl-7 {
        padding-left: 7px;
        padding-right: 7px;
    }
    .px-xxl-8 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .px-xxl-9 {
        padding-left: 9px;
        padding-right: 9px;
    }
    .px-xxl-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* padding y axis  */
    .py-xxl-1 {
        padding-top: 1px;
        padding-bottom: 1px;
    }
    .py-xxl-2 {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .py-xxl-3 {
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .py-xxl-4 {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .py-xxl-5 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .py-xxl-6 {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .py-xxl-7 {
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .py-xxl-8 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .py-xxl-9 {
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .py-xxl-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .w-xxl-auto {
        width: auto;
    }
    .w-xxl-5px,
    .size-xxl-5px {
        width: 5px;
    }
    .w-xxl-10px,
    .size-xxl-10px {
        width: 10px;
    }
    .w-xxl-15px,
    .size-xxl-15px {
        width: 15px;
    }
    .w-xxl-20px,
    .size-xxl-20px {
        width: 20px;
    }
    .w-xxl-25px,
    .size-xxl-25px {
        width: 25px;
    }
    .w-xxl-30px,
    .size-xxl-30px {
        width: 30px;
    }
    .w-xxl-35px,
    .size-xxl-35px {
        width: 35px;
    }
    .w-xxl-40px,
    .size-xxl-40px {
        width: 40px;
    }
    .w-xxl-45px,
    .size-xxl-45px {
        width: 45px;
    }
    .w-xxl-48px,
    .size-xxl-48px {
        width: 48px;
    }
    .w-xxl-50px,
    .size-xxl-50px {
        width: 50px;
    }
    .w-xxl-60px,
    .size-xxl-60px {
        width: 60px;
    }
    .w-xxl-64px,
    .size-xxl-64px {
        width: 64px;
    }
    .w-xxl-70px,
    .size-xxl-70px {
        width: 70px;
    }
    .w-xxl-80px,
    .size-xxl-80px {
        width: 80px;
    }
    .w-xxl-90px,
    .size-xxl-90px {
        width: 90px;
    }
    .w-xxl-100px,
    .size-xxl-100px {
        width: 100px;
    }
    .w-xxl-110px,
    .size-xxl-110px {
        width: 110px;
    }
    .w-xxl-120px,
    .size-xxl-120px {
        width: 120px;
    }
    .w-xxl-130px,
    .size-xxl-130px {
        width: 130px;
    }
    .w-xxl-140px,
    .size-xxl-140px {
        width: 140px;
    }
    .w-xxl-150px,
    .size-xxl-150px {
        width: 150px;
    }
    .w-xxl-160px,
    .size-xxl-160px {
        width: 160px;
    }
    .w-xxl-170px,
    .size-xxl-170px {
        width: 170px;
    }
    .w-xxl-180px,
    .size-xxl-180px {
        width: 180px;
    }
    .w-xxl-190px,
    .size-xxl-190px {
        width: 190px;
    }
    .w-xxl-200px,
    .size-xxl-200px {
        width: 200px;
    }
    .w-xxl-210px,
    .size-xxl-210px {
        width: 210px;
    }
    .w-xxl-220px,
    .size-xxl-220px {
        width: 220px;
    }
    .w-xxl-230px,
    .size-xxl-230px {
        width: 230px;
    }
    .w-xxl-240px,
    .size-xxl-240px {
        width: 240px;
    }
    .w-xxl-250px,
    .size-xxl-250px {
        width: 250px;
    }
    .w-xxl-260px,
    .size-xxl-260px {
        width: 260px;
    }
    .w-xxl-270px,
    .size-xxl-270px {
        width: 270px;
    }
    .w-xxl-280px,
    .size-xxl-280px {
        width: 280px;
    }
    .w-xxl-290px,
    .size-xxl-290px {
        width: 290px;
    }
    .w-xxl-300px,
    .size-xxl-300px {
        width: 300px;
    }
    .w-xxl-310px,
    .size-xxl-310px {
        width: 310px;
    }
    .w-xxl-320px,
    .size-xxl-320px {
        width: 320px;
    }
    .w-xxl-330px,
    .size-xxl-330px {
        width: 330px;
    }
    .w-xxl-340px,
    .size-xxl-340px {
        width: 340px;
    }
    .w-xxl-350px,
    .size-xxl-350px {
        width: 350px;
    }
    .w-xxl-360px,
    .size-xxl-360px {
        width: 360px;
    }
    .w-xxl-370px,
    .size-xxl-370px {
        width: 370px;
    }
    .w-xxl-380px,
    .size-xxl-380px {
        width: 380px;
    }
    .w-xxl-390px,
    .size-xxl-390px {
        width: 390px;
    }
    .w-xxl-400px,
    .size-xxl-400px {
        width: 400px;
    }
    .w-xxl-410px,
    .size-xxl-410px {
        width: 410px;
    }
    .w-xxl-420px,
    .size-xxl-420px {
        width: 420px;
    }
    .w-xxl-450px,
    .size-xxl-450px {
        width: 450px;
    }
    .w-xxl-500px,
    .size-xxl-500px {
        width: 500px;
    }
    .w-xxl-553px,
    .size-xxl-553px {
        width: 553px;
    }
    .w-xxl-640px,
    .size-xxl-640px {
        width: 640px;
    }
    .w-xxl-800px,
    .size-xxl-800px {
        width: 820px;
    }

    .h-xxl-auto {
        height: auto;
    }
    .h-xxl-5px,
    .size-xxl-5px {
        height: 5px;
    }
    .h-xxl-10px,
    .size-xxl-10px {
        height: 10px;
    }
    .h-xxl-15px,
    .size-xxl-15px {
        height: 15px;
    }
    .h-xxl-20px,
    .size-xxl-20px {
        height: 20px;
    }
    .h-xxl-25px,
    .size-xxl-25px {
        height: 25px;
    }
    .h-xxl-30px,
    .size-xxl-30px {
        height: 30px;
    }
    .h-xxl-35px,
    .size-xxl-35px {
        height: 35px;
    }
    .h-xxl-40px,
    .size-xxl-40px {
        height: 40px;
    }
    .h-xxl-45px,
    .size-xxl-45px {
        height: 45px;
    }
    .h-xxl-48px,
    .size-xxl-48px {
        height: 48px;
    }
    .h-xxl-50px,
    .size-xxl-50px {
        height: 50px;
    }
    .h-xxl-60px,
    .size-xxl-60px {
        height: 60px;
    }
    .h-xxl-64px,
    .size-xxl-64px {
        height: 64px;
    }
    .h-xxl-70px,
    .size-xxl-70px {
        height: 70px;
    }
    .h-xxl-80px,
    .size-xxl-80px {
        height: 80px;
    }
    .h-xxl-90px,
    .size-xxl-90px {
        height: 90px;
    }
    .h-xxl-100px,
    .size-xxl-100px {
        height: 100px;
    }
    .h-xxl-110px,
    .size-xxl-110px {
        height: 110px;
    }
    .h-xxl-120px,
    .size-xxl-120px {
        height: 120px;
    }
    .h-xxl-130px,
    .size-xxl-130px {
        height: 130px;
    }
    .h-xxl-140px,
    .size-xxl-140px {
        height: 140px;
    }
    .h-xxl-150px,
    .size-xxl-150px {
        height: 150px;
    }
    .h-xxl-160px,
    .size-xxl-160px {
        height: 160px;
    }
    .h-xxl-170px,
    .size-xxl-170px {
        height: 170px;
    }
    .h-xxl-180px,
    .size-xxl-180px {
        height: 180px;
    }
    .h-xxl-190px,
    .size-xxl-190px {
        height: 190px;
    }
    .h-xxl-200px,
    .size-xxl-200px {
        height: 200px;
    }
    .h-xxl-210px,
    .size-xxl-210px {
        height: 210px;
    }
    .h-xxl-220px,
    .size-xxl-220px {
        height: 220px;
    }
    .h-xxl-230px,
    .size-xxl-230px {
        height: 230px;
    }
    .h-xxl-240px,
    .size-xxl-240px {
        height: 240px;
    }
    .h-xxl-250px,
    .size-xxl-250px {
        height: 250px;
    }
    .h-xxl-260px,
    .size-xxl-260px {
        height: 260px;
    }
    .h-xxl-270px,
    .size-xxl-270px {
        height: 270px;
    }
    .h-xxl-280px,
    .size-xxl-280px {
        height: 280px;
    }
    .h-xxl-290px,
    .size-xxl-290px {
        height: 290px;
    }
    .h-xxl-300px,
    .size-xxl-300px {
        height: 300px;
    }
    .h-xxl-310px,
    .size-xxl-310px {
        height: 310px;
    }
    .h-xxl-316px,
    .size-xxl-316px {
        height: 316px;
    }
    .h-xxl-320px,
    .size-xxl-320px {
        height: 320px;
    }
    .h-xxl-330px,
    .size-xxl-330px {
        height: 330px;
    }
    .h-xxl-340px,
    .size-xxl-340px {
        height: 340px;
    }
    .h-xxl-350px,
    .size-xxl-350px {
        height: 350px;
    }
    .h-xxl-360px,
    .size-xxl-360px {
        height: 360px;
    }
    .h-xxl-370px,
    .size-xxl-370px {
        height: 370px;
    }
    .h-xxl-380px,
    .size-xxl-380px {
        height: 380px;
    }
    .h-xxl-390px,
    .size-xxl-390px {
        height: 390px;
    }
    .h-xxl-400px,
    .size-xxl-400px {
        height: 400px;
    }
    .h-xxl-410px,
    .size-xxl-410px {
        height: 410px;
    }
    .h-xxl-420px,
    .size-xxl-420px {
        height: 420px;
    }
    .h-xxl-450px,
    .size-xxl-450px {
        height: 450px;
    }
    .h-xxl-460px,
    .size-xxl-460px {
        height: 460px;
    }
    .h-xxl-475px,
    .size-xxl-475px {
        height: 475px;
    }
    .h-xxl-485px,
    .size-xxl-485px {
        height: 485px;
    }
    .h-xxl-490px,
    .size-xxl-490px {
        height: 490px;
    }
    .h-xxl-500px,
    .size-xxl-500px {
        height: 500px;
    }
    .h-xxl-600px,
    .size-xxl-600px {
        height: 600px;
    }
    .h-xxl-553px,
    .size-xxl-553px {
        height: 553px;
    }
    .h-xxl-640px,
    .size-xxl-640px {
        height: 640px;
    }
    .h-xxl-675px,
    .size-xxl-675px {
        height: 675px;
    }
    .h-xxl-800px,
    .size-xxl-800px {
        height: 820px;
    }

    .xxl-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .xxl-no-gutters > .col,
    .xxl-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .xxl-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .xxl-gutters-5 > .col,
    .xxl-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .xxl-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .xxl-gutters-10 > .col,
    .xxl-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .xxl-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .xxl-gutters-15 > .col,
    .xxl-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .xxl-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .xxl-gutters-16 > .col,
    .xxl-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .xxl-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .xxl-gutters-17 > .col,
    .xxl-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .xxl-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .xxl-gutters-20 > .col,
    .xxl-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .xxl-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .xxl-gutters-25 > .col,
    .xxl-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .xxl-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .xxl-gutters-30 > .col,
    .xxl-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    [dir="rtl"] .row-cols-xxl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-xxl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-xxl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-xxl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-xxl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-xxl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .flex-grow-xxl-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-xxl-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-xxl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}
/*========================================================== dropdown style ============================== */
/*dropdown*/
.dropdown-toggle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.dropdown-toggle::after {
    border: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 80%;
    margin-left: 0.3rem;
}
.dropup .dropdown-toggle::after {
    border: 0;
    content: "\f106";
}
.dropdown-toggle.no-arrow::after {
    content: none;
}
.dropdown-menu {
    border-color: #dfdfe6;
    margin: 0;
    border-radius: 0;
    min-width: 14rem;
    font-size: inherit;
    padding: 0;
    -webkit-box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    padding: 0.5rem 0;
    border-radius: 4px;
    max-width: 100%;
}
.dropdown-menu-animated {
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    margin-top: 20px !important;
}
.show.dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0 !important;
}
.dropdown-menu.dropdown-menu-xs {
    width: 160px;
    min-width: 160px;
}
.dropdown-menu.dropdown-menu-sm {
    width: 240px;
    min-width: 240px;
}
.dropdown-menu.dropdown-menu-md {
    width: 260px;
    min-width: 260px;
}
.dropdown-menu.dropdown-menu-lg {
    width: 320px;
    min-width: 320px;
}
.dropdown-menu.dropdown-menu-xl {
    width: 380px;
    min-width: 380px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #74788d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: #fff !important;
    background-color: var(--primary);
}

.notifications .nav-link {
    border: 0px;
    border-bottom: 2px solid transparent;
}
.notifications .nav-link.active {
    border-bottom-color: #d43533;
}

/*========================================================== basic style ============================== */

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #eae9d7;
    max-width: 100vw;
    overflow-x: hidden;
}
a,
button,
input,
textarea,
.btn,
.has-transition {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
a {
    color: black;
}
/* a:hover {
    text-decoration: none;
    color: var(--hov-primary);
} */
:focus,
a:focus,
button:focus,
.page-link:focus,
.custom-file-input:focus ~ .custom-file-label {
    box-shadow: none;
    outline: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
/*========================================================== Header and slider part style ============================== */

/* Desktop styles (min-width: 992px) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        display: none;
        position: absolute;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    /* Hide mobile-specific elements on desktop */
    .mobile-dropdown-toggle,
    .mobile-dropdown-menu {
        display: none !important;
    }
}

/* Mobile styles (max-width: 991.98px) */
@media (max-width: 991.98px) {
    /* Hide desktop-specific elements on mobile */
    .dropdown-menu:not(.mobile-dropdown-menu) {
        display: none !important;
    }

    /* Mobile dropdown styles */
    .mobile-dropdown-menu {
        position: relative !important;
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        background-color: rgba(0, 0, 0, 0.03) !important;
        display: none;
    }

    .mobile-dropdown-menu.show {
        display: block !important;
    }

    .mobile-submenu {
        padding-left: 1.5rem;
        background-color: rgba(0, 0, 0, 0.05) !important;
        display: none;
    }

    .mobile-submenu.show {
        display: block !important;
    }

    .mobile-dropdown-toggle {
        position: relative;
        padding-right: 2rem !important;
    }

    .mobile-dropdown-toggle .dropdown-arrow {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s ease;
    }

    .mobile-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
        transform: translateY(-50%) rotate(-180deg);
    }

    /* Make sure parent items with children don't navigate */
    .mobile-dropdown-toggle.has-children {
        pointer-events: none;
    }

    /* Clickable area for mobile dropdowns */
    .mobile-dropdown-trigger {
        display: block;
        width: 100%;
        padding: 0.5rem 1rem;
        position: relative;
        padding-right: 2rem;
    }

    .mobile-dropdown-trigger .dropdown-arrow {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s ease;
    }

    .mobile-dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
        transform: translateY(-50%) rotate(-180deg);
    }
}
/* Update the navbar styles */
/* Modal dialog position and transition */
/* Right to left slide-in animation */
.modal.custom-slide-in.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 320px;
    height: 100%;
    max-width: 100%;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
}

.modal.custom-slide-in.right.show .modal-dialog {
    transform: translateX(0);
}

.modal.custom-slide-in.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: none;
}

/* Remove default fade animation */
/* .modal.custom-slide-in {
    transition: none;
} */

/* Adjust modal backdrop */
.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.dropdown-menu .dropdown-item {
    transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--primary) !important;
    color: #fff !important;
}
.navbar {
    background: transparent !important;
    position: relative;
    z-index: 1000;
    padding: 1rem 0;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050; /* higher than other content */
    /* transition: background-color 0.3s ease, box-shadow 0.3s ease; */
}

header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* For Option 1 (Background Image) */
.navbar {
    background: transparent !important;
    position: relative; /* Changed from absolute */
    z-index: 1000;
    padding: 1rem 0;
}
.slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(77, 74, 74, 0.5); */
    background-color: #000;
    opacity: 20%;
    z-index: 1;
}

.slider {
    margin-top: -62px; /* Pull up behind navbar */
    padding-top: 0px; /* Push content down */
    position: relative;
    z-index: 1; /* Below navbar */
}
.img-fit {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Add this new style for the slider */

.navbar-nav .nav-item .nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

/* .navbar-nav .nav-item:not(:first-child) .nav-link::before {
    content: "|";
    color: #ccc;
    margin-right: 1rem;
} */

/* payment design start */
.payment-option {
    transition: 0.3s ease;
    background-color: #f8f9fa;
}

/*.payment-option.active {*/
/*    border-color: #198754 !important;*/
/*    background-color: #e6ffed;*/
/*    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);*/
/*}*/

.payment-option.active {
    border-color: #198754 !important;
    background-color: rgb(201 231 123);
    box-shadow: 0 0 0 0.25rem rgb(87 111 100 / 25%);
    color: var(--primary);
}
/* payment design end */

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 700;
}
.nav-link {
    color: var(--secondary) !important;
    font-weight: 700;
}

.btn-book {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}
.btn-book:hover {
    background-color: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}
.btn-white {
    background-color: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}
.btn-white:hover {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}
.navbar-nav .nav-item:not(:last-child) .nav-link::after {
    content: "|";
    margin-left: 12px;
    margin-right: 0px;
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0;
    }
    .navbar-nav .nav-item .nav-link::before {
        content: none;
    }
    /* .navbar-nav .nav-item:not(:last-child) .nav-link::after {
        content: "|";
        margin-left: 0.5rem;
        color: #ccc;
    } */

    .navbar-nav .nav-item:not(:last-child) .nav-link::after {
        content: "";
        margin-left: 12px;
        margin-right: 0px;
        color: var(--primary);
    }
    .navbar-toggler {
        box-shadow: none;
    }
}
/* Responsive for all device  */
/* Default styles (Large desktop first) */
.slider-heading {
    position: relative;
    top: 25%;
    color: white;
    z-index: 1;
}

.slider-h2 {
    font-size: 76px;
    line-height: 1.2;
}

.book-session {
    font-size: 15px;
    background: white;
    color: var(--primary);
    padding: 4px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.book-session:hover {
    background: var(--primary);
    color: white;
}
/* statistic part  */
/* .statistic .row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
} */
/* start here service hover */
.hover-service-wrapper {
    position: relative;
    width: fit-content;
}

.hover-animation-service-container {
    position: relative;
    z-index: 1;
    transition: color 0.6s ease;
    cursor: pointer;
    border-radius: 24px; /* Ensure this is also set here */
    overflow: hidden; /* This clips the ::before overlay to match border radius */
}

.hover-animation-service-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: white; /* or a fixed color like #3BB77E */
    border-radius: 24px; /* ✅ fix applied */
    z-index: -1;
    transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
        left 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
}

.hover-animation-service-container:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.hover-animation-service-container:hover {
    color: black;
}

.hover-animation-service-container:hover h2,
.hover-animation-service-container:hover span {
    color: black;
}

/* end here service hover  */

.statistic-title-h2 {
    font-size: 28px;
    line-height: 47px;
}
.statistic-des-p {
    font-size: 20px;
}
.statistic-des-p > p {
    margin-bottom: 0;
    padding-bottom: 0;
}
.statistic-card-image {
    width: 70px;
}

/* =====================================about us section style ========================== */

.about-us-bg {
    position: relative;
    background: url("/uploads/about_us/bg.png") no-repeat top center;
    background-size: cover;
    margin-top: 216px;
    padding-top: 0;
    padding-bottom: 60px;
}
.about-us-padding {
    padding-top: 80px;
}
.about-tag {
    font-size: 14px;
    border-radius: 25px !important;
}
.about-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
}

.about-des {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 10px;
}
.about-image {
    height: 300px;
    width: 300px;
    border-radius: 25px;
}
.first-section > h4 {
    font-size: 24px;
    font-weight: 400;
}
.first-section > p {
    font-size: 15px;
    font-weight: 400;
}
.about-last-image {
    display: flex;
    justify-content: end;
    align-items: center;
}

/*======================================================================= specialist section start ===============================*/
.specialist-section {
    /* background: linear-gradient(135deg, #183d2d, #22462f); */
    border-radius: 50px;
    padding-top: 60px;
    padding-bottom: 60px;
    /* padding: 75px 46px; */
    margin-top: 70px;
    margin-bottom: 70px;
    position: relative;
}

.specialist-title {
    font-size: 90px;
    font-weight: 600;
}
.specialist-highlight {
    color: #b3ff76;
}

.specialist-text {
    color: #cfdac0;
    /* max-width: 400px; */
    margin-bottom: 25px;
}

.btn-learn {
    border: none;
    padding: 6px 25px;
    color: white;
    border-radius: 6px;
}

.therapist-collage {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: 352px 205px;
    margin-left: auto;
    /* margin-top: 20px; */
    justify-content: end;
}

.therapist-collage .left-column {
    grid-gap: 1.5rem;
    grid-template-columns: 157px 171px;
    justify-items: end;
    display: grid;
    position: relative;
}
.therapist-collage .left-column > img:first-of-type {
    width: 267px;
    height: 312px;
    border-radius: 140px 15px 15px;
    grid-column: 1 / span 2;
    margin-top: 73px;
}
.therapist-collage img {
    object-position: top;
    object-fit: cover;
}

.therapist-collage .left-column > img:nth-child(2) {
    width: 157px;
    height: 118px;
    border-radius: 15px 15px 15px 70px;
    grid-area: 2 / 1;
}

.therapist-collage .left-column > img:nth-child(3) {
    width: 171px;
    height: 162px;
    border-radius: 15px 15px 70px;
    grid-area: 2 / 2;
}

.therapist-collage .right-column > img {
    margin-bottom: 1.5rem;
}

.therapist-collage .right-column > img:first-of-type {
    width: 107px;
    height: 102px;
    border-radius: 70px 15px 15px;
}

.therapist-collage .right-column > img:nth-child(2) {
    width: 150px;
    height: 172px;
    border-radius: 15px 70px 15px 15px;
}

.therapist-collage .right-column > img:nth-child(3) {
    width: 196px;
    height: 148px;
    border-radius: 15px 70px 15px 15px;
}

.top-icon {
    position: absolute;
    top: 9%;
    right: 78%;
}
.bottom-icon {
    position: absolute;
    bottom: 3%;
    right: 12%;
}
.star-icon {
    position: absolute;
    bottom: 10%;
}

/* ========================================================specialist section end======================================================= */
/* ======================================================service-home section start===================================================== */
.service-home-bg {
    position: relative;
    background: url(/uploads/service-home/bg.png) no-repeat top center;
    background-size: cover;
    margin-top: 49px;
    padding-top: 107px;
    padding-bottom: 60px;
}
.service-home-padding {
    padding-top: 80px;
}
.service-home-title {
    font-size: 68px;
    line-height: 84px;
}
.service-item-title {
    font-size: 30px;
    font-weight: 300;
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease, color 0.5s ease, padding 0.5s ease;
    color: inherit;
}

.service-item:hover {
    background-color: var(--primary);
    color: white;
    padding-left: 10px;
    padding-right: 10px;
}

/* Smooth fill transition for SVG */
.service-item svg path {
    transition: fill 0.5s ease;
}

.service-item:hover svg path {
    fill: #fff;
}
.mark-img {
    position: absolute;
    top: 28%;
}

/* =======================================================================service-home section end ===================================================================*/
/*======================================================================== why-choose-us section start ================================================================*/
.why-choose-us {
    border-radius: 50px;
    padding-top: 60px;
    padding-bottom: 60px;
    /* padding: 75px 46px; */
    margin-top: 70px;
    margin-bottom: 70px;
    position: relative;
    border: 1px solid white;
    background-color: white;
}
.why-choose-title {
    font-size: 70px;
    font-weight: 600;
    line-height: 84px;
}
.why-choose-img {
    border-radius: 25px;
}
.why-choose-h5 {
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
}
.why-choose-des {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #282c28;
    margin-right: 38px;
}
.why-choose-mark-img {
    position: absolute;
    top: 22%;
    right: 0;
    z-index: -1;
}
/* =====================================================================why-choose-us section end ==============================================================*/
/* =====================================================================testimonial section start ==============================================================*/
/*.testimonial-bg {*/
/*    position: relative;*/
/*    background: url(/uploads/about_us/bg.png) no-repeat top center;*/
/*    background-size: cover;*/
/*    margin-top: 72px;*/
/*    padding-top: 84px !important;*/
/*    padding-bottom: 60px;*/
/*    overflow: hidden;*/
/*}*/

.testimonial-bg {
    position: relative; /* keep for internal elements */
    background: url(/uploads/about_us/bg.png) no-repeat top center;
    background-size: cover;
    padding-top: 84px !important;
    padding-bottom: 60px;
    overflow: hidden;
    width: 100%;
}
/* custom-bg  */
.custom-bg {
    position: relative;
    background: url(/uploads/about_us/bg.png) no-repeat top center;
    background-size: cover;
    margin-top: 30px;
    padding-top: 29px !important;
    padding-bottom: 60px;
    overflow: hidden;
}
.testimonial-title {
    font-size: 61px;
    font-weight: 600;
    line-height: 79px;
}
.testimonial-card-design {
    background-color: white;
    width: 190px;
    border-radius: 25px;
}
.testimonial-card-design:hover {
    background-color: #c7d8b7;
    width: 190px;
    border-radius: 25px;
    color: var(--secondary);
    cursor: pointer;
}

.custom-carousel {
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0.7;
    width: 420px;
    height: 160px;
    background-color: white;
    border-radius: 25px;
}

.testimonial-card.active {
    transform: scale(1.05);
    opacity: 1;
    width: 500px;
    height: 240px;
    border-radius: 25px;
    background-color: white;
}

.testimonial-card .main-card-inner {
    height: 120px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    opacity: 0.75;
    transform: scale(0.96);
}

.testimonial-card.active .main-card-inner {
    height: 340px;
    opacity: 1;
    transform: scale(1);
}

/* Make sure navigation is visible */
#navIndicator {
    display: flex !important;
    visibility: visible !important;
}
#prevBtn,
#nextBtn {
    display: block !important;
    visibility: visible !important;
}
.active-indicator {
    font-weight: bold;
    /* text-decoration: underline; */
}
.inactive-indicator:hover {
    color: #777 !important;
}
.inactive-indicator {
    color: #777 !important;
    padding-top: 5px;
}

/* Ensure carousel wrapper doesn't overlap navigation */
.right-carousel-wrapper {
    position: absolute;
    top: 0;
    padding-bottom: 96px !important;
    width: 810px;
    right: 0;
    margin-top: 183px;
}

.testimonial-card-design > img {
    height: 30px;
    width: 30px;
}

.testimonial-service-title {
    font-size: 16px;
}
.testimonial-service-des {
    font-size: 12px !important;
}
.testimonial-mark-img {
    position: absolute;
    top: 10%;
}
/* =====================================================================testimonial section end ==============================================================*/
/* =====================================================================contact-us section start ==============================================================*/
.contact-us {
    border-radius: 50px;
    padding-top: 60px;
    padding-bottom: 60px;
    /* padding: 75px 46px; */
    margin-top: 70px;
    margin-bottom: 70px;
    position: relative;
}
.contact-us-title {
    font-size: 80px;
    font-weight: 600;
    line-height: 100px;
    text-align: center;
}
.small-star {
    position: absolute;
    top: 5%;
}
.contact-mark {
    position: absolute;
    top: 10%;
    right: 0;
}
.large-star {
    position: absolute;
    bottom: 5%;
    right: 2%;
}
.contact-us-second-title {
    font-size: 47px;
    font-weight: 400px;
}
.contact-us-second-circle {
    padding: 24px;
    margin-bottom: 0px;
    margin-left: 324px;
    background-color: #b2d45a;
}

/* Main container styling */
.hover-wrapper {
    position: relative;
    width: fit-content;
}

.second-sections {
    position: relative;
    z-index: 1;
    transition: color 0.6s ease;
    cursor: pointer;
}

/* The green overlay that will slide in */
.hover-animation-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);

    border-radius: 50px;
    z-index: -1;
    transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
        left 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
}

/* Hover effects */
.hover-animation-container:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.hover-animation-container:hover {
    color: white; /* Text color on hover */
}

.hover-animation-container:hover svg path {
    stroke: white; /* Arrow color on hover */
}

/* Ensure text and icon stay above the overlay */
.contact-us-second-title,
.contact-us-second-circle {
    position: relative;
    z-index: 2;
}

/* =====================================================================contact-us section end ==============================================================*/
/* =====================================================================articals section start ==============================================================*/
.article-section {
    margin-left: 300px;
}
.article-title {
    font-size: 80px;
    font-weight: 600;
    line-height: 84px;
}
.article-des {
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
}
.article-date {
    position: absolute;
    top: 4%;
    left: 4%;
    border-radius: 5px;
}
.article-date > .font1 {
    font-size: 20px;
    font-weight: 600;
}
.article-date > .font2 {
    font-size: 12px;
    font-weight: 400;
}
.blog-date {
    position: absolute;
    top: 4%;
    left: 4%;
    border-radius: 5px;
}
.blog-date > .font1 {
    font-size: 14px;
    font-weight: 600;
}
.blog-date > .font2 {
    font-size: 9px;
    font-weight: 400;
}
.object-fit-cover {
    object-fit: cover;
}

.swiper {
    padding-top: 40px;
    padding-bottom: 40px;
}

.swiper-slide {
    width: 600px !important;
}

/* Alternate image height by slide index */
.swiper-slide:nth-child(odd) img {
    height: 650px;
}

.swiper-slide:nth-child(even) img {
    height: 500px;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
    transition: height 0.4s ease;
}

.badge {
    font-size: 0.75rem;
}

.combined svg {
    cursor: pointer;
}

/* =====================================================================articles section end ==============================================================*/
/* =====================================================================footer section end ==============================================================*/
.footer-heading {
    font-size: 20px;
}
.footer-text {
    font-size: 16px;
}
.social-icon {
    width: 45px;
    height: 45px;
    transition: 0.5s;
}
.social-icon:hover {
    background-color: #fff !important;
    color: var(--primary) !important;
}
/* =====================================================================footer section end ==============================================================*/
/* =====================================================================aboutpage section end ==============================================================*/
.about-us-banner {
    padding-top: 125px;
}
.about-us-banner-title {
    font-size: 82px;
    font-weight: 700;
    line-height: 87px;
}
.about-us-banner-star {
    position: absolute;
    bottom: 27%;
    left: 4%;
    width: 30px;
    height: 30px;
}
.about-us-banner-arrow {
    position: absolute;
    bottom: 12%;
    left: 6%;
    width: 30px;
    height: 30px;
}
.about-us-banner-brain {
    position: absolute;
    bottom: 27%;
    right: 4%;
    width: 30px;
    height: 30px;
}
.about-us-banner-health {
    position: absolute;
    bottom: 12%;
    right: 6%;
    width: 30px;
    height: 30px;
}
.about-us-banner-mark {
    position: absolute;
    top: 26%;
    right: 9%;
    width: 40%;
    z-index: -1;
}
.about-us-login-mark {
    position: absolute;
    top: 49%;
    right: 12%;
    width: 40%;
    z-index: -1;
}
/* login title  */
.login-title {
    font-size: 70px;
    font-weight: 700;
}
.auth-img-part {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
}
.auth-image {
    height: 150px;
    width: 150px;
}
.about-us-page-title {
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
}
.about-us-page-image {
    border-radius: 25px;
    margin-bottom: 48px;
}
.about-us-page-heading {
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    /* max-width: 276px; */
}
.about-page-heading-sec > h5 > p {
    margin-bottom: 0px;
}

/* =====================================================================we-offer section end ==============================================================*/
.we-offer-bg {
    position: relative;
    background: url(/uploads/offer/bg.png) no-repeat top center;
    background-size: cover;
    margin-top: 30px;
    padding-top: 98px !important;
    padding-bottom: 60px;
    overflow: hidden;
}
.service-home-padding {
    padding-top: 80px;
}
.we-offer-title {
    font-size: 68px;
    line-height: 84px;
}
.we-offer-item-title {
    font-size: 20px;
    font-weight: 300;
}
.we-offer-image {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.we-offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease, color 0.5s ease, padding 0.5s ease;
    color: inherit;
    background-color: white;
    border-radius: 23px;
    padding: 33px 14px;
}

.we-offer-item:hover {
    background-color: #c7d8b7;
    color: var(--primary);
    cursor: pointer;
}

/* Smooth fill transition for SVG */
.we-offer-item svg path {
    transition: fill 0.5s ease;
}

.we-offer-item:hover svg path {
    fill: var(--primary);
}
.mark-img {
    position: absolute;
    top: 28%;
}
.listing-part {
    background-color: var(--secondary);
    border-radius: 25px;
    color: white;
}
.listing-part > a {
    color: white;
}

.we-offer-star {
    position: absolute;
    top: -5%;
    left: 25%;
}
.we-offer-large-star {
    position: absolute;
    bottom: 5%;
    right: 24%;
}
.we-offer-brain {
    position: absolute;
    top: 10%;
    right: 5%;
}
.we-offer-mark {
    position: absolute;
    bottom: 22%;
    right: 0%;
}
/* =====================================================================we-offer section end ==============================================================*/
/* =====================================================================healing section end ==============================================================*/
.healing-title {
    font-size: 70px;
    line-height: 90px;
    font-weight: 600;
}
.hashtags {
    border-radius: 15px;
    background-color: #c7d8b7;
    padding: 25px;
}
.hastags-title {
    font-size: 18px;
}
.discount-card {
    border-radius: 13px;
    color: white;
    padding: 9px 14px;
}
.discount-image {
    width: 20px;
    height: 20px;
    margin-bottom: 7px;
}
.discount-des {
    font-size: 10px;
}

/* =====================================================================healing section end ==============================================================*/
/* =====================================================================aboutpage section end ==============================================================*/
/* =====================================================================services section end ==============================================================*/
.service-card {
    background-color: white;
    padding: 20px;
    border-radius: 25px;
}
.service-card:hover {
    cursor: pointer;
}

.service-card:hover .service-svg-section > svg {
    cursor: pointer;
    fill: var(--secondary) !important;
    stroke: var(--secondary) !important;
}
.service-card:hover .service-svg-section > svg path {
    cursor: pointer;
    fill: var(--highlight) !important;
}

.service-image-section > img {
    width: 50px;
}
.service-section-heading {
    font-size: 28px;
    font-weight: 500;
}

/* =====================================================================services section end ==============================================================*/
/* clip-path: polygon(0 0, 68% 0, 68% 26%, 100% 26%, 100% 99%, 20% 100%, 0 100%, 0% 20%); */
/* =====================================================================specialists section start ==============================================================*/
.specialists-card {
    background-color: white;
    border-radius: 25px;
}
.specialists-card-img {
    border-radius: 25px;
}

/* start here  */
.specialists-card {
    position: relative;
    overflow: hidden;
}

.bg-default-img,
.bg-color-img {
    position: absolute;
    top: 16px;
    right: 3%;
    width: 98px;

    transition: opacity 0.3s ease-in-out;
}

/* Show default image initially */
.bg-default-img {
    opacity: 1;
    z-index: 1;
}

/* Hide color image initially */
.bg-color-img {
    opacity: 0;
    z-index: 2;
}

/* On hover, hide default and show color */
.specialists-card:hover .bg-default-img {
    opacity: 0;
}

.specialists-card:hover .bg-color-img {
    opacity: 1;
}

.specialists-name {
    font-size: 24px;
    font-weight: 500;
}
.specialists-designation {
    font-size: 16px;
    font-weight: 400;
}
.specialists-consult {
    font-size: 16px;
    font-weight: 500;
}

/* phychiatrist deep healing start */
.second-custom-bg {
    position: relative;
    background: url(/uploads/offer/bg.png) no-repeat top center;
    background-size: cover;
    margin-top: 30px;
    padding-top: 98px !important;
    padding-bottom: 60px;
    overflow: hidden;
}

/* phychiatrist deep healing end */
/* single specialist start  */
.single-specialist-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 50px;
    margin-top: 35px;
}
.single-specialist-designation {
    font-weight: 500;
    font-size: 26px;
}
.single-specialist-large-star {
    position: absolute;
    top: 9%;
    left: -14%;
    width: 35px;
}
.single-specialist-star {
    position: absolute;
    bottom: 25%;
    right: 50%;
}
.single-specialist-mark {
    position: absolute;
    bottom: 15%;
    right: 0%;
}
.experience-year {
    position: absolute;
    bottom: 26%;
    right: -11%;
}
/* single specialist end  */

/* blog deails  */

.blog-details-star {
    position: absolute;
    top: 50%;
    right: -10%;
}
.blog-details-large-star {
    position: absolute;
    top: 1%;
    left: -14%;
    width: 35px;
}
.blog-details-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 50px;
    margin-top: 0px;
}
.specialist-image {
    max-height: 460px !important;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Mobile header styling */
.mobile-header {
    /* background: white; */
    position: sticky;
    top: 0;
    z-index: 1020;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

/* Book Now button styling */
.btn-book {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

/* Scrolled header effect */
header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Modal styling for mobile */
@media (max-width: 991.98px) {
    .modal-dialog {
        margin: 0;
        max-width: 100%;
    }

    .modal-content {
        border-radius: 0;
        min-height: 100vh;
    }
}

/* =====================================================================specialists section end ==============================================================*/
/* appointment part start  */
.header-title > h4 {
    font-size: 35px;
}

/* login title  */
.login-title {
    font-size: 70px;
    font-weight: 700;
}
/* appointment part end  */
/* XXL devices (≤1799px) */
@media (max-width: 1799px) {
    .article-section {
        margin-left: 61px;
    }
    .specialist-image {
        max-height: 400px !important;
    }
    .top-icon {
        position: absolute;
        top: 8%;
        right: 73%;
    }
    .bottom-icon {
        position: absolute;
        bottom: 3%;
        right: 12%;
    }
    .star-icon {
        position: absolute;
        bottom: 10%;
    }
    .single-specialist-large-star {
        position: absolute;
        top: 28%;
        left: 6%;
        width: 35px;
    }

    .slider-h2 {
        font-size: 60px;
        line-height: 1.2;
    }
    .slider {
        margin-top: -62px; /* Pull up behind navbar */
        padding-top: 0px; /* Push content down */
        position: relative;
        z-index: 1; /* Below navbar */
    }

    /* =====================================================================testimonial section start ==============================================================*/

    .custom-carousel {
        transition: transform 0.8s ease-in-out;
        will-change: transform;
    }

    .testimonial-card {
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0.7;
        width: 389px;
        height: 150px;
        background-color: white;
        border-radius: 25px;
    }

    .testimonial-card.active {
        transform: scale(1.05);
        opacity: 1;
        width: 389px;
        height: 189px;
        border-radius: 25px;
        background-color: white;
    }

    .testimonial-title {
        font-size: 45px;
        font-weight: 600;
        line-height: 54px;
    }
    .testimonial-card-design {
        background-color: white;
        width: 199px;
        border-radius: 25px;
    }

    .testimonial-card-design:hover {
        background-color: #c7d8b7;
        width: 199px;
        border-radius: 25px;
        color: var(--secondary);
        cursor: pointer;
    }
    .testimonial-card-design > img {
        height: 20px;
        width: 20px;
    }

    .testimonial-service-title {
        font-size: 13px;
    }
    .testimonial-service-des {
        font-size: 9px !important;
    }

    .testimonial-card .main-card-inner {
        height: 120px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        opacity: 0.75;
        transform: scale(0.96);
    }

    .testimonial-card.active .main-card-inner {
        height: 240px;
        opacity: 1;
        transform: scale(0.9);
    }

    /* =Make sure navigation is visible */
    #navIndicator {
        display: flex !important;
        visibility: visible !important;
    }
    #prevBtn,
    #nextBtn {
        display: block !important;
        visibility: visible !important;
    }
    .active-indicator {
        font-weight: bold;
        /* text-decoration: underline; */
    }
    .inactive-indicator:hover {
        color: #777 !important;
    }
    .inactive-indicator {
        color: #777 !important;
        padding-top: 5px;
    }

    /* Ensure carousel wrapper doesn't overlap navigation */
    .right-carousel-wrapper {
        position: absolute;
        top: 0;
        padding-bottom: 96px !important;
        width: 535px;
        right: 0;
        margin-top: 183px;
    }
    .testimonial-mark-img {
        position: absolute;
        top: 5%;
    }
    /* =====================================================================testimonial section end ==============================================================*/
}
@media (max-width: 1530px) {
    .article-section {
        margin-left: 61px;
    }
    .top-icon {
        position: absolute;
        top: 8%;
        right: 74%;
    }
}
@media (max-width: 1599px) {
    .article-section {
        margin-left: 61px;
    }
    .specialist-image {
        max-height: 400px !important;
    }
    .top-icon {
        position: absolute;
        top: 8%;
        right: 84%;
    }
    .bottom-icon {
        position: absolute;
        bottom: 3%;
        right: 12%;
    }
    .star-icon {
        position: absolute;
        bottom: 10%;
    }
    .single-specialist-large-star {
        position: absolute;
        top: 19%;
        left: -8%;
        width: 25px;
    }

    /* blog deails  */

    .blog-details-star {
        position: absolute;
        top: 30%;
        right: -10%;
    }
    .blog-details-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 0px;
    }

    /* =====================================================================testimonial section start ==============================================================*/

    .custom-carousel {
        transition: transform 0.8s ease-in-out;
        will-change: transform;
    }

    .testimonial-card {
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0.7;
        width: 389px;
        height: 150px;
        background-color: white;
        border-radius: 25px;
    }

    .testimonial-card.active {
        transform: scale(1.05);
        opacity: 1;
        width: 389px;
        height: 189px;
        border-radius: 25px;
        background-color: white;
    }

    .testimonial-title {
        font-size: 45px;
        font-weight: 600;
        line-height: 54px;
    }
    .testimonial-card-design {
        background-color: white;
        width: 199px;
        border-radius: 25px;
    }

    .testimonial-card-design:hover {
        background-color: #c7d8b7;
        width: 199px;
        border-radius: 25px;
        color: var(--secondary);
        cursor: pointer;
    }
    .testimonial-card-design > img {
        height: 20px;
        width: 20px;
    }

    .testimonial-service-title {
        font-size: 13px;
    }
    .testimonial-service-des {
        font-size: 9px !important;
    }

    .testimonial-card .main-card-inner {
        height: 120px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        opacity: 0.75;
        transform: scale(0.96);
    }

    .testimonial-card.active .main-card-inner {
        height: 240px;
        opacity: 1;
        transform: scale(0.9);
    }

    /* =Make sure navigation is visible */
    #navIndicator {
        display: flex !important;
        visibility: visible !important;
    }
    #prevBtn,
    #nextBtn {
        display: block !important;
        visibility: visible !important;
    }
    .active-indicator {
        font-weight: bold;
        /* text-decoration: underline; */
    }
    .inactive-indicator:hover {
        color: #777 !important;
    }
    .inactive-indicator {
        color: #777 !important;
        padding-top: 5px;
    }

    /* Ensure carousel wrapper doesn't overlap navigation */
    .right-carousel-wrapper {
        position: absolute;
        top: 0;
        padding-bottom: 96px !important;
        width: 535px;
        right: 0;
        margin-top: 183px;
    }
    .testimonial-mark-img {
        position: absolute;
        top: 5%;
    }
    /* =====================================================================testimonial section end ==============================================================*/
}

@media (max-width: 1399px) {
    .article-section {
        margin-left: 61px;
    }
    .specialist-image {
        max-height: 400px !important;
    }
    .about-us-bg {
        position: relative;
        background: url("/uploads/about_us/bg.png") no-repeat top center;
        background-size: cover;
        margin-top: 274px;
        padding-top: 0;
        padding-bottom: 60px;
    }
    .about-us-banner-mark {
        position: absolute;
        top: 36%;
        right: 4%;
        width: 45%;
        z-index: -1;
    }

    .about-us-login-mark {
        position: absolute;
        top: 75%;
        right: 8%;
        width: 40%;
        z-index: -1;
    }
    /* login title  */
    .login-title {
        font-size: 70px;
        font-weight: 700;
    }
    .auth-img-part {
        position: absolute;
        top: -90px;
        left: 50%;
        transform: translateX(-50%);
    }
    .auth-image {
        height: 150px;
        width: 150px;
    }
    .about-us-page-title {
        font-size: 52px;
        font-weight: 600;
        line-height: 60px;
    }

    /* =====================================================================specialists section start ==============================================================*/

    .specialists-card-img {
        border-radius: 25px;
    }

    /* start here  */
    .specialists-card {
        position: relative;
        overflow: hidden;
        background-color: white;
        border-radius: 25px;
    }

    .bg-default-img,
    .bg-color-img {
        position: absolute;
        top: 16px;
        right: 4%;
        width: 78px;
        transition: opacity 0.3s ease-in-out;
    }

    /* Show default image initially */
    .bg-default-img {
        opacity: 1;
        z-index: 1;
    }

    /* Hide color image initially */
    .bg-color-img {
        opacity: 0;
        z-index: 2;
    }

    /* On hover, hide default and show color */
    .specialists-card:hover .bg-default-img {
        opacity: 0;
    }

    .specialists-card:hover .bg-color-img {
        opacity: 1;
    }

    .specialists-name {
        font-size: 19px;
        font-weight: 500;
    }
    .specialists-designation {
        font-size: 14px;
        font-weight: 400;
    }
    .specialists-consult {
        font-size: 14px;
        font-weight: 500;
    }

    /* single specialist start  */
    .single-specialist-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 41px;
        margin-top: 22px;
    }
    .single-specialist-designation {
        font-weight: 500;
        font-size: 26px;
    }

    .single-specialist-star {
        position: absolute;
        bottom: 25%;
        right: 50%;
    }
    .single-specialist-mark {
        position: absolute;
        bottom: 15%;
        right: 0%;
    }
    .experience-year {
        position: absolute;
        bottom: 26%;
        right: -11%;
    }
    /* single specialist end  */

    /* blog deails  */

    .blog-details-star {
        position: absolute;
        top: 30%;
        right: -10%;
    }
    .blog-details-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 0px;
    }

    /* =====================================================================specialists section end ==============================================================*/
}

@media (max-width: 1220px) {
    .article-section {
        margin-left: 61px;
    }
    .specialist-image {
        max-height: 400px !important;
    }
    .about-us-bg {
        position: relative;
        background: url("/uploads/about_us/bg.png") no-repeat top center;
        background-size: cover;
        margin-top: 202px;
        padding-top: 0;
        padding-bottom: 60px;
    }
    .top-icon {
        position: absolute;
        top: 8%;
        right: 87%;
    }
    .bottom-icon {
        position: absolute;
        bottom: 3%;
        right: 12%;
    }
    .star-icon {
        position: absolute;
        bottom: 10%;
    }
    /* =============================================================why-choose-us section start =============================================== */
    .why-choose-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
        border: 1px solid white;
        background-color: white;
    }
    .why-choose-title {
        font-size: 59px;
        font-weight: 600;
        line-height: 74px;
    }
    .why-choose-mark-img {
        position: absolute;
        top: 7%;
        right: 0;
        z-index: -1;
    }

    /* ======================================================================why-choose-us section end ========================================================== */
    /* ======================================================================specialist section start ========================================================== */
    .specialist-section {
        background: linear-gradient(135deg, #183d2d, #22462f);
        /* color: white; */
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
    }
    /* ======================================================================specialist section end ========================================================== */

    /* =====================================================================testimonial section start ==============================================================*/

    .custom-carousel {
        transition: transform 0.8s ease-in-out;
        will-change: transform;
    }

    .testimonial-card {
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0.7;
        width: 220px;
        height: 120px;
        background-color: white;
        border-radius: 25px;
    }

    .testimonial-card.active {
        transform: scale(1.05);
        opacity: 1;
        width: 386px;
        height: 173px;
        border-radius: 25px;
        background-color: white;
    }

    .testimonial-title {
        font-size: 45px;
        font-weight: 600;
        line-height: 54px;
    }
    .testimonial-card-design {
        background-color: white;
        width: 180px;
        border-radius: 25px;
    }

    .testimonial-card-design:hover {
        background-color: #c7d8b7;
        width: 180px;
        border-radius: 25px;
        color: var(--secondary);
        cursor: pointer;
    }
    .testimonial-card-design > img {
        height: 20px;
        width: 20px;
    }

    .testimonial-service-title {
        font-size: 13px;
    }
    .testimonial-service-des {
        font-size: 9px !important;
    }

    .testimonial-card .main-card-inner {
        height: 120px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        opacity: 0.75;
        transform: scale(0.96);
    }

    .testimonial-card.active .main-card-inner {
        height: 240px;
        opacity: 1;
        transform: scale(0.9);
    }

    /* Make sure navigation is visible */
    #navIndicator {
        display: flex !important;
        visibility: visible !important;
    }
    #prevBtn,
    #nextBtn {
        display: block !important;
        visibility: visible !important;
    }
    .active-indicator {
        font-weight: bold;
        /* text-decoration: underline; */
    }
    .inactive-indicator:hover {
        color: #777 !important;
    }
    .inactive-indicator {
        color: #777 !important;
        padding-top: 5px;
    }

    /* Ensure carousel wrapper doesn't overlap navigation */
    .right-carousel-wrapper {
        position: absolute;
        top: 0;
        padding-bottom: 96px !important;
        width: 572px;
        right: 0;
        margin-top: 172px;
    }
    /* =====================================================================testimonial section end ==============================================================*/
    /* =====================================================================contact-us section start ==============================================================*/
    .contact-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
    }
    .contact-us-title {
        font-size: 71px;
        font-weight: 600;
        line-height: 89px;
        text-align: center;
    }
    .small-star {
        position: absolute;
        top: 5%;
    }
    .contact-mark {
        position: absolute;
        top: 10%;
        right: 0;
    }
    .large-star {
        position: absolute;
        bottom: 5%;
        right: 2%;
    }
    .contact-us-second-title {
        font-size: 37px;
        font-weight: 400px;
    }
    .contact-us-second-circle {
        padding: 20px;
        margin-bottom: 0px;
        margin-left: 343px;
        background-color: #b2d45a;
    }

    /* =====================================================================contact-us section end ==============================================================*/
    /* =====================================================================articles section start ==============================================================*/
    .article-section {
        margin-left: 68px;
    }
    .article-title {
        font-size: 80px;
        font-weight: 600;
        line-height: 100px;
    }
    .article-des {
        font-size: 18px;
        line-height: 35px;
        font-weight: 400;
    }

    .article-date {
        position: absolute;
        top: 4%;
        left: 4%;
        border-radius: 5px;
    }
    .article-date > .font1 {
        font-size: 18px;
        font-weight: 600;
    }
    .article-date > .font2 {
        font-size: 10px;
        font-weight: 400;
    }

    .blog-date > .font1 {
        font-size: 14px;
        font-weight: 600;
    }
    .blog-date > .font2 {
        font-size: 9px;
        font-weight: 400;
    }
    .object-fit-cover {
        object-fit: cover;
    }

    .swiper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .swiper-slide {
        width: 444px !important;
    }

    /* Alternate image height by slide index */
    .swiper-slide:nth-child(odd) img {
        height: 550px;
    }

    .swiper-slide:nth-child(even) img {
        height: 400px;
    }

    .swiper-slide img {
        width: 100%;
        object-fit: cover;
        transition: height 0.4s ease;
    }

    .badge {
        font-size: 0.75rem;
    }

    .combined svg {
        cursor: pointer;
    }

    .about-us-banner-mark {
        position: absolute;
        top: 27%;
        right: 4%;
        width: 45%;
        z-index: -1;
    }
    .about-us-login-mark {
        position: absolute;
        top: 36%;
        right: 15%;
        width: 40%;
        z-index: -1;
    }
    /* login title  */
    .login-title {
        font-size: 70px;
        font-weight: 700;
    }
    .auth-img-part {
        position: absolute;
        top: -90px;
        left: 50%;
        transform: translateX(-50%);
    }
    .auth-image {
        height: 150px;
        width: 150px;
    }

    /* =====================================================================articles section end ==============================================================*/
    /* =====================================================================aboutpage section end ==============================================================*/
    .about-us-banner {
        padding-top: 50px;
    }
    .about-us-banner-title {
        font-size: 82px;
        font-weight: 700;
        line-height: 87px;
    }
    .about-us-banner-star {
        position: absolute;
        bottom: 27%;
        left: 4%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-arrow {
        position: absolute;
        bottom: 12%;
        left: 6%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-brain {
        position: absolute;
        bottom: 27%;
        right: 4%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-health {
        position: absolute;
        bottom: 12%;
        right: 6%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-mark {
        position: absolute;
        top: 27%;
        right: 4%;
        width: 45%;
        z-index: -1;
    }
    .about-us-login-mark {
        position: absolute;
        top: 67%;
        right: 7%;
        width: 40%;
        z-index: -1;
    }
    /* login title  */
    .login-title {
        font-size: 60px;
        font-weight: 700;
    }
    .auth-img-part {
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
    }
    .auth-image {
        height: 150px;
        width: 150px;
    }

    .about-us-page-title {
        font-size: 52px;
        font-weight: 600;
        line-height: 60px;
    }

    /* =====================================================================aboutpage section end ==============================================================*/
    /* =====================================================================specialists section start ==============================================================*/

    .specialists-card-img {
        border-radius: 25px;
    }

    /* start here  */
    .specialists-card {
        position: relative;
        overflow: hidden;
        background-color: white;
        border-radius: 25px;
    }

    .bg-default-img,
    .bg-color-img {
        position: absolute;
        top: 16px;
        right: 3%;
        width: 98px;

        transition: opacity 0.3s ease-in-out;
    }

    /* Show default image initially */
    .bg-default-img {
        opacity: 1;
        z-index: 1;
    }

    /* Hide color image initially */
    .bg-color-img {
        opacity: 0;
        z-index: 2;
    }

    /* On hover, hide default and show color */
    .specialists-card:hover .bg-default-img {
        opacity: 0;
    }

    .specialists-card:hover .bg-color-img {
        opacity: 1;
    }

    .specialists-name {
        font-size: 24px;
        font-weight: 500;
    }
    .specialists-designation {
        font-size: 16px;
        font-weight: 400;
    }
    .specialists-consult {
        font-size: 16px;
        font-weight: 500;
    }

    /* single specialist start  */
    .single-specialist-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 35px;
    }
    .single-specialist-designation {
        font-weight: 500;
        font-size: 26px;
    }
    .single-specialist-large-star {
        position: absolute;
        top: 20%;
        left: -4%;
        width: 25px;
    }
    .single-specialist-star {
        position: absolute;
        bottom: 25%;
        right: 50%;
    }
    .single-specialist-mark {
        position: absolute;
        bottom: 15%;
        right: 0%;
    }
    .experience-year {
        position: absolute;
        bottom: 26%;
        right: -11%;
    }
    /* single specialist end  */
    /* blog deails  */

    .blog-details-star {
        position: absolute;
        top: 30%;
        right: -10%;
    }
    .blog-details-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 0px;
    }
    /* =====================================================================specialists section end ==============================================================*/
}

/* XL devices (≤1199px) */
@media (max-width: 1199px) {
    .specialist-image {
        max-height: 300px !important;
    }
    .slider-h2 {
        font-size: 71px;
    }

    .book-session {
        font-size: 14px;
        padding: 4px 12px;
    }
    .statistic-title-h2 {
        font-size: 23px;
        line-height: 37px;
    }
    .statistic-des-p {
        font-size: 17px;
        line-height: 23px;
    }
    .statistic-card-image {
        width: 55px;
    }
    /* about us section start  */
    .about-us-padding {
        padding-top: 80px;
    }
    .about-tag {
        font-size: 10px !important;
        border-radius: 25px !important;
    }
    .about-title {
        font-size: 52px;
        font-weight: 600;
        line-height: 60px;
    }

    .about-des {
        display: flex;
        justify-content: end;
        align-items: center;
        padding-top: 10px;
    }
    .about-image {
        height: 300px;
        width: 300px;
        border-radius: 25px;
    }
    .first-section > h4 {
        font-size: 16px;
    }
    .first-section > p {
        font-size: 14px;
    }
    .about-last-image {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    /* about us section end  */

    /* specialist section start */
    .specialist-section {
        background: linear-gradient(135deg, #183d2d, #22462f);
        /* color: white; */
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
    }

    .specialist-title {
        font-size: 60px;
        font-weight: 600;
    }
    .specialist-highlight {
        color: #b3ff76;
    }

    .specialist-text {
        color: #cfdac0;
        max-width: 400px;
        margin-bottom: 25px;
    }

    .btn-learn {
        border: none;
        padding: 4px 29px;
        color: white;
        border-radius: 6px;
    }

    .therapist-collage {
        display: grid;
        grid-gap: 1.5rem;
        grid-template-columns: 352px 205px;
        margin-left: auto;
        margin-top: 20px;
        justify-content: end;
    }

    .therapist-collage .left-column {
        grid-gap: 1.5rem;
        grid-template-columns: 157px 171px;
        justify-items: end;
        display: grid;
        position: relative;
    }
    .therapist-collage .left-column > img:first-of-type {
        width: 217px;
        height: 268px;
        border-radius: 140px 15px 15px;
        grid-column: 1 / span 2;
        margin-top: 73px;
    }
    .therapist-collage img {
        object-position: top;
        object-fit: cover;
    }

    .therapist-collage .left-column > img:nth-child(2) {
        width: 122px;
        height: 103px;
        border-radius: 15px 15px 15px 70px;
        grid-area: 2 / 1;
    }

    .therapist-collage .left-column > img:nth-child(3) {
        width: 169px;
        height: 155px;
        border-radius: 15px 15px 70px;
        grid-area: 2 / 2;
    }

    .therapist-collage .right-column > img {
        margin-bottom: 1.5rem;
    }

    .therapist-collage .right-column > img:first-of-type {
        width: 89px;
        height: 93px;
        border-radius: 70px 15px 15px;
    }

    .therapist-collage .right-column > img:nth-child(2) {
        width: 138px;
        height: 141px;
        border-radius: 15px 70px 15px 15px;
    }

    .therapist-collage .right-column > img:nth-child(3) {
        width: 190px;
        height: 147px;
        border-radius: 15px 70px 15px 15px;
    }

    .top-icon {
        position: absolute;
        top: 9% !important;
        right: 91% !important;
    }
    .bottom-icon {
        position: absolute;
        bottom: 7% !important;
        right: 14% !important;
    }
    .star-icon {
        position: absolute;
        bottom: 10% !important;
    }
    /* ==================================================================================================specialist section end ======================= */

    /* ========================================================================service-home section start ==============================================*/

    .service-home-padding {
        padding-top: 80px;
    }
    .service-home-title {
        font-size: 47px;
        line-height: 58px;
    }
    .service-item-title {
        font-size: 30px;
        font-weight: 300;
    }
    .mark-img {
        position: absolute;
        top: 21%;
    }
    /* ==================================================================================service-home section end =======================================*/

    /*================================================================================ why-choose-us section start ==================================*/
    .why-choose-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
        border: 1px solid white;
        background-color: white;
    }
    .why-choose-title {
        font-size: 44px;
        font-weight: 600;
        line-height: 53px;
    }
    .why-choose-img {
        border-radius: 25px;
    }
    .why-choose-h5 {
        font-size: 22px;
        font-weight: 400;
        line-height: 34px;
    }
    .why-choose-des {
        font-size: 18px;
        font-weight: 300;
        line-height: 25px;
        color: #282c28;
        margin-right: 18px;
    }
    .why-choose-mark-img {
        position: absolute;
        top: 19px;
        right: 0;
        width: 50%;
        z-index: -1;
    }
    /*====================================================================== why-choose-us section end =====================================================*/

    /* =====================================================================testimonial section start ==============================================================*/

    .custom-carousel {
        transition: transform 0.8s ease-in-out;
        will-change: transform;
    }

    .testimonial-card {
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0.7;
        width: 220px;
        height: 120px;
        background-color: white;
        border-radius: 25px;
    }

    .testimonial-card.active {
        transform: scale(1.05);
        opacity: 1;
        width: 350px;
        height: 180px;
        border-radius: 25px;
        background-color: white;
    }

    .testimonial-title {
        font-size: 45px;
        font-weight: 600;
        line-height: 54px;
    }
    .testimonial-card-design {
        background-color: white;
        width: 166px;
        border-radius: 25px;
    }

    .testimonial-card-design:hover {
        background-color: #c7d8b7;
        width: 166px;
        border-radius: 25px;
        color: var(--secondary);
        cursor: pointer;
    }
    .testimonial-card-design > img {
        height: 20px;
        width: 20px;
    }

    .testimonial-service-title {
        font-size: 13px;
    }
    .testimonial-service-des {
        font-size: 9px !important;
    }

    .testimonial-card .main-card-inner {
        height: 120px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        opacity: 0.75;
        transform: scale(0.96);
    }

    .testimonial-card.active .main-card-inner {
        height: 240px;
        opacity: 1;
        transform: scale(0.9);
    }

    /* =Make sure navigation is visible */
    #navIndicator {
        display: flex !important;
        visibility: visible !important;
    }
    #prevBtn,
    #nextBtn {
        display: block !important;
        visibility: visible !important;
    }
    .active-indicator {
        font-weight: bold;
        /* text-decoration: underline; */
    }
    .inactive-indicator:hover {
        color: #777 !important;
    }
    .inactive-indicator {
        color: #777 !important;
        padding-top: 5px;
    }

    /* Ensure carousel wrapper doesn't overlap navigation */
    .right-carousel-wrapper {
        position: absolute;
        top: 0;
        padding-bottom: 96px !important;
        width: 470px;
        right: 0;
        margin-top: 119px;
    }
    .testimonial-mark-img {
        position: absolute;
        top: 5%;
    }
    /* =====================================================================testimonial section end ==============================================================*/

    /* =====================================================================contact-us section start ==============================================================*/
    .contact-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
    }
    .contact-us-title {
        font-size: 65px;
        font-weight: 600;
        line-height: 80px;
        text-align: center;
    }
    .small-star {
        position: absolute;
        top: 5%;
    }
    .contact-mark {
        position: absolute;
        top: 10%;
        right: 0;
    }
    .large-star {
        position: absolute;
        bottom: 5%;
        right: 2%;
    }
    .contact-us-second-title {
        font-size: 33px;
        font-weight: 400px;
    }
    .contact-us-second-circle {
        padding: 20px;
        margin-bottom: 0px;
        margin-left: 329px;
    }

    /* =====================================================================contact-us section end ==============================================================*/
    /* =====================================================================articles section start ==============================================================*/
    .article-section {
        margin-left: 91px;
    }
    .article-title {
        font-size: 68px;
        font-weight: 600;
        line-height: 77px;
    }
    .article-des {
        font-size: 18px;
        line-height: 35px;
        font-weight: 400;
    }
    .article-date {
        position: absolute;
        top: 4%;
        left: 4%;
        border-radius: 5px;
    }
    .article-date > .font1 {
        font-size: 12px;
        font-weight: 600;
    }
    .article-date > .font2 {
        font-size: 8px;
        font-weight: 400;
    }
    .object-fit-cover {
        object-fit: cover;
    }

    .swiper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .swiper-slide {
        width: 400px !important;
    }

    /* Alternate image height by slide index */
    .swiper-slide:nth-child(odd) img {
        height: 500px;
    }

    .swiper-slide:nth-child(even) img {
        height: 350px;
    }

    .swiper-slide img {
        width: 100%;
        object-fit: cover;
        transition: height 0.4s ease;
    }

    .badge {
        font-size: 0.75rem;
    }

    .combined svg {
        cursor: pointer;
    }

    /* =====================================================================articles section end ==============================================================*/

    /* =====================================================================we-offer section end ==============================================================*/
    .we-offer-bg {
        position: relative;
        background: url(/uploads/offer/bg.png) no-repeat top center;
        background-size: cover;
        margin-top: 30px;
        padding-top: 98px !important;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .service-home-padding {
        padding-top: 80px;
    }
    .we-offer-title {
        font-size: 68px;
        line-height: 84px;
    }
    .we-offer-item-title {
        font-size: 20px;
        font-weight: 300;
    }
    .we-offer-image {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .we-offer-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.5s ease, color 0.5s ease,
            padding 0.5s ease;
        color: inherit;
        background-color: white;
        border-radius: 23px;
        padding: 33px 14px;
    }

    .we-offer-item:hover {
        background-color: #c7d8b7;
        color: var(--primary);
        cursor: pointer;
    }

    /* Smooth fill transition for SVG */
    .we-offer-item svg path {
        transition: fill 0.5s ease;
    }

    .we-offer-item:hover svg path {
        fill: var(--primary);
    }
    .mark-img {
        position: absolute;
        top: 28%;
    }
    .listing-part {
        background-color: var(--secondary);
        border-radius: 25px;
        color: white;
    }
    .listing-part > a {
        color: white;
    }

    .we-offer-star {
        position: absolute;
        top: -5%;
        left: 25%;
    }
    .we-offer-large-star {
        position: absolute;
        bottom: 5%;
        right: 24%;
    }
    .we-offer-brain {
        position: absolute;
        top: 10%;
        right: 5%;
    }
    .we-offer-mark {
        position: absolute;
        bottom: 22%;
        right: 0%;
    }
    /* =====================================================================we-offer section end ==============================================================*/

    /* =====================================================================aboutpage section end ==============================================================*/
    .about-us-banner {
        padding-top: 50px;
    }
    .about-us-banner-title {
        font-size: 82px;
        font-weight: 700;
        line-height: 87px;
    }
    .about-us-banner-star {
        position: absolute;
        bottom: 27%;
        left: 4%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-arrow {
        position: absolute;
        bottom: 12%;
        left: 6%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-brain {
        position: absolute;
        bottom: 27%;
        right: 4%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-health {
        position: absolute;
        bottom: 12%;
        right: 6%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-mark {
        position: absolute;
        top: 36%;
        right: 9%;
        width: 40%;
        z-index: -1;
    }
    .about-us-login-mark {
        position: absolute;
        top: 36%;
        right: 15%;
        width: 40%;
        z-index: -1;
    }
    /* login title  */
    .login-title {
        font-size: 70px;
        font-weight: 700;
    }
    .auth-img-part {
        position: absolute;
        top: -90px;
        left: 50%;
        transform: translateX(-50%);
    }
    .auth-image {
        height: 150px;
        width: 150px;
    }

    .about-us-page-title {
        font-size: 45px;
        font-weight: 600;
        line-height: 52px;
    }

    /* =====================================================================healing section end ==============================================================*/
    .healing-title {
        font-size: 53px;
        line-height: 79px;
        font-weight: 600;
    }
    .hashtags {
        border-radius: 15px;
        background-color: #c7d8b7;
        padding: 25px;
    }
    .hastags-title {
        font-size: 16px;
    }
    .discount-card {
        border-radius: 13px;
        color: white;
        padding: 9px 14px;
    }
    .discount-image {
        width: 20px;
        height: 20px;
        margin-bottom: 7px;
    }
    .discount-des {
        font-size: 10px;
    }

    /* =====================================================================healing section end ==============================================================*/

    /* =====================================================================aboutpage section end ==============================================================*/
    /* =====================================================================specialists section start ==============================================================*/

    .specialists-card-img {
        border-radius: 25px;
    }

    /* start here  */
    .specialists-card {
        position: relative;
        overflow: hidden;
        background-color: white;
        border-radius: 25px;
    }

    .bg-default-img,
    .bg-color-img {
        position: absolute;
        top: 16px;
        right: 5%;
        width: 76px;
        transition: opacity 0.3s ease-in-out;
    }

    /* Show default image initially */
    .bg-default-img {
        opacity: 1;
        z-index: 1;
    }

    /* Hide color image initially */
    .bg-color-img {
        opacity: 0;
        z-index: 2;
    }

    /* On hover, hide default and show color */
    .specialists-card:hover .bg-default-img {
        opacity: 0;
    }

    .specialists-card:hover .bg-color-img {
        opacity: 1;
    }

    .specialists-name {
        font-size: 19px;
        font-weight: 500;
    }
    .specialists-designation {
        font-size: 15px;
        font-weight: 400;
    }
    .specialists-consult {
        font-size: 15px;
        font-weight: 500;
    }

    /* single specialist start  */
    .single-specialist-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 35px;
    }
    .single-specialist-designation {
        font-weight: 500;
        font-size: 26px;
    }
    .single-specialist-large-star {
        position: absolute;
        top: 16%;
        left: -12%;
        width: 35px;
    }
    .single-specialist-star {
        position: absolute;
        bottom: 25%;
        right: 50%;
    }
    .single-specialist-mark {
        position: absolute;
        bottom: 15%;
        right: 0%;
    }
    .experience-year {
        position: absolute;
        bottom: 26%;
        right: -11%;
    }
    /* single specialist end  */
    /* blog deails  */

    .blog-details-star {
        position: absolute;
        top: 30%;
        right: -10%;
    }
    .blog-details-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 0px;
    }
    /* =====================================================================specialists section end ==============================================================*/
}

/* Large devices (≤991px) */
@media (max-width: 991px) {
    .specialist-image {
        max-height: 220px !important;
    }
    .slider-heading {
        top: 25%;
    }

    .slider-h2 {
        font-size: 36px;
    }

    .book-session {
        font-size: 13px;
        padding: 6px 12px;
    }
    .statistic-title-h2 {
        font-size: 18px;
        line-height: 20px;
    }
    .statistic-des-p {
        font-size: 11px;
        line-height: 8px;
    }
    .statistic-card-image {
        width: 45px;
    }
    /* ===============================================================about us section start  ================================*/
    .about-us-padding {
        padding-top: 80px;
    }
    .about-tag {
        font-size: 6px !important;
        border-radius: 25px !important;
    }

    .about-title {
        font-size: 40px;
        font-weight: 600;
        line-height: 50px;
    }
    .about-des {
        display: flex;
        justify-content: end;
        align-items: center;
        padding-top: 10px;
    }
    .about-image {
        height: 300px;
        width: 200px;
        border-radius: 25px;
    }

    .first-section > h4 {
        font-size: 16px;
    }
    .first-section > p {
        font-size: 14px;
    }
    .about-last-image {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    /* ==========================================================about us section end ============================= */

    /* ==========================================================specialist section start  =================================*/
    .therapist-collage {
        display: grid;
        grid-gap: 1.5rem;
        grid-template-columns: 352px 205px;
        margin-left: auto;
        margin-top: 20px;
        justify-content: center;
    }
    .top-icon {
        position: absolute;
        top: 11% !important;
        right: 67% !important;
    }
    .bottom-icon {
        position: absolute;
        bottom: 5% !important;
        right: 24% !important;
    }
    .star-icon {
        position: absolute;
        bottom: 4% !important;
    }
    .mark-img {
        position: absolute;
        top: 28%;
    }
    /* ================================================================specialist section end  =======================================*/
    /* =================================================================why-choose-us section start =========================================*/
    .why-choose-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
        border: 1px solid white;
        background-color: white;
    }
    .why-choose-title {
        font-size: 70px;
        font-weight: 600;
        line-height: 100px;
    }
    .why-choose-img {
        border-radius: 25px;
    }
    .why-choose-h5 {
        font-size: 28px;
        font-weight: 400;
        line-height: 40px;
    }
    .why-choose-des {
        font-size: 20px;
        font-weight: 300;
        line-height: 30px;
        color: #282c28;
        margin-right: 38px;
    }
    .why-choose-mark-img {
        position: absolute;
        top: 22%;
        right: 0;
        z-index: -1;
    }
    /* ======================================================================why-choose-us section end ==================================================*/

    /* =====================================================================testimonial section start ==============================================================*/

    .custom-carousel {
        transition: transform 0.8s ease-in-out;
        will-change: transform;
    }

    .testimonial-card {
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0.7;
        width: 220px;
        height: 120px;
        background-color: white;
        border-radius: 25px;
    }

    .testimonial-card.active {
        transform: scale(1.05);
        opacity: 1;
        width: 350px;
        height: 180px;
        border-radius: 25px;
        background-color: white;
    }

    .testimonial-title {
        font-size: 45px;
        font-weight: 600;
        line-height: 54px;
    }
    .testimonial-card-design {
        background-color: white;
        width: 141px;
        border-radius: 25px;
    }

    .testimonial-card-design:hover {
        background-color: #c7d8b7;
        width: 141px;
        border-radius: 25px;
        color: var(--secondary);
        cursor: pointer;
    }
    .testimonial-card-design > img {
        height: 20px;
        width: 20px;
    }

    .testimonial-service-title {
        font-size: 13px;
    }
    .testimonial-service-des {
        font-size: 9px !important;
    }

    .testimonial-card .main-card-inner {
        height: 120px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        opacity: 0.75;
        transform: scale(0.96);
    }

    .testimonial-card.active .main-card-inner {
        height: 240px;
        opacity: 1;
        transform: scale(0.9);
    }

    /* Make sure navigation is visible */
    #navIndicator {
        display: flex !important;
        visibility: visible !important;
    }
    #prevBtn,
    #nextBtn {
        display: block !important;
        visibility: visible !important;
    }
    .active-indicator {
        font-weight: bold;
        /* text-decoration: underline; */
    }
    .inactive-indicator:hover {
        color: #777 !important;
    }
    .inactive-indicator {
        color: #777 !important;
        padding-top: 5px;
    }

    /* Ensure carousel wrapper doesn't overlap navigation */
    .right-carousel-wrapper {
        position: absolute;
        top: 0;
        padding-bottom: 96px !important;
        width: 470px;
        right: 0;
        margin-top: 119px;
    }

    .testimonial-mark-img {
        position: absolute;
        top: 5%;
    }
    /* =====================================================================testimonial section end ==============================================================*/

    /* =====================================================================contact-us section start ==============================================================*/
    .contact-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
    }
    .contact-us-title {
        font-size: 80px;
        font-weight: 600;
        line-height: 100px;
        text-align: center;
    }
    .small-star {
        position: absolute;
        top: 5%;
    }
    .contact-mark {
        position: absolute;
        top: 10%;
        right: 0;
    }
    .large-star {
        position: absolute;
        bottom: 5%;
        right: 2%;
    }
    .contact-us-second-title {
        font-size: 26px;
        font-weight: 400px;
        margin-bottom: 4px;
    }
    .contact-us-second-circle {
        padding: 11px;
        margin-bottom: 0px;
        margin-left: 230px;
        background-color: #b2d45a;
    }
    .contact-us-second-circle > svg {
        height: 13px;
        width: 27px;
    }

    /* =====================================================================contact-us section end ==============================================================*/

    /* =====================================================================articles section start ==============================================================*/
    .article-section {
        margin-left: 300px;
    }
    .article-title {
        font-size: 70px;
        font-weight: 600;
        line-height: 50px;
    }
    .article-des {
        font-size: 18px;
        line-height: 35px;
        font-weight: 400;
    }
    .article-date {
        position: absolute;
        top: 4%;
        left: 4%;
        border-radius: 5px;
    }
    .article-date > .font1 {
        font-size: 18px;
        font-weight: 600;
    }
    .article-date > .font2 {
        font-size: 10px;
        font-weight: 400;
    }
    .blog-date > .font1 {
        font-size: 13px;
        font-weight: 600;
    }
    .blog-date > .font2 {
        font-size: 8px;
        font-weight: 400;
    }
    .object-fit-cover {
        object-fit: cover;
    }

    .swiper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .swiper-slide {
        width: 600px !important;
    }

    /* Alternate image height by slide index */
    .swiper-slide:nth-child(odd) img {
        height: 650px;
    }

    .swiper-slide:nth-child(even) img {
        height: 500px;
    }

    .swiper-slide img {
        width: 100%;
        object-fit: cover;
        transition: height 0.4s ease;
    }

    .badge {
        font-size: 0.75rem;
    }

    .combined svg {
        cursor: pointer;
    }

    /* =====================================================================articles section end ==============================================================*/
    /* =====================================================================aboutpage section end ==============================================================*/
    .about-us-banner {
        padding-top: 50px;
    }
    .about-us-banner-title {
        font-size: 82px;
        font-weight: 700;
        line-height: 87px;
    }
    .about-us-banner-star {
        position: absolute;
        bottom: 27%;
        left: 4%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-arrow {
        position: absolute;
        bottom: 7%;
        left: 6%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-brain {
        position: absolute;
        bottom: 27%;
        right: 4%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-health {
        position: absolute;
        bottom: 7%;
        right: 6%;
        width: 30px;
        height: 30px;
    }
    .about-us-banner-mark {
        position: absolute;
        top: 34%;
        right: 2%;
        width: 46%;
        z-index: -1;
    }

    .about-us-login-mark {
        position: absolute;
        top: 57%;
        right: 6%;
        width: 40%;
        z-index: -1;
    }
    /* login title  */
    .login-title {
        font-size: 50px;
        font-weight: 700;
    }
    .auth-img-part {
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
    }
    .auth-image {
        height: 100px;
        width: 100px;
    }

    /* =====================================================================we-offer section end ==============================================================*/
    .we-offer-bg {
        position: relative;
        background: url(/uploads/offer/bg.png) no-repeat top center;
        background-size: cover;
        margin-top: 30px;
        padding-top: 98px !important;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .service-home-padding {
        padding-top: 80px;
    }
    .we-offer-title {
        font-size: 68px;
        line-height: 84px;
    }
    .we-offer-item-title {
        font-size: 20px;
        font-weight: 300;
    }
    .we-offer-image {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .we-offer-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.5s ease, color 0.5s ease,
            padding 0.5s ease;
        color: inherit;
        background-color: white;
        border-radius: 23px;
        padding: 33px 14px;
    }

    .we-offer-item:hover {
        background-color: #c7d8b7;
        color: var(--primary);
        cursor: pointer;
    }

    /* Smooth fill transition for SVG */
    .we-offer-item svg path {
        transition: fill 0.5s ease;
    }

    .we-offer-item:hover svg path {
        fill: var(--primary);
    }
    .mark-img {
        position: absolute;
        top: 28%;
    }
    .listing-part {
        background-color: var(--secondary);
        border-radius: 25px;
        color: white;
    }
    .listing-part > a {
        color: white;
    }

    .we-offer-star {
        position: absolute;
        top: -5%;
        left: 25%;
    }
    .we-offer-large-star {
        position: absolute;
        bottom: 5%;
        right: 24%;
    }
    .we-offer-brain {
        position: absolute;
        top: 10%;
        right: 5%;
    }
    .we-offer-mark {
        position: absolute;
        bottom: 22%;
        right: 0%;
    }
    /* =====================================================================we-offer section end ==============================================================*/

    /* =====================================================================healing section end ==============================================================*/
    .healing-title {
        font-size: 70px;
        line-height: 90px;
        font-weight: 600;
    }
    .hashtags {
        border-radius: 15px;
        background-color: #c7d8b7;
        padding: 25px;
    }
    .hastags-title {
        font-size: 18px;
    }
    .discount-card {
        border-radius: 13px;
        color: white;
        padding: 9px 14px;
    }
    .discount-image {
        width: 20px;
        height: 20px;
        margin-bottom: 7px;
    }
    .discount-des {
        font-size: 10px;
    }

    /* =====================================================================healing section end ==============================================================*/
    /* =====================================================================aboutpage section end ==============================================================*/
    /* =====================================================================specialists section start ==============================================================*/

    .specialists-card-img {
        border-radius: 25px;
    }

    /* start here  */
    .specialists-card {
        position: relative;
        overflow: hidden;
        background-color: white;
        border-radius: 25px;
    }

    .bg-default-img,
    .bg-color-img {
        position: absolute;
        right: 7%;
        width: 61px;

        transition: opacity 0.3s ease-in-out;
    }

    /* Show default image initially */
    .bg-default-img {
        opacity: 1;
        z-index: 1;
    }

    /* Hide color image initially */
    .bg-color-img {
        opacity: 0;
        z-index: 2;
    }

    /* On hover, hide default and show color */
    .specialists-card:hover .bg-default-img {
        opacity: 0;
    }

    .specialists-card:hover .bg-color-img {
        opacity: 1;
    }

    .specialists-name {
        font-size: 17px;
        font-weight: 500;
    }
    .specialists-designation {
        font-size: 12px;
        font-weight: 400;
    }
    .specialists-consult {
        font-size: 12px;
        font-weight: 500;
    }

    /* single specialist start  */
    .single-specialist-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 35px;
        margin-top: 19px;
    }
    .single-specialist-designation {
        font-weight: 500;
        font-size: 21px;
    }
    .single-specialist-large-star {
        position: absolute;
        top: 34%;
        left: 3%;
        width: 35px;
    }
    .single-specialist-star {
        position: absolute;
        bottom: 25%;
        right: 50%;
    }
    .single-specialist-mark {
        position: absolute;
        bottom: 15%;
        right: 0%;
    }
    .experience-year {
        position: absolute;
        bottom: 32%;
        right: -11%;
        padding: 0px;
    }
    .experience-title {
        font-size: 16px;
        margin-bottom: 0;
    }
    .experience-text {
        font-size: 14px;
        margin-bottom: 6px;
    }
    /* single specialist end  */
    /* blog deails  */

    .blog-details-star {
        position: absolute;
        top: 16%;
        right: -10%;
    }
    .blog-details-large-star {
        position: absolute;
        top: 1%;
        left: -14%;
        width: 25px;
    }
    .blog-details-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 0px;
    }
    /* =====================================================================specialists section end ==============================================================*/
}

/* Medium devices (≤767px) */
@media (max-width: 767px) {
    .specialist-image {
        max-height: 350px !important;
    }
    .slider-heading {
        top: 30%;
    }

    .slider-h2 {
        font-size: 24px;
    }

    .book-session {
        font-size: 11px;
        padding: 4px 10px;
    }
    .statistic-card-image {
        width: 25px;
    }
    /* =========================================================================about us section start  ===================================================*/
    .about-us-padding {
        padding-top: 80px;
    }
    .about-tag {
        font-size: 10px;
        border-radius: 25px !important;
    }

    .about-title {
        font-size: 32px;
        font-weight: 600;
        line-height: 60px;
    }
    .about-des {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
    }
    .about-image {
        height: 200px;
        width: 200px;
        border-radius: 25px;
    }
    .first-section > h4 {
        font-size: 16px;
    }
    .first-section > p {
        font-size: 14px;
    }
    .about-last-image {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    /* ===================================================================================about us section end  ===================================================*/
    /* =====================================================================================specialist  section start ============================================= */
    .top-icon {
        position: absolute;
        top: 15%;
        right: 28%;
    }
    .bottom-icon {
        position: absolute;
        bottom: 10%;
        right: 7%;
    }
    .star-icon {
        position: absolute;
        bottom: 10%;
    }
    .mark-img {
        position: absolute;
        top: 28%;
    }
    /* ======================================================================================specialist section end ================================== */
    /* =======================================================================================why-choose-us section start ========================*/
    .why-choose-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
        border: 1px solid white;
        background-color: white;
    }
    .why-choose-title {
        font-size: 70px;
        font-weight: 600;
        line-height: 100px;
    }
    .why-choose-img {
        border-radius: 25px;
    }
    .why-choose-h5 {
        font-size: 28px;
        font-weight: 400;
        line-height: 40px;
    }
    .why-choose-des {
        font-size: 20px;
        font-weight: 300;
        line-height: 30px;
        color: #282c28;
        margin-right: 38px;
    }
    .why-choose-mark-img {
        position: absolute;
        top: 22%;
        right: 0;
        z-index: -1;
    }
    /* =============================================================================================why-choose-us section end ============================================*/

    /* =====================================================================testimonial section start ==============================================================*/

    .custom-carousel {
        transition: transform 0.8s ease-in-out;
        will-change: transform;
    }

    .testimonial-card {
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0.7;
        width: 220px;
        height: 120px;
        background-color: white;
        border-radius: 25px;
    }

    .testimonial-card.active {
        transform: scale(1.05);
        opacity: 1;
        width: 350px;
        height: 180px;
        border-radius: 25px;
        background-color: white;
    }

    .testimonial-title {
        font-size: 45px;
        font-weight: 600;
        line-height: 54px;
    }
    .testimonial-card-design {
        background-color: white;
        width: 141px;
        border-radius: 25px;
    }

    .testimonial-card-design:hover {
        background-color: #c7d8b7;
        width: 141px;
        border-radius: 25px;
        color: var(--secondary);
        cursor: pointer;
    }
    .testimonial-card-design > img {
        height: 20px;
        width: 20px;
    }

    .testimonial-service-title {
        font-size: 13px;
    }
    .testimonial-service-des {
        font-size: 9px !important;
    }

    .testimonial-card .main-card-inner {
        height: 120px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        opacity: 0.75;
        transform: scale(0.96);
    }

    .testimonial-card.active .main-card-inner {
        height: 240px;
        opacity: 1;
        transform: scale(0.9);
    }

    /* Make sure navigation is visible */
    #navIndicator {
        display: flex !important;
        visibility: visible !important;
    }
    #prevBtn,
    #nextBtn {
        display: block !important;
        visibility: visible !important;
    }
    .active-indicator {
        font-weight: bold;
        /* text-decoration: underline; */
    }
    .inactive-indicator:hover {
        color: #777 !important;
    }
    .inactive-indicator {
        color: #777 !important;
        padding-top: 5px;
    }

    /* Ensure carousel wrapper doesn't overlap navigation */
    .right-carousel-wrapper {
        position: absolute;
        top: 0;
        padding-bottom: 96px !important;
        width: 470px;
        right: 0;
        margin-top: 119px;
    }

    .testimonial-mark-img {
        position: absolute;
        top: 5%;
    }
    /* =====================================================================testimonial section end ==============================================================*/

    /* =====================================================================contact-us section start ==============================================================*/
    .contact-us {
        border-radius: 50px;
        padding-top: 45px;
        padding-bottom: 45px;
        /* padding: 45px 46px; */
        /* margin: 40px !important; */
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
    }
    .contact-us-title {
        font-size: 80px;
        font-weight: 600;
        line-height: 100px;
        text-align: center;
    }
    .small-star {
        position: absolute;
        top: 5%;
    }
    .contact-mark {
        position: absolute;
        top: 10%;
        right: 0;
    }
    .large-star {
        position: absolute;
        bottom: 5%;
        right: 2%;
    }
    .contact-us-second-title {
        font-size: 70px;
        font-weight: 400px;
    }
    .contact-us-second-circle {
        padding: 42px;
        margin-bottom: 0px;
        margin-left: 500px;
        background-color: #b2d45a;
    }

    /* =====================================================================contact-us section end ==============================================================*/

    /* =====================================================================articles section start ==============================================================*/
    .article-section {
        margin-left: 300px;
    }
    .article-title {
        font-size: 30px;
        font-weight: 600;
        line-height: 50px;
    }
    .article-des {
        font-size: 24px;
        line-height: 35px;
        font-weight: 400;
    }
    .article-date {
        position: absolute;
        top: 4%;
        left: 4%;
        border-radius: 5px;
    }
    .article-date > .font1 {
        font-size: 16px;
        font-weight: 600;
    }
    .article-date > .font2 {
        font-size: 10px;
        font-weight: 400;
    }

    .blog-date > .font1 {
        font-size: 12px;
        font-weight: 600;
    }
    .blog-date > .font2 {
        font-size: 7px;
        font-weight: 400;
    }
    .object-fit-cover {
        object-fit: cover;
    }

    .swiper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .swiper-slide {
        width: 600px !important;
    }

    /* Alternate image height by slide index */
    .swiper-slide:nth-child(odd) img {
        height: 650px;
    }

    .swiper-slide:nth-child(even) img {
        height: 500px;
    }

    .swiper-slide img {
        width: 100%;
        object-fit: cover;
        transition: height 0.4s ease;
    }

    .badge {
        font-size: 0.75rem;
    }

    .combined svg {
        cursor: pointer;
    }

    /* =====================================================================we-offer section end ==============================================================*/
    .we-offer-bg {
        position: relative;
        background: url(/uploads/offer/bg.png) no-repeat top center;
        background-size: cover;
        margin-top: 30px;
        padding-top: 98px !important;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .service-home-padding {
        padding-top: 80px;
    }
    .we-offer-title {
        font-size: 68px;
        line-height: 84px;
    }
    .we-offer-item-title {
        font-size: 20px;
        font-weight: 300;
    }
    .we-offer-image {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .we-offer-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.5s ease, color 0.5s ease,
            padding 0.5s ease;
        color: inherit;
        background-color: white;
        border-radius: 23px;
        padding: 33px 14px;
    }

    .we-offer-item:hover {
        background-color: #c7d8b7;
        color: var(--primary);
        cursor: pointer;
    }

    /* Smooth fill transition for SVG */
    .we-offer-item svg path {
        transition: fill 0.5s ease;
    }

    .we-offer-item:hover svg path {
        fill: var(--primary);
    }
    .mark-img {
        position: absolute;
        top: 28%;
    }
    .listing-part {
        background-color: var(--secondary);
        border-radius: 25px;
        color: white;
    }
    .listing-part > a {
        color: white;
    }

    .we-offer-star {
        position: absolute;
        top: -5%;
        left: 25%;
    }
    .we-offer-large-star {
        position: absolute;
        bottom: 5%;
        right: 24%;
    }
    .we-offer-brain {
        position: absolute;
        top: 10%;
        right: 5%;
    }
    .we-offer-mark {
        position: absolute;
        bottom: 22%;
        right: 0%;
    }
    /* =====================================================================we-offer section end ==============================================================*/
    /* =====================================================================healing section end ==============================================================*/
    .healing-title {
        font-size: 70px;
        line-height: 90px;
        font-weight: 600;
    }
    .hashtags {
        border-radius: 15px;
        background-color: #c7d8b7;
        padding: 25px;
    }
    .hastags-title {
        font-size: 18px;
    }
    .discount-card {
        border-radius: 13px;
        color: white;
        padding: 9px 14px;
    }
    .discount-image {
        width: 20px;
        height: 20px;
        margin-bottom: 7px;
    }
    .discount-des {
        font-size: 10px;
    }

    /* =====================================================================healing section end ==============================================================*/
    /* =====================================================================articles section end ==============================================================*/
    /* =====================================================================specialists section start ==============================================================*/

    .specialists-card-img {
        border-radius: 25px;
    }

    /* start here  */
    .specialists-card {
        position: relative;
        overflow: hidden;
        background-color: white;
        border-radius: 25px;
    }

    .bg-default-img,
    .bg-color-img {
        position: absolute;
        top: 16px;
        right: 3%;
        width: 98px;

        transition: opacity 0.3s ease-in-out;
    }

    /* Show default image initially */
    .bg-default-img {
        opacity: 1;
        z-index: 1;
    }

    /* Hide color image initially */
    .bg-color-img {
        opacity: 0;
        z-index: 2;
    }

    /* On hover, hide default and show color */
    .specialists-card:hover .bg-default-img {
        opacity: 0;
    }

    .specialists-card:hover .bg-color-img {
        opacity: 1;
    }

    .specialists-name {
        font-size: 24px;
        font-weight: 500;
    }
    .specialists-designation {
        font-size: 16px;
        font-weight: 400;
    }
    .specialists-consult {
        font-size: 16px;
        font-weight: 500;
    }

    /* single specialist start  */
    .single-specialist-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 35px;
    }
    .single-specialist-designation {
        font-weight: 500;
        font-size: 26px;
    }
    .single-specialist-large-star {
        position: absolute;
        top: 28%;
        left: 10%;
        width: 35px;
    }
    .single-specialist-star {
        position: absolute;
        bottom: 25%;
        right: 50%;
    }
    .single-specialist-mark {
        position: absolute;
        bottom: 15%;
        right: 0%;
    }
    .experience-year {
        position: absolute;
        bottom: 26%;
        right: -11%;
    }
    /* single specialist end  */
    /* blog deails  */

    .blog-details-star {
        position: absolute;
        top: 50%;
        right: -10%;
    }
    .blog-details-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 0px;
    }
    /* =====================================================================specialists section end ==============================================================*/
}

/* Small devices (≤575px) */
@media (max-width: 575px) {
    .navbar-nav .nav-item:not(:last-child) .nav-link::after {
        content: " ";
        margin-left: 40px;
        color: var(--primary);
    }
    .specialist-image {
        max-height: 350px !important;
    }
    /* custom-bg  */
    .custom-bg {
        position: relative;
        background: url(/uploads/about_us/bg.png) no-repeat top center;
        background-size: cover;
        margin-top: 30px;
        padding-top: 29px !important;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .slider-heading {
        top: 25%;
    }

    .slider-h2 {
        font-size: 52px;
    }

    .book-session {
        font-size: 15px;
        padding: 4px 11px;
    }
    .statistic-card-image {
        width: 45px;
    }
    /* ================================================================================about us section start ============================================ */
    .about-us-padding {
        margin-top: 357px;
        padding-top: 40px;
    }
    .about-tag {
        font-size: 14px !important;
        border-radius: 25px !important;
    }
    .about-title {
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        line-height: 34px;
    }
    .about-des {
        display: flex;
        justify-content: end;
        align-items: center;
        padding-top: 10px;
        text-align: justify;
        padding-right: 20px;
    }
    .about-image {
        height: 100%;
        width: 100%;
        border-radius: 25px;
        margin-top: 14px;
    }
    .first-section > h4 {
        font-size: 16px;
    }
    .first-section > p {
        font-size: 14px;
    }
    .about-last-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* statistic  */
    .statistic-title-h2 {
        font-size: 17px;
        line-height: 20px;
    }
    .statistic-des-p {
        font-size: 16px;
        line-height: 23px;
    }
    .statistic-card-image {
        width: 40px;
    }
    /* =======================================================================================about us section end  ===============================================*/

    /*========================================================================================== specialist part start ================================================= */
    .specialist-section {
        padding-top: 30px;
        padding-bottom: 30px;
        /* margin: 20px 15px !important; */
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 35px;
        text-align: center;
    }
    .mobile-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .specialist-title {
        font-size: 40px;
    }

    .specialist-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .btn-learn {
        width: 100%;
        margin-top: 15px;
        padding: 10px;
    }

    .therapist-collage {
        grid-template-columns: 65% 35%;
        grid-gap: 0.8rem;
        justify-content: center;
        margin: 20px auto 0;
        max-width: 100%;
    }

    .therapist-collage .left-column {
        grid-template-columns: 45% 55%; /* Adjust left column grid */
        grid-gap: 0.8rem;
    }

    .therapist-collage .left-column > img:first-of-type {
        width: 100%;
        height: auto;
        max-height: 194px;
        max-width: 165px;
        margin-top: 40px;
        margin-right: 11px;
        border-radius: 100px 15px 15px;
    }

    .therapist-collage .left-column > img:nth-child(2) {
        width: 100%;
        height: auto;
        max-height: 94px;
        max-width: 87px;
        border-radius: 15px 15px 15px 50px;
    }

    .therapist-collage .left-column > img:nth-child(3) {
        width: 100%;
        height: auto;
        max-height: 86px;
        max-width: 96px;
        margin-right: 10px;
        border-radius: 15px 15px 50px;
    }

    .therapist-collage .right-column > img:first-of-type {
        width: 100%;
        /* height: auto; */
        max-height: 60px;
        max-width: 46px;
        margin-right: 44px;
        margin-bottom: 13px;
        border-radius: 50px 15px 15px;
    }

    .therapist-collage .right-column > img:nth-child(2) {
        width: 100%;
        /* height: auto; */
        max-height: 89px;
        max-width: 65px;
        margin-bottom: 12px;
        margin-right: 37px;
        border-radius: 15px 50px 15px 15px;
    }

    .therapist-collage .right-column > img:nth-child(3) {
        width: 100%;
        /* height: auto; */
        max-height: 95px;
        max-width: 96px;
        margin-left: -4px;
        border-radius: 15px 50px 15px 15px;
    }

    /* Adjust content section for mobile */
    .col-lg-6.z-1 {
        margin-bottom: 20px;
    }

    .specialist-title {
        font-size: 28px;
    }
    .top-icon {
        position: absolute;
        top: 10% !important;
        right: 80% !important;
        max-height: 48px;
    }
    .bottom-icon {
        position: absolute;
        bottom: 7% !important;
        right: 19% !important;
        max-width: 45px;
    }
    .star-icon {
        position: absolute;
        bottom: 4% !important;
        right: 43%;
        max-width: 24px;
    }
    /* ===============================================================================================specialist part end =============================================== */
    /* ================================================================================================service-home part end ================================================ */
    .service-item-title {
        font-size: 17px;
        font-weight: 300;
    }
    .service-home-title {
        font-size: 36px;
        line-height: 43px;
    }
    .mark-img {
        position: absolute;
        top: 21%;
    }
    .service-home-bg {
        margin-top: 49px;
        padding-top: 12px;
        padding-bottom: 37px;
    }
    .second-custom-bg {
        margin-top: 49px;
        padding-top: 12px;
        padding-bottom: 37px;
    }

    /* ==================================================================================================service-home part end ======================================= */

    /* =============================================================================================why-choose-us section start ================================================*/
    .why-choose-us {
        padding-top: 30px;
        padding-bottom: 30px;
        /* margin: 20px 15px !important; */
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 35px;
        text-align: center;
        border: 1px solid white;
        background-color: white;
    }

    .why-choose-title {
        font-size: 22px;
        font-weight: 600;
        line-height: 31px;
    }
    .why-choose-img {
        border-radius: 25px;
    }
    .why-choose-h5 {
        font-size: 21px;
        font-weight: 400;
        line-height: 27px;
        margin-top: 20px;
    }
    .why-choose-des {
        font-size: 17px;
        font-weight: 300;
        line-height: 30px;
        color: #282c28;
        margin-right: 0px !important;
    }
    .why-choose-mark-img {
        position: absolute;
        top: 43%;
        right: 0;
        width: 100%;
        z-index: -1;
    }
    /* ===========================================================================================why-choose-us section end=============================================== */

    /* =====================================================================testimonial section start ==============================================================*/

    .custom-carousel {
        transition: transform 0.8s ease-in-out;
        will-change: transform;
    }
    .testimonial-bg {
        position: relative;
        background: url(/uploads/about_us/bg.png) no-repeat top center;
        background-size: cover;
        margin-top: 30px;
        padding-top: 29px !important;
        padding-bottom: 60px;
        overflow: hidden;
    }

    /* custom-bg  */
    .custom-bg {
        position: relative;
        background: url(/uploads/about_us/bg.png) no-repeat top center;
        background-size: cover;
        margin-top: 30px;
        padding-top: 29px !important;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .testimonial-card {
        transition: transform 0.8s ease, opacity 0.8s ease;
        opacity: 0.7;
        width: 194px;
        height: 120px;
        background-color: white;
        border-radius: 25px;
    }

    .testimonial-card.active {
        transform: scale(1);
        opacity: 1;
        width: 338px;
        height: 155px;
        border-radius: 25px;
        background-color: white;
    }

    .testimonial-title {
        font-size: 30px;
        font-weight: 600;
        line-height: 42px;
    }
    .testimonial-card-design {
        background-color: white;
        width: 223px;
        border-radius: 25px;
    }

    .testimonial-card-design:hover {
        background-color: #c7d8b7;
        width: 223px;
        border-radius: 25px;
        color: var(--secondary);
        cursor: pointer;
    }
    .testimonial-card-design > img {
        height: 25px;
        width: 25px;
    }

    .testimonial-service-title {
        font-size: 15px;
    }
    .testimonial-service-des {
        font-size: 12px !important;
    }

    .testimonial-card .main-card-inner {
        height: 120px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        opacity: 0.75;
        transform: scale(0.96);
    }

    .testimonial-card.active .main-card-inner {
        height: 240px;
        opacity: 1;
        transform: scale(0.9);
    }

    /* Make sure navigation is visible */
    #navIndicator {
        display: flex !important;
        visibility: visible !important;
    }
    #prevBtn,
    #nextBtn {
        display: block !important;
        visibility: visible !important;
    }
    .active-indicator {
        font-weight: bold;
        /* text-decoration: underline; */
    }
    .inactive-indicator:hover {
        color: #777 !important;
    }
    .inactive-indicator {
        color: #777 !important;
        padding-top: 5px;
    }
    .testminonial-main {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* Ensure carousel wrapper doesn't overlap navigation */
    .right-carousel-wrapper {
        position: relative;
        bottom: 0;
        padding-bottom: 88px !important;
        margin-top: 0px !important;
        width: 100%;
        right: 0;
    }

    .testimonial-mark-img {
        position: absolute;
        top: 5%;
        width: 59%;
    }
    /* =====================================================================testimonial section end ==============================================================*/
    /* =====================================================================contact-us section start ==============================================================*/
    /* Add to your CSS file or inside <style> tag */

    .contact-us {
        padding-top: 30px;
        padding-bottom: 30px;
        /* margin: 20px 15px !important; */
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 35px;
        text-align: center;
    }
    .contact-us-title {
        font-size: 33px;
        font-weight: 600;
        line-height: 41px;
        text-align: center;
    }
    .small-star {
        position: absolute;
        top: 5%;
        width: 10px;
    }
    .contact-mark {
        position: absolute;
        top: 31%;
        right: 0;
        width: 100%;
    }
    .large-star {
        position: absolute;
        bottom: 5%;
        right: 6%;
        width: 20px;
    }
    .contact-us-second-title {
        font-size: 12px;
        font-weight: 400px;
        margin-bottom: 0px;
    }
    .contact-us-second-circle {
        padding: 5px;
        margin-bottom: 0px;
        margin-left: 106px;
        background-color: #b2d45a;
    }
    .contact-us-second-circle > svg {
        height: 16px;
        width: 22px;
    }

    /* =====================================================================contact-us section end ==============================================================*/

    /* =====================================================================articles section start ==============================================================*/
    .article-section {
        margin-left: 0px;
    }
    .article-title {
        font-size: 30px;
        font-weight: 600;
        line-height: 50px;
    }
    .article-des {
        font-size: 24px;
        line-height: 35px;
        font-weight: 400;
    }
    .article-date {
        position: absolute;
        top: 4%;
        left: 4%;
        border-radius: 5px;
    }
    .article-date > .font1 {
        font-size: 16px;
        font-weight: 600;
    }
    .article-date > .font2 {
        font-size: 10px;
        font-weight: 400;
    }

    .blog-date > .font1 {
        font-size: 12px;
        font-weight: 600;
    }
    .blog-date > .font2 {
        font-size: 7px;
        font-weight: 400;
    }
    .object-fit-cover {
        object-fit: cover;
    }

    .swiper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .swiper-slide {
        width: 200px !important;
    }

    /* Alternate image height by slide index */
    .swiper-slide:nth-child(odd) img {
        height: 300px;
    }

    .swiper-slide:nth-child(even) img {
        height: 190px;
    }

    .swiper-slide img {
        width: 100%;
        object-fit: cover;
        transition: height 0.4s ease;
    }

    .badge {
        font-size: 0.75rem;
    }

    .combined svg {
        cursor: pointer;
    }

    /* =====================================================================articles section end ==============================================================*/
    /* =====================================================================aboutpage section end ==============================================================*/
    .about-us-banner {
        padding-top: 50px;
    }
    .about-us-banner-title {
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
    }
    .about-us-banner-star {
        position: absolute;
        bottom: 22%;
        left: 4%;
        width: 20px;
        height: 20px;
    }
    .about-us-banner-arrow {
        position: absolute;
        bottom: 6%;
        left: 11%;
        width: 20px;
        height: 20px;
    }
    .about-us-banner-brain {
        position: absolute;
        bottom: 20%;
        right: 4%;
        width: 20px;
        height: 20px;
    }
    .about-us-banner-health {
        position: absolute;
        bottom: 5%;
        right: 11%;
        width: 20px;
        height: 20px;
    }
    .about-us-banner-mark {
        position: absolute;
        top: 24%;
        right: -25%;
        width: 73%;
        z-index: -1;
    }

    .about-us-login-mark {
        position: absolute;
        top: 77%;
        right: -12%;
        width: 60%;
        z-index: -1;
    }
    /* login title  */
    .login-title {
        font-size: 23px;
        font-weight: 700;
    }
    .auth-img-part {
        position: absolute;
        top: -46px;
        left: 50%;
        transform: translateX(-50%);
    }
    .auth-image {
        height: 80px;
        width: 80px;
    }

    .about-us-page-title {
        font-size: 36px;
        font-weight: 600;
        line-height: 43px;
    }

    /* =====================================================================we-offer section end ==============================================================*/
    .we-offer-bg {
        position: relative;
        background: url(/uploads/offer/bg.png) no-repeat top center;
        background-size: cover;
        margin-top: 30px;
        padding-top: 98px !important;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .service-home-padding {
        padding-top: 80px;
    }
    .we-offer-title {
        font-size: 38px;
        line-height: 50px;
    }
    .we-offer-item-title {
        font-size: 20px;
        font-weight: 300;
    }
    .we-offer-image {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .we-offer-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.5s ease, color 0.5s ease,
            padding 0.5s ease;
        color: inherit;
        background-color: white;
        border-radius: 15px;
        padding: 19px 14px;
    }

    .we-offer-item:hover {
        background-color: #c7d8b7;
        color: var(--primary);
        cursor: pointer;
    }

    /* Smooth fill transition for SVG */
    .we-offer-item svg path {
        transition: fill 0.5s ease;
    }

    .we-offer-item:hover svg path {
        fill: var(--primary);
    }
    .mark-img {
        position: absolute;
        top: 28%;
    }
    .listing-part {
        background-color: var(--secondary);
        border-radius: 25px;
        color: white;
    }

    .about-right-content {
        width: 95% !important;
        margin: 11px;
    }
    .listing-part > a {
        color: white;
    }

    .we-offer-star {
        position: absolute;
        top: -12%;
        left: 5%;
        width: 20px;
    }
    .we-offer-large-star {
        position: absolute;
        bottom: 5%;
        right: 10%;
        width: 25px;
    }
    .we-offer-brain {
        position: absolute;
        top: 10%;
        right: 5%;
        width: 70px;
    }
    .we-offer-mark {
        position: absolute;
        bottom: 22%;
        right: 0%;
    }
    /* =====================================================================we-offer section end ==============================================================*/
    /* =====================================================================healing section end ==============================================================*/
    .healing-title {
        font-size: 36px;
        line-height: 56px;
        font-weight: 600;
    }
    .hashtags {
        border-radius: 15px;
        background-color: #c7d8b7;
        padding: 25px;
    }
    .hastags-title {
        font-size: 16px;
    }
    .discount-card {
        border-radius: 13px;
        color: white;
        padding: 9px 14px;
    }
    .discount-image {
        width: 20px;
        height: 20px;
        margin-bottom: 7px;
    }
    .discount-des {
        font-size: 10px;
    }

    /* =====================================================================healing section end ==============================================================*/
    /* =====================================================================aboutpage section end ==============================================================*/
    /* =====================================================================specialists section start ==============================================================*/

    .specialists-card-img {
        border-radius: 25px;
    }

    /* start here  */
    .specialists-card {
        position: relative;
        overflow: hidden;
        background-color: white;
        border-radius: 25px;
    }

    .bg-default-img,
    .bg-color-img {
        position: absolute;
        top: 16px;
        right: 3%;
        width: 98px;

        transition: opacity 0.3s ease-in-out;
    }

    /* Show default image initially */
    .bg-default-img {
        opacity: 1;
        z-index: 1;
    }

    /* Hide color image initially */
    .bg-color-img {
        opacity: 0;
        z-index: 2;
    }

    /* On hover, hide default and show color */
    .specialists-card:hover .bg-default-img {
        opacity: 0;
    }

    .specialists-card:hover .bg-color-img {
        opacity: 1;
    }

    .specialists-name {
        font-size: 24px;
        font-weight: 500;
    }
    .specialists-designation {
        font-size: 16px;
        font-weight: 400;
    }
    .specialists-consult {
        font-size: 16px;
        font-weight: 500;
    }

    /* single specialist start  */
    .single-specialist-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 35px;
        margin-top: 35px;
    }
    .single-specialist-designation {
        font-weight: 500;
        font-size: 20px;
    }
    .single-specialist-large-star {
        position: absolute;
        top: -30%;
        left: 1%;
        width: 26px;
    }
    .single-specialist-star {
        position: absolute;
        bottom: 1%;
        right: 2%;
    }
    .single-specialist-mark {
        position: absolute;
        bottom: 15%;
        right: 0%;
    }
    .experience-year {
        position: absolute;
        bottom: 26%;
        right: 27%;
    }
    .experience-title {
        font-size: 32px;
        margin-bottom: 0;
    }
    .experience-text {
        font-size: 17px;
        margin-bottom: 11px;
    }

    /* single specialist end  */
    /* blog deails  */

    .blog-details-star {
        position: absolute;
        top: 50%;
        right: -10%;
    }
    .blog-details-title {
        color: var(--primary);
        font-weight: 600;
        font-size: 50px;
        margin-top: 0px;
    }

    /* Prevent extra scroll due to padding/margins */
    .swiper.myArticleSwiper {
        overflow: hidden;
        padding-right: 0 !important;
    }

    .swiper-wrapper {
        margin-right: 0 !important;
    }

    .swiper-slide {
        width: calc(100% - 40px); /* or 85%, based on padding */
        max-width: 320px;
    }
    /* =====================================================================specialists section end ==============================================================*/

    .bottom-fixed {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
    }
    .book-now-bottom {
        display: inline-flex;
        align-items: center;
        padding: 2px 3px;
        border: 2px solid #1b4020;
        border-radius: 50px;
        background-color: transparent;
        color: #1b4020;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }
}
