
/* التهيئات الأساسية */
:root {

    /*اللون الأسود ودرجاته*/

    --black-one-color: #000000; 
    --black-two-color: #171717;
    --black-three-color: #2E2E2E;
    --black-four-color: #464646;
    --black-five-color: #5D5D5D;
    --black-six-color: #747474;


    /*اللون الأبيض ودرجاته*/

    --white-one-color: #FFFFFF;
    --white-two-color: #E8E8E8;
    --white-three-color: #D1D1D1; 
    --white-four-color: #B9B9B9; 
    --white-five-color: #A2A2A2; 
    --white-six-color: #8B8B8B; 

}  

/* تهيئة الخطوط [هوية الموقع] */

@font-face {
    /* تهيئة خط المستخدم */
    font-family: 'Lyon';
    src: url('../fonts/lyon-arabic-display-light.otf') format('opentype'); /* الخط الخفيف | المراجع */
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    /* تهيئة خط المستخدم */
    font-family: 'Lyon';
    src: url('../fonts/lyon-arabic-display-regular.otf') format('opentype'); /* الخط العادي | المتن */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    /* تهيئة خط المستخدم */
    font-family: 'Lyon';
    src: url('../fonts/lyon-arabic-display-medium.otf') format('opentype'); /* الخط المتوسط | عنوان فرعي */
    font-weight: 500;
    font-style: normal;
}
@font-face {
    /* تهيئة خط المستخدم */
    font-family: 'Lyon';
    src: url('../fonts/lyon-arabic-display-bold.otf') format('opentype'); /* الخط الغليظ | العنواين */
    font-weight: bold;
    font-style: normal;
}

@font-face {
    /* تهيئة خط الأرقام */
    font-family: 'Blenda';
    src: url('../fonts/Blenda.otf') format('opentype'); /* الخط الغليظ | العنواين */
    font-weight: normal;
    font-style: normal;
}

* {

    box-sizing: border-box;
    -mo-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0 auto;
    direction: rtl;
} 
a {
    text-decoration: none;
    color: var(--white-one-color);
}
a:visited {
    color: var(--white-two-color);
}
ul {
    list-style: none;
    padding: 0;
}
body {
    min-width: 250px;
    font-family: 'lyon',Arial, Helvetica, sans-serif;
    font-weight: normal;
}
.container {
    width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left : 15px;
    padding-right: 15px;
}