* {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    /** Push footer to bottom of page (make sure this doesn't break any other layout styling) */
    flex-direction: column;
    display: flex;
    min-height: 100vh;
    /** End of Push footer styling */
}

a, a:link, a:visited, a:focus, a:hover, a:active {
    color: #ff4906;
}
a:active {
    color: #BB3100;
}
h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2.2rem;
}
h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    /*font-style: normal;*/
    font-size: 1.8rem;
    margin-block-end: 3rem;
}
h2 small {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
}
h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
}

/* Header */
header {
    display: flex;
    box-sizing: border-box;
    background-color: #00232d;
    min-height: 65px;
    border-bottom: 1px solid #ebebeb;
}
header .logo-container {
    padding-right: 65px; /* Space for navbar-toggle */
}
header .logo-container img.logo {
    max-height: 60px;
    padding-top: 5px;
    display: inline-flex;
    justify-content: center;
    flex-direction: row-reverse;
    height: 100%;
}
header ~ div {
    /* Pushes footer to bottom of page */
    flex-grow: 1;
}

/* Containers */
.body-container .row.grow {
    /** Tell row to grow below */
    flex-grow: 1;
}
.container-light-gray {
    background-color: #F5F5F5;
}

/* Buttons/Links */
a.orange-link, a.orange-link:link, a.orange-link:visited, a.orange-link:focus, a.orange-link:hover {
    color: #FF4906;
}
a.orange-link:hover {
    text-decoration: none;
}
a.orange-link:active {
    color: #E04107;
}
a.read-more-button {
    display: inline-block;
    text-align: center;
    font-weight: 600;
    border-radius: .25rem;
    padding: .5rem .7rem;
    text-decoration: none;
    background-color: #FFFFFF;
    border: 2px solid #E99A01;
    color: #E99A01;
}
a.read-more-button:hover {
    background-color: #E99A01;
    color: #FFFFFF;
}
a.read-more-button:active {
    background-color: #CB8501;
    border-color: #CB8501;
    color: #FFFFFF;
}
a.category-button,
a.blog-button {
    display: inline-block;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: .25rem;
    padding: 1rem;
    text-decoration: none;
    color: #FFFFFF;
}
a.blog-button {
    background-color: #006480;
    border: 2px solid #006480;
}
a.blog-button:hover {
    background-color: #005A73;
}
a.blog-button:active {
    background-color: #003C4D;
}
a.category-button {
    background-color: #008080;
    border: 2px solid #008080;
}
a.category-button:hover {
    background-color: #007373;
}
a.category-button:active {
    background-color: #004D4D;
}

/* Helpers */
img.logo {
    max-width: 100%;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.padded {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.no-padding {
    padding: 0;
}

.text-center {
    text-align: center; !important;
}

.max-width {
    max-width: 100%;
}

.badge-grey {
    background-color: #6C757D;
    display: inline-block;
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.35rem 0.65rem;
    margin-right: 0.35rem;
    user-select: none;
    white-space: nowrap;
}
.badge-grey .icon {
    vertical-align: top;
}
.not-found-section {
    background-color: #F0F8FF;
    border-radius: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    text-align: center;
}
.list-unstyled {
    list-style: none;
}

/* Footer */
footer ul {
    list-style: none;
    padding-left: 0;
}
footer ul li {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

footer {
    background: #303030;
    color: white;
}

footer .container-fluid {
    background-color: #1a1a1a;
}

footer a, footer a:link, footer a:visited, footer a:focus {
    color: #D4D4D4;
    text-decoration: none;
}
footer a:hover, footer a:visited {
    text-decoration: underline;
}

footer img.logo {
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile devices (575px and below) */
@media (max-width: 575px) {
    h1 {
        text-align: center;
    }
    .container-fluid > .container {
        padding-left: 0;
        padding-right: 0;
    }
    a.category-button,
    a.blog-button {
        display: block;
    }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .offer-card-container ~ .offer-card-container {
        border-top: none;
        padding-top: 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}
