@charset "UTF-8";
@page {
  size: A4; }

@page :left {
  margin-left: 2cm; }

@page :right {
  margin-left: 2cm; }

@media print {
  * {
    color: #000; }
  header, footer {
    display: none; }
  .header-artwork {
    display: none; }
  h2 {
    margin-bottom: 0.5cm; }
  h1 {
    page-break-before: always; } }

/*------------------------------------*  #BOX-SIZING
\*------------------------------------*/
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box; }

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

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0; }

/*------------------------------------*  #SHARED
\*------------------------------------*/
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
input,
textarea,
button {
  font-family: inherit; }

textarea {
  resize: none; }

/*------------------------------------*  #PAGE
\*------------------------------------*/
/**
 * Page-level styling (e.g. HTML and BODY elements).
 */
:root {
  --bg-color-line: #cbcbcb;
  --bg-color-page: #19223e;
  --color-black: #555555;
  --color-brand-primary: #3863d9;
  --bg-footer-1: #BBDEEA;
  --bg-footer-2: #EAFDFC; }
  @media (prefers-color-scheme: dark) {
    :root {
      --bg-color-line: #364784;
      --color-black: #cecece;
      --color-brand-primary: #829CE8;
      --bg-footer-1: #040606;
      --bg-footer-2: #123844; } }

html {
  font-size: 1em;
  line-height: 1;
  font-family: 'Rubik', sans-serif; }
  @media (prefers-color-scheme: dark) {
    html {
      background-color: var(--bg-color-page); } }

body {
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: auto auto auto auto;
      grid-template-rows: auto auto auto auto;
  background: -webkit-linear-gradient(left, transparent 30px, var(--bg-color-line) 0, var(--bg-color-line) 31px, transparent 0, transparent 100%);
  background: linear-gradient(to right, transparent 30px, var(--bg-color-line) 0, var(--bg-color-line) 31px, transparent 0, transparent 100%);
  background-repeat: no-repeat;
  background-position: 0 60px; }
  @media (min-width: 58em) {
    body {
      -ms-grid-columns: 134px (1fr)[11];
          grid-template-columns: 134px repeat(11, 1fr);
      background: -webkit-linear-gradient(left, transparent 80px, var(--bg-color-line) 0, var(--bg-color-line) 81px, transparent 0, transparent 100%);
      background: linear-gradient(to right, transparent 80px, var(--bg-color-line) 0, var(--bg-color-line) 81px, transparent 0, transparent 100%); } }
  @supports (grid-area: auto) {
    body {
      display: -ms-grid;
      display: grid; } }

/*------------------------------------*  #HEADINGS
\*------------------------------------*/
/**
 * Simple default styles for headings 1 through 6.
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: var(--color-black); }

h1 {
  font-size: 2.25rem;
  line-height: 1.33333; }

h2 {
  font-size: 1.75rem;
  line-height: 1.14286; }

h3 {
  font-size: 1.5rem;
  line-height: 1.33333; }

h4 {
  font-size: 1.25rem;
  line-height: 1.6; }

h5 {
  font-size: 1.125rem;
  line-height: 1.77778; }

h6 {
  font-size: 1rem;
  line-height: 1; }

/*------------------------------------*  #PARAGRAPHS
\*------------------------------------*/
/**
 * Basic styling for paragraphs.
 */
p {
  color: #737373;
  line-height: 1.55; }
  @media (min-width: 58em) {
    p {
      font-size: 1.25rem;
      line-height: 1.6; } }
  @media (prefers-color-scheme: dark) {
    p {
      color: var(--color-black); } }

/*------------------------------------*  #LINKS
\*------------------------------------*/
/**
 * Default styles for simple hyperlinks.
 */
a {
  text-decoration: none; }

/*------------------------------------*  #LISTS
\*------------------------------------*/
/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Visually offset definition titles from their definitions.
 */
dt {
  font-weight: 700; }

/*------------------------------------*    #IMAGES
\*------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */ }

/**
 * 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
img[width],
img[height] {
  /* [1] */
  max-width: none; }

/*------------------------------------*  #QUOTES
\*------------------------------------*/
/**
 * Basic styling for quoted text.
 */
q {
  quotes: "‘" "’"; }
  q:before {
    content: open-quote; }
  q:after {
    content: close-quote; }

blockquote {
  quotes: "“" "”"; }

.o-wrapper {
  padding-left: 1em;
  padding-right: 1em;
  max-width: 820px;
  margin: auto; }
  .o-wrapper > p {
    max-width: 900px; }

.c-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  text-decoration: none; }
  .c-link svg {
    display: inline-block;
    vertical-align: middle;
    fill: #363636;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out; }
    @media (prefers-color-scheme: dark) {
      .c-link svg {
        fill: #909090; } }
  .c-section__title .c-link {
    position: relative;
    top: -3px; }
    .c-section__title .c-link:before {
      content: "/";
      font-size: 32px;
      color: #3863d9; }
  .c-link:hover svg {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
    fill: var(--color-brand-primary); }

.c-logo {
  position: relative;
  top: -12px;
  font-size: 1.25rem;
  line-height: 1.6;
  grid-column: 1 / 2; }

@media (prefers-color-scheme: dark) and (min-width: 58em) {
  .c-logo span {
    display: none; } }
  .c-logo span {
    position: absolute;
    top: 40%;
    left: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    white-space: nowrap;
    color: var(--color-black);
    font-size: 16px;
    background: #fff;
    padding-right: 8px;
    padding-bottom: 5px; }
    @media (min-width: 58em) {
      .c-logo span {
        font-size: 22px;
        top: 165px;
        left: 70px;
        -webkit-transform: translateX(-65%) scale(-1);
                transform: translateX(-65%) scale(-1);
        -webkit-writing-mode: vertical-lr;
            -ms-writing-mode: tb-lr;
                writing-mode: vertical-lr;
        padding: 8px 4px;
        z-index: 10; } }
    @media (prefers-color-scheme: dark) {
      .c-logo span {
        background: var(--bg-color-page); } }
  .c-logo img {
    --color-1: #f2f2f2;
    --color-2: #fafafa;
    position: relative;
    left: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.2), 0 0 0 4px #fff;
    opacity: 1;
    -webkit-transition: box-shadow 0.5s ease-out;
    transition: box-shadow 0.5s ease-out; }
    @media (prefers-color-scheme: dark) {
      .c-logo img {
        box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.2), 0 0 0 4px var(--bg-color-page); } }
    @media (min-width: 58em) {
      .c-logo img {
        width: 110px;
        height: 110px;
        box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.2), 0 0 0 11px var(--color-1), 0 0 0 24px var(--color-2); } }

@media (prefers-color-scheme: dark) and (min-width: 58em) {
  .c-logo img {
    --color-1: #19213e;
    --color-2: #151b33;
    -webkit-animation: lampOn 1.5s 1.5s forwards;
            animation: lampOn 1.5s 1.5s forwards; } }
  .c-logo strong {
    font-weight: bold; }

@-webkit-keyframes lampOn {
  30% {
    box-shadow: 0 -1px 15px 0 #829ce7, 0 0 10px 11px rgba(71, 86, 128, 0), 0 0 19px 24px var(--color-2); }
  60% {
    box-shadow: 0 -1px 15px 0 #829ce7, 0 0 40px 11px rgba(71, 86, 128, 0.6), 0 0 100px 24px var(--color-2); }
  100% {
    box-shadow: 0 -1px 15px 0 #829ce7, 0 0 10px 11px rgba(71, 86, 128, 0.3), 0 0 19px 24px var(--color-2); } }

@keyframes lampOn {
  30% {
    box-shadow: 0 -1px 15px 0 #829ce7, 0 0 10px 11px rgba(71, 86, 128, 0), 0 0 19px 24px var(--color-2); }
  60% {
    box-shadow: 0 -1px 15px 0 #829ce7, 0 0 40px 11px rgba(71, 86, 128, 0.6), 0 0 100px 24px var(--color-2); }
  100% {
    box-shadow: 0 -1px 15px 0 #829ce7, 0 0 10px 11px rgba(71, 86, 128, 0.3), 0 0 19px 24px var(--color-2); } }

.c-nav {
  grid-column: 2 / 11; }
  .c-nav ul {
    margin-bottom: 0; }
  @media (max-width: 57.99em) {
    .c-nav .c-nav__wrapper {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      z-index: 5;
      display: -ms-flexbox;
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      -ms-flex-direction: column;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              flex-direction: column;
      -ms-flex-pack: end;
          -webkit-box-pack: end;
          -webkit-justify-content: flex-end;
              justify-content: flex-end;
      display: none; }
      .c-nav .c-nav__wrapper.is-active {
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex; }
      .c-nav .c-nav__wrapper .c-nav__overlay {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); }
      .c-nav .c-nav__wrapper ul {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -ms-flex-direction: column;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                flex-direction: column;
        -ms-flex-pack: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                justify-content: center;
        z-index: 1;
        margin: 0 auto;
        background: #EAFDFC;
        box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
        text-align: center;
        overflow-y: auto; }
      .c-nav .c-nav__wrapper .c-nav__item {
        display: block;
        -webkit-animation: menuItems 0.3s 1.2s ease-out forwards;
                animation: menuItems 0.3s 1.2s ease-out forwards; }
        .c-nav .c-nav__wrapper .c-nav__item a {
          font-size: 22px;
          color: #222; }
          .c-nav .c-nav__wrapper .c-nav__item a:after {
            display: none; } }

.c-nav__item {
  display: inline-block;
  list-style: none; }
  .c-nav__item a {
    font-size: 1.125rem;
    line-height: 1.77778;
    position: relative;
    display: block;
    color: var(--color-black);
    padding: 0.7rem 1rem; }
    .c-nav__item a:hover {
      text-decoration: none;
      color: var(--color-brand-primary); }
    .c-nav__item a:after {
      content: "";
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--color-brand-primary);
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transition: 0.3s ease-out;
      transition: 0.3s ease-out; }
    @media (min-width: 58em) {
      .c-nav__item a {
        padding: 0.7rem 1rem; } }
  .c-nav__item.is-active a {
    color: var(--color-brand-primary);
    font-weight: bold;
    -webkit-transition: none;
    transition: none; }
    .c-nav__item.is-active a:after {
      -webkit-transform: scaleX(1);
              transform: scaleX(1); }

.c-nav__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  right: 0.5rem;
  top: 7px;
  z-index: 0;
  width: 38px;
  height: 38px;
  background: #3863d9;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border: 1px solid #fff; }
  .c-nav__toggle span {
    position: relative;
    top: -7px;
    display: block;
    height: 2px;
    background: #fff;
    box-shadow: 0 6px 0 0 #fff, 0 12px 0 0 #fff; }
  @media (min-width: 58em) {
    .c-nav__toggle {
      display: none; } }

.c-nav__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  left: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  -ms-flex-align: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          align-items: center; }
  @media (min-width: 58em) {
    .c-nav__close {
      display: none; } }

.c-social a {
  color: #737373;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out; }
  .c-social a:hover, .c-social a:focus {
    color: #3863d9; }

.c-social--centered {
  text-align: center; }

.c-social--inverted a:hover, .c-social--inverted a:focus {
  color: #fff; }

.c-social__item {
  display: inline-block; }
  .c-social__item:not(:last-child) {
    margin-right: 1rem;
    margin-bottom: 1rem; }
  @media (min-width: 58em) {
    .c-social__item {
      margin-bottom: 0; }
      .c-social__item a {
        display: inline-block; }
      .c-social__item:not(:last-child) {
        margin-bottom: 1em; } }

.c-social__icon {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  -webkit-transition: fill 0.25s ease;
  transition: fill 0.25s ease; }
  @media (min-width: 58em) {
    .c-social__icon {
      width: 40px;
      height: 40px; } }

.c-social__label {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; }

.c-header {
  grid-column: 1 / 13;
  -ms-grid-columns: 60px (1fr)[11];
      grid-template-columns: 60px repeat(11, 1fr);
  padding: 0.5rem 0 0; }
  @supports (grid-area: auto) {
    .c-header {
      display: -ms-grid;
      display: grid; } }
  @media (min-width: 58em) {
    .c-header {
      -ms-grid-columns: 145px (1fr)[11];
          grid-template-columns: 145px repeat(11, 1fr);
      padding: 0.5rem 0 0 1rem; } }
  .c-header:before {
    content: "";
    display: block;
    height: 1px;
    background: #b9b9b9;
    grid-column: 2 / 13;
    margin-top: 16px; }
    @media (min-width: 58em) {
      .c-header:before {
        margin-top: 28px; } }
    @media (prefers-color-scheme: dark) {
      .c-header:before {
        background: var(--bg-color-line); } }

.c-header__follow {
  grid-column: 11 / 13;
  -ms-flex-item-align: start;
      -webkit-align-self: flex-start;
          align-self: flex-start;
  justify-self: flex-end;
  color: var(--color-black);
  font-size: 14px;
  margin-top: 16px;
  margin-right: 24px;
  display: none; }
  .c-header__follow svg {
    display: inline-block;
    vertical-align: middle;
    fill: #1DA1F2;
    width: 22px;
    height: 22px; }
  @media (min-width: 58em) {
    .c-header__follow {
      display: block; } }

@media (prefers-color-scheme: dark) and (min-width: 58em) {
  .c-lamp {
    position: absolute;
    top: 110px;
    left: 62px;
    z-index: 1;
    width: 5px;
    height: 200px;
    background: transparent;
    -webkit-animation: lampHeight 2s 1s forwards;
            animation: lampHeight 2s 1s forwards; }
    .c-lamp:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: #acad87;
      z-index: 1;
      border-radius: 3px;
      -webkit-transform-origin: top;
              transform-origin: top;
      -webkit-transform: scaleY(0.1);
              transform: scaleY(0.1);
      -webkit-animation: scaleMe 2s forwards;
              animation: scaleMe 2s forwards; }
    .c-lamp:after {
      content: "";
      position: absolute;
      left: -7px;
      z-index: 1;
      bottom: 0;
      width: 20px;
      height: 30px;
      border-radius: 20px 20px / 34px 31px;
      background: #e1e2b1;
      -webkit-transform: translateY(-180px);
              transform: translateY(-180px);
      -webkit-animation: moveMe 2s forwards;
              animation: moveMe 2s forwards; } }

@-webkit-keyframes scaleMe {
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
  100% {
    -webkit-transform: scaleY(0.7);
            transform: scaleY(0.7); } }

@keyframes scaleMe {
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
  100% {
    -webkit-transform: scaleY(0.7);
            transform: scaleY(0.7); } }

@-webkit-keyframes moveMe {
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px); } }

@keyframes moveMe {
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px); } }

@-webkit-keyframes lampHeight {
  to {
    height: 180px; } }

@keyframes lampHeight {
  to {
    height: 180px; } }

/** Left Border **/
body:after {
  position: absolute;
  left: 28px;
  top: 62px;
  z-index: -1;
  width: 1px;
  min-height: 100vw;
  background: #cbcbcb; }
  @media (min-width: 58em) {
    body:after {
      left: 80px;
      top: 160px; } }

.footer {
  background: #4D4D4F;
  color: #fff;
  text-align: center;
  padding: 32px;
  box-shadow: inset 0 8px 0 0 rgba(0, 0, 0, 0.15); }

.footer__copyright {
  font-weight: lighter;
  color: #d8d8d8;
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.55; }
  .footer__copyright a {
    color: inherit;
    text-decoration: underline; }

@media (min-width: 48em) {
  .footer {
    padding-top: 32px;
    padding-bottom: 32px; }
  .footer__copyright {
    margin-top: 16px; } }

.footer-simple .go-up {
  top: 70%; }

.header-artwork {
  height: 200px;
  background-color: #f6f6f6;
  border-bottom: 3px solid #d8d8d8;
  display: none; }
  .header-artwork svg {
    display: block;
    width: 100%;
    height: 100%; }
  .header-artwork:hover .eyes--closed {
    display: none; }

.header-artwork--night {
  background-image: url("../assets/night.jpg");
  background-size: 120%;
  background-position: 50% 50%;
  background-repeat: repeat; }
  .header-artwork--night .header-artwork__bg {
    fill: transparent; }
  .header-artwork--night .header-artwork__light {
    opacity: 0.05; }
  .header-artwork--night .header-artwork__rects {
    opacity: 0.1; }
  .header-artwork--night .header-artwork__decor {
    display: none; }

.dummy-item {
  display: none;
  background-image: url("../assets/night.jpg"); }

.header-artwork__heart {
  -webkit-animation: pulse 0.75s ease infinite alternate;
          animation: pulse 0.75s ease infinite alternate;
  -webkit-transform-origin: 112px 112px;
          transform-origin: 112px 112px; }

.header-artwork__light {
  opacity: 0; }

.header-artwork__steam__item {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  opacity: 0;
  -webkit-animation: steam 5s linear infinite;
          animation: steam 5s linear infinite; }
  .header-artwork__steam__item:nth-child(1) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s; }
  .header-artwork__steam__item:nth-child(2) {
    -webkit-animation-delay: 4s;
            animation-delay: 4s; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

@-webkit-keyframes light {
  to {
    opacity: 0.35; } }

@keyframes light {
  to {
    opacity: 0.35; } }

@-webkit-keyframes steam {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0.5; }
  to {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
    opacity: 0; } }

@keyframes steam {
  from {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0.5; }
  to {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
    opacity: 0; } }

@media (min-width: 48em) {
  .header-artwork__wrapper {
    display: block; } }

.c-section {
  --push-bottom: 2vw !important;
  grid-column: 1 / 13;
  margin-bottom: 6vw;
  padding: 0 1rem 0 2.75rem;
  max-width: 1500px; }
  @media (min-width: 58em) {
    .c-section {
      --push-bottom: 4vw;
      grid-column: 2 / 12;
      padding: 0 0 0 2rem; } }
  .c-section.full {
    max-width: initial; }
  .c-section.spacing-minimal {
    margin-bottom: 2vw; }
  .c-section.c-section--article {
    max-width: initial; }

.c-section--intro__title {
  font-size: calc(16px + 1vw);
  font-weight: 900;
  line-height: 1.35;
  color: var(--color-black);
  margin-bottom: 0.5em; }

.c-section--intro p {
  color: #555555;
  max-width: 950px;
  font-size: calc(11px + 1vw); }
  @media (min-width: 58em) {
    .c-section--intro p {
      font-size: calc(12px + 0.5vw); } }
  @media (prefers-color-scheme: dark) {
    .c-section--intro p {
      color: #f2f2f2; } }

.c-section__title {
  position: relative;
  color: var(--color-brand-primary);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px; }
  @media (min-width: 58em) {
    .c-section__title {
      font-size: 28px;
      margin-bottom: 24px; } }
  .c-section__title:before {
    content: "";
    position: absolute;
    left: -85px;
    top: 18px;
    height: 1px;
    width: 65px;
    background-color: var(--bg-color-line); }
  .c-section__title:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 13px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: var(--color-brand-primary); }

/* Side Projects */
.side-projects {
  position: relative;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 36px; }
  @media (min-width: 69.5625em) {
    .side-projects {
      padding-right: 300px; } }
  @media (min-width: 88.4375em) {
    .side-projects {
      padding-right: 425px; } }
  .side-projects:hover .c-side-project {
    opacity: 0.4; }
  .side-projects.arabic {
    display: block; }
  @supports (grid-area: auto) {
    .side-projects {
      display: -ms-grid;
      display: grid; } }

@media (max-width: 69.5em) {
  .c-side-project {
    position: relative; } }

@media (min-width: 69.5625em) {
  .c-side-project.a11ymatters:after {
    content: "";
    position: absolute;
    background: url("../assets/a11ymatters.jpg") center/cover no-repeat;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    right: -40px;
    top: 0;
    width: 180px;
    height: 120px; } }

@media (min-width: 88.4375em) {
  .c-side-project.a11ymatters:after {
    right: 0;
    width: 220px;
    height: 160px; } }

.c-side-project.a11ymatters:hover {
  opacity: 1; }
  .c-side-project.a11ymatters:hover:after {
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    z-index: 1; }

@media (min-width: 69.5625em) {
  .c-side-project.uibugs:after {
    content: "";
    position: absolute;
    background: url("../assets/uibugs.jpg") center/cover no-repeat;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    right: 110px;
    top: 0;
    width: 180px;
    height: 120px; } }

@media (min-width: 88.4375em) {
  .c-side-project.uibugs:after {
    right: 180px;
    width: 220px;
    height: 160px; } }

.c-side-project.uibugs:hover {
  opacity: 1; }
  .c-side-project.uibugs:hover:after {
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    z-index: 1; }

@media (min-width: 69.5625em) {
  .c-side-project.gridtoflex:after {
    content: "";
    position: absolute;
    background: url("../assets/gridtoflex.jpg") center/cover no-repeat;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    right: 50px;
    top: 100px;
    width: 180px;
    height: 120px; } }

@media (min-width: 88.4375em) {
  .c-side-project.gridtoflex:after {
    right: 100px;
    width: 220px;
    height: 160px; } }

.c-side-project.gridtoflex:hover {
  opacity: 1; }
  .c-side-project.gridtoflex:hover:after {
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    z-index: 1; }

.c-side-project.arabic:hover {
  opacity: 1; }
  .c-side-project.arabic:hover:after {
    -webkit-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    z-index: 1; }

.c-side-project {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }

.c-side-project__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px; }
  @media (min-width: 58em) {
    .c-side-project__title {
      font-size: 24px; } }

.c-side-project__desc {
  max-width: 600px;
  color: #555555;
  font-size: calc(14px + 0.35vw);
  margin-bottom: 16px; }
  @media (prefers-color-scheme: dark) {
    .c-side-project__desc {
      color: #d2d2d2; } }

/* Footer */
.c-section--footer {
  position: relative;
  grid-column: 1 / 13;
  background-image: -webkit-linear-gradient(left, transparent 30px, #3863d9 0, #3863d9 31px, transparent 0, transparent 100%), -webkit-linear-gradient(top, var(--bg-footer-1), var(--bg-footer-2));
  background-image: linear-gradient(to right, transparent 30px, #3863d9 0, #3863d9 31px, transparent 0, transparent 100%), linear-gradient(to bottom, var(--bg-footer-1), var(--bg-footer-2));
  background-size: 100% 90%, 100% 100%;
  background-repeat: no-repeat;
  padding: 38px 0 16px 44px;
  margin-bottom: 0; }
  @media (min-width: 58em) {
    .c-section--footer {
      background-image: -webkit-linear-gradient(left, transparent 80px, #3863d9 0, #3863d9 81px, transparent 0, transparent 100%), -webkit-linear-gradient(top, var(--bg-footer-1), var(--bg-footer-2));
      background-image: linear-gradient(to right, transparent 80px, #3863d9 0, #3863d9 81px, transparent 0, transparent 100%), linear-gradient(to bottom, var(--bg-footer-1), var(--bg-footer-2));
      padding: 38px 0 80px 165px;
      background-size: 100% 90%, 100% 100%;
      background-repeat: no-repeat; } }
  @media (prefers-color-scheme: dark) {
    .c-section--footer.footer-simple {
      --bg-footer-1: #121b1b; } }
  .c-section--footer .c-section__title {
    margin-bottom: 10px; }
    .c-section--footer .c-section__title:before {
      background-color: #3863d9; }
  .c-section--footer .c-section__desc {
    max-width: 615px;
    font-size: calc(14px + 0.35vw);
    color: var(--color-black); }
  .c-section--footer .landscape {
    height: 400px;
    position: relative;
    margin-left: -165px;
    margin-top: 70px;
    margin-bottom: 2rem; }
    @media (max-width: 67.1875em) {
      .c-section--footer .landscape {
        margin-bottom: 0; } }
    @media (max-width: 41.8125em) {
      .c-section--footer .landscape {
        margin-top: 20px; } }
    @media (max-width: 52.1875em) {
      .c-section--footer .landscape {
        height: 480px; } }
    @media (max-width: 41.8125em) {
      .c-section--footer .landscape {
        margin-left: -44px; } }
  .c-section--footer .landscape-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    @media (min-width: 125em) {
      .c-section--footer .landscape-wrapper {
        max-width: 2000px; } }

.landscape__graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }
  @media (min-width: 125em) {
    .landscape__graphic {
      height: 130%;
      top: -30%; } }
  @media (prefers-color-scheme: dark) {
    .landscape__graphic path:first-child {
      fill: #0e2529; }
    .landscape__graphic path:nth-child(2) {
      fill: #15393e; }
    .landscape__graphic path:last-child {
      fill: #1a484e; } }

/* Contact Form */
@media (max-width: 41.8125em) {
  .contact-form {
    position: relative;
    padding: 0 1rem; } }

.contact-form .input-group {
  z-index: 1;
  background: #EAFDFC;
  border-radius: 4px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1); }
  @media (max-width: 41.8125em) {
    .contact-form .input-group {
      position: relative;
      margin-bottom: 4rem;
      height: 44px; } }
  @media (min-width: 41.875em) {
    .contact-form .input-group {
      position: absolute;
      left: 19%;
      top: 41px;
      width: 280px;
      height: 48px; } }
  @media (min-width: 52.25em) {
    .contact-form .input-group {
      position: absolute;
      top: 0;
      left: 14%; } }
  @media (min-width: 41.875em) {
    .contact-form .input-group.email {
      left: 56%;
      top: -2px; } }
  @media (min-width: 52.25em) {
    .contact-form .input-group.email {
      left: 56%;
      top: -2px; } }
  @media (max-width: 41.8125em) {
    .contact-form .input-group.textarea {
      height: 100px; } }
  @media (min-width: 41.875em) {
    .contact-form .input-group.textarea {
      width: 620px;
      height: 145px;
      top: initial;
      bottom: 210px; } }
  @media (min-width: 52.25em) {
    .contact-form .input-group.textarea {
      top: 143px;
      left: 20%; } }
  .contact-form .input-group input,
  .contact-form .input-group textarea {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    font-size: 16px;
    padding: 8px; }
    .contact-form .input-group input:focus,
    .contact-form .input-group textarea:focus {
      outline: none; }
  .contact-form .input-group:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 45px;
    width: 12px;
    background: #3863d9; }
    @media (max-width: 41.8125em) {
      .contact-form .input-group:before {
        height: 28px; } }
    @media (prefers-color-scheme: dark) {
      .contact-form .input-group:before {
        background: #081417; } }
  .contact-form .input-group:after {
    content: "";
    position: absolute;
    top: calc(100% + 45px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 40px;
    height: 7px;
    border-radius: 50%;
    background: #488D52; }
    @media (max-width: 41.8125em) {
      .contact-form .input-group:after {
        top: calc(100% + 27px); } }
    @media (prefers-color-scheme: dark) {
      .contact-form .input-group:after {
        background: #14393d; } }

.contact-form .send-email {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: var(--color-brand-primary);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }
  @media (prefers-color-scheme: dark) {
    .contact-form .send-email {
      color: var(--bg-color-page); } }
  .contact-form .send-email:hover {
    background: #244cba; }
  .contact-form .send-email svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: #fff;
    margin: 0 auto 8px auto; }
    @media (prefers-color-scheme: dark) {
      .contact-form .send-email svg {
        fill: var(--bg-color-page); } }
  @media (max-width: 41.8125em) {
    .contact-form .send-email {
      width: 100%;
      height: 44px;
      border-radius: 8px; }
      .contact-form .send-email svg {
        display: inline-block;
        vertical-align: middle;
        margin: 0 4px 0 0;
        width: 24px;
        height: 24px; } }
  @media (min-width: 41.875em) {
    .contact-form .send-email {
      position: absolute;
      left: 50%;
      top: initial;
      bottom: 0; } }
  @media (min-width: 52.1875em) {
    .contact-form .send-email {
      position: absolute;
      left: initial;
      right: 4%;
      top: 24px; } }

.footer-copyrights {
  color: #363636;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5; }
  @media (prefers-color-scheme: dark) {
    .footer-copyrights {
      color: var(--color-black); } }
  @media (max-width: 67.1875em) {
    .footer-copyrights:before, .footer-copyrights:after {
      display: none; } }
  .footer-copyrights span {
    display: block;
    font-size: 16px; }
  @media (max-width: 67.1875em) {
    .footer-copyrights {
      font-size: 16px; }
      .footer-copyrights span {
        font-size: 14px; } }

.go-up {
  position: absolute;
  left: 56px;
  top: 90%;
  /* Same value is the gradient size! */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #3863d9;
  border: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  -ms-flex-align: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          align-items: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }
  .go-up:hover {
    background: #244cba; }
  .go-up svg {
    fill: #fff;
    width: 24px;
    height: 24px; }
  @media (max-width: 57.99em) {
    .go-up {
      left: 12px;
      width: 38px;
      height: 38px; } }

.footer-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-right: 3rem;
  margin-top: 10px; }
  @media (max-width: 67.1875em) {
    .footer-row {
      display: block;
      text-align: center;
      padding-right: 1rem; }
      .footer-row ul {
        -ms-flex-pack: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                justify-content: center; } }
  .footer-row ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    font-weight: 900;
    font-size: 18px; }
  .footer-row li {
    list-style: none;
    line-height: 1.5; }
    .footer-row li:not(:last-child):after {
      display: -ms-inline-flexbox;
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: inline-flex;
      content: ".";
      margin-left: 4px;
      margin-right: 4px; }
  .footer-row a {
    color: var(--color-brand-primary); }
    .footer-row a.twitter {
      color: #1DA1F2; }
    .footer-row a.behance {
      color: #1769FF; }
    .footer-row a.dribbble {
      color: #EA4C89; }
    .footer-row a.linkedin {
      color: #0077B5; }
    .footer-row a.instagram {
      color: #833AB4; }

.social-title {
  font-weight: 400;
  font-size: 24px;
  color: #363636;
  margin-bottom: 8px; }
  @media (max-width: 67.1875em) {
    .social-title {
      display: none; } }
  @media (prefers-color-scheme: dark) {
    .social-title {
      color: var(--color-black); } }

.c-section--about {
  text-align: center; }
  .c-section--about p {
    max-width: 500px;
    margin: 0 auto; }

.c-cover {
  grid-column: 1 / 13;
  width: 100%;
  height: 250px;
  margin-bottom: 3vw;
  background: url("../assets/office.jpg") center/cover no-repeat; }
  .c-cover.books {
    background: url("../assets/books.jpg") center/cover no-repeat;
    margin-bottom: 0; }
  @media (min-width: 58em) {
    .c-cover {
      height: 550px; } }

.about-intro {
  width: 100%;
  max-width: 800px;
  margin: 0 auto; }

.u-limit {
  max-width: 900px; }

.c-section--more {
  background: #f7f7f7;
  border-radius: 4px;
  padding: 8px; }
  .c-section--more h3 {
    font-size: 18px;
    margin-bottom: 0.5rem; }
  .c-section--more a {
    color: #3863d9;
    line-height: 1.4; }
  @media (prefers-color-scheme: dark) {
    .c-section--more {
      background: var(--color-brand-primary); }
      .c-section--more h3,
      .c-section--more a {
        color: var(--bg-color-page); } }

@media (min-width: 71.9375em) {
  .c-section--more__content {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            justify-content: space-between; } }

@media (max-width: 71.875em) {
  .c-section--more__item.next {
    margin-bottom: 1rem; } }

@media (min-width: 71.9375em) {
  .c-section--more__item.next {
    text-align: right; } }

@media (min-width: 71.9375em) {
  .c-section--more__item.prev {
    text-align: left; } }

.c-button {
  display: inline-block;
  background-color: #eafdfc;
  color: #555555;
  border-radius: 3px;
  padding: 12px; }
  .c-button svg {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    fill: var(--color-brand--primary);
    margin-right: 4px; }

.hero {
  position: relative;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
  border-bottom: 7px solid rgba(0, 0, 0, 0.08); }

@media (min-width: 58em) {
  .hero {
    height: 400px; } }

.share.share {
  background: #f6f6f6;
  padding: 1em;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1; }

.about-wrapper {
  padding-top: 32px;
  padding-bottom: 32px; }

.about-item {
  position: relative; }
  .about-item:not(:last-child) {
    margin-bottom: 16px; }

.about-item__label {
  font-size: 1.875rem;
  line-height: 1.06667;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 2px solid #f6f6f6; }

@media (min-width: 48em) {
  .header-artwork {
    height: 335px; } }

.browser-bar {
  position: relative;
  height: 55px;
  box-sizing: border-box;
  background: #f6f6f6;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid #d8d8d8;
  text-align: right;
  padding: 16px;
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  line-height: 1.33333; }

@media (min-width: 48em) {
  .browser-bar {
    font-size: 0.875rem;
    line-height: 1.14286; } }

.share.share {
  background: #f6f6f6;
  padding: 1em;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1; }

.hire-me__header {
  margin-bottom: 32px; }

.hire-me__headline span {
  font-weight: 700;
  color: #3863d9; }

.help-item:not(:last-child) {
  margin-bottom: 64px; }

.help-item__header {
  border-left: 7px solid #3863d9;
  padding: 16px;
  background: #f6f6f6;
  margin-bottom: 16px;
  -webkit-transition: background 0.35s ease-out;
  transition: background 0.35s ease-out; }
  @media (prefers-color-scheme: dark) {
    .help-item__header {
      background: var(--color-brand-primary); }
      .help-item__header .help-item__title,
      .help-item__header .help-item__desc {
        color: var(--bg-color-page); } }

.help-item__image {
  width: 150px;
  height: 100px;
  margin-bottom: 8px; }

.help-item__title {
  font-weight: 700;
  color: #3863d9;
  margin-bottom: 4px;
  -webkit-transition: background 0.35s ease-out;
  transition: background 0.35s ease-out; }

.help-item__desc {
  color: #737373;
  margin-bottom: 8px;
  -webkit-transition: background 0.35s ease-out;
  transition: background 0.35s ease-out; }

.help-item__list {
  padding-left: 16px;
  list-style-type: decimal;
  margin-bottom: 32px;
  line-height: 1.45; }

.help-item__list__item {
  color: #737373; }
  @media (prefers-color-scheme: dark) {
    .help-item__list__item {
      color: var(--color-black); } }

.help-item__list__item {
  font-size: 1rem;
  line-height: 1.5; }

@media (min-width: 48em) {
  .help-item__title {
    font-size: 1.375rem;
    line-height: 1.45455; }
  .help-item__desc {
    font-size: 1.125rem;
    line-height: 1.5; }
  .help-item__list__item {
    font-size: 1rem;
    line-height: 1.5; } }

.testimonials-item:not(:last-child) {
  margin-bottom: 32px; }

.testimonials-item__avatar {
  border-radius: 50%;
  width: 40px;
  float: left;
  margin-right: 1em; }

.testimonials-item__meta {
  overflow: auto; }

q {
  quotes: "“" "”" "‘" "’"; }

.testimonials-item__name {
  display: inline-block;
  font-weight: 700;
  color: #3863d9;
  margin-bottom: 0; }

.testimonials-item__title {
  display: inline-block;
  margin-bottom: 16px;
  color: #737373;
  font-style: normal; }

@media (min-width: 68em) {
  .testimonials-item__avatar {
    width: 75px; } }

.c-post {
  list-style-type: none; }
  .c-post:not(:last-child) {
    margin-bottom: 2em;
    border-bottom: 4px solid #f6f6f6;
    padding-bottom: 2em; }

.c-post--external {
  position: relative; }
  .c-post--external:before {
    content: attr(data-source);
    display: inline-block;
    margin-bottom: 8px;
    border-left: 3px solid #3863d9;
    padding: 8px;
    background: #f6f6f6; }

.c-post__title {
  color: #555555;
  font-size: 1.5rem;
  line-height: 1.33333;
  font-weight: 700;
  -ms-hyphens: auto;
      hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto; }
  .c-post__title a {
    display: block;
    max-width: 22em;
    color: inherit; }
  .c-post__title:hover {
    color: #3863d9; }
  @media (min-width: 75em) {
    .c-post__title {
      font-size: 1.875rem;
      line-height: 1.4; } }

.c-post__date,
.c-post__teaser {
  color: #737373; }

.c-post__teaser {
  margin-bottom: 16px; }

.articles-list {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 32px 16px; }
  @media (min-width: 58em) {
    .articles-list {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-gap: 64px 16px; } }
  @supports (grid-area: auto) {
    .articles-list {
      display: -ms-grid;
      display: grid; } }

.c-article:hover .c-article__title {
  color: var(--color-brand-primary); }

@media (min-width: 58em) {
  .c-article a {
    -ms-flex-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
                -ms-grid-row-align: center;
            align-items: center; } }

.c-article__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem; }
  @media (min-width: 58em) {
    .c-article__title {
      position: relative;
      font-size: 28px;
      margin-right: 14px; } }

.c-article__time {
  color: #808080; }
  .c-article__time:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 1px;
    background-color: #CBCBCB;
    margin-left: 0.25rem;
    margin-right: 0.5rem; }
  @media (max-width: 57.99em) {
    .c-article__time {
      font-size: 14px; } }
  @media (prefers-color-scheme: dark) {
    .c-article__time {
      color: #d2d2d2; }
      .c-article__time:before {
        background-color: currentColor; } }

.c-article__source {
  color: #808080;
  margin-right: 8px; }
  @media (prefers-color-scheme: dark) {
    .c-article__source {
      color: #d2d2d2; } }
  @media (min-width: 58em) {
    .c-article__source {
      -ms-flex-order: -1;
          -webkit-box-ordinal-group: 0;
          -webkit-order: -1;
              order: -1; } }

.works-list {
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 16px;
  margin-top: 1.5rem; }
  @media (min-width: 58em) {
    .works-list {
      grid-gap: 34px; } }
  @supports (grid-area: auto) {
    .works-list {
      display: -ms-grid;
      display: grid; } }

.c-work {
  background-color: #fff;
  padding: 12px 12px 0;
  border: 2px solid #eaeaea;
  border-radius: 8px;
  text-align: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }
  @media (prefers-color-scheme: dark) {
    .c-work {
      background-color: #101527;
      border-color: #101527; } }
  .c-work svg {
    display: inline-block;
    vertical-align: middle; }
  .c-work:hover {
    background-color: var(--color-brand-primary);
    border-color: var(--color-brand-primary); }
    .c-work:hover .c-work__title {
      color: #222; }
    .c-work:hover svg {
      fill: #fff; }

.c-work__thumb {
  display: block; }

.c-work__title {
  margin-bottom: 0;
  padding: 1vw 0;
  font-size: calc(12px + 0.5vw);
  color: var(--color-black); }

.works-link {
  color: #1769FF;
  font-weight: 900; }

.c-banner {
  grid-column: 1 / 13;
  background: #3863d9;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25); }
  .c-banner a {
    color: inherit;
    box-shadow: inset 0 -5px 0 0 rgba(255, 255, 255, 0.5);
    font-weight: bold;
    font-size: inherit; }
    .c-banner a:hover svg {
      fill: #fff; }
  .c-banner p {
    font-size: inherit;
    color: inherit; }
  .c-banner svg {
    fill: #fff; }
  @media (max-width: 57.99em) {
    .c-banner {
      padding: 1rem 3.5rem;
      line-height: 1.45; } }
  @media (prefers-color-scheme: dark) {
    .c-banner {
      background: var(--color-brand-primary); }
      .c-banner p {
        color: var(--bg-color-page); }
      .c-banner a {
        color: var(--bg-color-page); }
      .c-banner svg {
        fill: inherit; } }

.post-header {
  color: #555555;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d8d8d8;
  text-align: center; }
  @media (prefers-color-scheme: dark) {
    .post-header {
      border-bottom-color: var(--bg-color-line); } }

.post-header__title {
  font-size: 28px;
  color: var(--color-brand-primary);
  margin-bottom: 0.25em; }

.post-header__reading-time,
.post-header__date,
.post-header__author {
  display: inline-block;
  font-size: 1rem;
  line-height: 1; }
  @media (prefers-color-scheme: dark) {
    .post-header__reading-time,
    .post-header__date,
    .post-header__author {
      color: #d2d2d2; } }

.post-link {
  color: #3863d9;
  box-shadow: inset 0 -3px 0 0 #3863d9;
  background: -webkit-linear-gradient(#3863d9, #3863d9) bottom 3px center no-repeat;
  background: linear-gradient(#3863d9, #3863d9) bottom 3px center no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out; }
  .post-link:hover {
    color: #fff;
    background-size: 100% 100%; }

.post-content {
  color: #555555;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto; }
  .post-content h1,
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5,
  .post-content h6 {
    color: var(--color-black);
    font-family: "Rubik", sans-serif;
    text-transform: capitalize; }
  .post-content h2 {
    font-size: 26px;
    margin-bottom: 32px; }
  .post-content h3 {
    margin-bottom: 0.5rem; }
  .post-content h1 {
    color: #3863d9;
    margin-bottom: 0.5em; }
  .post-content h2 {
    margin-bottom: 0.5em; }
  .post-content h3 code,
  .post-content h4 code {
    color: #d14;
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    padding: 4px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none; }
    @media (prefers-color-scheme: dark) {
      .post-content h3 code,
      .post-content h4 code {
        background-color: #13182d;
        border: 1px solid #13172d; } }
  .post-content video {
    margin-bottom: 24px;
    max-width: 100%; }
    @media (prefers-color-scheme: dark) {
      .post-content video {
        -webkit-filter: brightness(0.8) contrast(1.2);
                filter: brightness(0.8) contrast(1.2); } }
    .post-content video:hover {
      opacity: 1;
      -webkit-filter: none;
              filter: none; }
  .post-content p {
    margin-bottom: 24px;
    color: var(--color-black);
    font-size: 16px;
    line-height: 1.75; }
    .post-content p code {
      display: inline-block;
      color: #d14;
      background-color: #f7f7f9;
      border: 1px solid #e1e1e8;
      padding-left: 4px;
      padding-right: 4px;
      border-radius: 4px;
      font-size: 14px; }
      @media (prefers-color-scheme: dark) {
        .post-content p code {
          background-color: #13182d;
          border: 1px solid #13172d; } }
    .post-content p a {
      color: var(--color-brand-primary); }
    @media (min-width: 58em) {
      .post-content p {
        font-size: 17px; } }
  .post-content iframe {
    max-width: 100%;
    margin-bottom: 32px; }
  .post-content blockquote {
    margin-bottom: 16px;
    padding: 10px;
    color: #fff;
    background: #f6f6f6;
    border-radius: 4px; }
    .post-content blockquote p {
      margin-bottom: 0; }
    @media (prefers-color-scheme: dark) {
      .post-content blockquote {
        background: var(--color-brand-primary); }
        .post-content blockquote p {
          color: var(--bg-color-page); }
        .post-content blockquote a {
          color: inherit;
          text-decoration: underline; } }
  .post-content img {
    max-width: 100%; }
  .post-content figure {
    background: transparent;
    border: 0;
    margin-top: 16px;
    margin-bottom: 16px; }
    .post-content figure img {
      display: block;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
      border: 1px solid #e0e0e0;
      border-radius: 4px; }
      @media (prefers-color-scheme: dark) {
        .post-content figure img {
          border-color: #070a13;
          box-shadow: none; } }
      .post-content figure img:hover {
        -webkit-filter: none;
                filter: none; }
  .post-content figure + h2 {
    margin-top: 30px; }
  .post-content figcaption {
    padding-top: 8px;
    color: #737373;
    text-align: center; }
    @media (prefers-color-scheme: dark) {
      .post-content figcaption {
        color: var(--color-black); } }
  .post-content ul,
  .post-content ol {
    font-size: 1.125rem;
    line-height: 1.77778;
    padding-left: 32px;
    margin-bottom: 16px;
    color: var(--color-black); }
    .post-content ul a,
    .post-content ol a {
      color: var(--color-brand-primary); }
    .post-content ul code,
    .post-content ol code {
      display: inline-block;
      color: #d14;
      background-color: #f7f7f9;
      border: 1px solid #e1e1e8;
      padding-left: 4px;
      padding-right: 4px;
      border-radius: 4px;
      font-size: 14px; }
      @media (prefers-color-scheme: dark) {
        .post-content ul code,
        .post-content ol code {
          background-color: #13182d;
          border: 1px solid #13172d; } }
  .post-content .highlight {
    background: #f7f7f7; }
    @media (prefers-color-scheme: dark) {
      .post-content .highlight {
        background: #0c0f1d; } }
  .post-content h3 + [class*="language-"],
  .post-content h4 + [class*="language-"] {
    margin-top: 0.5rem; }
  .post-content [class*="language-"] {
    position: relative;
    display: block;
    line-height: 1.45;
    overflow-y: auto;
    border-radius: 4px;
    margin-bottom: 24px; }
  @media (min-width: 720px) {
    .post-content [class*="language-"] code {
      white-space: pre-wrap; } }
  .post-content a:hover {
    text-decoration: underline; }
  .post-content .highlight {
    padding: 4px 8px; }
  .post-content .language-html {
    position: relative; }
    .post-content .language-html:before {
      content: "HTML";
      display: block;
      color: #fff;
      background: #de6545;
      font-size: 14px;
      padding: 2px 6px; }
  .post-content .language-css {
    position: relative; }
    .post-content .language-css:before {
      content: "CSS";
      display: block;
      color: #fff;
      background: #3863d9;
      font-size: 14px;
      padding: 2px 6px; }

.note.note {
  background: var(--color-brand-primary);
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px; }
  @media (prefers-color-scheme: dark) {
    .note.note {
      color: var(--bg-color-page); } }

.post-demo {
  margin-bottom: 24px; }

.post-content--work h1 {
  color: #555555;
  text-transform: capitalize; }

.post-content--work iframe {
  width: 100%;
  height: 420px;
  margin-bottom: 32px; }

.post-author {
  text-align: center;
  border-top: 2px solid #d8d8d8;
  padding-top: 16px;
  margin-top: 32px; }

.post-author__avatar {
  display: block;
  width: 100px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px; }

.post-author__name {
  font-size: 1.375rem;
  line-height: 1.45455;
  font-weight: 700;
  color: var(--color-brand-primary); }

.post-author__bio {
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto; }
  .post-author__bio a {
    color: var(--color-brand-primary);
    text-decoration: underline; }

@media (min-width: 48em) {
  .post-content {
    font-size: 1rem;
    line-height: 1; }
  .post-header__title {
    font-size: 2.5rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto; } }

@media (min-width: 68em) {
  .post-content h1 {
    position: relative;
    padding-left: 16px; }
    .post-content h1:before {
      content: "";
      position: absolute;
      left: 0;
      top: 21px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: currentColor; }
  .post-content--work figure {
    position: relative;
    width: 130%;
    left: -15%; } }

.highlight pre {
  white-space: pre-wrap;
  word-break: break-all; }

.highlight .err {
  color: inherit !important;
  background-color: inherit !important; }

.rss-feed {
  color: var(--color-black);
  margin-top: 24px;
  text-align: center; }
  .rss-feed a {
    color: var(--color-brand-primary); }

.twitter-tweet {
  width: 100% !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important; }

#carbonads {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif; }

#carbonads {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  max-width: 330px;
  margin: 2rem auto;
  background-color: #fafafa;
  background-color: #f3f3f3;
  padding: 0.5rem; }

#carbonads a {
  color: inherit;
  text-decoration: none; }

#carbonads a:hover {
  color: inherit; }

#carbonads span {
  position: relative;
  display: block;
  overflow: hidden; }

#carbonads .carbon-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex; }

.carbon-img {
  display: block;
  margin: 0;
  line-height: 1; }

.carbon-img img {
  display: block; }

.carbon-text {
  font-size: 13px;
  padding: 10px;
  line-height: 1.5;
  text-align: left; }

.carbon-poweredby {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  font-size: 9px;
  line-height: 1; }

#mc_embed_signup {
  font: inherit !important; }
  #mc_embed_signup form {
    background: #f7f7f7;
    padding: 1rem !important;
    border-radius: 5px;
    margin-top: 1.5rem; }
  #mc_embed_signup .button {
    margin: 0 !important;
    -ms-flex-item-align: end;
        -webkit-align-self: end;
            align-self: end;
    background-color: #3863d9 !important; }
    #mc_embed_signup .button:hover {
      background-color: #244cba !important; }
  #mc_embed_signup input {
    font-size: 16px !important; }
  #mc_embed_signup input:focus {
    border-color: #3863d9 !important;
    outline: none; }

.mc-title {
  color: #555555 !important;
  font-size: 1.5rem !important;
  margin: 0 0 0.5rem !important; }

.mc-desc {
  color: #737373 !important;
  font-size: 1rem;
  margin-bottom: 1.5rem; }

.mc-input-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem; }
  @media (min-width: 800px) {
    .mc-input-group {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
      grid-gap: 1rem; } }

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  margin-bottom: 0 !important; }

.mc-field-group {
  width: 100% !important;
  padding-bottom: 0 !important; }

#mc_embed_signup div#mce-responses {
  width: 100% !important;
  padding: 0.5rem 0 !important;
  margin: 0 !important; }

#mc_embed_signup #mce-error-response {
  line-height: 1.45;
  font-weight: normal !important; }

.visually-hidden {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

.u-underline {
  text-decoration: underline; }

.u-link {
  color: #555555;
  box-shadow: inset 0 -3px 0 0 rgba(56, 99, 217, 0.3);
  font-weight: bold;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out; }
  .u-link:hover {
    color: #3863d9; }

.highlight {
  background: #ffffff; }

.highlight .c {
  color: #999988;
  font-style: italic; }

/* Comment */
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2; }

/* Error */
.highlight .k {
  font-weight: bold; }

/* Keyword */
.highlight .o {
  font-weight: bold; }

/* Operator */
.highlight .cm {
  color: #999988;
  font-style: italic; }

/* Comment.Multiline */
.highlight .cp {
  color: #999999;
  font-weight: bold; }

/* Comment.Preproc */
.highlight .c1 {
  color: #999988;
  font-style: italic; }

/* Comment.Single */
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic; }

/* Comment.Special */
.highlight .gd {
  color: #000000;
  background-color: #ffdddd; }

/* Generic.Deleted */
.highlight .gd .x {
  color: #000000;
  background-color: #ffaaaa; }

/* Generic.Deleted.Specific */
.highlight .ge {
  font-style: italic; }

/* Generic.Emph */
.highlight .gr {
  color: #aa0000; }

/* Generic.Error */
.highlight .gh {
  color: #999999; }

/* Generic.Heading */
.highlight .gi {
  color: #000000;
  background-color: #ddffdd; }

/* Generic.Inserted */
.highlight .gi .x {
  color: #000000;
  background-color: #aaffaa; }

/* Generic.Inserted.Specific */
.highlight .go {
  color: #888888; }

/* Generic.Output */
.highlight .gp {
  color: #555555; }

/* Generic.Prompt */
.highlight .gs {
  font-weight: bold; }

/* Generic.Strong */
.highlight .gu {
  color: #aaaaaa; }

/* Generic.Subheading */
.highlight .gt {
  color: #aa0000; }

/* Generic.Traceback */
.highlight .kc {
  font-weight: bold; }

/* Keyword.Constant */
.highlight .kd {
  font-weight: bold; }

/* Keyword.Declaration */
.highlight .kp {
  font-weight: bold; }

/* Keyword.Pseudo */
.highlight .kr {
  font-weight: bold; }

/* Keyword.Reserved */
.highlight .kt {
  color: #445588;
  font-weight: bold; }

/* Keyword.Type */
.highlight .m {
  color: #009999; }

/* Literal.Number */
.highlight .s {
  color: #d14; }

/* Literal.String */
.highlight .na {
  color: #008080; }

/* Name.Attribute */
.highlight .nb {
  color: #0086B3; }

/* Name.Builtin */
.highlight .nc {
  color: #445588;
  font-weight: bold; }

/* Name.Class */
.highlight .no {
  color: #008080; }

/* Name.Constant */
.highlight .ni {
  color: #800080; }

/* Name.Entity */
.highlight .ne {
  color: #990000;
  font-weight: bold; }

/* Name.Exception */
.highlight .nf {
  color: #990000;
  font-weight: bold; }

/* Name.Function */
.highlight .nn {
  color: #555555; }

/* Name.Namespace */
.highlight .nt {
  color: #000080; }

/* Name.Tag */
.highlight .nv {
  color: #008080; }

/* Name.Variable */
.highlight .ow {
  font-weight: bold; }

/* Operator.Word */
.highlight .w {
  color: #bbbbbb; }

/* Text.Whitespace */
.highlight .mf {
  color: #009999; }

/* Literal.Number.Float */
.highlight .mh {
  color: #009999; }

/* Literal.Number.Hex */
.highlight .mi {
  color: #009999; }

/* Literal.Number.Integer */
.highlight .mo {
  color: #009999; }

/* Literal.Number.Oct */
.highlight .sb {
  color: #d14; }

/* Literal.String.Backtick */
.highlight .sc {
  color: #d14; }

/* Literal.String.Char */
.highlight .sd {
  color: #d14; }

/* Literal.String.Doc */
.highlight .s2 {
  color: #d14; }

/* Literal.String.Double */
.highlight .se {
  color: #d14; }

/* Literal.String.Escape */
.highlight .sh {
  color: #d14; }

/* Literal.String.Heredoc */
.highlight .si {
  color: #d14; }

/* Literal.String.Interpol */
.highlight .sx {
  color: #d14; }

/* Literal.String.Other */
.highlight .sr {
  color: #009926; }

/* Literal.String.Regex */
.highlight .s1 {
  color: #d14; }

/* Literal.String.Single */
.highlight .ss {
  color: #990073; }

/* Literal.String.Symbol */
.highlight .bp {
  color: #999999; }

/* Name.Builtin.Pseudo */
.highlight .vc {
  color: #008080; }

/* Name.Variable.Class */
.highlight .vg {
  color: #008080; }

/* Name.Variable.Global */
.highlight .vi {
  color: #008080; }

/* Name.Variable.Instance */
.highlight .il {
  color: #009999; }

/* Literal.Number.Integer.Long */
@media (prefers-color-scheme: dark) {
  .highlight pre {
    background-color: #272822; }
  .highlight .hll {
    background-color: #272822; }
  .highlight .c {
    color: #75715e; }
  /* Comment */
  .highlight .err {
    color: #960050;
    background-color: #1e0010; }
  /* Error */
  .highlight .k {
    color: #66d9ef; }
  /* Keyword */
  .highlight .l {
    color: #ae81ff; }
  /* Literal */
  .highlight .n {
    color: #f8f8f2; }
  /* Name */
  .highlight .o {
    color: #f92672; }
  /* Operator */
  .highlight .p {
    color: #f8f8f2; }
  /* Punctuation */
  .highlight .cm {
    color: #75715e; }
  /* Comment.Multiline */
  .highlight .cp {
    color: #75715e; }
  /* Comment.Preproc */
  .highlight .c1 {
    color: #75715e; }
  /* Comment.Single */
  .highlight .cs {
    color: #75715e; }
  /* Comment.Special */
  .highlight .ge {
    font-style: italic; }
  /* Generic.Emph */
  .highlight .gs {
    font-weight: bold; }
  /* Generic.Strong */
  .highlight .kc {
    color: #66d9ef; }
  /* Keyword.Constant */
  .highlight .kd {
    color: #66d9ef; }
  /* Keyword.Declaration */
  .highlight .kn {
    color: #f92672; }
  /* Keyword.Namespace */
  .highlight .kp {
    color: #66d9ef; }
  /* Keyword.Pseudo */
  .highlight .kr {
    color: #66d9ef; }
  /* Keyword.Reserved */
  .highlight .kt {
    color: #66d9ef; }
  /* Keyword.Type */
  .highlight .ld {
    color: #e6db74; }
  /* Literal.Date */
  .highlight .m {
    color: #ae81ff; }
  /* Literal.Number */
  .highlight .s {
    color: #e6db74; }
  /* Literal.String */
  .highlight .na {
    color: #a6e22e; }
  /* Name.Attribute */
  .highlight .nb {
    color: #f8f8f2; }
  /* Name.Builtin */
  .highlight .nc {
    color: #a6e22e; }
  /* Name.Class */
  .highlight .no {
    color: #66d9ef; }
  /* Name.Constant */
  .highlight .nd {
    color: #a6e22e; }
  /* Name.Decorator */
  .highlight .ni {
    color: #f8f8f2; }
  /* Name.Entity */
  .highlight .ne {
    color: #a6e22e; }
  /* Name.Exception */
  .highlight .nf {
    color: #a6e22e; }
  /* Name.Function */
  .highlight .nl {
    color: #f8f8f2; }
  /* Name.Label */
  .highlight .nn {
    color: #f8f8f2; }
  /* Name.Namespace */
  .highlight .nx {
    color: #a6e22e; }
  /* Name.Other */
  .highlight .py {
    color: #f8f8f2; }
  /* Name.Property */
  .highlight .nt {
    color: #f92672; }
  /* Name.Tag */
  .highlight .nv {
    color: #f8f8f2; }
  /* Name.Variable */
  .highlight .ow {
    color: #f92672; }
  /* Operator.Word */
  .highlight .w {
    color: #f8f8f2; }
  /* Text.Whitespace */
  .highlight .mf {
    color: #ae81ff; }
  /* Literal.Number.Float */
  .highlight .mh {
    color: #ae81ff; }
  /* Literal.Number.Hex */
  .highlight .mi {
    color: #ae81ff; }
  /* Literal.Number.Integer */
  .highlight .mo {
    color: #ae81ff; }
  /* Literal.Number.Oct */
  .highlight .sb {
    color: #e6db74; }
  /* Literal.String.Backtick */
  .highlight .sc {
    color: #e6db74; }
  /* Literal.String.Char */
  .highlight .sd {
    color: #e6db74; }
  /* Literal.String.Doc */
  .highlight .s2 {
    color: #e6db74; }
  /* Literal.String.Double */
  .highlight .se {
    color: #ae81ff; }
  /* Literal.String.Escape */
  .highlight .sh {
    color: #e6db74; }
  /* Literal.String.Heredoc */
  .highlight .si {
    color: #e6db74; }
  /* Literal.String.Interpol */
  .highlight .sx {
    color: #e6db74; }
  /* Literal.String.Other */
  .highlight .sr {
    color: #e6db74; }
  /* Literal.String.Regex */
  .highlight .s1 {
    color: #e6db74; }
  /* Literal.String.Single */
  .highlight .ss {
    color: #e6db74; }
  /* Literal.String.Symbol */
  .highlight .bp {
    color: #f8f8f2; }
  /* Name.Builtin.Pseudo */
  .highlight .vc {
    color: #f8f8f2; }
  /* Name.Variable.Class */
  .highlight .vg {
    color: #f8f8f2; }
  /* Name.Variable.Global */
  .highlight .vi {
    color: #f8f8f2; }
  /* Name.Variable.Instance */
  .highlight .il {
    color: #ae81ff; }
  /* Literal.Number.Integer.Long */
  /* Generic Heading & Diff Header */
  .highlight .gu {
    color: #75715e; }
  /* Generic.Subheading & Diff Unified/Comment? */
  .highlight .gd {
    color: #f92672; }
  /* Generic.Deleted & Diff Deleted */
  .highlight .gi {
    color: #a6e22e; }
  /* Generic.Inserted & Diff Inserted */ }
