:root {
    --green: #93c300;
    --blue: #006c9c;
    --white: #fff;
}

@font-face {
    font-family: "Century Gothic";
    src: url("../fonts/century-gothic/CenturyGothic.eot");
    src: url("../fonts/century-gothic/CenturyGothic.eot?#iefix") format("embedded-opentype"),
        url("../fonts/century-gothic/CenturyGothic.woff") format("woff"),
        url("../fonts/century-gothic/CenturyGothic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    font-family: "Century Gothic", sans-serif !important;
}

.text-blue {
    color: var(--blue);
}
.text-green {
    color: var(--green);
}

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

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