/* 
 * This file is a compatibility layer for modern SASS.
 * It helps fix deprecation warnings by providing modern alternatives
 * to deprecated functions.
 */
/*
 * Global Variables
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* 1 */
html input[type=button],
button,
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
  * Global setting
  */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.notice {
  border: 1px solid rgba(114.75, 114.75, 114.75, 0.87);
  border-radius: 0.4em;
  padding: 0.5em 1em;
}

img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

table,
th,
td {
  border: none;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.table-top {
  vertical-align: top;
}

.table-middle {
  vertical-align: middle;
}

.table-bottom {
  vertical-align: bottom;
}

table {
  width: 100%;
  display: table;
}
table.bordered > thead > tr, table.bordered > tbody > tr {
  border-bottom: 1px solid #d0d0d0;
}
table.striped > tbody > tr:nth-child(odd) {
  background-color: #f2f2f2;
}
table.striped > tbody > tr > td {
  border-radius: 0;
}
table.highlight > tbody > tr {
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -ms-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
table.highlight > tbody > tr:hover {
  background-color: #f2f2f2;
}
table.centered thead tr th,
table.centered tbody tr td,
table.centered tfoot tr td {
  text-align: center;
}

thead {
  border-bottom: 1px solid #d0d0d0;
}

td,
th {
  padding: 15px 5px;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  border-radius: 2px;
}

tfoot {
  border-top: 1px solid #d0d0d0;
}

b,
i,
strong,
em,
blockquote,
p,
q,
span,
figure,
img,
h1,
h2,
header,
input,
a {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

footer {
  padding-top: 2em;
  padding-bottom: 2em;
  padding-right: 0;
  color: #767676 !important;
  text-align: right;
  clear: both;
  display: block !important;
  width: 100%;
  margin-top: 2em;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}
footer .heart-icon {
  color: #f83e4b;
  text-shadow: 0 0 5px #fff, 0 0 10px #f83e4b;
}
footer {
  font-size: 14px;
}
footer a {
  color: #767676;
}
footer a:hover {
  color: #2c7b96;
}

.related-articles {
  margin-top: 2em;
}
.related-articles h4 {
  font-family: "Lora", Georgia, serif;
}
.related-articles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::-webkit-scrollbar {
  width: 4px;
  height: 6px;
}

::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.2);
}

/**
  * Helpers
  */
.block {
  display: block;
}

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

.hidden-md {
  display: none;
}
@media (min-width: 992px) {
  .hidden-md {
    display: inline-block;
  }
}

.radius-box {
  border-radius: 10px;
}

.radius-ls {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.radius-rs {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.radius-l1 {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.radius-r1 {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.m0 {
  margin: 0;
}

.mt0 {
  margin-top: 0;
}

.mr0 {
  margin-right: 0;
}

.mb0 {
  margin-bottom: 0;
}

.ml0 {
  margin-left: 0;
}

.ms {
  margin: 0.25em;
}

.mts {
  margin-top: 0.25em;
}

.mbs {
  margin-bottom: 0.25em;
}

.mrs {
  margin-right: 0.25em;
}

.mls {
  margin-left: 0.25em;
}

.mm {
  margin: 0.5em;
}

.mtm {
  margin-top: 0.5em;
}

.mbm {
  margin-bottom: 0.5em;
}

.mrm {
  margin-right: 0.5em;
}

.mlm {
  margin-left: 0.5em;
}

.m1 {
  margin: 1.5em;
}

.mt1 {
  margin-top: 1.5em;
}

.mb1 {
  margin-bottom: 1.5em;
}

.mr1 {
  margin-right: 1.5em;
}

.ml1 {
  margin-left: 1.5em;
}

.m2 {
  margin: 3em;
}

.mt2 {
  margin-top: 3em;
}

.mb2 {
  margin-bottom: 3em;
}

.mr2 {
  margin-right: 3em;
}

.ml2 {
  margin-left: 3em;
}

.p0 {
  padding: 0;
}

.pt0 {
  padding-top: 0;
}

.pr0 {
  padding-right: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pl0 {
  padding-left: 0;
}

.ps {
  padding: 0.25em;
}

.pts {
  padding-top: 0.25em;
}

.pbs {
  padding-bottom: 0.25em;
}

.prs {
  padding-right: 0.25em;
}

.pls {
  padding-left: 0.25em;
}

.pm {
  padding: 0.5em;
}

.ptm {
  padding-top: 0.5em;
}

.pbm {
  padding-bottom: 0.5em;
}

.prm {
  padding-right: 0.5em;
}

.plm {
  padding-left: 0.5em;
}

.p1 {
  padding: 1em;
}

.pt1 {
  padding-top: 1em;
}

.pr1 {
  padding-right: 1em;
}

.pb1 {
  padding-bottom: 1em;
}

.pl1 {
  padding-left: 1em;
}

.p2 {
  padding: 2em;
}

.pt2 {
  padding-top: 2em;
}

.pr2 {
  padding-right: 2em;
}

.pb2 {
  padding-bottom: 2em;
}

.pl2 {
  padding-left: 2em;
}

.pb5 {
  padding-bottom: 5em;
}

.pads {
  padding: 0.25em;
}

.padm {
  padding: 0.5em;
}

.padl {
  padding: 1em;
}

.padsx {
  padding-left: 0.25em;
  padding-right: 0.25em;
}

.padmx {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.padlx {
  padding-left: 1em;
  padding-right: 1em;
}

.padsy {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}

.padmy {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.padly {
  padding-top: 1em;
  padding-bottom: 1em;
}

.primary-text-color {
  color: #0f5a73;
}

.primary-bg-color {
  background-color: #0f5a73;
}

.secondary-text-color {
  color: #000;
}

.secondary-bg-color {
  background-color: #000;
}

.success-text-color {
  color: #65e892;
}

.success-bg-color {
  background-color: #65e892;
}

.danger-text-color {
  color: #f83e4b;
}

.danger-bg-color {
  background-color: #f83e4b;
}

.info-text-color {
  color: #09ABF6;
}

.info-bg-color {
  background-color: #09ABF6;
}

.warning-text-color {
  color: #F5A623;
}

.warning-bg-color {
  background-color: #F5A623;
}

/**
  * Grid
  */
.container {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

@media (min-width: 992px) {
  .container {
    width: 85%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 70%;
  }
}
.container .row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.section.no-pad {
  padding: 0;
}
.section.no-pad-bot {
  padding-bottom: 0;
}
.section.no-pad-top {
  padding-top: 0;
}

.row {
  margin-left: auto;
  margin-right: auto;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row .col {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  vertical-align: top;
  width: 100%;
}
.row .col.s1 {
  width: 8.3333333333%;
  margin-left: 0;
}
.row .col.s2 {
  width: 16.6666666667%;
  margin-left: 0;
}
.row .col.s3 {
  width: 25%;
  margin-left: 0;
}
.row .col.s4 {
  width: 33.3333333333%;
  margin-left: 0;
}
.row .col.s5 {
  width: 41.6666666667%;
  margin-left: 0;
}
.row .col.s6 {
  width: 50%;
  margin-left: 0;
}
.row .col.s7 {
  width: 58.3333333333%;
  margin-left: 0;
}
.row .col.s8 {
  width: 66.6666666667%;
  margin-left: 0;
}
.row .col.s9 {
  width: 75%;
  margin-left: 0;
}
.row .col.s10 {
  width: 83.3333333333%;
  margin-left: 0;
}
.row .col.s11 {
  width: 91.6666666667%;
  margin-left: 0;
}
.row .col.s12 {
  width: 100%;
  margin-left: 0;
}
.row .col.offset-s1 {
  margin-left: 8.3333333333%;
}
.row .col.offset-s2 {
  margin-left: 16.6666666667%;
}
.row .col.offset-s3 {
  margin-left: 25%;
}
.row .col.offset-s4 {
  margin-left: 33.3333333333%;
}
.row .col.offset-s5 {
  margin-left: 41.6666666667%;
}
.row .col.offset-s6 {
  margin-left: 50%;
}
.row .col.offset-s7 {
  margin-left: 58.3333333333%;
}
.row .col.offset-s8 {
  margin-left: 66.6666666667%;
}
.row .col.offset-s9 {
  margin-left: 75%;
}
.row .col.offset-s10 {
  margin-left: 83.3333333333%;
}
.row .col.offset-s11 {
  margin-left: 91.6666666667%;
}
.row .col.offset-s12 {
  margin-left: 100%;
}
@media (min-width: 600px) {
  .row .col.m1 {
    width: 8.3333333333%;
    margin-left: 0;
  }
  .row .col.m2 {
    width: 16.6666666667%;
    margin-left: 0;
  }
  .row .col.m3 {
    width: 25%;
    margin-left: 0;
  }
  .row .col.m4 {
    width: 33.3333333333%;
    margin-left: 0;
  }
  .row .col.m5 {
    width: 41.6666666667%;
    margin-left: 0;
  }
  .row .col.m6 {
    width: 50%;
    margin-left: 0;
  }
  .row .col.m7 {
    width: 58.3333333333%;
    margin-left: 0;
  }
  .row .col.m8 {
    width: 66.6666666667%;
    margin-left: 0;
  }
  .row .col.m9 {
    width: 75%;
    margin-left: 0;
  }
  .row .col.m10 {
    width: 83.3333333333%;
    margin-left: 0;
  }
  .row .col.m11 {
    width: 91.6666666667%;
    margin-left: 0;
  }
  .row .col.m12 {
    width: 100%;
    margin-left: 0;
  }
  .row .col.offset-m1 {
    margin-left: 8.3333333333%;
  }
  .row .col.offset-m2 {
    margin-left: 16.6666666667%;
  }
  .row .col.offset-m3 {
    margin-left: 25%;
  }
  .row .col.offset-m4 {
    margin-left: 33.3333333333%;
  }
  .row .col.offset-m5 {
    margin-left: 41.6666666667%;
  }
  .row .col.offset-m6 {
    margin-left: 50%;
  }
  .row .col.offset-m7 {
    margin-left: 58.3333333333%;
  }
  .row .col.offset-m8 {
    margin-left: 66.6666666667%;
  }
  .row .col.offset-m9 {
    margin-left: 75%;
  }
  .row .col.offset-m10 {
    margin-left: 83.3333333333%;
  }
  .row .col.offset-m11 {
    margin-left: 91.6666666667%;
  }
  .row .col.offset-m12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .row .col.l1 {
    width: 8.3333333333%;
    margin-left: 0;
  }
  .row .col.l2 {
    width: 16.6666666667%;
    margin-left: 0;
  }
  .row .col.l3 {
    width: 25%;
    margin-left: 0;
  }
  .row .col.l4 {
    width: 33.3333333333%;
    margin-left: 0;
  }
  .row .col.l5 {
    width: 41.6666666667%;
    margin-left: 0;
  }
  .row .col.l6 {
    width: 50%;
    margin-left: 0;
  }
  .row .col.l7 {
    width: 58.3333333333%;
    margin-left: 0;
  }
  .row .col.l8 {
    width: 66.6666666667%;
    margin-left: 0;
  }
  .row .col.l9 {
    width: 75%;
    margin-left: 0;
  }
  .row .col.l10 {
    width: 83.3333333333%;
    margin-left: 0;
  }
  .row .col.l11 {
    width: 91.6666666667%;
    margin-left: 0;
  }
  .row .col.l12 {
    width: 100%;
    margin-left: 0;
  }
  .row .col.offset-l1 {
    margin-left: 8.3333333333%;
  }
  .row .col.offset-l2 {
    margin-left: 16.6666666667%;
  }
  .row .col.offset-l3 {
    margin-left: 25%;
  }
  .row .col.offset-l4 {
    margin-left: 33.3333333333%;
  }
  .row .col.offset-l5 {
    margin-left: 41.6666666667%;
  }
  .row .col.offset-l6 {
    margin-left: 50%;
  }
  .row .col.offset-l7 {
    margin-left: 58.3333333333%;
  }
  .row .col.offset-l8 {
    margin-left: 66.6666666667%;
  }
  .row .col.offset-l9 {
    margin-left: 75%;
  }
  .row .col.offset-l10 {
    margin-left: 83.3333333333%;
  }
  .row .col.offset-l11 {
    margin-left: 91.6666666667%;
  }
  .row .col.offset-l12 {
    margin-left: 100%;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */
html {
  line-height: 1.5;
  font-family: "Lora", Georgia, serif;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.87);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
}

blockquote {
  display: block;
  position: relative;
  padding-left: 20px;
  font-style: italic;
  border-left: 5px solid #000;
}

a {
  text-decoration: none;
  color: #0f5a73;
}
a:hover, a:focus {
  color: #2c7b96;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: inherit;
  color: rgba(0, 0, 0, 0.87);
}
h1 a:hover, h1 a:focus, h2 a:hover, h2 a:focus, h3 a:hover, h3 a:focus, h4 a:hover, h4 a:focus, h5 a:hover, h5 a:focus, h6 a:hover, h6 a:focus {
  color: #2c7b96;
}

h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  margin: 1.2em 0 0.8em 0;
}

h2 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  margin: 1em 0 0.8em 0;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  margin: 0.9em 0 0.7em 0;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.25rem);
  margin: 0.8em 0 0.6em 0;
}

h5 {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
  margin: 0.7em 0 0.5em 0;
}

h6 {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  margin: 0.7em 0 0.5em 0;
  text-transform: uppercase;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
}

p {
  margin: 1.2em 0;
  word-spacing: 0.05em;
  line-height: 1.6em;
}

/* Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 20px;
  font-size: 0.875em;
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  background-color: #0f5a73;
  color: #fff;
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #0f5a73;
  text-decoration: none !important;
  border-radius: 5px;
}
.btn:visited {
  color: #fff;
  border-color: #0f5a73;
}
.btn:hover {
  background-color: #fff;
  color: #0f5a73;
  border-color: #0f5a73;
}

.btn-success {
  background-color: #65e892;
  color: #fff;
  border-color: #65e892;
}
.btn-success:visited {
  color: #fff;
  border-color: #65e892;
}
.btn-success:hover {
  background-color: #fff;
  color: #65e892;
  border-color: #65e892;
}

.btn-warning {
  background-color: #F5A623;
  color: #fff;
  border-color: #F5A623;
}
.btn-warning:visited {
  color: #fff;
  border-color: #F5A623;
}
.btn-warning:hover {
  background-color: #fff;
  color: #F5A623;
  border-color: #F5A623;
}

.btn-danger {
  background-color: #f83e4b;
  color: #fff;
  border-color: #f83e4b;
}
.btn-danger:visited {
  color: #fff;
  border-color: #f83e4b;
}
.btn-danger:hover {
  background-color: #fff;
  color: #f83e4b;
  border-color: #f83e4b;
}

.btn-info {
  background-color: #09ABF6;
  color: #fff;
  border-color: #09ABF6;
}
.btn-info:visited {
  border-color: #09ABF6;
  color: #fff;
}
.btn-info:hover {
  background-color: #fff;
  color: #09ABF6;
  border-color: #09ABF6;
}

/* ==========================================================================
   Syntax highlighting
   ========================================================================== */
pre, code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color: #525252;
  font-size: 0.9em;
  background-color: #f8f8f8;
  font-size: 12px;
}

code {
  color: #e96900;
  border-radius: 2px;
  white-space: nowrap;
}

pre {
  overflow: auto;
  display: block;
  padding: 1em;
  margin: 0 0 1em;
  line-height: 1.3875;
  word-break: break-all;
  word-wrap: break-word;
  border-radius: 0;
  font-weight: normal;
}

pre code {
  background: transparent;
  white-space: pre;
  overflow: auto;
  word-wrap: normal;
  color: #525252;
}
pre code span {
  word-break: break-all;
}

.highlight {
  margin: 0;
}
.highlight pre {
  position: relative;
}
.highlight pre code {
  color: #525252;
}
.highlight pre code::before {
  content: attr(data-lang);
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  text-align: right;
  text-transform: uppercase;
  font-size: 0.85em;
  padding: 5px 10px 0;
  line-height: 20px;
  height: 20px;
  font-weight: 600;
}
.highlight .hll {
  background-color: #ffffcc;
}
.highlight .c {
  color: #B0B2B0;
  font-style: italic;
}
.highlight { /* Comment */ }
.highlight { /* Error */ }
.highlight .k {
  color: #AA22FF;
  font-weight: bold;
}
.highlight { /* Keyword */ }
.highlight .o {
  color: #666666;
}
.highlight { /* Operator */ }
.highlight .cm {
  color: #B0B2B0;
  font-style: italic;
}
.highlight { /* Comment.Multiline */ }
.highlight .cp {
  color: #B0B2B0;
}
.highlight { /* Comment.Preproc */ }
.highlight .c1 {
  color: #B0B2B0;
  font-style: italic;
}
.highlight { /* Comment.Single */ }
.highlight .cs {
  color: #B0B2B0;
  font-weight: bold;
}
.highlight { /* Comment.Special */ }
.highlight .gd {
  color: #A00000;
}
.highlight { /* Generic.Deleted */ }
.highlight .ge {
  font-style: italic;
}
.highlight { /* Generic.Emph */ }
.highlight .gr {
  color: #FF0000;
}
.highlight { /* Generic.Error */ }
.highlight .gh {
  color: #000080;
  font-weight: bold;
}
.highlight { /* Generic.Heading */ }
.highlight .gi {
  color: #00A000;
}
.highlight { /* Generic.Inserted */ }
.highlight .go {
  color: #808080;
}
.highlight { /* Generic.Output */ }
.highlight .gp {
  color: #000080;
  font-weight: bold;
}
.highlight { /* Generic.Prompt */ }
.highlight .gs {
  font-weight: bold;
}
.highlight { /* Generic.Strong */ }
.highlight .gu {
  color: #800080;
  font-weight: bold;
}
.highlight { /* Generic.Subheading */ }
.highlight .gt {
  color: #0040D0;
}
.highlight { /* Generic.Traceback */ }
.highlight .kc {
  color: #AA22FF;
  font-weight: bold;
}
.highlight { /* Keyword.Constant */ }
.highlight .kd {
  color: #AA22FF;
  font-weight: bold;
}
.highlight { /* Keyword.Declaration */ }
.highlight .kn {
  color: #AA22FF;
  font-weight: bold;
}
.highlight { /* Keyword.Namespace */ }
.highlight .kp {
  color: #AA22FF;
}
.highlight { /* Keyword.Pseudo */ }
.highlight .kr {
  color: #AA22FF;
  font-weight: bold;
}
.highlight { /* Keyword.Reserved */ }
.highlight .kt {
  color: #00BB00;
  font-weight: bold;
}
.highlight { /* Keyword.Type */ }
.highlight .m {
  color: #666666;
}
.highlight { /* Literal.Number */ }
.highlight .s {
  color: #BB4444;
}
.highlight { /* Literal.String */ }
.highlight .na {
  color: #BB4444;
}
.highlight { /* Name.Attribute */ }
.highlight .nb {
  color: #AA22FF;
}
.highlight { /* Name.Builtin */ }
.highlight .nc {
  color: #0000FF;
}
.highlight { /* Name.Class */ }
.highlight .no {
  color: #880000;
}
.highlight { /* Name.Constant */ }
.highlight .nd {
  color: #AA22FF;
}
.highlight { /* Name.Decorator */ }
.highlight .ni {
  color: #999999;
  font-weight: bold;
}
.highlight { /* Name.Entity */ }
.highlight .ne {
  color: #D2413A;
  font-weight: bold;
}
.highlight { /* Name.Exception */ }
.highlight .nf {
  color: #00A000;
}
.highlight { /* Name.Function */ }
.highlight .nl {
  color: #A0A000;
}
.highlight { /* Name.Label */ }
.highlight .nn {
  color: #0000FF;
  font-weight: bold;
}
.highlight { /* Name.Namespace */ }
.highlight .nt {
  color: #008000;
  font-weight: bold;
}
.highlight { /* Name.Tag */ }
.highlight .nv {
  color: #B8860B;
}
.highlight { /* Name.Variable */ }
.highlight .ow {
  color: #AA22FF;
  font-weight: bold;
}
.highlight { /* Operator.Word */ }
.highlight .w {
  color: #bbbbbb;
}
.highlight { /* Text.Whitespace */ }
.highlight .mf {
  color: #666666;
}
.highlight { /* Literal.Number.Float */ }
.highlight .mh {
  color: #666666;
}
.highlight { /* Literal.Number.Hex */ }
.highlight .mi {
  color: #666666;
}
.highlight { /* Literal.Number.Integer */ }
.highlight .mo {
  color: #666666;
}
.highlight { /* Literal.Number.Oct */ }
.highlight .sb {
  color: #BB4444;
}
.highlight { /* Literal.String.Backtick */ }
.highlight .sc {
  color: #BB4444;
}
.highlight { /* Literal.String.Char */ }
.highlight .sd {
  color: #BB4444;
  font-style: italic;
}
.highlight { /* Literal.String.Doc */ }
.highlight .s2 {
  color: #BB4444;
}
.highlight { /* Literal.String.Double */ }
.highlight .se {
  color: #BB6622;
  font-weight: bold;
}
.highlight { /* Literal.String.Escape */ }
.highlight .sh {
  color: #BB4444;
}
.highlight { /* Literal.String.Heredoc */ }
.highlight .si {
  color: #BB6688;
  font-weight: bold;
}
.highlight { /* Literal.String.Interpol */ }
.highlight .sx {
  color: #008000;
}
.highlight { /* Literal.String.Other */ }
.highlight .sr {
  color: #BB6688;
}
.highlight { /* Literal.String.Regex */ }
.highlight .s1 {
  color: #BB4444;
}
.highlight { /* Literal.String.Single */ }
.highlight .ss {
  color: #B8860B;
}
.highlight { /* Literal.String.Symbol */ }
.highlight .bp {
  color: #AA22FF;
}
.highlight { /* Name.Builtin.Pseudo */ }
.highlight .vc {
  color: #B8860B;
}
.highlight { /* Name.Variable.Class */ }
.highlight .vg {
  color: #B8860B;
}
.highlight { /* Name.Variable.Global */ }
.highlight .vi {
  color: #B8860B;
}
.highlight { /* Name.Variable.Instance */ }
.highlight .il {
  color: #666666;
}
.highlight { /* Literal.Number.Integer.Long */ }

/* LAYOUT CSS */
.cover {
  background-color: #f5f5f5;
  position: relative;
  text-align: center;
  width: 100%;
  padding: 30px 15px 20px;
}
@media (min-width: 600px) {
  .cover {
    background-position: center;
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .cover {
    height: 100vh;
    position: relative;
    width: 100%;
  }
}

.cover-card {
  color: rgba(0, 0, 0, 0.87);
  padding: 70px 30px 0 30px;
}
.cover-card .avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  float: none;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .cover-card .avatar {
    margin-right: 0;
    margin-top: 30px;
  }
}
.menu-open .cover-card .avatar {
  filter: invert(1);
}
.cover-card .author_name {
  display: block;
  color: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  text-transform: none;
  margin: 10px auto 10px;
}
.cover-card .author_name:hover, .cover-card .author_name:focus {
  color: #2c7b96;
}
.cover-card .author_position {
  display: block;
  color: #000;
  font-size: clamp(12px, 1.5vw + 8px, 13px);
  font-weight: 600;
  text-transform: none;
  margin: 5px auto 15px;
  line-height: 1.4;
  font-style: italic;
}
.cover-card .author_bio {
  font-size: 95%;
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cover-card {
    text-align: right;
    margin: 0 auto;
    padding: 0 0px 80px 0;
    min-height: 100vh;
    position: relative;
  }
}

.social-links {
  margin-top: 0.5em;
}
.social-links ul {
  margin: 0;
  padding: 0;
}
.social-links ul li {
  list-style: none;
  display: inline-block;
  margin-left: 1em;
}
.social-links ul li a.social-link-item {
  color: #000;
}
.social-links ul li a.social-link-item:hover, .social-links ul li a.social-link-item:focus {
  color: #2c7b96;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
  display: block;
  cursor: pointer;
  padding: 10px 24px;
  margin: 20px auto;
  background: rgb(55, 71, 79);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  user-select: none;
  width: auto;
  font-family: "Lora", Georgia, serif;
  position: relative;
  z-index: 1001;
  transition: background 0.2s ease;
}
.mobile-menu-toggle:hover {
  background: rgb(75.9328358209, 98.0223880597, 109.0671641791);
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle .menu-arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.menu-open .mobile-menu-toggle {
  display: none;
}

/* Close button for mobile menu */
.nav-close-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 80px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: color 0.2s ease;
}
.nav-close-button:hover {
  color: #cccccc;
}
@media (min-width: 992px) {
  .nav-close-button {
    display: none;
  }
}

/* Full-screen overlay for mobile navigation */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(55, 71, 79);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .nav-overlay {
    position: static;
    opacity: 1;
    pointer-events: auto;
    background-color: transparent;
    height: auto;
    overflow-y: visible;
  }
}

.nav-overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 40px 20px;
}
@media (min-width: 992px) {
  .nav-overlay-content {
    padding: 0;
  }
}

.menu-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.nav {
  width: 100%;
}
@media (min-width: 992px) {
  .nav {
    width: auto;
  }
}

.nav-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.nav-list .nav-section {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 10px 0 6px 0;
  opacity: 0.6;
}
.nav-list .nav-section:first-child {
  margin-top: 0;
}
.menu-open .nav-list .nav-section {
  color: rgba(255, 255, 255, 0.7);
}
.nav-list .nav-item {
  display: block;
  margin: 4px 0;
}
.nav-list .nav-item:after {
  content: "";
}
.nav-list .nav-item a {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  padding: 2px 0;
  transition: color 0.2s ease;
}
.menu-open .nav-list .nav-item a {
  color: #ffffff;
}
.nav-list .nav-item a:hover, .nav-list .nav-item a:focus {
  color: #2c7b96;
}
.menu-open .nav-list .nav-item a:hover, .menu-open .nav-list .nav-item a:focus {
  color: #cccccc;
}
.nav-list .nav-item.active a {
  color: #2c7b96;
  border-bottom: 2px solid #2c7b96;
}
.menu-open .nav-list .nav-item.active a {
  color: #cccccc;
  border-bottom-color: #cccccc;
}

/* Manual two-column layout */
.manual-two-columns {
  display: block;
}
@media (min-width: 992px) {
  .manual-two-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
}
.manual-two-columns .column-left,
.manual-two-columns .column-right {
  flex: 1;
  min-width: 0;
}
.manual-two-columns .column-left p:first-child,
.manual-two-columns .column-right p:first-child {
  margin-top: 0;
}

/* Responsive columns */
.responsive-columns {
  column-count: 1;
  -webkit-column-count: 1;
  -moz-column-count: 1;
}
@media (min-width: 992px) {
  .responsive-columns {
    column-count: attr(data-columns);
    -webkit-column-count: attr(data-columns);
    -moz-column-count: attr(data-columns);
    column-gap: 40px;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
  }
}
.responsive-columns p, .responsive-columns h1, .responsive-columns h2, .responsive-columns h3, .responsive-columns h4, .responsive-columns h5, .responsive-columns h6 {
  margin-top: 0;
}
.responsive-columns p:first-child, .responsive-columns h1:first-child, .responsive-columns h2:first-child, .responsive-columns h3:first-child, .responsive-columns h4:first-child, .responsive-columns h5:first-child, .responsive-columns h6:first-child {
  margin-top: 0;
}

@media (min-width: 992px) {
  .responsive-columns[data-columns="2"] {
    column-count: 2;
    -webkit-column-count: 2;
    -moz-column-count: 2;
  }
}

@media (min-width: 992px) {
  .responsive-columns[data-columns="3"] {
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3;
  }
}

.column {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
  -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
  -moz-column-gap: 40px; /* Firefox */
  column-gap: 40px;
}

/* Manual column breaks */
.column-break {
  display: block;
  -webkit-column-break-after: always;
  -moz-column-break-after: always;
  column-break-after: always;
  break-after: column;
  page-break-after: always;
}

/* Alternative: break before */
.break-before {
  -webkit-column-break-before: always;
  break-before: column;
  page-break-before: always;
}

ul.tag-cloud {
  padding: 2em 0 3em;
  margin: 0;
  overflow: hidden;
  list-style: none;
}
ul.tag-cloud li {
  display: inline-block;
  margin-right: 0.5em;
}
ul.tag-cloud li a.post-tag {
  border-radius: 0.2em;
}

.tag-list .tag-group {
  margin-bottom: 2em;
}
.tag-list .tag-group .tag-group-title {
  color: #F5A623;
  text-transform: capitalize;
}
.tag-list .tag-group .tag-item {
  padding-left: 1em;
  margin-bottom: 0.5em;
}
.tag-list .tag-group .tag-item a {
  color: rgba(0, 0, 0, 0.87);
}
.tag-list .tag-group .tag-item a:hover, .tag-list .tag-group .tag-item a:focus {
  color: rgba(61.2, 61.2, 61.2, 0.87);
}

.cat-list .cat-group {
  margin-bottom: 2em;
}
.cat-list .cat-group .cat-group-title {
  color: #F5A623;
  text-transform: capitalize;
}
.cat-list .cat-group .cat-item {
  padding-left: 1em;
  margin-bottom: 0.5em;
}
.cat-list .cat-group .cat-item a {
  color: #f83e4b;
}
.cat-list .cat-group .cat-item a:hover, .cat-list .cat-group .cat-item a:focus {
  color: rgb(252.284, 180.116, 185.16);
}

.archive #timeline {
  position: relative;
}
.archive #timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  height: 100%;
  width: 4px;
  background: #f5f5f5;
}
.archive #timeline:after {
  content: "";
  display: table;
  clear: both;
}
.archive .archive-title {
  position: relative;
  margin: 2em auto 1em;
}
.archive .archive-title .archive-year {
  margin-left: 1em;
}
.archive .archive-title .archive-year:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
}
.archive ul {
  list-style: none;
}
.archive ul li {
  margin: 1em auto;
}

.post-listing {
  background-color: #fff;
  position: absolute;
  top: 400px;
  z-index: 233;
  width: 100%;
  padding: 20px 20px 0;
  -webkit-transform: translate3d(0, 0, 1px);
  transform: translate3d(0, 0, 1px);
}
@media (min-width: 600px) {
  .post-listing {
    padding: 50px 30px 0;
  }
}
@media (min-width: 992px) {
  .post-listing {
    height: 100vh;
    overflow-y: scroll;
    position: initial;
    top: 0;
  }
}

.image-credit {
  float: right;
  font-weight: bold;
  font-style: italic;
  color: #09ABF6;
  font-size: 13px;
  padding-right: 20px;
}

section.post {
  margin-bottom: 80px;
}

.back-home a {
  font-size: 13px;
  font-weight: bold;
  color: #09ABF6;
  border: 1px solid rgba(114.75, 114.75, 114.75, 0.87);
  border-radius: 0.4em;
  padding: 0.5em 1em;
}

.post-title-link {
  color: #0f5a73;
  font-size: 14px;
  margin-left: 10px;
}
.post-title-link:hover, .post-title-link:focus {
  color: rgb(23.2384615385, 139.4307692308, 178.1615384615);
}

.post-meta {
  font-size: 13px;
  font-weight: bold;
}
.post-meta .post-date {
  color: #000;
}
.post-meta .post-author {
  text-transform: uppercase;
  color: #F5A623;
}
.post-meta .post-cat {
  text-transform: uppercase;
  color: #F5A623;
}
.post-meta .read-time {
  color: #0f5a73;
}

a.read-more {
  padding: 5px 8px;
}

#post {
  padding-bottom: 50px;
}
#post .post-header {
  margin: 0 auto 50px;
}

#post h1 {
  margin: 0.5em 0 1em;
}

#post h2 {
  margin: 2em 0 0.8em;
  padding-bottom: 0.7em;
  border-bottom: 1px solid #ddd;
}

#post h3 {
  margin: 1.75em 0 1.2em;
  position: relative;
}

#page {
  padding-bottom: 50px;
  min-height: 70vh;
}
#page .page-header {
  margin: 0 auto 50px;
}

.post-navigation {
  background-color: #f6f6f6;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.leonids-icon {
  margin: 0 auto;
  padding: 20px 30px;
  text-align: center;
  color: #F5A623;
  font-size: 16px;
  line-height: 16px;
}

.post-nav-prev,
.post-nav-next {
  min-height: 10px;
  width: 100%;
}

.post-nav-next {
  text-align: right;
}

.post-nav-btn {
  width: 100%;
  padding: 20px 30px;
}
.post-nav-btn .post-nav-text {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
}
.post-nav-btn .table-cell {
  vertical-align: middle;
}

.post-image-feature {
  margin-bottom: 40px;
}
.post-image-feature .feature-image {
  width: 100%;
  max-height: 500px;
}

.share-buttons {
  padding-top: 1em;
  border-top: 1px solid #ddd;
}
.share-buttons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.share-buttons ul li {
  display: inline-block;
  margin-right: 0.5em;
}
.share-buttons ul li span {
  display: none;
}
@media (min-width: 600px) {
  .share-buttons ul li span {
    display: inline;
    margin: 0.5em;
  }
}

.twitter {
  background-color: #77bcf1;
  color: #fff;
  border-color: #77bcf1;
}
.twitter:visited {
  color: #fff;
  border-color: #77bcf1;
}
.twitter:hover {
  background-color: #fff;
  color: #77bcf1;
  border-color: #77bcf1;
}

.facebook {
  background-color: #627aac;
  color: #fff;
  border-color: #627aac;
}
.facebook:visited {
  color: #fff;
  border-color: #627aac;
}
.facebook:hover {
  background-color: #fff;
  color: #627aac;
  border-color: #627aac;
}

.google-plus {
  background-color: #e36f60;
  color: #fff;
  border-color: #e36f60;
}
.google-plus:visited {
  color: #fff;
  border-color: #e36f60;
}
.google-plus:hover {
  background-color: #fff;
  color: #e36f60;
  border-color: #e36f60;
}

.hacker-news {
  background-color: #f60;
  color: #fff;
  border-color: #f60;
}
.hacker-news:visited {
  color: #fff;
  border-color: #f60;
}
.hacker-news:hover {
  background-color: #fff;
  color: #f60;
  border-color: #f60;
}

.reddit {
  background-color: #5f99cf;
  color: #fff;
  border-color: #5f99cf;
}
.reddit:visited {
  color: #fff;
  border-color: #5f99cf;
}
.reddit:hover {
  background-color: #fff;
  color: #5f99cf;
  border-color: #5f99cf;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 8px;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}

/*# sourceMappingURL=main.css.map */