/*
 */


/* ================================ [01] ROOT START ================================ */
:root {
    --primary-color : #82c46c;
    --white-color : #ffffff;
    --bg-color : #f3f3f3;
    --body-color : #212121;
    --grey-color : #dadada;
    --link-color : #2f00ff;
    --black-2-color : #30323a;
    --green-color : #1da11d;
    --border-grey : 1px solid #dadada;
}

@font-face {
    font-family: "Font Awesome 6 Free";
    src: url('../font-awesome/webfonts/fa-light-300.woff2') format('woff2'),
         url('../font-awesome/webfonts/fa-light-300.woff') format('woff');
    font-style: normal;
}
/* ================================ [01] ROOT END ================================ */


/* ================================ [02] ELEMENTS STYLES START ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

body {
    font-family: Roboto, 'Poppins', sans-serif;
    font-size: 0.9em;
    line-height: 1.4;
    background-color: var(--white-color);
    color: var(--body-color);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--green-color);
    text-decoration: underline;
}

ul {
    list-style: none;
}

header {
    box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.02);
    background-color: var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
}

footer {
    border-top: 1px solid #dadada;
    background-color: var(--white-color);
    margin-top: 30px;
}

section {
    background-color: var(--white-color);
    padding-top: 20px;
}

input {
    outline: none;
}

select {
    outline: none;
    cursor: pointer;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

ins {
    text-decoration: none;
}

.logo-web {
    display: none;
}

.filter-mobile {
    display: none;
}

.site-content {
    width: 99%;
    margin: auto;
}

.btn-hidden {
    display: none;
}

.bg-white {
    background-color: var(--white-color);
}

.h3 {
    font-size: 1.3em;
    color: var(--black-2-color);
}

.txt-center {
    text-align: center;
}

.txt-550 {
    font-weight: 550;
}

.no-scale-img > img:hover {
    transform: none !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.table-none {
    display: none;
}

.bg-light {
    background: #f6fff6;
}

.active {
    color: var(--green-color) !important;
}
/* ================================ [02] ELEMENTS STYLES END ================================ */


@media screen and (max-width: 991px) {
    section {
        margin-top: 6px;
    }

    .m-none {
        display: none;
    }
}
