@font-face {
    font-family: Arial;
    src: url("/assets/font/Arialn.ttf");
}
* {
    padding: 0;
    margin: 0;
    outline: none;
}

/*===== VARIABLES CSS =====*/

:root {
    /*========== Colors ==========*/
    --main-color: #5b4bf5;
    --second-color: #f5f5f5;
    --black-color: #000000;
    --title-color: #393939;
    --white-color: #ffffff;
    --orange-color: #f97700;
    --black-color-1: #333;
    --black-color-2: #484848;

    /*========== Font and typography ==========*/
    --body-font: "Arial", sans-serif;
    --sec-title-font: 25px;
    --p-font: 18px;
    --m-title: 30.25px;
    --l-title: 36.79px;
    --p-font-height: 27px;
    --lp-font-height: 25px;
    --title-font: 40px;
    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    /*========== Margin ==========*/
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* ==================CSS Variable END========= */

/*========== BASE ==========*/

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--black-color);
    font-size: var(--p-font);
    font-weight: 400;
    background: var(--white-color);
    font-family: var(--body-font);
    line-height: var(--p-font-height);
    overflow-x: hidden;
}

img {
    vertical-align: middle;
    height: auto;
}

a {
    text-decoration: none !important;
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
}

ul,
ol {
    padding: 0;
    list-style: none;
    margin: 0;
}

button:focus {
    outline: none;
}
p {
    margin-bottom: 0 !important;
}

/* ============================GENERAL STYLE END======= */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
    margin: 0;
}

.ovh {
    overflow: hidden;
}

table.table {
    white-space: nowrap;
}

.custom-btn {
    background: var(--main-gradient);
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--white-color);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    border: 2px solid var(--main-color);
}

.custom-btn:hover {
    background: none;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn:focus {
    outline: 0px;
    box-shadow: none;
}


