/*
Theme Name: T.rex bones
Author: Jeremy Forveille
Author URI: http://monolithe.eu
Description: Awesome Template WordPress theme
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trexbones
Domain Path: /languages/
Tags: template, responsive, wordpress
*/
/* IMPORTS */
* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
}

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

html {
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg, white);
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, form legend {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

button, select, textarea, input {
  color: inherit;
  line-height: inherit;
  background-color: transparent;
  border-radius: 0;
}

button, select, textarea,
input[type="button"], input[type="email"], input[type="number"],
input[type="password"], input[type="search"], input[type="submit"],
input[type="tel"], input[type="text"], input[type="url"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  display: none;
}

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

img, video, svg {
  max-width: 100%;
}

svg {
  width: 100%;
}

/* -------------------------------- 
Colors
-------------------------------- */
:root, [data-theme="default"] {
  --color-primary-darker: hsl(28, 88%, 37%);
  --color-primary-dark: hsl(28, 88%, 47%);
  --color-primary: hsl(28, 88%, 57%);
  --color-primary-light: hsl(28, 88%, 67%);
  --color-primary-lighter: hsl(28, 88%, 77%);
  --color-primary-a20: hsl(28, 88%, 57%, 0.2);
  --color-accent-darker: hsl(0, 83%, 37%);
  --color-accent-dark: hsl(0, 73%, 47%);
  --color-accent: hsl(0, 63%, 57%);
  --color-accent-light: hsl(0, 53%, 67%);
  --color-accent-lighter: hsl(0, 43%, 77%);
  --black: hsl(240, 7%, 12%);
  --black-a10: hsla(240, 7%, 12%, 0.1);
  --white: hsl(0, 0%, 100%);
  --color-success-darker: hsl(94, 40%, 45%);
  --color-success-dark: hsl(94, 45%, 50%);
  --color-success: hsl(94, 48%, 56%);
  --color-success-light: hsl(94, 48%, 62%);
  --color-success-lighter: hsl(94, 48%, 92%);
  --color-success-a20: hsla(94, 48%, 56%, 0.2);
  --color-error-darker: hsl(355, 75%, 48%);
  --color-error-dark: hsl(355, 80%, 54%);
  --color-error: hsl(355, 90%, 61%);
  --color-error-light: hsl(355, 90%, 68%);
  --color-error-lighter: hsl(356, 89%, 93%);
  --color-error-a20: hsla(355, 90%, 61%, 0.2);
  --color-warning-darker: hsl(46, 90%, 50%);
  --color-warning-dark: hsl(46, 95%, 55%);
  --color-warning: hsl(46, 100%, 61%);
  --color-warning-light: hsl(46, 100%, 68%);
  --color-warning-lighter: hsl(46, 100%, 91%);
  --color-warning-a20: hsla(46, 100%, 61%, 0.2);
  --color-bg: hsl(0, 0%, 100%);
  --color-contrast-lower: hsl(0, 0%, 95%);
  --color-contrast-low: hsl(0, 0%, 83%);
  --color-contrast-medium: hsl(240, 1%, 47%);
  --color-contrast-high: hsl(255, 4%, 20%);
  --color-contrast-higher: hsl(240, 7%, 12%);
  --color-bg-a20: hsla(0, 0%, 100%, 0.2);
  --color-contrast-a90: hsla(240, 7%, 12%, 0.9);
  --color-border: var(--color-contrast-low);
}

[data-theme] {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg);
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
}

@supports (--css: variables) {
  [data-theme="dark"] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* color primary */
    /* color contrast */
    --color-bg: hsl(240, 7%, 12%);
    --color-contrast-lower: hsla(0, 0%, 100%, 0.12);
    --color-contrast-low: hsla(0, 0%, 100%, 0.35);
    --color-contrast-medium: hsla(0, 0%, 100%, 0.6);
    --color-contrast-high: hsla(0, 0%, 100%, 0.8);
    --color-contrast-higher: hsl(0, 0%, 100%);
    /* semantic colors */
    --color-border: var(--color-contrast-low);
  }
}

@supports (--css: variables) {
  [data-theme="primary"] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* color primary */
    /* color contrast */
    --color-bg: var(--color-primary);
    --color-contrast-lower: hsla(0, 0%, 100%, 0.12);
    --color-contrast-low: hsla(0, 0%, 100%, 0.35);
    --color-contrast-medium: hsla(0, 0%, 100%, 0.6);
    --color-contrast-high: hsla(0, 0%, 100%, 0.8);
    --color-contrast-higher: hsl(0, 0%, 100%);
    /* semantic colors */
    --color-border: var(--color-contrast-higher);
  }
}

[data-theme="primary"] a {
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
}

[data-theme="primary"] .btn {
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
}

[data-theme="primary"] .btn--primary {
  background-color: hsl(240, 7%, 12%);
  background-color: var(--color-contrast-higher);
  color: hsl(28, 88%, 57%);
  color: var(--color-primary);
}

[data-theme="primary"] .btn--primary:hover {
  background-color: hsl(255, 4%, 20%);
  background-color: var(--color-contrast-high);
}

/* -------------------------------- 

Breakpoints
-------------------------------- */
/* -------------------------------- 
Spacing
-------------------------------- */
:root, body {
  --space-unit:  1em;
  --space-xxxxs: calc(0.125*var(--space-unit));
  --space-xxxs:  calc(0.25*var(--space-unit));
  --space-xxs:   calc(0.375*var(--space-unit));
  --space-xs:    calc(0.5*var(--space-unit));
  --space-sm:    calc(0.75*var(--space-unit));
  --space-md:    calc(1.25*var(--space-unit));
  --space-lg:    calc(2*var(--space-unit));
  --space-xl:    calc(3.25*var(--space-unit));
  --space-xxl:   calc(5.25*var(--space-unit));
  --space-xxxl:  calc(8.5*var(--space-unit));
  --space-xxxxl: calc(11.75*var(--space-unit));
  --component-padding: var(--space-sm);
}

@supports (--css: variables) {
  @media only screen and (min-width: 64rem) {
    body {
      --space-unit:  1.25em;
    }
  }
}

.margin-top, .margin-top--md {
  margin-top: 1.25em;
  margin-top: var(--space-md);
}

.margin-top--xxxxs {
  margin-top: 0.125em;
  margin-top: var(--space-xxxxs);
}

.margin-top--xxxs {
  margin-top: 0.25em;
  margin-top: var(--space-xxxs);
}

.margin-top--xxs {
  margin-top: 0.375em;
  margin-top: var(--space-xxs);
}

.margin-top--xs {
  margin-top: 0.5em;
  margin-top: var(--space-xs);
}

.margin-top--sm {
  margin-top: 0.75em;
  margin-top: var(--space-sm);
}

.margin-top--lg {
  margin-top: 2em;
  margin-top: var(--space-lg);
}

.margin-top--xl {
  margin-top: 3.25em;
  margin-top: var(--space-xl);
}

.margin-top--xxl {
  margin-top: 5.25em;
  margin-top: var(--space-xxl);
}

.margin-top--xxxl {
  margin-top: 8.5em;
  margin-top: var(--space-xxxl);
}

.margin-top--xxxxl {
  margin-top: 11.75em;
  margin-top: var(--space-xxxxl);
}

.margin-bottom, .margin-bottom--md {
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
}

.margin-bottom--xxxxs {
  margin-bottom: 0.125em;
  margin-bottom: var(--space-xxxxs);
}

.margin-bottom--xxxs {
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
}

.margin-bottom--xxs {
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.margin-bottom--xs {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.margin-bottom--sm {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.margin-bottom--lg {
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
}

.margin-bottom--xl {
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
}

.margin-bottom--xxl {
  margin-bottom: 5.25em;
  margin-bottom: var(--space-xxl);
}

.margin-bottom--xxxl {
  margin-bottom: 8.5em;
  margin-bottom: var(--space-xxxl);
}

.margin-bottom--xxxxl {
  margin-bottom: 11.75em;
  margin-bottom: var(--space-xxxxl);
}

.padding-top, .padding-top--md {
  padding-top: 1.25em;
  padding-top: var(--space-md);
}

.padding-top--sm {
  padding-top: 0.75em;
  padding-top: var(--space-sm);
}

.padding-top--lg {
  padding-top: 2em;
  padding-top: var(--space-lg);
}

.padding-top--xl {
  padding-top: 3.25em;
  padding-top: var(--space-xl);
}

.padding-top--xxl {
  padding-top: 5.25em;
  padding-top: var(--space-xxl);
}

.padding-top--xxxl {
  padding-top: 8.5em;
  padding-top: var(--space-xxxl);
}

.padding-top--xxxxl {
  padding-top: 11.75em;
  padding-top: var(--space-xxxxl);
}

.padding-bottom, .padding-bottom--md {
  padding-bottom: 1.25em;
  padding-bottom: var(--space-md);
}

.padding-bottom--sm {
  padding-bottom: 0.75em;
  padding-bottom: var(--space-sm);
}

.padding-bottom--lg {
  padding-bottom: 2em;
  padding-bottom: var(--space-lg);
}

.padding-bottom--xl {
  padding-bottom: 3.25em;
  padding-bottom: var(--space-xl);
}

.padding-bottom--xxl {
  padding-bottom: 5.25em;
  padding-bottom: var(--space-xxl);
}

.padding-bottom--xxxl {
  padding-bottom: 8.5em;
  padding-bottom: var(--space-xxxl);
}

.padding-bottom--xxxxl {
  padding-bottom: 11.75em;
  padding-bottom: var(--space-xxxxl);
}

:root {
  --container-width-xs: 37.5rem;
  --container-width-sm: 45rem;
  --container-width-md: 64rem;
  --container-width-lg: 80rem;
  --container-width-xl: 90rem;
}

.container {
  width: calc(100% - 0.75em);
  width: calc(100% - 2*var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}

.container--full-width {
  width: 100%;
}

.container--xs {
  max-width: 37.5rem;
  max-width: var(--container-width-xs);
}

.container--sm {
  max-width: 45rem;
  max-width: var(--container-width-sm);
}

.container--md {
  max-width: 64rem;
  max-width: var(--container-width-md);
}

.container--lg {
  max-width: 80rem;
  max-width: var(--container-width-lg);
}

.container--xl {
  max-width: 90rem;
  max-width: var(--container-width-xl);
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin: -1.25em 0 0 -1.25em;
  margin: calc(var(--space-md)*-1) 0 0 calc(var(--space-md)*-1);
}

.grid > * {
  padding: 1.25em 0 0 1.25em;
  padding: var(--space-md) 0 0 var(--space-md);
  background-clip: content-box;
  flex-basis: 100%;
}

.grid-gap--none {
  margin: 0;
}

.grid-gap--none > * {
  padding: 0;
}

.grid-gap--xs {
  margin: -0.5em 0 0 -0.5em;
  margin: calc(var(--space-xs)*-1) 0 0 calc(var(--space-xs)*-1);
}

.grid-gap--xs > * {
  padding: 0.5em 0 0 0.5em;
  padding: var(--space-xs) 0 0 var(--space-xs);
}

.grid-gap--sm {
  margin: -0.75em 0 0 -0.75em;
  margin: calc(var(--space-sm)*-1) 0 0 calc(var(--space-sm)*-1);
}

.grid-gap--sm > * {
  padding: 0.75em 0 0 0.75em;
  padding: var(--space-sm) 0 0 var(--space-sm);
}

.grid-gap--lg {
  margin: -2em 0 0 -2em;
  margin: calc(var(--space-lg)*-1) 0 0 calc(var(--space-lg)*-1);
}

.grid-gap--lg > * {
  padding: 2em 0 0 2em;
  padding: var(--space-lg) 0 0 var(--space-lg);
}

.grid-gap--xl {
  margin: -3.25em 0 0 -3.25em;
  margin: calc(var(--space-xl)*-1) 0 0 calc(var(--space-xl)*-1);
}

.grid-gap--xl > * {
  padding: 3.25em 0 0 3.25em;
  padding: var(--space-xl) 0 0 var(--space-xl);
}

.col--1 {
  flex-basis: 8.33%;
  max-width: 8.33%;
}

.col--2 {
  flex-basis: 16.66%;
  max-width: 16.66%;
}

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

.col--4 {
  flex-basis: 33.33%;
  max-width: 33.33%;
}

.col--5 {
  flex-basis: 41.66%;
  max-width: 41.66%;
}

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

.col--7 {
  flex-basis: 58.33%;
  max-width: 58.33%;
}

.col--8 {
  flex-basis: 66.66%;
  max-width: 66.66%;
}

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

.col--10 {
  flex-basis: 83.33%;
  max-width: 83.33%;
}

.col--11 {
  flex-basis: 91.66%;
  max-width: 91.66%;
}

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

@media only screen and (min-width: 37.5rem) {
  .col--sm-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--sm-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col--sm-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--sm-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col--sm-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--sm-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col--sm-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--sm-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 64rem) {
  .col--md-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--md-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col--md-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--md-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col--md-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--md-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col--md-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--md-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 80rem) {
  .col--lg-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--lg-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col--lg-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--lg-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col--lg-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--lg-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col--lg-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--lg-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 90rem) {
  .col--xl-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--xl-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col--xl-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--xl-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col--xl-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--xl-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col--xl-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--xl-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.flex {
  display: flex;
}

.flex > * {
  display: inline-block;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--column {
  flex-direction: column;
}

.flex--end {
  justify-content: flex-end;
}

.flex--center {
  justify-content: center;
  align-items: center;
}

.flex--center-x {
  justify-content: center;
}

.flex--center-y {
  align-items: center;
}

.flex--space-between {
  justify-content: space-between;
}

.flex--space-around {
  justify-content: space-around;
}

.flex--space-evenly {
  justify-content: space-evenly;
}

.flex--grow > * {
  flex-grow: 1;
}

.flex--shrink-none > * {
  flex-shrink: 0;
}

.flex-gap > *, .flex-gap--md > * {
  margin-right: 1.25em;
  margin-right: var(--space-md);
}

.flex-gap > *:last-child, .flex-gap--md > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap, .flex--wrap.flex-gap--md {
  margin-bottom: -1.25em;
  margin-bottom: calc(-1*var(--space-md));
}

.flex--wrap.flex-gap > *, .flex--wrap.flex-gap--md > * {
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
}

.flex-gap--xxs > * {
  margin-right: 0.375em;
  margin-right: var(--space-xxs);
}

.flex-gap--xxs > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--xxs {
  margin-bottom: -0.375em;
  margin-bottom: calc(-1*var(--space-xxs));
}

.flex--wrap.flex-gap--xxs > * {
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.flex-gap--xs > * {
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.flex-gap--xs > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--xs {
  margin-bottom: -0.5em;
  margin-bottom: calc(-1*var(--space-xs));
}

.flex--wrap.flex-gap--xs > * {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.flex-gap--sm > * {
  margin-right: 0.75em;
  margin-right: var(--space-sm);
}

.flex-gap--sm > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--sm {
  margin-bottom: -0.75em;
  margin-bottom: calc(-1*var(--space-sm));
}

.flex--wrap.flex-gap--sm > * {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.flex-gap--lg > * {
  margin-right: 2em;
  margin-right: var(--space-lg);
}

.flex-gap--lg > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--lg {
  margin-bottom: -2em;
  margin-bottom: calc(-1*var(--space-lg));
}

.flex--wrap.flex-gap--lg > * {
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
}

.flex-gap--xl > * {
  margin-right: 3.25em;
  margin-right: var(--space-xl);
}

.flex-gap--xl > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--xl {
  margin-bottom: -3.25em;
  margin-bottom: calc(-1*var(--space-xl));
}

.flex--wrap.flex-gap--xl > * {
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
}

.flex-item--end {
  align-self: flex-end;
}

.flex-item--grow {
  flex-grow: 1;
}

.flex-item--shrink-none {
  flex-shrink: 0;
}

:root {
  --radius: 4px;
  --btn-radius: 4px;
  --transition-bounce: cubic-bezier(.25,1.43,.35,1.69);
  --box-shadow: 0 0 4px rgba(0,0,0,.15);
}

.btn, .icon {
  line-height: 1;
}

.transition, a, a svg, button {
  transition: all 0.15s ease-in;
}

:focus {
  outline: none !important;
}

/* -------------------------------- 
Typography
-------------------------------- */
@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Light.eot");
  src: url("fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Light.woff2") format("woff2"), url("fonts/Roboto-Light.woff") format("woff"), url("fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Italic.eot");
  src: url("fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Italic.woff2") format("woff2"), url("fonts/Roboto-Italic.woff") format("woff"), url("fonts/Roboto-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-BoldItalic.eot");
  src: url("fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-BoldItalic.woff2") format("woff2"), url("fonts/Roboto-BoldItalic.woff") format("woff"), url("fonts/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-LightItalic.eot");
  src: url("fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-LightItalic.woff2") format("woff2"), url("fonts/Roboto-LightItalic.woff") format("woff"), url("fonts/Roboto-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Regular.eot");
  src: url("fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Regular.woff2") format("woff2"), url("fonts/Roboto-Regular.woff") format("woff"), url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Bold.eot");
  src: url("fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Bold.woff2") format("woff2"), url("fonts/Roboto-Bold.woff") format("woff"), url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Domine';
  src: url("fonts/Domine-Regular.eot");
  src: url("fonts/Domine-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Domine-Regular.woff2") format("woff2"), url("fonts/Domine-Regular.woff") format("woff"), url("fonts/Domine-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Domine';
  src: url("fonts/Domine-Bold.eot");
  src: url("fonts/Domine-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Domine-Bold.woff2") format("woff2"), url("fonts/Domine-Bold.woff") format("woff"), url("fonts/Domine-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root, body {
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Domine', serif;
  --text-base-size: 1em;
  --text-scale-ratio: 1.2;
  --text-xs: calc(1em/var(--text-scale-ratio)/var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs)*var(--text-scale-ratio));
  --text-md: calc(var(--text-sm)*var(--text-scale-ratio)*var(--text-scale-ratio));
  --text-lg: calc(var(--text-md)*var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg)*var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl)*var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl)*var(--text-scale-ratio));
  --body-line-height: 1.4;
  --heading-line-height: 1.2;
  --font-primary-capital-letter: 1;
  --drop-cap-size-ratio: 3.5;
  --drop-cap-padding: 1.5em;
}

@supports (--css: variables) {
  @media only screen and (min-width: 64rem) {
    body {
      --text-base-size: 1.25em;
      --text-scale-ratio: 1.25;
    }
  }
}

body {
  font-size: 1em;
  font-size: var(--text-base-size);
  font-family: 'Roboto', sans-serif;
  font-family: var(--font-primary);
  font-weight: 300;
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
}

@supports (--css: variables) {
  @media only screen and (min-width: 64rem) {
    body {
  font-size: 1.25em;
  font-size: var(--text-base-size);
    }
  }
}

h1, h2, h3, h4 {
  font-family: 'Domine', serif;
  font-family: var(--font-secondary);
  font-weight: 400;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  line-height: 1.2;
  line-height: var(--heading-line-height);
}

.text--xxxl {
  font-size: 2.48832em;
  font-size: var(--text-xxxl);
}

h1, .text--xxl {
  font-size: 2.0736em;
  font-size: var(--text-xxl);
}

h2, .text--xl {
  font-size: 1.728em;
  font-size: var(--text-xl);
}

h3, .text--lg {
  font-size: 1.44em;
  font-size: var(--text-lg);
}

h4, .text--md {
  font-size: 1.2em;
  font-size: var(--text-md);
}

.text--sm, small {
  font-size: 0.83333em;
  font-size: var(--text-sm);
}

.text--xs {
  font-size: 0.69444em;
  font-size: var(--text-xs);
}

.italic {
  font-style: italic;
}

a {
  color: hsl(28, 88%, 57%);
  color: var(--color-primary);
}

mark {
  background-color: hsl(0, 43%, 77%);
  background-color: var(--color-accent-lighter);
  color: inherit;
}

strong, .bold {
  font-weight: bold;
}

s {
  text-decoration: line-through;
}

u {
  text-decoration: underline;
}

.text--subtle {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.text-component {
  --component-body-line-height: calc(var(--body-line-height)*var(--line-height-multiplier));
  --component-heading-line-height: calc(var(--heading-line-height)*var(--line-height-multiplier));
  --line-height-multiplier: 1;
  --text-vspace-multiplier: 1;
}

.text-component h1, .text-component h2, .text-component h3, .text-component h4 {
  line-height: 1.2;
  line-height: var(--component-heading-line-height);
  margin-bottom: 0.25em;
  margin-bottom: calc(var(--space-xxxs)*var(--text-vspace-multiplier));
}

.text-component h2, .text-component h3, .text-component h4 {
  margin-top: 0.75em;
  margin-top: calc(var(--space-sm)*var(--text-vspace-multiplier));
}

.text-component p, .text-component blockquote, .text-component ul li, .text-component ol li {
  line-height: 1.4;
  line-height: var(--component-body-line-height);
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
}

.text-component ul, .text-component ol, .text-component p, .text-component blockquote {
  margin-bottom: 0.75em;
  margin-bottom: calc(var(--space-sm)*var(--text-vspace-multiplier));
}

.text-component ul, .text-component ol {
  padding-left: 1em;
}

.text-component ul {
  list-style-type: disc;
}

.text-component ol {
  list-style-type: decimal;
}

.text-component em {
  font-style: italic;
}

.text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(0, 0%, 83%);
  border-left: 4px solid var(--color-contrast-low);
}

.text-component hr {
  background: hsl(0, 0%, 83%);
  background: var(--color-contrast-low);
  height: 1px;
  margin: 2em auto;
  margin: calc(var(--space-lg)*var(--text-vspace-multiplier)) auto;
}

.text-component .drop-cap:first-letter {
  float: left;
  line-height: 1;
  font-size: 3.5em;
  font-size: calc(var(--drop-cap-size-ratio)*1em);
  padding: 0.42857em 0.42857em 0.2em;
  padding: calc(var(--drop-cap-padding)/var(--drop-cap-size-ratio)) calc(var(--drop-cap-padding)/var(--drop-cap-size-ratio)) calc((var(--drop-cap-padding) - 0.8em)/var(--drop-cap-size-ratio));
}

.text-component > *:first-child {
  margin-top: 0;
}

.text-component > *:last-child {
  margin-bottom: 0;
}

.article.text-component {
  --line-height-multiplier: 1.13;
}

.text-component__img {
  margin-bottom: undefined;
  margin-bottom: calc(var(--space-md)*var(--text-vspace-multiplier));
  text-align: center;
}

.text-component__img figcaption {
  text-align: center;
  font-size: 0.83333em;
  font-size: var(--text-sm);
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

@media only screen and (min-width: 37.5rem) {
  .text-component__img--left, .text-component__img--right {
    width: 45%;
  }
  .text-component__img--left {
    float: left;
    margin-right: undefined;
    margin-right: calc(var(--space-md)*var(--text-vspace-multiplier));
  }
  .text-component__img--right {
    float: right;
    margin-left: undefined;
    margin-left: calc(var(--space-md)*var(--text-vspace-multiplier));
  }
}

@media only screen and (min-width: 90rem) {
  .text-component__img--outset {
    width: calc(100% + 10.5em);
    width: calc(100% + 2*var(--space-xxl));
  }
  .text-component__img--outset:not(.text-component__img--right) {
    margin-left: -5.25em;
    margin-left: calc(-1*var(--space-xxl));
  }
  .text-component__img--left, .text-component__img--right {
    width: 50%;
  }
  .text-component__img--right.text-component__img--outset {
    margin-right: -5.25em;
    margin-right: calc(-1*var(--space-xxl));
  }
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:root {
  --icon-xxs: 8px;
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
}

.icon {
  display: inline-block;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  fill: currentColor;
  height: 1em;
  width: 1em;
  line-height: 1;
  overflow: hidden;
}

.icon-xxs {
  font-size: 8px;
  font-size: var(--icon-xxs);
}

.icon--xs {
  font-size: 16px;
  font-size: var(--icon-xs);
}

.icon--sm {
  font-size: 24px;
  font-size: var(--icon-sm);
}

.icon--md {
  font-size: 32px;
  font-size: var(--icon-md);
}

.icon--lg {
  font-size: 48px;
  font-size: var(--icon-lg);
}

.icon--xl {
  font-size: 64px;
  font-size: var(--icon-xl);
}

.icon-text {
  display: inline-flex;
  align-items: center;
}

.icon-text > *:nth-child(2) {
  margin-left: 0.375em;
  margin-left: var(--space-xxs);
}

.icon-text .icon {
  color: inherit;
  flex-shrink: 0;
}

.icon-text.icon-text-gap--none > *:nth-child(2) {
  margin-left: 0;
}

.icon--is-spinning {
  -webkit-animation: icon-spin 1s infinite linear;
          animation: icon-spin 1s infinite linear;
}

@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.icon use {
  color: inherit;
  fill: currentColor;
}

:root {
  --btn-font-size: 1em;
  --btn-sm: calc(var(--btn-font-size) - 0.2em);
  --btn-md: calc(var(--btn-font-size) + 0.2em);
  --btn-lg: calc(var(--btn-font-size) + 0.4em);
}

.btn, #submit {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  padding: 0.5em 0.75em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
  border-radius: var(--btn-radius);
  font-size: 1em;
  font-size: var(--btn-font-size);
  color: hsl(28, 88%, 57%);
  color: var(--color-primary);
  justify-content: center;
}

.btn--primary, #submit {
  background-color: hsl(28, 88%, 57%);
  background-color: var(--color-primary);
  color: hsl(0, 0%, 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--primary:hover, #submit:hover {
  background-color: hsl(28, 88%, 67%);
  background-color: var(--color-primary-light);
}

.btn--secondary {
  background-color: undefined;
  background-color: var(--color-secondary);
  color: hsl(0, 0%, 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--secondary:hover {
  background-color: undefined;
  background-color: var(--color-secondary-light);
}

.btn--subtle {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg);
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  border: 1px solid hsl(0, 0%, 83%);
  border: 1px solid var(--color-contrast-low);
}

.btn--subtle:hover {
  background-color: hsl(0, 0%, 95%);
  background-color: var(--color-contrast-lower);
}

.btn--accent {
  background-color: hsl(0, 63%, 57%);
  background-color: var(--color-accent);
  color: hsl(0, 0%, 100%);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--accent:hover {
  background-color: hsl(0, 53%, 67%);
  background-color: var(--color-accent-light);
}

.btn--disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.btn--sm {
  font-size: 0.8em;
  font-size: var(--btn-sm);
}

.btn--md {
  font-size: 1.2em;
  font-size: var(--btn-md);
}

.btn--lg {
  font-size: 1.4em;
  font-size: var(--btn-lg);
}

.btn--full-width {
  display: flex;
  width: 100%;
}

.btn .icon {
  color: inherit;
  flex-shrink: 0;
}

.btn--icon-text {
  align-items: center;
}

.btn--icon-text > *:nth-child(2) {
  margin-left: 0.375em;
  margin-left: var(--space-xxs);
}

.btn--icon {
  padding: 0.5em;
  padding: var(--space-xs);
}

.form-control, select, textarea, input {
  padding: 0.5em 0.75em;
  padding: var(--space-xs) var(--space-sm);
  background: hsl(0, 0%, 100%);
  background: var(--color-bg);
  border: 2px solid hsl(0, 0%, 83%);
  border: 2px solid var(--color-contrast-low);
  width: 100%;
}

.form-control[type="submit"], .form-control[type="radio"], .form-control[type="checkbox"], select[type="submit"], select[type="radio"], select[type="checkbox"], textarea[type="submit"], textarea[type="radio"], textarea[type="checkbox"], input[type="submit"], input[type="radio"], input[type="checkbox"] {
  border: inherit;
  width: inherit;
}

.form-control:focus, select:focus, textarea:focus, input:focus {
  outline: none;
  border-color: hsl(28, 88%, 57%);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px hsl(28, 88%, 57%, 0.2);
  box-shadow: 0 0 0 3px var(--color-primary-a20);
}

.form-control::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  opacity: 1;
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control[disabled], .form-control[readonly] {
  cursor: not-allowed;
}

.form-control[aria-invalid="true"], .wpcf7-not-valid {
  border-color: hsl(355, 90%, 61%);
  border-color: var(--color-error);
}

.form-control[aria-invalid="true"]:focus, .wpcf7-not-valid:focus {
  box-shadow: 0 0 0 3px hsla(355, 90%, 61%, 0.2);
  box-shadow: 0 0 0 3px var(--color-error-a20);
}

.form-legend {
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  line-height: 1.2;
  font-size: 1.2em;
  font-size: var(--text-md);
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.form-label, label {
  display: inline-block;
  font-size: 0.83333em;
  font-size: var(--text-sm);
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
}

.form-legend {
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  line-height: 1.2;
  font-size: 1.2em;
  font-size: var(--text-md);
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.form__msg-error, .wpcf7-not-valid-tip {
  background-color: hsl(355, 90%, 61%);
  background-color: var(--color-error);
  color: hsl(0, 0%, 100%);
  color: var(--white);
  font-size: 0.83333em;
  font-size: var(--text-sm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0.5em;
  padding: var(--space-xs);
  margin-top: 0.75em;
  margin-top: var(--space-sm);
  border-radius: 0.25em;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

.form__msg-error::before, .wpcf7-not-valid-tip::before {
  content: '';
  position: absolute;
  left: 0.75em;
  left: var(--space-sm);
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: hsl(355, 90%, 61%);
  border-bottom-color: var(--color-error);
}

.form__msg-error--is-visible, .wpcf7-not-valid-tip {
  display: block;
  position: relative;
  clip: auto;
}

:root {
  --select-icon-size: 1em;
  --select-icon-right-margin: var(--space-sm);
}

.select {
  position: relative;
}

.select select {
  padding-right: 2.5em;
  padding-right: calc(var(--select-icon-size) + var(--select-icon-right-margin)*2);
}

.select .icon {
  width: 1em;
  width: var(--select-icon-size);
  height: 1em;
  height: var(--select-icon-size);
  position: absolute;
  right: 0.75em;
  right: var(--select-icon-right-margin);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.radio-list > *, .checkbox-list > *, .wpcf7-form-control > * {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.radio-list > *:last-of-type, .checkbox-list > *:last-of-type, .wpcf7-form-control > *:last-of-type {
  margin-bottom: 0;
}

.radio-list label, .radio-list span, .checkbox-list label, .checkbox-list span, .wpcf7-form-control label, .wpcf7-form-control span {
  line-height: 1.4;
  line-height: var(--body-line-height);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.radio-list input, .checkbox-list input, .wpcf7-form-control input {
  vertical-align: top;
  margin-right: 0.25em;
  margin-right: var(--space-xxxs);
  flex-shrink: 0;
}

.radio-list.radio-list--inline, .radio-list.checkbox-list--inline, .checkbox-list.radio-list--inline, .checkbox-list.checkbox-list--inline, .wpcf7-form-control.radio-list--inline, .wpcf7-form-control.checkbox-list--inline {
  display: flex;
  margin-bottom: -1.25em;
  margin-bottom: calc(-1*var(--space-md));
}

.radio-list.radio-list--inline > *, .radio-list.checkbox-list--inline > *, .checkbox-list.radio-list--inline > *, .checkbox-list.checkbox-list--inline > *, .wpcf7-form-control.radio-list--inline > *, .wpcf7-form-control.checkbox-list--inline > * {
  margin: 0 1.25em 1.25em 0;
  margin: 0 var(--space-md) var(--space-md) 0;
}

div.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors, .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  padding: 0.5em;
  padding: var(--space-xs);
  line-height: 1;
}

.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: hsl(355, 90%, 61%);
  color: var(--color-error);
  background-color: hsl(356, 89%, 93%);
  background-color: var(--color-error-lighter);
}

.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: hsl(94, 48%, 56%);
  color: var(--color-success);
  background-color: hsl(94, 48%, 92%);
  background-color: var(--color-success-lighter);
}

:root {
  --zindex-header: 2;
  --zindex-fixed-element: 5;
  --zindex-overlay: 10;
}

/*!
 * Cookie Notice
 */
#cookie-notice {
  display: block;
  visibility: hidden;
  position: fixed;
  min-width: 100%;
  height: auto;
  z-index: 100000;
  left: 0;
  bottom: 0;
  text-align: center;
  opacity: 0.9;
  font-size: 0.83333em;
  font-size: var(--text-sm);
  background-color: hsl(28, 88%, 57%) !important;
  background-color: var(--color-primary) !important;
}

.cookie-notice-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25em 0.5em;
  padding: var(--space-md) var(--space-xs);
}

.cookie-notice-container span {
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

/* -------------------------------- 

Title: Back to top
Descr: Component that triggers scroll-y to the top of the page

-------------------------------- */
:root {
  /* style */
  --btt-icon-size: 1.25em;
}

.back-to-top {
  position: fixed;
  right: 1.25em;
  right: var(--space-md);
  bottom: 1.25em;
  bottom: var(--space-md);
  padding: 0.5em;
  padding: var(--space-xs);
  z-index: 5;
  z-index: var(--zindex-fixed-element);
  border-radius: 4px;
  border-radius: var(--radius);
  background-color: hsla(240, 7%, 12%, 0.9);
  background-color: var(--color-contrast-a90);
  transition: 0.3s;
}

.back-to-top:hover {
  background-color: hsl(240, 7%, 12%);
  background-color: var(--color-contrast-higher);
}

.back-to-top .icon {
  display: block;
  color: hsl(0, 0%, 100%);
  color: var(--white);
  width: 1.25em;
  width: var(--btt-icon-size);
  height: 1.25em;
  height: var(--btt-icon-size);
}

.js .back-to-top {
  visibility: hidden;
  opacity: 0;
}

.js .back-to-top--is-visible {
  visibility: visible;
  opacity: 1;
}

/* -------------------------------- 

Title: Accordion
Description: Create stacked sections of content and allow the user to expand/collapse them 

-------------------------------- */
:root {
  --accordion-icon-size: 1.6em;
  --accordion-icon-stroke-width: 3px;
}

@media only screen and (min-width: 64rem) {
  :root {
    --accordion-icon-size: 1em;
    --accordion-icon-stroke-width: 2px;
  }
}

.accordion__header {
  padding: 0.75em 0.75em;
  padding: var(--space-sm) var(--component-padding);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  cursor: pointer;
}

.accordion__header:hover {
  color: hsl(28, 88%, 57%);
  color: var(--color-primary);
}

.accordion__header-title {
  font-size: 1.2em;
  font-size: var(--text-md);
  text-align: left;
}

.accordion__header-icon {
  float: right;
  flex-shrink: 0;
  margin-left: 0.75em;
  margin-left: var(--space-sm);
  display: none;
}

.accordion__header-icon i {
  position: relative;
  width: 1.6em;
  width: var(--accordion-icon-size);
  height: 1.6em;
  height: var(--accordion-icon-size);
  display: block;
  will-change: transform;
}

@media only screen and (min-width: 64rem) {
  .accordion__header-icon i {
  height: 1em;
  height: var(--accordion-icon-size);
  }
}

@media only screen and (min-width: 64rem) {
  .accordion__header-icon i {
  width: 1em;
  width: var(--accordion-icon-size);
  }
}

.accordion__header-icon i::before, .accordion__header-icon i::after {
  content: '';
  position: absolute;
  width: 3px;
  width: var(--accordion-icon-stroke-width);
  height: 80%;
  background: currentColor;
  top: 0;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  will-change: transform;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  border-radius: 4px;
}

@media only screen and (min-width: 64rem) {
  .accordion__header-icon i::before, .accordion__header-icon i::after {
  width: 2px;
  width: var(--accordion-icon-stroke-width);
  }
}

.accordion__header-icon i::before {
  left: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion__header-icon i::after {
  left: calc(50% - 1.5px);
  left: calc(50% - var(--accordion-icon-stroke-width)/2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media only screen and (min-width: 64rem) {
  .accordion__header-icon i::after {
  left: calc(50% - 1px);
  left: calc(50% - var(--accordion-icon-stroke-width)/2);
  }
}

.accordion__item--is-open > .accordion__header > .accordion__header-icon i::before {
  -webkit-transform: translateY(-80%) rotate(-135deg);
          transform: translateY(-80%) rotate(-135deg);
}

.accordion__item--is-open > .accordion__header > .accordion__header-icon i::after {
  -webkit-transform: translateY(-80%) rotate(135deg);
          transform: translateY(-80%) rotate(135deg);
}

.accordion__header-icon .icon {
  width: 1.6em;
  width: var(--accordion-icon-size);
  height: 1.6em;
  height: var(--accordion-icon-size);
  color: inherit;
}

@media only screen and (min-width: 64rem) {
  .accordion__header-icon .icon {
  height: 1em;
  height: var(--accordion-icon-size);
  }
}

@media only screen and (min-width: 64rem) {
  .accordion__header-icon .icon {
  width: 1em;
  width: var(--accordion-icon-size);
  }
}

.accordion__panel-content {
  padding: 0.25em 0.75em 0.75em;
  padding: var(--space-xxxs) var(--component-padding) var(--component-padding);
}

.js .accordion__header-icon {
  display: block;
}

.js .accordion__panel {
  display: none;
  overflow: hidden;
  will-change: height;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}

.js .accordion__item--is-open > .accordion__panel {
  display: block;
}

#sb-primary .accordion__header {
  padding: 0;
}

#sb-primary .accordion__panel-content {
  padding: 0;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Header
	## Logo
	## Menus
# Content
# Sidebar
# Footer
# 404
# Pages
	## Home Page
	## Portfolio
	## About Page
	## Contact Page
	## Blog
	## Style Guide


--------------------------------------------------------------*/
/*--------------------------------------------------------------
ADMIN BAR WORDPRESS
--------------------------------------------------------------*/
#wpadminbar {
  display: none;
}

/*--------------------------------------------------------------
GOOGLE CAPTCHA
--------------------------------------------------------------*/
.grecaptcha-badge {
  display: none;
}

.page-template-contact-page .grecaptcha-badge {
  display: block;
}

/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
:root {
  --main-header-height: 70px;
  --zindex-header: 2;
}

.main-header {
  position: relative;
  height: 70px;
  height: var(--main-header-height);
  z-index: 2;
  z-index: var(--zindex-header);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

@media only screen and (min-width: 64rem) {
  .main-header {
  height: 40px;
  height: var(--main-header-height);
  }
}

.main-header.main-header--position-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.main-header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.main-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 0 4px rgba(0,0,0,.15);
  box-shadow: var(--box-shadow);
}

.sg-mobile-header {
  display: flex;
}

#avatar {
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

#avatar svg {
  font-size: 54px;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
}

.sg-branding {
  text-decoration: none;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
}

.sg-branding h1 {
  font-size: 1.2em;
  font-size: var(--text-md);
}

.sg-branding p {
  font-size: 0.83333em;
  font-size: var(--text-sm);
}

.sg-baseline {
  display: none;
}

.main-nav {
  line-height: 1;
}

.main-nav__trigger {
  position: relative;
  overflow: hidden;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
}

.main-nav__list {
  display: none;
  position: absolute;
  top: 70px;
  top: var(--main-header-height);
  right: 0;
  width: 100%;
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg);
  border-top: 2px solid hsl(0, 0%, 83%);
  border-top: 2px solid var(--color-contrast-low);
  border-bottom: 2px solid hsl(0, 0%, 83%);
  border-bottom: 2px solid var(--color-contrast-low);
  box-shadow: 0 0 4px rgba(0,0,0,.15);
  box-shadow: var(--box-shadow);
  z-index: 2;
  z-index: var(--zindex-header);
  font-size: 1.44em;
  font-size: var(--text-lg);
}

@media only screen and (min-width: 64rem) {
  .main-nav__list {
  top: 40px;
  top: var(--main-header-height);
  }
}

.main-nav__list ul {
  padding: 0 0.75em;
  padding: 0 var(--component-padding);
}

.main-nav__list li:last-child a {
  border-bottom: none;
}

.main-nav__list a {
  display: block;
  padding: 0.75em 0;
  padding: var(--space-sm) 0;
  white-space: nowrap;
  text-decoration: none;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  border-bottom: 2px solid hsl(0, 0%, 83%);
  border-bottom: 2px solid var(--color-contrast-low);
}

.main-nav__list a:hover, .main-nav__list a.current {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.main-nav__list a:hover {
  text-decoration: underline;
}

.main-nav__list a:focus {
  outline: undefined;
  outline: 2px solid var(--contrast-medium);
  outline-offset: 2px;
}

.main-header[data-theme="dark"] .main-nav__list a:hover {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.main-header--nav-visible .main-nav__list {
  display: block;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
:root {
  --hamburger-layer-width: 30px;
  --hamburger-layer-height: 4px;
}

.hamburger-box {
  display: inline-block;
  position: relative;
  width: 30px;
  width: var(--hamburger-layer-width);
  height: calc(12px + 1em);
  height: calc(var(--hamburger-layer-height)*3 + var(--space-xs)*2);
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  margin-top: calc(var(--hamburger-layer-height)/-2);
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner:after {
  position: absolute;
  width: 30px;
  width: var(--hamburger-layer-width);
  height: 4px;
  height: var(--hamburger-layer-height);
  background-color: hsl(240, 7%, 12%);
  background-color: var(--color-contrast-higher);
  border-radius: 4px;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner:before, .hamburger-inner:after {
  content: '';
  display: block;
}

.hamburger-inner:before {
  top: calc(-0.375em + -4px);
  top: calc((var(--space-xxs) + var(--hamburger-layer-height))*-1);
}

.hamburger-inner:after {
  bottom: calc(-0.375em + -4px);
  bottom: calc((var(--space-xxs) + var(--hamburger-layer-height))*-1);
}

.hamburger {
  padding: 0.25em;
  padding: var(--space-xxxs);
}

.hamburger .hamburger-inner {
  transition-property: all;
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  opacity: 1;
}

.hamburger .hamburger-inner:before {
  transition: top 0.075s 0.12s ease;
}

.hamburger .hamburger-inner:after {
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.075s ease;
}

.hamburger.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger:hover .hamburger-inner, .hamburger.is-active:hover .hamburger-inner {
  opacity: 0.7;
}

@media only screen and (min-width: 64rem) {
  :root {
    --main-header-height: 40px
	;
  }
  .main-header {
    height: 40px;
    height: var(--main-header-height);
  }
  @media only screen and (min-width: 64rem) {
    .main-header {
    height: 40px;
    height: var(--main-header-height);
    }
  }
  .main-header__container {
    box-shadow: none;
  }
  .sg-mobile-header {
    display: none;
  }
  .sg-baseline {
    display: block;
  }
  .main-nav__trigger {
    display: none;
  }
  .main-nav__list {
    top: 40px;
    top: var(--main-header-height);
  }
  @media only screen and (min-width: 64rem) {
    .main-nav__list {
    top: 40px;
    top: var(--main-header-height);
    }
  }
  .main-nav__list {
    display: inline-block !important;
    border: none;
    position: static;
    background: 0 0;
    box-shadow: none;
    font-size: 0.83333em;
    font-size: var(--text-sm);
  }
  .main-nav__list ul {
    display: flex;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  .main-nav__list li {
    margin-left: 1.25em;
    margin-left: var(--space-md);
  }
  .main-nav__list li:last-child a {
    border: 1px solid hsl(240, 7%, 12%);
    border: 1px solid var(--color-contrast-higher);
    border-radius: 4px;
    border-radius: var(--btn-radius);
    padding: 0.25em 0.75em;
    padding: var(--space-xxxs) var(--space-sm);
  }
  .main-nav__list li:last-child:hover a {
    background-color: hsl(240, 7%, 12%);
    background-color: var(--color-contrast-higher);
    color: hsl(28, 88%, 57%) !important;
    color: var(--color-primary) !important;
    text-decoration: none;
  }
  .main-nav__list a {
    border: none;
    padding: 0;
    color: hsl(240, 7%, 12%);
    color: var(--color-contrast-higher);
  }
  #avatar {
    display: none;
  }
}

/*--------------------------------------------------------------
Content
--------------------------------------------------------------*/
.height-full-vh {
  min-height: calc(100vh - 70px - 1.25em - 80px - 1.25em);
  min-height: calc(100vh - var(--main-header-height) - var(--space-md) - var(--footer-height) - var(--space-md));
}
@media only screen and (min-width: 64rem) {
  .height-full-vh {
  min-height: calc(100vh - 40px - 1.25em - 60px - 1.25em);
  min-height: calc(100vh - var(--main-header-height) - var(--space-md) - var(--footer-height) - var(--space-md));
  }
}

.main-header + main {
  padding-top: 70px;
  padding-top: var(--main-header-height);
}

@media only screen and (min-width: 64rem) {
  .main-header + main {
  padding-top: 40px;
  padding-top: var(--main-header-height);
  }
}

.home .main-header + main {
  padding-top: 150px;
  padding-top: calc(var(--main-header-height) + 80px);
  margin-top: 0;
}

@media only screen and (min-width: 64rem) {
  .home .main-header + main {
  padding-top: 120px;
  padding-top: calc(var(--main-header-height) + 80px);
  }
}

.sg-box {
  border: 1px solid hsl(0, 0%, 83%);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  border-radius: var(--radius);
  padding: 0.5em;
  padding: var(--space-xs);
}

.post-thumbnail {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-fixed-bg {
  background-attachment: fixed;
}

.cd-fixed-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.separation--primary {
  position: relative;
}

.separation--primary:before {
  content: '';
  display: block;
  position: absolute;
  width: 90%;
  height: 4px;
  left: 0;
  bottom: -0.5em;
  border-radius: 2px;
  background-color: hsl(28, 88%, 57%);
  background-color: var(--color-primary);
  margin: 0 auto;
}

.separation--primary:after {
  content: '';
  display: block;
  position: absolute;
  width: 6%;
  height: 4px;
  right: 0;
  bottom: -0.5em;
  border-radius: 2px;
  background-color: hsl(28, 88%, 57%);
  background-color: var(--color-primary);
  margin: 0 auto;
}

#commentform p {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

@media only screen and (min-width: 64rem) {
  .home .main-header + main {
    padding-top: 40px;
    padding-top: var(--main-header-height);
    margin-top: 1.25em;
    margin-top: var(--space-md);
  }
  @media only screen and (min-width: 64rem) {
    .home .main-header + main {
    padding-top: 40px;
    padding-top: var(--main-header-height);
    }
  }
  @supports (grid-area: auto) {
    .sg-main-content.sg-main-content--sidebar {
      display: grid;
      grid-template-columns: 250px 1fr;
      grid-gap: 2em;
      grid-gap: var(--space-lg);
    }
  }
  .sg-main-content.sg-main-content--sidebar > h1 {
    flex-basis: 100%;
    max-width: 100%;
    grid-column: span 2;
  }
  @supports (grid-area: auto) {
    .sg-main-content.sg-main-content--sidebars {
      display: grid;
      grid-template-columns: 250px 1fr 250px;
      grid-gap: 2em;
      grid-gap: var(--space-lg);
    }
  }
  .sg-main-content.sg-main-content--sidebars > h1 {
    flex-basis: 100%;
    max-width: 100%;
    grid-column: span 2;
  }
  @supports (grid-area: auto) {
    .sg-main-content.sg-main-content--col-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 1.25em;
      grid-gap: var(--space-md);
    }
  }
  .sg-main-content.sg-main-content--col-2 > h1 {
    flex-basis: 100%;
    max-width: 100%;
    grid-column: span 2;
  }
}

/*--------------------------------------------------------------
Sidebar
--------------------------------------------------------------*/
.home #sb-primary {
  display: block;
}

#sb-primary {
  display: none;
}

#sb-primary header h1 {
  font-size: 1.44em;
  font-size: var(--text-lg);
}

#sb-primary h3 {
  font-size: 1.2em;
  font-size: var(--text-md);
}

#sb-primary .logo {
  display: block;
  width: 100px;
  margin: 0 auto 0.5em;
  margin: 0 auto var(--space-xs);
}

#sb-primary .logo .front {
  fill: hsl(240, 7%, 12%);
  fill: var(--color-contrast-higher);
}

#sb-primary .logo .back {
  fill: hsl(28, 88%, 57%);
  fill: var(--color-primary);
  opacity: 0.9;
}

#sb-primary .logo .stars {
  fill: hsl(28, 88%, 77%);
  fill: var(--color-primary-lighter);
}

#sb-primary ul {
  position: fixed;
  width: 100%;
  top: 70px;
  top: var(--main-header-height);
  left: 0;
  will-change: transform;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  z-index: 1;
}

@media only screen and (min-width: 64rem) {
  #sb-primary ul {
  top: 40px;
  top: var(--main-header-height);
  }
}

#sb-primary ul.is-hidden {
  -webkit-transform: translateY(-70px);
  -webkit-transform: translateY(-var(--main-header-height));
          transform: translateY(-70px);
          transform: translateY(-var(--main-header-height));
}

@media only screen and (min-width: 64rem) {
  #sb-primary ul.is-hidden {
          transform: translateY(-40px);
          transform: translateY(-var(--main-header-height));
  }
}

@media only screen and (min-width: 64rem) {
  #sb-primary ul.is-hidden {
  -webkit-transform: translateY(-40px);
  -webkit-transform: translateY(-var(--main-header-height));
  }
}

#sb-primary ul li {
  padding: 0 0.75em;
  padding: 0 var(--space-sm);
}

#sb-primary ul li .accordion__header {
  padding: 0.75em 0;
  padding: var(--space-sm) 0;
  margin: 0;
}

#sb-primary ul li:nth-child(1) {
  background-color: hsl(28, 88%, 57%);
  background-color: var(--color-primary);
}

#sb-primary ul li:nth-child(2) {
  background-color: hsl(28, 88%, 67%);
  background-color: var(--color-primary-light);
}

#sb-primary .sg-expert {
  color: hsl(0, 0%, 100%);
  color: var(--white);
}

#sb-primary .accordion__header:hover {
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
}

#sb-primary .accordion__header h3 {
  font-size: 1.44em;
  font-size: var(--text-lg);
  color: hsl(0, 0%, 100%);
  color: var(--white);
}

#sb-primary .accordion__header em {
  margin-right: 0.75em;
  margin-right: var(--space-sm);
  color: hsl(0, 0%, 100%);
  color: var(--white);
}

#sb-primary .sg-expert-list {
  display: flex;
  flex-direction: column;
}

#sb-primary .sg-expert-list .sg-box {
  font-size: 1.44em;
  font-size: var(--text-lg);
  padding: 0.25em;
  padding: var(--space-xxxs);
}

#sb-primary .sg-expert-list .sg-box svg .bg {
  opacity: 0.25;
}

#sb-primary .sg-skills {
  display: flex;
  flex-wrap: wrap;
}

#sb-primary .sg-skills h3 {
  flex: 1 100%;
}

#sb-primary .sg-skills div {
  margin-right: 0.375em;
  margin-right: var(--space-xxs);
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

#sb-primary .accordion__panel {
  padding-bottom: 0.75em;
  padding-bottom: var(--space-sm);
}

#sb-primary .sb-malt {
  display: none;
}

.sb-header {
  display: none;
}

#sb-secondary {
  display: none;
}

#sb-secondary .post-thumbnail {
  width: 50px;
  height: 50px;
}

#sb-secondary article {
  display: flex;
}

#sb-secondary article .post-thumbnail {
  flex: 0 0 auto;
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

#sb-secondary article .sg-content {
  flex: 1 1 0%;
}

#sb-secondary article .sg-content h4 {
  line-height: 1;
}

#sb-secondary article .entry-title {
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
  text-decoration: none;
}

#sb-secondary .categories .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#sb-secondary .categories a {
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
  text-decoration: none;
}

@media only screen and (min-width: 64rem) {
  #sb-primary {
    display: block;
  }
  #sb-primary .logo {
    width: auto;
  }
  #sb-primary ul {
    position: relative;
    top: 0;
  }
  #sb-primary ul.is-hidden {
    -webkit-transform: none;
            transform: none;
  }
  #sb-primary ul li {
    padding: 0;
    margin-top: 0.75em;
    margin-top: var(--space-sm);
  }
  #sb-primary ul li:first-child {
    margin-top: 0;
  }
  #sb-primary ul li:nth-child(1), #sb-primary ul li:nth-child(2) {
    background-color: unset;
  }
  #sb-primary .sg-expert {
    color: hsl(255, 4%, 20%);
    color: var(--color-contrast-high);
  }
  #sb-primary .accordion__header:hover {
    color: hsl(255, 4%, 20%);
    color: var(--color-contrast-high);
  }
  #sb-primary .accordion__header h3 {
    font-size: 1.2em;
    font-size: var(--text-md);
    color: hsl(240, 7%, 12%);
    color: var(--color-contrast-higher);
  }
  #sb-primary .accordion__header em {
    margin-right: 0;
    color: hsl(255, 4%, 20%);
    color: var(--color-contrast-high);
  }
  #sb-primary .sg-expert-list .sg-box {
    font-size: inherit;
    padding: 0.5em;
    padding: var(--space-xs);
  }
  #sb-primary .sg-expert-list .sg-box svg {
    fill: hsl(28, 88%, 57%);
    fill: var(--color-primary);
  }
  #sb-primary .sg-expert-list .sg-box svg .bg {
    fill: hsl(28, 88%, 77%);
    fill: var(--color-primary-lighter);
    opacity: 1;
  }
  #sb-primary .sb-malt {
    display: block;
    background-color: #343a5e;
    color: hsl(0, 0%, 100%);
    color: var(--white);
    border: none;
  }
  #sb-primary .sb-malt svg {
    color: #ff396c;
  }
  #sb-primary .sb-malt a {
    color: hsl(0, 0%, 100%);
    color: var(--white);
  }
  .sb-header {
    display: block;
  }
  #sb-secondary {
    display: block;
  }
}

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
:root {
  --footer-height: 80px;
}

.main-footer {
  display: flex;
  height: 80px;
  height: var(--footer-height);
  align-items: center;
}

@media only screen and (min-width: 64rem) {
  .main-footer {
  height: 60px;
  height: var(--footer-height);
  }
}

.main-footer .container {
  height: 100%;
  flex-direction: column-reverse;
  justify-content: space-evenly;
}

.main-footer .container p {
  text-align: center;
}

.main-footer .cd-social {
  display: flex;
}

.main-footer .cd-social li {
  margin-left: 0.5em;
  margin-left: var(--space-xs);
  will-change: transform;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  transition-timing-function: cubic-bezier(.25,1.43,.35,1.69);
  transition-timing-function: var(--transition-bounce);
}

.main-footer .cd-social li:hover {
  -webkit-transform: scale(1.1) rotate(-5deg);
          transform: scale(1.1) rotate(-5deg);
}

.main-footer .icon {
  color: hsl(28, 88%, 57%);
  color: var(--color-primary);
}

.main-footer__copy p {
  font-size: 0.83333em;
  font-size: var(--text-sm);
}

@media only screen and (min-width: 64rem) {
  :root {
    --footer-height: 60px;
  }
  .main-footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
404
--------------------------------------------------------------*/
.error-404 {
  text-align: center;
}

.error-404 figure svg {
  display: block;
  height: 250px;
  width: auto;
  margin: 0 auto;
  padding-bottom: 2em;
  padding-bottom: var(--space-lg);
  fill: hsl(28, 88%, 67%);
  fill: var(--color-primary-light);
}

.error-404 figure svg .star {
  fill: hsl(28, 88%, 77%);
  fill: var(--color-primary-lighter);
}

/*--------------------------------------------------------------
Pages
--------------------------------------------------------------*/
.home .sg-intro {
  padding: 0.75em;
  padding: var(--space-sm);
  font-size: 1.2em;
  font-size: var(--text-md);
}

.home .sg-portfolio {
  border-radius: 4px;
  border-radius: var(--radius);
  box-shadow: 0 0 4px rgba(0,0,0,.15);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
}

.home .sg-portfolio a {
  text-decoration: none;
}

.home .sg-portfolio .post-thumbnail {
  height: 150px;
}

.home .sg-portfolio .entry-header {
  margin-bottom: 5px;
}

.home .sg-portfolio .entry-content {
  padding: 0.5em;
  padding: var(--space-xs);
}

.home .sg-portfolio h2 {
  font-size: 1em;
}

.home .sg-portfolio p {
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
  font-size: 0.83333em;
  font-size: var(--text-sm);
}

@media only screen and (min-width: 37.5rem) {
  .home .sg-portfolio {
    margin-bottom: 0;
  }
  @supports (grid-area: auto) {
    .home .sg-main-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 0.75em;
      grid-gap: var(--space-sm);
    }
  }
}

@media only screen and (min-width: 64rem) {
  @supports (grid-area: auto) {
    .home .sg-main-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 1.25em;
      grid-gap: var(--space-md);
    }
  }
}

.entry-header {
  position: relative;
}

.goback {
  position: absolute;
  top: 0;
  right: 0;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
}

.goback svg {
  fill: hsl(28, 88%, 57%);
  fill: var(--color-primary);
}

.portfolio-template .entry-header h1 {
  padding-top: 0.75em;
  padding-top: var(--space-sm);
}

.portfolio-template .entry-content p {
  text-align: justify;
}

.portfolio-template .text-component ul {
  padding: 0;
}

#colorbox.advgb_lightbox #cboxLoadedContent {
  border-radius: 4px !important;
  border-radius: var(--radius) !important;
}

#colorbox.advgb_lightbox #cboxPrevious {
  background: url(images/back.svg) no-repeat center left !important;
  width: 60px !important;
}

#colorbox.advgb_lightbox #cboxNext {
  background: url(images/next.svg) no-repeat center left !important;
  width: 60px !important;
}

#colorbox.advgb_lightbox #cboxClose {
  background: url(images/cancel.svg) no-repeat center left !important;
}

svg#client {
  width: 80px;
  display: block;
  padding: 20px 0;
}

svg#client #lines {
  fill: hsl(28, 88%, 57%);
  fill: var(--color-primary);
}

svg#client #bg {
  fill: hsl(28, 88%, 77%);
  fill: var(--color-primary-lighter);
}

@media only screen and (min-width: 64rem) {
  .portfolio-template .entry-header h1 {
    padding-top: 0;
  }
}

.sg-about h2, .sg-about h3, .sg-about h4 {
  text-align: center;
}

.sg-about .btn {
  display: flex;
  max-width: 200px;
  margin: 0 auto;
}

.sg-about .sg-box {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.sg-about .sg-box .icon {
  flex: 0 50px;
  align-self: center;
  margin-right: 0.125em;
  margin-right: var(--space-xxxxs);
  max-height: 50px;
  fill: hsl(28, 88%, 57%);
  fill: var(--color-primary);
}

.sg-about .sg-box h4 {
  flex: 1;
  align-self: center;
  margin: 0;
  text-align: left;
}

.sg-about .sg-box p {
  margin-top: 0.5em;
  margin-top: var(--space-xs);
}

.sg-about figure {
  max-width: 150px;
  max-height: 150px;
  border-radius: 200px;
  overflow: hidden;
  line-height: 0;
}

@media only screen and (min-width: 37.5rem) {
  @supports (grid-area: auto) {
    .sg-services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 0.75em;
      grid-gap: var(--space-sm);
    }
  }
  .sg-about .sg-box {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 64rem) {
  .sg-about .presentation {
    display: block;
  }
  .sg-about .presentation .col--md-2 {
    display: block;
    float: left;
    margin-right: 0.75em;
    margin-right: var(--space-sm);
  }
  .sg-about .presentation .col--md-10 {
    display: block;
    max-width: 100%;
  }
}

@media only screen and (min-width: 80rem) {
  @supports (grid-area: auto) {
    .sg-services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

.sg-main-content article .post-thumbnail {
  height: 300px;
}

.excerpt, .entry-title a {
  text-decoration: none;
}

.entry-title a {
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
}

.excerpt {
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
}

.posts-navigation h2, .post-navigation h2 {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
  font-size: 1.44em;
  font-size: var(--text-lg);
  text-align: center;
}

.posts-navigation {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.posts-navigation .nav-previous, .posts-navigation .nav-next {
  display: flex;
  text-decoration: underline;
}

.posts-navigation .nav-previous a, .posts-navigation .nav-next a {
  display: flex;
}

.posts-navigation .nav-next {
  justify-content: flex-end;
}

.post-navigation {
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
}

.post-navigation .nav-previous, .post-navigation .nav-next {
  flex: 1 50%;
  align-self: stretch;
}

.post-navigation .nav-previous a, .post-navigation .nav-next a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
  text-decoration: none;
}

.post-navigation .nav-links {
  display: flex;
}

.post-navigation .nav-links img {
  flex: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  border-radius: var(--radius);
  border: 1px solid hsl(0, 0%, 83%);
  border: 1px solid var(--color-contrast-low);
}

.post-navigation .nav-links svg {
  flex: 0 auto;
  font-size: 24px;
  font-size: var(--icon-sm);
}

.post-navigation .nav-links div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.post-navigation .nav-links div span {
  padding-top: 10px;
  text-align: center;
}

@media only screen and (min-width: 37.5rem) {
  .nav-links a img {
    width: 100px;
    height: 100px;
  }
  .nav-links div {
    padding: 0 0.75em;
    padding: 0 var(--space-sm);
  }
}

.sg-infos p {
  margin-left: 0.75em;
  margin-left: var(--space-sm);
}

.sg-infos p:first-child {
  margin-left: 0;
}

.sg-infos .sg-numb:before {
  content: '+33 6 ';
}

.sg-infos .sg-mail:before {
  content: '@';
}

article.article .post-categories {
  padding-left: 0;
  display: flex;
}

article.article .post-categories li {
  list-style: none;
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

article.article .entry-meta {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

#comments .comments-title {
  font-size: 1.44em;
  font-size: var(--text-lg);
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

#comments .comment-list {
  list-style-type: none;
}

#comments .comment-metadata {
  font-size: 0.83333em;
  font-size: var(--text-sm);
}

#comments .comment-content {
  padding: 0.5em;
  padding: var(--space-xs);
}

.styleguide.sg-main-content section {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.styleguide.sg-main-content h2 {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.styleguide .sg-branding ul {
  display: flex;
}

.styleguide .sg-branding ul .sg-box:first-child {
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.styleguide .sg-branding ul .sg-box svg {
  fill: hsl(240, 7%, 12%);
  fill: var(--color-contrast-higher);
}

.styleguide .sg-colors ul {
  display: flex;
  margin: 0.75em 0;
  margin: var(--space-sm) 0;
}

.styleguide .sg-colors ul li {
  flex: 1;
}

.styleguide .sg-colors ul li:first-child {
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.styleguide .sg-colors ul li:nth-of-type(1) .sg-color-swatch {
  background: hsl(28, 88%, 57%);
  background: var(--color-primary);
}

.styleguide .sg-colors ul li:nth-of-type(1) .sg-color-swatch:before {
  background: hsl(28, 88%, 77%);
  background: var(--color-primary-lighter);
}

.styleguide .sg-colors ul li:nth-of-type(1) .sg-color-swatch:after {
  background: hsl(28, 88%, 37%);
  background: var(--color-primary-darker);
}

.styleguide .sg-colors ul li:nth-of-type(2) .sg-color-swatch {
  background: hsl(0, 63%, 57%);
  background: var(--color-accent);
}

.styleguide .sg-colors ul li:nth-of-type(2) .sg-color-swatch:before {
  background: hsl(0, 43%, 77%);
  background: var(--color-accent-lighter);
}

.styleguide .sg-colors ul li:nth-of-type(2) .sg-color-swatch:after {
  background: hsl(0, 83%, 37%);
  background: var(--color-accent-darker);
}

.styleguide .sg-colors ul .sg-color-swatch {
  position: relative;
  width: 100%;
  padding: 50% 0;
}

.styleguide .sg-colors ul .sg-color-swatch:before, .styleguide .sg-colors ul .sg-color-swatch:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 20%;
}

.styleguide .sg-colors ul .sg-color-swatch:before {
  left: 0;
}

.styleguide .sg-colors ul .sg-color-swatch:after {
  right: 0;
}

.styleguide .sg-typography .sg-box, .styleguide .sg-buttons .sg-box, .styleguide .sg-icons .sg-box {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

@media only screen and (min-width: 64rem) {
  .styleguide.sg-main-content .sg-typography {
    flex-basis: 100%;
    max-width: 100%;
    grid-column: span 2;
  }
}
