:root{
    --bg-color: #f2f1f0;
    --main-color: #d16c3f;
    --white-color: #fff;

    --font-family-FbMazlatEng-light: 'FbMazlatEng-Light';
    --font-family-FbMazlatEng-bold: 'FbMazlat-Bold';
    --font-family-Heebo-regular: 'Heebo-Regular';
    --font-family-FbMazlatEng-hebrew: 'FbMazlat-Light';

    
    --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;
}
body{
    background: var(--bg-color);
    font-family: var(--font-family-FbMazlatEng-hebrew) !important; 
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-FbMazlatEng-bold) !important; 
    font-weight: bold;
}
a{
    text-decoration: none;
}
p{
    font-family: var(--font-family-FbMazlatEng-hebrew) !important; 
}
.global-btn {
    background-color: var(--main-color);
    font-size: 24px;
    line-height: 28px;
    border-radius: 7px;
    font-weight: 400;
    padding: 10px 38px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    font-family: 'FbReadingHebEng-Light';
}
.global-btn:hover {
    background: none;
    color: var(--main-color);
}
.w-fit-content{
    width: fit-content;
}