:root {
    --bs-dark-rgb: rgb(23,27,31);
    --bs-body-bg: #002936;
    --bs-border-color: #014d67;
    --bs-tertiary-bg: #014d67;
}
html, body {
    height: 100%;
    margin: 0;
}
/* Navbar */
.navbar {
    background: #002936;
    font-weight: bold;
    position: absolute;
    width: 100%;
    z-index: 2;
}
/* Carousel */
.hero-wrapper {
    height: 100vh;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    display: flex;
    align-items: center;
    flex-direction: column;
    /*bottom: 50%;
    transform: translateY(50%);*/
}
.carousel-caption * {
    background: rgba(0,41,54,1);
    padding: 5px;
}
/* Form Control */
.form-control:focus {
    border-color: var(--bs-border-color);
    box-shadow: unset;
    outline: none;
}
/* Accordion */
.accordion {
    --bs-accordion-border-color: var(--bs-border-color);
}
.accordion-button:not(.collapsed), .accordion-button.collapsed {
    background: var(--bs-border-color);
    color: white;
}
.accordion-button:focus {
    box-shadow: none;
}
[data-bs-theme=dark] .accordion-button::after {
    filter: grayscale(1) brightness(10);
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed, .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
/* Indentation */
.text-indent p {
    text-indent: 2em;
}