/* ===================== WEB FONTS =============================== */
@font-face {
    font-family: 'SolaimanLipi';
    src: url('../fonts/SolaimanLipi.woff2') format('woff2'),
        url('../fonts/SolaimanLipi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'siyam_rupali_ansiregular';
    src: url('../fonts/siyamrupali-webfont.woff2') format('woff2'),
         url('../fonts/siyamrupali-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'karnaphulimjregular';
    src: url('../fonts/karnaphulimj-webfont.woff2') format('woff2'),
         url('../fonts/karnaphulimj-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Li Alinur Imarat Unicode';
    src: url('../fonts/LiAlinurImaratUnicode.woff2') format('woff2'),
        url('../fonts/LiAlinurImaratUnicode.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'li_alinur_boisakh_ansi_v1Rg';
    src: url('../fonts/lialinurboisakh-webfont.woff2') format('woff2'),
         url('../fonts/lialinurboisakh-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'li_mahfuj_ak_unicoderegular';
    src: url('../fonts/li_mahfuj_ak_unicode-webfont.woff2') format('woff2'),
         url('../fonts/li_mahfuj_ak_unicode-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* ===================== CSS VARIABLES START ===================== */

:root {
    /* --------- Header Height --------- */
    --header-height: 3rem;

    /* --------- Color --------- */
    --main-color: #0C3F06;
    --second-color: #0C6506;
    --main-gradient: linear-gradient(to right, #0C3F06, #0C6506, #129409, #1abc0f);
    --second-gradient: linear-gradient(to right, #6C2140, #9e325f, #ca3673, #f43f8a);
    --bg-white: #ffffff;
    --bg-dark: #383838;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-blue: #3f93f1;


    /* ---------- FONT & TYPOGRAPHY ----------- */
/*    --body-font: 'SolaimanLipi', 'siyam_rupali_ansiregular', 'Poppins', sans-serif;*/
    --body-font: 'Poppins', sans-serif, 'SolaimanLipi', 'siyam_rupali_ansiregular';
    --biggest-font-size: 3rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .9rem;
    --smaller-font-size: .75rem;

    /* ----------- FONT WEIGHT ---------------- */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 900;
    --font-normal: 400;

    /* ----------- MARGIN & PADDING ---------- */
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;

    /*------------ SHADOW --------------- */
    --normal-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --hard-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    --smooth-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    --deep-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

    /* ----------- Z INDEX -------------- */
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* ===================== CSS VARIABLES END ===================== */

/* ===================== BASE CSS START ===================== */
* {
    padding: 0;
    margin: 0;
    outline: none;
}

}
:before,:after{
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px; /* Set the root font size */
}

body {
    color: var(--color-black);
    font-size: var(--normal-font-size);
    font-weight: var(--font-normal);
    font-family: var(--body-font);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--color-black);
}

a:hover {
    text-decoration: none;
    color: var(--color-blue);
}

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;
    padding: 0;
}

ul {
    padding: 0;
    list-style: none;
}


/* ===================== 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;
    }
}
