html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.darkenalittle {
    filter: brightness(0.6);
}

.darken {
    filter: brightness(0.4);
}

.responsive {
    width:100%;
    height:auto;
}

.responsive25 {
    width: 25%;
    height: auto;
}

.responsive10 {
    width: auto;
    height: auto;
}


.testimonial-card .card-up {
    height: 120px;
    overflow: hidden;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.aqua-gradient {
    background: linear-gradient(40deg, black, gray) !important;
}

.club-gradient {
    background-color: blue; /* For browsers that do not support gradients */
    background-image: linear-gradient(blue, yellow, orange);
}

.club-gradient2 {
    background-color: blue; /* For browsers that do not support gradients */
    background-image: linear-gradient(40deg, blue, yellow, orange) !important;
}

.club-gradient3 {
    background-color: blue; /* For browsers that do not support gradients */
    background-image: linear-gradient(to bottom right, blue, yellow, orange) !important;
}

.testimonial-card .avatar {
    width: 120px;
    margin-top: -60px;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 50%;
}


newsitemtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

sidemenutext {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
}

hamburgermenu {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 20px;
    top: 5px;
    right: 5px;
    z-index: 2;
    padding: 1px;
    border-radius: 2px;
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: .5px solid transparent;
    padding: .1rem .75rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: ghostwhite;
    border-color: ghostwhite;
}

menutext {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

menutext2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

menutext3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

sitetext {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight:400;
}

sitetext2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

sitetext3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

mainheader {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
}

subheader {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    position: center;
}

subheader2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    position: center;
}

subheader3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    position: center;
}

subheader4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    position: center;
}

subheader5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    position: center;
}

subheader6 {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    position: center;
}

.slideanim {
    visibility: hidden;
}

.slide {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}



blockquote {
    font-family: Georgia, serif;
    font-size: 16px;
    font-style: italic;
    position: relative;
    margin: 0.5em;
    padding: 0.5em 2em 0.5em 3em;
}
    /* Thanks: http://callmenick.com/post/styling-blockquotes-with-css-pseudo-classes */
    blockquote:before {
        font-family: Georgia, serif;
        position: absolute;
        font-size: 6em;
        line-height: 1;
        top: 0;
        left: 0;
        content: "\201C";
    }

    blockquote:after {
        font-family: Georgia, serif;
        position: absolute;
        /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
        float: right;
        font-size: 6em;
        line-height: 1;
        right: 0;
        bottom: -0.5em;
        content: "\201D";
    }

    blockquote footer {
        padding: 0 2em 0 0;
        text-align: right;
    }

    blockquote cite:before {
        content: "\2013";
    }

.card.map-card .living-coral {
    background-color: #fa7268;
}

.card.map-card .living-coral-text {
    color: black;
}

.card.map-card .table th {
    width: 2rem;
}

.card.map-card .pt-3-5 {
    padding-top: 1.25rem;
}

.card.map-card .card-body {
    position: absolute;
    width: 100%;
    height: 45%;
    top: 55%;
    overflow: hidden;
    background-color: transparent;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

    .card.map-card .card-body.closed {
        top: 100%;
        height: 7.5rem;
        margin-top: -7.5rem;
    }

.card.map-card .map-container {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .card.map-card .map-container iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

.card.map-card .button .btn-floating {
    margin-top: -1.5rem;
}



.tab-content {
    background: #e5e4e2;
    line-height: 30px;
    border: 1px solid #e5e4e2;
    border-top: 1px solid dimgray;
    border-bottom: 1px solid dimgray;
    padding: 30px 25px;

}

nav > .nav.nav-tabs {
    border: none;
    color: #fff;

}

nav > div a.nav-item.nav-link {
    border: none;
    padding: 15px 25px;
    color: dimgray;

}

    nav > div a.nav-item.nav-link.active {
        border-bottom: 1px solid dimgray;
        border-top: 1px solid dimgray;
        border-left: 1px solid dimgray;
        border-right: 1px solid dimgray;
        padding: 15px 25px;
        color: black;
        background-color: lightgray; /* Tab Color */
    }

        nav > div a.nav-item.nav-link.active:before {
            color: black;
            background-color: lightgray; /* Tab Color */
            border-bottom: 1px solid dimgray;
            border-top: 1px solid dimgray;
            border-left: 1px solid dimgray;
            border-right: 1px solid dimgray;
        }

        nav > div a.nav-item.nav-link.active:after {
            color: black;
            background-color: lightgray; /* Tab Color */
            border-bottom: 1px solid dimgray;
            border-top: 1px solid dimgray;
            border-left: 1px solid dimgray;
            border-right: 1px solid dimgray;
        }

    nav > div a.nav-item.nav-link:hover {
        border-bottom: 1px solid dimgray;
        border-top: 1px solid dimgray;
        border-left: 1px solid dimgray;
        border-right: 1px solid dimgray;
        color: black;
    }

    nav > div a.nav-item.nav-link::selection {
        color: black;
        background-color: lightgray; /* Tab Color */
        border-bottom: 1px solid dimgray;
        border-top: 1px solid dimgray;
        border-left: 1px solid dimgray;
        border-right: 1px solid dimgray;
    }

    nav > div a.nav-item.nav-link:focus::after {
        color: black;
        background-color: lightgray; /* Tab Color */
        border-bottom: 1px solid dimgray;
        border-top: 1px solid dimgray;
        border-left: 1px solid dimgray;
        border-right: 1px solid dimgray;
    }

    nav > div a.nav-item.nav-link:focus {
        color: black;
        background-color: lightgray; /* Tab Color */
        border-bottom: 1px solid dimgray;
        border-top: 1px solid dimgray;
        border-left: 1px solid dimgray;
        border-right: 1px solid dimgray;
    }

.bg-1 {
    background-color: #e5e4e2; /* Light Gray */
    color: #555555;
}

.bg-2 {
    background-color: #c8c3cc; /* Dark Blue */
    color: #555555;
}

.bg-3 {
    background-color: whitesmoke; /* White */
    color: #555555;
}