@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

* {
    padding: 0;
    margin: 0;
    outline: none;
}

/* =====css  variavbles ===== */

:root {
    --header-height: 3rem;

    /* ===== colors ===== */
    --main-color: rgb(177, 8, 60);
    --bs-primary: rgb(227 0 125) !important;    
    --second-color: rgb(25, 25, 25);
    --main-grident: linear-gradient(90deg, rgba(177, 8, 60, 1) 25%, rgba(233, 102, 220, 1) 96%);
    --dark-bg: rgb(36, 36, 36);
    --main-color-alt: rgb(203, 21, 75);
    --text-color: rgb(20, 20, 20);
    --white-color: rgb(255, 255, 255);
    --white-alt: rgb(239, 239, 239);

    /* ===== fonts and typography ===== */
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* ===== font-width ===== */
    --font-medium: 500;
    --font-semi-bold: 600;

    /* ===== margin and padding ===== */
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;

    /* ===== Z-index ===== */
    --z-tooltip: 10;
    --z-fixed: 100;

}

/* ===== css variables end ===== */

/* ===== Base css ===== */

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* color: white; */
    color: var(--second-color);
    font-size: 13px;
    font-weight: 400;
    font-family: var(--body-font);
    /* line-height: 28px; */
    overflow-x: hidden;
    background: hsl(200deg, 27%, 98%);
}

img {
    vertical-align: middle;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: var(--white-color);
}

ul,
ol {
    list-style: none;
}

button:focus {
    outline: none;
}

/* ===== Base css/ general style end ===== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

ovh {
    overflow: hidden;
}

table.table {
    white-space: nowrap;
}

.di-btn {
    color: aliceblue;
    padding: .7rem var(--mb-2);
    font-weight: 500;
    border-radius: 3px;
    box-shadow: 0px 6px 19px 1px #06041d4a ;
}

.purple-gradient {
    background: var(--main-grident);
}

.bg-cla {
    background: var(--main-color);
}

.bg-clb {
    background: linear-gradient(121deg, rgb(92,26,195) 25%, rgba(136,25,206,95) 100%);        
}

.bg-clc {
    background: linear-gradient(121deg, rgb(26,179,195) 25%, rgba(25,97,206,95) 100%);        
}

.bg-cld {
    background: linear-gradient(121deg, rgb(232,202,53) 25%, rgba(206,125,25,95) 100%);        
}


/* Override Bootstrap primary button colors */
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--main-color-alt) !important; /* Optional: Set a hover color */
    border-color: var(--main-color-alt) !important;
}
