:root {
    --primary: #192352;
    --secondary: #731a36;
    --grey: #bfc0c1;
    --font-family: Verdana, Geneva, Tahoma, sans-serif;
    --text: #192352;
    --menu-bg: #bfc0c1;
    --login-card: #192352;
    --secChange: #731a36;
}

body {
    background-color: var(--grey);
    overflow-x: hidden;
    font-family: var(--font-family);
    font-weight: 400;

    &.dark-theme {
        background-color: var(--primary);
        color: #fff;
        --text: #fff;
        --menu-bg: #731a36;
        --login-card: #731a36;
        --secChange: #192352;

        .other-detail {
            .card {
                background: rgb(0 0 0 / 35%);
            }
        }

    }

    color: var(--text);
}

body::-webkit-scrollbar {
    display: none;
}

.header-primary {
    background-color: var(--primary);
    transition: all 0.5s ease;
    padding: 30px 0px;

    @media screen and (min-width: 1200px) {
        padding: 30px 40px;
    }

    /* border-bottom: 2px solid var(--grey); */
    @media screen and (max-width: 767px) {
        padding: 20px 0;
    }
}

.footer-sec {
    border-top: 2px solid var(--grey);
}

.toggleClass {
    position: relative;
    padding: 3px;
    border-radius: 40px;
    font-size: 12px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    color: #fff;
    line-height: normal;
    width: 95px;
    height: 43px;
    border: 2px solid #fff;
    background: #fff;
    color: #192352;
    cursor: pointer;

    .toggle-btn {
        position: absolute;
        inset-inline-end: 2px;
        font-size: 12px;
        text-align: center;
        background: #192352;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    .toggle-text {
        display: inline-block;
        line-height: 1;
        padding-inline-end: 38px;
        padding-inline-start: 10px;
    }

    .toggle-text {
        display: inline-block;
        line-height: 1;
        padding-inline-end: 38px;
        padding-inline-start: 10px;
        transition: all 300ms;
    }

    &.active {
        background: #192352;
        color: #fff;

        .toggle-btn {
            background: #bfc0c1;
            inset-inline-end: auto;
            inset-inline-start: 2px;
        }

        .toggle-text {
            padding-inline-start: 38px;
            padding-inline-end: 10px;
        }
    }
}

.navbar-toggler-icon {
    color: #fff;
}

.navbar-toggler+.btn-group {
    @media screen and (min-width: 992px) {
        display: none;
    }
}

#navbarSupportedContent {
    max-width: 70%;

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

        .btn-group {
            display: none;
        }
    }
}

.social-links {
    li {
        padding: 6px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.navbar-nav {
    &>li {
        margin: 5px 18px;

        @media screen and (max-width: 767px) {
            margin: 5px 0;
        }

        .nav-link {
            i {
                display: none;
            }

            &:hover,
            &.active {
                background-color: var(--menu-bg);
                color: var(--text) !important;
            }
        }
    }

    .dropdown-menu {
        background-color: var(--menu-bg) !important;
        color: var(--text) !important;
        border-radius: 0 !important;

        .nav-item {
            border-bottom: 1px solid var(--primary);
            padding-top: 10px;
            padding-bottom: 10px;

            h6 {
                font-family: var(--font-family) !important;
                position: relative;
                font-weight: 600;
                text-transform: capitalize;
                color: var(--text);
                letter-spacing: 2px;
                padding: 6px 5px;
                line-height: normal;
                display: inline-block;
                transition: all 300ms;
            }
        }

        &>ul {
            background-color: var(--menu-bg) !important;
            color: var(--text) !important;

            &>li {
                a {
                    font-size: 1rem;
                    color: var(--text) !important;
                }
            }
        }

        .cat-img-nav {
            display: none;
        }

        .dropdown-item {}
    }
}

.bg-theme {
    background-color: var(--primary);
}

.nav-link {
    position: relative;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    letter-spacing: 2px;
    padding: 6px 5px;
    line-height: normal;
    display: inline-block;
    transition: all 300ms;

    /* i {
        display: none;
    } */
}

.hero-slider {
    position: relative;

    button.slick-prev,
    button.slick-next {
        border: 0;
        position: absolute;
        top: calc(50% - 20px);
        background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat center center;
        width: 180px;
        background-size: 25px auto;
        transform: rotate(180deg);
        height: 40px;

        i {
            display: none;
        }

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

    button.slick-next {
        right: 0;
        transform: rotate(0deg);
    }

    .slick-dots {
        display: flex;
        margin: 0;
        padding: 0;
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        max-width: 200px;
        bottom: 7%;
        justify-content: center;
        list-style: none;
        border: 0;
        align-items: center;
        gap: 5px;
        z-index: 9;

        button {
            font-size: 0px;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            padding: 0;
            border: 0;
            background-color: rgb(25 35 82 / 31%);
        }

        .slick-active {
            button {
                background-color: #fff;
            }
        }
    }

}

[dir="rtl"] {
    .nav-link {
        letter-spacing: 0;
    }

    .hero-slider {

        button.slick-prev,
        button.slick-next {
            left: 0;
        }
    }
}

.hero-item {
    position: relative;
    z-index: 3;

    .slide-cap {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: end;
        color: #fff;
        padding-bottom: 2rem;

        .mx-8 {
            margin: 0 5rem;
            position: relative;
            z-index: 9;

            @media screen and (max-width: 767px) {
                /* display: none; */
                margin: 0 1rem;
            }
        }

        @media screen and (max-width: 767px) {
            /* display: none; */

        }

        .slide-p {
            background-color: rgba(25, 35, 82, .5);
            padding: 5px 10px;
            margin-bottom: 1rem;
        }

        p {
            max-width: 450px;
            font-size: 16px;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;

            @media screen and (max-width: 767px) {
                /* display: none; */
                font-size: 12px;
            }
        }

        img {
            max-width: 200px;
            filter: grayscale(100%);
        }

        &:before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 2;
            background: linear-gradient(to bottom, rgba(25, 35, 82, 0.3) 0%, rgba(25, 35, 82, 0) 100%);
        }
    }

    .slide-img {
        img {
            width: 100%;
            height: auto;
            min-height: 250px;
            object-fit: cover;

            @media screen and (min-width: 1200px) {
                min-height: 50vh;
            }
        }
    }
}

.bg-icon {
    /* background: url(../images/icon-bg.png) no-repeat; */
    border: 3px solid #c9cbd0;
    background-size: contain;
    background-color: var(--grey);
}

.current-icon {
    .bg-icon {
        background: url(../images/icon-active.png) no-repeat;
        background-size: contain;

        img {
            filter: invert(1);
        }
    }
}

ul.pagination {
    gap: 5px;
}

.page-item {
    --bs-pagination-border-radius: 0;
}

.filter-content {
    /* max-width: 500px; */
    padding: 2rem 0;

    h3 {
        color: var(--text);
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 1.5rem;
    }

    p {
        color: var(--text);
        font-size: 16px;
        max-width: 700px;
    }

    @media screen and (max-width: 767px) {
        h3 {
            font-size: 20px;
            margin-bottom: 1rem;
        }
    }
}

.filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;

    @media screen and (min-width: 992px) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

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

.drop-filter {
    &>div {
        border-bottom: 1px solid var(--grey);
    }
}

.drop-filter .listing {
    min-height: 5vh;
    max-height: 50vh;
    overflow-y: scroll;
}

.drop-category:hover>.nav-services {
    min-height: 7vh;
    max-height: 35vh;
    overflow-y: scroll;

}

.drop-category:hover>.nav-services::-webkit-scrollbar-button,
.drop-filter .listing::-webkit-scrollbar-button {
    display: none;
}

/* Optional: Style the scrollbar thumb and track */
.drop-category:hover>.nav-services::-webkit-scrollbar,
.drop-filter .listing::-webkit-scrollbar {
    width: 8px;
}

.drop-category:hover>.nav-services::-webkit-scrollbar-thumb,
.drop-filter .listing::-webkit-scrollbar-thumb {
    background-color: var(--text);
    border-radius: 4px;
}

.drop-category:hover>.nav-services::-webkit-scrollbar-track,
.drop-filter .listing::-webkit-scrollbar-track {
    background-color: var(--menu-bg);
}

.rounded-full {
    border-radius: 50%;
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    letter-spacing: 1px;
    font-weight: 400 !important;
    border-radius: 0 !important;
    padding: 7px 20px;
}

.footer-sec {
    background-color: var(--primary);
    padding: 70px 0 70px;
    position: relative;
}

.footer-menu,
.footer-address ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    li {
        color: #fff;

        a {
            color: #fff;
        }
    }
}

.footer-address ul li,
.footer-social {
    display: flex;
    gap: 10px;

    li {
        list-style: none;
    }
}

/* body::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url('../images/pattern-2-right.svg');
    background-repeat: repeat;
    background-position: 100% 0;
    background-size: cover;
} */

.container {
    max-width: 75%;
    margin: 0 auto;

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

.container_3 {
    max-width: 80%;
    /* max-width: 70%; */
    margin: 12px auto;

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

.container_2 {
    max-width: 90% !important;
}

header {
    background-color: transparent;
    margin: 24px auto 0;
}

.bg-blue {
    background-color: #00053e !important;
}

.rounded {
    border-radius: 20px !important;
}

.rounded-5 {
    border-radius: 5px !important;
}

.dropdown-menu {
    /* top: 70px !important;
    width: 250px; */
    padding: 0 !important;
}

.drop-category:hover a {
    background-color: transparent !important;
}

.drop-category:hover,
.nav-services .nav-item:hover {
    background-color: #00053e;
    transition: all 0.8s;
}

.drop-category:hover a div>h6,
.drop-category:hover a>i,
.nav-services .nav-item:hover .nav-link {
    color: #fff !important;
    transition: all 0.8s;
}

.drop-category a div>h6,
.drop-category a>i,
.drop-category {
    transition: all 0.8s;
}

.bg-white {
    background-color: #fff !important;
    /* box-shadow: 9px 15px 13px rgba(0, 0, 0, 0.2); */
}

.nav-services {
    position: absolute;
    top: 0;
    display: none;
    transition: all 0.8s;
    /* width: 500px !important; */
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

    li {
        a {
            white-space: nowrap;
            color: var(--text) !important;
        }
    }
}

.nav-services>div {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.drop-category:hover>.nav-services,
.drop-category:active>.nav-services,
.drop-category:focus>.nav-services {
    transition: all 0.8s;
    display: block;
}

.dropdown-toggle::after {
    margin: auto 0;
}

.discount {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #91193b;
}

.card-filter .discount {
    right: 15px;
    left: unset !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    min-width: 70px;
    text-align: center;
}

.f-0-7 {
    font-size: 0.7rem !important;
}

.icon-search {
    position: absolute;
    top: 0;
    right: 1px;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}

.b-r-50 {
    border-radius: 50px;
}

.f-0-8 {
    font-size: 0.8rem !important;
}

.f-1-7 {
    font-size: 1.7rem !important;
}

.f-0-5 {
    font-size: 0.5rem !important;
}

.f-1-3 {
    font-size: 1.3rem !important;
}

.image {
    max-width: 215px !important;

    @media screen and (max-width: 767px) {
        max-width: 150px !important;
    }
}

.nav-link {
    color: #fff !important;
}

.footer {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-red {
    background-color: #8e1537 !important;
}

.text-red {
    color: #8e1537;
}

main {
    position: relative;
    /* padding-bottom: 5.5rem; */
    min-height: 100vh;
}

.border-bottom {
    border-bottom: 5px solid #8e1537 !important;
}

.mainsection {
    width: 100%;
    background: url(../images/u.png) no-repeat right 100%;
    /* background-size: contain; */

    &.no-bg {
        background: transparent;
    }
}

.card-container {
    display: flex;
    max-width: 800px;
    margin: 0 auto;

    &.full-card {
        max-width: 1200px;

        .card-fixed {
            flex: 0 0 70%;
            max-width: 70%;

            &:first-child {
                flex: 0 0 30%;
                max-width: 30%;
                max-height: 500px;
            }
        }
    }

    .card-fixed {
        flex: 0 0 50%;
        max-width: 50%;
        min-height: 500px;
        background: #fff;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .c-content {
            /* padding: 1rem; */
            width: 100%;
            color: var(--primary);
            flex-direction: column;
            display: flex;
            align-items: center;
            overflow-y: auto;

            .icon-round {
                border: 5px solid var(--primary);
                /* border-radius: 50%; */
                padding: 2rem;
            }

            h3 {
                width: 100%;
                background-color: rgb(115 26 54 / 10%);
                text-transform: capitalize;
                letter-spacing: 2px;
                padding: 5px 10px;
                font-family: Verdana, Geneva, Tahoma, sans-serif;
                font-size: 1.25rem;
                font-weight: 600;
                /* margin-top: 3rem; */
            }
        }

        &:first-child {
            background-color: var(--login-card);

            .c-content {
                color: #fff;

                .icon-round {
                    border-color: #fff;
                }

                h3 {
                    background: rgba(255, 255, 255, .5);
                }
            }
        }
    }
}

.section {
    border: 1px solid #00053e;
    border-radius: 20px;
    position: relative;
    background-color: #fff;
}

.mainheading {
    color: #8e1537;
    letter-spacing: 1px;
    margin: 16px auto;

    color: var(--text);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0rem;
}

.carousel-wrap {
    margin: 90px auto;
    padding: 0 5%;
    width: 80%;
    position: relative;
}

.owl-item {
    height: 160px;
}

.owl-nav>div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
}

.owl-nav i {
    font-size: 52px;
}

.owl-nav .owl-prev {
    left: -30px;
}

.owl-nav .owl-next {
    right: -30px;
}

.owl-prev.disabled i,
.owl-next.owl-next.disabled i {
    opacity: 0.6;
}

.item {
    position: relative;
    cursor: pointer;
}

.cardmain.card {
    background-color: #ebf8fb;
    border: none !important;
    border-radius: 20px;
    transition: all 0.8s;
}

.item:hover .cardmain.card {
    background-color: #00053e;
    color: #fff;
    transition: all 0.8s;
    scale: 1.05;
}

.item:hover .drop i {
    color: var(--text);
    transition: all 0.8s;
}

.item.active .cardmain.card {
    background-color: #00053e;
    color: #fff;
    transition: all 0.8s;
}

.item.active .drop i {
    color: var(--text);
    transition: all 0.8s;
}

.cardmain .card-image {
    background-color: #ebf8fb;
    border-radius: 50%;
    height: 100px;
    width: 100px;
}

.cardmain .card-image img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.drop {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 60%);
}

.drop i {
    color: #ebf8fb;
    font-size: 2.5rem;
    transition: all 0.8s;
}

.fa.fa-caret-left,
.fa.fa-caret-right {
    color: var(--text);
}

.cardnext {
    border: none;
    background: transparent;
}

.cardnext h3 {
    color: #8e1537;
    font-weight: 700;
}

.btn-red {
    --bs-btn-color: #fff;
    --bs-btn-bg: #8e1537;
    --bs-btn-border-color: #8e1537;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #00053e;
    --bs-btn-hover-border-color: #00053e;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #00053e;
    --bs-btn-active-border-color: #00053e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #8e1537;
    --bs-btn-disabled-border-color: #8e1537;
    padding: 8px 32px;
    transition: all 0.8s;
}

.btn-blue-outline {
    --bs-btn-color: #00053e;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #00053e;
    --bs-btn-hover-color: #8e1537;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #8e1537;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #8e1537;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #8e1537;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #00053e;
    --bs-btn-disabled-bg: #fff;
    --bs-btn-disabled-border-color: #00053e;
    padding: 8px 32px;
    transition: all 0.8s;
}

.btn-red-outline {
    --bs-btn-color: #8e1537;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #8e1537;
    --bs-btn-hover-color: #00053e;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #00053e;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #00053e;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #00053e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #8e1537;
    --bs-btn-disabled-bg: #fff;
    --bs-btn-disabled-border-color: #8e1537;
    padding: 8px 32px;
    transition: all 0.8s;
}

.border-40 {
    border-radius: 40px;
}

.btn .goleft {
    margin-left: 0;
    transition: all 0.8s;
    color: #fff;
}

.form-check {
    padding: 0;
}

.form-check-label {
    display: flex;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* .form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
} */

.checkmark {
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #8e1537;
    border-radius: 3px;
}

.form-check-label input:checked~.checkmark {
    background-color: #8e1537;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-check-label input:checked~.checkmark:after {
    display: block;
}

.form-check-label .checkmark:after {
    left: 7px;
    top: 0px;
    width: 10px;
    height: 20px;
    border: solid white;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.card-img {
    display: flex;
    align-items: center;
    width: 30%;
}

.card-filter {
    height: 250px;
    /* box-shadow: 9px 15px 13px rgba(0, 0, 0, 0.2); */
    /* border-radius: 20px; */
    box-shadow: 0 0 0 0 #d4d4d5, 0 2px 4px 0 rgba(34, 36, 38, 0.12),
        0 2px 10px 0 rgba(34, 36, 38, 0.15);
    /* background: #f2f2f2; */
    display: flex;
    flex-direction: column;

    @media screen and (min-width: 767px) {
        flex-direction: row;
    }

    @media screen and (max-width: 767px) {
        height: auto !important;
    }
}

.card-filter:hover>.card-body {
    /* background-color: #00053e !important;
    color: #fff !important;
    transition: all 0.8s; */
}

.card-filter:hover>.card-body .nav-link {
    color: #fff !important;
}

.card-filter .card-body {
    /* border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px; */
    /* height: 100px; */
    overflow: hidden;
    margin: 1.5rem 0;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-filter .card-body .card-heading-para {
    margin-right: 6rem;
}

@media(max-width:767px) {
    .card-filter .card-body .card-heading-para {
        margin-right: 0 !important;
    }
}

.card-filter:hover>.card-body .card-title,
.card-filter:hover p {
    /* color: #fff !important;
    transition: all 0.8s; */
}

.card-body,
.card-title {
    transition: all 0.8s;
}

.card-body .card-title.mainheading {
    font-size: 21px;
    font-weight: bold;
    -webkit-line-clamp: 2 !important;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.hide-content p {
    font-size: 14px;
    margin-bottom: 48px;
    font-family: 'Roboto', sans-serif;
    /* color: #787878 !important; */
    margin-top: 6px;
    margin-bottom: 6px;
    color: #192352 !important;
    text-transform: capitalize;
    /* height: 60px; */
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media(max-width:767px) {
    html[lang='ar'] .hide-content p {
        -webkit-line-clamp: none !important;
    }
}

html[lang='ar'] .card-filter .card-body .card-heading-para {
    margin-right: 0 !important;
    margin-left: 6rem !important;
}

html[lang='ar'] .card-filter .discount {
    left: 15px !important;
    right: unset !important;
}

.sep {
    height: 1px;
    background-color: #787878;
    max-width: 60px;
    margin: 15px 0;
}

.logo-card {
    max-width: 120px;
    max-height: 70px;
}

.service-link {
    /* position: absolute; */
    left: 0;
    right: 0;
    bottom: 0;
}

.card-body p,
.card-body a {
    /* color: #00053e !important; */
}

.card-filter .card-filter-img {
    /* height: 100%; */
    /* border-top-left-radius: 20px;
    border-top-right-radius: 20px; */
    /* background-color: #fff; */
    position: relative;
    /* width: 210px;     */
    /* flex: 0 0 210px; */
    height: 200px !important;
    background-color: #f3f3f3 !important;
    width: 200px;
    border-radius: 10px;
    margin: auto 1rem;

    @media screen and (min-width: 767px) {
        /* width: 210px;
        flex: 0 0 210px; */
    }
}

.card-filter .card-body .card-filter-edit-icon {
    position: absolute;
    top: 14px;
    right: 8px;
}

.card-filter .card-filter-img img {
    /* width: 100%; */
    border-radius: 0;
    /* height: 100%; */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: contain;
    margin: auto;
    object-position: center;
    width: 90% !important;
    height: 90% !important;
    mix-blend-mode: darken;
}

.card-filter .card-title {
    color: #192352;
}

aside .accordion-item,
aside .accordion-button {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

aside .accordion-item:last-child,
aside .accordion-button:last-child {
    border-bottom: none !important;
}

.h-100vh {
    height: 100vh;
}

#menu-toggle {
    color: white;
    position: absolute;
    top: 46px;
    left: -45.75px;
    transform: rotate(90deg);
    background: black;
}

.contain {
    padding-left: 300px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 0px;
}

#sidebar-wrapper {
    position: fixed;
    left: 250px;
    top: 0;
    width: 300px;
    height: 60rem;
    margin-left: -250px;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.closeFilter {
    display: none;
}

.font-1-2 {
    font-size: 1.2rem !important;
}

.h-550 {
    height: 300px;
}

@media (max-width: 676px) {
    #sidebar-wrapper {
        width: 100%;
    }

    .closeFilter {
        display: block;
    }

    .card-filter {
        height: 100% !important;
    }

    .card-filter .card-body {
        height: auto !important;
    }
}

#sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 0px;
}

#page-content-wrapper {
    width: auto;
    position: absolute;
    padding: 50px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
    width: 100%;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav>.sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav>.sidebar-brand a {
    color: #999999;
}

.sidebar-nav>.sidebar-brand a:hover {
    color: #fff;
    background: none;
}

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

.page-item.active .page-link {
    background-color: #8e1537 !important;
    border-color: #8e1537;
    color: #fff !important;
}

.text-red {
    color: #8e1537;
}

.flag-icon {
    border-radius: 20px;
    width: 25px;
    height: 25px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: -4px;
    object-position: -4px;
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.1);
}

.cat-img {
    /* width: 65px; */
    height: 60px;
    margin: auto;
    position: relative;
}

.cat-img-nav-service {
    width: 40px;
    height: 35px;
    position: relative;
}

.cat-img-nav-service img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
}

.cat-img-nav {
    width: 35px;
    height: 30px;
    margin: auto;
    position: relative;
}

.cat-img-nav img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
}

.cat-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
}

.services-checkbox {
    display: none;
}

.header-service-img {
    height: 150px !important;
}

.breadcrumb-item a,
.breadcrumb-item::before {
    color: var(--text) !important;
}

.breadcrumb-item.active {
    color: var(--text) !important;
    opacity: 0.4;
}

html[lang='ar'] .breadcrumb-item+.breadcrumb-item::before {
    float: right !important;
    margin-left: 10px;
}

.service-description {
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 0;
    padding: 8px 16px;
    margin-top: 1rem;
}

.dark-theme {
    .service-description {
        background-color: transparent;
    }

    .card,
    .pagination .page-item .page-link:focus,
    .pagination .page-item .page-link:hover {
        background-color: var(--grey) !important;
    }
}

.nav-tabs {
    border: none !important;
}

.summary {
    font-size: 1.15rem;
    font-weight: 700;
    border-bottom: 3px solid #8e1537;
}

.nav-tabs .nav-link:hover {
    isolation: unset !important;
}

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

.opacity-4 {
    opacity: 0.5;
}

.catLabel>div {
    width: 65px;
    height: 65px;
    /* box-shadow: -7px 8px 10px rgba(0, 0, 0, 0.2); */
}

.catLabel h6 {
    font-size: 14px;
}

.caro-img {
    height: 100%;
    /*max-height: 400px;*/
    border-top: 1px solid #f5f4f4;
    border-bottom: 1px solid #f5f4f4;
}

.slick-slider .catLabel {
    cursor: pointer;
}

.service-banner {
    display: block;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    width: 100%;
    position: relative;
    padding: 40px 0;
    /* background-color: #00053e; */
    /* height: 100px; */
}

.slick-slidering i {
    color: var(--text) !important;
    font-size: 1.8em;
}


.slick-slidering .slick-prev {
    background-color: transparent !important;
    left: -40px;
    opacity: 0.5;
    padding: 0 0px 0 10px;
    top: 0 !important;
    bottom: 0 !important;
}

.slick-slidering .slick-next {
    background-color: transparent !important;
    right: -40px;
    opacity: 0.5;
    padding: 0 0px 0 10px;
    top: 0 !important;
    bottom: 0 !important;
}

.slick-slidering .slick-disabled {
    opacity: 0.1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.slick-slidering .slick-prev,
.slick-slidering .slick-next {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    border-radius: 50%;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    border: none;
    outline: none;
    background-color: #ccc;
}

.slick-slider-image .slick-prev {
    left: 10px;
}

.slick-slider-image .slick-next {
    right: 10px;
}

.slick-slider-image .slick-disabled {
    opacity: 0.4;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.slick-slider-image .slick-prev,
.slick-slider-image .slick-next {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    outline: none;
    background-color: transparent;
}

.slick-slider-image .slick-prev i,
.slick-slider-image .slick-next i {
    color: var(--text) !important;
    font-size: 2.3rem;
}

.slick-slider-image .slick-dots {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.slick-slider-image .slick-dots li {
    margin: 0 4px;
}

.slick-slider-image .slick-dots li.slick-active button {
    opacity: 1 !important;
}

.slick-slider-image .slick-dots li button {
    border-radius: 50%;
    border: none;
    background-color: #00053e;
    color: var(--text);
    opacity: 0.3;
    padding: 5px;
    width: 20px;
    height: 20px;
    overflow: hidden;
}

.categories {
    position: relative;
}

.other-detail {
    /* height: 690px; */
    position: relative;
}

.circle-15 {
    border-radius: 15px;
}

.f-1-rem {
    font-size: 1rem !important;
}

.nav-tabs .nav-link.active h4 {
    opacity: 0.6;
    border-bottom: 3px solid #8e1537 !important;
}

.fade:not(.show) {
    display: none;
}

.border-blue {
    border: 2px solid var(--primary);
    border-radius: 5px;
}

.card-icon-service>div i {
    margin-left: 8px;
    /* transform: rotate(90deg); */
    color: var(--secondary);
    font-size: 27px;
}

.divider {
    border: 1.5px solid var(--secondary);
    transform: rotate(90deg);
    border-radius: 3px;
    width: 35px;
    height: 1px;
    margin: auto 0;
}

.divider-2 {
    border: 1.5px solid #fff;
    transform: rotate(90deg);
    border-radius: 3px;
    width: 35px;
    height: 1px;
    margin: auto 0;
}

.card-icon-service>small {
    line-height: 1;
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.card-header {
    --bs-card-inner-border-radius: 0px;
    background-color: var(--secondary);

    .mainheading {
        color: #fff;
    }
}

.card {
    border-radius: 0;
}

.border-red {
    border: 2px solid #ff1b0e;
    border-radius: 5px;
}

.border-red.card-icon-service>div i {
    transform: rotate(90deg);
    color: #ff1b0e;
    font-size: 27px;
}

.border-red .divider {
    border: 1.5px solid #ff1b0e;
    transform: rotate(90deg);
    border-radius: 3px;
    width: 35px;
    height: 1px;
    margin: auto 0;
}

.border-red.card-icon-service>small {
    line-height: 1;
    color: #ff1b0e;
    font-weight: 700;

}



@media (max-width: 991px) {

    /* .other-detail
    {
        height: 100% !important;
    } */
    .nav-services {
        width: 500px !important;
    }

    .contact-detail {
        position: unset !important;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 90% !important;
    }

    .container_3 {
        max-width: 80% !important;
    }

    .nav-services {
        position: static !important;
        width: 100% !important;
    }

    .dropdown-menu {
        width: 100% !important;
    }

    .drop-category:hover {
        padding-bottom: 0 !important;
    }

    .drop-category:hover>a {
        padding-bottom: 16px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100% !important;
        padding: 12px !important;
    }

    .sorting {
        text-align: -webkit-center;
    }

    .container_3 {
        max-width: 100% !important;
        padding: 12px !important;
    }
}

@media (min-width: 767px) {
    .w-md-100 {
        width: 100% !important;
    }
}

.btn-group button::after {
    content: unset !important;
}

.btn-group .dropdown-menu .dropdown-item:hover {
    background-color: #00053e;
    color: #fff;
}

.field-icon {
    float: right;
    margin-right: 15px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}


.drag-file-area {
    border: 2px dashed #8e1537;
    border-radius: 10px;
    margin: 10px 0 15px;
    padding: 12px 10px;
    width: 100%;
    text-align: center;
    position: relative;
}

.drag-file-area p {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: var(--gray-500);
}

.drag-file-area label {
    font-size: 19px;
}

.default-file-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
}

.file-block {
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 20px;
    display: none;
    z-index: 9;
}

.registration input,
.registration select,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    min-height: 60px;
    border-radius: 0 !important;
}

.select2-container {
    width: 100% !important;
    min-height: 60px !important;
    border-radius: 0 !important;
}

.registration textarea {
    border-radius: 0 !important;
}

.registration .input-group-text {
    padding: 0 24px !important;
    border-radius: 0 !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary);
    letter-spacing: 1px;
    font-weight: 400 !important;
    border-radius: 0 !important;
    padding: 7px 20px;
}

.btn-primary:hover {
    background-color: #8e1537 !important;
    border-color: #8e1537 !important;
}

.btn-secondary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary {
    --bs-btn-color: #8e1537;
    --bs-btn-border-color: #8e1537;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #8e1537;
    --bs-btn-hover-border-color: #8e1537;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #8e1537;
    --bs-btn-active-border-color: #8e1537;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #8e1537;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #8e1537;
    --bs-gradient: none;
}

.w-20 {
    width: 20% !important;
}

.w-10 {
    width: 10% !important;
}

.profile-image {
    overflow: hidden;
    /* Hide overflow */
}

.upload-logo {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #fff;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    top: 0;
    vertical-align: middle;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    color: #4a4949;
    display: none;
}

.upload-logo label {
    cursor: pointer;
}

.company-nav {
    position: sticky;
    width: 100%;
    top: 10px;
}

.rounded-50 {
    border-radius: 50px;
}


/*
.upload__box {
    padding: 40px;
} */

.upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__btn {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 5px;
    transition: all .3s ease;
    cursor: pointer;
    border: 2px solid;
    background-color: #4045ba;
    border-color: #4045ba;
    border-radius: 10px;
    line-height: 26px;
    font-size: 14px;
}

.upload__btn::hover {
    background-color: unset;
    color: #4045ba;
    transition: all .3s ease;
}

.upload__btn-box {
    margin-bottom: 10px;
}

.upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.upload__img-box {
    width: 200px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.upload__img-box>div {
    height: 100px;
    width: 100px;
    background-size: contain;
    position: relative;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.upload__img-close::after {
    content: '\2716';
    font-size: 14px;
    color: white;
}

.registerBox {
    border: 3px solid #00053e !important;
}

.registerBox,
.registerBox i,
.registerBox a {
    transition: all 1s;
}

.registerBox:hover {
    background-color: #00053e;
    transition: all 1s;
}

.registerBox:hover i {
    color: #fff !important;
    transition: all 1s;
}


.registerBox:hover a {
    background-color: #fff !important;
    color: var(--text);
    transition: all 1s;
}

.h-200 {
    height: 200px;
}

.avatar {
    position: absolute;
    bottom: -50px;
    width: 100%;
    z-index: 1;
    left: 40px;
}

.mb-6 {
    margin-bottom: 3.5rem !important;
}

.upload-cover {
    position: absolute;
    bottom: 13px;
    width: 22%;
    left: 75%;
    z-index: 9;
    cursor: pointer;
}

@media(min-width:576px) {
    #wrapper2 {
        position: relative;
    }
}

#wrapper2 {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;

    .mainsection {
        background: transparent;
    }
}

#wrapper2.toggled {
    padding-left: 250px;
    overflow: hidden;
}

#sidebar-wrapper2 {
    z-index: 1000;
    position: absolute;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 10px 16px 28px rgb(0, 0, 0, 0.5);
}

#wrapper2.toggled #sidebar-wrapper2 {
    width: 250px;
}

#page-content-wrapper2 {
    position: absolute;
    padding: 15px;
    width: 100%;
    overflow-x: hidden;
}

.xyz {
    min-width: 360px;
}

#wrapper2.toggled #page-content-wrapper2 {
    position: relative;
    margin-right: 0px;
}

.fixed-brand {
    width: auto;
}

/* Sidebar Styles */

#sidebar-wrapper2 {
    overflow-x: hidden;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 2px;
}

.drop-filter .listing .main-list {
    line-height: 30px;
}

.drop-filter .listing .main-list .categoryLink {
    display: block;
    text-decoration: none;
    color: #000;
}

.drop-filter .listing .main-list .categoryLink:hover {
    text-decoration: none;
    background: #00053e;
    border-right: 2px solid #8e1537;
    color: #fff;
}

.drop-filter .listing .main-list .categoryLink:hover small {
    color: #fff !important;
}

.drop-filter .listing .main-list .categoryLink.activeLink {
    text-decoration: none;
    background: #00053e;
    border-right: 2px solid #8e1537;
    color: #fff;
}

.drop-filter .listing .main-list .categoryLink.activeLink small {
    color: #fff !important;
}

.drop-filter .listing .main-list .categoryLink:active,
.drop-filter .listing .main-list .categoryLink:focus {
    text-decoration: none;
}

.sidebar-nav>.sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav>.sidebar-brand a {
    color: #999999;
}

.sidebar-nav>.sidebar-brand a:hover {
    background: none;
}

.no-margin {
    margin: 0;
}

#wrapper2.toggled .container_3.w-90 {
    max-width: 90% !important
}

@media (min-width: 768px) {
    #wrapper2 {
        /* padding-left: 250px; */
    }

    .fixed-brand {
        width: 250px;
    }

    #wrapper2.toggled {
        /* padding-left: 0; */
    }

    #sidebar-wrapper2 {
        /* width: 250px; */
    }

    #wrapper2.toggled #sidebar-wrapper2 {
        width: 250px;
    }

    #wrapper2.toggled-2 #sidebar-wrapper2 {
        width: 50px;
    }

    #wrapper2.toggled-2 #sidebar-wrapper2:hover {
        width: 250px;
    }

    #page-content-wrapper2 {
        padding: 20px;
        position: relative;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    #wrapper2.toggled #page-content-wrapper2 {
        position: relative;
        margin-right: 0;
        padding-left: 250px;
    }

    #wrapper2.toggled-2 #page-content-wrapper2 {
        position: relative;
        margin-right: 0;
        margin-left: -200px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        width: auto;
    }
}

#wrapper2.toggled #menu-toggle2 {
    display: none;
    cursor: pointer;
}

@media (max-width: 576px) {

    #wrapper2.toggled #sidebar-wrapper2,
    .sidebar-nav {
        width: 100%;
    }

    #wrapper2.toggled #menu-toggle2 {
        display: block;
    }

    #wrapper2.toggled aside {
        display: none;
    }
}

.w-90 {
    width: 90% !important;
}

.subcategorycheck {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group .subcategorylabel {
    position: relative;
    cursor: pointer;
}

.form-group .subcategorylabel:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #8e1537;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 5px 5.5px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin: 0 3px;
}

.form-group .subcategorycheck:checked+.subcategorylabel:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 8px;
    width: 5px;
    height: 9px;
    border: solid #8e1537;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* width */
#sidebar-wrapper2::-webkit-scrollbar {
    width: 5px;
}

/* Track */
#sidebar-wrapper2::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #000;
    border-radius: 10px;
}

/* Handle */
#sidebar-wrapper2::-webkit-scrollbar-thumb {
    background: #00053e;
    border-radius: 10px;
}

/* Handle on hover */
#sidebar-wrapper2::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

.favourite {
    position: absolute;
    top: 8px;
    right: 12px;
}

.vertical-middle {
    vertical-align: middle;
}

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

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

@media(max-width:767px) {
    .w-sm-100 {
        width: 100% !important;
    }

    .service-link {
        margin: 10px 0 !important;
        position: unset;
    }

    .hide-content p {
        height: 100%;
    }

    .card-filter .card-body {
        margin: 0 0 1.5rem;
        width: 100% !important;
    }

    .card-filter-img {
        margin-top: 1.5rem !important;
    }
}

.icons {
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 30px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.hide-content-2 {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    color: var(--text);
}

.fs-10 {
    font-size: 0.7rem;
}

.bg-grey {
    background-color: rgba(0, 0, 0, .03);
}

.card-image {
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background-color: #f3f3f3 !important;
}

.card-image img {
    object-fit: contain;
    object-position: center;
    mix-blend-mode: darken;
}

.w-200-px {
    width: 200px;
}

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

    .slick-slidering .slick-next {
        right: -5px;
    }
}

.text-justify {
    text-align: justify;
}

.countService {
    /* height: 20px;
    width: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 50%; */
    font-size: 0.65rem;
    /* border: 1px solid var(--primary); */
    float: right;
}

.drop-filter .listing .main-list .categoryLink:hover .countService {
    /* background-color: #fff; */
    color: #fff !important;
    /* border: 1px solid #fff; */
}

.bg-grey-light {
    background: #e2e2e2;
}

.describe-yourself .modal-content {
    overflow: hidden;
    height: 80vh;
}

.describe-yourself .modal-body::-webkit-scrollbar-button {
    display: none;
}

/* Optional: Style the scrollbar thumb and track */
.describe-yourself .modal-body::-webkit-scrollbar {
    width: 8px;
}

.describe-yourself .modal-body::-webkit-scrollbar-thumb {
    background-color: #cdadb7;
    border-radius: 4px;
}

.describe-yourself .modal-body::-webkit-scrollbar-track {
    background-color: #81314a;
    border-radius: 4px;
}

.describe-yourself .modal-content {
    background: #731a36;
}

.describe-yourself .modal-content::before {
    content: "";
    background-image: url("../../front_assests/images/right-to-access.svg");
    display: block;
    position: absolute;
    width: 956px;
    height: 510px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    background-position: bottom;
    inset-block-end: 0;
    inset-inline: 100px;
    opacity: 0.8;
}

.describe-yourself .btn-close {
    background: rgba(216, 98, 124, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    top: 10px;
    inset-inline-end: 20px;
    position: absolute;
    transition: all 300ms;
}

.describe-tab {
    overflow: auto;
    transition: all 0.5s ease-in-out;
    margin-top: 5rem;
    margin-bottom: 40px;
    margin-inline: 30px;
}

@media (max-width: 1700px) {
    .describe-tab .justify-content-center {
        margin-top: 10px;
    }
}

.describe-tab .justify-content-center {
    max-width: 900px;
    margin-inline: auto;
}

.describe-tab .justify-content-center p {
    padding-left: 0 !important;
    margin-top: 10px;
}

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

.dark-theme label,
.dark-theme .select2-results__option--selectable {
    color: #00053e
}

.card-footer {
    background-color: #192352;
    color: #fff !important;
}

.dark-theme .card-footer {
    background-color: var(--bs-card-cap-bg) !important;
    color: #6c757d !important;
}

@media(min-width:576px) {
    .w-sm-50 {
        width: 50% !important;
    }
}

@media(max-width:991px) {
    .card-container {
        & .card-fixed {
            &:first-child {
                flex: 0 0 40% !important;
                max-width: 40% !important;
            }
        }
    }

    .card-container {
        .card-fixed {
            flex: 0 0 60% !important;
            max-width: 60% !important;
        }
    }
}

@media(max-width:767px) {
    .card-container {
        max-width: 100% !important;
        display: block !important;
    }

    .card-container {
        & .card-fixed {
            &:first-child {
                flex: auto !important;
                max-width: 100% !important;
                max-height: 100% !important;
                margin-bottom: 0 !important;
            }
        }
    }

    .card-container {
        .card-fixed {
            flex: auto !important;
            max-width: 100% !important;
        }
    }
}

html[lang='en'] .statusFloating {
    position: absolute;
    top: -4px;
    left: 0;
}

html[lang='en'] .statusFloating span {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

html[lang='ar'] .statusFloating {
    position: absolute;
    top: -4px;
    right: 0;
}

html[lang='ar'] .statusFloating span {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.disabled-link {
    pointer-events: none;
    color: gray !important;
    cursor: default;
    text-decoration: none;
    background-color: rgb(229, 229, 229) !important;
}

.dark-theme .bg-white i,
.dark-theme .bg-white label a {
    color: var(--primary) !important;
}

html[lang='ar'] .card-heading-para .hide-content p {
    height: auto !important;
}