@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: .3rem;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(105, 60, 237, 0.13);
}

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

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

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

.bgr-thumbnail-contain {
    background-color: #F1F2F3;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.blur-behind {
    backdrop-filter: blur(10px) saturate(50%) contrast(50%) brightness(150%);
}

.blur-behind-weaker {
    backdrop-filter: blur(5px) saturate(50%) contrast(80%) brightness(110%);
}

.text-shadow-light {
    text-shadow: 0 0 10px white;
}

.navbar-logo {
    height: 3.5rem;
}
.navbar-logo2 {
    height: 2rem;
}

.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);
}

.paragraph text {

    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.196), 0.99rem);
}

.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);
}

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

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

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

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

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

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

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

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

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

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

.rich-text-content .paragraph {
    margin-top: 2rem;
}

@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);
    }
}

.text-justify {
    text-align: justify;
}

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

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