*,
*::before,
*::after {
    box-sizing: border-box;
}
/* @font-face { font-family: "Montserrat, sans-serif"; src: url('/fonts/montserrat/Montserrat-VariableFont_wght.ttf'); }
@font-face { font-family: "Frank Ruhl Libre', serif"; src: url('/fonts/frank/FrankRuhlLibre-VariableFont_wght.ttf'); } */
:root {
    --primary-color:  #ff7f00;
    --secondary-clr: #7b7b7b;
    --menu-item-clr: #464646;
    --hover-clr: #0e2946;
    --admin-top-bar-bg: #2c3539;
    --hover-clr2: #000;
    --primary-color-hover: #97be14;
    --secondary-color-2: #777777;
    --black-color: #222;
    --background-clr: #fafafa;
    --background-clr-2: #f9f9f9;
    --paragraph-color: #555555;
    --white-color: #ffffff;
    --header-border-color: #e0e0e0;
    --form-border-clr: #ccdcfe;
    --black-clr2: #252525;
    --background-clr-3: #eceff1;
    --product-img-height: 260px;
    --product-img-padding: 16px;
    --background-clr-4: #f5f5f5;
    --hover-clr-3: #e5e5e5;
    --blue-clr: #0b0b99;
}
body {
    margin: 0px;
}
a {
    text-decoration: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
}
.ful-height {
    height: 100%;
}
.black-clr {
    color: var(--black-clr2);
}
.blue-hover:hover {
    background-color: var(--form-border-clr);
}
.bg-light {
    background-color: #def5f5;
}
.bg-grey {
    background-color: #f5f5f5;
}
.grey-clr {
    color: #808080;
}
.primary-clr{
    color: var(--primary-color) !important;
}
.text-justify {
    text-align: justify;
}
ul,
li {
    list-style: none;
    list-style-position: inside;
}
.text-underline {
    text-decoration: underline;
}
.width-100px {
    width: 100px;
}
.max-wid-90 {
    display: block;
    max-width: 90%;
}
.height-100px {
    height: 100px;
}
.bg-black {
    background-color: #000;
}
.bg-black-2 {
    background-color: var(--black-clr2);
    padding: 0.1% 0 5% 0;
}
.bg-color3 {
    background-color: #eceff1;
}
.bg-gren {
    background-color: var(--primary-color);
}
.bg-gray-black {
    background-color: var(--menu-item-clr);
}
.bg-blue {
    background-color: var(--hover-clr);
}
.bg-gren {
    background-color: var(--primary-color);
}
.bg-gren {
    background-color: #a8d511;
}
.pad-0 {
    padding: 0px;
}
.text-cen {
    text-align: center;
}
.font-weight-300 {
    font-weight: 300;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-400 {
    font-weight: 400;
}
.font-weight-600 {
    font-weight: 600;
}
.rad-50 {
    border-radius: 50px !important;
}
.pos-relative {
    position: relative;
}
.site-button {
    background-color: var(--white-color);
    padding: 0.5em 1em;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    border: 0px;
    color: var(--black-color);
}
.site-button:hover {
    background-color: #f0f0f0;
}
.site-button.button-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    letter-spacing: 1px;
    font-weight: 700;
}
.site-button.button-primary:hover {
    background-color: var(--hover-clr2);
    color: var(--white-color);
}
.site-button.button-large {
    font-size: 15px;
    padding: 1em 1.5em;
}
.site-button.button-extra-small {
    font-size: 12px;
    padding: 0px 0.5em;
}
.uppercase {
    text-transform: uppercase;
}
.divider-wrap {
    margin: 40px 0px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.divider-wrap .divider-line {
    flex-grow: 1;
}
