/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Prompt", sans-serif;
    --body-font: "Inter", sans-serif;
    /* ========================= Theme Color Start ============================= */
    /* Base Color */
    --base-h: 37;
    --base-s: 96%;
    --base-l: 57%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
    /* ========================= Theme Color End ============================= */

    /* ========================= Color Variables Start =========================== */
    /* White Color */
    --white: 0 0% 100%;
    /* Black Color */
    --black: 0 0% 0%;
    --heading-color: 0 0% 13%;
    /* Body Color */
    --body-color: 0 0% 46%;
    --body-color-two: 0 0% 67%;
    --body-color-three: 0 0% 51%;
    --body-color-four: 0 0% 36%;
    --body-color-five: 0 0% 56%;
    /*Border Color */
    --border-color: 0 0% 85%;
    /* Section Background */
    --section-bg: 0 0% 98%;
    --section-bg-two: 0 0% 20%;
    --section-bg-four: 0 0% 97%;
    /* Box Shadow */
    --box-shadow: -6px 5px 27px -8px hsl(var(--dark)/.10);
    --box-shadow-two: 0px 0px 18px 0px hsl(var(--dark)/.2);
    --box-shadow-three: 0px 0px 30px 0px hsl(var(--black)/.05);
    --box-shadow-four: 0px 0px 10px 0px hsl(var(--black)/.05);
    --box-shadow-five: 0px 0px 0px 0px hsl(var(--black)/.25);
    /* ============================== Bootstrap Modifier Start ============================== */
    /* Primary Color */
    --primary-h: 230;
    --primary-s: 90%;
    --primary-l: 45%;
    --primary: var(--primary-h) var(--primary-s) var(--primary-l);
    --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
    --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
    --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
    --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
    --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
    --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
    --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
    --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
    --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
    --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
    /* Secondary Color */
    --secondary-h: 208;
    --secondary-s: 7%;
    --secondary-l: 46%;
    --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
    --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
    --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
    --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
    --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
    --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
    --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
    --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
    --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
    --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
    --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
    /* Success Color */
    --success-h: 147;
    --success-s: 46%;
    --success-l: 49%;
    --success: var(--success-h) var(--success-s) var(--success-l);
    --success-d-100: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.1);
    --success-d-200: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.2);
    --success-d-300: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.3);
    --success-d-400: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.4);
    --success-d-500: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.5);
    --success-l-100: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
    --success-l-200: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
    --success-l-300: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
    --success-l-400: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
    --success-l-500: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
    /* Danger Color */
    --danger-h: 0;
    --danger-s: 96%;
    --danger-l: 63%;
    --danger: var(--danger-h) var(--danger-s) var(--danger-l);
    --danger-d-100: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.1);
    --danger-d-200: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.2);
    --danger-d-300: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.3);
    --danger-d-400: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.4);
    --danger-d-500: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.5);
    --danger-l-100: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
    --danger-l-200: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
    --danger-l-300: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
    --danger-l-400: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
    --danger-l-500: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
    /* Warning Color */
    --warning-h: 37;
    --warning-s: 96%;
    --warning-l: 57%;
    --warning: var(--warning-h) var(--warning-s) var(--warning-l);
    --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
    --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
    --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
    --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
    --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
    --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
    --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
    --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
    --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
    --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
    /* Info Color */
    --info-h: 196;
    --info-s: 100%;
    --info-l: 50%;
    --info: var(--info-h) var(--info-s) var(--info-l);
    --info-d-100: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.1);
    --info-d-200: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.2);
    --info-d-300: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.3);
    --info-d-400: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.4);
    --info-d-500: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.5);
    --info-l-100: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
    --info-l-200: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
    --info-l-300: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
    --info-l-400: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
    --info-l-500: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
    /* Dark Color */
    --dark-h: 214;
    --dark-s: 18%;
    --dark-l: 23%;
    --dark: var(--dark-h) var(--dark-s) var(--dark-l);
    --dark-d-100: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.1);
    --dark-d-200: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.2);
    --dark-d-300: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.3);
    --dark-d-400: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.4);
    --dark-d-500: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.5);
    --dark-l-100: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.1);
    --dark-l-200: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.2);
    --dark-l-300: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.3);
    --dark-l-400: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.4);
    --dark-l-500: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.5);
    /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* ============================= Fully Fit Image Css Start ============================= */
.fit-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ============================= Fully Fit Image Css End ============================= */
/* ============================= Display Flex Css Start ============================= */
.flex-wrap,
.contact-info,
.latest-blog-item,
.coundown-content-item__top,
.coundown-content-item-wrapper,
.about-content__counter,
.book-service__bottom .form--label,
.dashboard .edit-profile-form__top,
.dashboard .personal-info-card__list-item,
.dashboard .account-setting-wrapper,
.dashboard .walker,
.dashboard .upcoming-booking__right,
.dashboard .upcoming-booking__bottom,
.dashboard .dashboard-widget,
.dashboard,
.form--switch,
.form--radio,
.form--check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-align,
.blog-details__share,
.benifit-item__top,
.download-app-content__buttons,
.why-choose-item__top,
.coundown-content__buttons,
.how-it-work-item__top,
.book-service__top .form--radio .form-check-label,
.banner-content__buttons,
.rating-list,
.social-list,
.dashboard .walker-phone-option,
.dashboard .upcoming-booking__details-list,
.dashboard .upcoming-booking__details,
.dashboard .dashboard-card__right,
.dashboard .user-info .user-info-dropdown__link,
.dashboard .user-info__button,
.dashboard .dashboard-header__right,
.dashboard .dashboard-header__left,
.sidebar-menu-list__link,
.footer-contact-menu__item,
.header-access-area,
.action-buttons,
.table-pet,
.table-service,
.service-modal form .pet-specification,
.add-pet-modal form .pet-specification,
.service-modal form .number-of-pet-wrapper .input-group-text,
.add-pet-modal form .number-of-pet-wrapper .input-group-text,
.service-modal form .number-of-pet-wrapper,
.add-pet-modal form .number-of-pet-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center,
.account-card form .google-access .btn,
.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-between,
.blog-details__bottom,
.blog-item__meta,
.dashboard .dashboard-card__header,
.dashboard .dashboard-header,
.service-modal form .buttons,
.add-pet-modal form .buttons,
.service-modal .service-modal-list,
.add-pet-modal .service-modal-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend {
    position: absolute;
    content: "";
}

.top-center-extend,
.custom--accordion .accordion-button[aria-expanded=true]::after,
.custom--accordion .accordion-button[aria-expanded=false]::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

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

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

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

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

.fs-13 {
    font-size: 0.8125rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-15 {
    font-size: 0.9375rem;
}

.fs-16 {
    font-size: 1rem;
}

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

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

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

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

.fs-18 {
    font-size: 1.125rem;
}

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

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

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

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

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

/* ===================== Font Size For Responsive Devices End =================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--section-bg));
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: hsl(var(--body-color));
    margin: 0;
}

@media screen and (max-width: 991px) {
    p {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    p {
        font-size: 0.875rem;
    }
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

h1 {
    font-size: 4.375rem;
    line-height: 1.1428571429;
}

@media screen and (max-width: 1399px) {
    h1 {
        font-size: 3.875rem;
    }
}

@media screen and (max-width: 1199px) {
    h1 {
        font-size: 3.4375rem;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.8125rem;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 1.875rem;
    }
}

h2 {
    font-size: 3rem;
    line-height: 1.1666666667;
}

@media screen and (max-width: 1399px) {
    h2 {
        font-size: 2.8125rem;
    }
}

@media screen and (max-width: 1199px) {
    h2 {
        font-size: 2.625rem;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 2.3125rem;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 2.1875rem;
    }
}

@media screen and (max-width: 575px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: 2.25rem;
}

@media screen and (max-width: 1399px) {
    h3 {
        font-size: 2.125rem;
    }
}

@media screen and (max-width: 1199px) {
    h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 991px) {
    h3 {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 575px) {
    h3 {
        font-size: 1.625rem;
    }
}

h4 {
    font-size: 1.5rem;
    line-height: 1.1666666667;
}

@media screen and (max-width: 1399px) {
    h4 {
        font-size: 1.4375rem;
    }
}

@media screen and (max-width: 1199px) {
    h4 {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 991px) {
    h4 {
        font-size: 1.3125rem;
    }
}

@media screen and (max-width: 767px) {
    h4 {
        font-size: 1.1875rem;
    }
}

@media screen and (max-width: 575px) {
    h4 {
        font-size: 1.125rem;
    }
}

h5 {
    font-size: 1.25rem;
    line-height: 1.2;
}

@media screen and (max-width: 1399px) {
    h5 {
        font-size: 1.1875rem;
    }
}

@media screen and (max-width: 1199px) {
    h5 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    h5 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    h5 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 575px) {
    h5 {
        font-size: 1rem;
    }
}

h6 {
    font-size: 1rem;
}

@media screen and (max-width: 1399px) {
    h6 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1199px) {
    h6 {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 991px) {
    h6 {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    h6 {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 575px) {
    h6 {
        font-size: 0.875rem;
    }
}

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

h1>span,
h2>span,
h3>span,
h4>span,
h5>span,
h6>span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

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

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

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

select {
    cursor: pointer;
}

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

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

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

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

.dashboard__right h1,
.dashboard__right h2,
.dashboard__right h3,
.dashboard__right h4,
.dashboard__right h5,
.dashboard__right h6 {
    font-family: var(--body-font);
}

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

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

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

.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

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

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

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

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

.gradient-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--base-d-200))), to(hsl(var(--base))));
    background-image: linear-gradient(180deg, hsl(var(--base-d-200)) 0%, hsl(var(--base)) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text::-moz-selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.gradient-text::selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

/* ================================= Custom Classes Css End =========================== */
/* ====================== Section Heading Css Start ==================== */
.section-heading {
    margin-bottom: 48px;
}

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

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

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

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

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

.section-heading__title {
    margin-bottom: 0;
}

/* ====================== Section Heading Css End ==================== */
/* ================================= Background Color Css Start =========================== */
.bg--base {
    background-color: hsl(var(--base)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================= Padding Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
    border: 1px solid hsl(var(--black)/0.1);
    background-color: hsl(var(--white)) !important;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .custom--accordion .accordion-item {
        border-radius: 10px;
    }
}

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

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-item:not(:last-child) {
        margin-bottom: 14px;
    }
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-item:not(:last-child) {
        margin-bottom: 12px;
    }
}

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

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

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

.custom--accordion .accordion-button {
    background-color: transparent;
    color: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: inherit;
    padding: 12px 16px;
    padding-right: 45px;
}

@media screen and (max-width: 1399px) {
    .custom--accordion .accordion-button {
        font-size: 1.1875rem;
    }
}

@media screen and (max-width: 1199px) {
    .custom--accordion .accordion-button {
        font-size: 1.125rem;
        padding: 12px 14px;
        padding-right: 45px;
    }
}

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-button {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .custom--accordion .accordion-button {
        font-size: 1rem;
    }
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-button {
        font-size: 1rem;
    }
}

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

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

.custom--accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--heading-color));
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

.custom--accordion .accordion-button[aria-expanded=true]::after,
.custom--accordion .accordion-button[aria-expanded=false]::after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "\f106";
    display: inline-block;
    position: absolute;
    font-size: 1.125rem;
    color: hsl(var(--heading-color));
    right: 16px;
    height: unset;
}

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

    .custom--accordion .accordion-button[aria-expanded=true]::after,
    .custom--accordion .accordion-button[aria-expanded=false]::after {
        right: 14px;
        font-size: 1.0625rem;
    }
}

.custom--accordion .accordion-button[aria-expanded=false]::after {
    content: "\f107";
}

.custom--accordion .accordion-body {
    padding: 0 16px 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: hsl(var(--body-color));
    margin: 0;
}

@media screen and (max-width: 1199px) {
    .custom--accordion .accordion-body {
        padding: 0 14px 18px;
    }
}

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-body {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .custom--accordion .accordion-body {
        font-size: 0.875rem;
    }
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn {
    position: relative;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: hsl(var(--white)) !important;
    padding: 19px 30px;
    border: 1px solid transparent;
    border-radius: 8px;
    z-index: 1;
    display: inline-block;
}

@media screen and (max-width: 1399px) {
    .btn {
        padding: 18px 28px;
    }
}

@media screen and (max-width: 1199px) {
    .btn {
        padding: 17px 25px;
        border-radius: 7px;
    }
}

@media screen and (max-width: 991px) {
    .btn {
        font-size: 0.9375rem;
        padding: 16.5px 22px;
        border-radius: 6px;
    }
}

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

@media screen and (max-width: 575px) {
    .btn {
        padding: 15px 18px;
        font-size: 0.875rem;
        border-radius: 5px;
    }
}

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

.btn:active {
    top: 1px;
}

.btn--lg {
    font-size: 1.125rem;
    padding: 13px 23px;
}

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

@media screen and (max-width: 1199px) {
    .btn--lg {
        font-size: 1.0625rem;
        padding: 12px 20px;
    }
}

@media screen and (max-width: 767px) {
    .btn--lg {
        font-size: 1rem;
        padding: 12px 18px;
    }
}

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

.btn--sm {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 7px 15px !important;
}

@media screen and (max-width: 575px) {
    .btn--sm {
        font-size: 0.8125rem;
        padding: 6.5px 12px !important;
    }
}

.btn--xsm {
    padding: 4px 7px;
    font-size: 0.75rem;
}

@media screen and (max-width: 575px) {
    .btn--xsm {
        padding: 3px 6px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

form .btn {
    padding: 16px 30px;
}

@media screen and (max-width: 991px) {
    form .btn {
        padding: 15.5px 22px;
    }
}

@media screen and (max-width: 575px) {
    form .btn {
        padding: 15px 18px;
    }
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: none;
    background-color: none;
    border-color: none;
}

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

.custom--tooltip {
    --bs-tooltip-color: hsl(var(--white));
    --bs-tooltip-bg: hsl(var(--info));
}

.toggle.btn label {
    position: absolute;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0 !important;
    line-height: 1;
}

.toggle.btn label:hover,
.toggle.btn label:focus {
    border: 0 !important;
}

.toggle .toggle-group .toggle-handle {
    background-color: hsl(var(--white));
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.card {
    background: hsl(var(--white));
    border-radius: 12px;
    -webkit-box-shadow: var(--box-shadow-three);
    box-shadow: var(--box-shadow-three);
    border: 0px;
}

@media screen and (max-width: 1199px) {
    .card {
        border-radius: 10px;
    }
}

@media screen and (max-width: 575px) {
    .card {
        border-radius: 8px;
    }
}

.card .card-header {
    padding: 20px 40px;
    background-color: #d5d5d5;
    border-bottom: 0;
}

.card .card-title {
    margin-bottom: 0;
    color: hsl(var(--heading-color));
}

.card .card-body {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 40px;
}

@media screen and (max-width: 1399px) {
    .card .card-header {
        padding: 20px 24px 0;
    }

    .card .card-body {
        padding: 24px;
    }
}

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

    .card .card-body {
        padding: 24px 20px;
    }
}

@media screen and (max-width: 767px) {
    .card .card-header {
        padding: 18px 15px;
    }

    .card .card-body {
        padding: 20px 15px;
    }
}

.card .card-footer {
    padding: 0 15px 15px;
    border-top: 1px solid hsl(var(--black)/0.1);
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
.form-group {
    margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
    .form-group {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 575px) {
    .form-group {
        margin-bottom: 10px;
    }
}

.form--label {
    position: relative;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .form--label {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 575px) {
    .form--label {
        font-size: 0.8125rem;
        margin-bottom: 6px;
    }
}

.form--control {
    width: 100%;
    background-color: hsl(var(--section-bg));
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 8px;
    outline: none;
    padding: 14px 16px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
    .form--control {
        border-radius: 7px;
    }
}

@media screen and (max-width: 991px) {
    .form--control {
        padding: 13.5px 14px;
        font-size: 0.9375rem;
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .form--control {
        font-size: 0.875rem;
        border-radius: 5px;
    }
}

.form--control::-webkit-input-placeholder {
    color: hsl(var(--body-color-two));
    font-size: 1rem;
}

.form--control::-moz-placeholder {
    color: hsl(var(--body-color-two));
    font-size: 1rem;
}

.form--control:-ms-input-placeholder {
    color: hsl(var(--body-color-two));
    font-size: 1rem;
}

.form--control::-ms-input-placeholder {
    color: hsl(var(--body-color-two));
    font-size: 1rem;
}

.form--control::placeholder {
    color: hsl(var(--body-color-two));
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .form--control::-webkit-input-placeholder {
        font-size: 0.9375rem;
    }

    .form--control::-moz-placeholder {
        font-size: 0.9375rem;
    }

    .form--control:-ms-input-placeholder {
        font-size: 0.9375rem;
    }

    .form--control::-ms-input-placeholder {
        font-size: 0.9375rem;
    }

    .form--control::placeholder {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 575px) {
    .form--control::-webkit-input-placeholder {
        font-size: 0.875rem;
    }

    .form--control::-moz-placeholder {
        font-size: 0.875rem;
    }

    .form--control:-ms-input-placeholder {
        font-size: 0.875rem;
    }

    .form--control::-ms-input-placeholder {
        font-size: 0.875rem;
    }

    .form--control::placeholder {
        font-size: 0.875rem;
    }
}

.form--control:focus {
    border-color: hsl(var(--base));
    background-color: hsl(var(--section-bg));
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form--control:disabled,
.form--control[readonly] {
    padding: 13px 18px;
    background-color: hsl(var(--heading-color)/0.05);
    color: hsl(var(--body-color)) !important;
    opacity: 1;
    border: 0;
}

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

    .form--control:disabled,
    .form--control[readonly] {
        padding: 12px 13px;
    }
}

.form--control[type=password] {
    color: hsl(var(--heading-color));
    font-weight: 600;
}

.form--control[type=password]::-webkit-input-placeholder {
    font-weight: 400;
}

.form--control[type=password]::-moz-placeholder {
    font-weight: 400;
}

.form--control[type=password]:-ms-input-placeholder {
    font-weight: 400;
}

.form--control[type=password]::-ms-input-placeholder {
    font-weight: 400;
}

.form--control[type=password]::placeholder {
    font-weight: 400;
}

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

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

@media screen and (max-width: 575px) {
    .form--control[type=file] {
        line-height: 40px;
    }
}

.form--control[type=file]::-webkit-file-upload-button {
    border: 0;
    padding: 3px 12px;
    border-radius: 3px;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 12px;
    color: hsl(var(--white)) !important;
    cursor: pointer;
}

.form--control[type=file]::file-selector-button {
    border: 0;
    padding: 3px 12px;
    border-radius: 3px;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 12px;
    color: hsl(var(--white)) !important;
    cursor: pointer;
}

@media screen and (max-width: 575px) {
    .form--control[type=file]::-webkit-file-upload-button {
        font-size: 0.8125rem;
        padding: 2px 8px;
        margin-left: 8px;
    }

    .form--control[type=file]::file-selector-button {
        font-size: 0.8125rem;
        padding: 2px 8px;
        margin-left: 8px;
    }
}

.form--control[type=file]::-webkit-file-upload-button:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

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

textarea.form--control {
    height: 125px;
    resize: none;
}

@media screen and (max-width: 991px) {
    textarea.form--control {
        height: 110px;
    }
}

@media screen and (max-width: 767px) {
    textarea.form--control {
        height: 100px;
    }
}

.select {
    position: relative;
    color: hsl(var(--input-color)) !important;
}

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

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

.select.form--control {
    padding: 11px 14px;
}

@media screen and (max-width: 575px) {
    .select.form--control {
        padding: 10px 10px;
    }
}

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

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

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

.password-show-hide {
    font-size: 1.125rem;
    cursor: pointer;
    color: hsl(var(--body-color));
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.password-show-hide:hover {
    color: hsl(var(--heading-color));
}

input#your-password,
input#confirm-password {
    padding-right: 50px;
}

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

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

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

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

.form--check .form-check-input:hover {
    border-color: hsl(var(--base));
}

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

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

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

.form--check .form-check-label {
    color: hsl(var(--heading-color));
    font-weight: 400;
    width: calc(100% - 16px);
    padding-left: 8px;
    cursor: pointer;
    font-size: 0.875rem;
}

.form-check-label.required::after {
    display: none;
}

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

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

.form--radio .form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid hsl(var(--border-color));
    border-radius: 2px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    width: 16px;
    height: 16px;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

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

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

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

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

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

.form--radio .form-check-label {
    font-weight: 400;
    width: calc(100% - 16px);
    padding-left: 8px;
    cursor: pointer;
    font-size: 0.875rem;
}

.form--switch:focus-visible {
    outline: 0;
}

.form--switch .form-check-input {
    width: 40px;
    height: 18px;
    background-image: none;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: hsl(var(--heading-color)/0.09);
    border: 0;
    border-radius: 18px;
    padding: 10px !important;
    cursor: pointer;
    margin: 0 0 6px;
    -webkit-transition: 0.15s li;
    transition: 0.15s li;
}

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

.form--switch .form-check-input:hover {
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

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

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

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

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

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

.input-group {
    border-radius: 5px;
    border: 0;
}


.input-group .input-group-text {
    border-width: 0;
    height: 100%;
    border-radius: 5px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 0.875rem;
    line-height: 1;
    padding: 18px 14px;
}

@media screen and (max-width: 575px) {
    .input-group .input-group-text {
        padding: 13px;
    }
}

@media screen and (max-width: 575px) {
    .input-group .form--control {
        padding: 10px;
    }
}

.input-group .form--control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-group .form--control[readonly]:focus {
    border-color: hsl(var(--heading-color)/0.05);
}

.input-group:has(.form--control[readonly]) {
    background: hsl(var(--heading-color)/0.05) !important;
}

.input-group:has(.form--control[readonly]):focus-within {
    border-color: hsl(var(--heading-color)/0.05) !important;
}

.customNiceSelect .nice-select {
    position: relative;
    width: 100%;
    background: hsl(var(--section-bg));
    padding-left: 15px;
    padding-right: 25px;
    margin-bottom: 0;
    cursor: pointer;
    float: none;
    font-size: 1rem;
    color: hsl(var(--body-color));
    border-color: hsl(var(--black)/0.1);
    line-height: 1;
    font-weight: 400;
    height: 50px;
    line-height: 48px;
}

@media screen and (max-width: 991px) {
    .customNiceSelect .nice-select {
        font-size: 0.9375rem;
        height: 48px;
        line-height: 48px;
        padding-left: 13px;
    }
}

@media screen and (max-width: 575px) {
    .customNiceSelect .nice-select {
        font-size: 0.875rem;
        height: 46px;
        line-height: 46px;
    }
}

.customNiceSelect .nice-select::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    height: auto;
    width: auto;
    border: 0;
    color: hsl(var(--body-color));
    font-size: 0.875rem;
    margin-top: 0;
    right: 10px;
    top: 50%;
    -webkit-transform-origin: unset;
    transform-origin: unset;
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 991px) {
    .customNiceSelect .nice-select::after {
        font-size: 0.8125rem;
        right: 8px;
    }
}

@media screen and (max-width: 575px) {
    .customNiceSelect .nice-select::after {
        font-size: 0.75rem;
        right: 7px;
    }
}

.customNiceSelect .nice-select:active {
    border-color: hsl(var(--border-color));
}

.customNiceSelect .nice-select.open {
    border-color: hsl(var(--base));
}

.customNiceSelect .nice-select.open::after {
    color: hsl(var(--heading-color));
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.customNiceSelect .nice-select .current {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    display: block;
}

.customNiceSelect .nice-select .list {
    width: 100%;
    background-color: hsl(var(--white));
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    border: 1px solid hsl(var(--border-color));
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.customNiceSelect .nice-select .list .option {
    color: hsl(var(--body-color));
    line-height: 1;
    min-height: 100%;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
    padding: 10px 8px;
    font-size: 0.9375rem;
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .customNiceSelect .nice-select .list .option {
        font-size: 0.875rem;
    }
}

.customNiceSelect .nice-select .list .option.selected {
    color: hsl(var(--body-color));
}

.customNiceSelect .nice-select .list .option.selected,
.customNiceSelect .nice-select .list .option.focus,
.customNiceSelect .nice-select .list .option:hover {
    background: hsl(var(--black)/0.05);
    color: hsl(var(--heading-color));
}

.upload-item-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .upload-item-wrapper {
        margin-bottom: 15px;
    }
}

.upload-item-wrapper__note {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 9px;
}

@media screen and (max-width: 767px) {
    .upload-item-wrapper__note {
        font-size: 0.9375rem;
        margin-top: 5px;
    }
}

@media screen and (max-width: 575px) {
    .upload-item-wrapper__note {
        font-size: 0.875rem;
    }
}

/* .upload-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsl(var(--border-color));
}

.upload-item img {
    border-radius: inherit;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px !important;
} */
.upload-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsl(var(--border-color));
}

.upload-item img {
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}

@media screen and (max-width: 767px) {
    .upload-item {
        width: 90px;
        height: 90px;
    }
}

.upload-item__input {
    font-size: 0;
    opacity: 0;
    width: 0;
}

.upload-item__label {
    position: relative;
    width: 35px;
    height: 35px;
    background: hsl(var(--base));
    border-radius: 50%;
    font-size: 1.125rem;
    color: hsl(var(--white));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
    cursor: pointer;
    position: absolute;
    right: -4px;
    bottom: 4px;
    top: 0px;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .upload-item__label {
        width: 32px;
        height: 32px;
        font-size: 1.0625rem;
    }
}

.upload-item__label::before {
    position: absolute;
    content: "";
    background: transparent;
    border: 5px solid hsl(var(--white));
    border-radius: 50%;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    left: -5px;
    top: -5px;
}

@media screen and (max-width: 767px) {
    .upload-item__label::before {
        width: calc(100% + 8px);
        height: calc(100% + 8px);
        left: -4px;
        top: -4px;
    }
}

.upload-item__label:hover {
    color: hsl(var(--white));
}

/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start =========================== */
.custom--modal .modal-header {
    border-bottom: 0;
    padding: 15px;
    padding-bottom: 0;
}

.custom--modal .modal-header .btn-close {
    width: 23px;
    height: 23px;
    background: hsl(var(--danger));
    opacity: 1;
    font-size: 0.875rem;
    line-height: 1;
    color: hsl(var(--white));
    padding: 0;
    border: 0;
    border-radius: 3px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

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

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

.custom--modal .modal-content {
    border-radius: 5px !important;
}

.custom--modal .modal-body {
    color: hsl(var(--body-color));
    padding: 15px;
}

.custom--modal .modal-body small {
    font-weight: 600;
    color: #afafaf;
    font-size: 0.75rem;
}

.custom--modal .modal-body p {
    margin-bottom: 10px;
}

.custom--modal .modal-body p:last-of-type {
    margin-bottom: 0;
}

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

.custom--modal .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    padding-top: 0;
    border-top: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (min-width: 576px) {

    .service-modal .modal-dialog,
    .add-pet-modal .modal-dialog {
        max-width: 500px;
    }
}

@media (min-width: 768px) {

    .service-modal .modal-dialog,
    .add-pet-modal .modal-dialog {
        max-width: 560px;
    }
}

.service-modal .modal-content,
.add-pet-modal .modal-content {
    border: 0;
    border-radius: 16px;
}

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

    .service-modal .modal-content,
    .add-pet-modal .modal-content {
        border-radius: 14px;
    }
}

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

    .service-modal .modal-content,
    .add-pet-modal .modal-content {
        border-radius: 12px;
    }
}

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

    .service-modal .modal-content,
    .add-pet-modal .modal-content {
        border-radius: 10px;
    }
}

.service-modal .modal-header,
.add-pet-modal .modal-header {
    display: block;
    text-align: center;
    padding: 28px 65px 0;
    border: 0;
}

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

    .service-modal .modal-header,
    .add-pet-modal .modal-header {
        padding: 25px 45px 0;
    }
}

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

    .service-modal .modal-header,
    .add-pet-modal .modal-header {
        padding: 24px 30px 0;
    }
}

.service-modal .modal-header__title,
.add-pet-modal .modal-header__title {
    line-height: 1.16667;
    margin-bottom: 12px;
}

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

    .service-modal .modal-header__title,
    .add-pet-modal .modal-header__title {
        margin-bottom: 8px;
    }
}

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

    .service-modal .modal-header__title,
    .add-pet-modal .modal-header__title {
        margin-bottom: 5px;
    }
}

.service-modal .modal-header__desc,
.add-pet-modal .modal-header__desc {
    font-family: var(--heading-font);
    font-size: 1rem;
    line-height: 1.25;
    color: hsl(var(--body-color-five));
    max-width: 355px;
    margin: 0 auto;
}

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

    .service-modal .modal-header__desc,
    .add-pet-modal .modal-header__desc {
        font-size: 0.9375rem;
        max-width: 330px;
    }
}

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

    .service-modal .modal-header__desc,
    .add-pet-modal .modal-header__desc {
        font-size: 0.875rem;
        max-width: 300px;
    }
}

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

    .service-modal .modal-header__desc,
    .add-pet-modal .modal-header__desc {
        max-width: 100%;
    }
}

.service-modal .modal-header .btn-close,
.add-pet-modal .modal-header .btn-close {
    position: absolute;
    right: 22px;
    top: 19px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 37px;
    height: 37px;
    background: transparent;
    color: hsl(var(--body-color-five));
    opacity: 1;
    padding: 0;
    margin: 0;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

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

    .service-modal .modal-header .btn-close,
    .add-pet-modal .modal-header .btn-close {
        width: 32px;
        height: 32px;
        right: 18px;
        top: 15px;
    }
}

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

    .service-modal .modal-header .btn-close,
    .add-pet-modal .modal-header .btn-close {
        width: 26px;
        height: 26px;
        right: 14px;
        top: 12px;
    }
}

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

    .service-modal .modal-header .btn-close,
    .add-pet-modal .modal-header .btn-close {
        width: 22px;
        height: 22px;
        right: 10px;
        top: 10px;
    }
}

.service-modal .modal-header .btn-close:hover,
.add-pet-modal .modal-header .btn-close:hover {
    color: hsl(var(--danger));
}

.service-modal .modal-header .btn-close:focus,
.add-pet-modal .modal-header .btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.service-modal .modal-body,
.add-pet-modal .modal-body {
    padding: 24px 24px 30px;
}

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

    .service-modal .modal-body,
    .add-pet-modal .modal-body {
        padding: 20px 20px 25px;
    }
}

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

    .service-modal .modal-body,
    .add-pet-modal .modal-body {
        padding: 18px 15px 25px;
    }
}

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

    .service-modal .modal-body,
    .add-pet-modal .modal-body {
        padding: 15px 12px 20px;
    }
}

.service-modal .service-modal-list,
.add-pet-modal .service-modal-list {
    position: relative;
    margin-bottom: 25px;
}

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

    .service-modal .service-modal-list,
    .add-pet-modal .service-modal-list {
        margin-bottom: 20px;
    }
}

.service-modal .service-modal-list::after,
.add-pet-modal .service-modal-list::after {
    position: absolute;
    content: "";
    background: transparent;
    width: calc(100% - 100px);
    border: 1px dashed hsl(var(--black)/0.1);
    top: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

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

    .service-modal .service-modal-list::after,
    .add-pet-modal .service-modal-list::after {
        width: calc(100% - 90px);
    }
}

.service-modal .service-modal-list__item.active .service-modal-list__number,
.add-pet-modal .service-modal-list__item.active .service-modal-list__number {
    background: hsl(var(--success));
}

.service-modal .service-modal-list__item.active .service-modal-list__text,
.add-pet-modal .service-modal-list__item.active .service-modal-list__text {
    color: hsl(var(--heading-color));
}

.service-modal .service-modal-list__link,
.add-pet-modal .service-modal-list__link {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

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

    .service-modal .service-modal-list__link,
    .add-pet-modal .service-modal-list__link {
        font-size: 0.9375rem;
    }
}

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

    .service-modal .service-modal-list__link,
    .add-pet-modal .service-modal-list__link {
        font-size: 0.875rem;
    }
}

.service-modal .service-modal-list__link:hover .service-modal-list__number,
.add-pet-modal .service-modal-list__link:hover .service-modal-list__number {
    background: hsl(var(--success));
}

.service-modal .service-modal-list__link:hover .service-modal-list__text,
.add-pet-modal .service-modal-list__link:hover .service-modal-list__text {
    color: hsl(var(--heading-color));
}

.service-modal .service-modal-list__number,
.add-pet-modal .service-modal-list__number {
    width: 28px;
    height: 28px;
    background: hsl(var(--body-color));
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--white));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

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

    .service-modal .service-modal-list__number,
    .add-pet-modal .service-modal-list__number {
        width: 26px;
        height: 26px;
    }
}

.service-modal .service-modal-list__text,
.add-pet-modal .service-modal-list__text {
    display: block;
    color: hsl(var(--body-color));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    margin-top: 15px;
}

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

    .service-modal .service-modal-list__text,
    .add-pet-modal .service-modal-list__text {
        margin-top: 10px;
    }
}

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

    .service-modal .service-modal-list__text.full,
    .add-pet-modal .service-modal-list__text.full {
        display: none;
    }
}

.service-modal .service-modal-list__text.short,
.add-pet-modal .service-modal-list__text.short {
    display: none;
}

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

    .service-modal .service-modal-list__text.short,
    .add-pet-modal .service-modal-list__text.short {
        display: block;
    }
}

.service-modal form .number-of-pet-wrapper .input-group,
.add-pet-modal form .number-of-pet-wrapper .input-group {
    position: relative;
    width: 50%;
}

.service-modal form .number-of-pet-wrapper .input-group:first-of-type .form--control,
.add-pet-modal form .number-of-pet-wrapper .input-group:first-of-type .form--control {
    border-right-color: transparent;
}

.service-modal form .number-of-pet-wrapper .input-group:first-of-type .form--control:focus,
.add-pet-modal form .number-of-pet-wrapper .input-group:first-of-type .form--control:focus {
    border-right-color: hsl(var(--base));
}

.service-modal form .number-of-pet-wrapper .input-group-text,
.add-pet-modal form .number-of-pet-wrapper .input-group-text {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 5px 0;
    padding-left: 10px;
    font-size: 1rem;
    line-height: 1;
    gap: 4px;
    color: hsl(var(--heading-color));
}

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

    .service-modal form .number-of-pet-wrapper .input-group-text,
    .add-pet-modal form .number-of-pet-wrapper .input-group-text {
        font-size: 0.9375rem;
    }
}

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

    .service-modal form .number-of-pet-wrapper .input-group-text,
    .add-pet-modal form .number-of-pet-wrapper .input-group-text {
        font-size: 0.875rem;
    }
}

.service-modal form .number-of-pet-wrapper .input-group-text .icon,
.add-pet-modal form .number-of-pet-wrapper .input-group-text .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 16px;
    height: 16px;
    color: inherit;
}

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

    .service-modal form .number-of-pet-wrapper .input-group-text .icon,
    .add-pet-modal form .number-of-pet-wrapper .input-group-text .icon {
        width: 15px;
        height: 15px;
    }
}

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

    .service-modal form .number-of-pet-wrapper .input-group-text .icon,
    .add-pet-modal form .number-of-pet-wrapper .input-group-text .icon {
        width: 14px;
        height: 14px;
    }
}

.service-modal form .number-of-pet-wrapper .input-group-text .icon.two,
.add-pet-modal form .number-of-pet-wrapper .input-group-text .icon.two {
    width: 20px;
}

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

    .service-modal form .number-of-pet-wrapper .input-group-text .icon.two,
    .add-pet-modal form .number-of-pet-wrapper .input-group-text .icon.two {
        width: 18px;
    }
}

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

    .service-modal form .number-of-pet-wrapper .input-group-text .icon.two,
    .add-pet-modal form .number-of-pet-wrapper .input-group-text .icon.two {
        width: 16px;
    }
}

.service-modal form .number-of-pet-wrapper .form--control,
.add-pet-modal form .number-of-pet-wrapper .form--control {
    width: 100%;
    padding-left: 70px;
    text-align: right;
    padding-right: 8px;
}

.service-modal form .number-of-pet-wrapper .form--control:focus,
.add-pet-modal form .number-of-pet-wrapper .form--control:focus {
    z-index: 2;
}

.service-modal form .pet-specification .form--radio,
.add-pet-modal form .pet-specification .form--radio {
    position: relative;
    width: 50%;
}

.service-modal form .pet-specification .form--radio:first-of-type .form-check-label,
.add-pet-modal form .pet-specification .form--radio:first-of-type .form-check-label {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

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

    .service-modal form .pet-specification .form--radio:first-of-type .form-check-label,
    .add-pet-modal form .pet-specification .form--radio:first-of-type .form-check-label {
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
    }
}

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

    .service-modal form .pet-specification .form--radio:first-of-type .form-check-label,
    .add-pet-modal form .pet-specification .form--radio:first-of-type .form-check-label {
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }
}

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

    .service-modal form .pet-specification .form--radio:first-of-type .form-check-label,
    .add-pet-modal form .pet-specification .form--radio:first-of-type .form-check-label {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
}

.service-modal form .pet-specification .form--radio:last-of-type .form-check-label,
.add-pet-modal form .pet-specification .form--radio:last-of-type .form-check-label {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

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

    .service-modal form .pet-specification .form--radio:last-of-type .form-check-label,
    .add-pet-modal form .pet-specification .form--radio:last-of-type .form-check-label {
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
    }
}

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

    .service-modal form .pet-specification .form--radio:last-of-type .form-check-label,
    .add-pet-modal form .pet-specification .form--radio:last-of-type .form-check-label {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }
}

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

    .service-modal form .pet-specification .form--radio:last-of-type .form-check-label,
    .add-pet-modal form .pet-specification .form--radio:last-of-type .form-check-label {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
}

.service-modal form .pet-specification .form--radio:not(:first-of-type) .form-check-label,
.add-pet-modal form .pet-specification .form--radio:not(:first-of-type) .form-check-label {
    border-left-color: transparent;
}

.service-modal form .pet-specification .form--radio:not(:first-of-type) .form-check-label:hover,
.add-pet-modal form .pet-specification .form--radio:not(:first-of-type) .form-check-label:hover {
    border-left-color: hsl(var(--base));
}

.service-modal form .pet-specification .form--radio .form-check-input,
.add-pet-modal form .pet-specification .form--radio .form-check-input {
    position: absolute;
    width: 0;
    height: 0;
    font-size: 0;
    opacity: 0;
}

.service-modal form .pet-specification .form--radio .form-check-input:checked~.form-check-label,
.add-pet-modal form .pet-specification .form--radio .form-check-input:checked~.form-check-label {
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

.service-modal form .pet-specification .form--radio .form-check-label,
.add-pet-modal form .pet-specification .form--radio .form-check-label {
    width: 100%;
    padding: 17px 10px;
    border: 1px solid hsl(var(--black)/0.1);
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    color: hsl(var(--heading-color));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

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

    .service-modal form .pet-specification .form--radio .form-check-label,
    .add-pet-modal form .pet-specification .form--radio .form-check-label {
        padding: 16px 10px;
    }
}

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

    .service-modal form .pet-specification .form--radio .form-check-label,
    .add-pet-modal form .pet-specification .form--radio .form-check-label {
        padding: 15px 5px;
    }
}

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

    .service-modal form .pet-specification .form--radio .form-check-label,
    .add-pet-modal form .pet-specification .form--radio .form-check-label {
        font-size: 0.8125rem;
    }
}

.service-modal form .pet-specification .form--radio .form-check-label .ratio,
.add-pet-modal form .pet-specification .form--radio .form-check-label .ratio {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
}

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

    .service-modal form .pet-specification .form--radio .form-check-label .ratio,
    .add-pet-modal form .pet-specification .form--radio .form-check-label .ratio {
        margin-top: 3px;
    }
}

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

    .service-modal form .pet-specification .form--radio .form-check-label .ratio,
    .add-pet-modal form .pet-specification .form--radio .form-check-label .ratio {
        font-size: 0.6875rem;
    }
}

.service-modal form .pet-specification .form--radio .form-check-label:hover,
.add-pet-modal form .pet-specification .form--radio .form-check-label:hover {
    border-color: hsl(var(--base));
}

.service-modal form .pet-specification.pet-size .form--radio,
.add-pet-modal form .pet-specification.pet-size .form--radio {
    width: 25%;
}

.service-modal form .pet-specification.pet-size .form--radio .form-check-label,
.add-pet-modal form .pet-specification.pet-size .form--radio .form-check-label {
    padding: 12px 10px;
}

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

    .service-modal form .pet-specification.pet-size .form--radio .form-check-label,
    .add-pet-modal form .pet-specification.pet-size .form--radio .form-check-label {
        padding: 11px 10px;
    }
}

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

    .service-modal form .pet-specification.pet-size .form--radio .form-check-label,
    .add-pet-modal form .pet-specification.pet-size .form--radio .form-check-label {
        padding: 9.5px 5px;
    }
}

.service-modal form .pet-specification.pet-old .form--radio,
.add-pet-modal form .pet-specification.pet-old .form--radio {
    width: 33.33%;
}

.service-modal form .pet-specification.pet-old .form--radio .form-check-label,
.add-pet-modal form .pet-specification.pet-old .form--radio .form-check-label {
    padding: 12px 10px;
}

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

    .service-modal form .pet-specification.pet-old .form--radio .form-check-label,
    .add-pet-modal form .pet-specification.pet-old .form--radio .form-check-label {
        padding: 11px 10px;
    }
}

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

    .service-modal form .pet-specification.pet-old .form--radio .form-check-label,
    .add-pet-modal form .pet-specification.pet-old .form--radio .form-check-label {
        padding: 9.5px 5px;
    }
}

.service-modal form .pet-specification.pet-spayed-neutered .form--radio,
.add-pet-modal form .pet-specification.pet-spayed-neutered .form--radio {
    width: 33.33%;
}

.service-modal form .buttons,
.add-pet-modal form .buttons {
    gap: 16px;
}

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

    .service-modal form .buttons,
    .add-pet-modal form .buttons {
        gap: 12px;
    }
}

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

    .service-modal form .buttons,
    .add-pet-modal form .buttons {
        gap: 10px;
    }
}

.service-modal form .buttons .btn,
.add-pet-modal form .buttons .btn {
    width: calc(50% - 8px);
}

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

    .service-modal form .buttons .btn,
    .add-pet-modal form .buttons .btn {
        width: calc(50% - 6px);
    }
}

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

    .service-modal form .buttons .btn,
    .add-pet-modal form .buttons .btn {
        width: calc(50% - 5px);
    }
}

.service-modal form .form-inner,
.add-pet-modal form .form-inner {
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 10px;
    padding: 16px 14px;
}

.service-modal form .form--radio .form-check-input,
.add-pet-modal form .form--radio .form-check-input {
    width: 18px;
    height: 18px;
    border-width: 3px;
    border-radius: 50%;
    border-color: hsl(var(--success));
}

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

    .service-modal form .form--radio .form-check-input,
    .add-pet-modal form .form--radio .form-check-input {
        margin-top: 2px;
    }
}

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

    .service-modal form .form--radio .form-check-input,
    .add-pet-modal form .form--radio .form-check-input {
        margin-top: 3px;
        border-width: 2px;
        width: 16px;
        height: 16px;
    }
}

.service-modal form .form--radio .form-check-input::before,
.add-pet-modal form .form--radio .form-check-input::before {
    width: 7px;
    height: 7px;
    background: hsl(var(--success));
    border-radius: 50%;
}

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

    .service-modal form .form--radio .form-check-input::before,
    .add-pet-modal form .form--radio .form-check-input::before {
        width: 5px;
        height: 5px;
    }
}

.service-modal form .form--radio .form-check-label,
.add-pet-modal form .form--radio .form-check-label {
    width: calc(100% - 18px);
    padding-left: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--heading-color));
}

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

    .service-modal form .form--radio .form-check-label,
    .add-pet-modal form .form--radio .form-check-label {
        padding-left: 8px;
        font-size: 0.9375rem;
    }
}

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

    .service-modal form .form--radio .form-check-label,
    .add-pet-modal form .form--radio .form-check-label {
        width: calc(100% - 16px);
        padding-left: 6px;
        font-size: 0.875rem;
    }
}

.service-modal form .payment-radio-two .form--radio,
.add-pet-modal form .payment-radio-two .form--radio {
    position: relative;
}

.service-modal form .payment-radio-two .form--radio .form-check-input,
.add-pet-modal form .payment-radio-two .form--radio .form-check-input {
    margin: 0;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.service-modal form .payment-radio-two .form--radio .form-check-label,
.add-pet-modal form .payment-radio-two .form--radio .form-check-label {
    width: 100%;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 8px;
    padding: 15px;
    padding-left: 40px;
}

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

    .service-modal form .payment-radio-two .form--radio .form-check-label,
    .add-pet-modal form .payment-radio-two .form--radio .form-check-label {
        border-radius: 7px;
    }
}

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

    .service-modal form .payment-radio-two .form--radio .form-check-label,
    .add-pet-modal form .payment-radio-two .form--radio .form-check-label {
        padding: 14px;
        padding-left: 38px;
        border-radius: 6px;
    }
}

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

    .service-modal form .payment-radio-two .form--radio .form-check-label,
    .add-pet-modal form .payment-radio-two .form--radio .form-check-label {
        padding: 13px;
        padding-left: 36px;
        border-radius: 5px;
    }
}

.add-pet-modal .modal-body {
    padding-top: 16px;
}

@media screen and (max-width: 767px) {
    .add-pet-modal .modal-body {
        padding-top: 14px;
    }
}

@media screen and (max-width: 575px) {
    .add-pet-modal .modal-body {
        padding-top: 12px;
    }
}

@media screen and (max-width: 374px) {
    .add-pet-modal .modal-body {
        padding-top: 10px;
    }
}

/* ================================= Modal Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}
.table-pagination .pagination{
    margin-top: 0px
}

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

.pagination .page-item .page-link {
    border: 1px solid hsl(var(--border-color));
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--heading-color));
    font-size: 0.875rem;
}

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

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

/* ================================= Pagination Css End =========================== */
/* ================================= Table Css Start =========================== */
.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 0px;
}

.table thead tr th {
    white-space: nowrap;
    background-color: hsl(var(--section-bg-four));
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    color: hsl(var(--heading-color));
    padding: 13px 16px;
    border: 0;
}

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

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

.table tbody {
    border: 0 !important;
    background-color: hsl(var(--white));
}

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

.table tbody tr td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    padding: 12px 16px;
    border-width: 1px;
    border: 0;
    font-family: var(--body-font);
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--body-color));
    border-bottom: 1px solid hsl(var(--black)/0.05);
}

.table tbody tr td::before {
    content: attr(data-label);
    font-size: 0.875rem;
    color: hsl(var(--heading-color));
    font-weight: 600;
    display: none;
    width: 45% !important;
    text-align: left;
}

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

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

.table.invoice-table thead tr th.invoice-number,
.table.invoice-table thead tr td.invoice-number,
.table.invoice-table tbody tr th.invoice-number,
.table.invoice-table tbody tr td.invoice-number {
    font-weight: 700;
    color: hsl(var(--heading-color));
}

@media (min-width: 576px) {

    .table.invoice-table thead tr th:nth-child(2),
    .table.invoice-table thead tr td:nth-child(2),
    .table.invoice-table tbody tr th:nth-child(2),
    .table.invoice-table tbody tr td:nth-child(2) {
        text-align: left;
    }
}

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

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

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

    .table--responsive--sm tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 0;
        border: 0;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--sm tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

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

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

@media screen and (max-width: 575px) {
    .table--responsive--sm tbody tr td {
        border: 0;
        border-bottom: 1px dashed hsl(var(--border-color)/.5);
    }


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

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

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

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

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

    .table--responsive--md tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 0;
        border: 0;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--md tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

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

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

@media screen and (max-width: 767px) {
    .table--responsive--md tbody tr td {
        border: 0;
        border-bottom: 1px dashed hsl(var(--border-color)/.5);
    }
    .table tbody tr:last-child td {
        border-bottom: 1px dashed hsl(var(--border-color)/.5);
    }
}

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

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

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

    .table--responsive--lg tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 0;
        border: none;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--lg tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

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

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

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

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

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

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

    .table--responsive--xl tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 0;
        border: none;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--xl tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

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

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

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

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

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

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

    .table--responsive--xxl tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 0;
        border: none;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--xxl tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

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

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

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

.table-responsive::-webkit-scrollbar {
    height: 5px;
}

.table-responsive::-webkit-scrollbar-thumb {
    width: 0px;
    border-radius: 5px;
    background-color: hsl(var(--base)/0.3);
}

.table-responsive::-webkit-scrollbar-track {
    background-color: transparent;
}

.table-service {
    white-space: initial;
    min-width: 150px;
}

@media screen and (max-width: 575px) {
    .table-service {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.table-service__thumb {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .table-service__thumb {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }
}

.table-service__thumb img {
    width: 100%;
    height: 100%;
}

.table-service__content {
    width: calc(100% - 36px);
    padding-left: 10px;
}

@media screen and (max-width: 575px) {
    .table-service__content {
        width: 100%;
        padding-left: 0;
    }
}

.table-service__name {
    display: block;
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 700;
    color: hsl(var(--heading-color));
    margin-bottom: 2px;
}

.table-service__info {
    display: block;
    font-size: 0.6875rem;
}

.table-service__info>span {
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.table-pet {
    white-space: initial;
    min-width: 150px;
}

@media screen and (max-width: 575px) {
    .table-pet {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.table-pet__thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .table-pet__thumb {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }
}

.table-pet__thumb img {
    width: 100%;
    height: 100%;
}

.table-pet__content {
    width: calc(100% - 36px);
    padding-left: 10px;
}

@media screen and (max-width: 575px) {
    .table-pet__content {
        width: 100%;
        padding-left: 0;
    }
}

.table-pet__name {
    display: block;
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 700;
    color: hsl(var(--heading-color));
    margin-bottom: 2px;
}

.table-pet__info {
    font-weight: 600;
    display: block;
    font-size: 0.6875rem;
}

.table-pet__info>span {
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.action-buttons {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 7px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.action-buttons.two {
    gap: 38px;
}

@media screen and (max-width: 1599px) {
    .action-buttons.two {
        gap: 32px;
    }
}

@media screen and (max-width: 1499px) {
    .action-buttons.two {
        gap: 28px;
    }
}

@media screen and (max-width: 1399px) {
    .action-buttons.two {
        gap: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .action-buttons.two {
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .action-buttons.two {
        gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .action-buttons.two {
        gap: 14px;
    }
}

@media screen and (max-width: 575px) {
    .action-buttons.two {
        gap: 12px;
    }
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.875rem;
    color: hsl(var(--white));
    white-space: nowrap;
}

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

.invoice-btn {
    width: 28px;
    height: 28px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 6px;
    color: hsl(var(--body-color));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 575px) {
    .invoice-btn {
        width: 24px;
        height: 24px;
        border-radius: 5px;
    }
}

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

.invoice-btn__inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: inherit;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 575px) {
    .invoice-btn__inner {
        width: 17px;
        height: 17px;
    }
}

.edit-btn {
    width: 28px;
    height: 28px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 6px;
    color: hsl(var(--body-color));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 575px) {
    .edit-btn {
        width: 24px;
        height: 24px;
        border-radius: 5px;
    }
}

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

.edit-btn__inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: inherit;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 575px) {
    .edit-btn__inner {
        width: 13px;
        height: 13px;
    }
}

.ellipsis-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 4px;
    height: 20px;
    color: hsl(var(--body-color));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 575px) {
    .ellipsis-btn {
        height: 18px;
    }
}

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

.download-btn {
    width: 28px;
    height: 28px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #9D9D9D;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 575px) {
    .download-btn {
        width: 24px;
        height: 24px;
        border-radius: 5px;
    }
}

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

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
    background: hsl(var(--border-color)/0.35);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px;
    border: 0;
    border-radius: 0;
    margin-bottom: 30px;
}

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

.custom--tab .nav-item .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    padding: 11px 16px;
    color: hsl(var(--heading-color));
    background-color: transparent !important;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 0;
}

@media screen and (max-width: 1199px) {
    .custom--tab .nav-item .nav-link {
        font-size: 0.875rem;
        padding: 10px 15px;
    }
}

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

@media screen and (max-width: 424px) {
    .custom--tab .nav-item .nav-link {
        font-size: 0.8125rem;
        padding: 9px;
    }
}

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

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

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

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
    position: relative;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 25px;
    font-weight: 500;
    padding: 5.5px 7px;
}

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

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

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

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

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

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

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

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

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

.badge-outline--base::before {
    position: absolute;
    content: "";
    background: hsl(var(--base));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.badge-outline--primary::before {
    position: absolute;
    content: "";
    background: hsl(var(--primary));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.badge-outline--secondary::before {
    position: absolute;
    content: "";
    background: hsl(var(--secondary));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.badge-outline--success::before {
    position: absolute;
    content: "";
    background: hsl(var(--success));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.badge-outline--danger::before {
    position: absolute;
    content: "";
    background: hsl(var(--danger));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.badge-outline--warning::before {
    position: absolute;
    content: "";
    background: hsl(var(--warning));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

.badge-outline--info::before {
    position: absolute;
    content: "";
    background: hsl(var(--info));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.badge-outline--dark {
    background-color: hsl(var(--dark)/0.1) !important;
    color: hsl(var(--dark)) !important;
    border: 1px solid hsl(var(--dark)) !important;
    padding-left: 18px;
}

.badge-outline--dark::before {
    position: absolute;
    content: "";
    background: hsl(var(--dark));
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
    position: relative;
    font-weight: 400;
    padding: 12px 16px;
    border-radius: 5px;
    margin-bottom: 0;
}

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

.alert-heading {
    margin-bottom: 0px;
}

.alert__title {
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.alert__desc {
    color: hsl(var(--body-color));
    display: block;
    font-size: 0.8125rem;
    line-height: 1.375;
}

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

.alert__link {
    position: relative;
    text-decoration: underline;
}

.alert--base {
    border-color: hsl(var(--base)/0.12);
    background: hsl(var(--base)/0.06);
}

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

.alert--primary {
    border-color: hsl(var(--primary)/0.12);
    background: hsl(var(--primary)/0.06);
}

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

.alert--success {
    border-color: hsl(var(--success)/0.12);
    background: hsl(var(--success)/0.06);
}

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

.alert--info {
    border-color: hsl(var(--info)/0.12);
    background: hsl(var(--info)/0.06);
}

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

.alert--danger {
    border-color: hsl(var(--danger)/0.12);
    background: hsl(var(--danger)/0.06);
}

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

.alert--warning {
    border-color: hsl(var(--warning)/0.12);
    background: hsl(var(--warning)/0.06);
}

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

.alert--secondary {
    border-color: hsl(var(--secondary)/0.12);
    background: hsl(var(--secondary)/0.06);
}

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

.alert--dark {
    border-color: hsl(var(--dark)/0.12);
    background: hsl(var(--dark)/0.06);
}

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

/* ====================================== Alert Css End =============================== */
/* ====================================== List Group Css Start =============================== */
.list-group .list-group-item {
    gap: 15px;
    border-color: hsl(var(--border-color)) !important;
    font-size: 0.875rem;
}

.list-group .list-group-item:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.list-group .list-group-item:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.list-group .list-group-item .title {
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.list-group .list-group-item .desc {
    display: block;
    color: hsl(var(--body-color));
    font-weight: 500;
}

/* ====================================== List Group Css End =============================== */
/* ============= Header CSS Start ======================= */
.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 5;
    background-color: transparent;
}

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

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

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

.header.fixed-header {
    position: fixed;
    background-color: hsl(var(--white));
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
    top: 0px;
    -webkit-animation: slide-down 0.6s;
    animation: slide-down 0.6s;
    width: 100%;
}

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

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

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

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

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

.navbar-brand.logo img {
    max-width: 190px;
    max-height: 44px;
}

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

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

/* Desktop/Large Device (Minimum Width 992px to Up) */
@media (min-width: 992px) {
    .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-menu .nav-item {
        position: relative;
        margin: 0 12.5px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .nav-menu .nav-item {
        margin: 0 11px;
    }
}

@media (min-width: 992px) {

    .nav-menu .nav-item:nth-child(2) {
        margin-left: 0;
    }

    .nav-menu .nav-item:last-child {
        margin-right: 0;
    }
}

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

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

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

@media (min-width: 992px) {
    .nav-menu .nav-item .nav-link {
        font-size: 1.125rem;
        line-height: 1;
        font-weight: 600;
        color: hsl(var(--heading-color));
        padding: 38px 0;
        position: relative;
        cursor: pointer;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .nav-menu .nav-item .nav-link {
        padding: 35px 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .nav-menu .nav-item .nav-link {
        font-size: 1.0625rem;
        padding: 33px 0;
    }
}

/* Small Device (Upto Maximum Width 991px) */
@media screen and (max-width: 991px) {
    .body-overlay.show {
        visibility: visible;
        opacity: 1;
    }

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

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

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

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

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

    .nav-item .nav-link {
        padding: 10px 10px 10px 0 !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 !important;
        border-bottom: 1px solid hsl(var(--black)/0.1);
        font-size: 1rem;
        color: hsl(var(--heading-color));
    }
}

@media screen and (max-width: 991px) and (max-width: 575px) {
    .nav-item .nav-link {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 991px) {
    .nav-item .nav-link.show[aria-expanded=true] {
        color: hsl(var(--base)) !important;
    }

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

/* Navbar Toggler/Navber Menu Button */
.navbar-toggler.header-button {
    border-color: transparent;
    color: hsl(var(--black));
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    width: auto;
    font-size: 2.4rem;
}

@media screen and (max-width: 575px) {
    .navbar-toggler.header-button {
        font-size: 2.2rem;
    }
}

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

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

/* Header Access Area */
.header-access-area {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 991px) {
    .header-access-area {
        padding-top: 10px;
        margin-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 15px;
    }
}

.header-access-area__link {
    font-size: 1rem;
    line-height: 1;
    color: hsl(var(--heading-color));
    margin-left: 30px;
}

@media screen and (max-width: 1399px) {
    .header-access-area__link {
        margin-left: 25px;
    }
}

@media screen and (max-width: 991px) {
    .header-access-area__link {
        font-size: 1rem;
        margin-left: 0 !important;
        font-weight: 600;
    }
}

@media screen and (max-width: 575px) {
    .header-access-area__link {
        font-size: 0.9375rem;
    }
}

.header-access-area__link:last-child {
    margin-left: 18px;
}

@media screen and (max-width: 1399px) {
    .header-access-area__link:last-child {
        margin-left: 15px;
    }
}

@media screen and (max-width: 991px) {
    .header-access-area .btn {
        font-size: 0.9375rem;
        padding: 14px 20px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 575px) {
    .header-access-area .btn {
        padding: 12px 18px;
    }
}

/* Notification */
.notification {
    position: relative;
    line-height: 1;
}

@media screen and (max-width: 991px) {
    .notification {
        width: calc(100% - 105px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-right: 10px;
    }
}

.notification__btn {
    position: relative;
    top: 2px;
    cursor: pointer;
    line-height: 1;
}

@media screen and (max-width: 991px) {
    .notification__btn {
        top: unset;
    }
}

.notification__btn-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 24px;
    color: hsl(var(--heading-color));
}

.notification__btn-badge {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: hsl(var(--base));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.6875rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--white));
    position: absolute;
    top: -2px;
    left: 9px;
}

.notification__list-wrapper {
    position: absolute;
    width: 260px;
    right: -20px;
    top: calc(100% + 10px);
    opacity: 0;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    margin-top: 15px;
    z-index: -1;
    visibility: hidden;
}

@media screen and (max-width: 991px) {
    .notification__list-wrapper {
        width: 215px;
        right: 0;
        margin-top: 10px;
    }
}

.notification__list-wrapper.show {
    top: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 999 !important;
}

.notification__list-wrapper .clip-path {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 15px;
    color: hsl(var(--white));
    right: 20px;
    top: -12px;
}

@media screen and (max-width: 991px) {
    .notification__list-wrapper .clip-path {
        width: 14px;
        height: 12px;
        right: 13px;
        top: -10px;
    }
}

.notification__list {
    padding: 10px 10px 10px 13px;
    background-color: hsl(var(--white));
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow-two);
    box-shadow: var(--box-shadow-two);
    overflow-y: auto !important;
    max-height: 282px;
}

@media screen and (max-width: 991px) {
    .notification__list {
        padding: 5px 8px 5px 11px;
        border-radius: 5px;
        max-height: 210px;
    }
}

.notification__list::-webkit-scrollbar {
    width: 3px;
}

.notification__list::-webkit-scrollbar-thumb {
    width: 0px;
    border-radius: 3px;
    background-color: transparent;
    opacity: 0;
}

.notification__list::-webkit-scrollbar-track {
    background-color: transparent;
}

.notification__list:hover::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black)/0.1);
}

.notification__list-item {
    border-bottom: 1px solid hsl(var(--black)/0.1);
}

.notification__list-item:last-child {
    border-bottom: 0;
}

.notification__list-link {
    display: block;
    padding: 15px 0;
}

@media screen and (max-width: 991px) {
    .notification__list-link {
        padding: 8px 0;
    }
}

.notification__list-link:hover .notification__list-title {
    color: hsl(var(--base));
}

.notification__list-title {
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 991px) {
    .notification__list-title {
        font-size: 0.9375rem;
        margin-bottom: 3px;
    }
}

.notification__list-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 0.9375rem;
    line-height: 1.3;
    margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
    .notification__list-desc {
        font-size: 0.875rem;
        margin-bottom: 3px;
    }
}

.notification__list-date-time {
    font-size: 0.875rem;
}

@media screen and (max-width: 991px) {
    .notification__list-date-time {
        font-size: 0.8125rem;
    }
}

/* Custom Language Dropdown */
.language-dropdown {
    position: relative;
    width: auto;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .language-dropdown {
        width: 105px;
        margin-left: 0;
        border: 1px solid hsl(var(--black)/0.1);
        border-radius: 5px;
    }
}

.language-dropdown.open::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (max-width: 991px) {
    .language-dropdown.open::after {
        -webkit-transform: unset;
        transform: unset;
        content: "\f0de";
        top: 14px;
    }
}

.language-dropdown.open .language-dropdown__list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    z-index: 999 !important;
}

.language-dropdown::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0dd";
    font-size: 0.9375rem;
    line-height: 1;
    color: hsl(var(--heading-color));
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}

@media screen and (max-width: 991px) {
    .language-dropdown::after {
        font-size: 0.8125rem;
        right: 5px;
        bottom: unset;
        margin: unset;
        top: 8px;
        -webkit-transition: unset;
        transition: unset;
    }
}

.language-dropdown__selected {
    font-size: 1rem;
    line-height: 1;
    color: hsl(var(--heading-color));
    padding-right: 15px;
}

@media screen and (max-width: 991px) {
    .language-dropdown__selected {
        font-size: 0.875rem;
        padding: 10px 8px;
        width: 100%;
        padding-right: 15px;
    }
}

.language-dropdown__list {
    width: 125px;
    position: absolute;
    background-color: hsl(var(--white));
    border-radius: 8px;
    -webkit-box-shadow: var(--box-shadow-two);
    box-shadow: var(--box-shadow-two);
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    top: 100%;
    margin-top: 15px;
    z-index: -1;
    visibility: hidden;
    max-height: 145px;
    overflow-y: auto !important;
}

@media screen and (max-width: 991px) {
    .language-dropdown__list {
        width: 100%;
        max-height: 82px;
        margin-top: 2px;
        border-radius: 5px;
    }
}

.language-dropdown__list::-webkit-scrollbar {
    width: 3px;
}

.language-dropdown__list::-webkit-scrollbar-thumb {
    width: 0px;
    border-radius: 3px;
    background-color: transparent;
    opacity: 0;
}

.language-dropdown__list::-webkit-scrollbar-track {
    background-color: transparent;
}

.language-dropdown__list:hover::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black)/0.1);
}

.language-dropdown__list-item {
    font-size: 0.9375rem;
    line-height: 1;
    color: hsl(var(--heading-color));
    padding: 10px;
    cursor: pointer;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 991px) {
    .language-dropdown__list-item {
        font-size: 0.875rem;
        padding: 6px 8px;
    }
}

.language-dropdown__list-item:last-child {
    border-bottom: 0;
}

.language-dropdown__list-item:hover {
    color: hsl(var(--base));
    background-color: hsl(var(--base)/0.08);
}

/* ================================= Header Css End =========================== */
/* ============= Footer Start ======================= */
.footer-area {
    position: relative;
    margin-top: auto;
}

.footer-area.bg-img {
    background-position: left top !important;
}

.footer-area__inner {
    padding: 153px 0 60px;
}

@media screen and (max-width: 1199px) {
    .footer-area__inner {
        padding: 140px 0 50px;
    }
}

@media screen and (max-width: 575px) {
    .footer-area__inner {
        padding: 135px 0 30px;
    }
}

.footer-area__shape {
    -webkit-animation: updown 1.5s infinite alternate;
    animation: updown 1.5s infinite alternate;
    position: absolute;
    left: 0;
    top: -145px;
}

@media screen and (max-width: 1199px) {
    .footer-area__shape {
        top: -90px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__shape {
        top: -70px;
    }
}

@media screen and (max-width: 575px) {
    .footer-area__shape {
        display: none;
    }
}

.footer-area__shape img {
    max-width: 371px;
}

@media screen and (max-width: 1399px) {
    .footer-area__shape img {
        max-width: 320px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area__shape img {
        max-width: 270px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__shape img {
        max-width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .footer-area__shape img {
        max-width: 160px;
    }
}

.footer-area__shape.two {
    z-index: -1;
    left: unset;
    top: 22px;
    right: 95px;
    -webkit-animation: updown 1s infinite alternate;
    animation: updown 1s infinite alternate;
}

@media screen and (max-width: 1399px) {
    .footer-area__shape.two {
        top: 30px;
        right: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area__shape.two {
        top: 35px;
        right: 40px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__shape.two {
        top: 60px;
        right: 15px;
    }
}

@media screen and (max-width: 767px) {
    .footer-area__shape.two {
        top: 65px;
        right: 10px;
    }
}

.footer-area__shape.two img {
    max-width: 435px;
}

@media screen and (max-width: 1399px) {
    .footer-area__shape.two img {
        max-width: 360px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area__shape.two img {
        max-width: 300px;
    }
}

@media screen and (max-width: 991px) {
    .footer-area__shape.two img {
        max-width: 235px;
    }
}

@media screen and (max-width: 767px) {
    .footer-area__shape.two img {
        max-width: 190px;
    }
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 60px;
}

@media screen and (max-width: 1399px) {
    .footer-logo {
        margin-bottom: 45px;
    }
}

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

@media screen and (max-width: 767px) {
    .footer-logo {
        margin-bottom: 30px;
    }
}

.footer-logo img {
    max-width: 214px;
    max-height: 67px;
}

@media screen and (max-width: 1199px) {
    .footer-logo img {
        max-width: 192px;
        max-height: 60px;
    }
}

@media screen and (max-width: 767px) {
    .footer-logo img {
        max-width: 160px;
        max-height: 50px;
    }
}

/* Footer Item */
.footer-item__title {
    line-height: 1.3;
    color: hsl(var(--white));
    margin-bottom: 27px;
}

@media screen and (max-width: 1399px) {
    .footer-item__title {
        margin-bottom: 22px;
    }
}

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

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

.footer-item__desc {
    max-width: 443px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: hsl(var(--white));
}

@media screen and (max-width: 1399px) {
    .footer-item__desc {
        max-width: 415px;
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 1199px) {
    .footer-item__desc {
        font-size: 1rem;
        max-width: 100%;
    }
}

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

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

@media screen and (max-width: 991px) {
    .footer-item .social-list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 575px) {
    .footer-item .social-list {
        margin-top: 20px;
    }
}

/* Footer Menu */
.footer-menu__item {
    display: block;
    margin-bottom: 12px;
}

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

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

.footer-menu__link {
    font-size: 1.125rem;
    line-height: 1.6;
    color: hsl(var(--white));
}

@media screen and (max-width: 1399px) {
    .footer-menu__link {
        font-size: 1.0625rem;
    }
}

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

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

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

/* Footer Contact */
.footer-contact-menu__item {
    margin-bottom: 12px;
}

@media screen and (max-width: 1199px) {
    .footer-contact-menu__item {
        margin-bottom: 10px;
    }
}

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

.footer-contact-menu__item-icon {
    width: 40px;
    height: 40px;
    background: hsl(var(--base));
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
    .footer-contact-menu__item-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9375rem;
    }
}

.footer-contact-menu__item-text {
    padding-right: 25px;
}

@media screen and (max-width: 1199px) {
    .footer-contact-menu__item-text {
        padding-right: 0;
    }
}

.footer-contact-menu__item-text,
.footer-contact-menu__item-link {
    width: calc(100% - 40px);
    padding-left: 15px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: hsl(var(--white)/0.8);
}

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

    .footer-contact-menu__item-text,
    .footer-contact-menu__item-link {
        font-size: 1.0625rem;
    }
}

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

    .footer-contact-menu__item-text,
    .footer-contact-menu__item-link {
        width: calc(100% - 35px);
        padding-left: 12px;
        font-size: 1rem;
    }
}

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

    .footer-contact-menu__item-text,
    .footer-contact-menu__item-link {
        font-size: 0.9375rem;
    }
}

/* Bottom Footer  */
.bottom-footer {
    background-color: hsl(var(--section-bg-two));
    padding: 15px 0;
}

@media screen and (max-width: 1199px) {
    .bottom-footer {
        padding: 14px 0;
    }
}

@media screen and (max-width: 767px) {
    .bottom-footer {
        padding: 12px 0;
    }
}

.bottom-footer__text {
    font-size: 1rem;
    color: hsl(var(--white)/0.8);
}

@media screen and (max-width: 1199px) {
    .bottom-footer__text {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .bottom-footer__text {
        font-size: 0.875rem;
    }
}

/* Keyframe */
@-webkit-keyframes updown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

@keyframes updown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

/* ============= Footer End ======================= */
/* ================================= Dashboard Fulid Sidebar Css Start =========================== */
.sidebar-menu {
    width: 274px;
    height: 100vh;
    background: transparent;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .sidebar-menu {
        width: 244px;
    }
}

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

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

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

.sidebar-menu__close {
    position: absolute;
    top: 8px;
    right: 8px;
    color: hsl(var(--white));
    font-size: 1.5rem;
    line-height: 1;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    cursor: pointer;
    z-index: 9;
}

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

.sidebar-menu__logo {
    padding: 32px 25px 30px;
}

@media screen and (max-width: 1399px) {
    .sidebar-menu__logo {
        padding: 25px 20px;
    }
}

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

.sidebar-menu__logo img {
    max-width: 149px;
    max-height: 46px;
}

@media screen and (max-width: 1199px) {
    .sidebar-menu__logo img {
        max-width: 139px;
        max-height: 42px;
    }
}

.sidebar-menu-list {
    height: calc(100vh - 108px);
    overflow-y: auto;
    padding-right: 10px;
}

@media screen and (max-width: 1399px) {
    .sidebar-menu-list {
        height: calc(100vh - 96px);
    }
}

@media screen and (max-width: 1199px) {
    .sidebar-menu-list {
        height: calc(100vh - 82px);
        padding-right: 8px;
    }
}

.sidebar-menu-list::-webkit-scrollbar {
    width: 5px;
}

.sidebar-menu-list::-webkit-scrollbar-thumb {
    width: 0px;
    border-radius: 5px;
    background-color: transparent;
}

.sidebar-menu-list::-webkit-scrollbar-track {
    background-color: transparent;
}

.sidebar-menu-list:hover::-webkit-scrollbar-thumb {
    background-color: hsl(var(--base)/0.3);
}

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

.sidebar-menu-list__item:last-child {
    margin-bottom: 0;
}

.sidebar-menu-list__item.active>a {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    gap: 12px;
}

@media screen and (max-width: 1399px) {
    .sidebar-menu-list__item.active>a {
        gap: 10px;
    }
}

.sidebar-menu-list__link {
    gap: 16px;
    padding: 16px 20px 16px 25px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0 56px 56px 0;
    color: hsl(var(--white));
}

@media screen and (max-width: 1399px) {
    .sidebar-menu-list__link {
        padding: 15px 20px 15px 20px;
        gap: 13px;
    }
}

@media screen and (max-width: 1199px) {
    .sidebar-menu-list__link {
        padding: 14px 20px 14px 15px;
        font-size: 0.9375rem;
    }
}

.sidebar-menu-list__link:hover {
    gap: 12px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

@media screen and (max-width: 1399px) {
    .sidebar-menu-list__link:hover {
        gap: 10px;
    }
}

.sidebar-menu-list__link .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 15px;
    height: 15px;
    color: inherit;
}

@media screen and (max-width: 1199px) {
    .sidebar-menu-list__link .icon {
        width: 14px;
        height: 14px;
    }
}

.sidebar-menu-list__link .icon.two {
    width: 19px;
    height: 19px;
}

@media screen and (max-width: 1199px) {
    .sidebar-menu-list__link .icon.two {
        width: 17px;
        height: 17px;
    }
}

/* ================================= Dashboard Fulid Sidebar Css End =========================== */
/* ================================= Dashboard Css Start =========================== */
.dashboard {
    background: hsl(var(--base-d-600));
}

.dashboard__right {
    width: calc(100% - 274px);
    min-height: 100vh;
    background: color-mix(in srgb, hsl(var(--base-l-800)) 80%, #fff);
    margin-left: auto;
    border-radius: 32px 0px 0px 32px;
    padding: 30px 28px;
}

@media screen and (max-width: 1699px) {
    .dashboard__right {
        padding: 28px 25px;
        border-radius: 30px 0px 0px 30px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard__right {
        padding: 25px 20px;
        border-radius: 28px 0px 0px 28px;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard__right {
        width: calc(100% - 244px);
        padding: 20px;
        border-radius: 25px 0px 0px 25px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard__right {
        width: calc(100% - 230px);
        padding: 20px 16px;
        border-radius: 22px 0px 0px 22px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard__right {
        width: 100%;
        padding: 0;
        margin-left: 0;
        border-radius: 0;
    }
}

.dashboard .dashboard-header {
    margin-bottom: 30px;
    background-color: hsl(var(--base-d-600));
    border-radius: 16px;
    padding: 14px 24px;
}

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

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header {
        padding: 13px 18px;
        border-radius: 14px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header {
        padding: 12px 15px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header {
        border-radius: 0;
        padding: 12px 20px;
    }
}

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

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header {
        padding: 12px 15px;
        margin-bottom: 0;
    }
}

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

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

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header__left {
        gap: 12px;
    }
}

.dashboard .dashboard-header .sidebar-trigger {
    width: 40px;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    background: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 1.375rem;
    line-height: 1;
    cursor: pointer;
}

.dashboard .dashboard-header__title {
    font-family: var(--body-font);
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--white));
    line-height: 1.3;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__title {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header__title {
        font-size: 1rem;
    }
}

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

.dashboard .dashboard-header__right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 15px;
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header__right {
        gap: 12px;
    }
}

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

.dashboard .user-info__button-thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .dashboard .user-info__button-thumb {
        width: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .user-info__button-thumb {
        width: 38px;
        height: 38px;
    }
}

.dashboard .user-info__button-thumb img {
    width: 100%;
    height: 100%;
}

.dashboard .user-info__button-content {
    width: calc(100% - 45px);
    padding-left: 10px;
    text-align: left;
}

@media screen and (max-width: 1199px) {
    .dashboard .user-info__button-content {
        width: calc(100% - 42px);
        padding-left: 8px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .user-info__button-content {
        width: calc(100% - 38px);
        padding-left: 6px;
    }
}

.dashboard .user-info__button-name {
    font-family: var(--heading-font);
    color: hsl(var(--white));
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

@media screen and (max-width: 1199px) {
    .dashboard .user-info__button-name {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .user-info__button-name {
        font-size: 0.875rem;
    }
}

.dashboard .user-info__button-username {
    color: hsl(var(--white));
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .dashboard .user-info__button-username {
        font-size: 0.6875rem;
    }
}

.dashboard .user-info .user-info-dropdown {
    width: 180px;
    overflow: hidden;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 8px;
    background: hsl(var(--white));
    position: absolute;
    right: 0;
    z-index: 9;
    top: calc(100% + 15px);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 1199px) {
    .dashboard .user-info .user-info-dropdown {
        width: 165px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .user-info .user-info-dropdown {
        width: 150px;
    }
}

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

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

.dashboard .user-info .user-info-dropdown__link {
    gap: 5px;
    width: 100%;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

@media screen and (max-width: 1199px) {
    .dashboard .user-info .user-info-dropdown__link {
        font-size: 0.9375rem;
        padding: 7px 14px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .user-info .user-info-dropdown__link {
        font-size: 0.875rem;
        padding: 6px 12px;
    }
}

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

.dashboard .dashboard-body {
    position: relative;
}

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

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

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

@media screen and (max-width: 424px) {
    .dashboard .dashboard-body {
        padding: 20px 12px;
    }
}

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

.dashboard .dashboard-widget-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-widget-wrapper {
        gap: 12px;
    }
}

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

@media screen and (max-width: 424px) {
    .dashboard .dashboard-widget-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}

.dashboard .dashboard-widget {
    position: relative;
    padding: 16px 16px 20px;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 12px;
    overflow: hidden;
    background-color: hsl(var(--white));
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget {
        padding: 14px 14px 18px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget {
        padding: 14px 12px 16px;
    }
}

.dashboard .dashboard-widget:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.dashboard .dashboard-widget__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: hsl(var(--base)/0.1);
    border-radius: 14px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget__icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget__icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }
}

.dashboard .dashboard-widget__icon-inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 22px;
    height: 22px;
    color: hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget__icon-inner {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget__icon-inner {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget__icon-inner {
        width: 17px;
        height: 17px;
    }
}

.dashboard .dashboard-widget__icon-inner.two {
    width: 27px;
    height: 27px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget__icon-inner.two {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget__icon-inner.two {
        width: 23px;
        height: 23px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget__icon-inner.two {
        width: 22px;
        height: 22px;
    }
}

.dashboard .dashboard-widget__content {
    width: calc(100% - 45px);
    padding-left: 13px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget__content {
        width: calc(100% - 42px);
        padding-left: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget__content {
        width: calc(100% - 38px);
        padding-left: 8px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget__content {
        width: calc(100% - 35px);
    }
}

.dashboard .dashboard-widget__number {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: hsl(var(--heading-color));
    margin-bottom: 9px;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget__number {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget__number {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }
}

.dashboard .dashboard-widget__title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget__title {
        font-size: 0.8125rem;
    }
}

.dashboard .dashboard-card {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 24px 15px;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-card {
        padding: 20px 15px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card {
        padding: 15px;
        border-radius: 8px;
    }
}

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

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

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card__header {
        row-gap: 15px;
        margin-bottom: 5px;
    }
}

.dashboard .dashboard-card__header.two {
    margin-bottom: 10px;
}

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

    .dashboard .dashboard-card__header.two .dashboard-card__title,
    .dashboard .dashboard-card__header.two .dashboard-card__right {
        width: auto;
    }
}

.dashboard .dashboard-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-card__title {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card__title {
        font-size: 1.0625rem;
        width: 100%;
    }
}

.dashboard .dashboard-card__right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-card__right {
        gap: 12px;
    }
}

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

.dashboard .dashboard-card__right form {
    max-width: 172px;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-card__right form {
        max-width: 160px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card__right form {
        max-width: 150px;
    }
}

.dashboard .dashboard-card__right form .form-group {
    position: relative;
    margin-bottom: 0;
}

.dashboard .dashboard-card__right form .form--control {
    font-size: 0.875rem;
    padding: 5.5px 13px;
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card__right form .form--control {
        font-size: 0.8125rem;
        padding: 5px 10px;
    }
}

.dashboard .dashboard-card__right form .form--control::-webkit-input-placeholder {
    font-size: 0.875rem;
}

.dashboard .dashboard-card__right form .form--control::-moz-placeholder {
    font-size: 0.875rem;
}

.dashboard .dashboard-card__right form .form--control:-ms-input-placeholder {
    font-size: 0.875rem;
}

.dashboard .dashboard-card__right form .form--control::-ms-input-placeholder {
    font-size: 0.875rem;
}

.dashboard .dashboard-card__right form .form--control::placeholder {
    font-size: 0.875rem;
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card__right form .form--control::-webkit-input-placeholder {
        font-size: 0.8125rem;
    }

    .dashboard .dashboard-card__right form .form--control::-moz-placeholder {
        font-size: 0.8125rem;
    }

    .dashboard .dashboard-card__right form .form--control:-ms-input-placeholder {
        font-size: 0.8125rem;
    }

    .dashboard .dashboard-card__right form .form--control::-ms-input-placeholder {
        font-size: 0.8125rem;
    }

    .dashboard .dashboard-card__right form .form--control::placeholder {
        font-size: 0.8125rem;
    }
}

.dashboard .dashboard-card__right form button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 20px;
    color: hsl(var(--body-color-three));
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-card__right form button {
        width: 18px;
        height: 18px;
        right: 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card__right form button {
        width: 17px;
        height: 17px;
        right: 5px;
    }
}

.dashboard .dashboard-card__right form button:hover {
    color: hsl(var(--base));
}

.dashboard .upcoming-booking {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 12px 15px 15px;
}

@media screen and (max-width: 1199px) {
    .dashboard .upcoming-booking {
        border-radius: 10px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking {
        padding: 10px 12px 12px;
    }
}

.dashboard .upcoming-booking__heading {
    border-bottom: 1px solid hsl(var(--black)/0.1);
    padding-bottom: 11px;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking__heading {
        padding-bottom: 8px;
        margin-bottom: 12px;
    }
}

.dashboard .upcoming-booking__title {
    line-height: 1.2;
    margin-bottom: 0;
}

.dashboard .upcoming-booking__bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 499px) {
    .dashboard .upcoming-booking__bottom {
        gap: 15px;
    }
}

.dashboard .upcoming-booking__right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 15px;
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking__right {
        gap: 10px;
    }
}

@media (max-width: 499px) {
    .dashboard .upcoming-booking__right {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 499px) {
    .dashboard .upcoming-booking__details {
        width: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.dashboard .upcoming-booking__details-thumb {
    width: 93px;
    height: 93px;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking__details-thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }
}

@media (max-width: 499px) {
    .dashboard .upcoming-booking__details-thumb {
        width: 68px;
        height: 68px;
    }
}

.dashboard .upcoming-booking__details-thumb img {
    width: 100%;
    height: 100%;
}

.dashboard .upcoming-booking__details-content {
    width: calc(100% - 93px);
    padding-left: 12px;
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking__details-content {
        width: calc(100% - 80px);
        padding-left: 10px;
    }
}

@media (max-width: 499px) {
    .dashboard .upcoming-booking__details-content {
        width: calc(100% - 68px);
    }
}

.dashboard .upcoming-booking__details-title {
    line-height: 1.2;
    color: hsl(var(--body-color));
    margin-bottom: 0;
}

.dashboard .upcoming-booking__details-price {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    color: hsl(var(--base));
    margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking__details-price {
        margin-bottom: 8px;
    }
}

.dashboard .upcoming-booking__details-list {
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking__details-list {
        gap: 5px;
    }
}

.dashboard .upcoming-booking__details-list-item {
    text-align: center;
}

.dashboard .upcoming-booking__details-list-item .title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}

.dashboard .upcoming-booking__details-list-item .info {
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    color: hsl(var(--white));
    background: hsl(var(--heading-color));
    border-radius: 4px;
    padding: 4.5px 8px;
}

@media screen and (max-width: 767px) {
    .dashboard .upcoming-booking__details-list-item .info {
        padding: 4px 6px;
    }
}

.dashboard .walker__thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.dashboard .walker__thumb img {
    width: 100%;
    height: 100%;
}

.dashboard .walker__content {
    width: calc(100% - 32px);
    padding-left: 8px;
}

.dashboard .walker__name {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
}

.dashboard .walker__designation {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
}

.dashboard .walker-phone-option {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 32px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

@media screen and (max-width: 767px) {
    .dashboard .walker-phone-option {
        gap: 20px;
    }
}

.dashboard .walker-phone-option__phone {
    width: 26px;
    height: 26px;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--heading-color));
    font-size: 0.75rem;
    line-height: 1;
}

.dashboard .walker-phone-option__phone:hover {
    color: hsl(var(--base));
}

.dashboard .walker-phone-option__option {
    color: hsl(var(--body-color));
    font-size: 1rem;
}

.dashboard .walker-phone-option__option:hover {
    color: hsl(var(--base));
}

.dashboard .account-setting-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

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

@media screen and (max-width: 1199px) {
    .dashboard .account-setting-wrapper {
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .account-setting-wrapper {
        row-gap: 15px;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.dashboard .personal-info-card {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 12px;
    padding: 26px 32px;
    width: 350px;
}

@media screen and (max-width: 1399px) {
    .dashboard .personal-info-card {
        padding: 24px;
        width: 330px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .personal-info-card {
        padding: 20px 15px;
        width: 310px;
        border-radius: 10px;
    }
}

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

.dashboard .personal-info-card__title {
    font-weight: 600;
    margin-bottom: 12px;
}

.dashboard .personal-info-card__list-item {
    margin-bottom: 15px;
}

.dashboard .personal-info-card__list-item:last-child {
    margin-bottom: 0;
}

.dashboard .personal-info-card__list-item span {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
}

.dashboard .personal-info-card__list-item .title {
    width: 90px;
    color: hsl(var(--heading-color));
}

.dashboard .personal-info-card__list-item .separator {
    width: 5px;
    text-align: center;
    color: hsl(var(--heading-color));
}

.dashboard .personal-info-card__list-item .info {
    width: calc(100% - 95px);
    padding-left: 10px;
}

.dashboard .edit-profile-card {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 12px;
    padding: 26px 32px;
    width: calc(100% - 380px);
}

@media screen and (max-width: 1399px) {
    .dashboard .edit-profile-card {
        width: calc(100% - 350px);
        padding: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .edit-profile-card {
        width: calc(100% - 320px);
        padding: 20px 15px;
        border-radius: 10px;
    }
}

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

.dashboard .edit-profile-form__top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dashboard .edit-profile-form__top .upload-item {
    width: 80px;
    height: 80px;
}

.dashboard .edit-profile-form__top .upload-item__label {
    width: 24px;
    height: 24px;
    background: hsl(var(--success));
    font-size: 0.9375rem;
}

.dashboard .edit-profile-form__top .upload-item__label::before {
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    left: -3px;
    top: -3px;
}

.dashboard .edit-profile-form__top .btn {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 7px 15px;
}

/* ================================= Dashboard Css End =========================== */
/* ================================= Preload Css Start =========================== */
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: hsl(var(--black));
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.loader {
    width: 44.8px;
    height: 44.8px;
    color: hsl(var(--base));
    position: relative;
    background: radial-gradient(11.2px, currentColor 94%, #0000);
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(10.08px at bottom right, #0000 94%, currentColor) top left,
        radial-gradient(10.08px at bottom left, #0000 94%, currentColor) top right,
        radial-gradient(10.08px at top right, #0000 94%, currentColor) bottom left,
        radial-gradient(10.08px at top left, #0000 94%, currentColor) bottom right;
    background-size: 22.4px 22.4px;
    background-repeat: no-repeat;
    animation: loader 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes loader {
    33% {
        inset: -11.2px;
        transform: rotate(0deg);
    }

    66% {
        inset: -11.2px;
        transform: rotate(90deg);
    }

    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}

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

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

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

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

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ================================= Select2 Css Start =========================== */
.select2.select2-container,
.select2.select2-container .selection {
    width: 100% !important;
}

.select2.select2-container .select2-selection {
    border: 1px solid hsl(var(--border-color));
    border-radius: 5px;
    height: auto;
    margin-bottom: 0px;
    outline: none;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    color: hsl(var(--heading-color));
    padding: 8px 18px;
    padding-right: 33px;
}



@media screen and (max-width: 575px) {
    .select2.select2-container .select2-selection .select2-selection__rendered {
        padding: 4px 10px;
        padding-right: 33px;
    }
}

.select2.select2-container .select2-selection .select2-selection__arrow {
    background: transparent;
    border-radius: 0 5px 5px 0;
    height: calc(100% - 10px);
    width: 33px;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
    background: hsl(var(--white));
    border-color: hsl(var(--base));
    border-radius: 8px !important;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    border: 1px solid hsl(var(--base));
    border-radius: 8px !important;
}

.select2.select2-container.select2-container--focus .select2-selection {
    border: 1px solid hsl(var(--base));
}

.select2.select2-container .select2-selection--multiple {
    padding: 5px;
}

@media screen and (max-width: 575px) {
    .select2.select2-container .select2-selection--multiple {
        padding: 3px 5px;
    }
}

.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin-top: 0;
    height: 32px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    padding: 0 5px;
    line-height: 1;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #f8f8f8;
    border: 1px solid hsl(var(--border-color));
    border-radius: 3px;
    margin: 4px 4px 0 0;
    padding: 0 6px 0 22px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    position: relative;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    margin: 0;
    text-align: center;
    color: hsl(var(--danger));
    font-weight: bold;
    font-size: 0.9375rem;
    border-color: hsl(var(--border-color));
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 0;
    color: hsl(var(--heading-color));
    font-size: 0.8125rem;
}

.select2-container .select2-dropdown {
    background: transparent;
    border: none;
    margin-top: -5px;
}

.select2-container .select2-dropdown .select2-search {
    padding: 0;
}


.select2-container--default .select2-search--dropdown {
    border-color: hsl(var(--base)) !important;
    padding: 0px !important;
}

.select2-container .select2-dropdown .select2-search input {
    outline: none;
    border: 1px solid hsl(var(--base)) !important;
    border-radius: 5px 5px 0 0;
    border-bottom: none;
    padding: 8px 10px !important;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
}



.select2-container .select2-dropdown .select2-results {
    padding: 0;
}

.select2-container .select2-dropdown .select2-results ul {
    background: #fff;
    border: 1px solid hsl(var(--base));
    border-radius: 0 0 5px 5px;
}

.select2-container .select2-dropdown .select2-results ul::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background: hsl(var(--base)/0.35);
}

.select2-container .select2-dropdown .select2-results ul:hover::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    border-radius: 3px;
}

.select2-container .select2-dropdown .select2-results ul::-webkit-scrollbar-thumb {
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: hsl(var(--base)/0.65);
}

.select2-container .select2-dropdown .select2-results ul li {
    font-size: 14px;
    padding: 8px 10px;
    margin-bottom: 0;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.select2-container .select2-dropdown .select2-results ul li:last-child {
    margin-bottom: 0;
}

.select2-container--default .select2-results__option--selected {
    background: hsl(var(--base)/0.2);
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
    background: hsl(var(--base)/0.1);
}

/* ================================= Select2 Css End ===========================  */
.daterangepicker {
    border: 1px solid hsl(var(--base));
}

.daterangepicker:before {
    border-bottom-color: hsl(var(--base));
}

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

.daterangepicker .active.available:hover {
    background: hsl(var(--base-d-100)) !important;
    color: hsl(var(--white));
}

.daterangepicker .calendar-table tr:nth-child(2) th {
    border-bottom: 1px solid hsl(var(--border-color));
    margin-bottom: 10px;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    color: hsl(var(--heading-color));
}

.daterangepicker .calendar-table td:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.daterangepicker td.in-range {
    background: hsl(var(--base)/0.12);
}

.daterangepicker .prev.available,
.daterangepicker .next.available {
    background: hsl(var(--base)/0.12);
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.daterangepicker .prev.available:hover,
.daterangepicker .next.available:hover {
    background: hsl(var(--base));
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.daterangepicker .prev.available span,
.daterangepicker .next.available span {
    border-width: 0 1px 1px 0;
    border-color: hsl(var(--base));
}

.daterangepicker .prev.available:hover span,
.daterangepicker .next.available:hover span {
    border-color: hsl(var(--white));
}

.daterangepicker.show-calendar .drp-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.daterangepicker .drp-buttons {
    text-align: left;
    border-color: hsl(var(--border-color));
}

.daterangepicker .drp-selected {
    color: hsl(var(--base));
    font-weight: 500;
    font-size: 0.8125rem;
}

@media screen and (max-width: 575px) {
    .daterangepicker .drp-selected {
        font-size: 0.75rem;
    }
}

.daterangepicker .drp-buttons .btn {
    background: hsl(var(--base));
    font-weight: 500;
    padding: 3px 4px;
    border-radius: 5px;
}

.daterangepicker .drp-buttons .btn:hover {
    border-color: hsl(var(--base));
}

.daterangepicker .drp-buttons .btn.cancelBtn {
    background: hsl(var(--danger));
    margin-right: 3px;
    margin-left: auto;
}

.daterangepicker .drp-buttons .btn.cancelBtn:hover {
    color: hsl(var(--white)) !important;
    border-color: hsl(var(--danger));
    margin-left: auto;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    width: 40px;
    background: hsl(var(--base)/0.12);
    border-radius: 3px;
    border-color: transparent;
    color: hsl(var(--base));
    text-align: center;
    line-height: 1;
    font-weight: 600;
    padding: 5px 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.daterangepicker select.hourselect:hover,
.daterangepicker select.minuteselect:hover,
.daterangepicker select.secondselect:hover,
.daterangepicker select.ampmselect:hover {
    border-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    background: hsl(var(--base)/0.12);
    border-radius: 3px;
    border-color: transparent;
    color: hsl(var(--base));
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

.daterangepicker select.monthselect:hover,
.daterangepicker select.yearselect:hover {
    border-color: hsl(var(--base));
}

.daterangepicker select.monthselect:focus,
.daterangepicker select.yearselect:focus {
    outline: none;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    text-decoration: none;
    color: hsl(var(--body-color-three));
    opacity: 0.5;
}

/* ================================= Social Icon Css Start =========================== */
.social-list__item {
    margin-right: 10px;
}

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

.social-list__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: hsl(var(--white)/0.21);
    font-size: 1rem;
    color: hsl(var(--white));
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    cursor: pointer;
}

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

.social-list__link.active,
.social-list__link:hover,
.social-list__link:focus {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

/* ================================= Social Icon Css End ===========================  */
/* ================================= Range Slider Css Start =========================== */
.custom--range__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}

.custom--range__content label {
    width: 40%;
}

.custom--range__content input {
    width: 60%;
    text-align: right;
}

.custom--range input {
    border: 0;
    color: hsl(var(--body-color));
    font-weight: 500;
}

.custom--range #slider-range {
    height: 5px;
    border: 0;
    background: hsl(var(--base)/0.2);
}

.custom--range #slider-range .ui-widget-header {
    background-color: hsl(var(--base));
}

.custom--range #slider-range span:focus {
    background-color: hsl(var(--base));
}

.custom--range #slider-range .ui-slider-handle {
    width: 15px !important;
    height: 15px !important;
    background-color: hsl(var(--base)) !important;
    border: 2px solid hsl(var(--white)) !important;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ================================= Range Slider Css End =========================== */
/* ================= Slick Slider Css Start ================ */
.slick-initialized.slick-slider {
    margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

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

.slick-dots {
    gap: 15px;
    text-align: center;
    padding-top: 85px;
}

@media screen and (max-width: 1699px) {
    .slick-dots {
        padding-top: 80px;
    }
}

@media screen and (max-width: 1599px) {
    .slick-dots {
        padding-top: 70px;
    }
}

@media screen and (max-width: 1499px) {
    .slick-dots {
        padding-top: 65px;
    }
}

@media screen and (max-width: 1399px) {
    .slick-dots {
        padding-top: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .slick-dots {
        padding-top: 50px;
    }
}

@media screen and (max-width: 991px) {
    .slick-dots {
        padding-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .slick-dots {
        padding-top: 25px;
    }
}

@media screen and (max-width: 575px) {
    .slick-dots {
        padding-top: 15px;
        gap: 10px;
    }
}

.slick-dots li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
}

.slick-dots li button {
    border: none;
    background-color: transparent;
    color: hsl(var(--white));
    width: 16px;
    height: 16px;
    border: 1px solid hsl(var(--black)/0.2);
    border-radius: 50%;
    text-indent: -9999px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 575px) {
    .slick-dots li button {
        width: 14px;
        height: 14px;
    }
}

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

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

/* ================= Slick Slider Css End ================ */
/* ================================= Start Rating Css Start =========================== */
.rating-list {
    gap: 12px;
}

@media screen and (max-width: 1199px) {
    .rating-list {
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .rating-list {
        gap: 10px;
    }
}

.rating-list__item {
    font-size: 1.25rem;
    color: hsl(var(--warning));
}

@media screen and (max-width: 1199px) {
    .rating-list__item {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .rating-list__item {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .rating-list__item {
        font-size: 1rem;
    }
}

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

/* ================================= Start Rating Css End =========================== */
/* =========================== Banner Css Start ========================= */
.banner-section {
    position: relative;
    z-index: 2;
    padding: 165px 0 116px;
}

@media screen and (max-width: 1599px) {
    .banner-section {
        padding: 150px 0 100px;
    }
}

@media screen and (max-width: 1499px) {
    .banner-section {
        padding: 150px 0 85px;
    }
}

@media screen and (max-width: 1399px) {
    .banner-section {
        padding: 140px 0 80px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-section {
        padding: 130px 0 60px;
    }
}

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

@media screen and (max-width: 767px) {
    .banner-section {
        padding: 90px 0 35px;
    }
}

@media screen and (max-width: 575px) {
    .banner-section {
        padding: 85px 0 30px;
    }
}

@media screen and (max-width: 424px) {
    .banner-section {
        padding: 80px 0 30px;
    }
}

.banner-section::before,
.banner-section::after {
    -webkit-mask-image: url("../images/thumbs/banner-bg-02.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: hsl(var(--base)/.3);
}

.banner-section::after {
    -webkit-mask-image: url("../images/thumbs/banner-bg-01.png");
    background: color-mix(in srgb, hsl(var(--base-d-200)) 16%, #fff);
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content__title {
    margin-bottom: 33px;
}

@media screen and (max-width: 1499px) {
    .banner-content__title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1399px) {
    .banner-content__title {
        margin-bottom: 20px;
    }
}

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

@media screen and (max-width: 991px) {
    .banner-content__title {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__title {
        margin-bottom: 8px;
        padding-right: 35px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__title {
        padding-right: 0;
        margin-bottom: 5px;
    }
}

.banner-content__desc {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
    margin-bottom: 53px;
}

@media screen and (max-width: 1499px) {
    .banner-content__desc {
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 1399px) {
    .banner-content__desc {
        font-size: 1.1875rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__desc {
        font-size: 1.125rem;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__desc {
        font-size: 1.0625rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__desc {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__desc {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 424px) {
    .banner-content__desc {
        font-size: 0.9375rem;
        margin-bottom: 10px;
    }
}

.banner-content__buttons {
    gap: 24px;
}

@media screen and (max-width: 1399px) {
    .banner-content__buttons {
        gap: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__buttons {
        gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__buttons {
        gap: 12px;
    }
}


.banner-content__shape {
    position: absolute;
    z-index: 2;
    right: -50px;
    bottom: -65px;
    display: inline-flex;
    width: 186px;
    height: 186px;
    color: hsl(var(--base)/.2);
    animation: updown 1s infinite alternate;
}

@media screen and (max-width: 1599px) {
    .banner-content__shape {
        width: 160px;
        height: 160px;
        right: -30px;
        bottom: -60px;
    }
}

@media screen and (max-width: 1399px) {
    .banner-content__shape {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__shape {
        width: 125px;
        height: 125px;
        right: -20px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__shape {
        width: 100px;
        height: 100px;
        right: -15px;
        bottom: -20px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__shape {
        width: 90px;
        height: 90px;
        right: 0;
    }
}

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

/* Banner Thumb */
.banner-thumb {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 200px;
    max-width: 728px;
}

.banner-thumb img {
    image-rendering: pixelated;
}

@media screen and (max-width: 1799px) {
    .banner-thumb {
        max-width: 650px;
    }
}

@media screen and (max-width: 1599px) {
    .banner-thumb {
        max-width: 600px;
        top: 150px;
    }
}

@media screen and (max-width: 1499px) {
    .banner-thumb {
        max-width: 575px;
        top: 145px;
    }
}

@media screen and (max-width: 1399px) {
    .banner-thumb {
        max-width: 505px;
        top: 130px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-thumb {
        max-width: 425px;
        top: 113px;
    }
}

@media screen and (max-width: 991px) {
    .banner-thumb {
        max-width: 270px;
        top: 100px;
    }
}

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

/* Banner Shape Dog */
.banner-shape-dog {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 55px;
    max-width: 328px;
}

@media screen and (max-width: 1699px) {
    .banner-shape-dog {
        bottom: 75px;
        max-width: 238px;
    }
}

@media screen and (max-width: 1599px) {
    .banner-shape-dog {
        bottom: 125px;
        max-width: 200px;
    }
}

@media screen and (max-width: 1499px) {
    .banner-shape-dog {
        max-width: 120px;
    }
}

@media screen and (max-width: 1399px) {
    .banner-shape-dog {
        bottom: 110px;
        max-width: 150px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-shape-dog {
        bottom: 120px;
        max-width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .banner-shape-dog {
        bottom: 90px;
        max-width: 100px;
    }
}

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

/* Book Service */
.book-service {
    position: relative;
    z-index: 2;
    padding: 16px;
    border-radius: 16px;
    background-color: hsl(var(--white));
    -webkit-box-shadow: 0px 0px 40px 0px hsl(var(--black)/0.21);
    box-shadow: 0px 0px 40px 0px hsl(var(--black)/0.21);
    margin-top: 160px;
}

@media screen and (max-width: 1799px) {
    .book-service {
        margin-top: 145px;
    }
}

@media screen and (max-width: 1699px) {
    .book-service {
        margin-top: 130px;
    }
}

@media screen and (max-width: 1599px) {
    .book-service {
        margin-top: 120px;
    }
}

@media screen and (max-width: 1499px) {
    .book-service {
        margin-top: 100px;
    }
}

@media screen and (max-width: 1399px) {
    .book-service {
        border-radius: 14px;
        margin-top: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .book-service {
        margin-top: 60px;
        padding: 12px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 991px) {
    .book-service {
        padding: 10px;
        border-radius: 10px;
        margin-top: 35px;
    }
}

@media screen and (max-width: 767px) {
    .book-service {
        margin-top: 25px;
    }
}

@media screen and (max-width: 767px) {
    .book-service {
        margin-top: 20px;
    }
}

@media (max-width: 499px) {
    .book-service {
        border-radius: 8px;
        padding: 12px;
    }
}

.book-service__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
    .book-service__top {
        gap: 12px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__top {
        gap: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .book-service__top {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }
}

@media (max-width: 499px) {
    .book-service__top {
        margin-bottom: 15px;
    }
}

.book-service__top .form--radio .form-check-input {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.book-service__top .form--radio .form-check-input::before {
    display: none;
}

.book-service__top .form--radio .form-check-input:checked~.form-check-label {
    border-color: hsl(var(--base));
}

.book-service__top .form--radio .form-check-label {
    width: 100%;
    padding: 9px 15px;
    background-color: #FFFBF5;
    border: 1px solid hsl(var(--black)/0.05);
    border-radius: 8px;
}

@media screen and (max-width: 1199px) {
    .book-service__top .form--radio .form-check-label {
        padding: 7px 13px;
        border-radius: 7px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__top .form--radio .form-check-label {
        border-radius: 6px;
    }
}

@media screen and (max-width: 767px) {
    .book-service__top .form--radio .form-check-label {
        padding: 9.1px 12px;
    }
}

@media screen and (max-width: 575px) {
    .book-service__top .form--radio .form-check-label {
        border-radius: 5px;
    }
}

.book-service__top .form--radio .form-check-label .icon {
    max-width: 46px;
    max-height: 49px;
}

@media screen and (max-width: 1199px) {
    .book-service__top .form--radio .form-check-label .icon {
        max-width: 38px;
        max-height: 40px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__top .form--radio .form-check-label .icon {
        max-width: 35px;
        max-height: 36px;
    }
}

@media screen and (max-width: 767px) {
    .book-service__top .form--radio .form-check-label .icon {
        max-width: 28px;
        max-height: 30px;
    }
}

.book-service__top .form--radio .form-check-label .text {
    width: calc(100% - 46px);
    padding-left: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    color: hsl(var(--heading-color));
}

@media screen and (max-width: 1199px) {
    .book-service__top .form--radio .form-check-label .text {
        width: calc(100% - 38px);
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .book-service__top .form--radio .form-check-label .text {
        width: calc(100% - 35px);
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .book-service__top .form--radio .form-check-label .text {
        width: calc(100% - 28px);
        font-size: 1rem;
        padding-left: 8px;
    }
}

.book-service__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

@media screen and (max-width: 767px) {
    .book-service__bottom {
        grid-template-columns: repeat(2, 1fr);
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 5px;
    }
}

@media (max-width: 499px) {
    .book-service__bottom {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}

.book-service__bottom .form-group {
    position: relative;
}

@media (max-width: 499px) {
    .book-service__bottom .form-group {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 499px) {
    .book-service__bottom .form-group:first-child {
        margin-bottom: 3px !important;
    }
}

@media (max-width: 499px) {
    .book-service__bottom .form-group:last-child {
        margin-bottom: 0 !important;
    }
}

.book-service__bottom .form--control {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    background-color: hsl(var(--white));
    color: hsl(var(--heading-color));
    padding: 28px 15px 13px 44px;
}

@media screen and (max-width: 1199px) {
    .book-service__bottom .form--control {
        padding: 26px 12px 11px 40px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__bottom .form--control {
        padding: 24px 8px 9px 24px;
    }
}

@media screen and (max-width: 767px) {
    .book-service__bottom .form--control {
        padding: 23px 10px 8px 29px;
    }
}

.book-service__bottom .btn {
    width: 100%;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 20px 15px;
}

@media screen and (max-width: 1199px) {
    .book-service__bottom .btn {
        font-size: 1.0625rem;
        padding: 18.5px 15px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__bottom .btn {
        font-size: 1rem;
        padding: 17px 10px;
    }
}

@media screen and (max-width: 767px) {
    .book-service__bottom .btn {
        font-size: 0.9375rem;
        padding: 16.5px 10px;
    }
}

.book-service__bottom .form--label {
    position: absolute;
    z-index: 2;
    left: 13px;
    top: 11px;
    font-size: 0.75rem;
    font-weight: 400;
    color: hsl(var(--body-color-three));
    margin: 0;
}

@media screen and (max-width: 1199px) {
    .book-service__bottom .form--label {
        top: 9px;
        left: 11px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__bottom .form--label {
        top: 8px;
        left: 5px;
    }
}

@media screen and (max-width: 767px) {
    .book-service__bottom .form--label {
        left: 10px;
        top: 7px;
    }
}

.book-service__bottom .form--label .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: inherit;
    width: 20px;
    height: 24px;
}

@media screen and (max-width: 1199px) {
    .book-service__bottom .form--label .icon {
        width: 18px;
        height: 20px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__bottom .form--label .icon {
        width: 16px;
        height: 18px;
    }
}

.book-service__bottom .form--label .text {
    width: calc(100% - 20px);
    padding-left: 12px;
}

@media screen and (max-width: 1199px) {
    .book-service__bottom .form--label .text {
        width: calc(100% - 18px);
        padding-left: 10px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__bottom .form--label .text {
        width: calc(100% - 16px);
        padding-left: 5px;
    }
}

.book-service .select2-container--default .select2-selection--single {
    border-color: #ced4da !important;
    border-width: 1px !important;
    border-radius: .375rem !important;
    padding: 0px !important;
    height: 100% !important;
}

.book-service__bottom .select2.select2-container .select2-selection {
    margin-bottom: 0;
    border-color: hsl(var(--black)/0.1) !important;
    border-radius: 8px !important;
}

@media screen and (max-width: 1199px) {
    .book-service__bottom .select2.select2-container .select2-selection {
        border-radius: 7px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__bottom .select2.select2-container .select2-selection {
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .book-service__bottom .select2.select2-container .select2-selection {
        border-radius: 5px;
    }
}

.book-service__bottom .select2.select2-container .select2-selection .select2-selection__rendered {
    padding: 30px 15px 14px 44px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    color: hsl(var(--heading-color));
    background-color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
    .book-service__bottom .select2.select2-container .select2-selection .select2-selection__rendered {
        padding: 28px 12px 12px 40px;
    }
}

@media screen and (max-width: 991px) {
    .book-service__bottom .select2.select2-container .select2-selection .select2-selection__rendered {
        padding: 26px 10px 10px 25px;
    }
}

@media screen and (max-width: 767px) {
    .book-service__bottom .select2.select2-container .select2-selection .select2-selection__rendered {
        padding: 25px 10px 9px 30px;
    }
}

.book-service__bottom .select2-container .select2-dropdown .select2-results ul li {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.book-service__bottom .select2.select2-container .select2-selection .select2-selection__arrow {
    display: none;
}

.book-service-section {
    padding-top: 105px;
}

@media screen and (max-width: 1399px) {
    .book-service-section {
        padding-top: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .book-service-section {
        padding-top: 75px;
    }
}

@media screen and (max-width: 991px) {
    .book-service-section {
        padding-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .book-service-section {
        padding-top: 50px;
    }
}

@media screen and (max-width: 575px) {
    .book-service-section {
        padding-top: 40px;
    }
}

.book-service-section .book-service {
    max-width: 970px;
    margin: 0 auto;
}

/* =========================== Banner Css End ========================= */
/* ====================== About Css Start ==================== */
.about-section {
    padding: 600px 0 89px;
    margin-top: -543px;
}

@media screen and (max-width: 1399px) {
    .about-section {
        padding: 543px 0 125px;
        margin-top: -543px;
    }
}

@media screen and (max-width: 1199px) {
    .about-section {
        padding: 520px 0 140px;
        margin-top: -520px;
    }
}

@media screen and (max-width: 991px) {
    .about-section {
        padding: 175px 0 70px;
        margin-top: -175px;
    }
}

.about-section.two {
    margin: 0;
    padding: 0;
    padding-top: 105px;
}

@media screen and (max-width: 1399px) {
    .about-section.two {
        padding-top: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .about-section.two {
        padding-top: 75px;
    }
}

@media screen and (max-width: 991px) {
    .about-section.two {
        padding-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .about-section.two {
        padding-top: 50px;
    }
}

@media screen and (max-width: 575px) {
    .about-section.two {
        padding-top: 40px;
    }
}

.about-content__title {
    margin-bottom: 32px;
}

@media screen and (max-width: 1399px) {
    .about-content__title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .about-content__title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .about-content__title {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 424px) {
    .about-content__title {
        margin-bottom: 12px;
    }
}

.about-content__desc {
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 32px;
}

@media screen and (max-width: 1399px) {
    .about-content__desc {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .about-content__desc {
        font-size: 1.0625rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .about-content__desc {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .about-content__desc {
        font-size: 1rem;
    }
}

@media screen and (max-width: 424px) {
    .about-content__desc {
        margin-bottom: 10px;
    }
}

.about-content__desc:last-of-type {
    margin-bottom: 0;
}

.about-content__counter {
    gap: 80px;
    margin-top: 40px;
}

@media screen and (max-width: 1399px) {
    .about-content__counter {
        gap: 50px;
        margin-top: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .about-content__counter {
        margin-top: 25px;
    }
}

@media screen and (max-width: 991px) {
    .about-content__counter {
        margin-top: 20px;
        gap: 60px;
    }
}

@media screen and (max-width: 575px) {
    .about-content__counter {
        margin-top: 15px;
        gap: 20px;
    }
}

.about-content__counter-item {
    width: 170px;
}

@media screen and (max-width: 991px) {
    .about-content__counter-item {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 575px) {
    .about-content__counter-item {
        width: calc(50% - 10px);
    }
}

.about-content__counter-item:last-of-type {
    width: calc(100% - 250px);
}

@media screen and (max-width: 1399px) {
    .about-content__counter-item:last-of-type {
        width: calc(100% - 220px);
    }
}

@media screen and (max-width: 991px) {
    .about-content__counter-item:last-of-type {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 575px) {
    .about-content__counter-item:last-of-type {
        width: calc(50% - 10px);
    }
}

.about-content__counter-item .title {
    line-height: 1;
    margin-bottom: 5px;
}

@media screen and (max-width: 575px) {
    .about-content__counter-item .title {
        font-size: 2.5rem;
    }
}

.about-content__counter-item .title .suffix {
    position: relative;
    right: 25px;
    top: 4px;
}

@media screen and (max-width: 1199px) {
    .about-content__counter-item .title .suffix {
        right: 23px;
        top: 3px;
    }
}

@media screen and (max-width: 991px) {
    .about-content__counter-item .title .suffix {
        right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .about-content__counter-item .title .suffix {
        right: 18px;
        top: 2px;
    }
}

.about-content__counter-item .desc {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    color: hsl(var(--body-color-three));
}

@media screen and (max-width: 1199px) {
    .about-content__counter-item .desc {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .about-content__counter-item .desc {
        font-size: 1rem;
    }
}

.about-content__counter-item .rating-list {
    margin-top: 6px;
}

@media screen and (max-width: 1199px) {
    .about-content__counter-item .rating-list {
        margin-top: 3px;
    }
}

/* ====================== About Css End ==================== */
/* ====================== Service Css Start ==================== */
.service-section {
    position: relative;
    z-index: 2;
}

.service-thumb {
    position: sticky;
    top: 120px;
}

@media screen and (max-width: 1399px) {
    .service-thumb {
        top: 105px;
    }
}

@media screen and (max-width: 1199px) {
    .service-thumb {
        top: 95px;
    }
}

@media screen and (max-width: 991px) {
    .service-thumb {
        position: relative;
        top: unset;
    }
}

.service-thumb img {
    width: 100%;
}

.service-content__title {
    margin-bottom: 54px;
}

@media screen and (max-width: 1399px) {
    .service-content__title {
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 1199px) {
    .service-content__title {
        margin-bottom: 35px;
    }
}

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

@media screen and (max-width: 767px) {
    .service-content__title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 575px) {
    .service-content__title {
        margin-bottom: 20px;
    }
}

.service-item {
    border-bottom: 1px solid hsl(var(--border-color));
    padding-bottom: 32px;
    margin-bottom: 32px;
}

@media screen and (max-width: 1399px) {
    .service-item {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .service-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .service-item {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .service-item {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 424px) {
    .service-item {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item__title {
    margin-bottom: 16px;
}

@media screen and (max-width: 1399px) {
    .service-item__title {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .service-item__title {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 424px) {
    .service-item__title {
        margin-bottom: 8px;
    }
}

/* ====================== Service Css End ==================== */
/* ====================== How It Work Css Start ==================== */
.how-it-work-section {
    position: relative;
    padding: 120px 0 220px;
}

@media screen and (max-width: 1499px) {
    .how-it-work-section {
        padding: 100px 0 200px;
    }
}

@media screen and (max-width: 1399px) {
    .how-it-work-section {
        padding: 85px 0 175px;
    }
}

@media screen and (max-width: 1399px) {
    .how-it-work-section {
        padding: 75px 0 160px;
    }
}

@media screen and (max-width: 1199px) {
    .how-it-work-section {
        padding: 60px 0 150px;
    }
}

@media screen and (max-width: 991px) {
    .how-it-work-section {
        padding: 50px 0 140px;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-section {
        padding: 40px 0 125px;
    }
}

@media screen and (max-width: 575px) {
    .how-it-work-section {
        padding: 40px 0 120px;
    }
}

.how-it-work-section__shape {
    position: absolute;
    left: 0;
    bottom: 225px;
}

@media (max-width: 1899px) {
    .how-it-work-section__shape {
        bottom: 250px;
    }
}

@media screen and (max-width: 1799px) {
    .how-it-work-section__shape {
        bottom: 270px;
    }
}

@media screen and (max-width: 1699px) {
    .how-it-work-section__shape {
        bottom: 300px;
    }
}

@media screen and (max-width: 1599px) {
    .how-it-work-section__shape {
        bottom: unset;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 1499px) {
    .how-it-work-section__shape {
        display: none;
    }
}

.how-it-work-section__shape img {
    max-width: 258px;
}

@media (max-width: 1899px) {
    .how-it-work-section__shape img {
        max-width: 225px;
    }
}

@media screen and (max-width: 1799px) {
    .how-it-work-section__shape img {
        max-width: 190px;
    }
}

@media screen and (max-width: 1699px) {
    .how-it-work-section__shape img {
        max-width: 145px;
    }
}

@media screen and (max-width: 1599px) {
    .how-it-work-section__shape img {
        max-width: 100px;
    }
}

.how-it-work-content__title {
    margin-bottom: 47px;
}

@media screen and (max-width: 1399px) {
    .how-it-work-content__title {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .how-it-work-content__title {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 991px) {
    .how-it-work-content__title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-content__title {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .how-it-work-content__title {
        margin-bottom: 10px;
    }
}

.how-it-work-content__subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    color: hsl(var(--heading-color));
    margin-bottom: 23px;
}

@media screen and (max-width: 1399px) {
    .how-it-work-content__subtitle {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .how-it-work-content__subtitle {
        font-size: 1.0625rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-content__subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

.how-it-work-content__desc {
    margin-bottom: 56px;
}

@media screen and (max-width: 1399px) {
    .how-it-work-content__desc {
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 1199px) {
    .how-it-work-content__desc {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .how-it-work-content__desc {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .how-it-work-content__desc {
        margin-bottom: 15px;
    }
}

.how-it-work-item-wrapper {
    position: relative;
}

.how-it-work-item-wrapper__shape {
    display: inline-flex;
    width: 61px;
    height: 61px;
    color: hsl(var(--base)/.2);
    padding: 0;
    margin: 0;
    position: absolute;
    left: 265px;
    top: 255px;
    -webkit-animation: updown-sm 1s infinite alternate;
    animation: updown-sm 1s infinite alternate;
}

@media screen and (max-width: 1199px) {
    .how-it-work-item-wrapper__shape {
        width: 55px;
        height: 55px;
        left: 225px;
        top: 260px;
    }
}

@media screen and (max-width: 991px) {
    .how-it-work-item-wrapper__shape {
        left: 295px;
        top: 217px;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-item-wrapper__shape {
        left: 210px;
        top: 208px;
    }
}

@media screen and (max-width: 575px) {
    .how-it-work-item-wrapper__shape {
        display: none;
    }
}

.how-it-work-item-wrapper__shape img {
    width: 100%;
    height: 100%;
}

.how-it-work-item-wrapper__shape.two {
    -webkit-animation: downup-sm 1s infinite alternate;
    animation: downup-sm 1s infinite alternate;
    left: 325px;
    top: 297px;
}

@media screen and (max-width: 1199px) {
    .how-it-work-item-wrapper__shape.two {
        left: 275px;
        top: 305px;
    }
}

@media screen and (max-width: 991px) {
    .how-it-work-item-wrapper__shape.two {
        left: 360px;
        top: 255px;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-item-wrapper__shape.two {
        left: 270px;
        top: 238px;
    }
}

@media (min-width: 425px) and (max-width: 575px) {
    .how-it-work-item-wrapper div[class*=col] {
        width: 50%;
    }
}

.how-it-work-item {
    position: relative;
    height: 100%;
}

@media screen and (max-width: 424px) {
    .how-it-work-item {
        height: auto;
    }
}


.how-it-work-item::before {
    -webkit-mask-image: url("../images/thumbs/how-it-work-item-bg.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: hsl(var(--base));
}


.how-it-work-item__bg img {
    width: 100%;
    height: 100%;
}

.how-it-work-item__content {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
}

@media screen and (max-width: 1199px) {
    .how-it-work-item__content {
        padding: 35px 25px;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-item__content {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 575px) {
    .how-it-work-item__content {
        padding: 25px 15px;
    }
}

@media screen and (max-width: 424px) {
    .how-it-work-item__content {
        padding: 28px 20px;
    }
}

.how-it-work-item__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 2px;
}

.how-it-work-item__number {
    font-family: var(--heading-font);
    font-size: 4.375rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: hsl(var(--heading-color)/0.1);
    width: calc(100% - 100px);
}

@media screen and (max-width: 1199px) {
    .how-it-work-item__number {
        width: calc(100% - 75px);
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-item__number {
        width: calc(100% - 60px);
        font-size: 3.125rem;
    }
}

.how-it-work-item__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.how-it-work-item__icon img {
    max-height: 100%;
}

@media screen and (max-width: 1199px) {
    .how-it-work-item__icon {
        width: 75px;
        height: 75px;
    }
}

@media screen and (max-width: 767px) {
    .how-it-work-item__icon {
        width: 60px;
        height: 60px;
    }
}

.how-it-work-item__title {
    margin-bottom: 8px;
}

/* Keyframe */
@-webkit-keyframes updown-sm {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

@keyframes updown-sm {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

@-webkit-keyframes downup-sm {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

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

@keyframes downup-sm {
    0% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

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

/* ====================== How It Work Css End ==================== */
/* ================================ Testimonail Css Start ============================= */
.testimonial-section {
    position: relative;
    padding: 125px 0 125px;
}

@media screen and (max-width: 1699px) {
    .testimonial-section {
        padding: 120px 0 120px;
    }
}

@media screen and (max-width: 1599px) {
    .testimonial-section {
        padding: 115px 0 115px;
    }
}

@media screen and (max-width: 1499px) {
    .testimonial-section {
        padding: 115px 0 105px;
    }
}

@media screen and (max-width: 1399px) {
    .testimonial-section {
        padding: 110px 0 100px;
    }
}

@media screen and (max-width: 1399px) {
    .testimonial-section .section-heading__title {
        font-size: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-section {
        padding: 95px 0 80px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-section {
        padding: 85px 0 60px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-section {
        padding: 75px 0 40px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-section {
        padding: 65px 0 35px;
    }
}

.testimonial-section::before {
    --bg: color-mix(in srgb, hsl(var(--base)) 20%, #fff);
    -webkit-mask-image: url("../images/thumbs/testimonial-bg.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, var(--bg) 0%, #FAFAFA 52.45%);
}

.testimonial-section .section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

@media screen and (max-width: 1699px) {
    .testimonial-section .section-heading {
        margin-bottom: 75px;
    }
}

@media screen and (max-width: 1599px) {
    .testimonial-section .section-heading {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 1499px) {
    .testimonial-section .section-heading {
        margin-bottom: 65px;
    }
}

@media screen and (max-width: 1399px) {
    .testimonial-section .section-heading {
        margin-bottom: 60px;
    }
}

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

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

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

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

@media screen and (max-width: 575px) {
    .testimonial-section .section-heading {
        margin-bottom: 20px;
    }
}

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

@media screen and (max-width: 575px) {
    .testimonial-section .section-heading__title {
        font-size: 1.6875rem;
    }
}

.testimonial-shape {
    position: absolute;
    max-width: 125px;
}

@media screen and (max-width: 1399px) {
    .testimonial-shape {
        max-width: 115px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-shape {
        max-width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-shape {
        max-width: 70px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-shape {
        max-width: 55px;
    }
}

.testimonial-shape img {
    width: 100%;
}

.testimonial-shape.four img,
.testimonial-shape.five img,
.testimonial-shape.six img,
.testimonial-shape.seven img {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    width: 100%;
    -webkit-mask-image: url("../images/thumbs/testimonial-shape-04.png");
    mask-image: url("../images/thumbs/testimonial-shape-04.png");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    object-fit: cover;
    display: block;
}

.testimonial-shape.one {
    z-index: -1;
    top: 118px;
    left: 40px;
    max-width: 279px;
}

@media screen and (max-width: 1699px) {
    .testimonial-shape.one {
        top: 75px;
        left: 25px;
    }
}

@media screen and (max-width: 1599px) {
    .testimonial-shape.one {
        top: 50px;
        left: 20px;
    }
}

@media screen and (max-width: 1499px) {
    .testimonial-shape.one {
        top: 30px;
        left: 15px;
    }
}

@media screen and (max-width: 1399px) {
    .testimonial-shape.one {
        max-width: 230px;
        top: 15px;
        left: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-shape.one {
        max-width: 185px;
        top: -10px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-shape.one {
        max-width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-shape.one {
        max-width: 100px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-shape.one {
        max-width: 80px;
        top: -15px;
        left: 5px;
    }
}

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

.testimonial-shape.two {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -122px;
    max-width: 342px;
}

@media screen and (max-width: 1399px) {
    .testimonial-shape.two {
        top: -115px;
        max-width: 310px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-shape.two {
        top: -100px;
        max-width: 270px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-shape.two {
        top: -85px;
        max-width: 235px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-shape.two {
        top: -70px;
        max-width: 200px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-shape.two {
        top: -50px;
        max-width: 160px;
    }
}

.testimonial-shape.three {
    z-index: -1;
    top: 118px;
    right: 40px;
    max-width: 266px;
}

@media screen and (max-width: 1699px) {
    .testimonial-shape.three {
        top: 100px;
        right: 50px;
    }
}

@media screen and (max-width: 1599px) {
    .testimonial-shape.three {
        top: 65px;
        right: 35px;
    }
}

@media screen and (max-width: 1499px) {
    .testimonial-shape.three {
        top: 50px;
        right: 25px;
    }
}

@media screen and (max-width: 1399px) {
    .testimonial-shape.three {
        max-width: 215px;
        top: 25px;
        right: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-shape.three {
        max-width: 165px;
        top: 10px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-shape.three {
        max-width: 130px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-shape.three {
        max-width: 100px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-shape.three {
        max-width: 80px;
        right: 5px;
        top: 0;
    }
}

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

.testimonial-shape.four {
    left: -10px;
    bottom: 130px;
}

@media screen and (max-width: 1399px) {
    .testimonial-shape.four {
        left: 0;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-shape.four {
        bottom: 105px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-shape.four {
        display: none;
    }
}

.testimonial-shape.five {
    top: -20px;
    left: 220px;
}

@media screen and (max-width: 1199px) {
    .testimonial-shape.five {
        left: 190px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-shape.five {
        left: 120px;
        top: 0;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-shape.five {
        left: 90px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-shape.five {
        display: none;
    }
}

.testimonial-shape.six {
    top: -20px;
    right: 220px;
}

@media screen and (max-width: 1199px) {
    .testimonial-shape.six {
        right: 190px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-shape.six {
        right: 120px;
        top: 0;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-shape.six {
        right: 90px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-shape.six {
        display: none;
    }
}

.testimonial-shape.seven {
    right: 0;
    bottom: 10px;
}

@media screen and (max-width: 1399px) {
    .testimonial-shape.seven {
        bottom: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-shape.seven {
        bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-shape.seven {
        display: none;
    }
}

.testimonial-wrapper {
    position: relative;
}

.testimonial-wrapper .stroke-text {
    font-family: var(--heading-font);
    position: absolute;
    bottom: -7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 15rem;
    line-height: 1.1364;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke-width: 0.97px;
    -webkit-text-stroke-color: hsl(var(--black)/0.05);
    white-space: nowrap;
}

@media screen and (max-width: 1399px) {
    .testimonial-wrapper .stroke-text {
        font-size: 13.75rem;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-wrapper .stroke-text {
        font-size: 10.3125rem;
        bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-wrapper .stroke-text {
        font-size: 8.4375rem;
        bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-wrapper .stroke-text {
        font-size: 6.625rem;
        bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-wrapper .stroke-text {
        display: none;
    }
}

.testimonial-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonial-item__author {
    position: relative;
    width: 237px;
    height: 205px;
    margin: 0 auto 30px;
}

@media screen and (max-width: 1399px) {
    .testimonial-item__author {
        width: 210px;
        height: 182px;
        margin: 0 auto 25px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-item__author {
        width: 185px;
        height: 160px;
        margin: 0 auto 15px;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-item__author {
        width: 140px;
        height: 121px;
        margin: 0 auto 10px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item__author {
        width: 115px;
        height: 100px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-item__author {
        width: 105px;
        height: 91px;
        margin: 0 auto 5px;
    }
}

.testimonial-item__author img {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    width: 100%;
    -webkit-mask-image: url("../images/thumbs/testimonial-author.png");
    mask-image: url("../images/thumbs/testimonial-author.png");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    object-fit: cover;
    display: block;
}

.testimonial-item__desc {
    font-size: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.45833;
    color: hsl(var(--body-color-four));
    max-width: 765px;
    margin: 0 auto;
}

@media screen and (max-width: 1399px) {
    .testimonial-item__desc {
        max-width: 690px;
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-item__desc {
        max-width: 615px;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-item__desc {
        max-width: 535px;
        font-size: 1.125rem;
    }
}

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

@media screen and (max-width: 575px) {
    .testimonial-item__desc {
        max-width: 100%;
        font-size: 1rem;
    }
}

.testimonial-slider .slider-track {
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.testimonial-slider.slick-active img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (min-width: 425px) and (max-width: 575px) {
    .testimonial-item-two-wrapper div[class*=col]:nth-child(odd) {
        padding-right: 6px;
    }
}

@media (min-width: 425px) and (max-width: 575px) {
    .testimonial-item-two-wrapper div[class*=col]:nth-child(even) {
        padding-left: 6px;
    }
}

.testimonial-item-two {
    background: hsl(var(--white));
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow-five);
    box-shadow: var(--box-shadow-five);
    height: 100%;
}

@media screen and (max-width: 1199px) {
    .testimonial-item-two {
        border-radius: 10px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item-two {
        border-radius: 8px;
    }
}

.testimonial-item-two__thumb img {
    width: 100%;
}

.testimonial-item-two__content {
    text-align: center;
    padding: 20px 25px 25px;
}

@media screen and (max-width: 1399px) {
    .testimonial-item-two__content {
        padding: 18px 20px 22px;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-item-two__content {
        padding: 18px 20px 20px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item-two__content {
        padding: 15px 15px 18px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-item-two__content {
        padding: 15px 12px;
    }
}

@media screen and (max-width: 424px) {
    .testimonial-item-two__content {
        padding: 15px;
    }
}

.testimonial-item-two__title {
    line-height: 1.3;
    margin-bottom: 0;
}

.testimonial-item-two__from {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: hsl(var(--heading-color));
    margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
    .testimonial-item-two__from {
        font-size: 0.9375rem;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item-two__from {
        font-size: 0.875rem;
        margin-bottom: 8px;
    }
}

.testimonial-item-two__desc {
    font-size: 1.125rem;
    line-height: 1.3;
}

@media screen and (max-width: 1199px) {
    .testimonial-item-two__desc {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item-two__desc {
        font-size: 1rem;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-item-two__desc {
        font-size: 0.9375rem;
    }
}

.testimonial-item-two .rating-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1199px) {
    .testimonial-item-two .rating-list {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item-two .rating-list {
        margin-bottom: 8px;
        gap: 4px;
    }
}

.testimonial-item-two .rating-list__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background: hsl(var(--success));
    font-size: 0.875rem;
    color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
    .testimonial-item-two .rating-list__item {
        width: 20px;
        height: 20px;
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item-two .rating-list__item {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }
}

/* ================================ Testimonail Css End ============================= */
/* ====================== Coundown Css Start ==================== */
.coundown-section {
    position: relative;
    padding-bottom: 110px;
}

@media screen and (max-width: 1399px) {
    .coundown-section {
        padding-bottom: 100px;
    }
}

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

@media screen and (max-width: 767px) {
    .coundown-section {
        padding-bottom: 30px;
    }
}

.coundown-section__shape {
    position: absolute;
}

@media screen and (max-width: 575px) {
    .coundown-section__shape {
        display: none;
    }
}

.coundown-section__shape.same {
    display: inline-flex;
    width: 257px;
    height: 257px;
    color: hsl(var(--base)/.2);
}

@media screen and (max-width: 1699px) {
    .coundown-section__shape.same {
        width: 230px;
        height: 230px;
    }
}

@media screen and (max-width: 1499px) {
    .coundown-section__shape.same {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 1399px) {
    .coundown-section__shape.same {
        width: 170px;
        height: 170px;
    }
}

@media screen and (max-width: 1199px) {
    .coundown-section__shape.same {
        width: 85px;
        height: 85px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-section__shape.same {
        width: 55px;
        height: 55px;
    }
}

@media screen and (max-width: 767px) {
    .coundown-section__shape.same {
        width: 45px;
        height: 45px;
    }
}

.coundown-section__shape.one {
    bottom: 0px;
    left: 100px;
    -webkit-animation: updown 1s infinite alternate;
    animation: updown 1s infinite alternate;
}

@media screen and (max-width: 1599px) {
    .coundown-section__shape.one {
        left: 70px;
    }
}

@media screen and (max-width: 1499px) {
    .coundown-section__shape.one {
        left: 50px;
    }
}

@media screen and (max-width: 1399px) {
    .coundown-section__shape.one {
        left: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .coundown-section__shape.one {
        left: 15px;
        bottom: unset;
        top: 10%;
    }
}

@media screen and (max-width: 991px) {
    .coundown-section__shape.one {
        display: none;
    }
}

.coundown-section__shape.two {
    top: 10px;
    right: 20px;
    -webkit-animation: updown 1.5s infinite alternate;
    animation: updown 1.5s infinite alternate;
}

@media screen and (max-width: 1599px) {
    .coundown-section__shape.two {
        right: 10px;
    }
}


@media screen and (max-width: 1199px) {
    .coundown-section__shape.two {
        display: none;
    }
}

.coundown-section__shape.three {
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 1199px) {
    .coundown-section__shape.three {
        bottom: unset;
        top: 10%;
    }
}

@media screen and (max-width: 991px) {
    .coundown-section__shape.three {
        top: 15%;
    }
}

@media screen and (max-width: 1599px) {
    .coundown-section__shape.three img {
        max-width: 400px;
    }
}

@media screen and (max-width: 1399px) {
    .coundown-section__shape.three img {
        max-width: 350px;
    }
}

@media screen and (max-width: 1199px) {
    .coundown-section__shape.three img {
        max-width: 300px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-section__shape.three img {
        max-width: 250px;
    }
}

@media screen and (max-width: 767px) {
    .coundown-section__shape.three img {
        max-width: 200px;
    }
}

.coundown-item-wrapper {
    position: relative;
    padding: 110px 0 300px;
}

@media screen and (max-width: 1399px) {
    .coundown-item-wrapper {
        padding: 90px 0 275px;
    }
}

@media screen and (max-width: 1199px) {
    .coundown-item-wrapper {
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 575px) {
    .coundown-item-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 10px;
    }
}

@media screen and (max-width: 424px) {
    .coundown-item-wrapper {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 10px;
    }
}

.coundown-item {
    position: relative;
    z-index: 2;
    width: 306px;
    height: 374px;
}

@media screen and (max-width: 1399px) {
    .coundown-item {
        width: 265px;
        height: 323px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-item {
        width: 220px;
        height: 269px;
    }
}

@media screen and (max-width: 575px) {
    .coundown-item {
        width: 185px;
        height: 226px;
    }
}

.coundown-item.two {
    position: absolute;
    right: 5px;
    top: 0;
}

@media screen and (max-width: 1199px) {
    .coundown-item.two {
        position: relative;
        right: unset;
        top: unset;
    }
}

.coundown-item.three {
    position: absolute;
    right: 99px;
    bottom: 0;
}

@media screen and (max-width: 1199px) {
    .coundown-item.three {
        position: relative;
        right: unset;
        bottom: unset;
    }
}

@media screen and (max-width: 767px) {
    .coundown-item.three {
        margin: 0 auto;
    }
}

.coundown-item.three .coundown-item__content {
    bottom: 90px;
}

@media screen and (max-width: 1199px) {
    .coundown-item.three .coundown-item__content {
        bottom: 70px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-item.three .coundown-item__content {
        bottom: 45px;
    }
}


.coundown-item::after {
    -webkit-mask-image: url("../images/thumbs/coundown-item-masking-bg.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    background: hsl(var(--base));
}

.coundown-item__bg img {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: -1;
}

.coundown-item__content {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 115px;
    width: 100%;
    text-align: center;
    padding: 0 15px;
}

@media screen and (max-width: 1199px) {
    .coundown-item__content {
        bottom: 90px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-item__content {
        bottom: 65px;
        padding: 0 10px;
    }
}

.coundown-item__icon {
    margin-bottom: 10px;
}

.coundown-item__icon img {
    max-width: 63px;
    max-height: 57px;
}

@media screen and (max-width: 991px) {
    .coundown-item__icon img {
        max-width: 50px;
        max-height: 45px;
    }
}

@media screen and (max-width: 575px) {
    .coundown-item__icon img {
        max-width: 40px;
        max-height: 37px;
    }
}

.coundown-item__number,
.coundown-item__title {
    display: block !important;
    margin-bottom: 2px;
}

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

    .coundown-item__number,
    .coundown-item__title {
        font-size: 1.875rem;
    }
}

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

    .coundown-item__number,
    .coundown-item__title {
        font-size: 1.5625rem;
    }
}

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

    .coundown-item__number,
    .coundown-item__title {
        font-size: 1.25rem;
    }
}

.coundown-item__desc {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
    line-height: 1.3;
    text-transform: uppercase;
    padding: 0 24px;
}

@media screen and (max-width: 1399px) {
    .coundown-item__desc {
        padding: 0 15px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-item__desc {
        font-size: 1rem;
        padding: 0;
    }
}

@media screen and (max-width: 575px) {
    .coundown-item__desc {
        font-size: 0.875rem;
    }
}

.coundown-content {
    position: relative;
    z-index: 2;
    padding-left: 60px;
}

@media screen and (max-width: 1399px) {
    .coundown-content {
        padding-left: 0;
    }
}

.coundown-content__title {
    padding-right: 55px;
    margin-bottom: 54px;
}

@media screen and (max-width: 1399px) {
    .coundown-content__title {
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 1199px) {
    .coundown-content__title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-content__title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .coundown-content__title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .coundown-content__title {
        padding-right: 0;
    }
}

.coundown-content__buttons {
    gap: 30px;
    margin-top: 33px;
}

@media screen and (max-width: 1199px) {
    .coundown-content__buttons {
        gap: 25px;
        margin-top: 25px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-content__buttons {
        gap: 20px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .coundown-content__buttons {
        gap: 15px;
        margin-top: 15px;
    }
}

.coundown-content__buttons .video-btn {
    width: 56px;
    height: 56px;
    background: hsl(var(--base));
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--black));
    font-size: 1.25rem;
    -webkit-animation: video-shadows 1s infinite linear;
    animation: video-shadows 1s infinite linear;
}

@media screen and (max-width: 1399px) {
    .coundown-content__buttons .video-btn {
        font-size: 1.1875rem;
        width: 54px;
        height: 54px;
    }
}

@media screen and (max-width: 1199px) {
    .coundown-content__buttons .video-btn {
        font-size: 1.125rem;
        width: 52px;
        height: 52px;
    }
}

@media screen and (max-width: 991px) {
    .coundown-content__buttons .video-btn {
        font-size: 1.0625rem;
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 767px) {
    .coundown-content__buttons .video-btn {
        width: 48px;
        height: 48px;
    }
}

@media screen and (max-width: 575px) {
    .coundown-content__buttons .video-btn {
        width: 46px;
        height: 46px;
    }
}

.coundown-content__buttons .video-btn:hover {
    background: hsl(var(--base-d-200));
}

.coundown-content-item-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 40px;
    -webkit-column-gap: 48px;
    -moz-column-gap: 48px;
    column-gap: 48px;
}

@media screen and (max-width: 1399px) {
    .coundown-content-item-wrapper {
        row-gap: 30px;
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .coundown-content-item-wrapper {
        row-gap: 20px;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .coundown-content-item-wrapper {
        row-gap: 15px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

@media screen and (max-width: 575px) {
    .coundown-content-item-wrapper {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

.coundown-content-item {
    max-width: 264px;
}

@media screen and (max-width: 1199px) {
    .coundown-content-item {
        max-width: 100%;
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 767px) {
    .coundown-content-item {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 575px) {
    .coundown-content-item {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 424px) {
    .coundown-content-item {
        width: 100%;
    }
}

.coundown-content-item__top {
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .coundown-content-item__top {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 575px) {
    .coundown-content-item__top {
        margin-bottom: 5px;
    }
}

.coundown-content-item__icon {
    font-size: 2rem;
    color: hsl(var(--base));
    line-height: 1;
}

@media screen and (max-width: 575px) {
    .coundown-content-item__icon {
        font-size: 1.625rem;
    }
}

.coundown-content-item__icon img {
    max-width: 100%;
}

.coundown-content-item__title {
    width: calc(100% - 32px);
    padding: 0 18px 0 10px;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .coundown-content-item__title {
        padding: 0 15px 0 10px;
    }
}

@media screen and (max-width: 575px) {
    .coundown-content-item__title {
        width: calc(100% - 26px);
        padding: 0 0 0 8px;
    }
}

.coundown-content-item__desc {
    padding-right: 0;
}

@-webkit-keyframes video-shadows {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base)/0.09), 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09);
        box-shadow: 0 0 0 0 hsl(var(--base)/0.09), 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09);
    }

    100% {
        -webkit-box-shadow: 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09), 0 0 0 30px hsl(var(--white)/0);
        box-shadow: 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09), 0 0 0 30px hsl(var(--white)/0);
    }
}

@keyframes video-shadows {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base)/0.09), 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09);
        box-shadow: 0 0 0 0 hsl(var(--base)/0.09), 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09);
    }

    100% {
        -webkit-box-shadow: 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09), 0 0 0 30px hsl(var(--white)/0);
        box-shadow: 0 0 0 8px hsl(var(--base)/0.09), 0 0 0 20px hsl(var(--base)/0.09), 0 0 0 30px hsl(var(--white)/0);
    }
}

/* ====================== Coundown Css End ==================== */
/* ====================== CTA Css Start ==================== */
.cta-section {
    position: relative;
    z-index: 2;
    padding: 150px 0 100px;
}

@media screen and (max-width: 1399px) {
    .cta-section {
        padding: 120px 0 85px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 767px) {
    .cta-section {
        padding: 50px 0;
    }
}

@media screen and (max-width: 575px) {
    .cta-section {
        padding: 40px 0;
    }
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-wrapper__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-wrapper__bg::after {
    content: '';
    --bg: color-mix(in srgb, hsl(var(--base-d-100)) 60%, #000);
    background-color: var(--bg);
    -webkit-mask-image: url("../images/thumbs/cta-bg.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -2;
}

.cta-wrapper__bg::before {

    --bg: color-mix(in srgb, hsl(var(--base-d-300)) 50%, #000);
    content: '';
    width: 1083px;
    height: 1083px;
    border-radius: 100%;
    background-color: var(--bg);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% - 260px);
    z-index: -1;
}

@media screen and (max-width: 1390px) {
    .cta-wrapper__bg::before {
        top: calc(100% - 150px);
    }
}

@media screen and (max-width: 991px) {
    .cta-wrapper__bg::before {
        top: calc(100% - 80px);
    }
}

@media screen and (max-width: 768px) {
    .cta-wrapper__bg::before {}
}

@media screen and (max-width: 767px) {
    .cta-wrapper {
        --bg: color-mix(in srgb, hsl(var(--base-d-100)) 60%, #000);
        background-color: var(--bg) !important;
        overflow: hidden;
        border-radius: 12px;
    }
}



.cta-wrapper.bg-img {
    background-size: contain !important;
    background-position: center bottom !important;
}

.cta-thumb {
    position: absolute;
    left: 95px;
    bottom: 15px;
}

@media screen and (max-width: 1499px) {
    .cta-thumb {
        left: 60px;
    }
}

@media screen and (max-width: 1399px) {
    .cta-thumb {
        left: 50px;
        bottom: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-thumb {
        left: 30px;
    }
}

@media screen and (max-width: 991px) {
    .cta-thumb {
        left: 15px;
    }
}

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

.cta-thumb img {
    max-width: 376px;
}

@media screen and (max-width: 1499px) {
    .cta-thumb img {
        max-width: 335px;
    }
}

@media screen and (max-width: 1399px) {
    .cta-thumb img {
        max-width: 270px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-thumb img {
        max-width: 240px;
    }
}

@media screen and (max-width: 991px) {
    .cta-thumb img {
        max-width: 185px;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 565px;
    padding: 115px 0 105px 50px;
}

@media screen and (max-width: 1499px) {
    .cta-content {
        max-width: 550px;
    }
}

@media screen and (max-width: 1399px) {
    .cta-content {
        max-width: 425px;
        padding: 118px 0 60px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-content {
        max-width: 355px;
        padding: 100px 0 35px;
    }
}

@media screen and (max-width: 991px) {
    .cta-content {
        max-width: 100%;
        padding: 67px 40px 25px 0;
    }
}

@media screen and (max-width: 767px) {
    .cta-content {
        max-width: 100%;
        padding: 35px 65px 30px;
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    .cta-content {
        padding: 35px 25px 30px;
    }
}

@media screen and (max-width: 424px) {
    .cta-content {
        padding: 25px 15px 20px;
    }
}

.cta-content__title {
    margin-bottom: 25px;
}

@media screen and (max-width: 1399px) {
    .cta-content__title {
        margin-bottom: 15px;
        font-size: 2.375rem;
    }
}

@media screen and (max-width: 1199px) {
    .cta-content__title {
        margin-bottom: 10px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 991px) {
    .cta-content__title {
        max-width: 300px;
        font-size: 1.75rem;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 767px) {
    .cta-content__title {
        max-width: 100%;
        font-size: 1.5625rem;
        margin-bottom: 15px;
    }
}

.cta-content__desc {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    color: hsl(var(--white)/0.7);
    margin-bottom: 36px;
}

@media screen and (max-width: 1399px) {
    .cta-content__desc {
        font-size: 1.0625rem;
        margin-bottom: 28px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-content__desc {
        font-size: 1rem;
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 991px) {
    .cta-content__desc {
        font-size: 0.9375rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .cta-content__desc {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .cta-content__desc {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .cta-content .btn {
        padding: 14px 15px;
    }
}

.cta-shape {
    position: absolute;
    right: -150px;
    top: -100px;
    -webkit-animation: bounce 1.5s 1.5s linear infinite alternate;
    animation: bounce 1.5s 1.5s linear infinite alternate;
}

@media screen and (max-width: 1699px) {
    .cta-shape {
        right: -120px;
    }
}

@media screen and (max-width: 1599px) {
    .cta-shape {
        right: -90px;
    }
}

@media screen and (max-width: 1499px) {
    .cta-shape {
        right: -45px;
    }
}

@media screen and (max-width: 1399px) {
    .cta-shape {
        right: -25px;
        top: -70px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-shape {
        right: -15px;
        top: -25px;
    }
}

@media screen and (max-width: 767px) {
    .cta-shape {
        right: 0;
    }
}

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

.cta-shape img {
    max-width: 163px;
    max-height: 163px;
}

@media screen and (max-width: 1699px) {
    .cta-shape img {
        max-width: 155px;
        max-height: 155px;
    }
}

@media screen and (max-width: 1599px) {
    .cta-shape img {
        max-width: 145px;
        max-height: 145px;
    }
}

@media screen and (max-width: 1499px) {
    .cta-shape img {
        max-width: 140px;
        max-height: 140px;
    }
}

@media screen and (max-width: 1399px) {
    .cta-shape img {
        max-width: 110px;
        max-height: 110px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-shape img {
        max-width: 85px;
        max-height: 85px;
    }
}

@media screen and (max-width: 991px) {
    .cta-shape img {
        max-width: 75px;
        max-height: 75px;
    }
}

@media screen and (max-width: 767px) {
    .cta-shape img {
        max-width: 65px;
        max-height: 65px;
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

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

/* ====================== CTA Css End ==================== */
/* ====================== Why Choose Css Start ==================== */
.why-choose-section {
    margin-top: 110px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1399px) {
    .why-choose-section {
        margin-top: 70px;
    }
}

@media screen and (max-width: 1199px) {
    .why-choose-section {
        margin-top: 25px;
    }
}

@media screen and (max-width: 991px) {
    .why-choose-section {
        margin-top: 0px;
    }
}

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

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

@media screen and (max-width: 991px) {
    .why-choose-section .btn {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-section .btn {
        margin-bottom: 15px;
    }
}

.why-choose-section.two .section-heading {
    max-width: 480px;
}

@media screen and (max-width: 991px) {
    .why-choose-section.two .section-heading {
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .why-choose-section.two .section-heading__title {
        text-align: center;
        max-width: 420px;
        margin: 0 auto;
    }
}

.why-choose-item {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.08);
    border-radius: 12px;
    padding: 27px 16px 25px 24px;
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .why-choose-item {
        padding: 22px 12px 20px 18px;
    }
}

@media screen and (max-width: 1199px) {
    .why-choose-item {
        border-radius: 10px;
        padding: 18px 12px 18px 15px;
    }
}

@media screen and (max-width: 575px) {
    .why-choose-item {
        border-radius: 8px;
    }
}

.why-choose-item__top {
    margin-bottom: 10px;
}

.why-choose-item__icon {
    width: 36px;
    height: 36px;
}

@media screen and (max-width: 1199px) {
    .why-choose-item__icon {
        width: 32px;
        height: 32px;
    }
}

.why-choose-item__icon img {
    max-height: 100%;
}

.why-choose-item__title {
    max-width: 190px;
    width: calc(100% - 36px);
    padding-left: 10px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1199px) {
    .why-choose-item__title {
        width: calc(100% - 32px);
        padding-left: 8px;
        max-width: 100%;
    }
}

@media screen and (max-width: 1199px) {
    .why-choose-item__desc {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-item__desc {
        font-size: 0.875rem;
    }
}

.why-choose-thumb {
    text-align: right;
}

@media screen and (max-width: 991px) {
    .why-choose-thumb {
        text-align: center;
    }
}

/* ====================== Why Choose Css End ==================== */
/* ====================== FAQ Css Start ==================== */
.faq-section {
    position: relative;
    padding: 234px 0;
    margin: -120px 0 -131px;
}

.faq-section::before {
    -webkit-mask-image: url("../images/thumbs/faq-bg.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: hsl(var(--base)/.1);
}

@media screen and (max-width: 1399px) {
    .faq-section {
        padding: 190px 0;
        margin: -135px 0;
    }
}

@media screen and (max-width: 767px) {
    .faq-section {
        padding: 175px 0;
        margin: -140px 0;
    }
}

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

/* ====================== FAQ Css End ==================== */
/* ====================== Download App Css Start ==================== */
.download-app-section {
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
}

@media screen and (max-width: 1399px) {
    .download-app-section {
        padding-bottom: 105px;
    }
}

@media screen and (max-width: 1199px) {
    .download-app-section {
        padding-bottom: 95px;
    }
}

@media screen and (max-width: 991px) {
    .download-app-section {
        padding-bottom: 75px;
    }
}

@media screen and (max-width: 767px) {
    .download-app-section {
        padding-bottom: 55px;
    }
}

@media screen and (max-width: 575px) {
    .download-app-section {
        padding-bottom: 45px;
    }
}

@media screen and (max-width: 424px) {
    .download-app-section {
        padding-bottom: 40px;
    }
}

.download-app-content__title {
    margin-bottom: 40px;
}

@media screen and (max-width: 1399px) {
    .download-app-content__title {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .download-app-content__title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .download-app-content__title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .download-app-content__title {
        margin-bottom: 15px;
    }
}

.download-app-content__desc {
    max-width: 400px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.33;
    color: hsl(var(--heading-color));
    margin-bottom: 30px;
}

@media screen and (max-width: 1399px) {
    .download-app-content__desc {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .download-app-content__desc {
        font-size: 1.0625rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .download-app-content__desc {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

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

@media screen and (max-width: 424px) {
    .download-app-content__desc {
        font-size: 0.9375rem;
    }
}

.download-app-content__list {
    margin-bottom: 60px;
}

@media screen and (max-width: 1399px) {
    .download-app-content__list {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .download-app-content__list {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .download-app-content__list {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .download-app-content__list {
        margin-bottom: 25px;
    }
}

.download-app-content__list-item {
    position: relative;
    font-size: 1rem;
    line-height: 1.25;
    padding-left: 32px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
    .download-app-content__list-item {
        padding-left: 28px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 991px) {
    .download-app-content__list-item {
        font-size: 0.9375rem;
        padding-left: 25px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 424px) {
    .download-app-content__list-item {
        font-size: 0.875rem;
        padding-left: 20px;
        margin-bottom: 12px;
    }
}

.download-app-content__list-item:last-child {
    margin-bottom: 0;
}

.download-app-content__list-item::before,
.download-app-content__list-item::after {
    position: absolute;
    content: "";
    background: hsl(var(--base-d-200));
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

    .download-app-content__list-item::before,
    .download-app-content__list-item::after {
        width: 12px;
        height: 12px;
    }
}

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

    .download-app-content__list-item::before,
    .download-app-content__list-item::after {
        width: 10px;
        height: 10px;
    }
}

.download-app-content__list-item::after {
    width: 8px;
    height: 8px;
    left: 4px;
    background: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .download-app-content__list-item::after {
        width: 6px;
        height: 6px;
        left: 3px;
    }
}

@media screen and (max-width: 424px) {
    .download-app-content__list-item::after {
        width: 5px;
        height: 5px;
        left: 2.5px;
    }
}

.download-app-content__buttons {
    gap: 30px;
}

@media screen and (max-width: 1199px) {
    .download-app-content__buttons {
        gap: 25px;
    }
}

@media screen and (max-width: 991px) {
    .download-app-content__buttons {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .download-app-content__buttons {
        gap: 15px;
    }
}

@media screen and (max-width: 424px) {
    .download-app-content__buttons {
        gap: 12px;
    }
}

.download-app-content__buttons-item {
    max-width: 195px;
    max-height: 64px;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 1399px) {
    .download-app-content__buttons-item {
        max-width: 180px;
        max-height: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .download-app-content__buttons-item {
        max-width: 170px;
        max-height: 58px;
    }
}

@media screen and (max-width: 991px) {
    .download-app-content__buttons-item {
        max-width: 150px;
        max-height: 51px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 767px) {
    .download-app-content__buttons-item {
        max-width: 136px;
        max-height: 47px;
    }
}

.download-app-content__buttons-item img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.download-app-content__buttons-item:hover>img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/* ====================== Download App Css End ==================== */
/* =============================== Brand Css Start ======================= */
.brand-section {
    position: relative;
    padding-bottom: 110px;
}

@media screen and (max-width: 1399px) {
    .brand-section {
        padding-bottom: 95px;
    }
}

@media screen and (max-width: 1199px) {
    .brand-section {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 991px) {
    .brand-section {
        padding-bottom: 55px;
    }
}

@media screen and (max-width: 767px) {
    .brand-section {
        padding-bottom: 45px;
    }
}

@media screen and (max-width: 575px) {
    .brand-section {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 424px) {
    .brand-section {
        padding-bottom: 35px;
    }
}

@media screen and (max-width: 575px) {
    .brand-slider-wrapper {
        overflow: hidden;
    }
}

.brand-slider-1 {
    margin-bottom: 46px !important;
}

@media screen and (max-width: 1399px) {
    .brand-slider-1 {
        margin-bottom: 35px !important;
    }
}

@media screen and (max-width: 1199px) {
    .brand-slider-1 {
        margin-bottom: 30px !important;
    }
}

@media screen and (max-width: 991px) {
    .brand-slider-1 {
        margin-bottom: 25px !important;
    }
}

@media screen and (max-width: 767px) {
    .brand-slider-1 {
        margin-bottom: 20px !important;
    }
}

.brand-slider-item {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brand-slider-item img {
    max-width: 287px;
    max-height: 66px;
}

@media screen and (max-width: 1399px) {
    .brand-slider-item img {
        max-width: 265px;
        max-height: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .brand-slider-item img {
        max-width: 200px;
        max-height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .brand-slider-item img {
        max-width: 155px;
        max-height: 36px;
    }
}

@media screen and (max-width: 575px) {
    .brand-slider-item img {
        max-width: 120px;
        max-height: 28px;
    }
}

/* =============================== Brand Css End ======================= */
/* ====================== Benifit Css Start ==================== */
@media (min-width: 425px) and (max-width: 575px) {
    .benifit-item-wrapper div[class*=col]:nth-child(odd) {
        padding-right: 6px;
    }
}

@media (min-width: 425px) and (max-width: 575px) {
    .benifit-item-wrapper div[class*=col]:nth-child(even) {
        padding-left: 6px;
    }
}

.benifit-item {
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 12px;
    padding: 27px 19px 25px 24px;
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .benifit-item {
        padding: 22px 15px;
    }
}

@media screen and (max-width: 1199px) {
    .benifit-item {
        padding: 22px 20px;
    }
}

@media screen and (max-width: 767px) {
    .benifit-item {
        padding: 22px 15px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 575px) {
    .benifit-item {
        padding: 18px 12px;
        border-radius: 8px;
    }
}

.benifit-item__top {
    margin-bottom: 10px;
}

@media screen and (max-width: 575px) {
    .benifit-item__top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.benifit-item__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 35px;
    height: 35px;
    color: hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .benifit-item__icon {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 575px) {
    .benifit-item__icon {
        width: 28px;
        height: 28px;
    }
}

.benifit-item__title {
    width: calc(100% - 35px);
    padding-left: 10px;
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .benifit-item__title {
        width: calc(100% - 32px);
        padding-left: 8px;
    }
}

@media screen and (max-width: 575px) {
    .benifit-item__title {
        width: calc(100% - 28px);
        padding-left: 5px;
    }
}

/* ====================== Benifit Css End ==================== */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    padding: 137px 0 142px;
}

@media screen and (max-width: 1399px) {
    .breadcrumb {
        padding: 120px 0 130px;
    }
}

@media screen and (max-width: 1199px) {
    .breadcrumb {
        padding: 100px 0 115px;
    }
}

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

@media screen and (max-width: 767px) {
    .breadcrumb {
        padding: 90px 0 100px;
    }
}

.breadcrumb::before,
.breadcrumb::after {
    -webkit-mask-image: url("../images/thumbs/breadcrumb-bg-02.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: hsl(var(--base)/.3);
    z-index: -1;
}

.breadcrumb::after {
    -webkit-mask-image: url("../images/thumbs/breadcrumb-bg-01.png");

    background: color-mix(in srgb, hsl(var(--base-d-200)) 16%, #fff);
    z-index: 1;
}

.breadcrumb__title {
    position: relative;
    z-index: 3;
    margin-bottom: 14px;
}

@media screen and (max-width: 1199px) {
    .breadcrumb__title {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb__title {
        margin-bottom: 7px;
    }
}

.breadcrumb__list {
    position: relative;
    z-index: 3;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: hsl(var(--base));
    border-radius: 4px;
    padding: 9px 13px;
}

.breadcrumb__item {
    font-size: 1.125rem;
    color: hsl(var(--white));
    font-weight: 600;
    line-height: 1;
    margin-right: 5px;
}

@media screen and (max-width: 1199px) {
    .breadcrumb__item {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb__item {
        font-size: 1rem;
    }
}

@media screen and (max-width: 575px) {
    .breadcrumb__item {
        font-size: 0.9375rem;
    }
}

.breadcrumb__item:last-child {
    margin-right: 0;
}

.breadcrumb__link {
    color: inherit;
}

.breadcrumb__link:hover {
    color: hsl(var(--white));
    text-decoration: underline;
}

.breadcrumb__shape {
    position: absolute;
    z-index: 2;
    left: 27px;
    top: 124px;
    display: inline-flex;
    width: 186px;
    height: 186px;
    color: hsl(var(--base)/.2);
    animation: downup-sm 1s infinite alternate;
}

.breadcrumb__shape.two {
    width: 122px;
    height: 122px;
    left: unset;
    right: 130px;
    top: 95px;
    animation: updown-sm 1s infinite alternate;
}

@media screen and (max-width: 1799px) {
    .breadcrumb__shape.two {
        right: 75px;
    }
}

@media screen and (max-width: 1699px) {
    .breadcrumb__shape {
        width: 150px;
        height: 150px;
        left: 10px;
    }

    .breadcrumb__shape.two {
        width: 100px;
        height: 100px;
        right: 50px;
    }
}

@media screen and (max-width: 1599px) {
    .breadcrumb__shape {
        width: 115px;
        height: 115px;
        left: 0;
    }

    .breadcrumb__shape.two {
        width: 70px;
        height: 70px;
        right: 20px;
    }
}

@media screen and (max-width: 1499px) {
    .breadcrumb__shape {
        width: 100px;
        height: 100px;
    }

    .breadcrumb__shape.two {
        width: 50px;
        height: 50px;
        right: 10px;
    }
}

@media screen and (max-width: 1399px) {
    .breadcrumb__shape {
        width: 90px;
        height: 90px;
    }

    .breadcrumb__shape.two {
        right: 0;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb__shape {
        width: 75px;
        height: 75px;
        top: 95px;
    }

    .breadcrumb__shape.two {
        width: 45px;
        height: 45px;
        top: 75px;
    }
}

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

/* ====================== Breadcrumb Css End ==================== */
/* ================================= Blog Css Start ============================= */
.blog-item {
    position: relative;
    background: hsl(var(--white));
    height: 100%;
}

.blog-item:hover .blog-item__thumb img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.blog-item__thumb {
    display: block;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

@media screen and (max-width: 1199px) {
    .blog-item__thumb {
        border-radius: 10px 10px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .blog-item__thumb {
        border-radius: 8px 8px 0 0;
    }
}

.blog-item__thumb img {
    width: 100%;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.blog-item__content {
    border: 1px solid hsl(var(--black)/0.1);
    padding: 28px 26px 30px;
}

@media screen and (max-width: 1399px) {
    .blog-item__content {
        padding: 25px 20px;
    }
}

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

@media screen and (max-width: 767px) {
    .blog-item__content {
        padding: 18px 12px;
    }
}

.blog-item__title {
    line-height: 1.3;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1199px) {
    .blog-item__title {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .blog-item__title {
        margin-bottom: 5px;
    }
}

.blog-item__desc {
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1199px) {
    .blog-item__desc {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .blog-item__desc {
        font-size: 0.875rem;
    }
}

.blog-item__meta {
    gap: 15px;
    overflow: hidden;
    border: 1px solid hsl(var(--black)/0.1);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    padding: 14px 26px;
}

@media screen and (max-width: 1399px) {
    .blog-item__meta {
        padding: 12px 20px;
    }
}

@media screen and (max-width: 1199px) {
    .blog-item__meta {
        padding: 10px 15px;
        border-radius: 0 0 10px 10px;
    }
}

@media screen and (max-width: 767px) {
    .blog-item__meta {
        gap: 10px;
        padding: 10px 12px;
        border-radius: 0 0 8px 8px;
    }
}

.blog-item__meta-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
    .blog-item__meta-item {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .blog-item__meta-item {
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 575px) {
    .blog-item__meta-item {
        font-size: 0.875rem;
    }
}

.blog-item__meta-item .icon {
    color: hsl(var(--base));
}

.border-effect {
    display: inline !important;
    width: 100%;
    background-repeat: no-repeat;
    background-position-y: -2px;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-size: 0 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.border-effect:hover {
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    background-size: 100% 100%;
}

/* ================================= Blog Css End ================================= */
/* =========================================== Blog Details Css Start ==============================*/
.blog-detials-section {
    padding: 105px 0;
}

@media screen and (max-width: 1599px) {
    .blog-detials-section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1199px) {
    .blog-detials-section {
        padding: 50px 0;
    }
}

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

@media screen and (max-width: 767px) {
    .blog-detials-section {
        padding: 35px 0;
    }
}

@media screen and (max-width: 575px) {
    .blog-detials-section {
        padding: 30px 0;
    }
}

.blog-details__thumb {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .blog-details__thumb {
        border-radius: 10px 10px 0 0;
    }
}

@media screen and (max-width: 575px) {
    .blog-details__thumb {
        border-radius: 8px 8px 0 0;
    }
}

.blog-details__content {
    border: 1px solid hsl(var(--black)/0.1);
    padding: 28px 24px 40px;
}

@media screen and (max-width: 1199px) {
    .blog-details__content {
        padding: 22px 16px 30px;
    }
}

.blog-details__title {
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-details__desc {
    margin-bottom: 15px;
}

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

.blog-details__desc>a {
    color: hsl(var(--primary));
    text-decoration: underline;
}

.blog-details__desc>a:hover {
    color: hsl(var(--primary-d-200));
}

.blog-details__bottom {
    gap: 15px;
    border: 1px solid hsl(var(--black)/0.1);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    padding: 12px 24px;
}

@media screen and (max-width: 1199px) {
    .blog-details__bottom {
        padding: 12px 16px;
        border-radius: 0 0 10px 10px;
    }
}

@media screen and (max-width: 575px) {
    .blog-details__bottom {
        gap: 10px;
        border-radius: 0 0 8px 8px;
    }
}

.blog-details__date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 991px) {
    .blog-details__date {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .blog-details__date {
        font-size: 0.875rem;
    }
}

.blog-details__date-icon {
    color: hsl(var(--base));
}

.blog-details__share {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.blog-details__share-title {
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--body-color));
    margin-right: 18px;
}

@media screen and (max-width: 991px) {
    .blog-details__share-title {
        font-size: 0.9375rem;
        margin-right: 15px;
    }
}

@media screen and (max-width: 767px) {
    .blog-details__share-title {
        font-size: 0.875rem;
        margin-right: 12px;
    }
}

.blog-details__share .social-list {
    gap: 7px;
}

.blog-details__share .social-list__item {
    margin: 0;
}

.blog-details__share .social-list__link {
    font-size: 0.875rem;
    width: 30px;
    height: 30px;
    background: hsl(var(--black)/0.1);
    color: hsl(var(--body-color));
}

@media screen and (max-width: 575px) {
    .blog-details__share .social-list__link {
        width: 28px;
        height: 28px;
    }
}

.blog-details__share .social-list__link:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    padding: 27px 24px;
    border-radius: 8px;
    -webkit-box-shadow: var(--box-shadow-four);
    box-shadow: var(--box-shadow-four);
    margin-left: 35px;
}

@media screen and (max-width: 1399px) {
    .blog-sidebar {
        margin-left: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .blog-sidebar {
        margin-left: 0;
        padding: 24px 16px;
    }
}

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

.blog-sidebar__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 13px;
}

@media screen and (max-width: 575px) {
    .blog-sidebar__title {
        font-size: 1.3125rem;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 424px) {
    .blog-sidebar__title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
}

/* Latest Blog Item */
.latest-blog-item {
    border-bottom: 1px solid hsl(var(--black)/0.1);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

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

.latest-blog-item__thumb {
    width: 69px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .latest-blog-item__thumb {
        width: 65px;
        height: 61px;
    }
}

.latest-blog-item__thumb img {
    width: 100%;
    height: 100%;
}

.latest-blog-item__content {
    width: calc(100% - 69px);
    padding-left: 13px;
}

@media screen and (max-width: 575px) {
    .latest-blog-item__content {
        width: calc(100% - 65px);
    }
}

.latest-blog-item__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

@media screen and (max-width: 575px) {
    .latest-blog-item__title {
        font-size: 0.9375rem;
    }
}

.latest-blog-item__title>a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest-blog-item__date {
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--body-color));
}

/* ========================================== Blog Details Css End ======================================*/
/* =========================================== Contact Css Start =========================*/
.contact-section {
    padding: 105px 0;
}

@media screen and (max-width: 1599px) {
    .contact-section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1199px) {
    .contact-section {
        padding: 50px 0;
    }
}

@media screen and (max-width: 991px) {
    .contact-section {
        padding: 40px 0;
    }
}

@media screen and (max-width: 767px) {
    .contact-section {
        padding: 35px 0;
    }
}

@media screen and (max-width: 575px) {
    .contact-section {
        padding: 30px 0;
    }
}

.contact-form__title {
    margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
    .contact-form__title {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    .contact-form__title {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 424px) {
    .contact-form__title {
        margin-bottom: 5px;
    }
}

.contact-form__desc {
    font-weight: 600;
    margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
    .contact-form__desc {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .contact-form__desc {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 424px) {
    .contact-form__desc {
        margin-bottom: 12px;
    }
}

.contact-form .form--control:focus {
    background: hsl(var(--base)/0.05);
}

/* Contact Information */
@media screen and (max-width: 991px) {
    .contact-info-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 767px) {
    .contact-info-wrapper {
        gap: 16px;
    }
}

.contact-info {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 12px;
    padding: 24px 15px 22px 20px;
    max-width: 275px;
}

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

@media screen and (max-width: 991px) {
    .contact-info {
        width: calc(50% - 12px);
    }
}

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

.contact-info+.contact-info {
    margin-top: 20px;
}

@media screen and (max-width: 1199px) {
    .contact-info+.contact-info {
        margin-top: 15px;
    }
}

@media screen and (max-width: 991px) {
    .contact-info+.contact-info {
        margin-top: 0;
    }
}

.contact-info__icon {
    position: relative;
    width: 36px;
    height: 36px;
    background: hsl(var(--base));
    color: hsl(var(--white));
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact-info__icon::after {
    position: absolute;
    content: "";
    background: transparent;
    width: 100%;
    height: 100%;
    border: 1px solid hsl(var(--white)/0.2);
    border-radius: 50%;
}

.contact-info__content {
    width: calc(100% - 36px);
    padding-left: 12px;
}

.contact-info__title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

@media screen and (max-width: 1399px) {
    .contact-info__title {
        margin-bottom: 3px;
    }
}

@media screen and (max-width: 575px) {
    .contact-info__title {
        font-size: 1.125rem;
    }
}

.contact-info__desc,
.contact-info__link {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    color: hsl(var(--body-color));
}

/* Contact Map */
.contact-map {
    width: 100%;
    height: 406px;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .contact-map {
        height: 393px;
    }
}

@media screen and (max-width: 991px) {
    .contact-map {
        height: 340px;
    }
}

@media screen and (max-width: 767px) {
    .contact-map {
        height: 310px;
    }
}

@media screen and (max-width: 575px) {
    .contact-map {
        height: 390px;
    }
}

@media screen and (max-width: 424px) {
    .contact-map {
        height: 265px;
    }
}

@media screen and (max-width: 374px) {
    .contact-map {
        height: 250px;
    }
}

.contact-map iframe {
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* ============================================ Contact Css End ====================================*/
/* =========================================== Account Css Start =========================*/
.account {
    position: relative;
    padding: 105px 0;
}

@media screen and (max-width: 1599px) {
    .account {
        padding: 60px 0;
    }
}

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

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

@media screen and (max-width: 767px) {
    .account {
        padding: 35px 0;
    }
}

@media screen and (max-width: 575px) {
    .account {
        padding: 30px 0;
    }
}

.account__bg {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -295px;
    width: 100%;
    height: 640px;
}

.account__bg::after {
    position: absolute;
    content: "";
    inset: 0;
    -webkit-mask-image: url("../images/thumbs/auth-bottom-bg.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: color-mix(in srgb, hsl(var(--base-d-200)) 16%, #fff);
}

.account__bg::before {
    position: absolute;
    content: "";
    inset: 0;
    -webkit-mask-image: url("../images/thumbs/auth-bottom-bg2.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: hsl(var(--base)/.3);
    top: -30px;
}

@media screen and (max-width: 1599px) {
    .account__bg {
        bottom: -245px;
    }
}

@media screen and (max-width: 1399px) {
    .account__bg {
        bottom: -230px;
        height: 530px;
    }
}

@media screen and (max-width: 991px) {
    .account__bg {
        bottom: -180px;
        height: 475px;
    }
}

.account__bg img {
    width: 100%;
    height: 100%;
}

.account__shape {
    position: absolute;
    position: absolute;
    left: 139px;
    bottom: 204px;
}

@media screen and (max-width: 1799px) {
    .account__shape {
        left: 120px;
        bottom: 180px;
    }
}

@media screen and (max-width: 1699px) {
    .account__shape {
        left: 90px;
        bottom: 160px;
    }
}

@media screen and (max-width: 1399px) {
    .account__shape {
        left: 50px;
        bottom: 140px;
    }
}

@media screen and (max-width: 1199px) {
    .account__shape {
        left: 20px;
        bottom: 120px;
    }
}

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

.account__shape img {
    max-width: 482px;
}

@media screen and (max-width: 1799px) {
    .account__shape img {
        max-width: 410px;
    }
}

@media screen and (max-width: 1699px) {
    .account__shape img {
        max-width: 380px;
    }
}

@media screen and (max-width: 1499px) {
    .account__shape img {
        max-width: 350px;
    }
}

@media screen and (max-width: 1399px) {
    .account__shape img {
        max-width: 300px;
    }
}

@media screen and (max-width: 1199px) {
    .account__shape img {
        max-width: 220px;
    }
}

.account__shape.two {
    left: unset;
    right: 15px;
}

@media screen and (max-width: 1199px) {
    .account__shape.two {
        right: 10px;
    }
}

.account__shape.two img {
    max-width: 476px;
}

@media screen and (max-width: 1799px) {
    .account__shape.two img {
        max-width: 405px;
    }
}

@media screen and (max-width: 1699px) {
    .account__shape.two img {
        max-width: 375px;
    }
}

@media screen and (max-width: 1499px) {
    .account__shape.two img {
        max-width: 345px;
    }
}

@media screen and (max-width: 1399px) {
    .account__shape.two img {
        max-width: 290px;
    }
}

@media screen and (max-width: 1199px) {
    .account__shape.two img {
        max-width: 215px;
    }
}

.account-card {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 auto;
    background: hsl(var(--white));
    padding: 40px 32px;
    border-radius: 16px;
    -webkit-box-shadow: var(--box-shadow-three);
    box-shadow: var(--box-shadow-three);
}

@media screen and (max-width: 575px) {
    .account-card {
        padding: 32px 20px;
        max-width: 100%;
    }
}

.account-card__logo {
    text-align: center;
    margin-bottom: 28px;
}

@media screen and (max-width: 575px) {
    .account-card__logo {
        margin-bottom: 20px;
    }
}

.account-card__logo a img {
    max-width: 136px;
    max-height: 44px;
}

@media screen and (max-width: 991px) {
    .account-card__logo a img {
        max-width: 130px;
        max-height: 42px;
    }
}

@media screen and (max-width: 575px) {
    .account-card__logo a img {
        max-width: 123px;
        max-height: 40px;
    }
}

.account-card form .google-access{
    margin-bottom: 20px;
}

.account-card form .google-access:last-child {
    border-bottom: 1px solid hsl(var(--black)/0.1);
    padding-bottom: 24px;
}

@media screen and (max-width: 991px) {
    .account-card form .google-access:last-child {
        padding-bottom: 20px;
    }
    .account-card form .google-access {
        margin-bottom: 18px;
    }
}

.account-card form .google-access .btn {
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 16px 25px;
}

@media screen and (max-width: 991px) {
    .account-card form .google-access .btn {
        border-radius: 8px;
        padding: 15.5px 22px;
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 575px) {
    .account-card form .google-access .btn {
        border-radius: 6px;
        padding: 14.5px 20px;
        font-size: 0.875rem;
    }
}

.account-card form .google-access .btn .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 16px;
    height: 16px;
}

@media screen and (max-width: 991px) {
    .account-card form .google-access .btn .icon {
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 767px) {
    .account-card form .google-access .btn .icon {
        width: 14px;
        height: 14px;
    }
}

.account-card form .google-access .btn .icon img {
    width: 100%;
    height: 100%;
}

.account-card form .input-group .input-group-text {
    border: 0;
    padding: 0;
    background: hsl(var(--section-bg));
}

.account-card form .input-group .input-group-text .customNiceSelect .nice-select {
    border-right-color: transparent;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0 20px 0 5px;
}

.account-card form .input-group .input-group-text .customNiceSelect .nice-select.open {
    border-right-color: hsl(var(--base));
}

.account-card form .input-group .input-group-text .customNiceSelect .nice-select::after {
    font-size: 0.625rem;
    right: 5px;
}

.account-card form .input-group input[type=number] {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.account-card form .input-group input[type=number]::-webkit-outer-spin-button,
.account-card form .input-group input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.account-card form .form--check label {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.account-card form .forgot-password {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.account-card form .have-account {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--body-color));
}

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


.info-list__item:not(:last-child):not(:has(+ h6)):not(:has(+ p)) {
    border-bottom: 1px dashed hsl(var(--border-color));
    padding-bottom: 8px;
    margin-bottom: 8px;
}


.info-list__label {
    text-align: left;
    color: hsl(var(--body-color));
}

.info-list__value {
    font-weight: 600;
    text-align: right;
    color: hsl(var(--heading-color));
}

label.required:after {
    position: absolute;
    content: "*";
    color: hsl(var(--danger)) !important;
    margin-left: 2px;
    right: -8px;
    top: 0;
}

/* ============================================ Account Css End ====================================*/

table tbody tr td.no-data-found {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

table tbody tr td .no-data-found__icon {
    font-size: 3rem;
    color: hsl(var(--border-color));
    margin-bottom: 15px;
}

table tbody tr td .no-data-found__desc {
    font-weight: 500;
    color: hsl(var(--body-color)/.8);
}

@media screen and (max-width: 1399px) {
    table tbody tr td.no-data-found {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    table tbody tr td .no-data-found__icon {
        font-size: 2.813rem;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 1199px) {
    table tbody tr td.no-data-found {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    table tbody tr td .no-data-found__icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    table tbody tr td .no-data-found__desc {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 991px) {
    table tbody tr td.no-data-found {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    table tbody tr td.no-data-found {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    table tbody tr td .no-data-found__icon {
        font-size: 2.188rem;
    }
}

@media screen and (max-width: 575px) {
    table tbody tr td.no-data-found {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    table tbody tr td .no-data-found__icon {
        font-size: 2rem;
    }
}

@media screen and (max-width: 424px) {
    table tbody tr td .no-data-found__icon {
        font-size: 1.75rem;
        margin-bottom: 5px;
    }
}


/* error-404 css start */
.error {
    padding: 20px 60px;
    height: 100vh;
    justify-content: center;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.error .title {
    font-size: 56px;
    font-weight: 600;
    margin-top: 70px;
    margin-bottom: 15px;
}

.error.error-419 .title {
    font-size: 45px;
}

.error .description {
    font-size: 18px;
}

.error-500-thumb {
    position: relative;
}

.error-500-thumb-cat {
    position: absolute;
    bottom: 0;
    left: 60%;
    right: 40%;
    width: 103px;
    height: 103px;
}

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

    .error-500-thumb-cat {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width:375px) {
    .error-500-thumb-cat {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .error {
        padding-inline: 15px;
    }

    .error .title,
    .error.error-419 .title {
        font-size: 32px;
        margin-top: 50px;
    }

    .error .description {
        font-size: 16px;
    }


}

@media (max-width: 425px) {
    .error {
        padding-inline: 10px;
    }

    .error .title,
    .error.error-419 .title {
        font-size: 28px;
        margin-top: 30px;
    }

    .error .description {
        font-size: 15px;
    }


}

.error .title b {
    font-size: 72px;
}

.error p {
    font-size: 18px;
}

/* Start Glow animation Start */
.star-glow {
    display: inline-block;
    position: absolute;
    background-size: cover !important;
}

.star-glow.glow-1 {
    width: 25px;
    height: 25px;
    left: 50%;
    right: 50%;
    top: 50%;
    animation: glow 3s infinite;
}

.star-glow.glow-2 {
    width: 20px;
    height: 20px;
    left: 40%;
    right: 60%;
    top: 40%;
    animation: glow 4s infinite;
}

.star-glow.glow-3 {
    width: 15px;
    height: 15px;
    left: 58%;
    right: 42%;
    top: 30%;
    animation: glow 2s infinite;
}

.star-glow.glow-4 {
    width: 25px;
    height: 25px;
    left: 47%;
    right: 53%;
    top: 16%;
    animation: glow 5s infinite;
}

@media (max-width: 768px) {

    .star-glow.glow-1 {
        top: 45%;
        left: 60%;
    }
}

@keyframes glow {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}


/* Start Glow animation End */

.cmn-btn {
    position: relative;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: hsl(var(--base)) !important;
    background-color: transparent !important;
    padding: 19px 30px;
    border: 1px solid hsl(var(--base)) !important;
    border-radius: 8px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.cmn-btn svg {
    width: 20px;
    height: 20px;
    fill: hsl(var(--base)) !important;
    transition: 0.2s linear;
}

.cmn-btn:hover svg,
.cmn-btn:focus svg,
.cmn-btn:focus-visible svg {
    fill: hsl(var(--white)) !important;
}

@media screen and (max-width: 1399px) {
    .cmn-btn {
        padding: 18px 28px;
    }
}

@media screen and (max-width: 1199px) {
    .cmn-btn {
        padding: 17px 25px;
        border-radius: 7px;
    }
}

@media screen and (max-width: 991px) {
    .cmn-btn {
        font-size: 0.9375rem;
        padding: 16.5px 22px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 767px) {
    .cmn-btn {
        padding: 15.5px 20px;
    }
}

@media screen and (max-width: 575px) {
    .cmn-btn {
        padding: 15px 18px;
        font-size: 0.875rem;
        border-radius: 5px;
    }
}

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

.cmn-btn:active {
    top: 1px;
}

/* error-404 css end */