/* Amenkamen Bootstrap Lite
   Scoped subset of Bootstrap utilities/components used by the site.
   Loaded alongside bootstrap.min.css during transition. */

:root {
    --bs-primary: #133260;
    --bs-secondary: #af1600;
    --bs-light: #f5f8f2;
    --bs-dark: #252c30;
    --bs-white: #fff;
    --bs-black: #000;
    --bs-success: #198754;
    --bs-border-color: rgba(19, 50, 96, .12);
    --bs-border-radius: .375rem;
    --bs-border-radius-pill: 50rem;
    --bs-border-radius-circle: 50%;
    --bs-shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
    --bs-font-sans-serif: "Funnel Sans", sans-serif;
    --bs-body-line-height: 1.5;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--bs-font-sans-serif);
    line-height: var(--bs-body-line-height);
    background-color: var(--bs-white);
}

img,
svg {
    vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    background: transparent;
}

.container,
.container-fluid,
.container-xxl {
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}

.container {
    max-width: 1320px;
}

.container-xxl {
    max-width: 1320px;
}

.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-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .text-md-start { text-align: left !important; }
    .text-md-end { text-align: right !important; }
    .mb-md-0 { margin-bottom: 0 !important; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
    .order-lg-1 { order: 1 !important; }
    .order-lg-2 { order: 2 !important; }
    .text-lg-start { text-align: left !important; }
}

@media (min-width: 1200px) {
    .col-xl-3 { flex: 0 0 auto; width: 25%; }
    .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
}

.g-3,
.gx-3 { --bs-gutter-x: 1rem; }
.g-3,
.gy-3 { --bs-gutter-y: 1rem; }
.g-4,
.gx-4 { --bs-gutter-x: 1.5rem; }
.g-4,
.gy-4 { --bs-gutter-y: 1.5rem; }
.g-5,
.gx-5 { --bs-gutter-x: 3rem; }
.g-5,
.gy-5 { --bs-gutter-y: 3rem; }

@media (min-width: 992px) {
    .g-lg-5,
    .gx-lg-5 { --bs-gutter-x: 3rem; }
    .g-lg-5,
    .gy-lg-5 { --bs-gutter-y: 3rem; }
}

.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

.position-fixed { position: fixed !important; }
.position-relative { position: relative !important; }
.sticky-top { position: sticky !important; }
.top-50 { top: 50% !important; }
.start-50 { left: 50% !important; }
.translate-middle { transform: translate(-50%, -50%) !important; }

.w-50 { width: 50% !important; }
.w-100 { width: 100% !important; }
.vh-100 { height: 100vh !important; }
.h-100 { height: 100% !important; }
.img-fluid { max-width: 100%; height: auto; }

.rounded { border-radius: var(--bs-border-radius) !important; }
.rounded-circle { border-radius: var(--bs-border-radius-circle) !important; }
.rounded-pill { border-radius: var(--bs-border-radius-pill) !important; }
.shadow-sm { box-shadow: var(--bs-shadow-sm) !important; }

.text-center { text-align: center !important; }
.text-end { text-align: right !important; }
.text-light,
.text-white { color: var(--bs-white) !important; }
.text-dark { color: var(--bs-dark) !important; }
.text-primary { color: var(--bs-primary) !important; }
.text-secondary { color: var(--bs-secondary) !important; }
.text-success { color: var(--bs-success) !important; }

.bg-white { background-color: var(--bs-white) !important; }
.bg-dark { background-color: var(--bs-dark) !important; }

.fw-bold { font-weight: 700 !important; }
.fw-medium { font-weight: 500 !important; }
.fst-italic { font-style: italic !important; }

.display-1,
.display-2,
.display-5,
.display-6,
.fs-5,
.fs-6 {
    line-height: 1.1;
    font-weight: 700;
}

.display-1 { font-size: clamp(3rem, 6vw, 5rem); }
.display-2 { font-size: clamp(2.5rem, 4.6vw, 4rem); }
.display-5 { font-size: clamp(1.9rem, 3vw, 2.75rem); }
.display-6 { font-size: clamp(1.5rem, 2.2vw, 2.1rem); }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }

.p-4 { padding: 1.5rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

@media (min-width: 992px) {
    .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
}

.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.ms-auto { margin-left: auto !important; }
.me-0 { margin-right: 0 !important; }
.ms-2 { margin-left: .5rem !important; }
.gap-3 { gap: 1rem !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    line-height: 1.5;
    border-radius: var(--bs-border-radius);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.125rem;
}

.btn-primary {
    color: var(--bs-white);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: transparent;
}

.btn-light {
    color: var(--bs-primary);
    background-color: var(--bs-white);
    border-color: var(--bs-white);
}

.btn-outline-light {
    color: var(--bs-white);
    border-color: rgba(255, 255, 255, .75);
    background-color: transparent;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-item {
    display: block;
}

.nav-link {
    display: block;
    padding: .5rem 0;
}

.navbar-light .nav-link {
    color: inherit;
}

.navbar-light .nav-link.active,
.navbar-light .nav-link.show,
.nav-link.active {
    color: inherit;
}

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: .25rem;
    border: 1px solid rgba(19, 50, 96, .18);
    border-radius: .5rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(19,50,96,.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        align-items: center;
        margin-left: auto;
    }

    .navbar-expand-lg .nav-link {
        padding-right: .9rem;
        padding-left: .9rem;
    }
}

.accordion-item {
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bs-white);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    color: var(--bs-dark);
    background-color: var(--bs-white);
}

.accordion-button::after {
    content: "+";
    margin-left: auto;
    font-size: 1.2rem;
    line-height: 1;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
}

.accordion-body {
    padding: 1rem 1.25rem 1.25rem;
}

.copyright .col-md-6:first-child {
    text-align: left !important;
}

.footer.bg-dark {
    background-color: #133260 !important;
}

.copyright {
    background-color: #133260 !important;
}
