:root, [data-bs-theme=light] {
    --bs-primary: #C6A63F;
    --bs-primary-rgb: 198, 166, 63;
    --bs-secondary: #393D31;
    --bs-secondary-rgb: 57, 61, 49;
    --bs-font-sans-serif: 'Cairo', sans-serif;
    --bs-blue: #0d6efd;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    /* --bs-body-font-size: 0.938rem;
     --bs-body-font-weight: 500;
     --bs-body-line-height: 1.875;
     --bs-body-color: #ffffff;
     --bs-body-color-rgb: 121, 134, 153;
     --bs-heading-color: var(--bs-primary);*/
}

.btn {
    --bs-btn-border-radius: 48px;
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.8rem;
}

.btn-primary {
    --bs-btn-bg: black;
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: white;

}

/*All Class*/

* {
    box-sizing: border-box;
}

.text-red {
    color: #dc3545;
}

.text-green {
    color: #198754;
}

/*Price Sections Background*/
.price-bg {
    background-color: #FEE6E1;
    border: red 3px solid;
}

/*This Class For Image & List Sections image Background Color*/
.img-bg {
    background-color: whitesmoke;
}


a {
    color: white;
    text-decoration: none !important;
}


/*This is the Responsiveness Query's Section*/
@media (max-width: 1024px) {

}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 576px) {


}