/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*** BOOTSTRAP OVERRIDES ***/
/*$mycolor: #67A6A6;
$brand-primary: white;
// in SCSS we nest
nav {
  // in CSS this was selected by nav a
  a {
    color: $mycolor !important;
    // change a on hover example
    // in CSS this was selected by nav a:hover
    &:hover {
      color: $brand-primary !important;
    }
  }
}
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
BREAKPOINTS
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
groupIN'
*********************/
.group {
  zoom: 1;
}
.group:before, .group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
/*********************
TOOLS
*********************/
/*********************
LAYOUT HELPERS
*********************/
/*********************
HORIZONTAL NAV LISTS
*********************/
/*********************
UNSTYLED LISTS
*********************/
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
ARROWS
*********************/
/*********************
TRANISTION
*********************/
/* .transition(all,0.3s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  font-family: "stratos", Helvetica, Arial, sans-serif;
}
.title h3 {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -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";
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}
a {
  text-decoration: none;
}
ul li a {
  text-decoration: none;
}
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-family: "stratos", Helvetica, Arial, sans-serif;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */
}
h1, .h1 {
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 2.5em;
  line-height: 1.05em;
}
h2, .h2 {
  font-size: 1.75em;
  line-height: 1.1em;
  margin-bottom: 0.375em;
}
h3, .h3 {
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.1em;
  margin: 0 0 0.75em 0;
}
h4, .h4 {
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
}
h5, .h5 {
  font-size: 0.9em;
  line-height: 1.4em;
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}
h5 a, .h5 a {
  text-decoration: underline;
}
h6, .h6 {
  font-size: 0.85em;
}
/*********************
LINK STYLES
*********************/
a, a:visited {
  color: inherit;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: inherit;
  transition: 0.3s;
  text-decoration: underline;
}
a:link, a:visited:link {
  /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
.wp-block-button .wp-block-button__link.is-style-outline, .wp-block-button.is-style-outline > .wp-block-button__link {
  border: 1px solid;
}
.wp-block-button {
  margin-bottom: 1em;
}
.wp-block-button a.wp-block-button__link {
  background-color: transparent;
  color: #3C3C3C;
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  padding: 0.6em 1.2em;
  border-radius: 0em;
  display: inline-block;
  text-decoration: none;
  transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-block-button a.wp-block-button__link:hover {
  transform: translateY(-0.2em);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.inverted a.wp-block-button__link {
  color: #ffffff;
  border-color: #ffffff;
}
.wp-block-button.inverted a.wp-block-button__link:hover {
  background-color: #ffffff;
  color: #3C3C3C;
}
input#btn-form.wpcf7-form-control.wpcf7-submit {
  background-color: transparent;
  color: #3C3C3C;
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  padding: 0.6em 1.2em;
  border-radius: 0em;
  display: inline-block;
  text-decoration: none;
  transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  border-color: #ffffff;
  padding: 0.5em 3em 1.8em;
  width: auto;
}
input#btn-form.wpcf7-form-control.wpcf7-submit:hover {
  transform: translateY(-0.2em);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
input#btn-form.wpcf7-form-control.wpcf7-submit:hover {
  background-color: #ffffff;
  color: #3C3C3C;
}
.button {
  background-color: transparent;
  color: #3C3C3C;
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  padding: 0.6em 1.2em;
  border-radius: 0em;
  display: inline-block;
  text-decoration: none;
  transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  transform: translateY(-0.2em);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#site-background.fiftyfifty.percent-0 .two {
  width: 0;
}
#site-background.fiftyfifty.percent-5 .two {
  width: 5%;
}
#site-background.fiftyfifty.percent-10 .two {
  width: 10%;
}
#site-background.fiftyfifty.percent-15 .two {
  width: 15%;
}
#site-background.fiftyfifty.percent-20 .two {
  width: 20%;
}
#site-background.fiftyfifty.percent-25 .two {
  width: 25%;
}
#site-background.fiftyfifty.percent-30 .two {
  width: 30%;
}
#site-background.fiftyfifty.percent-35 .two {
  width: 35%;
}
#site-background.fiftyfifty.percent-40 .two {
  width: 40%;
}
#site-background.fiftyfifty.percent-45 .two {
  width: 45%;
}
#site-background.fiftyfifty.percent-50 .two {
  width: 50%;
}
#site-background.fiftyfifty.percent-55 .two {
  width: 55%;
}
#site-background.fiftyfifty.percent-60 .two {
  width: 60%;
}
#site-background.fiftyfifty.percent-65 .two {
  width: 65%;
}
#site-background.fiftyfifty.percent-70 .two {
  width: 70%;
}
#site-background.fiftyfifty.percent-75 .two {
  width: 75%;
}
#site-background.fiftyfifty.percent-80 .two {
  width: 80%;
}
#site-background.fiftyfifty.percent-85 .two {
  width: 85%;
}
#site-background.fiftyfifty.percent-90 .two {
  width: 90%;
}
#site-background.fiftyfifty.percent-95 .two {
  width: 95%;
}
#site-background.fiftyfifty.percent-100 .two {
  width: 100%;
}
#site-background {
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}
#site-background .one {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #318E4D;
}
#site-background .one.project {
  background-color: #F8F8F8;
}
#site-background .two {
  height: 100%;
  position: absolute;
  right: 0;
  background-color: #8B7ED0;
}
#site-background .two.project {
  width: 50%;
  background-color: #3C3C3C;
}
#site-background.fiftyfifty .two {
  width: 50%;
}
#site-background div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site {
  position: relative;
  z-index: 2;
}
/* BACKGROUND BEHAVIOUR */
#header-bar.scroll .logobar {
  height: 1em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#header-bar .navbar-toggler {
  display: none;
}
#header-bar .collapse {
  display: flex;
}
nav.navbar {
  text-align: center;
  width: 100%;
  z-index: 1000;
  background-color: transparent !important;
  position: fixed;
  flex-flow: wrap;
}
nav.navbar .logobar {
  overflow: hidden;
  height: 5.5em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav.navbar .navbar-brand {
  max-width: 6em;
  margin: 0;
  padding: 0;
}
nav.navbar .navbar-brand img {
  height: 1.4em;
  width: auto;
  margin: 1em 0;
}
.site.dark .navbar-brand img {
  filter: brightness(22%);
}
#navbarNavDropdown {
  margin-top: -1em;
  background-color: transparent;
  z-index: 10;
}
#navbarNavDropdown:before, #navbarNavDropdown:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ffffff;
}
#navbarNavDropdown:before {
  transform: scaleX(90%) translateX(2em);
}
#navbarNavDropdown:after {
  transform: scaleX(90%) translateX(-2em);
}
#navbarNavDropdown ul#main-menu {
  margin: 0 auto;
  min-width: 10em;
  flex-direction: column;
}
#navbarNavDropdown ul#main-menu:before, #navbarNavDropdown ul#main-menu:after {
  position: absolute;
  color: white;
  font-family: "stratos-Lights", Helvetica, Arial, sans-serif;
  font-size: 1em;
  margin: 0 0.5em;
}
#navbarNavDropdown ul#main-menu:before {
  content: "2018";
  left: 0;
}
#navbarNavDropdown ul#main-menu:after {
  content: "2024";
  right: 0;
}
@media (min-width: 25.75em) {
  #navbarNavDropdown ul#main-menu {
    flex-direction: row;
  }
}
#navbarNavDropdown ul#main-menu li {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#navbarNavDropdown ul#main-menu li a {
  padding: 0 1em;
  font-size: 1em;
  font-family: "stratos-Lights", Helvetica, Arial, sans-serif;
  font-weight: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#navbarNavDropdown ul#main-menu li a i.fa-times {
  font-size: 0.8em;
}
#navbarNavDropdown ul#main-menu li.current-menu-item a {
  color: #ffffff;
  opacity: 1;
}
/* HOME MENU */
.one-page-menu {
  display: none;
}
@media (min-width: 48em) {
  .one-page-menu {
    display: block;
    position: relative;
    z-index: 4;
  }
  .one-page-menu .container {
    padding: 1em 0;
    font-family: "stratos", Helvetica, Arial, sans-serif;
    max-width: max-content;
    display: flex;
    position: absolute;
    text-shadow: 1px 1px 0 #318E4D;
  }
  .one-page-menu .container .fa-bars {
    font-size: 1.8em;
    float: left;
    margin: 0.25em 0.75em;
  }
  .one-page-menu .container .home-menu {
    float: left;
    margin-right: 0.5em;
    font-size: 1.5em;
    text-transform: lowercase;
    line-height: 1.65em;
  }
  .one-page-menu .container .home-menu ul {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    padding: 0;
    padding: 0;
  }
  .one-page-menu .container .home-menu ul li a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 48em) and (min-width: 67.5em) {
  .one-page-menu .container {
    position: fixed;
  }
}
article#home-page {
  /* HEADER IMAGE */
  /* HOME CONTENT */
}
article#home-page .parallax-container {
  position: relative;
  height: 350px;
  display: table;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 33.75em) {
  article#home-page .parallax-container {
    height: 500px;
  }
}
article#home-page .parallax-container .parallax {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  height: 140%;
  width: 100%;
  z-index: -1;
}
article#home-page .parallax-container .header-text {
  font-size: 2em;
  line-height: 1.1em;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
@media (min-width: 25.75em) {
  article#home-page .parallax-container .header-text {
    font-size: 2.3em;
  }
}
@media (min-width: 30em) {
  article#home-page .parallax-container .header-text {
    font-size: 2.6em;
  }
}
@media (min-width: 37.5em) {
  article#home-page .parallax-container .header-text {
    font-size: 3em;
  }
}
@media (min-width: 48em) {
  article#home-page .parallax-container .header-text {
    font-size: 3.2em;
  }
}
@media (min-width: 60em) {
  article#home-page .parallax-container .header-text {
    padding: 0 3em;
  }
}
@media (min-width: 67.5em) {
  article#home-page .parallax-container .header-text {
    font-size: 3.4em;
    padding: 0 3em;
  }
}
@media (min-width: 90em) {
  article#home-page .parallax-container .header-text {
    font-size: 3.6em;
    padding: 0 5em;
  }
}
article#home-page .modal-link {
  margin-top: 1.5em;
}
article#home-page h2 {
  font-size: 2em;
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: lowercase;
  margin-bottom: 1em;
}
@media (min-width: 25.75em) {
  article#home-page h2 {
    font-size: 2.25em;
  }
}
@media (min-width: 37.5em) {
  article#home-page h2 {
    font-size: 2.65em;
  }
}
article#home-page .entry-content .esmee {
  background-color: #318E4D;
}
article#home-page .entry-content .simone {
  background-color: #8B7ED0;
}
article#home-page .entry-content .wp-block-columns.has-1-columns .wp-block-column {
  max-width: 64em;
  margin: 0 auto;
  padding: 2em;
}
@media (min-width: 25.75em) {
  article#home-page .entry-content .wp-block-columns.has-1-columns .wp-block-column {
    padding: 3em;
  }
}
@media (min-width: 37.5em) {
  article#home-page .entry-content .wp-block-columns.has-1-columns .wp-block-column {
    flex: auto;
  }
}
@media (min-width: 60em) {
  article#home-page .entry-content .wp-block-columns.has-1-columns .wp-block-column {
    padding: 4em;
  }
}
article#home-page .entry-content .wp-block-columns.has-2-columns {
  max-width: 64em;
  margin: 0 auto;
  padding: 2em 0;
}
article#home-page .entry-content .wp-block-columns.has-2-columns .wp-block-column {
  padding: 2em;
  margin: 0;
  flex-basis: 50%;
}
article#home-page .entry-content .wp-block-columns.light-block {
  background-color: #ffffff;
  color: #3C3C3C;
}
article#home-page .entry-content .wp-block-columns.light-block .wp-block-column {
  margin: 0 auto;
  flex: none;
}
article#home-page .entry-content .wp-block-columns blockquote.wp-block-quote p {
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.2em;
}
article#home-page .entry-content .wp-block-columns.portret .wp-block-column {
  padding: 0;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column {
  padding: 0;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-image {
  margin-bottom: 0;
  max-width: 30em;
  margin-top: -1px;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column.esmee .wp-block-image, article#home-page .entry-content .wp-block-columns.quotes .wp-block-column.esmee .wp-block-columns.has-1-columns .text {
  margin-left: auto;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column.simone .wp-block-image, article#home-page .entry-content .wp-block-columns.quotes .wp-block-column.simone .wp-block-columns.has-1-columns .text {
  margin-right: auto;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns.has-1-columns {
  margin: -7em 1em 0;
  background-color: inherit;
}
@media (min-width: 25.75em) {
  article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns.has-1-columns {
    margin: -7em 2em 0;
  }
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns.has-1-columns .text {
  padding: 1em;
  background-color: inherit;
}
@media (min-width: 25.75em) {
  article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns.has-1-columns .text {
    padding: 1em;
  }
}
@media (min-width: 33.75em) {
  article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns.has-1-columns .text {
    margin: 0 0 1.5em;
    max-width: 24em;
    padding: 1.5em;
  }
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns {
  margin-bottom: -4em;
  padding-bottom: 1em;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns .left {
  background-color: #8B7ED0;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns .left:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 0.9em solid #ffffff;
  border-top: 0.9em solid transparent;
  border-bottom: 0.9em solid transparent;
  margin-top: -0.85em;
  left: 50%;
  border-left: 0.9em solid #8B7ED0;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns .right {
  background-color: #318E4D;
}
article#home-page .entry-content .wp-block-columns.quotes .wp-block-column .wp-block-columns .right:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 0.9em solid #ffffff;
  border-top: 0.9em solid transparent;
  border-bottom: 0.9em solid transparent;
  margin-top: -0.85em;
  left: 50%;
  transform: rotate(180deg) translateX(100%);
  border-left: 0.9em solid #318E4D;
}
article#home-page .entry-content .wp-block-columns.services {
  text-align: center;
}
article#home-page .entry-content .wp-block-columns.services ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  padding: 0;
}
@media (min-width: 37.5em) {
  article#home-page .entry-content .wp-block-columns.services .esmee {
    text-align: right;
  }
  article#home-page .entry-content .wp-block-columns.services .simone {
    text-align: left;
  }
}
article#home-page .form-group, article#home-page .wpcf7 .wpcf7-form p {
  text-align: center;
}
article#home-page .contact-image {
  min-height: 28em;
  /*&:after {
			content: "";
			height:40em;
			position: absolute;
			display:block;
			background-color: $black;
		}*/
}
@media (min-width: 37.5em) {
  article#home-page .contact-image {
    min-height: 36em;
  }
}
@media (min-width: 90em) {
  article#home-page .contact-image {
    min-height: 44em;
  }
}
article#home-page .contact {
  margin-top: -20em;
  position: relative;
}
@media (min-width: 37.5em) {
  article#home-page .contact {
    margin-top: -23em;
  }
}
@media (min-width: 90em) {
  article#home-page .contact {
    margin-top: -29em;
  }
}
article#home-page .form {
  margin-top: 3em;
}
article#home-page .form textarea, article#home-page .form input {
  border: 0;
}
article#home-page .form textarea::placeholder, article#home-page .form input::placeholder {
  color: #B0B0B0;
}
article#projecten-page {
  text-align: center;
}
article#projecten-page .modal-link {
  margin-top: -2em;
}
article#projecten-page .entry-content {
  margin: 3em 0;
}
article#projecten-page a.project:hover > .container .block.hidden {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article#projecten-page a.project:hover > .container .block.streamer, article#projecten-page a.project.hover > .container .block.streamer {
  text-decoration: none;
}
article#projecten-page a.project:hover > .container .block.tags, article#projecten-page a.project.hover > .container .block.tags {
  text-decoration: underline;
}
article#projecten-page a.project:hover > .container .block.hidden.info, article#projecten-page a.project.hover > .container .block.hidden.info {
  opacity: 1;
  color: #3C3C3C;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article#projecten-page a.project {
  display: block;
  text-decoration: none;
}
article#projecten-page a.project:hover, article#projecten-page a.project.hover {
  background-color: white;
  color: #3C3C3C;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article#projecten-page a.project .container {
  margin: 0 auto;
  padding: 0.5em 0;
  justify-content: center;
  flex-direction: column-reverse;
}
@media (min-width: 48em) {
  article#projecten-page a.project .container {
    flex-direction: row;
  }
}
article#projecten-page a.project .container .block {
  display: inline-block;
}
article#projecten-page a.project .container .block.streamer {
  max-width: 18em;
  padding: 0 1em;
  margin: 0 auto;
}
article#projecten-page a.project .container .block.streamer h3 {
  margin: 0 0 0.25em 0;
}
article#projecten-page a.project .container .block.streamer h5 {
  margin: 0.75em 0;
  text-decoration: underline;
}
article#projecten-page a.project .container .block.hidden {
  opacity: 0;
  color: #3C3C3C;
}
article#projecten-page a.project .container .block.hidden.info {
  display: inline-block;
  margin: 0.5em 0 0.25em;
  text-decoration: underline;
  opacity: 1;
  color: #ffffff;
}
@media (min-width: 48em) {
  article#projecten-page a.project .container .block.hidden.info {
    opacity: 0;
  }
}
article#projecten-page a.project .container .block.collab h5 {
  margin: -0.75em 0 0.75em;
}
#single-wrapper {
  padding: 0;
}
#single-wrapper.wrapper.dark {
  color: #3C3C3C;
}
#single-wrapper.wrapper.light {
  color: #F8F8F8;
}
.type-projecten {
  /* IMAGE COLOR ON HOVER */
  /* IMAGE CAPTIONS */
  /* SINGLE IMAGE */
  /* RESPONSIVE PARALLAX IMAGE */
  /* NEXT POST */
  /*** CHILD PAGE ***/
}
.type-projecten .container {
  max-width: 720px;
  padding: 1em 2em;
}
@media (min-width: 37.5em) {
  .type-projecten .container {
    padding: 1.5em 2em;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .type-projecten .container {
    max-width: none;
  }
  .type-projecten .wp-block-column {
    flex-basis: 100%;
    flex-grow: 0;
  }
}
.type-projecten .tags ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  padding: 0;
}
.type-projecten .entry-header {
  margin-top: 3em;
  justify-content: center;
  display: block;
}
@media (min-width: 48em) {
  .type-projecten .entry-header {
    margin-top: 4em;
    display: flex;
  }
}
@media (min-width: 48em) {
  .type-projecten .entry-header .title {
    margin-bottom: 0.5em;
  }
}
.type-projecten .entry-header .entry-meta {
  text-align: right;
}
@media (min-width: 33.75em) {
  .type-projecten .entry-header .entry-meta {
    text-align: left;
  }
}
.type-projecten .entry-header .entry-meta h3.description {
  font-size: 1.5entrym;
  line-height: 1.3em;
  margin-top: 0.5em;
}
.type-projecten .wp-block-columns {
  margin-top: 0;
  margin-bottom: 0;
  /* for 2 images */
}
.type-projecten .wp-block-columns.container .wp-block-column {
  margin: 0;
  max-width: 580px;
}
.type-projecten .wp-block-columns.container.intro p {
  font-family: "stratos", Helvetica, Arial, sans-serif;
}
.type-projecten .wp-block-columns.container p {
  font-family: "stratos-Lights", Helvetica, Arial, sans-serif;
}
.type-projecten .wp-block-columns.has-1-columns .wp-block-column {
  flex: none;
  width: 50%;
}
.type-projecten .wp-block-columns.is-layout-flex {
  gap: 0;
}
.type-projecten .wp-block-columns .wp-block-column {
  margin: 2em 0 0 0;
  flex-basis: 50%;
}
@media (min-width: 48em) {
  .type-projecten .wp-block-columns .wp-block-column {
    margin: 0;
  }
}
.type-projecten .wp-block-columns .sticky-text {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 6em;
  padding: 1em;
}
.type-projecten .wp-block-columns.image {
  padding-right: 2em;
}
.type-projecten .wp-block-columns.image figure {
  padding: 1em 0;
  margin: 0;
}
.type-projecten figure.wp-block-image.coloronhover {
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0) 0 0 15px 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.type-projecten figure.wp-block-image.coloronhover:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.type-projecten .wp-block-columns.no-caption {
  margin: 0;
}
.type-projecten figure.wp-block-image {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
.type-projecten figure.wp-block-image img {
  margin-bottom: 0;
}
.type-projecten figure.wp-block-image.no-padding {
  padding-bottom: 0;
}
@media (min-width: 48em) {
  .type-projecten figure.wp-block-image.no-margin {
    margin-bottom: 0;
  }
}
.type-projecten figure.wp-block-image figcaption {
  color: inherit;
  font-family: "stratos", Helvetica, Arial, sans-serif;
  font-size: 0.8em;
  position: absolute;
  top: -2.4em;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0.5em;
}
@media (min-width: 48em) {
  .type-projecten figure.wp-block-image figcaption {
    width: auto;
    right: 0.5em;
  }
}
@media (min-width: 48em) {
  .type-projecten figure.wp-block-image.right figcaption {
    width: 100%;
    text-align: center;
    width: auto;
    left: 0.5em;
    right: auto;
  }
}
.type-projecten .wp-block-cover {
  align-items: start;
  min-height: 20em;
  margin: 0;
  overflow: visible;
}
@media (min-width: 60em) {
  .type-projecten .wp-block-cover {
    min-height: 30em;
  }
}
.type-projecten .wp-block-cover p {
  font-size: 0.9em;
  position: absolute;
  top: -2.2em;
  margin: 0;
  padding: 0.5em;
  width: 100%;
  transform: translateX(-50%);
}
@media (min-width: 48em) {
  .type-projecten .wp-block-cover p {
    width: auto;
    left: 0.5em;
    margin-left: 50%;
    right: auto;
  }
}
.type-projecten .wp-block-cover.has-parallax, .type-projecten .wp-block-cover__image-background.has-parallax {
  background-attachment: scroll;
}
@media (min-width: 60em) {
  .type-projecten .wp-block-cover.has-parallax, .type-projecten .wp-block-cover__image-background.has-parallax {
    background-attachment: fixed;
  }
}
.type-projecten .entry-footer .related {
  font-size: 1em;
  background-color: #ffffff;
  color: #3C3C3C;
  padding: 2em 1.6em 1em;
  text-align: center;
}
.type-projecten .entry-footer .related h4 {
  max-width: 8em;
  margin: 1em auto;
  text-decoration: underline;
}
.type-projecten .entry-footer .related h4:hover {
  text-decoration: none;
}
@media (min-width: 37.5em) {
  .type-projecten .entry-footer .related .left {
    text-align: left;
  }
  .type-projecten .entry-footer .related .right {
    text-align: right;
  }
}
.type-projecten .entry-content.subpage .container {
  padding-bottom: 0;
}
.type-projecten .entry-content.subpage .image {
  padding: 0;
  min-height: 17em;
}
.type-projecten .entry-content.subpage .image .thumbnail {
  height: 100%;
  background-size: cover;
  background-position: center;
}
#wrapper-footer-full, #wrapper-static-hero {
  background-color: #F8F8F8;
  color: #3C3C3C;
  padding: 0 2em;
  margin-bottom: -1px;
  font-size: 0.9em;
}
#wrapper-footer-full #footer-full-content, #wrapper-static-hero #footer-full-content {
  padding: 2em 0 1em;
  opacity: 0.7;
}
#wrapper-footer-full #footer-full-content .widget_text, #wrapper-static-hero #footer-full-content .widget_text {
  text-align: left;
  font-size: 0.85em;
}
#wrapper-footer-full #footer-full-content .widget_text a, #wrapper-static-hero #footer-full-content .widget_text a {
  text-decoration: underline;
}
#wrapper-footer-full #footer-full-content .widget_text#text-7, #wrapper-static-hero #footer-full-content .widget_text#text-7 {
  text-align: right;
}
#wrapper-footer-full #footer-full-content .widget_text .social-icon, #wrapper-static-hero #footer-full-content .widget_text .social-icon {
  display: inline-block;
  background-color: #ffffff;
  text-align: center;
  padding-top: 0.3em;
  width: 2em;
  height: 2em;
  border-radius: 0.3em;
  color: #3C3C3C;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#wrapper-footer-full #footer-full-content .widget_text .social-icon:hover, #wrapper-static-hero #footer-full-content .widget_text .social-icon:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#wrapper-footer {
  background-color: #F8F8F8;
  font-family: "stratos-Lights", Helvetica, Arial, sans-serif;
  font-size: 0.8em;
  font-weight: bold;
  padding: 2em;
}
#wrapper-footer .site-info {
  opacity: 0.5;
}
.modal-link {
  font-family: "stratos", Helvetica, Arial, sans-serif;
  position: absolute;
  right: 0;
  padding: 0 1.5em;
  font-size: 0.9em;
  font-weight: bold;
  z-index: 5;
  text-decoration: underline;
}
.modal-link i {
  margin-left: 0.5em;
}
.paoc-popup-modal {
  background-color: #8B7ED0;
  color: #318E4D;
}
.paoc-popup-modal .paoc-popup-modal-cnt {
  background-color: transparent;
  text-align: center;
  position: relative;
  display: table;
  height: 100%;
  position: relative;
  font-size: 0.6em;
}
@media (min-width: 25.75em) {
  .paoc-popup-modal .paoc-popup-modal-cnt {
    font-size: 0.8em;
  }
}
@media (min-width: 33.75em) {
  .paoc-popup-modal .paoc-popup-modal-cnt {
    font-size: 1.2em;
    padding: 2em;
  }
}
@media (min-width: 48em) {
  .paoc-popup-modal .paoc-popup-modal-cnt {
    font-size: 1.5em;
    padding: 3em;
  }
}
.paoc-popup-modal .paoc-popup-modal-cnt .popup-container {
  display: table-cell;
  vertical-align: middle;
}
.paoc-popup-modal .paoc-popup-close {
  background: url(/wp-content/uploads/assets/cross.png) center center no-repeat;
  margin: 2em;
}
.paoc-popup-modal a {
  text-decoration: underline;
}
/* GENERAL */
#primary {
  margin-top: 7.85em;
  width: 100%;
  color: #ffffff;
}
@media (min-width: 25.75em) {
  #primary {
    margin-top: 6em;
  }
}
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}
