:root{
    --main-color: #34000a;
    --secondary-color: #adcef3;
    --black-color: #000;
    --white-color: #ffffff;

    --font-family-Heebo-Light: 'Heebo-Light';
    --font-family-Heebo-Regular: 'Heebo-Regular';
    --font-family-Heebo-Medium: 'Heebo-Medium';
    --font-family-Heebo-SemiBold: 'Heebo-SemiBold';
    --font-family-Heebo-Bold: 'Heebo-Bold';

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
html{
    scroll-padding-top: 105px;
    scroll-behavior: smooth;
    overflow: auto;
}
body{
    direction: rtl;
    font-family: var(--font-family-Heebo-Regular);
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color) !important;
    /* background: #34000a */
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-Heebo-Bold);
    font-weight: var(--font-weight-bold);
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    margin-bottom: 0;
}
