.logo img {
    width: auto;
    height: 2rem;
    top: 0;
    left: 0;
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0
}

.home {
    min-height: 100vh;
    /* width: 100vw; */
    /* background-image: url(../img/index-bg.jpg); */
    background-image: url(../img/home-bg.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.home h1 {
    color: black;
    font-size: 3rem;
}

.home h2 {
    color: black;
    font-size: 1.5rem;
}

.home .wave {
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(../img/wave.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.home .wave2 {
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: .3;
}

.home .wave3 {
    animation-duration: 4s;
    opacity: .5;
}

@keyframes waves {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 100rem;
    }
}

#mainNav .navbar-toggler {
    color: #0070c0;
}

.navbar-toggler {
    border: var(--bs-border-width) solid #0070c0;
}

.nav-link {
    color: white;
}

.bg-primary-gradient a {
    font-size: 1rem;
}

.bg-primary-gradient p {
    font-size: 1rem;
}

.nav-item a {
    font-size: 1rem !important;
}

.nav-item {
    line-height: 30px;
}

.dropdown {
    line-height: 30px;
}

.dropdown .btn {
    background: transparent;
    border: none;
    color: white;
    line-height: 32px;
    font-size: 1rem !important;
}

footer {
    padding: 0 !important;
    padding-top: 30px;
    ;
}

footer p {
    margin: 0
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
    height: calc(5rem + calc(var(--bs-border-width) * 2));
}

.site-heading h1, span {
    color: white;
}

.subheading {
    color: white;
}