@import url(https://fonts.googleapis.com/css?family=Josefin+Slab:700);
@import url(https://fonts.googleapis.com/css?family=Great+Vibes);

body {
    background: white;
}

.flex-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

nav {
    margin-right: 20px;
    width: 200px;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    background: #5B779E;
}

nav ul ul {
    display: flex;
    background: #737C9C;
    height: 100px;
    align-items: center;
    justify-content: space-around;
}

nav ul ul li a {
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0; 
}

nav ul ul li a:hover {
    background: #737C9C;
}

.nav-active {
    background: #8FBBF0;
}

.nav-active a {
    color: #FFE8E8;
}

a {
    color: #318A87;
}

nav a {
    display: block;
    transition-duration: 1s;
    display: flex;
    align-items: center;
    padding:12px 0 12px 30px;
    color: #B6E2F9;
    text-decoration: none;
    font-family: 'Josefin Slab', serif;
    border-bottom: 1px solid #737C9C;
}

nav a:hover {
    transition-duration: 1s;
    background: #8FBBF0;
    color: #FFE8E8;
}

section[id="main"] {
    width: 40%;
    background-color: rgba(253, 254, 255, 0.90);
    padding: 20px;
}

section[id="main"] form[class="ui-form"] input {
    border: none;
    background: none;
    border-bottom: 1px solid black;
    width: 250px;
    font-size: 1.1rem;
    transition-duration: 1s;
}

section[id="main"] form[class="ui-form"] input:focus {
    border-width: 1.5px;
    transition-duration: 1s;
    border-bottom-color: #14778C;
}

textarea {
    resize: none;
    resize: vertical;
    min-height: 200px;
    min-width: 100%;
    font-size: 1.1rem;
}

textarea:focus {
    transition-duration: 1s;
    border: 2px solid #14778C;
}

legend {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Great Vibes', cursive;
}

section[id="main"] form[class="ui-form"] label {
    display: block;
    width: 20%;
    margin-bottom: 10px;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 5px;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

button {
    background-color: #5B779E;
    border: none;
    width: 150px;
    height: 40px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: #B6E2F9;
    border-radius: 1px;
    transition-duration: .5s;
    font-family: 'Josefin Slab', serif;
}

button:hover {
    transition-duration: .5s;
    background: #8FBBF0;
    color: #FFE8E8;
}

input[type="radio"] {
    float: left;
}

a {
    text-decoration: none;
}

.link-danger {
    color: red;
    font-weight: bold;
}

.link-green {
    color: #6CD684;
    font-weight: bold;
}

.link-blue {
    color: #6CBAD6;
    font-weight: bold;
}

.alert {
    display: flex;
    height: 40px;
    max-width: 750px;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    border-radius: 2px;
    box-shadow: 1px 1px 1px;
    font-size: 1.2rem;
}

.alert-success {
    background: #93DC93;
    color: #017B01;
    box-shadow: 1px 1px 1px green;
}

.alert-danger {
    background: #D4887D;
    color: #A80404;
    box-shadow: 1px 1px 1px red;
}

.alert-notice {
    background: #A5E0E3;
    color: #4343D0;
    box-shadow: 1px 1px 1px blue;
}

.alert-warning {
    background: #EDD59C;
    color: #D18A08;
    box-shadow: 1px 1px 1px orange;
}

.admin-notice {
    display: flex;
    height: 35px;
    max-width: 750px;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background: #A4EDF8;
    color: blue;
}

.testimonial {
    border: 1px solid rgb(73, 166, 193);
    border-radius: 2px;
    background: white;
    padding: 5px;
    margin-top: 10px;
    color: #444141;
}

p {
    color: #444141;
}

.answer{
    text-decoration: underline;
}

.logo {
    display: block;
    margin-right: 20px;
}

.page-title {
    font-size: 2rem;
    font-family: 'Great Vibes', cursive;
}

.page-content {
    text-align: justify;
    font-size: 1.2rem;
}

hr[class="testimonial-separator"] {
    display: inline-block;
    text-align: left;
    width: 250px;
}

a[class="add-testimonial-link"] {
    color: #3EB7CB;
    font-size: 1.1rem;
    transition-duration: 1s;
}

a[class="add-testimonial-link"]:hover {
    color: #2C72D7;
}

#diapo {
    cursor: pointer;
}

.page-content p {
	margin-bottom: -30px;
}

.page-content table {
	margin-top: -250px;
	max-width: 100%;
}

.page-content h3 {
	margin-bottom: -20px;
}

.contact-info {
    margin: 0;
    margin-top: 30px;
    padding: 0;
    width: 100%;
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    flex-wrap: wrap;
}