@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --button-color: #46A848
}

* {
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

input,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
}

input,
button,
div,
ul,
li {
    outline: none !important;
}

a:link,
a:visited {
    text-decoration: none;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

ul,
ul li {
    list-style-type: none
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.highIndex {
    z-index: 999;
}

.clr {
    clear: both
}

.floatLft {
    float: left
}

.floatRgt {
    float: right
}

.inlineBlk {
    display: inline-block;
    vertical-align: middle
}

.col-100 {
    width: 100%
}

.col-50 {
    width: 50%
}

.col-30 {
    width: 30%
}

.col-20 {
    width: 20%
}

.textCenter {
    text-align: center;
}

.textLeft {
    text-align: left;
}

.textRight {
    text-align: right;
}

.textUpper {
    text-transform: uppercase;
}

.flexCenter {
    display: flex;
    justify-content: center;
}

.fwRegular {
    font-weight: var(--fw-regular);
}

.fwLight {
    font-weight: var(--fw-light);
}

.fwMedium {
    font-weight: var(--fw-medium);
}

.fwBold {
    font-weight: var(--fw-bold);
}

.primary-font {
    font-family: var(--primary-font);
}

.primary-color {
    color: var(--primary-color);
}

.black-color {
    color: var(--black-color);
}

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

.primary-background {
    background-color: var(--primary-background);
}