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


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

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

html {
    font-size: 1.125rem;
    line-height: 1.6;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@media (min-width: 992px) {
    html {
        font-size: 1.25rem;
    }
}

body {
    background: #fff;
    color: #202223;
    font-family: Muli, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.45rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.85rem;
}

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

a {
    border-bottom: 2px solid #ff4500;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover,
a:focus,
a:active {
    opacity: 0.8;
}

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

li {
    margin-bottom: 0.5rem;
}

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

dl {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 0 1rem;
}

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

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

address {
    margin: 0 0 1.5rem;
}

blockquote {
    color: #6d757e;
    font-size: 1.2rem;
    margin: 0 0 1.5rem;
}

blockquote cite {
    font-size: 1rem;
}

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

dfn,
em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

pre {
    background-color: #353a3f;
    color: #fff;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow: auto;
    padding: 1.5rem;
}

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

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

small {
    font-size: 0.875rem;
}

hr {
    background-color: #edf0f2;
    border: 0;
    height: 1px;
    margin: 1.5rem 0;
}

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

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

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

figure {
    margin: 0 0 1.5rem;
}

figcaption {
    font-size: 0.875rem;
    line-height: 1.5rem;
    padding: 0.5rem 0;
}


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


/*** Containers ***/

.container-md,
.container-lg,
.container-xl {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

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

.container-lg {
    max-width: 1080px;
}

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


/*** Grid ***/

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.col-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 630px) {
    .col-md-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-md-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-md-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-md-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-md-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 890px) {
    .col-lg-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-lg-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-lg-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-lg-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/*** Columns Plugin ***/

.columns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.column {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    max-width: 100%;
}

@media (min-width: 790px) {
    .column {
        -ms-flex: 1;
        flex: 1;
    }
}


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

.btn {
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    padding: .75rem 1.5rem;
    text-decoration: none;
    text-shadow: none;
    transition: opacity 0.3s;
}

.btn:hover,
.btn:focus,
.btn:active {
    opacity: 0.8;
}

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


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

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
}

input[type="text"],
input[type="email"],
input[type="search"],
textarea {
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
}

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

::-webkit-input-placeholder {
    color: #6d757e;
}

:-ms-input-placeholder {
    color: #6d757e;
}

::-ms-input-placeholder {
    color: #6d757e;
}

::placeholder {
    color: #6d757e;
}

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

select {
    border: 1px solid #dee2e6;
}

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

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

.form-control {
    border: 1px solid #dee2e6;
    color: #495057;
    display: block;
    font-size: 1rem;
    line-height: 1.25;
    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: 0.9rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

caption {
    letter-spacing: 1px;
    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;
}

.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;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #ff4500;
    display: block;
    font-size: 0.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;
}

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


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

.site-header {
    border-bottom: 1px solid #edf0f2;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.main-navigation {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.2;
}

.main-navigation a {
    border-bottom: 0;
    color: #202223;
}

.site-identity {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1rem;
}

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

.nav-brand {
    color: #202223;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
    text-decoration: none;
}

.lang-item {
    margin: 0 0.5rem 0 0;
}

.lang-item+li {
    border-left: 1px solid #adb5bd;
    padding-left: 0.5rem;
}

.lang-item.is-active>a {
    border-bottom: 2px solid #353a3f;
}

.lang-link {
    font-size: 0.9rem;
    padding: 3px 0;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .main-navigation {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .site-identity {
        margin-bottom: 0;
    }
}


/*--------------------------------
# Menu
--------------------------------*/

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.nav-item {
    margin: 0.5rem 0.75rem;
}

.nav-item.is-active>a {
    border-bottom: 2px solid #495057;
}

.nav-link {
    display: block;
    padding: 3px 0;
}

@media (min-width: 768px) {
    .nav-item:last-child {
        margin-right: 0;
    }
}


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


/* --- General --- */

.site-content {
    padding: 3rem 0;
}

.page-title {
    margin-bottom: 3rem;
    text-align: center;
}

.tag-title {
    text-transform: capitalize;
}


/* --- Home --- */

.hero {
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 400;
}

.hero .btn {
    padding: 1rem 3rem;
}

.sep {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.view-all {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.view-all a {
    font-size: 1.25rem;
}


/* --- Blog --- */

.entry-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.entry-text {
    margin-bottom: 2.5rem;
}

.sidebar .search {
    margin-bottom: 2rem;
}

.sidebar .search .form-control {
    font-size: 0.9rem;
    padding: 0.75rem 2.25rem 0.75rem 0.75rem;
}

.sidebar .search button {
    padding: .25rem;
    right: 0.3rem;
    top: 0.35rem;
}

.sidebar .search svg {
    width: 1.5rem;
    height: 1.5rem;
}

.sidebar .tags {
    list-style: none;
    margin: 0 0 1.5rem;
    padding-left: 0;
}

.sidebar .tags .tag-item {
    border-bottom: 1px solid #edf0f2;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.sidebar .tags .tag-link {
    border: 0;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
}


/* --- Pagination --- */

.pagination {
    border-top: 1px solid #edf0f2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.page-link {
    border: 0;
    display: block;
    padding: .5rem .75rem;
}

.page-link.active {
    background-color: #f8f9fa;
}

@media (max-width: 480px) {
    .pagination-label {
        display: none;
    }
}


/* --- Article --- */

.article-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.article-title {
    margin-bottom: 1rem;
}

.article-date {
    color: #495057;
    font-size: 0.85rem;
}

.article-content {
    margin-bottom: 1.5rem;
}

.article-tags a {
    border: 0;
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.article-tags a::before {
    color: #ff4500;
    content: '#';
    margin-right: 1px;
}


/* --- Search --- */

.search {
    margin-bottom: 3rem;
}

.search .input-group {
    position: relative;
}

.search .form-control {
    display: inline-block;
    font-size: 1.25rem;
    padding-right: 3rem;
}

.search button {
    position: absolute;
    right: 0.4rem;
    top: 0.8rem;
}

.search svg {
    fill: #6d757e;
    width: 2rem;
    height: 2rem;
}


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

.site-footer {
    border-top: 1px solid #edf0f2;
    font-size: 0.9rem;
    padding: 1rem 0;
}

.site-footer .container-lg {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .site-footer .container-lg {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.site-footer .copyright {
    margin: 0.5rem 0;
}

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

.site-footer a {
    border: 0;
    color: #495057;
}