/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Colors */
/* Borders */
/* Typography */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

body {
  background: url(../images/paper.jpg) top left repeat;
  color: #38393d;
  font-family: "Raleway", "Fira", "Arial", sans-serif;
  position: relative;
  padding-top: 150px;
}

body.header-slim {
  padding-top: 80px;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 30px;
}

a {
  color: #c73e1d;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

a:visited {
  color: #465362;
}

a:hover {
  color: #6db1bf;
}

a:active {
  color: #bd8820;
}

.section-body {
  font-family: "Raleway", "Fira", "Arial", sans-serif;
  font-size: 24px;
  line-height: 1.8;
}

.section-body .lead {
  font-size: 40px;
  line-height: 1.5;
}

.section-body .align-center {
  text-align: center;
}

.hidden {
  display: none;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.section-bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 0;
}

.section-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  max-width: none;
}

.section.double-padding-top {
  padding-top: 240px;
}

.section.double-padding-bottom {
  padding-bottom: 240px;
}

.section-title {
  text-align: center;
  margin-bottom: 2em;
  font-size: 45px;
  position: relative;
}

.section-title-wrapper {
  font-family: "Fira Sans", "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: .3em;
  border: 1px solid currentColor;
  margin: 0 auto;
  padding: .33em 1.77em;
  display: inline-block;
}

.section-title.page-title {
  font-size: 60px;
  margin-bottom: 1.2em;
}

.section-title.page-title .section-title-wrapper {
  background-color: rgba(56, 57, 61, 0.5);
  letter-spacing: 0;
}

.section-body {
  margin: 0 auto;
}

.section-body.narrow {
  max-width: 1100px;
}

.section-cta {
  margin-top: 120px;
  text-align: center;
}

.section-dark {
  color: #f7f4ec;
}

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

.flex-grid-item {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -ms-flex-negative: 4;
      flex-shrink: 4;
  max-width: 50%;
  padding: 15px;
  font-size: .85em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-grid-item-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-color: #f7f4ec;
  border-radius: 12px;
  border: 1px solid rgba(70, 83, 98, 0.3);
}

form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

form input[type="text"] {
  display: block;
  width: 100%;
  border: none;
  padding: 1em;
  text-align: center;
  font-family: "Raleway", "Fira", "Arial", sans-serif;
  font-size: 24px;
  background-color: rgba(56, 57, 61, 0.1);
  color: #38393d;
  border-radius: 6px;
  -webkit-transition: color border .3s ease;
  transition: color border .3s ease;
}

form input[type="text"]::-webkit-input-placeholder {
  color: rgba(56, 57, 61, 0.5);
}

form input[type="text"]:-ms-input-placeholder {
  color: rgba(56, 57, 61, 0.5);
}

form input[type="text"]::-ms-input-placeholder {
  color: rgba(56, 57, 61, 0.5);
}

form input[type="text"]::placeholder {
  color: rgba(56, 57, 61, 0.5);
}

form input[type="text"]:focus {
  border: 1px solid rgba(56, 57, 61, 0.3);
  outline: none;
  background-color: #f7f4ec;
  color: #38393d;
  padding: calc(1em - 1px) 1em;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

form input[type="text"]:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

form input[type="text"]:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

form input[type="text"]:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

form input[type="text"]:focus::placeholder {
  color: transparent;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.section-dark form input[type="text"] {
  background-color: rgba(247, 244, 236, 0.3);
}

.section-dark form input[type="text"]:focus {
  background-color: #f7f4ec;
  color: #38393d;
  outline: none;
}

.section-dark form input[type="text"]:focus::-webkit-input-placeholder {
  color: transparent;
}

.section-dark form input[type="text"]:focus:-ms-input-placeholder {
  color: transparent;
}

.section-dark form input[type="text"]:focus::-ms-input-placeholder {
  color: transparent;
}

.section-dark form input[type="text"]:focus::placeholder {
  color: transparent;
}

.block-wrapper {
  border: none;
  background: none;
  border-radius: 0;
}

.block-title {
  font-size: 22px;
  margin-bottom: 30px;
}

.block-cta {
  margin-top: 30px;
}

.button {
  background-color: #38393d;
  border-radius: 5000px;
  padding: .8em 1.5em;
  text-transform: uppercase;
  color: #f7f4ec;
  display: inline-block;
  font-weight: 600;
  font-size: 1em;
  border: none;
  line-height: 1;
}

.button:hover {
  color: #f7f4ec;
  opacity: .5;
  cursor: pointer;
}

.button-white {
  background-color: #f7f4ec;
  color: #38393d;
}

.button-white:hover {
  color: #38393d;
}

.button-thin {
  font-weight: 200;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  font-family: "Fira Sans Condensed", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
}

.button-large {
  font-size: 1.4em;
}

.button-centered {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#featured {
  position: relative;
  overflow: hidden;
  background-color: black;
}

#featured .feature-hr {
  height: 2px;
  color: #f7f4ec;
  margin: 48px 0;
  width: 80%;
}

#featured .feature-bg {
  -webkit-filter: blur(13px);
          filter: blur(13px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: .7;
  width: 100%;
}

#featured .feature-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  max-width: none;
}

#featured .feature-container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  padding-top: 200px;
  padding-bottom: 260px;
}

#featured .feature-image {
  width: 33%;
  margin-right: 60px;
}

#featured .feature-image img {
  width: 100%;
  display: block;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

#featured .feature-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f7f4ec;
  font-family: 'Fira Sans Condensed', 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
}

#featured .feature-text {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 100px;
}

#featured .feature-cta {
  margin-top: 90px;
}

#featured .feature-cta .button {
  font-size: 45px;
  padding: .5em 2em;
}

#featured .platform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: -25px;
}

#featured .platform-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 33.33%;
      flex-basis: 33.33%;
  padding: 15px;
}

img {
  width: auto;
  max-width: 100%;
}

.imgratio-ultrawide {
  height: 0;
  overflow: hidden;
  position: relative;
  padding-top: 21.425%;
  padding-bottom: 21.425%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.imgratio-ultrawide img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-links .social-link {
  display: block;
  border: 1px solid currentColor;
  height: 55px;
  width: 55px;
  border-radius: 5000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  margin: 5px;
}

.paint-border-top {
  position: relative;
  overflow: initial !important;
}

.paint-border-top::before {
  content: '';
  height: 131px;
  width: 100%;
  background: url("../images/papertearbtm.png") center center no-repeat;
  position: absolute;
  top: -100px;
  z-index: 10;
}

.paint-border-bottom {
  position: relative;
  overflow: initial !important;
}

.paint-border-bottom::after {
  content: '';
  height: 131px;
  width: 100%;
  background: url("../images/paperteartop.png") center center no-repeat;
  position: absolute;
  bottom: -100px;
  z-index: 10;
}

.post-list .list-item-info {
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.post-list .list-item-header {
  padding: 30px 60px;
  text-align: center;
  line-height: 1;
}

.post-list .list-item-title {
  font-family: "Fira Sans", "Open Sans", "Arial", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 45px;
}

.post-list .list-item-postdate {
  font-family: "Fira Sans Condensed", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.3em;
  color: #787f7f;
  margin-top: 5px;
}

.post-list .list-item-teaser {
  border-top: 1px solid rgba(70, 83, 98, 0.3);
  padding: 60px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.post-list .list-item-meta {
  padding: 30px 60px;
  border-top: 1px solid rgba(70, 83, 98, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Fira Sans Condensed", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-size: .8em;
  margin-top: auto;
}

.post-list .list-item-meta > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-list .list-item-meta .label {
  padding-right: 20px;
  color: #787f7f;
}

.post-list .list-item-meta .tag-bubbles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-list .list-item-meta .tag-bubbles .list-item {
  padding: 2px;
}

.post-list .list-item-meta .tag-bubbles .list-item .item-link {
  background-color: #465362;
  border-radius: 5000px;
  padding: .2em .8em;
  color: #f7f4ec;
  font-weight: 200;
}

.post-list .list-item-meta .tag-bubbles .list-item .item-link:hover {
  background-color: #c73e1d;
}

.post-list .list-item-meta .comments .item-link {
  color: #465362;
  font-size: 1.5em;
  margin-right: 5px;
}

.post-list .list-item-meta .comments .item-link:hover {
  color: #c73e1d;
}

.post-meta {
  font-family: "Fira Sans Condensed", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 1em;
  margin-top: auto;
  text-align: center;
  margin-bottom: 120px;
}

.post-meta .container > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.post-meta .list-item-meta > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
}

.post-meta .list-item-meta .label {
  padding-right: 20px;
  color: #787f7f;
}

.post-meta .list-item-meta .tag-bubbles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-meta .list-item-meta .tag-bubbles .list-item {
  padding: 2px;
}

.post-meta .list-item-meta .tag-bubbles .list-item .item-link {
  background-color: #465362;
  border-radius: 5000px;
  padding: .2em .8em;
  color: #f7f4ec;
  font-weight: 200;
}

.post-meta .list-item-meta .tag-bubbles .list-item .item-link:hover {
  background-color: #c73e1d;
}

.post-meta .list-item-meta .comments .item-link {
  color: #465362;
  font-size: 1.5em;
  margin-right: 5px;
}

.post-meta .list-item-meta .comments .item-link:hover {
  color: #c73e1d;
}

.post-date {
  display: block;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #787f7f;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.3em;
  font-size: 30px;
  padding: .7em;
}

#latest-releases .releases-item-wrapper {
  border-radius: 0;
}

#latest-releases .releases-item:hover .releases-card {
  -webkit-filter: contrast(200%) saturate(300%) sepia(50%) blur(10px);
          filter: contrast(200%) saturate(300%) sepia(50%) blur(10px);
}

#latest-releases .releases-item:hover .releases-info {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

#latest-releases .releases-card img {
  display: block;
}

#latest-releases .releases-info {
  position: absolute;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #f7f4ec;
  height: 0;
  padding: 30px;
  padding-bottom: 56.25%;
  font-family: "Fira Sans Condensed", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5em;
}

#latest-releases .releases-info .description {
  margin-top: 30px;
}

#latest-releases .releases-info .label {
  font-weight: 700;
  width: 130px;
  display: inline-block;
}

#newsletter-signup {
  background-image: url("../images/paper.jpg");
  background-repeat: repeat;
  background-color: #bd8820;
  background-blend-mode: multiply;
  text-align: center;
}

#newsletter-signup .section-title {
  color: #f7f4ec;
}

#newsletter-signup .newsletter-signup {
  padding-top: 60px;
}

#newsletter-signup .newsletter-signup .submit {
  margin-top: 120px;
}

#newsletter-signup .newsletter-signup .email {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 1.6em;
}

#newsletter-signup .newsletter-signup .email::-webkit-input-placeholder {
  color: rgba(247, 244, 236, 0.5);
}

#newsletter-signup .newsletter-signup .email:-ms-input-placeholder {
  color: rgba(247, 244, 236, 0.5);
}

#newsletter-signup .newsletter-signup .email::-ms-input-placeholder {
  color: rgba(247, 244, 236, 0.5);
}

#newsletter-signup .newsletter-signup .email::placeholder {
  color: rgba(247, 244, 236, 0.5);
}

.block-wrapper form.newsletter-signup {
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  text-align: center;
}

.block-wrapper form.newsletter-signup .submit {
  margin-top: 30px;
}

.block-wrapper form.newsletter-signup .email {
  font-size: 1.6em;
}

#patreon-signup {
  background-image: url("../images/paper.jpg"), url("../images/patreonbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  background-color: #c73e1d;
  background-blend-mode: multiply;
}

#patreon-signup .patreon-logo {
  margin-top: 50px;
}

#patreon-signup .section-title {
  color: white;
}

#copyright {
  background-image: url("../images/paper.jpg");
  background-repeat: repeat;
  background-color: #38393d;
  background-blend-mode: multiply;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  padding-bottom: 60px;
}

#copyright p {
  font-family: 'Fira Sans Condensed';
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: #f7f4ec;
  padding-top: 30px;
  font-size: 20px;
}

#copyright p a {
  color: #c73e1d;
  letter-spacing: .15em;
}

#copyright p a:hover {
  color: #465362;
}

#copyright .social-links {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#copyright .social-links a {
  color: #f7f4ec;
}

#copyright .social-links a:hover {
  color: #465362;
}

#utility {
  background: url(../images/paper.jpg) top left repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 20px rgba(56, 57, 61, 0.8);
          box-shadow: 0px 0px 20px rgba(56, 57, 61, 0.8);
}

#utility > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
}

#utility a {
  color: #38393d;
}

#utility a:hover {
  color: #c73e1d;
}

#utility .menu-trigger {
  width: 45px;
  height: 45px;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #38393d;
}

#utility .menu-trigger:hover {
  cursor: pointer;
  color: #c73e1d;
}

#utility .menu-trigger:focus {
  outline: none;
}

#utility .menu-trigger svg {
  width: 45px;
  height: 45px;
}

#utility .logo {
  text-align: center;
}

#utility .logo .site-title {
  display: inline-block;
  font-family: 'Fira Sans';
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 200;
  letter-spacing: .3em;
  border: 1px solid currentColor;
  padding: 15px 50px;
  padding-right: calc(50px - .3em);
}

#utility .social-links {
  padding-right: 45px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#utility .social-links .social-link:hover {
  background-color: #c73e1d;
  color: #f7f4ec;
}

.header-slim {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header-slim #utility {
  height: 80px;
}

.header-slim #utility .menu-trigger {
  width: 35px;
  height: 35px;
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.header-slim #utility .menu-trigger svg {
  width: 35px;
  height: 35px;
}

.header-slim #utility .social-links {
  padding-right: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-slim #utility .social-links .social-link {
  height: 40px;
  width: 40px;
  font-size: 22px;
}

.header-slim #utility .logo .site-title {
  display: inline-block;
  font-family: 'Fira Sans';
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 200;
  letter-spacing: .3em;
  border: 1px solid currentColor;
  padding: 10px 40px;
  padding-right: calc(40px - .3em);
}

#mobile-menu {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: rgba(247, 244, 236, 0.98);
  text-align: center;
}

#mobile-menu a {
  color: #38393d;
}

#mobile-menu a:hover {
  color: #c73e1d;
}

#mobile-menu .menu-wrapper {
  position: absolute;
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  padding-top: 20vh;
  padding-bottom: 20vh;
}

#mobile-menu .menu-item a {
  font-family: 'Fira Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  line-height: 2em;
  letter-spacing: .3em;
  font-size: 40px;
  display: block;
}

#mobile-menu .menu-item a:hover {
  background-color: #c73e1d;
  color: #f7f4ec;
}

#mobile-menu .menu-secondary-menu-container .menu-item a {
  font-size: 32px;
}

#mobile-menu .social-links {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin: 60px 0;
  padding: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#mobile-menu .social-links .social-link:hover {
  background-color: #c73e1d;
  color: #f7f4ec;
}

.header-slim #mobile-menu .menu-wrapper {
  padding-top: 15vh;
  padding-bottom: 10vh;
}

.menu-closed {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.menu-closed #mobile-menu {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
  -webkit-transform: translateY(-100vh);
          transform: translateY(-100vh);
}

#footer .patreon-wordmark {
  height: 85px;
  width: auto;
  display: block;
  margin: 9px auto;
}

#footer .footer-menu-large, #footer .footer-menu-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Fira Sans", "Open Sans", "Arial", sans-serif;
}

#footer .footer-menu-large .list-item, #footer .footer-menu-small .list-item {
  letter-spacing: 0.3em;
  line-height: .7;
}

#footer .footer-menu-large .list-item-link, #footer .footer-menu-small .list-item-link {
  color: #38393d;
  font-weight: 200;
}

#footer .footer-menu-large .list-item-link:hover, #footer .footer-menu-small .list-item-link:hover {
  color: #c73e1d;
}

#footer .footer-menu-small {
  margin-bottom: 120px;
}

#footer .footer-menu-small .list-item-link {
  padding: 25px;
}

#footer .footer-menu-large {
  font-size: 1.75em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

#footer .footer-menu-large .list-item:not(:last-of-type):after {
  content: '\00B7';
  padding: 0 1.67em;
}
/*# sourceMappingURL=style.css.map */