@charset "UTF-8";
/*! Made by Burg, Burg. */
/*********************
IMPORTING PARTIALS
mixins, functions, and variables
*********************/
/*********************
COLORS
*********************/
/*********************
WRAPS
*********************/
/*
$wrap-base:       84%;
$wrap-768:        740px;
$wrap-1024:       980px;
$wrap-1240:       1040px;
$wrap-1440:       1240px;
*/
/*  @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;
      font-display: swap;
      // PRELOAD FONTS IN HEADER WHEN USING FONT-FACE
  }
*/
p {
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -o-font-feature-settings: "liga", "dlig";
  -ms-word-break: keep-all;
  word-break: keep-all;
  /*  -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;*/
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Helpful:
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/
http://engageinteractive.co.uk/blog/top-10-scss-mixins
******************************************************************/
/*********************
TRANSITION
*********************/
/*********************
TRANSFORM
*********************/
/*********************
CSS TRIANGLES
*********************/
/*********************
PSEUDO, BEFORE, AFTER
*********************/
/*********************
CSS3 GRADIENTS
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
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? */
/*
Mobile Grid Styles
*/
/* NOTE: two-col is always in s-wrap */
.two-col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.two-col > div {
  flex-shrink: 0;
}

.img-txt-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.img-txt-section > div {
  padding-left: 26px;
}

@media (max-width: 767px) {
  .teammember-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .teammember-grid > div,
.two-col > div {
    width: calc(50% - 0.5px);
  }
  .teammember-grid > div:not(:nth-of-type(2n)),
.two-col > div:not(:nth-of-type(2n)) {
    margin-right: 1px;
  }
  .teammember-grid.mobile-full > div,
.two-col.mobile-full > div {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
  }
  .teammember-grid.mobile-full > div:after,
.two-col.mobile-full > div:after {
    display: none;
  }
  .teammember-grid.mobile-full > div:before,
.two-col.mobile-full > div:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50vw);
    width: 100vw;
    height: 1px;
    background-color: #F2F8FF;
  }
  .teammember-grid.mobile-full > div:not(:nth-of-type(2n)),
.two-col.mobile-full > div:not(:nth-of-type(2n)) {
    margin-right: 0;
  }

  .two-col:not(.teammember-grid) > div:nth-of-type(2n-1) {
    padding-right: 13px;
  }
  .two-col:not(.teammember-grid) > div:nth-of-type(2n) {
    padding-left: 13px;
  }

  .two-col > div.half-image-container {
    padding: 0;
    width: 119%;
    margin-left: -9.5%;
  }

  .img-txt-section > div,
.img-txt-section > img {
    width: 100%;
  }
  .img-txt-section > div {
    padding-right: 26px;
  }
}
@media (min-width: 767px) {
  .three-col > div {
    float: left;
  }

  .two-col:not(.teammember-grid) > div:nth-of-type(2n-1) {
    padding-right: 26px;
  }
  .two-col:not(.teammember-grid) > div:nth-of-type(2n) {
    padding-left: 26px;
  }

  .img-txt-section > div,
.img-txt-section > img {
    width: 50%;
  }
  .img-txt-section > div {
    padding-right: 26px;
    align-self: center;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1023px) {
  .two-col > div {
    width: 14.1875rem;
  }
  .two-col > div:not(:nth-of-type(2n)) {
    margin-right: 0.1875rem;
  }

  .three-col > div {
    width: 14.1875rem;
  }
  .three-col > div:not(:nth-of-type(3n)) {
    margin-right: 0.1875rem;
  }
  .three-col.right > div:first-of-type {
    margin-left: 14.375rem;
  }
  .three-col.right > div:nth-of-type(2n) {
    margin-right: 0;
  }

  .img-txt-section > div {
    padding-right: calc(50% - 21.46875rem);
  }
}
/* Landscape to small desktop */
@media (min-width: 1024px) and (max-width: 1239px) {
  .two-col > div {
    width: 19.1875rem;
  }
  .two-col > div:not(:nth-of-type(2n)) {
    margin-right: 0.1875rem;
  }

  .three-col > div {
    width: 19.1875rem;
  }
  .three-col > div:not(:nth-of-type(3n)) {
    margin-right: 0.1875rem;
  }
  .three-col.right > div:first-of-type {
    margin-left: 19.375rem;
  }
  .three-col.right > div:nth-of-type(2n) {
    margin-right: 0;
  }

  .img-txt-section > div {
    padding-right: calc(50% - 28.96875rem);
  }
}
/* Desktop */
@media (min-width: 1240px) {
  .two-col > div {
    width: 24.1875rem;
  }
  .two-col > div:not(:nth-of-type(2n)) {
    margin-right: 0.1875rem;
  }

  .three-col > div {
    width: 24.1875rem;
  }
  .three-col > div:not(:nth-of-type(3n)) {
    margin-right: 0.1875rem;
  }
  .three-col.right > div:first-of-type {
    margin-left: 24.375rem;
  }
  .three-col.right > div:nth-of-type(2n) {
    margin-right: 0;
  }

  .img-txt-section > div {
    padding-right: calc(50% - 36.46875rem);
  }
}
/* Desktop large */
@media (min-width: 1440px) {
  .two-col > div {
    width: 28.1875rem;
  }
  .two-col > div:not(:nth-of-type(2n)) {
    margin-right: 0.1875rem;
  }

  .three-col > div {
    width: 28.1875rem;
  }
  .three-col > div:not(:nth-of-type(3n)) {
    margin-right: 0.1875rem;
  }
  .three-col.right > div:first-of-type {
    margin-left: 28.375rem;
  }
  .three-col.right > div:nth-of-type(2n) {
    margin-right: 0;
  }

  .img-txt-section > div {
    padding-right: calc(50% - 42.46875rem);
  }
}
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * 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
   ========================================================================== */
/**
 * 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 */
}

/**
 * 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
   ========================================================================== */
/**
 * 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 Chrome 57- and 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: #ff0;
  color: #000;
}

/**
 * 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;
}

/* Embedded content
   ========================================================================== */
/**
 * 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;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: "Syne", Helvetica, Arial, sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  background-color: transparent;
  padding: 0;
}

/**
 * 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;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 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
   ========================================================================== */
/*
 * 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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

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

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

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after {
  clear: both;
}

/* ==========================================================================
   BB
   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

/*********************
FITVIDS CSS
*********************/
.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}

.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*********************
reusable blocks or elements
*********************/
/*********************
BUTTON DEFAULTS
*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Syne", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 1em;
  height: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.14s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.blue-btn:hover, .blue-btn:focus {
  color: #fff;
  text-decoration: none;
}
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2980b9;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: #2574a8;
}
.blue-btn:active {
  background-color: #2472a4;
}

/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #A3ABB4;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Syne", Helvetica, Arial, sans-serif;
  background-color: #A3ABB4;
  transition: background-color 0.24s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #aeb5bd;
}

input[type=password] {
  letter-spacing: 0.3em;
}

.hidden_label > label {
  display: none;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none;
  /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/**********
 Gravity Forms
 **********/
.gfield_required,
.gform_validation_container,
img.gform_ajax_spinner {
  display: none !important;
}

.validation_message {
  color: red;
  font-size: 0.875rem;
}

.gform_body {
  margin-top: 1em;
}
.gform_body ul li {
  list-style: none;
}

.gsection {
  margin: 2em 0 1em;
  border-bottom: 1px solid #A3ABB4;
}

.gfield {
  margin-bottom: 1em;
  clear: both;
}

.gfield_label {
  display: block;
  margin-bottom: 0.125em;
}

.gfield_label_before_complex {
  display: none;
}

.ginput_complex > span {
  margin-bottom: 1em;
  display: block;
}
.ginput_complex > span:last-of-type {
  margin-bottom: 0;
}

.gform_hidden,
.screen-reader-text {
  display: none;
}

input[type=checkbox] {
  display: none;
}

.gfield_checkbox label,
input[type=checkbox] + label {
  line-height: 40px;
  vertical-align: middle;
  cursor: pointer;
}

input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #fff;
  cursor: pointer;
  margin-right: 0.5rem;
  vertical-align: middle;
  margin-bottom: 0.5em;
  transition: all 0.14s ease-in-out;
  text-align: center;
  line-height: 20px;
  border: 2px solid #A3ABB4;
  border-radius: 5px;
}

input[type=checkbox]:checked + label:before {
  background-color: red;
}

.gfield_checkbox,
.gfield_radio {
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
.gfield_checkbox li,
.gfield_radio li {
  vertical-align: middle;
}
.gfield_checkbox li label,
.gfield_radio li label {
  vertical-align: middle;
  margin-left: 0.5rem;
}

.ginput_container_multiselect select {
  height: auto;
  background-image: none;
  padding: 6px 12px;
}

.gfield_time_ampm,
.gfield_time_minute,
.gfield_time_hour {
  float: left;
  width: calc(33.33% - 0.6667em);
  margin-right: 1em;
}
.gfield_time_ampm i,
.gfield_time_minute i,
.gfield_time_hour i {
  display: none;
}

.gfield_time_ampm {
  margin-right: 0;
}

.gform_next_button,
.gform_button {
  float: right;
}

.ui-datepicker {
  background-color: #fff;
  padding: 0.5em 1em;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #A3ABB4;
  font-size: 0.875em;
}

.ui-datepicker-title {
  margin-bottom: 0.5rem;
}
.ui-datepicker-title select {
  width: calc(50% - 0.25em);
  float: left;
  padding: 0 12px;
  height: 32px;
  line-height: 32px;
  background-size: 16px 8px;
}
.ui-datepicker-title select:first-of-type {
  margin-right: 0.5em;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  display: none;
}

.ui-datepicker-calendar th {
  font-weight: 400;
  color: #9fa6b4;
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar tr {
  width: 32px;
  height: 20px;
  text-align: center;
}

.gf_progressbar_wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.gf_progressbar_wrapper h3 {
  font-size: 0.875em !important;
  font-weight: 400;
}

.gf_progressbar {
  display: none;
}

.gfield_error input[type=text],
.gfield_error input[type=password],
.gfield_error input[type=datetime],
.gfield_error input[type=datetime-local],
.gfield_error input[type=date],
.gfield_error input[type=month],
.gfield_error input[type=time],
.gfield_error input[type=week],
.gfield_error input[type=number],
.gfield_error input[type=email],
.gfield_error input[type=url],
.gfield_error input[type=search],
.gfield_error input[type=tel],
.gfield_error input[type=color],
.gfield_error select,
.gfield_error textarea {
  border-color: red;
}

.gfield:not(.gfield_contains_required) .gfield_label:after,
.gfield:not(.gfield_contains_required) span label:after {
  content: "optioneel";
  display: inline-block;
  position: static;
  color: #9fa6b4;
  font-size: 0.75em;
  margin-left: 0.5em;
}

/*********************
BASE (MOBILE) SIZE
*********************/
/*********************
*
* ARCHIVES
*
*********************/
/*********************
BREAKPOINTS
*********************/
/*********************
*
* ENTRY CONTENT STYLES
*
*********************/
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content pre {
  background: #000;
  color: #F2F8FF;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}
.entry-content figure {
  margin: 0;
  margin-bottom: 1.5em;
  display: inline-block;
}
.entry-content blockquote,
.entry-content blockquote.wp-block-quote,
.entry-content .wp-block-quote.is-style-large {
  font-size: 1.5em;
  margin: 1.5em 0;
  padding: 0;
  border: none;
  text-align: center;
}
.entry-content blockquote p,
.entry-content blockquote.wp-block-quote p,
.entry-content .wp-block-quote.is-style-large p {
  margin: 0;
}
.entry-content .wp-block-quote__citation,
.entry-content .wp-block-quote cite,
.entry-content .wp-block-quote footer {
  display: block;
  color: #A3ABB4;
  font-size: 0.85rem;
  margin-top: 0.5em;
}
.entry-content .wp-block-quote cite::before,
.entry-content .wp-block-quote footer::before {
  content: "— ";
  font-style: italic;
}
.entry-content ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1rem;
}
.entry-content ul li {
  padding-left: 0;
}
.entry-content ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1rem;
}
.entry-content ol li {
  padding-left: 0;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content table {
  width: 100%;
  border: 1px solid #A3ABB4;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #A3ABB4;
}
.entry-content tr:nth-child(even) {
  background-color: #F2F8FF;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #A3ABB4;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #F2F8FF;
  border-bottom: 1px solid #A3ABB4;
  border-right: 1px solid #A3ABB4;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content figure.wp-block-image {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.entry-content div.wp-block-image {
  margin: 0;
}
.entry-content div.wp-block-image figure {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.entry-content figure.wp-block-image a,
.entry-content div.wp-block-image a {
  display: block;
}
.entry-content figure.wp-block-image img,
.entry-content div.wp-block-image img {
  margin: 0;
  display: block;
}
.entry-content figure.wp-block-image figcaption,
.entry-content div.wp-block-image figcaption {
  padding: 0.25rem;
  background-color: #F2F8FF;
  font-size: 0.8em;
}
.entry-content .aligncenter,
.entry-content figure.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.entry-content .alignnone,
.entry-content figure.alignnone {
  display: inline;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.entry-content .alignright,
.entry-content figure.alignright {
  display: inline;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.entry-content .alignleft,
.entry-content figure.alignleft {
  display: inline;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.entry-content figure.wp-block-gallery {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}
.entry-content figure.wp-block-gallery img {
  display: block;
}
.entry-content figure.wp-block-gallery ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.entry-content figure.wp-block-gallery figcaption {
  padding: 0.25rem;
  background-color: #F2F8FF;
  font-size: 0.8em;
}
.entry-content .wp-block-embed {
  display: inline-block;
  width: 100%;
}

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
  display: inline-block;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

.tags {
  margin: 0;
}

/*********************
BREAKPOINTS
*********************/
/*********************
*
* FOOTER STYLES
*
*********************/
.footer {
  clear: both;
  background-color: #82FFBA;
  color: #3E444A;
  overflow: hidden;
}
.footer .two-col {
  display: flex;
  justify-content: space-between;
}
.footer .two-col > div {
  float: none;
  padding-top: 18.75rem;
}
.footer .two-col > div:nth-of-type(2n-1) {
  position: relative;
}
.footer .two-col > div:nth-of-type(2n-1):after {
  content: "";
  position: absolute;
  left: 100%;
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #3E444A;
}
.footer a, .footer a:visited {
  color: #3E444A;
}
.footer a:hover, .footer a:active, .footer a:focus, .footer a:visited:hover, .footer a:visited:active, .footer a:visited:focus {
  color: #000;
}
.footer .h1 {
  font-size: 2rem;
  line-height: 1.1;
}

.contact-info h4 {
  text-transform: uppercase;
}
.contact-info span, .contact-info a {
  margin-bottom: 1rem;
  display: block;
}

.footer-lowerpart {
  padding-top: 1.5rem;
  position: relative;
}
.footer-lowerpart:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50vw);
  width: 100vw;
  height: 1px;
  background: #000;
  background: linear-gradient(90deg, #000 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 200% 1px;
  background-position: left 0 center;
  transition: all 1s linear;
}
.footer-lowerpart.offset:before {
  background-position: left 100% center;
}

.footer-logo {
  display: block;
  width: 18px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.copyright {
  margin-right: 1rem;
  text-transform: uppercase;
}

.language-toggle-footer {
  display: none;
}
.language-toggle-footer li {
  display: inline;
}

/*********************
BREAKPOINTS
*********************/
/*********************
*
* GENERAL STYLES
*
*********************/
body {
  font-family: "Syne", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.4;
  color: #A3ABB4;
  background-color: #3E444A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-active {
  overflow: hidden;
  position: fixed;
}

#content.services, #content.defaultpage {
  background-color: #A3ABB4;
  color: #F2F8FF;
}
#content.services h3:after, #content.defaultpage h3:after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #F2F8FF;
}
#content.services .article-header h1, #content.defaultpage .article-header h1 {
  color: #F2F8FF;
}

section .teammember-grid > div,
section .three-col > div,
section .two-col > div {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
section.bordered {
  border-top: 1px solid #F2F8FF;
}

.defaultpage section {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.s-wrap,
.wrap {
  width: 84%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #82FFBA;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #36ff90;
}
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  margin-top: 0;
}
h1 a, h1 a:visited, .h1 a, .h1 a:visited, h2 a, h2 a:visited, .h2 a, .h2 a:visited, h3 a, h3 a:visited, .h3 a, .h3 a:visited, h4 a, h4 a:visited, .h4 a, .h4 a:visited, h5 a, h5 a:visited, .h5 a, .h5 a:visited {
  text-decoration: none;
  color: inherit;
}

h1, .h1 {
  font-size: 2.625rem;
  line-height: 0.9;
  margin-bottom: 2rem;
}

h2, .h2 {
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.375em;
}

h3, .h3 {
  font-size: 1.66rem;
  line-height: 1;
  display: inline-block;
  position: relative;
}

h4, .h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

h5, .h5 {
  font-size: 0.875rem;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2.sectiontitle {
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.42;
}
h2.sectiontitle span {
  display: inline-block;
  position: relative;
}
h2.sectiontitle span:after {
  content: "";
  height: 2px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 1px;
  background-color: #000;
}

/*********************
IMAGE CONTAINERS
*********************/
img {
  display: inline-block;
}

.img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.img-container:before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 25%;
}
.img-container img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  display: block;
}

.compat-object-fit {
  background-size: cover;
  background-position: center center;
}
.compat-object-fit img {
  opacity: 0;
}

/*********************
BREAKPOINTS
*********************/
/*********************
*
* HEADER STYLES
*
*********************/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  height: 70px;
  transition: all 0.14s ease-in-out;
}
.header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #F2F8FF;
}
.header.active {
  background-color: #3E444A;
}

#logo {
  display: none;
  margin: 0;
  width: 200px;
}
#logo img {
  display: block;
}

.mobile-logo,
.mobile-menu-btn {
  text-transform: uppercase;
  font-size: 1.75rem;
  color: #F2F8FF;
  height: 70px;
  line-height: 70px;
}
.mobile-logo a, .mobile-logo a:visited,
.mobile-menu-btn a,
.mobile-menu-btn a:visited {
  color: #F2F8FF;
}

.mobile-logo {
  padding-left: calc((50% - 42%));
}

.mobile-header > div:nth-of-type(2n-1) {
  position: relative;
}
.mobile-header > div:nth-of-type(2n-1):after {
  content: "";
  position: absolute;
  left: 100%;
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #F2F8FF;
}

/*********************
BREAKPOINTS
*********************/
/*********************
*
* NAVIGATION STYLES
*
*********************/
.main-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease-in-out;
  max-height: 0;
  background-color: #3E444A;
  padding: 0 0;
  top: 70px;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
}
.main-menu.active {
  opacity: 1;
  pointer-events: auto;
  max-height: 9999px;
}

.language-toggle-menu a, .language-toggle-menu a:visited {
  display: block;
  color: #82FFBA;
  text-decoration: none;
  padding: 2rem calc(50% - 42%);
  font-size: 1.75rem;
  border-bottom: 1px solid #F2F8FF;
}
.language-toggle-menu a:hover, .language-toggle-menu a:focus, .language-toggle-menu a:active, .language-toggle-menu a:visited:hover, .language-toggle-menu a:visited:focus, .language-toggle-menu a:visited:active {
  color: #36ff90;
}

.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
.nav li a {
  display: block;
  color: #F2F8FF;
  text-decoration: none;
  padding: 2rem calc(50% - 42%);
  font-size: 1.75rem;
  border-bottom: 1px solid #F2F8FF;
}
.nav li.active a, .nav li.active a:visited {
  color: #82FFBA;
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}
/* end .nav */
.toggleMenu {
  text-decoration: none;
  position: fixed;
  margin: 0;
  width: 28px;
  height: 19px;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moztransform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  z-index: 1001;
  display: block;
  top: 1.6rem;
  right: 8vw;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.toggleMenu:focus {
  outline: 0;
}
.toggleMenu span {
  display: block;
  position: absolute;
  height: 2px;
  border-radius: 0;
  width: 100%;
  background: #82FFBA;
  opacity: 1;
  left: 0;
  transition: all 0.25s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moztransform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.toggleMenu span:nth-child(1) {
  top: 0;
}
.toggleMenu span:nth-child(2), .toggleMenu span:nth-child(3) {
  top: 9px;
}
.toggleMenu span:nth-child(4) {
  top: 18px;
}
.toggleMenu.active span {
  background-color: #fff;
}
.toggleMenu.active span:nth-child(1) {
  top: 9px;
  width: 0;
  left: 50%;
}
.toggleMenu.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moztransform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.toggleMenu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moztransform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.toggleMenu.active span:nth-child(4) {
  top: 9px;
  width: 0;
  left: 50%;
}

/*********************
BREAKPOINTS
*********************/
/*********************
*
* PAGES
*
*********************/
.article-header {
  text-align: center;
  padding-bottom: 3.25rem;
}
.article-header h1 {
  margin-top: 22rem;
  color: #A3ABB4;
}
.article-header .sectiontitle span {
  text-decoration: underline;
}
.article-header .sectiontitle span:after {
  display: none;
}

.home-header {
  position: relative;
}
.home-header .img-container {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}
.home-header .img-container.offset {
  opacity: 0;
}
.home-header .img-container:before {
  padding-bottom: 100vh;
}
.home-header .header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /*h1 {
    color: $white;
    text-transform: uppercase;
    text-align: center;
  }*/
}
.home-header .header-overlay img {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 5rem;
}

.home-services {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.main-content {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.teammember-grid .img-container {
  margin-bottom: 1rem;
}
.teammember-grid .img-container:before {
  padding-bottom: 116%;
}

@keyframes page-vline-animation {
  0% {
    background-position: center top 0;
  }
  100% {
    background-position: center top 400%;
  }
}
.home-intro,
.home-outro,
.team-outro,
.services-detail {
  border-width: 1px 0;
  border-style: solid;
  border-color: #A3ABB4;
  font-weight: 450;
}
.home-intro .two-col,
.home-outro .two-col,
.team-outro .two-col,
.services-detail .two-col {
  position: relative;
}
.home-intro .two-col > div:nth-of-type(2n-1),
.home-outro .two-col > div:nth-of-type(2n-1),
.team-outro .two-col > div:nth-of-type(2n-1),
.services-detail .two-col > div:nth-of-type(2n-1) {
  position: relative;
}
.home-intro .two-col > div:nth-of-type(2n-1):after,
.home-outro .two-col > div:nth-of-type(2n-1):after,
.team-outro .two-col > div:nth-of-type(2n-1):after,
.services-detail .two-col > div:nth-of-type(2n-1):after {
  content: "";
  position: absolute;
  left: 100%;
  width: 1px;
  height: 100%;
  top: 0;
  background: #A3ABB4;
  background: linear-gradient(180deg, #A3ABB4 40%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, #A3ABB4 60%);
  background-size: 1px 400%;
  background-position: center top 0;
  animation: page-vline-animation 45s infinite;
  animation-timing-function: linear;
}

.language-toggle {
  position: absolute;
  right: 0;
  bottom: 2rem;
  display: none;
}
.language-toggle li {
  display: inline;
}
.language-toggle li a, .language-toggle li a:visited {
  text-transform: uppercase;
}

.team-header .wrap {
  position: relative;
}

.vac-link {
  margin-top: 2rem;
  position: absolute;
  right: 0;
  bottom: -2rem;
}

.services-detail {
  border-color: #F2F8FF;
}
.services-detail .two-col > div:nth-of-type(2n-1) {
  position: relative;
}
.services-detail .two-col > div:nth-of-type(2n-1):after {
  background-color: #F2F8FF;
  background: linear-gradient(180deg, #F2F8FF 40%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, #F2F8FF 60%);
  background-size: 1px 400%;
  background-position: center top 0;
  animation: page-vline-animation 45s infinite;
  animation-timing-function: linear;
}

.img-txt-section {
  align-items: center;
}
.img-txt-section > div {
  margin: 3.25rem 0;
}
.img-txt-section > img {
  display: block;
  height: auto;
}

.img-section:before {
  padding-bottom: 161%;
}

.home-services .h1 {
  text-align: center;
}
.home-services .entry-content {
  font-size: 1.4375rem;
}

.team-about,
.home-about {
  overflow: hidden;
}
.team-about .three-col:before,
.home-about .three-col:before {
  content: "";
  left: 0;
  width: 100%;
  position: absolute;
  height: 1px;
  background: #000;
  background: linear-gradient(90deg, #000 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 200% 1px;
  background-position: left 0 center;
  transition: all 1s linear;
}
.team-about .three-col.offset:before,
.home-about .three-col.offset:before {
  background-position: left 100% center;
}

.main-content {
  font-size: 1.4375rem;
}

.service-icon {
  position: absolute;
  height: 100px;
  width: auto;
  margin-top: 11rem;
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.services-detail ul {
  list-style: none;
  padding: 0;
}
.services-detail ul li {
  padding-left: 1.2em;
  background-image: url(../images/arrow_light.svg);
  background-size: 0.8em;
  background-position: left top 0.4em;
  background-repeat: no-repeat;
}

.quote {
  font-size: 1.4375rem;
}

.half-image:before {
  padding-bottom: 62%;
}

/*********************
BREAKPOINTS
*********************/
/*********************
*
* PAGE NAVI STYLES
*
*********************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #A3ABB4;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #2980b9;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #2980b9;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #A3ABB4;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #A3ABB4;
}

.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/*********************
BREAKPOINTS
*********************/
/*********************
*
* SINGLES
*
*********************/
/*********************
BREAKPOINTS
*********************/
/*********************
LARGER MOBILE DEVICES
*********************/
@media only screen and (min-width: 481px) {
  .entry-content .aligncenter,
.entry-content figure.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  .entry-content .alignright,
.entry-content figure.alignright {
    display: inline;
    float: right;
    clear: right;
    width: calc(50% - 0.09375rem);
    margin-left: 0.1875rem;
    margin-right: auto;
  }
  .entry-content .alignleft,
.entry-content figure.alignleft {
    display: inline;
    float: left;
    clear: left;
    width: calc(50% - 0.09375rem);
    margin-left: auto;
    margin-right: 0.1875rem;
  }

  .img-section:before {
    padding-bottom: 80%;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
*********************/
@media only screen and (min-width: 768px) {
  .footer-lowerpart {
    padding-top: 6rem;
  }

  .footer-logo {
    width: 4.5rem;
    margin: 0 auto 3.5rem;
  }

  .contact-info span, .contact-info a {
    font-size: 2.25rem;
  }
  .contact-info h4 {
    margin-top: 12px;
  }

  .language-toggle-footer {
    display: inline-block;
    margin-left: 1rem;
  }

  .footer .h1 {
    font-size: 3.2rem;
  }

  .footer .two-col > div:nth-of-type(2n-1):after {
    left: calc(100% + 1px);
  }

  body.menu-active {
    overflow: unset;
    position: relative;
  }

  .s-wrap {
    width: 28.5625rem;
  }

  .wrap {
    width: 42.9375rem;
  }

  @keyframes menu-hline-animation {
    0% {
      background-position: left -10% center;
    }
    97.5% {
      background-position: left -150% center;
    }
    98.5% {
      background-position: left 0% center;
    }
    100% {
      background-position: left -10% center;
    }
  }
  .header {
    height: 50px;
  }
  .header:after {
    background: linear-gradient(90deg, #F2F8FF 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #F2F8FF 50%, #F2F8FF 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
    background-size: 300% 1px;
    background-position: left 0 center;
    animation: menu-hline-animation 30s infinite;
    animation-timing-function: linear;
    animation-play-state: paused;
  }
  .header:before {
    content: "";
    top: 0;
    bottom: 0;
    background-color: #F2F8FF;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    position: absolute;
  }
  .header.animate:after {
    animation-play-state: running;
  }
  .header.dark {
    -webkit-filter: invert(0.8);
    -moz-filter: invert(0.8);
    -ms-filter: invert(80%);
    filter: invert(0.8);
  }
  .header.dark a:hover, .header.dark a:active, .header.dark a:focus, .header.dark a :visited:hover, .header.dark a :visited:active, .header.dark a :visited:focus {
    color: #fff;
  }

  /* end .nav */
}
@media only screen and (min-width: 768px) and (-ms-high-contrast: none) {
  *::-ms-backdrop, .header.dark {
    background-color: rgba(0, 0, 0, 0.3);
  }

  /* IE11 */
  *::-ms-backdrop, .header:after {
    background: #F2F8FF;
  }

  /* IE11 */
}
@media only screen and (min-width: 768px) {
  .mobile-header {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #logo {
    display: block;
    float: left;
    width: 16.67%;
    position: relative;
    z-index: 5;
  }
  #logo img {
    width: 100px;
    height: auto;
    margin-top: 0.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) {
  @keyframes menu-vline-animation {
    0% {
      background-position: center top 0;
    }
    100% {
      background-position: center top 400%;
    }
  }
}
@media only screen and (min-width: 768px) {
  .main-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    max-height: none;
    background-color: transparent;
    padding: 0;
    top: auto;
    bottom: auto;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .main-menu .nav li:nth-of-type(1) {
    margin-left: 16.66%;
  }
  .main-menu .nav li:nth-of-type(1):after {
    animation-delay: 3s;
  }
  .main-menu .nav li:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #F2F8FF;
    background: linear-gradient(180deg, #F2F8FF 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, #F2F8FF 75%);
    background-size: 1px 400%;
    background-position: center top 0;
    width: 1px;
    animation-timing-function: linear;
    animation: menu-vline-animation 15s infinite;
    animation-play-state: paused;
  }
  .main-menu .nav li.animate:after {
    animation-play-state: running;
  }
  .main-menu .nav li:nth-of-type(1),
.main-menu .nav li:nth-of-type(2) {
    position: relative;
    width: 16.67%;
  }
  .main-menu .nav li:nth-of-type(2):after {
    animation-delay: 2s;
  }
  .main-menu .nav li:nth-of-type(3) {
    position: relative;
    width: 16.67%;
  }
  .main-menu .nav li:nth-of-type(3):after {
    animation-delay: 1s;
  }
  .main-menu .nav li:nth-of-type(3),
.main-menu .nav li:nth-of-type(4) {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) {
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav ul {
    background: #fff;
    margin-top: 0;
  }
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .nav li a {
    border-bottom: 0;
    padding: 0.75rem 0;
    width: 100%;
    text-align: center;
    height: 50px;
    font-size: 1.33rem;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .nav li a:hover, .nav li a:focus {
    color: #82FFBA;
  }
  .nav li ul.sub-menu,
.nav li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li a,
.nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  .nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
}
@media only screen and (min-width: 768px) {
  .toggleMenu {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .language-toggle-menu {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .article-header h1 {
    margin-top: 15rem;
  }
  .article-header .sectiontitle {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media only screen and (min-width: 768px) {
  .home-header {
    /*.img-container {
      &:before {
        padding-bottom: 56%;
      }
    }*/
  }
  .home-header .header-overlay img {
    width: 320px;
    margin-bottom: 3.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .vac-link {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .language-toggle {
    display: block;
    margin: 0;
  }
  .language-toggle a, .language-toggle a:visited {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .home-intro p,
.home-outro p,
.team-outro p {
    margin: 0;
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .home-intro .two-col > div:nth-of-type(2n-1):after,
.home-outro .two-col > div:nth-of-type(2n-1):after,
.team-outro .two-col > div:nth-of-type(2n-1):after,
.services-detail .two-col > div:nth-of-type(2n-1):after {
    left: calc(100% + 1px);
  }
}
@media only screen and (min-width: 768px) {
  .half-image-container {
    position: relative;
    padding-bottom: 62%;
  }
  .half-image-container .half-image {
    height: 100%;
    position: absolute;
    right: -1px;
    top: 0;
    width: 50vw;
  }
  .half-image-container .half-image:before {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .service-icon {
    margin-top: 8.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .img-section {
    opacity: 1;
    transition: opacity 1.2s ease-in-out;
  }
  .img-section.offset {
    opacity: 0;
  }
  .img-section:before {
    padding-bottom: 50%;
  }
  .img-section.bw:before {
    padding-bottom: 41%;
  }
}
@media only screen and (min-width: 768px) {
  @keyframes hline-animation-inver {
    0% {
      background-position: left -150% center;
    }
    100% {
      background-position: left 0% center;
    }
  }
}
@media only screen and (min-width: 768px) {
  .img-txt-section {
    position: relative;
  }
  .img-txt-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: -1px;
    left: 0;
    background: #F2F8FF;
    background: linear-gradient(90deg, #F2F8FF 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #F2F8FF 50%, #F2F8FF 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
    background-size: 300% 1px;
    background-position: left 0 center;
    animation: hline-animation-inver 30s infinite;
    animation-timing-function: linear;
  }
}
@media only screen and (min-width: 768px) {
  .ginput_complex > span.ginput_left {
    width: calc(50% - 0.5em);
    float: left;
  }
  .ginput_complex > span.ginput_right {
    width: calc(50% - 0.5em);
    float: right;
  }
}
@media only screen and (min-width: 768px) {
  .ginput_container_address > span:nth-last-child(3) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .gform_confirmation_wrapper,
.gform_wrapper {
    padding: 1rem;
  }
}
/*********************
DESKTOP
*********************/
@media only screen and (min-width: 1024px) {
  .footer .h1 {
    font-size: 4.5rem;
    line-height: 1;
  }

  .s-wrap {
    width: 38.5625rem;
  }

  .wrap {
    width: 57.9375rem;
  }

  h1, .h1 {
    font-size: 5.9rem;
  }

  h2, .h2 {
    font-size: 3.8rem;
    margin-bottom: 0.375em;
  }

  h3, .h3 {
    font-size: 1.66rem;
  }

  h4, .h4 {
    font-size: 1rem;
  }

  h2.sectiontitle {
    font-size: 1.66rem;
  }

  .header {
    height: 71px;
  }

  #logo img {
    margin-top: 1.33rem;
    width: 133px;
  }

  .nav li a {
    font-size: 1.75rem;
    height: 71px;
    padding: 1rem 0;
  }

  .article-header .sectiontitle {
    padding-left: 9.5rem;
    padding-right: 9.5rem;
  }

  .home-header .header-overlay img {
    width: 468px;
  }
}
/*********************
LARGE VIEWING SIZE
*********************/
@media only screen and (min-width: 1240px) {
  .footer .h1 {
    font-size: 5.9375rem;
    line-height: 0.9;
  }

  .s-wrap {
    width: 48.5625rem;
  }

  .wrap {
    width: 72.9375rem;
  }

  .article-header .sectiontitle {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .main-content {
    font-size: 1.75rem;
  }

  .home-services .entry-content {
    font-size: 1.75rem;
  }
}
/*********************
EXTRA LARGE VIEWING SIZE
*********************/
@media only screen and (min-width: 1440px) {
  .footer .h1 {
    font-size: 6.4rem;
  }

  .s-wrap {
    width: 56.5625rem;
  }

  .wrap {
    width: 84.9375rem;
  }

  .home-intro .two-col div {
    padding-right: 7rem;
  }

  .article-header .sectiontitle {
    padding-left: 14rem;
    padding-right: 14rem;
  }
}
/*********************
PRINT STYLESHEET
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  .sidebar,
.page-navigation,
.wp-prev-next,
.respond-form,
nav {
    display: none;
  }
}
