* {
    font-family: "helvetica";
}

html {
    height: 100%;
}

body {
    padding-right: 0 !important;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    flex: 1 0 auto;
    margin-top: 5rem;
}

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

h1 {
    font-weight: bold;
    font-size: 2.5em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h2 {
    font-weight: bold;
    font-size: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h3 {
    font-weight: bold;
    font-size: 1.25em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.navbar {
    height: 80px;
}

.nav-link {
    color: var(--bs-nav-link-color);
    border-radius: 4px;
}

.nav-link:hover {
    color: white !important;
    background-color: #0D28A6;
}

/* Invisible element to support accurate in-page navigation */
section::before {
    content: "";
    position: absolute;
    display: block;
    top: -80px;
    left: 0;
    width: 100%;
    height: 0;
    pointer-events: none;
}

.offcanvas-body ul {
    list-style-type: none;
    margin-bottom: 1rem;
    padding-left: 0;
}

.offcanvas-body li {
    line-height: 36px;
}

.btn {
    border-radius: 4px;
    background-color: #5CB85F;
}

section:not(:first-of-type) {
    position: relative;
    padding-top: 70px;
}

section:last-of-type {
    margin-bottom: 70px;
}

footer {
    flex-shrink: 0;
}

.bg-blue {
    background-color: #f1f3ff;
}

.offcanvas-button {
    border: none;
    background-color: transparent;
}

.offcanvas-header {
    padding-right: 28px;
}

.offcanvas-body {
    padding-right: 28px;
}

.logo-img {
    height: 4rem;
    width: fit-content;
}

.accordion-item {
    border-radius: 10px;
    border-top: 0;
}

.accordion-button {
    border: 2px solid #d4d4d4;
    border-radius: 5px;
}

#cover {
    min-height: 400px;
}

#cover p {
    @media only screen and (min-width: 768px) {
        margin-bottom: 100px;
    }
}

#cover-img {
    margin-top: 2rem;
    padding-right: 0;
    display: flex;
    align-items: flex-end;
}

/* Forms */
.form-label {
    color: #3C3C3C;
    font-size: 0.8em;
}

.form-control, .form-select {
    font-size: 0.8em;
}

/* Removes number input arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}