:root{
    --main-color: #384888;
    --secondary-color: #eeddbd;
    --white-color: #fff;
    --black-color: #000;

    --font-family-primary: 'FbAbsolutiHeb';

    --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;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: 100% !important;
    padding: 0 !important;
}
body *{
    font-family: var(--font-family-primary) !important;
}
body{
    direction: rtl;
    font-family: var(--font-family-primary) !important;
    font-weight: var(--font-weight-regular) !important;
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color) !important;
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-primary) !important;
    font-weight: var(--font-weight-bold) !important;
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    margin-bottom: 0;
}

.submit-btn input{
    border: none;
    width: 100%;
    padding: 1.3vh 0.8vw;
    border-radius: 0;
    color: var(--main-color) !important;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 21px;
    font-size: 1.2vw;
    line-height: 2vh;
    background-color: var(--secondary-color);
    border-bottom-right-radius: 1vw !important;
}
.submit-btn input:hover{
    background-color: var(--secondary-color);
    color: var(--main-color) !important;
}
.w-fit-content{
    width: fit-content !important;
}
