:root {
    --bs-body-font-family: "Work Sans", sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.container {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.col-2 {
    flex: 0 0 auto;
    width: 16.666667%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.666667%;
}

.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

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

.d-none {
    display: none !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.float-start {
    float: left !important;
}

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

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.site-nav {
    position: relative;
    width: 100%;
    padding: 10px 0;
    background-color: #214252;
}

.site-nav .site-navigation .site-menu {
    display: inline-block;
    margin-bottom: 0;
    padding-left: 0;
}

.site-nav .site-navigation .site-menu > li {
    display: inline-block;
}

.site-nav .site-navigation .site-menu > li > a {
    display: inline-block;
    padding: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    text-decoration: none !important;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: rgba(255, 255, 255, .5) !important;
}

.aoe-mobile-nav-actions {
    align-items: center;
    justify-content: flex-end;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
