/*Common Section*/


@font-face {
    font-family: 'Mulish';
    src: url(../fonts/mulish/Mulish-Regular.ttf);
}

@font-face {
    font-family: 'Marcellus';
    src: url(../fonts/marcellus/Marcellus-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondaryColor);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


:root {
    --themeColor: #053E81;
    --themeColorRGBA: rgba(5, 62, 129, 1);
    --secondaryColor: #4A8F01;
    --BackgroundColor: #F0F8FF;
    --buttonColor: #F26F35;
    --primaryTextColor: #34312C;
    --secondaryTextColor: #535558;
    --fontFamilyMulish: 'Mulish';
    --fontFamilyMarcellus: 'Marcellus';
    --fontBold: 700;
    --fontWeightRegular: 400;
    --borderRadius10: 10px;
    --borderRadius5: 5px;
    --lineHeight: 1.7;
    --color-white: white;
    --line-height-titles: 1.2;
    --grid-gap: 40px 60px;
    --box-shadow10: 1px 5px 10px 0px #F2F7FA;
    --box-shadow20: 1px 5px 20px 0px #F2F7FA;
    --box-shadow30: 10px 15px 30px 0px rgb(91, 49, 69, 0.1);
    --box-shadow40L: 0 .5rem 2rem rgba(55, 62, 66, 0.2);
    --box-shadow40: 0 .5rem 2rem rgba(100, 16, 7, .2);
    --backgroundImageRight: linear-gradient(135deg, #053E81 0%, #1e293b 100%);
    --Approved: #239B56;
    --New: #B03A2E;
    --InProgress: #F39C12;
    --OnHold: #FF5733;
    --Closed: #2ECC71;
    --Assigned: #0096CC;
    --themeColorRGBA01: rgba(142, 20, 90, 0.1);
    --themeColorRGBA02: rgba(142, 20, 90, 0.2);
    --themeColorRGBA03: rgba(142, 20, 90, 0.3);
    --themeColorRGBA04: rgba(142, 20, 90, 0.4);
    --themeColorRGBA05: rgba(142, 20, 90, 0.5);
    --themeColorRGBA06: rgba(142, 20, 90, 0.6);
    --themeColorRGBA07: rgba(142, 20, 90, 0.7);
    --themeColorRGBA08: rgba(142, 20, 90, 0.8);
    --themeColorRGBA09: rgba(142, 20, 90, 0.9);
}

h1,
h2,
h3 {
    color: var(--primaryTextColor);
    font-family: var(--fontFamily);
}

h4,
h5,
h6,
p {
    color: var(--secondaryTextColor);
    font-family: var(--fontFamily);
}



.paggination h5 {
    font-size: 14px;
    font-family: var(--fontFamilyMulish);
    font-weight: bold;
}

.paggination a {
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    color: var(--themeColor);
}

/*Common Section*/