@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-font: "Work Sans", sans-serif;
    --primary-color: #636363;
    --secondary-color: #000845;
    --black-color: #000000;
    --white-color: #ffffff;
    --blue-color: #2A7FFF;
    --white-background: #ffffff;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* ✅ prevent horizontal scroll */
}

* {
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 16px;
}

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%;
    height: auto;
}

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%
}

.textCenter {
    text-align: center;
}

.textLeft {
    text-align: left;
}

.textRight {
    text-align: right;
}

.textUpper {
    text-transform: uppercase;
}

.primary-font {
    font-family: var(--primary-font);
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.black-color {
    color: var(--black-color);
}

.white-color {
    color: var(--white-color);
}

.white-color {
    color: var(--blue-color);
}

.white-background {
    background-color: var(--white-background);
}