:root {
    /*Background*/
    --bg-1: rgb(0,0,0);
    --bg-2: #080808; /* #E2D2B9 */
    --bg-3: #a47f52;
    --bg-3-30: rgba(164, 127, 82, .3);
    --bg-4: #080808;
    --bg-5: rgb(4,4,4);

    --text-highlight: #f3f3ec;
    --text-primary: #cecdc9;
    --text-secondary: #1A1A1A;

    --brand-1: rgb(200, 16, 46);
    --brand-2: #ffa600;
    --brand-3: #77B4BA;

    /*Alerts / Admin Colors*/
    --green: #198754;
    --green-80: rgba(25, 135, 84, .8);
    --green-70: rgba(25, 135, 84, .7);

    --yellow: rgb(255, 193, 7);
    --yellow-90: rgba(255, 193, 7, .9);
    --yellow-70: rgba(255, 193, 7 ,.7);
    --yellow-10: rgba(255, 193, 7 ,.1);

    --orange: rgb(253, 126, 20);
    --orange-70: rgba(253, 126, 20, .7);

    --red: rgb(220, 53, 69);
    --red-80: rgba(220, 53, 69, .8);
    --red-70: rgba(220, 53, 69 ,.7);
    --red-10: rgba(220, 53, 69 ,.1);

    --blue: rgb(11, 202, 240);
    --blue-90: rgba(11, 202, 240, .9);
    --blue-80: rgba(11, 202, 240, .8);
    --blue-70: rgba(11, 202, 240, .7);
    --blue-10: rgba(11, 202, 240, .1);

    --grey: rgb(173, 181, 189);
    --grey-70: rgba(173, 181, 189, .7);

    --grey-dark: rgb(118, 123, 128);
    --grey-dark-70: rgb(118, 123, 128, .7);
}

/*generic*/
body {
    font-family: 'rubik', serif;
    font-size: 1rem;
    background-color: var(--bg-1);
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Sedgwick Ave Display", 'serif';
    color: var(--text-highlight);
}

ol li {
    list-style: decimal;
}

.text-heading {
    /* font-family: "Rock Salt", "Sedgwick Ave Display", 'serif'; */
    letter-spacing: .2rem;
    color: var(--brand-1);
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-regular {
    font-size: 1rem;
}

/*Page Headers*/
.hero-container {
    padding-top: 90px;
}

@media(min-width: 768px) {
    .hero-container {
        padding-top: 90px;
    }
}

.hover-m-left, .hover-m-right, .hover-target {
    transition: all .3s ease;
}

.hover-m-left:hover .hover-target {
    margin-left: 10px;
}

.hover-m-right:hover .hover-target {
    margin-right: 10px;
}

/*Dropdown Menu*/
.dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--bg-2);
}

.dropdown-toggle::after {
    display: none !important;
}

/*Bootstrap Overwrites*/
.container {
    max-width: 1450px;
}

a {
    color: var(--text-primary) !important;
    text-decoration: none;
}
