﻿@charset "utf-8";

/* CSS Document */

/*did not work
:root {
--dark: #243761;
}
*/

/* this a and a hover works for the nav cards just under the hero image*/
a {
  color: #0056b3;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #243761;
  text-decoration: underline;
}


.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #9c917d;
}

.active, .nav-pill:hover {
    background-color: #bbb8b0;
}

.accordion {
    background-color: #eae7dc;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

    .active, .accordion:hover {
        background-color: #bbb8b0;
    }

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}
h1 {
    padding-top: 0;
    padding-bottom: 15px;
    border-bottom: none;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 2em;
    text-transform: uppercase;
    color: #7f9894
}
h2 {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: none;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 1.75em;
    text-transform: uppercase;
    color: #464542
}

h3 {
    font-family: 'Julius Sans One', sans-serif;
    font-size: 1em;
    color: #7f9894
}

h5 {
    font-family: 'Julius Sans One', sans-serif;
    font-size: .90em;
    color: #343a40;
}

blockquote {
    padding: 10px 10px;
    font-family: 'Bitter',serif;
    font-size: 18px;
    margin: 10px 10px;
    color: #a9a9a9;
}

.btn-primary{color:#fff;background-color:#5e5b5d;border-color:#5e5b5d}

    .btn-primary:hover {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40;
    }

/*did not work for nav menu size

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.50rem;
    line-height: inherit;
    white-space: nowrap;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1.25 rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 1.25rem;
    color: #6c757d;
    white-space: nowrap;
}
   

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.50rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
     */

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: #bbb8b0;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-body {
    background-color: #eae7dc;
}

