:root{
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-mediun: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 600;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
html{
    direction: rtl;
}
body{
    background: #fff;
    font-family: 'NarkissBlock-Regular';
}
h1,h2,h3,h4,h4,h5{
    font-family: 'NarkissBlock-Bold';
    font-weight: bold;
}
a{
    text-decoration: none;
}
p{
    font-family: 'NarkissBlock-Regular';
}
.global-btn {
    background-color: #CFAB50;
    font-size: 24px;
    line-height: 28px;
    border-radius: 7px;
    font-weight: 400;
    padding: 10px 38px;
    border: 1px solid #CFAB50;
    color: var(--white-color);
    position: relative;
    font-family: 'NarkissBlock-Bold';
}
.global-btn:hover {
    background: none;
    color: #CFAB50;
}
.w-fit-content{
    width: fit-content;
}