/*
Table of Contents
-------------------
# Base
# Layout
# Buttons
# Forms
# Tables
# Utilities
# Header
# Cards
# Pages
# Footer
*/

/*--------------------------------
# Base
--------------------------------*/

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@media (min-width: 768px) {

    html {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {

    html {
        font-size: 1.25rem;
    }
}

body {
    background: #fff;
    color: #353a3f;
	font-family: 'Lora', serif;
    margin: 0;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #202223;
    font-family: inherit;
    font-weight: normal;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
}

h1 { font-size: 40px; font-size: 2.5rem; }

h2 { font-size: 32px; font-size: 2rem; }

h3 { font-size: 24px; font-size: 1.5rem; }

h4 { font-size: 20px; font-size: 1.25rem; }

h5 { font-size: 18.4px; font-size: 1.15rem; }

h6 { font-size: 16px; font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
}

a {
    color: #1565c0;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out
}

a:hover, a:focus, a:active {
    color: rgb(20, 64, 115);
}

a:hover, a:active {
    outline: 0;
}

ul, ol {
    margin: 0 0 24px 24px;
    margin: 0 0 1.5rem 1.5rem;
    padding-left: 16px;
    padding-left: 1rem;
}

li { margin-bottom: 8px; margin-bottom: 0.5rem; }

li > ul,
li > ol {
    margin-top: 8px;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

dl {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    padding-left: 16px;
    padding-left: 1rem;
}

dt { font-weight: bold; }

dd { margin: 0 24px 24px 0; margin: 0 1.5rem 1.5rem 0; }

abbr {
    border-bottom: 1px dotted #495057;
    cursor: help
}

abbr[title] {
    text-decoration: none;
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
}

blockquote,
q { quotes: "\201C" "\201D"; }

blockquote {
    color: #495057;
    font-size: 19.2px;
    font-size: 1.2rem;
    margin: 24px 0 24px 24px;
    margin: 1.5rem 0 1.5rem 1.5rem
}

blockquote cite {
    font-size: 16px;
    font-size: 1rem;
}

blockquote cite::before {
    content: "— ";
}

dfn,
em { font-style: italic; }

strong { font-weight: bolder; }

code,
kbd,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 14px;
    font-size: .875rem;
}

pre {
    background: #f8f9fa;
    color: #202223;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow: auto;
    padding: 24px;
    padding: 1.5rem;
}

mark,
ins {
    background: #fcf8e3;
    text-decoration: none;
}

small { font-size: 14px; font-size: .875rem; }

hr {
    background-color: #e5e5e5;
    border: 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 1px;
    margin: 24px 0;
    margin: 1.5rem 0;
    overflow: visible;
}

embed,
iframe,
img,
object,
video {
    height: auto;
    max-width: 100%;
}

.iframemap {
    height: 450px !important;
    max-width: 100%;
}

.iframeform {
    height: 1200px !important;
    max-width: 100%;
}

img {
    border-style: none;
    vertical-align: middle;
}

img + figcaption {
    font-style: italic;
    text-align: center;
}

figure { margin: 0 0 28px; margin: 0 0 1.75rem; }

figcaption {
    font-size: 14px;
    font-size: .875rem;
    line-height: 24px;
    line-height: 1.5rem;
    padding: 8px 0;
    padding: 0.5rem 0;
}

/*--------------------------------
# Layout
--------------------------------*/

.container-md,
.container-xl {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    width: 100%;
}

.container-md { max-width: 768px; }

.container-xl { max-width: 1200px; }

.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.col { -ms-flex-preferred-size: 100%; flex-basis: 100%; }

@media (min-width: 576px) {

    .col { -ms-flex-preferred-size: 48%; flex-basis: 48%; }
}

@media (min-width: 768px) {

    .col { -ms-flex-preferred-size: 31.5%; flex-basis: 31.5%; }
}

/*--------------------------------
# Buttons
--------------------------------*/

.btn {
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: inline-block;
    font-size: 14px;
    font-size: .875rem;
    letter-spacing: 0.5px;
    line-height: 1;
    padding: 12px 24px;
    padding: .75rem 1.5rem;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}

.btn:hover,
    .btn:focus,
    .btn:active {
    background-color: rgb(20, 76, 140);
    color: #fff;
}

.btn-primary {
    background-color: #1565c0;
    color: #fff;
}

/*--------------------------------
# Forms
--------------------------------*/

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    cursor: pointer;
    -webkit-appearance: button;
}

label {
    display: inline-block;
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

select {
    border: 1px solid #ced4da;
}

textarea {
    overflow: auto;
    resize: vertical;
    width: 100%;
}

.form {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid #ced4da;
    color: #495057;
    display: block;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
    padding: 16px;
    padding: 1rem;
    width: 100%
}

.form-control:focus {
    border-color: #202223;
    outline: 0;
}

/*--------------------------------
# Tables
--------------------------------*/

table {
    border: 1px solid #ced4da;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 14px;
    font-size: .875rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    width: 100%;
}

caption {
    letter-spacing: 1px;
    margin: 8px 0 16px;
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
}

th,
td {
    border: 1px solid #ced4da;
    line-height: 1.2;
    margin: 0;
    overflow: visible;
    padding: 1em;
    text-align: center;
}

th {
    font-weight: 600;
    letter-spacing: 0.25px;
}

.table-responsive {
    display: block;
    overflow-x: auto;
}

/*--------------------------------
# Utilities
--------------------------------*/

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f8f9fa;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    clip: auto !important;
    color: #1565c0;
    display: block;
    font-size: 14px;
    font-size: .875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/*--------------------------------
# Header
--------------------------------*/

.site-header {
    padding-top: 48px;
    padding-top: 3rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
}

.main-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.nav-brand {
    color: #202223;
    font-size: 32px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-right: 8px;
    margin-right: 0.5rem;
    text-decoration: none;
    text-transform: uppercase
}

.nav-brand:hover, .nav-brand:focus {
    color: inherit;
    opacity: 0.8;
}

.site-logo {
    margin-right: 16px;
    margin-right: 1rem;
    max-height: 50px;
    width: auto;
}

.lang {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding-left: 0
}

.lang .lang-item {
    display: inline-block;
}

.lang .lang-item + li::before {
    color: #adb5bd;
    content: "/";
}

.lang .lang-item.is-active .lang-link {
    text-decoration: underline;
}

.lang .lang-link {
    color: #495057;
    text-decoration: none;
}

.nav {
    display: none;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    list-style: none;
    margin: 16px 0;
    margin: 1rem 0;
    padding-left: 0;
}

.nav-item {
    margin-bottom: 0;
    padding: 12px 0;
    padding: 0.75rem 0
}

.nav-item.is-active .nav-link {
    border-bottom: 2px solid #1565c0;
    color: #202223;
}

.nav-link {
    color: #6d757e;
    display: inline-block;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase
}

.nav-link:hover, .nav-link:focus {
    color: #202223;
}

.menu-toggle,
.toggled .nav {
    display: block;
}

.menu-toggle svg {
    width: 30px;
    height: 30px;
}

@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    .nav {
        display: block;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
    }

    .nav-item {
        border: none;
        display: inline-block;
        margin-bottom: 0;
        padding: 0
    }

    .nav-item + li {
        margin-left: 1rem;
    }

    .nav-link {
        font-size: .875rem;
        padding: 0;
    }
}

/*--------------------------------
# Cards
--------------------------------*/

.card {
    margin-bottom: 16px;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%
}

.card a {
    color: #495057;
    display: inline-block;
    opacity: 1;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.card a:hover {
    opacity: 0.8;
}

.card-image {
    width: 100%;
}

.card-body {
    padding: 16px;
    padding: 1rem;
}

.card-title {
    font-size: 16px;
    font-size: 1rem;
    text-transform: uppercase;
}

.card-text {
    font-size: 14px;
    font-size: .875rem;
}

/*--------------------------------
# Pages
--------------------------------*/

.site-main {
    margin-bottom: 48px;
    margin-bottom: 3rem;
}

.page-title {
    margin-bottom: 48px;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {

    .page-title {
        text-align: center;
    }
}

/* ----- Blog ----- */

.article-item {
    margin-bottom: 40px;
    margin-bottom: 2.5rem
}

.article-item .article-title {
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 0;
}

.article-item .article-title a {
    text-decoration: none;
}

.article-item .article-date {
    color: #6d757e;
    font-size: 13.6px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

.article-item .article-excerpt {
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

.article-item .article-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15.2px;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: capitalize;
}

.article-item .article-more svg {
    fill: currentColor;
    margin-left: 5px;
    width: 16px;
    width: 1rem;
    height: 16px;
    height: 1rem;
}

.article .page-title {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
}

.article .article-date {
    color: #6d757e;
    font-size: 13.6px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {

    .article .article-date {
        text-align: center;
    }
}

/* ----- Pagination ----- */

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 48px;
    margin-top: 3rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem
}

.pagination.flip {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.pagination .back-link {
    text-decoration: none;
}

.pagination-item {
    background-color: #edf0f2;
    border-radius: 50%;
    fill: #1565c0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}

.pagination-item:hover {
    opacity: 0.75;
}

.pagination-item svg {
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
}

.pagination-item.is-inactive {
    background-color: transparent;
    border: 1px solid #ccc;
    fill: #ccc;
}

/*--------------------------------
# Footer
--------------------------------*/

.site-footer {
    color: #495057;
    font-size: 14px;
    font-size: .875rem;
    padding: 24px;
    padding: 1.5rem;
    text-align: center
}

.site-footer p {
    margin-bottom: 0;
}
