@font-face {
    font-family: 'SolaimanLipi';
    src: url('../fonts/SolaimanLipi.eot');
    src: url('../fonts/SolaimanLipi.eot?#iefix') format('embedded-opentype'),
         url('../fonts/SolaimanLipi.woff2') format('woff2');
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    outline: none;
}

}
:before,:after{
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
}

/* ===================== CSS VARIABLES START ===================== */

:root {
    /* --------- Header Height --------- */
    --header-height: 3rem;

    /* --------- Color --------- */
    --main-color: #c20d5a;
    --second-color: rgb(7,3,45);
    --main-gradient: linear-gradient(to right, #5367ff, #4060d9, #24559f, #114e77);
    --dark-bg: #383848;
    --main-color-alt: #af547d;
    --text-color: #707070;
    --white-color: #ffffff;
    --white-alt: #e6e6e6;
    --black-color: #000000;
    --color_Blue: #3f93f1;
    --color_Dark1: #1e1e1e;
    --color_Dark2: #252527;
    --color_Light1: #dfdfdf;
    --color_Light2: #c4c4c4;


    /* ---------- FONT & TYPOGRAPHY ----------- */
    --body-font: 'SolaimanLipi', 'Poppins', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.15rem;
    --normal-font-size: 1rem;
    --small-font-size: .938rem;
    --smaller-font-size: .75rem;

    /* ----------- FONT WEIGHT ---------------- */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 900;

    /* ----------- MARGIN & 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 START ===================== */
*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--second-color);
    font-size: 13px;
    font-weight: 400;
    font-family: var(--body-font);
    line-height: 28px;
/*    overflow: hidden;*/
    overflow-x: hidden;
    overflow-y: auto;
    background: hsl(200deg 27% 98%);
}

img {
    vertical-align: middle;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--bla);
}

a:hover {
    text-decoration: none;
    color: var(--white-color);
}

ul, ol {
    list-style: none;
}

button:focus {
    outline: none;
}
/* ===================== BASE CSS END ===================== */

/* ===================== GENERAL STYLE START ===================== */
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-gradient);
}

.bg-cla {
    background: var(--main-color);
}

.bg-clc {
    background: linear-gradient(121deg, rgb(92 26 195) 25%, rgb(136 25 206 / 95%) 100%);
}

.bg-clc {
    background: linear-gradient(121deg, rgb(26 179 195) 25%, rgb(25 97 206 / 95%) 100%);
}

.bg-clc {
    background: linear-gradient(121deg, rgb(232 202 53) 25%, rgb(206 125 25 / 95%) 100%);
}
/* ===================== GENERAL STYLE END ===================== */

@media (max-width: 768px){
    :root {
        --biggest-font-size: 1.75rem;
        --h1-font-size: 1.4rem;
        --h2-font-size: 1.2rem;
        --h3-font-size: 1rem;
        --normal-font-size: .9rem;
        --small-font-size: .8rem;
        --smaller-font-size: .65rem;
    }
}
