/*!
Theme Name: Sceleton
Theme URI: https://www.tigerton.se
Author: Jonathan de Jong @ Tigerton
Author URI: https://www.tigerton.se
Description: "bony framework of the body", a theme for quick and modern development with Tigerton!
Text Domain: sceleton
Version: 2.0
*/
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  box-sizing: inherit;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

/**
 * Let's clear some floats
 */
.clearfix:after, .wrapper:after, .mini-wrapper:after, .inner-wrapper:after, .content-wrapper:after, .mid-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

/**
 * Accessibility
 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link:hover,
.skip-link:active,
.skip-link:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  float: left;
}

/**
 * WordPress specific css
 */
.comment-content img[height],
.entry-content img,
.entry-summary img,
img[class*=align],
img[class*=attachment-],
img[class*=wp-image-] {
  height: auto;
}

.post-thumbnail img,
.wp-post-image,
img.size-full,
img.size-large {
  height: auto;
  max-width: 100%;
}

.alignleft,
.left {
  float: left;
}

.alignright,
.right {
  float: right;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/**
 * Responsive image hack
 */
img {
  max-width: 100%;
  height: auto;
}

/**
 * Our Grid system using Flexbox.
 * Based on: https://philipwalton.github.io/solved-by-flexbox/demos/grids/
 * Codebase: https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/grid.css
 */
.grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.grid--flexcells > .grid-item {
  display: flex;
}

.grid--top {
  align-items: flex-start;
}

.grid--bottom {
  align-items: flex-end;
}

.grid--center {
  align-items: center;
}

.grid--justify-center {
  justify-content: center;
}

.grid-item--top {
  align-self: flex-start;
}

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

.grid-item--center {
  align-self: center;
}

.grid-item--auto-size {
  flex: none;
}

.grid--fit > .grid-item {
  flex: 1;
}

.grid--full > .grid-item {
  flex: 0 0 100%;
}

.grid--1of2 > .grid-item {
  flex: 0 0 50%;
}

.grid--1of3 > .grid-item {
  flex: 0 0 33.3333%;
}

.grid--1of4 > .grid-item {
  flex: 0 0 25%;
}

/**
 * Media query mixin.
 */
/**/
body {
  font-family: "Noto Sans Mono", monospace;
  color: #FFFFFF;
  background-color: #000000;
  -webkit-font-smoothing: antialiased;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/**
 * Icons
 */
/**
 * Here goes all icon CSS.
 * For example fontastic.me font css styles.
 */
/* Webfont app */
@font-face {
  font-family: "dq";
  src: url("fonts/dq.eot");
  src: url("fonts/dq.eot?vfdmhe#iefix") format("embedded-opentype"), url("fonts/dq.woff2?vfdmhe") format("woff2"), url("fonts/dq.woff?vfdmhe") format("woff"), url("fonts/dq.ttf?vfdmhe") format("truetype"), url("fonts/dq.svg?vfdmhe#dq") format("svg");
  font-style: normal;
  font-weight: 400;
}
.icon {
  display: inline-block;
  font-family: "dq" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  vertical-align: -0.125em;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-angle-down::before {
  content: "\ea01";
}

.icon-angle-left::before {
  content: "\ea02";
}

.icon-angle-right::before {
  content: "\ea03";
}

.icon-angle-up::before {
  content: "\ea04";
}

.icon-arrow-down::before {
  content: "\ea05";
}

.icon-arrow-left::before {
  content: "\ea06";
}

.icon-arrow-long-down::before {
  content: "\ea07";
}

.icon-arrow-long-left::before {
  content: "\ea08";
}

.icon-arrow-long-right::before {
  content: "\ea09";
}

.icon-arrow-long-up::before {
  content: "\ea0a";
}

.icon-arrow-right::before {
  content: "\ea0b";
}

.icon-arrow-up::before {
  content: "\ea0c";
}

.icon-behance::before {
  content: "\ea0d";
}

.icon-dribbble::before {
  content: "\ea0e";
}

.icon-facebook::before {
  content: "\ea0f";
}

.icon-google::before {
  content: "\ea10";
}

.icon-instagram::before {
  content: "\ea11";
}

.icon-linkedin::before {
  content: "\ea12";
}

.icon-minus::before {
  content: "\ea13";
}

.icon-paypal::before {
  content: "\ea14";
}

.icon-pinterest::before {
  content: "\ea15";
}

.icon-plus::before {
  content: "\ea16";
}

.icon-rss::before {
  content: "\ea17";
}

.icon-twitter::before {
  content: "\ea18";
}

.icon-youtube::before {
  content: "\ea19";
}

/**
 * Typography
 */
a {
  margin: 0;
  color: #ffffff;
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  text-decoration: underline 1px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  a {
    font-size: 0.95rem;
  }
}

p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  p {
    font-size: 0.95rem;
  }
}

h1 {
  font-family: "Noto Sans Mono", monospace;
  font-size: 3.125rem;
  line-height: 1.4;
  margin: 0 0 2rem 0;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8125rem;
  }
}
@media (max-width: 820px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 2.34375rem;
  }
}

h2 {
  font-family: "Noto Sans Mono", monospace;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0.75rem 0 0.75rem;
}

h3 {
  font-family: "Noto Sans Mono", monospace;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0.75rem 0 1.25rem;
}

h4 {
  font-family: "Noto Sans Mono", monospace;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 1rem 0 0.75rem;
}

h5 {
  font-family: "Noto Sans Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 1rem 0 0.75rem;
}

blockquote {
  font-size: 0.75rem;
  margin: 1.5rem 0;
  padding: 0 0 0 3rem;
  position: relative;
}

blockquote:before {
  content: '"';
  font-size: 2.8125rem;
  position: absolute;
  top: 0;
  left: 0;
  vertical-align: middle;
  line-height: 1.5;
}

blockquote p {
  font-size: 2.8125rem;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 820px) {
  blockquote p {
    font-size: 2.1875rem;
  }
}
@media (max-width: 480px) {
  blockquote p {
    font-size: 1.875rem;
  }
}

blockquote p b {
  font-size: 0.75rem;
  font-style: normal;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, p a, label a, blockquote a, small a, li a, q a {
  color: inherit;
  font-size: inherit;
}

/**
 * Lists
 */
li {
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
}

/**
 * Selection
 */
::-moz-selection,
p::-moz-selection {
  color: rgba(0, 0, 0, 0.99);
  background: rgba(255, 255, 255, 0.99);
}

body.light-mode ::-moz-selection,
body.light-mode p::-moz-selection {
  color: rgba(255, 255, 255, 0.99);
  background: rgba(0, 0, 0, 0.99);
}

::selection,
p::selection {
  color: rgba(0, 0, 0, 0.99);
  background: rgba(255, 255, 255, 0.99);
}

body.light-mode ::selection,
body.light-mode p::selection {
  color: rgba(255, 255, 255, 0.99);
  background: rgba(0, 0, 0, 0.99);
}

::-webkit-selection,
p::-webkit-selection {
  color: rgba(0, 0, 0, 0.99);
  background: rgba(255, 255, 255, 0.99);
}

body.light-mode ::-webkit-selection,
body.light-mode p::-webkit-selection {
  color: rgba(255, 255, 255, 0.99);
  background: rgba(0, 0, 0, 0.99);
}

/**
 * Wrappers
 */
.wrapper, .mini-wrapper, .inner-wrapper, .content-wrapper, .mid-wrapper {
  max-width: 1800px;
  width: 92%;
  margin: 0 auto;
}

.mid-wrapper {
  max-width: 1300px;
}

.content-wrapper {
  max-width: 1100px;
}

.inner-wrapper {
  max-width: 900px;
}

.mini-wrapper {
  max-width: 800px;
}

/**
 * Components
 */
/**
 * Archive
 */
.archive .title-wrapper,
.single .title-wrapper {
  position: absolute;
  left: -0.5rem;
  top: 1.5rem;
}

.news-list,
.grid-list,
.category-list,
.project-list {
  list-style: none;
  margin: 0 0 2rem 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}

.news-post,
.news-item,
.grid-item,
.category-post,
.category-item,
.project-item {
  width: 49.99%;
  margin: 0;
  overflow: hidden;
  float: left;
  display: inline-block;
}
@media (max-width: 1400px) {
  .news-post,
.news-item,
.grid-item,
.category-post,
.category-item,
.project-item {
    width: 100%;
  }
}
.news-post .inner,
.news-item .inner,
.grid-item .inner,
.category-post .inner,
.category-item .inner,
.project-item .inner {
  padding: 2rem 2rem;
  background-color: #F3F3F3;
}
@media (max-width: 820px) {
  .news-post .inner,
.news-item .inner,
.grid-item .inner,
.category-post .inner,
.category-item .inner,
.project-item .inner {
    padding: 1.5rem 1.5rem;
  }
}
.news-post__image,
.news-item__image,
.grid-item__image,
.category-post__image,
.category-item__image,
.project-item__image {
  width: 100%;
  height: 100%;
  padding: 2.8125rem;
  text-decoration: none;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.news-post__image:after,
.news-item__image:after,
.grid-item__image:after,
.category-post__image:after,
.category-item__image:after,
.project-item__image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
}
@media (max-width: 820px) {
  .news-post__image,
.news-item__image,
.grid-item__image,
.category-post__image,
.category-item__image,
.project-item__image {
    padding: 2.1875rem;
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  .news-post__image,
.news-item__image,
.grid-item__image,
.category-post__image,
.category-item__image,
.project-item__image {
    padding: 1.5625rem;
    min-height: 350px;
  }
}
.news-post__image .award,
.news-item__image .award,
.grid-item__image .award,
.category-post__image .award,
.category-item__image .award,
.project-item__image .award {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  max-width: 9.375rem;
  z-index: 1;
}
@media (max-width: 480px) {
  .news-post__image .award,
.news-item__image .award,
.grid-item__image .award,
.category-post__image .award,
.category-item__image .award,
.project-item__image .award {
    max-width: 6.25rem;
  }
}
.news-post__image .award p,
.news-item__image .award p,
.grid-item__image .award p,
.category-post__image .award p,
.category-item__image .award p,
.project-item__image .award p {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1.5px;
}
.news-post__image .content,
.news-item__image .content,
.grid-item__image .content,
.category-post__image .content,
.category-item__image .content,
.project-item__image .content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.news-post__title,
.news-item__title,
.grid-item__title,
.category-post__title,
.category-item__title,
.project-item__title {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 2px;
  position: relative;
  font-weight: 400;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 820px) {
  .news-post__title,
.news-item__title,
.grid-item__title,
.category-post__title,
.category-item__title,
.project-item__title {
    font-size: 1.5625rem;
    padding-right: calc(83px + 1.5rem);
  }
}
@media (max-width: 480px) {
  .news-post__title,
.news-item__title,
.grid-item__title,
.category-post__title,
.category-item__title,
.project-item__title {
    font-size: 1.40625rem;
  }
}
.news-post__title:after,
.news-item__title:after,
.grid-item__title:after,
.category-post__title:after,
.category-item__title:after,
.project-item__title:after {
  content: "\ea09";
  font-family: "dq";
  margin-left: 2.5rem;
  vertical-align: middle;
  line-height: 1;
  font-size: 5rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 820px) {
  .news-post__title:after,
.news-item__title:after,
.grid-item__title:after,
.category-post__title:after,
.category-item__title:after,
.project-item__title:after {
    right: 0;
  }
}
@media (max-width: 480px) {
  .news-post__title:after,
.news-item__title:after,
.grid-item__title:after,
.category-post__title:after,
.category-item__title:after,
.project-item__title:after {
    font-size: 4.375rem;
  }
}
.news-post:hover .news-post__title,
.news-post:hover .news-item__title,
.news-post:hover .grid-item__title,
.news-post:hover .category-post__title,
.news-post:hover .category-item__title,
.news-post:hover .project-item__title,
.news-item:hover .news-post__title,
.news-item:hover .news-item__title,
.news-item:hover .grid-item__title,
.news-item:hover .category-post__title,
.news-item:hover .category-item__title,
.news-item:hover .project-item__title,
.grid-item:hover .news-post__title,
.grid-item:hover .news-item__title,
.grid-item:hover .grid-item__title,
.grid-item:hover .category-post__title,
.grid-item:hover .category-item__title,
.grid-item:hover .project-item__title,
.category-post:hover .news-post__title,
.category-post:hover .news-item__title,
.category-post:hover .grid-item__title,
.category-post:hover .category-post__title,
.category-post:hover .category-item__title,
.category-post:hover .project-item__title,
.category-item:hover .news-post__title,
.category-item:hover .news-item__title,
.category-item:hover .grid-item__title,
.category-item:hover .category-post__title,
.category-item:hover .category-item__title,
.category-item:hover .project-item__title,
.project-item:hover .news-post__title,
.project-item:hover .news-item__title,
.project-item:hover .grid-item__title,
.project-item:hover .category-post__title,
.project-item:hover .category-item__title,
.project-item:hover .project-item__title {
  transform: translate(0.25rem, 0);
}
.news-post:hover .news-post__title:after,
.news-post:hover .news-item__title:after,
.news-post:hover .grid-item__title:after,
.news-post:hover .category-post__title:after,
.news-post:hover .category-item__title:after,
.news-post:hover .project-item__title:after,
.news-item:hover .news-post__title:after,
.news-item:hover .news-item__title:after,
.news-item:hover .grid-item__title:after,
.news-item:hover .category-post__title:after,
.news-item:hover .category-item__title:after,
.news-item:hover .project-item__title:after,
.grid-item:hover .news-post__title:after,
.grid-item:hover .news-item__title:after,
.grid-item:hover .grid-item__title:after,
.grid-item:hover .category-post__title:after,
.grid-item:hover .category-item__title:after,
.grid-item:hover .project-item__title:after,
.category-post:hover .news-post__title:after,
.category-post:hover .news-item__title:after,
.category-post:hover .grid-item__title:after,
.category-post:hover .category-post__title:after,
.category-post:hover .category-item__title:after,
.category-post:hover .project-item__title:after,
.category-item:hover .news-post__title:after,
.category-item:hover .news-item__title:after,
.category-item:hover .grid-item__title:after,
.category-item:hover .category-post__title:after,
.category-item:hover .category-item__title:after,
.category-item:hover .project-item__title:after,
.project-item:hover .news-post__title:after,
.project-item:hover .news-item__title:after,
.project-item:hover .grid-item__title:after,
.project-item:hover .category-post__title:after,
.project-item:hover .category-item__title:after,
.project-item:hover .project-item__title:after {
  transform: translate(1rem, -50%);
}
@media (max-width: 820px) {
  .news-post:hover .news-post__title:after,
.news-post:hover .news-item__title:after,
.news-post:hover .grid-item__title:after,
.news-post:hover .category-post__title:after,
.news-post:hover .category-item__title:after,
.news-post:hover .project-item__title:after,
.news-item:hover .news-post__title:after,
.news-item:hover .news-item__title:after,
.news-item:hover .grid-item__title:after,
.news-item:hover .category-post__title:after,
.news-item:hover .category-item__title:after,
.news-item:hover .project-item__title:after,
.grid-item:hover .news-post__title:after,
.grid-item:hover .news-item__title:after,
.grid-item:hover .grid-item__title:after,
.grid-item:hover .category-post__title:after,
.grid-item:hover .category-item__title:after,
.grid-item:hover .project-item__title:after,
.category-post:hover .news-post__title:after,
.category-post:hover .news-item__title:after,
.category-post:hover .grid-item__title:after,
.category-post:hover .category-post__title:after,
.category-post:hover .category-item__title:after,
.category-post:hover .project-item__title:after,
.category-item:hover .news-post__title:after,
.category-item:hover .news-item__title:after,
.category-item:hover .grid-item__title:after,
.category-item:hover .category-post__title:after,
.category-item:hover .category-item__title:after,
.category-item:hover .project-item__title:after,
.project-item:hover .news-post__title:after,
.project-item:hover .news-item__title:after,
.project-item:hover .grid-item__title:after,
.project-item:hover .category-post__title:after,
.project-item:hover .category-item__title:after,
.project-item:hover .project-item__title:after {
    transform: translate(0, -50%);
  }
}

.archive-header {
  width: 100%;
  text-align: center;
  margin: 2rem 0 0;
}

/* - filter */
.filter-tabs {
  margin: 0 0 3.125rem 0;
  list-style: none;
  padding: 0;
}

.filter-tabs li {
  display: inline-block;
  color: #FFFFFF;
  background-color: transparent;
  cursor: pointer;
  margin: 0.5625rem 0.1875rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 480px) {
  .filter-tabs li {
    margin: 0.375rem 0.125rem;
  }
}

.filter-tabs li.selected a,
.filter-tabs li a:hover {
  background-color: #ffffff;
  color: #000000;
}

/**
 * Filter
 */
.filters {
  text-align: center;
}

.filter-menu {
  margin: 0 1rem;
  width: auto;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.filter-menu .item-title {
  font-size: 0.7rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 0 0.5rem 0 0;
}

.filter-menu .item-group {
  padding: 0;
  margin: 0;
  display: inline-block;
  min-width: 100px;
}

.filter-menu .item-group .item.is-checked,
.filter-menu .item-group .item:hover {
  color: #000000;
}

.filter-menu .default {
  width: 100%;
  display: inline-block;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 400;
  padding: 0.3rem 0.2rem;
  border-bottom: solid 1px #ffffff;
}

.filter-menu .default:after {
  content: "\ea01";
  font-family: "dq";
  vertical-align: middle;
  margin: 0 0 0 0.3125rem;
  float: right;
}

.filter-menu .default.open:after {
  content: "\ea04";
}

.filter-menu .list {
  display: none;
  background: #ffffff;
  position: absolute;
  top: 1.6rem;
  z-index: 9;
  padding: 0.2rem 0;
  margin: 0;
  width: 100%;
  max-width: 100px;
}

.filter-menu .list .item {
  width: 100%;
  list-style: none;
  font-size: 0.8rem;
  padding: 0.3rem 0.4rem;
}

.filter-grid .filter-grid-item {
  width: 25%;
  padding: 1rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
}

.filter-grid .filter-grid-item img {
  width: 100%;
}

.filter-grid .filter-grid-item .hidden {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: #5cb740;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.filter-grid .filter-grid-item .hidden p {
  font-size: 0.85rem;
  margin: 0;
}

.filter-grid .filter-grid-item:hover .hidden {
  display: block;
}

/**
 * Footer
 */
.footer {
  padding: 5rem 0 4rem;
  font-size: 1rem;
}
.footer > .wrapper, .footer > .mid-wrapper, .footer > .content-wrapper, .footer > .inner-wrapper, .footer > .mini-wrapper {
  position: relative;
}
.footer .footer-cols {
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
}

/* - back to top */
#back-to-top {
  color: #FFFFFF;
  z-index: 1;
  font-size: 5rem;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}
#back-to-top:before {
  vertical-align: middle;
  line-height: 1;
  transform: translate(0, 0);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#back-to-top:hover:before {
  transform: translate(0, -1rem);
}

/* - sub footer */
.sub-footer {
  margin-top: 9.375rem;
  padding: 1.5rem 0 0 0;
  border-top: 1px solid;
  border-color: rgba(0, 0, 0, 0.25);
}
.sub-footer ul {
  margin: 0;
  padding: 0;
}
.sub-footer ul li {
  margin-right: 1.5rem;
  float: left;
}
.sub-footer .copyright {
  float: left;
  display: inline-block;
}
.sub-footer .copyright p {
  margin: 0;
}

/**
 * Gravity forms
 */
.gform_wrapper,
form.nsu-form {
  padding: 0;
  margin: 1.5rem 0 !important;
  font-family: "Noto Sans Mono", monospace;
}

.gform_wrapper .gform_heading {
  margin: 0 0 2rem !important;
}

.gform_wrapper .gform_title {
  font-size: 1.75rem !important;
  line-height: 1.2;
  margin: 0 0 1rem !important;
}

.gform_wrapper .gform_description {
  width: 100% !important;
  margin: 0 0 1.5rem !important;
}

.gform_wrapper .gform_body li.gfield {
  padding: 0 !important;
  margin-top: 25px;
}

.gform_wrapper .gform_body li.gfield.nolabel label {
  display: none !important;
}

.gform_wrapper .gform_body li.gfield label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 10px !important;
}

.gform_wrapper .gform_body li.gfield input,
.gform_wrapper .gform_body li.gfield textarea,
form.nsu-form input {
  padding: 0.75em 1.1rem 0.55em !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0 !important;
  outline: none;
  color: #000000;
  border: 1px solid;
  border-color: #000000;
  font-size: 1.15rem !important;
  font-family: "Noto Sans Mono", monospace;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .gform_wrapper .gform_body li.gfield input,
.gform_wrapper .gform_body li.gfield textarea,
form.nsu-form input {
    width: 100%;
  }
}

.gform_wrapper .gform_body li.gfield textarea {
  width: 100%;
}

.dark .gform_wrapper .gform_body li.gfield input,
.dark .gform_wrapper .gform_body li.gfield textarea {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.gform_wrapper .gform_body li.gfield textarea {
  border: 2px solid;
  padding: 0.5rem 0.8rem !important;
}

.gform_wrapper .gform_footer {
  padding: 0 !important;
  margin: 2.5rem 0 0 0 !important;
}

.gform_wrapper .gform_footer .gform_button,
form.nsu-form input[type=submit] {
  font-family: "Noto Sans Mono", monospace;
  margin: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #ffffff;
  background-color: #000000;
  border: 1px solid;
  border-color: #000000;
  border-radius: 0;
  padding: 0.75em 2rem 0.6em !important;
  outline: none;
  font-weight: 600;
  font-size: 1.15rem !important;
}
.gform_wrapper .gform_footer .gform_button:hover,
form.nsu-form input[type=submit]:hover {
  background-color: #000000;
  color: #ffffff;
}

form.nsu-form input[type=submit] {
  padding: 0.75em 2rem 0.55em !important;
}

.dark .gform_wrapper .gform_footer .gform_button {
  border-color: inherit;
  color: inherit;
}

.gform_wrapper div.validation_error {
  color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
  padding: 1rem 1rem !important;
}

.dark .gform_wrapper div.validation_error {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  border: none !important;
  max-width: 100% !important;
}

body .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper li.gfield_error textarea {
  border-color: #d9d9d9 !important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.dark .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.dark .gform_wrapper li.gfield_error textarea {
  border-color: #ffffff !important;
}

.gform_wrapper .validation_message {
  color: #d9d9d9 !important;
  font-style: italic;
  padding: 0 !important;
}

.dark .gform_wrapper .validation_message {
  color: #ffffff !important;
}

#gform_confirmation_wrapper_1 {
  border-top: 1px solid #d9d9d9;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

#gform_confirmation_message_1 {
  font-size: 0.925rem;
}

body img.gform_ajax_spinner {
  display: none !important;
}

::-webkit-input-placeholder {
  color: inherit;
}

:-moz-placeholder {
  opacity: 1;
  color: inherit;
}

/* Firefox 18- */
::-moz-placeholder {
  opacity: 1;
  color: inherit;
}

/* firefox 19+ */
:-ms-input-placeholder {
  color: inherit;
}

/* ie */
input:-moz-placeholder {
  color: inherit;
}

.gform_wrapper ::-webkit-input-placeholder {
  color: #333333;
}

.gform_wrapper ::-moz-placeholder {
  color: #333333;
}

.gform_wrapper :-ms-input-placeholder {
  color: #333333;
}

.gform_wrapper :-moz-placeholder {
  color: #333333;
}

/* footer */
/**
 * General
 */
.round {
  border-radius: 50%;
}

.gradient {
  position: relative;
}
.gradient:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
  opacity: 0.75;
}

.centered {
  text-align: center;
}

.fade-in {
  opacity: 0;
}

/**
 * Button
 */
.button, .button--small {
  font-weight: 400;
  padding: 1.125rem 3.125rem;
  border: 1px solid;
  border-radius: 81px;
  border-color: #ffffff;
  margin: 0.75rem 1.25rem 0.75rem 0;
  outline: none;
  position: relative;
  color: #ffffff;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .button, .button--small {
    font-size: 0.875rem;
    padding: 0rem 0rem;
    margin: 0;
  }
}
@media (max-width: 820px) {
  .button, .button--small {
    font-size: 0.875rem;
    padding: 0.875rem 2.1875rem;
  }
}
.button:before, .button--small:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  opacity: 0;
  border-radius: 81px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.button:hover:before, .button--small:hover:before {
  opacity: 1;
}
.button:hover, .button--small:hover {
  border-color: #ffffff;
  color: #000000;
}
.button--small {
  padding: 10px 40px;
  margin: 0.5rem 0.5rem 0.5rem 0;
  font-size: 0.875rem;
}

.read-more {
  display: inline-block;
  font-weight: 400;
  margin: 0.75rem 1.25rem 0.75rem 0;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.125rem;
  position: relative;
  padding-right: calc(3rem + 50px);
}
.read-more:after {
  content: "\ea09";
  font-family: "dq";
  margin-left: 1rem;
  vertical-align: middle;
  line-height: 1;
  font-size: 3rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(1rem, -50%);
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.read-more:hover:after {
  transform: translate(2rem, -50%);
  color: #ffffff;
}
@media (max-width: 820px) {
  .read-more:hover:after {
    transform: translate(1rem, -50%);
  }
}

/**
 * Flexbox
 */
.flex {
  display: flex;
}
@media (max-width: 768px) {
  .flex {
    flex-wrap: wrap;
  }
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.align-center {
  align-items: center;
}
.flex.justify-center {
  justify-content: center;
}
.flex.row-reverse {
  flex-direction: row-reverse;
}

/**
 * Table
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ccc;
  overflow-x: auto;
  margin: 2rem 0;
  width: 100%;
}

table tr {
  border-bottom: 1px solid #ccc;
}

table th {
  border-right: 1px solid #ccc;
  padding: 0.5rem 0.5rem;
  text-align: initial;
}

table tr td {
  padding: 0.5rem 0.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
  border-right: 1px solid #ccc;
}

/**
 * Pagination
 */
.pagination {
  width: 100%;
  float: left;
  margin: 3rem 0 3rem;
  text-align: center;
}

.pagination .page-numbers {
  font-size: 1rem;
  padding: 0.2rem;
  text-decoration: none;
  font-weight: 400;
  color: #000000;
}

.pagination .next {
  float: right;
}

.pagination .prev {
  float: left;
}

.pagination .current,
.pagination .page-numbers:hover {
  color: #3e9b36;
}

/**
 * Meta
 */
.meta-wrapper {
  margin: 0.5rem 0 1.5rem;
  border: 1px solid;
  border-color: #000000;
  color: #000000;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}

.single .meta-wrapper {
  margin: 0 0 2rem;
}

.meta {
  margin: 0;
}

/**
 * Breadcrumbs
 */
.breadcrumbs,
.content-wrapper .breadcrumbs {
  margin: 1rem 0 0 0;
  color: #d9d9d9;
  line-height: 1.8;
  font-size: 0.825rem;
}
@media (max-width: 768px) {
  .breadcrumbs,
.content-wrapper .breadcrumbs {
    margin: 0.75rem 0 0 0;
  }
}
.breadcrumbs span,
.content-wrapper .breadcrumbs span {
  font-size: 0.825rem;
}
.breadcrumbs a,
.content-wrapper .breadcrumbs a {
  color: #d9d9d9;
}
.breadcrumbs a:hover,
.content-wrapper .breadcrumbs a:hover {
  color: #000000;
}

/**
 * Images
 */
.alignnone {
  margin: 1rem 0 1.5rem 0;
}

.alignleft {
  margin: 0 1.5rem 1.5rem 0;
}

.alignright {
  margin: 0 0 1.5rem 1.5rem;
}

.wp-caption {
  max-width: 100% !important;
  font-style: italic;
}

.size-full {
  max-width: 100% !important;
}

.wp-caption-text {
  margin: 0.5rem 0 1.5rem 0;
  color: #636363;
}

/**
 * GDPR Cookie notice
 */
#cookie-law-info-bar {
  box-shadow: 0 -1px 10px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 985px) {
  #cookie-law-info-bar .cli-style-v2 .cli-bar-btn_container {
    margin-top: 1rem;
  }
}
#cookie-law-info-bar .cli-bar-btn_container a {
  font-size: inherit;
  font-weight: inherit;
  padding: 0.75rem 1.5rem;
}
@media (max-width: 480px) {
  #cookie-law-info-bar .cli-bar-btn_container a {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1rem 1.5rem;
  }
}
#cookie-law-info-bar .cli-style-v2 {
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Header
 */
.header {
  padding: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 99;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
.header > .wrapper, .header > .mid-wrapper, .header > .content-wrapper, .header > .inner-wrapper, .header > .mini-wrapper {
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .header > .wrapper, .header > .mid-wrapper, .header > .content-wrapper, .header > .inner-wrapper, .header > .mini-wrapper {
    padding: 0rem 0 0.5rem;
  }
}
.header .wrapper.flex, .header .flex.mid-wrapper, .header .flex.content-wrapper, .header .flex.inner-wrapper, .header .flex.mini-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header .wrapper.flex:after, .header .flex.mid-wrapper:after, .header .flex.content-wrapper:after, .header .flex.inner-wrapper:after, .header .flex.mini-wrapper:after {
  content: none;
}
.header .header--right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.header .header--right > *:nth-last-child(1) {
  margin-right: 0;
}
.header .header--left {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.logotype {
  display: block;
  float: left;
  position: relative;
  opacity: 1;
}
.logotype img {
  width: 8.75rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 820px) {
  .logotype img {
    width: 8.125rem;
  }
}
@media (max-width: 480px) {
  .logotype img {
    width: 7.5rem;
  }
}

body.home .logotype img {
  width: 10.625rem;
}
@media (max-width: 1024px) {
  body.home .logotype img {
    width: 9.375rem;
  }
}
@media (max-width: 820px) {
  body.home .logotype img {
    width: 8.125rem;
  }
}
@media (max-width: 480px) {
  body.home .logotype img {
    width: 7.5rem;
  }
}

.header.sticky .logotype img,
.home .header.sticky .logotype img {
  width: 7.5rem;
}

header.menu-open .logotype {
  opacity: 0;
}

/* - transparent header */
.header.transparent {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9997;
  box-shadow: none;
  background-color: transparent;
}

.header.transparent.sticky {
  background-color: transparent;
}

/**
 * Menu main
 */
.menu-main {
  display: inline-block;
  float: right;
  position: fixed;
  background-color: #000000;
  color: #FFFFFF;
  top: 0;
  right: 0;
  z-index: 98;
  transition: all 0.5s;
  height: 100%;
  width: 0;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.menu-main.open {
  width: 100%;
}
.menu-main > .wrapper, .menu-main > .mid-wrapper, .menu-main > .content-wrapper, .menu-main > .inner-wrapper, .menu-main > .mini-wrapper {
  height: 100%;
}

.menu-main-inner {
  display: flex;
  align-items: flex-end;
  float: left;
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 5rem 0;
  background-color: #000000;
}

.menu-main-list {
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* sub-menu */
  /* sub-menu / no-click */
}
.menu-main-list ul {
  padding: 0;
}
.menu-main-list li {
  display: block;
  overflow: hidden;
  position: relative;
}
.menu-main-list li a {
  display: inline-block;
  padding: 0.625rem 3rem 0.625rem 0;
  color: #FFFFFF;
  font-size: 3.125rem;
  line-height: 1.3;
  font-family: "Noto Sans Mono", monospace;
  text-decoration: none;
  position: relative;
}
@media (max-width: 1024px) {
  .menu-main-list li a {
    font-size: 2.8125rem;
  }
}
@media (max-width: 820px) {
  .menu-main-list li a {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .menu-main-list li a {
    font-size: 2.34375rem;
  }
}
.menu-main-list li.current-menu-item > a {
  color: #FFFFFF;
  text-decoration: underline 2px;
}
.menu-main-list > li {
  padding: 0.25rem 0;
}
.menu-main-list > li > a .menu-item-title {
  font-size: 1rem;
  display: inline-block;
}
.menu-main-list > li > a .menu-item-description {
  display: block;
  width: 100%;
  font-weight: 300;
  font-size: 0.75rem;
}
.menu-main-list > li:not(.no-click) a:after {
  content: "\ea09";
  font-family: "dq";
  vertical-align: middle;
  line-height: 1;
  font-size: 6.25rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(3rem, -50%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 480px) {
  .menu-main-list > li:not(.no-click) a:after {
    display: none;
  }
}
.menu-main-list > li:not(.no-click) a:hover:after {
  opacity: 1;
}
.menu-main-list .sub-menu {
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-main-list .sub-menu li {
  border-bottom: none;
  padding: 0;
}
.menu-main-list .sub-menu li a {
  padding: 0.2rem 0;
  font-size: 1.225rem;
}
.menu-main-list > li.current-menu-item > a .menu-item-title,
.menu-main-list .sub-menu li.current-menu-item > a {
  color: #ffffff;
}
.menu-main-list > li.current-menu-item > a .menu-item-title:after,
.menu-main-list .sub-menu li.current-menu-item > a:after {
  display: block;
}
.menu-main-list li.menu-item-has-children.no-click .sub-menu {
  height: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-main-list li.menu-item-has-children.no-click.open .sub-menu {
  height: 100%;
}
.menu-main-list li.menu-item-has-children.no-click > a:after {
  content: "\ea01";
  font-family: "dq";
  vertical-align: middle;
  line-height: 1;
  font-size: 2rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(2rem, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-main-list li.menu-item-has-children.no-click.open > a:after {
  transform: translate(2rem, -50%) rotate(180deg);
}

/**
 * Menu button
 */
.menu__button {
  position: relative;
  width: 70px;
  height: 48px;
  z-index: 99;
}

.checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 70px;
  height: 48px;
  opacity: 0;
}

.checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}

.checkbox-toggle:checked + .hamburger > div:before,
.checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

.checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}

.checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}

.checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}

.checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

.hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 70px;
  height: 48px;
  padding: 1em 1em;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  backface-visibility: hidden;
}

.hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
}

.hamburger > div:before,
.hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}

.hamburger > div:after {
  top: 12px;
}

/**
 * Hero
 */
.no-hero {
  padding: 172px 0 0 0;
}

body.home .no-hero {
  padding: 202px 0 0 0;
}

.hero {
  position: relative;
  padding: 0;
}
.hero .wrapper, .hero .mid-wrapper, .hero .content-wrapper, .hero .inner-wrapper, .hero .mini-wrapper {
  position: relative;
}
.hero.gradient:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 75%;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
  opacity: 1;
}

.hero .caption-wrapper > .wrapper, .hero .caption-wrapper > .mid-wrapper, .hero .caption-wrapper > .content-wrapper, .hero .caption-wrapper > .inner-wrapper, .hero .caption-wrapper > .mini-wrapper {
  display: flex;
  align-items: flex-end;
}

/* hero / height */
.hero .img,
.hero {
  height: 600px;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 820px) {
  .hero .img,
.hero {
    height: 500px;
  }
}

.hero.height-increased,
.hero.height-increased .img {
  height: 800px;
}
@media (max-width: 820px) {
  .hero.height-increased,
.hero.height-increased .img {
    height: 700px;
  }
}
@media (max-width: 820px) {
  .hero.height-increased,
.hero.height-increased .img {
    height: 600px;
  }
}

/* - caption */
.hero .caption-wrapper {
  left: 0;
  right: 0;
  bottom: 3rem;
  position: absolute;
  width: 100%;
  z-index: 2;
  color: #ffffff;
}
.hero .caption {
  width: 100%;
}
.hero .caption > *:nth-child(1) {
  margin-top: 0;
}
.hero .caption > *:nth-last-child(1),
.hero .caption > *:nth-last-child(1) a {
  margin-bottom: 0;
}

body.single-projects .hero .caption.reverse {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
@media (max-width: 820px) {
  body.single-projects .hero .caption.reverse {
    flex-direction: row;
  }
}
body.single-projects .hero .award {
  max-width: 9.375rem;
  z-index: 1;
  float: right;
}
@media (max-width: 820px) {
  body.single-projects .hero .award {
    float: none;
    max-width: 6.25rem;
  }
}
body.single-projects .hero .award p {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1.5px;
}

/* - slider */
.hero.slider ul li {
  outline: none;
}

.hero.slider .slide {
  position: relative;
}

.hero.slider .caption-wrapper {
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  z-index: 2;
  color: #ffffff;
}

.hero.slider .caption {
  max-width: 800px;
}

.hero.slider .caption > *:nth-child(1) {
  margin-top: 0;
}

.hero.slider .caption > *:nth-last-child(1),
.hero.slider .caption > *:nth-last-child(1) a {
  margin-bottom: 0;
}

.hero.slider .slick-prev,
.hero.slider .slick-next {
  display: none !important;
}

/* hero / slider / video */
.hero.slider .videowrap {
  width: 100%;
  height: auto;
  position: relative;
  height: 400px;
}

.home .hero.slider .videowrap {
  height: 91.5vh;
}
@media (max-width: 768px) {
  .home .hero.slider .videowrap {
    height: 90vh;
  }
}
@media (max-width: 480px) {
  .home .hero.slider .videowrap {
    height: 85vh;
  }
}

.hero.slider .videowrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* hero / video */
.hero.video video {
  display: block;
  width: auto;
  max-height: none;
  max-width: none;
  min-height: 100%;
  min-width: 100%;
}

.hero .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: none;
}

.hero .video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.hero .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.hero .slide.video {
  float: left;
}

/* icon arrow down */
.caption.arrow-down {
  width: calc(100% - 100px);
}

.hero .icon-arrow-long-down {
  color: #FFFFFF;
  z-index: 1;
  font-size: 5rem;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}
@media (max-width: 480px) {
  .hero .icon-arrow-long-down {
    display: none;
  }
}

.bounce {
  -webkit-animation: bounce 2s;
  animation: bounce 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  0%, 25%, 50%, 75%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 25%, 50%, 75%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/**
 * Single
 */
section.single {
  padding: 0;
}

.single-section {
  float: left;
  margin: 0;
  width: 47%;
}
@media (max-width: 1024px) {
  .single-section {
    width: 100%;
  }
}

.single-section .image {
  float: left;
  width: 100%;
}

.single-section .image img {
  width: 100%;
}

.single-section .content {
  float: left;
  width: 100%;
  margin: -60px 10% 0;
  padding: 2rem 3rem;
}
@media (max-width: 1024px) {
  .single-section .content {
    margin: -60px 5% 0;
    padding: 1.5rem 3rem;
  }
}

.single-section .post-title {
  margin: 1rem 0 0.5rem;
}

.single-section .meta {
  margin: 0 0 2rem;
}

.single-section .meta p {
  font-size: 0.875rem;
  margin: 0;
  display: inline-block;
}

.single-section .meta .date:after {
  content: "|";
  margin: 0 0.5rem;
}

.single .section-header {
  float: left;
  width: 100%;
  margin: 0 0 2rem;
}
@media (max-width: 1024px) {
  .single .section-header {
    float: left;
    width: 100%;
    margin: 4rem 0 2rem;
  }
}

.sidebar {
  width: 50%;
  float: right;
}
@media (max-width: 1024px) {
  .sidebar {
    width: 100%;
  }
}

.sidebar .grid-wrapper {
  float: left;
  width: 100%;
}

.sidebar .grid-wrapper .grid-item {
  width: 48%;
  margin: 0 4% 2rem 0;
  height: auto;
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  .sidebar .grid-wrapper .grid-item {
    margin: 0 4% 2rem 0;
    width: 48%;
  }
}
.sidebar .grid-wrapper .grid-item:nth-child(3n+3) {
  margin: 0 4% 2rem 0;
}
.sidebar .grid-wrapper .grid-item:nth-child(2n+2) {
  margin: 0 0 2rem 0;
}
@media (max-width: 1024px) {
  .sidebar .grid-wrapper .grid-item:nth-child(2n+2) {
    float: right;
  }
}

/**
 * Slider
 */
.slick-slider {
  padding: 0;
  margin: 0;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-next {
  left: auto;
  right: 0;
}

.slick-prev:before,
.slick-next:before {
  content: "\ea02";
  font-family: "dq";
  text-transform: none;
  font-size: 40px;
  line-height: 1;
  color: #d9d9d9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slick-next:before {
  content: "\ea03";
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #000000;
}

.slick-slide img {
  width: 100%;
  position: relative;
}

/**
 * Social media
 */
.social-media {
  line-height: 1.6;
  margin: 1rem 0;
}
.social-media__link {
  margin-right: 0.5rem;
  display: block;
}
.social-media__link:hover {
  opacity: 0.75;
}

/* - sections */
/**
 * Sections - General
 */
section {
  width: 100%;
  overflow: hidden;
  padding: 4rem 0 3rem;
}
@media (max-width: 820px) {
  section {
    padding: 3.5rem 0 3.5rem;
  }
}

.section-title {
  display: block;
  margin: 0 0 2.5rem;
  width: 100%;
}
.section-title.centered {
  text-align: center;
}

.padding-top--none {
  padding-top: 0;
}
.padding-top--less {
  padding-top: 2rem;
}
.padding-top--more {
  padding-top: 6rem;
}

.padding-bottom--none {
  padding-bottom: 0;
}
.padding-bottom--less {
  padding-bottom: 1.5rem;
}
.padding-bottom--more {
  padding-bottom: 5rem;
}

.margin-top--none {
  margin-top: 0;
}
.margin-top--less {
  margin-top: 2rem;
}
.margin-top--more {
  margin-top: 6rem;
}

.margin-bottom--none {
  margin-bottom: 0;
}
.margin-bottom--less {
  margin-bottom: 1.5rem;
}
.margin-bottom--more {
  margin-bottom: 5rem;
}

section.title {
  padding-bottom: 2.5rem;
}

.content-wrapper a {
  color: #000000;
}

/**
 * Columns
 */
.cols {
  width: 100%;
  overflow: hidden;
}

.col {
  float: left;
  margin-right: 4%;
  margin-bottom: 2rem;
  /* - col25 */
  /* - col33 */
  /* - col3366 */
  /* - col50 */
  /* - col6633 */
  /* - col100 */
}
.col.col25 {
  width: 22%;
}
@media (max-width: 1200px) {
  .col.col25 {
    width: 30.666%;
  }
}
@media (max-width: 1024px) {
  .col.col25 {
    width: 48%;
  }
}
@media (max-width: 480px) {
  .col.col25 {
    width: 100%;
    margin-right: 0;
  }
}
.col.col25:nth-of-type(4n+4) {
  margin-right: 0;
}
@media (max-width: 1200px) {
  .col.col25:nth-of-type(4n+4) {
    margin-right: 4%;
  }
}
.col.col25:nth-of-type(4n+5) {
  clear: both;
}
@media (max-width: 1200px) {
  .col.col25:nth-of-type(4n+5) {
    clear: none;
  }
}
@media (max-width: 1200px) {
  .col.col25:nth-of-type(4n+3) {
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .col.col25:nth-of-type(4n+4) {
    clear: both;
  }
}
@media (max-width: 1024px) {
  .col.col25:nth-of-type(4n+2) {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .col.col25:nth-of-type(4n+3) {
    clear: both;
  }
}
.col.col33 {
  width: 30.666%;
}
@media (max-width: 1024px) {
  .col.col33 {
    width: 48%;
  }
}
@media (max-width: 820px) {
  .col.col33 {
    width: 100%;
    margin-right: 0;
  }
}
.col.col33:nth-of-type(3n+3) {
  margin-right: 0;
}
.col.col33:nth-of-type(3n+4) {
  clear: both;
}
@media (max-width: 1024px) {
  .col.col33:nth-of-type(3n+2) {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .col.col33:nth-of-type(3n+3) {
    clear: both;
  }
}
.col.col3366 {
  width: 31.3333333333%;
}
@media (max-width: 1200px) {
  .col.col3366 {
    width: 48%;
  }
}
@media (max-width: 820px) {
  .col.col3366 {
    width: 100%;
    margin-right: 0;
  }
}
.col.col3366:nth-child(2n+2) {
  width: 64.6666666666%;
}
@media (max-width: 1200px) {
  .col.col3366:nth-child(2n+2) {
    width: 48%;
  }
}
@media (max-width: 820px) {
  .col.col3366:nth-child(2n+2) {
    width: 100%;
  }
}
.col.col3366:nth-of-type(2n+2) {
  margin-right: 0;
}
.col.col3366:nth-of-type(2n+3) {
  clear: both;
}
.col.col50 {
  width: 48%;
}
@media (max-width: 820px) {
  .col.col50 {
    width: 100%;
    margin-right: 0;
  }
}
.col.col50:nth-of-type(2n+2) {
  margin-right: 0;
}
.col.col50:nth-of-type(2n+3) {
  clear: both;
}
.col.col6633 {
  width: 31.3333333333%;
}
@media (max-width: 820px) {
  .col.col6633 {
    width: 100%;
    margin-right: 0;
  }
}
.col.col6633:nth-child(2n+1) {
  width: 64.6666666666%;
}
@media (max-width: 820px) {
  .col.col6633:nth-child(2n+1) {
    width: 100%;
  }
}
.col.col6633:nth-of-type(2n+2) {
  margin-right: 0;
}
.col.col6633:nth-of-type(2n+3) {
  clear: both;
}
.col.col100 {
  width: 100%;
  margin: 0 auto 1.5rem;
  float: none;
}
@media (max-width: 820px) {
  .col.col100 {
    margin: 0 auto 1rem;
  }
}

.col > *:nth-child(1) {
  margin-top: 0 !important;
}

.col.background {
  padding: 3.5rem 3rem;
}

/**
 * Section - Gallery
 */
section.gallery .image {
  margin-bottom: 2rem;
}

/**
 * Section - Image
 */
/**
 * Section - Image-grid
 */
section.image-grid .grid-item {
  width: 25%;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1024px) {
  section.image-grid .grid-item {
    width: 33%;
    flex-grow: 0;
  }
}
@media (max-width: 820px) {
  section.image-grid .grid-item {
    width: 50%;
  }
}
@media (max-width: 480px) {
  section.image-grid .grid-item {
    width: 100%;
  }
}
section.image-grid .grid-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

/**
 * Section - Logos
 */
section.logos .logo {
  text-decoration: none;
  max-width: 7.8125rem;
  max-height: 5rem;
  display: inline-block;
  margin: 0 3rem 2rem 0;
}
@media (max-width: 820px) {
  section.logos .logo {
    max-width: 6.875rem;
  }
}
@media (max-width: 480px) {
  section.logos .logo {
    max-width: 5.625rem;
  }
}
section.logos img {
  filter: grayscale(1);
}

/**
 * Section - Text
 */
section.text .wrapper.vert-centered, section.text .vert-centered.mid-wrapper, section.text .vert-centered.content-wrapper, section.text .vert-centered.inner-wrapper, section.text .vert-centered.mini-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/**
 * Section - Video
 */
section.video .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
section.video .embed-container iframe,
section.video .embed-container object,
section.video .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Print
 */
