@font-face {
    font-family: 'Commissioner';
    src: url('/fonts/Commissioner.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bs-primary: #65a4e3;
    --bs-secondary: #aa87de;
    --bs-tertiary-bg: #EBECF0;
    --bs-tertiary-bg-rgb: 255, 255, 255;
    --bs-body-font-family: 'Commissioner', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-border-radius: .6rem;
}

body {
    background: url("/img/background.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #DDDEE2;
}

.no-text-decoration {
    text-decoration: none !important;
}

.bgr-thumbnail {
    background-size: cover;
    background-position: center;
}

.bgr-step {
    background-size: contain;
    background-position: center;
}

.navbar-logo {
    height: 3rem;
}

.footer-funding img {
    height: 3rem;
}

h1, h2, h3, h4, h5, h6 {
    font-size: calc(1.1rem + .6vw)
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: 800;
}

h3 {
    font-weight: 700;
}

h4 {
    font-weight: 600;
}

h5 {
    font-weight: 500;
}

h4 {
    font-weight: 400;
}

.rich-text-content > h2 {
    border-bottom: 1px solid var(--bs-tertiary-bg);
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.rich-text-content > h3 {
    border-bottom: 1px solid var(--bs-tertiary-bg);
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.rich-text-content > h4,
.rich-text-content > h5,
.rich-text-content > h6 {
    margin-top: 3rem;
}

.summary-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em * 3);
    height: calc(1.5em * 3);
}

.border-card {
    border: 1px solid var(--bs-card-border-color);
}

.text-shadow {
    text-shadow: 1px 1px 2px black;
}

.min-height-1 {
    min-height: calc(1.5em * 1);
}

.min-height-2 {
    min-height: calc(1.5em * 2);
}

.min-height-3 {
    min-height: calc(1.5em * 3);
}

.min-height-4 {
    min-height: calc(1.5em * 4);
}

.min-height-5 {
    min-height: calc(1.5em * 5);
}

@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--bs-primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
    }
}

@keyframes pulse-success {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--bs-success-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--bs-success-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--bs-success-rgb), 0);
    }
}

.pulse-primary {
    animation: pulse-primary 2s infinite;
}

.pulse-success {
    animation: pulse-success 2s infinite;
}

.tutorial-example-standard {
    height: 25rem;
}

.homepage-feature {
    height: 25rem;
}

.homepage-feature-icon {
    width: 2rem;
    height: 2rem;
}