﻿body {
    font-family: 'Franklin Gothic', sans-serif;
    animation: fadeInAnimation ease 0.75s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.nav-link {
    color: white;
    transition: all 0.5s;
}

    .nav-link:hover {
        color: #0680A3;
        background-color: white;
    }

.btn-questionnairenav {
    background-color: white !important;
    color: #0680A3 !important;
    border: 1px solid #0680A3 !important;
    transition: all 0.5s;
}

    .btn-questionnairenav:hover {
        background-color: #0680A3 !important;
        color: white !important;
    }

.header {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
}

.bg-header {
    background-color: #0680A3;
}

.fg-header {
    color: white;
}

.fg-questionnaire {
    color: #0680A3;
}

.btn-navlink {
    border: 1px solid white;
    border-radius: 10px;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="select"] {
    /*max-width: 280px;*/
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
