/******************************************************************
Theme name: Toast Confituur
Author: GraphicsGrove

Stylesheet: Main Stylesheet


******************************************************************/
/*********************
IMPORTING PARTIALS
*********************/
/******************************************************************
Not the default normalize, this per http://jaydenseric.com/blog/forget-normalize-or-resets-lay-your-own-css-foundation


******************************************************************/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ol,
ul {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
}

strong {
  font-weight: bold;
}

a,
button {
  color: inherit;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

/* Border box fix please! */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*---------------------------------
           NeutronCSS
---------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/*--------- End of NeutronCSS ---------*/
/******************************************************************

SCSS VARIABLES

******************************************************************/
/* 

/* 
1. COLORS 
******************************/
/* Brand color palette - ONLY FOR USE IN THIS FILE*/
/* standard UI element colors */
/* Textcolor */
/* Link colors */
/* Background & element colors */
/* 
2. MARGINS & PADDINGS
******************************/
/* 
3. MISC 
******************************/
/******************************************************************

Sass Mixins

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

TYPOGRAPHY MIXINGS THAT TAKE px AS INPUT

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

FAUX MIXINS - actually @extends but we need these in media-queries

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

Stylesheet: Typography

for icon fonts see icons.scss

******************************************************************/
/* WEBFONTS */
/*

font-family: 'Montserrat' 400,700
font-family: 'Nunito' 400, 700

*/
html {
  font-family: "Open Sans", arial, sans-serif;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  color: #050505;
  -webkit-word-break: break-word;
  -ms-word-wrap: break-word;
  -o-word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
      hyphens: manual;
  -webkit-hyphenate-before: 3;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  /* -webkit-font-feature-settings: "liga", "dlig";
    -moz-font-feature-settings: "liga=1, dlig=1";
       -ms-font-feature-settings: "liga", "dlig";
        -o-font-feature-settings: "liga", "dlig";
           font-feature-settings: "liga", "dlig";*/
}

/* if you wanna do responsive sizing, careful with setting new baselines in specific HTML elements*/
@media (min-width:581px) {
  html {
    -webkit-hyphens: none;
    -ms-hyphens: none;
        hyphens: none;
  }
}
h1 {
  font-size: 44px;
  font-size: 2.75em;
}

h2 {
  font-size: 44px;
  font-size: 2.75em;
}

h3 {
  font-size: 24px;
  font-size: 1.5em;
}

h4 {
  font-size: 24px;
  font-size: 1.5em;
}

h5 {
  font-size: 22px;
  font-size: 1.375em;
}

h6 {
  font-size: 18px;
  font-size: 1.125em;
}

@media (min-width:951px) {
  h1 {
    font-size: 66px;
    font-size: 4.125em;
  }

  h2 {
    font-size: 66px;
    font-size: 4.125em;
  }
}
@media (min-width:1301px) {
  h1 {
    font-size: 82px;
    font-size: 5.125em;
  }

  h2 {
    font-size: 82px;
    font-size: 5.125em;
  }
}
h1, h2 {
  font-weight: 800;
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
}
h1.spacer, h2.spacer, h3.spacer, h4.spacer, h5.spacer, h6.spacer {
  margin-bottom: 37px;
}
@media (min-width:951px) {
  h1.spacer, h2.spacer, h3.spacer, h4.spacer, h5.spacer, h6.spacer {
    margin-bottom: 80px;
  }
}

/*general styles in content blocks*/
p:not([class]), p.big, ul:not([class]), ol:not([class]) {
  margin-bottom: 50px;
  font-size: 20px;
  font-size: 1.25em;
  line-height: 1.3;
}
@media (min-width:951px) {
  p:not([class]), p.big, ul:not([class]), ol:not([class]) {
    font-size: 22px;
    font-size: 1.375em;
  }
}

.medium {
  font-size: 24px;
  line-height: 1.3;
}

p.big {
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5em;
}
@media (min-width:951px) {
  p.big {
    font-size: 28px;
    font-size: 1.75em;
  }
}
@media (min-width:1301px) {
  p.big {
    font-size: 34px;
    font-size: 2.125em;
  }
}

p.bigger {
  font-weight: 800;
  font-size: 44px;
  font-size: 2.75em;
  line-height: 1.2;
  grid-column: 1/-1 !important;
  margin-bottom: 50px;
}
@media (min-width:951px) {
  p.bigger {
    font-size: 66px;
    font-size: 4.125em;
  }
}
@media (min-width:1301px) {
  p.bigger {
    font-size: 82px;
    font-size: 5.125em;
  }
}

ul:not([class]) {
  list-style: disc;
  position: relative;
}
ul:not([class]) li {
  margin: 0 0 10px 37px;
}

ol:not([class]) li {
  margin: 0 0 10px 37px;
}

a.special {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
a.special:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #050505;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a.special:hover:before, a.special:focus:before {
  width: 100%;
}

a:not([class]) {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #050505;
}

blockquote:not([class]) {
  font-size: 24px;
  font-size: 1.5em;
  margin: 50px 0;
  line-height: 1.8;
}

/* general styles outside of content blocks*/
strong {
  font-weight: 600;
}

hr {
  border: none;
  background-color: #050505;
  height: 3px;
  margin: 20px 0;
}

/*********************
IMPORTING ELEMENTS
*********************/
/* animation */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes appear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes disappear {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes slidein {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes slidein {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* OVERLAY */
body.not-selected {
  overflow: hidden;
  margin-right: 17px;
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 5%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: white top center no-repeat;
  background-size: cover;
  z-index: 999999;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  visibility: hidden;
  -webkit-transition: visibility 1s, -webkit-transform 0.5s;
  transition: visibility 1s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, visibility 1s;
  transition: transform 0.5s, visibility 1s;
  transition: transform 0.5s, visibility 1s, -webkit-transform 0.5s;
}
.page-overlay.open {
  overflow-y: scroll;
  z-index: 999999;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.page-overlay button.toggle {
  color: #050505;
  background-color: transparent;
  padding: 20px 20px 20px 37px;
  margin: 20px 37px;
  font-size: 20px;
  font-size: 1.25em;
  text-transform: uppercase;
  position: relative;
}
.page-overlay button.toggle > * {
  display: inline-block;
  vertical-align: middle;
}
.page-overlay button.toggle:before, .page-overlay button.toggle:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 5px;
  background-color: #050505;
}
.page-overlay button.toggle:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-overlay button.toggle:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.page-overlay button.toggle span {
  width: 0;
  height: 0;
  overflow: hidden;
}

/*********************
IMPORTING MODULES
*********************/
.totop svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  height: 20px;
}

.scroll {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 951px) {
  .scroll {
    padding: 30px;
  }
}
.scroll .scroll-content {
  padding: 180px 0;
  text-align: center;
}
.scroll .scroll-content svg {
  margin: 20px 20px 0 20px;
  height: 30px;
  opacity: 0;
}
.scroll .scroll-content .scroll-text {
  white-space: nowrap;
  opacity: 0;
  font-size: 12px;
  font-size: 0.75em;
}
.scroll .scroll-content .scroll-text span.underline {
  position: relative;
}
.scroll .scroll-content .scroll-text span.underline:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #050505;
}
.scroll.activated .scroll-content svg {
  -webkit-animation: appear 0.8s forwards 0.2s;
          animation: appear 0.8s forwards 0.2s;
}
.scroll.activated .scroll-content .scroll-text {
  -webkit-animation: appear 0.8s forwards;
          animation: appear 0.8s forwards;
}
.scroll.activated .scroll-content .scroll-text span.underline:before {
  -webkit-animation: underline 0.5s forwards 0.5s;
          animation: underline 0.5s forwards 0.5s;
}
@media (min-width:1301px) {
  .scroll {
    min-height: 60vh;
  }
}

.portfolio-wrapper {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
  padding-bottom: 180px !important;
  /* CSS GRID SUPPORT ***************************************************/
  /* end GRID support*/
}
@media (min-width: 951px) {
  .portfolio-wrapper {
    padding: 30px;
  }
}
.portfolio-wrapper .portfolio-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.portfolio-wrapper .portfolio-grid > * {
  margin: 20px 0;
}
@media (min-width:581px) {
  .portfolio-wrapper .portfolio-grid {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .portfolio-wrapper .portfolio-grid:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .portfolio-wrapper .portfolio-grid > *:nth-child(2n+1) {
    width: calc(50% - 20px - 20px + 10px + 10px);
    float: left;
    margin: 20px;
    clear: left;
    margin-left: 0;
  }
  .portfolio-wrapper .portfolio-grid > *:nth-child(2n+2) {
    width: calc(50% - 20px - 20px + 10px + 10px);
    float: left;
    margin: 20px;
    clear: none;
    margin-right: 0;
  }
}
@media (min-width:951px) {
  .portfolio-wrapper .portfolio-grid {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .portfolio-wrapper .portfolio-grid:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .portfolio-wrapper .portfolio-grid > *:nth-child(3n+1) {
    width: calc(33.3333333333% - 20px - 20px + 6.6666666667px + 6.6666666667px);
    float: left;
    margin: 20px;
    clear: left;
    margin-left: 0;
  }
  .portfolio-wrapper .portfolio-grid > *:nth-child(3n+2) {
    width: calc(33.3333333333% - 20px - 20px + 6.6666666667px + 6.6666666667px);
    float: left;
    margin: 20px;
    clear: none;
  }
  .portfolio-wrapper .portfolio-grid > *:nth-child(3n+3) {
    width: calc(33.3333333333% - 20px - 20px + 6.6666666667px + 6.6666666667px);
    float: left;
    margin: 20px;
    clear: none;
    margin-right: 0;
  }
}
@supports (display: grid) {
  .portfolio-wrapper .portfolio-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 20px;
    justify-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    /* reset all the things*/
  }
  .portfolio-wrapper .portfolio-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .portfolio-wrapper .portfolio-grid > * {
    float: none !important;
    margin: 0 !important;
    width: auto !important;
  }
  @media (min-width:581px) {
    .portfolio-wrapper .portfolio-grid {
      -ms-grid-columns: 1fr 20px 1fr;
      grid-template-columns: repeat(2, 1fr);
      justify-items: start;
    }
  }
  @media (min-width:951px) {
    .portfolio-wrapper .portfolio-grid {
      -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
      grid-template-columns: repeat(3, 1fr);
      justify-items: start;
    }
  }
  @media (min-width:951px) {
    .portfolio-wrapper .portfolio-grid {
      grid-gap: 30px;
    }
  }
}

.about-wrapper {
  padding-bottom: 180px !important;
}
.about-wrapper#contact {
  padding-bottom: 20px !important;
}

.about-wrapper, .contact-wrapper, .article-content, .hero {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 951px) {
  .about-wrapper, .contact-wrapper, .article-content, .hero {
    padding: 30px;
  }
}
.about-wrapper .about-content, .about-wrapper .contact-content, .about-wrapper .article-txt-content, .about-wrapper .hero-content, .contact-wrapper .about-content, .contact-wrapper .contact-content, .contact-wrapper .article-txt-content, .contact-wrapper .hero-content, .article-content .about-content, .article-content .contact-content, .article-content .article-txt-content, .article-content .hero-content, .hero .about-content, .hero .contact-content, .hero .article-txt-content, .hero .hero-content {
  /* CSS GRID SUPPORT ***************************************************/
}
.about-wrapper .about-content:after, .about-wrapper .contact-content:after, .about-wrapper .article-txt-content:after, .about-wrapper .hero-content:after, .contact-wrapper .about-content:after, .contact-wrapper .contact-content:after, .contact-wrapper .article-txt-content:after, .contact-wrapper .hero-content:after, .article-content .about-content:after, .article-content .contact-content:after, .article-content .article-txt-content:after, .article-content .hero-content:after, .hero .about-content:after, .hero .contact-content:after, .hero .article-txt-content:after, .hero .hero-content:after {
  content: "";
  display: table;
  clear: both;
  width: 0;
  height: 0;
}
.about-wrapper .about-content .col3-grid, .about-wrapper .contact-content .col3-grid, .about-wrapper .article-txt-content .col3-grid, .about-wrapper .hero-content .col3-grid, .contact-wrapper .about-content .col3-grid, .contact-wrapper .contact-content .col3-grid, .contact-wrapper .article-txt-content .col3-grid, .contact-wrapper .hero-content .col3-grid, .article-content .about-content .col3-grid, .article-content .contact-content .col3-grid, .article-content .article-txt-content .col3-grid, .article-content .hero-content .col3-grid, .hero .about-content .col3-grid, .hero .contact-content .col3-grid, .hero .article-txt-content .col3-grid, .hero .hero-content .col3-grid {
  float: left;
  width: calc(33.333% - 32px);
  margin: 18px;
}
.about-wrapper .about-content .col3-grid:first-of-type, .about-wrapper .contact-content .col3-grid:first-of-type, .about-wrapper .article-txt-content .col3-grid:first-of-type, .about-wrapper .hero-content .col3-grid:first-of-type, .contact-wrapper .about-content .col3-grid:first-of-type, .contact-wrapper .contact-content .col3-grid:first-of-type, .contact-wrapper .article-txt-content .col3-grid:first-of-type, .contact-wrapper .hero-content .col3-grid:first-of-type, .article-content .about-content .col3-grid:first-of-type, .article-content .contact-content .col3-grid:first-of-type, .article-content .article-txt-content .col3-grid:first-of-type, .article-content .hero-content .col3-grid:first-of-type, .hero .about-content .col3-grid:first-of-type, .hero .contact-content .col3-grid:first-of-type, .hero .article-txt-content .col3-grid:first-of-type, .hero .hero-content .col3-grid:first-of-type {
  margin-left: 0;
}
.about-wrapper .about-content .col3-grid:last-of-type, .about-wrapper .contact-content .col3-grid:last-of-type, .about-wrapper .article-txt-content .col3-grid:last-of-type, .about-wrapper .hero-content .col3-grid:last-of-type, .contact-wrapper .about-content .col3-grid:last-of-type, .contact-wrapper .contact-content .col3-grid:last-of-type, .contact-wrapper .article-txt-content .col3-grid:last-of-type, .contact-wrapper .hero-content .col3-grid:last-of-type, .article-content .about-content .col3-grid:last-of-type, .article-content .contact-content .col3-grid:last-of-type, .article-content .article-txt-content .col3-grid:last-of-type, .article-content .hero-content .col3-grid:last-of-type, .hero .about-content .col3-grid:last-of-type, .hero .contact-content .col3-grid:last-of-type, .hero .article-txt-content .col3-grid:last-of-type, .hero .hero-content .col3-grid:last-of-type {
  margin-right: 0;
}
@supports (display: grid) {
  .about-wrapper .about-content, .about-wrapper .contact-content, .about-wrapper .article-txt-content, .about-wrapper .hero-content, .contact-wrapper .about-content, .contact-wrapper .contact-content, .contact-wrapper .article-txt-content, .contact-wrapper .hero-content, .article-content .about-content, .article-content .contact-content, .article-content .article-txt-content, .article-content .hero-content, .hero .about-content, .hero .contact-content, .hero .article-txt-content, .hero .hero-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .about-wrapper .about-content > *:nth-child(1), .about-wrapper .contact-content > *:nth-child(1), .about-wrapper .article-txt-content > *:nth-child(1), .about-wrapper .hero-content > *:nth-child(1), .contact-wrapper .about-content > *:nth-child(1), .contact-wrapper .contact-content > *:nth-child(1), .contact-wrapper .article-txt-content > *:nth-child(1), .contact-wrapper .hero-content > *:nth-child(1), .article-content .about-content > *:nth-child(1), .article-content .contact-content > *:nth-child(1), .article-content .article-txt-content > *:nth-child(1), .article-content .hero-content > *:nth-child(1), .hero .about-content > *:nth-child(1), .hero .contact-content > *:nth-child(1), .hero .article-txt-content > *:nth-child(1), .hero .hero-content > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .about-wrapper .about-content > *, .about-wrapper .contact-content > *, .about-wrapper .article-txt-content > *, .about-wrapper .hero-content > *, .contact-wrapper .about-content > *, .contact-wrapper .contact-content > *, .contact-wrapper .article-txt-content > *, .contact-wrapper .hero-content > *, .article-content .about-content > *, .article-content .contact-content > *, .article-content .article-txt-content > *, .article-content .hero-content > *, .hero .about-content > *, .hero .contact-content > *, .hero .article-txt-content > *, .hero .hero-content > * {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/6;
  }
  .about-wrapper .about-content p, .about-wrapper .contact-content p, .about-wrapper .article-txt-content p, .about-wrapper .hero-content p, .contact-wrapper .about-content p, .contact-wrapper .contact-content p, .contact-wrapper .article-txt-content p, .contact-wrapper .hero-content p, .article-content .about-content p, .article-content .contact-content p, .article-content .article-txt-content p, .article-content .hero-content p, .hero .about-content p, .hero .contact-content p, .hero .article-txt-content p, .hero .hero-content p {
    padding-right: 10px;
  }
  .about-wrapper .about-content .col3-grid, .about-wrapper .contact-content .col3-grid, .about-wrapper .article-txt-content .col3-grid, .about-wrapper .hero-content .col3-grid, .contact-wrapper .about-content .col3-grid, .contact-wrapper .contact-content .col3-grid, .contact-wrapper .article-txt-content .col3-grid, .contact-wrapper .hero-content .col3-grid, .article-content .about-content .col3-grid, .article-content .contact-content .col3-grid, .article-content .article-txt-content .col3-grid, .article-content .hero-content .col3-grid, .hero .about-content .col3-grid, .hero .contact-content .col3-grid, .hero .article-txt-content .col3-grid, .hero .hero-content .col3-grid {
    float: none !important;
    margin: 0 !important;
    width: auto !important;
  }
  @media (min-width:581px) {
    .about-wrapper .about-content, .about-wrapper .contact-content, .about-wrapper .article-txt-content, .about-wrapper .hero-content, .contact-wrapper .about-content, .contact-wrapper .contact-content, .contact-wrapper .article-txt-content, .contact-wrapper .hero-content, .article-content .about-content, .article-content .contact-content, .article-content .article-txt-content, .article-content .hero-content, .hero .about-content, .hero .contact-content, .hero .article-txt-content, .hero .hero-content {
      -ms-grid-columns: 1fr 37px 1fr 37px 1fr 37px 1fr;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 0 37px;
    }
    .about-wrapper .about-content .col3-grid, .about-wrapper .contact-content .col3-grid, .about-wrapper .article-txt-content .col3-grid, .about-wrapper .hero-content .col3-grid, .contact-wrapper .about-content .col3-grid, .contact-wrapper .contact-content .col3-grid, .contact-wrapper .article-txt-content .col3-grid, .contact-wrapper .hero-content .col3-grid, .article-content .about-content .col3-grid, .article-content .contact-content .col3-grid, .article-content .article-txt-content .col3-grid, .article-content .hero-content .col3-grid, .hero .about-content .col3-grid, .hero .contact-content .col3-grid, .hero .article-txt-content .col3-grid, .hero .hero-content .col3-grid {
      grid-column: auto/span 2;
    }
  }
  @media (min-width:951px) {
    .about-wrapper .about-content, .about-wrapper .contact-content, .about-wrapper .article-txt-content, .about-wrapper .hero-content, .contact-wrapper .about-content, .contact-wrapper .contact-content, .contact-wrapper .article-txt-content, .contact-wrapper .hero-content, .article-content .about-content, .article-content .contact-content, .article-content .article-txt-content, .article-content .hero-content, .hero .about-content, .hero .contact-content, .hero .article-txt-content, .hero .hero-content {
      -ms-grid-columns: 1fr 37px 1fr 37px 1fr 37px 1fr 37px 1fr 37px 1fr;
      grid-template-columns: repeat(6, 1fr);
    }
    .about-wrapper .about-content .col3-grid, .about-wrapper .contact-content .col3-grid, .about-wrapper .article-txt-content .col3-grid, .about-wrapper .hero-content .col3-grid, .contact-wrapper .about-content .col3-grid, .contact-wrapper .contact-content .col3-grid, .contact-wrapper .article-txt-content .col3-grid, .contact-wrapper .hero-content .col3-grid, .article-content .about-content .col3-grid, .article-content .contact-content .col3-grid, .article-content .article-txt-content .col3-grid, .article-content .hero-content .col3-grid, .hero .about-content .col3-grid, .hero .contact-content .col3-grid, .hero .article-txt-content .col3-grid, .hero .hero-content .col3-grid {
      grid-column: auto/span 2;
    }
  }
}

#overons {
  padding-bottom: 37px !important;
}

.client-wrapper {
  background: #050505;
  color: white;
  padding: 180px 0;
  margin: 150px 0;
  /* CSS GRID SUPPORT ***************************************************/
  /* end GRID support*/
}
.client-wrapper .client-content {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 951px) {
  .client-wrapper .client-content {
    padding: 30px;
  }
}
.client-wrapper .client-grid {
  margin-top: 80px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.client-wrapper .client-grid:after {
  content: "";
  display: table;
  clear: both;
  width: 0;
  height: 0;
}
.client-wrapper .client-grid > *:nth-child(2n+1) {
  width: calc(50% - 20px - 20px + 10px + 10px);
  float: left;
  margin: 20px;
  clear: left;
  margin-left: 0;
}
.client-wrapper .client-grid > *:nth-child(2n+2) {
  width: calc(50% - 20px - 20px + 10px + 10px);
  float: left;
  margin: 20px;
  clear: none;
  margin-right: 0;
}
@media (min-width:581px) {
  .client-wrapper .client-grid {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .client-wrapper .client-grid:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .client-wrapper .client-grid > *:nth-child(3n+1) {
    width: calc(33.3333333333% - 20px - 20px + 6.6666666667px + 6.6666666667px);
    float: left;
    margin: 20px;
    clear: left;
    margin-left: 0;
  }
  .client-wrapper .client-grid > *:nth-child(3n+2) {
    width: calc(33.3333333333% - 20px - 20px + 6.6666666667px + 6.6666666667px);
    float: left;
    margin: 20px;
    clear: none;
  }
  .client-wrapper .client-grid > *:nth-child(3n+3) {
    width: calc(33.3333333333% - 20px - 20px + 6.6666666667px + 6.6666666667px);
    float: left;
    margin: 20px;
    clear: none;
    margin-right: 0;
  }
}
@media (min-width:951px) {
  .client-wrapper .client-grid {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .client-wrapper .client-grid:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .client-wrapper .client-grid > *:nth-child(5n+1) {
    width: calc(20% - 20px - 20px + 4px + 4px);
    float: left;
    margin: 20px;
    clear: left;
    margin-left: 0;
  }
  .client-wrapper .client-grid > *:nth-child(5n+2) {
    width: calc(20% - 20px - 20px + 4px + 4px);
    float: left;
    margin: 20px;
    clear: none;
  }
  .client-wrapper .client-grid > *:nth-child(5n+3) {
    width: calc(20% - 20px - 20px + 4px + 4px);
    float: left;
    margin: 20px;
    clear: none;
  }
  .client-wrapper .client-grid > *:nth-child(5n+4) {
    width: calc(20% - 20px - 20px + 4px + 4px);
    float: left;
    margin: 20px;
    clear: none;
  }
  .client-wrapper .client-grid > *:nth-child(5n+5) {
    width: calc(20% - 20px - 20px + 4px + 4px);
    float: left;
    margin: 20px;
    clear: none;
    margin-right: 0;
  }
}
@supports (display: grid) {
  .client-wrapper .client-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 37px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 50px 37px;
    justify-items: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .client-wrapper .client-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .client-wrapper .client-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .client-wrapper .client-grid > * {
    float: none !important;
    margin: 0 !important;
    width: auto !important;
  }
  .client-wrapper .client-grid .grid-item:nth-child(even) img {
    margin-left: auto;
  }
  @media (min-width:581px) {
    .client-wrapper .client-grid {
      -ms-grid-columns: 1fr 37px 1fr 37px 1fr;
      grid-template-columns: repeat(3, 1fr);
      justify-items: start;
    }
  }
  @media (min-width:951px) {
    .client-wrapper .client-grid {
      -ms-grid-columns: 1fr 37px 1fr 37px 1fr 37px 1fr 37px 1fr;
      grid-template-columns: repeat(5, 1fr);
      justify-items: start;
    }
  }
}

section.img-content {
  margin: 0 auto;
  padding-bottom: 180px !important;
}
section.img-content img {
  margin: 0 auto;
  padding-top: 30px;
}

section.main-wrapper {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 951px) {
  section.main-wrapper {
    padding: 30px;
  }
}

/* header */
html, body {
  height: 100%;
}

/* general styles and fallbacks ********************************/
body {
  height: 100%;
}

/* pageloader */
.pageloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 99999;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
}
.pageloader.deactivated {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 1s, opacity 0.5s;
  -o-transition: visibility 1s, opacity 0.5s;
  transition: visibility 1s, opacity 0.5s;
}

header {
  padding-top: 20px;
  padding-bottom: 37px;
  min-height: 90px;
  z-index: 999;
  /************/
  /************/
}
header .header-wrapper {
  z-index: 9999;
}
header .header-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: top 0.8s ease-in-out;
  -o-transition: top 0.8s ease-in-out;
  transition: top 0.8s ease-in-out;
}
header .header-content {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 951px) {
  header .header-content {
    padding: 30px;
  }
}
header .logo img {
  height: 90px;
}
@media (min-width:951px) {
  header {
    min-height: 130px;
  }
}
@media (min-width:1301px) {
  header {
    min-height: 150px;
  }
}

.single-portfolio header {
  position: fixed;
}
/* CSS Grid ***************************************************/
/* NAVIGATION ELEMENTS*/
/* HEADER */
/* show/hide*/
.navbar {
  display: none;
}
@media (min-width:581px) {
  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (min-width:581px) {
  .menu-toggle, .header-mobile-content {
    display: none;
  }
}

/* general */
nav.main-nav ul, nav.mobile-nav ul, nav.bottom-nav ul {
  list-style: none;
  margin: 0;
}
nav.main-nav ul li, nav.mobile-nav ul li, nav.bottom-nav ul li {
  padding: 10px;
}
nav.main-nav ul li a, nav.mobile-nav ul li a, nav.bottom-nav ul li a {
  font-weight: 400;
  position: relative;
  border: none;
}
nav.main-nav ul li a:before, nav.mobile-nav ul li a:before, nav.bottom-nav ul li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #050505;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
nav.main-nav ul li:hover a:before, nav.main-nav ul li:focus a:before, nav.mobile-nav ul li:hover a:before, nav.mobile-nav ul li:focus a:before, nav.bottom-nav ul li:hover a:before, nav.bottom-nav ul li:focus a:before {
  width: 100%;
}

/* desktop */
nav.main-nav ul li {
  display: inline-block;
  margin-right: 37px;
}
nav.main-nav ul li a {
  font-size: 22px;
  font-size: 1.375em;
}
nav.main-nav ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
nav.main-nav ul li:last-child a {
  padding-right: 0;
}

/* mobile */
.header-mobile-content nav.mobile-nav {
  margin: 5% 10%;
}
.header-mobile-content nav.mobile-nav li {
  margin: 0;
}
.header-mobile-content nav.mobile-nav li a {
  padding: 0 20px 37px 20px;
  display: inline-block;
  color: #050505;
  font-size: 28px;
  font-size: 1.75em;
}
.header-mobile-content nav.mobile-nav li a:before {
  content: none;
}
.header-mobile-content nav.mobile-nav li a:hover {
  color: black;
}
.header-mobile-content nav.mobile-nav li ul {
  margin-bottom: 20px;
}
.header-mobile-content nav.mobile-nav li ul li {
  margin-left: 37px;
}

/* toggle button */
.menu-toggle button.toggle {
  padding: 20px;
  padding-right: 0;
  position: relative;
  background-color: transparent;
}
.menu-toggle button.toggle span {
  visibility: hidden;
  display: block;
  width: 0;
  height: 0;
}
.menu-toggle button.toggle svg {
  width: 30px;
  height: 30px;
  fill: #050505;
}

/* FOOTER */
nav.bottom-nav ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
nav.bottom-nav ul li {
  padding: 5px 0 !important;
}
@media (min-width:951px) {
  nav.bottom-nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.bottom-nav ul li {
    margin: 0 20px 0 0;
    padding-right: 10px;
  }
  nav.bottom-nav ul li:first-child {
    padding-left: 0;
  }
}

/* footer */
footer {
  margin: 0;
  padding: 80px 0 10px 0;
  font-size: 20px;
  font-size: 1.25em;
  /********* bottom bar ***************/
}
@media (min-width:951px) {
  footer {
    font-size: 22px;
    font-size: 1.375em;
  }
}
footer .footer-wrapper {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 951px) {
  footer .footer-wrapper {
    padding: 30px;
  }
}
footer .bottom-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .bottom-bar .copy > * {
  margin-bottom: 5px;
}
@media (min-width:951px) {
  footer .bottom-bar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .bottom-bar .copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-top: 0;
  }
}

/* HERO */
.hero .hero-content {
  padding-top: 150px !important;
  padding-bottom: 180px !important;
}

/* CSS GRID SUPPORT ***************************************************/
/* end GRID support*/
article.single .article-header {
  -webkit-animation: fadein 1s linear;
          animation: fadein 1s linear;
  position: relative;
  z-index: -1;
}
article.single .article-header img {
  margin: 0 auto;
}
article.single .article-content {
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 951px) {
  article.single .article-content {
    padding: 30px;
  }
}
article.single .article-txt-content {
  margin: 80px 0;
}
article.single .article-img-content {
  margin-bottom: 37px;
}
article.single .article-content-col2 > * {
  margin-bottom: 37px;
}
@media (min-width:951px) {
  article.single .article-content-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  article.single .article-content-col2 > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  article.single .article-content-col2 > *:first-child {
    margin-right: 18px;
  }
  article.single .article-content-col2 > *:nth-child(2) {
    margin-left: 18px;
  }
}

.grid-item img {
  margin-bottom: 10px;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
.grid-item h3 {
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1em;
}
a.grid-item {
  /* CSS GRID SUPPORT ***************************************************/
  /* end GRID support*/
}
a.grid-item img {
  margin-bottom: 10px;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
a.grid-item h3 {
  margin-bottom: 5px;
}
a.grid-item:hover img {
  opacity: 0.6;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
/*------------------------------------*\
    WP defaults
\*------------------------------------*/
.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
  text-align: left;
}

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
  text-align: right;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
  text-align: center;
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: left;
  padding-top: 5px;
  max-width: 100% !important;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  margin: 5px;
  color: #050505;
  font-size: 14px;
  font-size: 0.875em;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

.gallery img {
  margin-bottom: 10px;
}

.gallery-caption {
  margin: 5px;
  color: #050505;
  font-size: 14px;
  font-size: 0.875em;
}

@media (min-width:581px) {
  .gallery-columns-2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-columns-2:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .gallery-columns-2 > *:nth-child(2n+1) {
    width: calc(50% - 10px - 10px + 5px + 5px);
    float: left;
    margin: 10px;
    clear: left;
    margin-left: 0;
  }
  .gallery-columns-2 > *:nth-child(2n+2) {
    width: calc(50% - 10px - 10px + 5px + 5px);
    float: left;
    margin: 10px;
    clear: none;
    margin-right: 0;
  }

  .gallery-columns-3 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-columns-3:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .gallery-columns-3 > *:nth-child(3n+1) {
    width: calc(33.3333333333% - 10px - 10px + 3.3333333333px + 3.3333333333px);
    float: left;
    margin: 10px;
    clear: left;
    margin-left: 0;
  }
  .gallery-columns-3 > *:nth-child(3n+2) {
    width: calc(33.3333333333% - 10px - 10px + 3.3333333333px + 3.3333333333px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-3 > *:nth-child(3n+3) {
    width: calc(33.3333333333% - 10px - 10px + 3.3333333333px + 3.3333333333px);
    float: left;
    margin: 10px;
    clear: none;
    margin-right: 0;
  }

  .gallery-columns-4 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-columns-4:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .gallery-columns-4 > *:nth-child(4n+1) {
    width: calc(25% - 10px - 10px + 2.5px + 2.5px);
    float: left;
    margin: 10px;
    clear: left;
    margin-left: 0;
  }
  .gallery-columns-4 > *:nth-child(4n+2) {
    width: calc(25% - 10px - 10px + 2.5px + 2.5px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-4 > *:nth-child(4n+3) {
    width: calc(25% - 10px - 10px + 2.5px + 2.5px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-4 > *:nth-child(4n+4) {
    width: calc(25% - 10px - 10px + 2.5px + 2.5px);
    float: left;
    margin: 10px;
    clear: none;
    margin-right: 0;
  }

  .gallery-columns-5 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-columns-5:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .gallery-columns-5 > *:nth-child(5n+1) {
    width: calc(20% - 10px - 10px + 2px + 2px);
    float: left;
    margin: 10px;
    clear: left;
    margin-left: 0;
  }
  .gallery-columns-5 > *:nth-child(5n+2) {
    width: calc(20% - 10px - 10px + 2px + 2px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-5 > *:nth-child(5n+3) {
    width: calc(20% - 10px - 10px + 2px + 2px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-5 > *:nth-child(5n+4) {
    width: calc(20% - 10px - 10px + 2px + 2px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-5 > *:nth-child(5n+5) {
    width: calc(20% - 10px - 10px + 2px + 2px);
    float: left;
    margin: 10px;
    clear: none;
    margin-right: 0;
  }

  .gallery-columns-6 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-columns-6:after {
    content: "";
    display: table;
    clear: both;
    width: 0;
    height: 0;
  }
  .gallery-columns-6 > *:nth-child(6n+1) {
    width: calc(16.6666666667% - 10px - 10px + 1.6666666667px + 1.6666666667px);
    float: left;
    margin: 10px;
    clear: left;
    margin-left: 0;
  }
  .gallery-columns-6 > *:nth-child(6n+2) {
    width: calc(16.6666666667% - 10px - 10px + 1.6666666667px + 1.6666666667px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-6 > *:nth-child(6n+3) {
    width: calc(16.6666666667% - 10px - 10px + 1.6666666667px + 1.6666666667px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-6 > *:nth-child(6n+4) {
    width: calc(16.6666666667% - 10px - 10px + 1.6666666667px + 1.6666666667px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-6 > *:nth-child(6n+5) {
    width: calc(16.6666666667% - 10px - 10px + 1.6666666667px + 1.6666666667px);
    float: left;
    margin: 10px;
    clear: none;
  }
  .gallery-columns-6 > *:nth-child(6n+6) {
    width: calc(16.6666666667% - 10px - 10px + 1.6666666667px + 1.6666666667px);
    float: left;
    margin: 10px;
    clear: none;
    margin-right: 0;
  }
}
/*# sourceMappingURL=style.css.map */