@charset "UTF-8";

/* ===================================================== */
/* IMPORT FONT FAMILY                                    */
/* ===================================================== */

/* font family */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@100;400;600;700&display=swap');


/*=============================================*/
/* GENERAL                                     */
/*=============================================*/

html,
body,
* {
    font-family: 'Saira Semi Condensed', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    font-size: 1rem;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
}
h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.3rem;
}
h3 {
    font-size: 1.8rem;
}
h4 {
    font-size: 1.3rem;
}
h5 {
    font-size: 1.2rem;
}
h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 10px;
}


table {
    border-collapse: collapse;
}

table th, td {
    border: 1px solid #999;
    padding: 5px;
    vertical-align: top;
}

table th {
    background-color: #ccc;
    font-weight: bold;
}


ul {
    padding-left: 20px
}

/* 
ul  li {

}
*/

a {
    color: #6cb530;
    text-decoration: underline;
}

a:hover {
    color: #39a8e0;
}

/*=============================================*/
/* CONTENT                                     */
/*=============================================*/
.content-wrapper {
    padding: 0 1rem;
}

/*
header, footer {
    background-color: #f8f8f8;
    padding: 10px;
    text-align: center;
}
header img {
    max-width: 150px;
}
*/
.logo {
    
}

header {
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(51,51,51,.2);
    border-bottom: 5px solid #6cb530;
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
}

header .logo img {
    max-width: 260px;
}


footer {
    background-color: #333;
    margin: 1rem 0 0 0;
    padding: 3rem;
    color: #fff;
    border-top: 5px solid #6cb530;
}

footer .logo img {
    max-width: 180px;
}

footer .footer-content {
    margin-top: 20px;
}
    
